From 46d5a47ee0d0fb5afda07a69b4f28a5bf661341b Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sat, 30 May 2026 16:19:57 +0300 Subject: [PATCH 01/11] Update trader for 0.5: regenerate mods and switch to using local stat json --- src/Classes/TradeHelpers.lua | 75 +- src/Classes/TradeQueryGenerator.lua | 112 +- src/Data/QueryMods.lua | 40079 ++++++++++++++++++++------ src/Data/trade_site_stats.json | 32204 +++++++++++++++++++++ src/Modules/Common.lua | 9 +- 5 files changed, 63401 insertions(+), 9078 deletions(-) create mode 100644 src/Data/trade_site_stats.json diff --git a/src/Classes/TradeHelpers.lua b/src/Classes/TradeHelpers.lua index cd37621c2..3707053c4 100644 --- a/src/Classes/TradeHelpers.lua +++ b/src/Classes/TradeHelpers.lua @@ -32,30 +32,20 @@ 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() - 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 +---@return table? tradeStats +function M.getTradeStats() + local file = io.open("./Data/trade_site_stats.json") + if not file then return nil end + local fileContents = file:read("*a") + local parsed = dkjson.decode(fileContents) + return parsed and parsed.result +end + +---@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) + 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 +62,7 @@ local function getTradeStatsLookup() end end end - return _tradeStats + return optionTradeStatMap end -- Map source types used in OpenBuySimilarPopup to trade API category labels @@ -120,7 +110,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 +122,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 @@ -160,15 +152,17 @@ function M.formatDatabaseText(text) return text end +local tradeStats = M.getTradeStats() +local optionTradeStatMap = getOptionTradeStatMap(tradeStats) + -- 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 +170,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 +191,7 @@ function M.findTradeHash(item, modLine, modType, isDesecrated) end end - -- initialise optionTradeStatMap - if not _tradeStats then - getTradeStatsLookup() - end + if not tradeStats 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,7 +221,7 @@ function M.findTradeHash(item, modLine, modType, isDesecrated) return tradeHashMaybe end end - -- most implicit and explicit applicable to the type + -- 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) diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index c78d3ae8f..9cacc7cd5 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, -} +local tradeStats = tradeHelpers.getTradeStats() + +---@return table[]? category list of entries for the mod type +local function getStatEntries(modType) + 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 @@ -370,34 +363,23 @@ function TradeQueryGeneratorClass:InitMods() 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 +389,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) @@ -467,7 +449,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,11 +461,11 @@ 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 @@ -499,7 +481,7 @@ function TradeQueryGeneratorClass:InitMods() end end if matchedCategory then - self:ProcessMod(mod, tradeQueryStatsParsed, regularItemMask, { [matchedCategory] = true }) + self:ProcessMod(mod, regularItemMask, { [matchedCategory] = true }) else ConPrintf("TradeQuery: Unmatched category for modifier. Slot type: %s Modifier: %s", mods.slotType, mods.name) end @@ -607,7 +589,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 +597,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 +767,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 +937,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/QueryMods.lua b/src/Data/QueryMods.lua index b4ce141b7..306bb197a 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -11,8807 +11,8453 @@ return { ["AllocatesXEnchant"] = { ["1169"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|1169", - ["text"] = "Allocates Urgent Call", - ["type"] = "crafted", - }, - }, + ["id"] = "crafted.stat_2954116742|1169", + ["text"] = "Allocates Urgent Call", + ["type"] = "crafted", + }, + }, ["11774"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|11774", + ["id"] = "enchant.stat_2954116742|11774", ["text"] = "Allocates The Spring Hare", - ["type"] = "crafted", + ["type"] = "enchant", }, }, ["11826"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|11826", + ["id"] = "enchant.stat_2954116742|11826", ["text"] = "Allocates Heavy Ammunition", - ["type"] = "crafted", + ["type"] = "enchant", }, }, - ["13482"] = { + ["11838"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|13482", - ["text"] = "Allocates Punctured Lung", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|11838", + ["text"] = "Allocates Dreamcatcher", + ["type"] = "enchant", }, }, - ["13844"] = { + ["11886"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|13844", - ["text"] = "Allocates Growing Peril", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|11886", + ["text"] = "Allocates Mauling Stuns", + ["type"] = "enchant", }, }, - ["14294"] = { + ["12245"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|14294", - ["text"] = "Allocates Sacrificial Blood", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|12245", + ["text"] = "Allocates Arsonist", + ["type"] = "enchant", }, }, - ["14383"] = { + ["12337"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|14383", - ["text"] = "Allocates Suffusion", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|12337", + ["text"] = "Allocates Flash Storm", + ["type"] = "enchant", }, }, - ["14602"] = { + ["12412"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|14602", - ["text"] = "Allocates Specialised Shots", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|12412", + ["text"] = "Allocates Temporal Mastery", + ["type"] = "enchant", }, }, - ["14761"] = { + ["12611"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|14761", - ["text"] = "Allocates Warlord Leader", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|12611", + ["text"] = "Allocates Harness the Elements", + ["type"] = "enchant", }, }, - ["16940"] = { + ["12661"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|16940", - ["text"] = "Allocates Arcane Nature", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|12661", + ["text"] = "Allocates Asceticism", + ["type"] = "enchant", }, }, - ["17229"] = { + ["12750"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|17229", - ["text"] = "Allocates Silent Guardian", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|12750", + ["text"] = "Allocates Vale Shelter", + ["type"] = "enchant", }, }, - ["17854"] = { + ["12822"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|17854", - ["text"] = "Allocates Escape Velocity", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|12822", + ["text"] = "Allocates Adaptable Assault", + ["type"] = "enchant", }, }, - ["19125"] = { + ["12906"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|19125", - ["text"] = "Allocates Potent Incantation", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|12906", + ["text"] = "Allocates Sitting Duck", + ["type"] = "enchant", }, }, - ["19715"] = { + ["12964"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|19715", - ["text"] = "Allocates Cremation", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|12964", + ["text"] = "Allocates Lone Warrior", + ["type"] = "enchant", }, }, - ["20495"] = { + ["12998"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|20495", - ["text"] = "Allocates Dark Entropy", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|12998", + ["text"] = "Allocates Warm the Heart", + ["type"] = "enchant", }, }, - ["20686"] = { + ["13407"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|20686", - ["text"] = "Allocates Paragon", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|13407", + ["text"] = "Allocates Heartbreaking", + ["type"] = "enchant", }, }, - ["23427"] = { + ["13457"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|23427", - ["text"] = "Allocates Chilled to the Bone", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|13457", + ["text"] = "Allocates Shadow Dancing", + ["type"] = "enchant", }, }, - ["23738"] = { + ["13482"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|23738", - ["text"] = "Allocates Madness in the Bones", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", + ["type"] = "enchant", }, }, - ["24120"] = { + ["13515"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|24120", - ["text"] = "Allocates Mental Toughness", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|13515", + ["text"] = "Allocates Stormwalker", + ["type"] = "enchant", }, }, - ["26214"] = { + ["1352"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|26214", - ["text"] = "Allocates Dominion", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|1352", + ["text"] = "Allocates Unbending", + ["type"] = "enchant", }, }, - ["26339"] = { + ["13524"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|26339", - ["text"] = "Allocates Ancestral Artifice", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|13524", + ["text"] = "Allocates Everlasting Glory", + ["type"] = "enchant", }, }, - ["2745"] = { + ["13542"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|2745", - ["text"] = "Allocates The Noble Wolf", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|13542", + ["text"] = "Allocates Loose Flesh", + ["type"] = "enchant", }, }, - ["27761"] = { + ["13708"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|27761", - ["text"] = "Allocates Counterstancing", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|13708", + ["text"] = "Allocates Curved Weapon", + ["type"] = "enchant", }, }, - ["30395"] = { + ["13724"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|30395", - ["text"] = "Allocates Howling Beast", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|13724", + ["text"] = "Allocates Deadly Force", + ["type"] = "enchant", }, }, - ["30562"] = { + ["13738"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|30562", - ["text"] = "Allocates Inner Faith", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|13738", + ["text"] = "Allocates Lightning Quick", + ["type"] = "enchant", }, }, - ["31373"] = { + ["13823"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|31373", - ["text"] = "Allocates Vocal Empowerment", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|13823", + ["text"] = "Allocates Controlling Magic", + ["type"] = "enchant", }, }, - ["32128"] = { + ["13895"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|32128", - ["text"] = "Allocates Flow of Time", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|13895", + ["text"] = "Allocates Precise Point", + ["type"] = "enchant", }, }, - ["34324"] = { + ["13980"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|34324", - ["text"] = "Allocates Spectral Ward", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|13980", + ["text"] = "Allocates Split the Earth", + ["type"] = "enchant", }, }, - ["34531"] = { + ["14211"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|34531", - ["text"] = "Allocates Hallowed", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|14211", + ["text"] = "Allocates Shredding Contraptions", + ["type"] = "enchant", }, }, - ["35809"] = { + ["14294"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|35809", - ["text"] = "Allocates Reinvigoration", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|14294", + ["text"] = "Allocates Sacrificial Blood", + ["type"] = "enchant", }, }, - ["35849"] = { + ["14324"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|35849", - ["text"] = "Allocates Thickened Arteries", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|14324", + ["text"] = "Allocates Arcane Blossom", + ["type"] = "enchant", }, }, - ["36085"] = { + ["14343"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|36085", - ["text"] = "Allocates Serrated Edges", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|14343", + ["text"] = "Allocates Deterioration", + ["type"] = "enchant", }, }, - ["37543"] = { + ["14383"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|37543", - ["text"] = "Allocates Full Recovery", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", + ["type"] = "enchant", }, }, - ["37742"] = { + ["14602"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|37742", - ["text"] = "Allocates Manifold Method", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|14602", + ["text"] = "Allocates Specialised Shots", + ["type"] = "enchant", }, }, - ["38532"] = { + ["14761"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|38532", - ["text"] = "Allocates Thirst for Power", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", + ["type"] = "enchant", }, }, - ["38537"] = { + ["14777"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|38537", - ["text"] = "Allocates Heartstopping", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|14777", + ["text"] = "Allocates Bravado", + ["type"] = "enchant", }, }, - ["3894"] = { + ["14934"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|3894", - ["text"] = "Allocates Eldritch Will", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|14934", + ["text"] = "Allocates Spiral into Mania", + ["type"] = "enchant", }, }, - ["3921"] = { + ["14945"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|3921", - ["text"] = "Allocates Fate Finding", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|14945", + ["text"] = "Allocates Growing Swarm", + ["type"] = "enchant", }, }, - ["41033"] = { + ["1502"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|41033", - ["text"] = "Allocates Utmost Offering", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|1502", + ["text"] = "Allocates Draiocht Cleansing", + ["type"] = "enchant", }, }, - ["41394"] = { + ["15030"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|41394", - ["text"] = "Allocates Invigorating Archon", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|15030", + ["text"] = "Allocates Consistent Intake", + ["type"] = "enchant", }, }, - ["42177"] = { + ["1506"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|42177", - ["text"] = "Allocates Blurred Motion", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|1506", + ["text"] = "Allocates Remnant Attraction", + ["type"] = "enchant", }, }, - ["42245"] = { + ["15083"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|42245", - ["text"] = "Allocates Efficient Inscriptions", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|15083", + ["text"] = "Allocates Power Conduction", + ["type"] = "enchant", }, }, - ["4238"] = { + ["15114"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|4238", - ["text"] = "Allocates Versatile Arms", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|15114", + ["text"] = "Allocates Boundless Growth", + ["type"] = "enchant", }, }, - ["42660"] = { + ["15374"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|42660", - ["text"] = "Allocates Commanding Rage", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|15374", + ["text"] = "Allocates Hale Heart", + ["type"] = "enchant", }, }, - ["42714"] = { + ["15443"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|42714", - ["text"] = "Allocates Thousand Cuts", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|15443", + ["text"] = "Allocates Endured Suffering", + ["type"] = "enchant", }, }, - ["44005"] = { + ["1546"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|44005", - ["text"] = "Allocates Casting Cascade", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|1546", + ["text"] = "Allocates Spiral into Depression", + ["type"] = "enchant", }, }, - ["44293"] = { + ["15606"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|44293", - ["text"] = "Allocates Hastening Barrier", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|15606", + ["text"] = "Allocates Thrill of the Fight", + ["type"] = "enchant", }, }, - ["45177"] = { + ["15617"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|45177", - ["text"] = "Allocates Strike True", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|15617", + ["text"] = "Allocates Heavy Drinker", + ["type"] = "enchant", }, }, - ["4544"] = { + ["15644"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|4544", - ["text"] = "Allocates The Ancient Serpent", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|15644", + ["text"] = "Allocates Shedding Skin", + ["type"] = "enchant", }, }, - ["4547"] = { + ["15829"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|4547", - ["text"] = "Allocates Unnatural Resilience", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|15829", + ["text"] = "Allocates Siphon", + ["type"] = "enchant", }, }, - ["45612"] = { + ["15986"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|45612", - ["text"] = "Allocates Defensive Reflexes", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|15986", + ["text"] = "Allocates Building Toxins", + ["type"] = "enchant", }, }, - ["4661"] = { + ["15991"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|4661", - ["text"] = "Allocates Inspiring Leader", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|15991", + ["text"] = "Allocates Embodiment of Lightning", + ["type"] = "enchant", }, }, - ["46683"] = { + ["1603"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|46683", - ["text"] = "Allocates Inherited Strength ", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|1603", + ["text"] = "Allocates Storm Driven", + ["type"] = "enchant", }, }, - ["47363"] = { + ["16142"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|47363", - ["text"] = "Allocates Colossal Weapon", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|16142", + ["text"] = "Allocates Deep Freeze", + ["type"] = "enchant", }, }, - ["48617"] = { + ["16150"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|48617", - ["text"] = "Allocates Hunter", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|16150", + ["text"] = "Allocates Inspiring Ally", + ["type"] = "enchant", }, }, - ["48699"] = { + ["16256"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|48699", - ["text"] = "Allocates Frostwalker", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|16256", + ["text"] = "Allocates Ether Flow", + ["type"] = "enchant", }, }, - ["49550"] = { + ["16466"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|49550", - ["text"] = "Allocates Prolonged Fury", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|16466", + ["text"] = "Allocates Mental Alacrity", + ["type"] = "enchant", }, }, - ["50687"] = { + ["16499"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|50687", - ["text"] = "Allocates Coursing Energy", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|16499", + ["text"] = "Allocates Lingering Whispers", + ["type"] = "enchant", }, }, - ["51213"] = { + ["16618"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|51213", - ["text"] = "Allocates Wasting", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|16618", + ["text"] = "Allocates Jack of all Trades", + ["type"] = "enchant", }, }, - ["51602"] = { + ["16626"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|51602", - ["text"] = "Allocates Unsight", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|16626", + ["text"] = "Allocates Impact Area", + ["type"] = "enchant", }, }, - ["51868"] = { + ["16790"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|51868", - ["text"] = "Allocates Molten Carapace", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|16790", + ["text"] = "Allocates Efficient Casting", + ["type"] = "enchant", }, }, - ["52199"] = { + ["16816"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|52199", - ["text"] = "Allocates Overexposure", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|16816", + ["text"] = "Allocates Pinpoint Shot", + ["type"] = "enchant", }, }, - ["52618"] = { + ["16940"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|52618", - ["text"] = "Allocates Boon of the Beast", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", + ["type"] = "enchant", }, }, - ["52764"] = { + ["17029"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|52764", - ["text"] = "Allocates Mystical Rage", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17029", + ["text"] = "Allocates Blade Catcher", + ["type"] = "enchant", }, }, - ["52803"] = { + ["17150"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|52803", - ["text"] = "Allocates Hale Traveller", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17150", + ["text"] = "Allocates General's Bindings", + ["type"] = "enchant", }, }, - ["52971"] = { + ["17229"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|52971", - ["text"] = "Allocates The Soul Meridian", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17229", + ["text"] = "Allocates Silent Guardian", + ["type"] = "enchant", }, }, - ["55308"] = { + ["17254"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|55308", - ["text"] = "Allocates Sling Shots", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17254", + ["text"] = "Allocates Spell Haste", + ["type"] = "enchant", }, }, - ["56616"] = { + ["17260"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|56616", - ["text"] = "Allocates Desperate Times", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17260", + ["text"] = "Allocates Piercing Claw", + ["type"] = "enchant", }, }, - ["56806"] = { + ["17303"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|56806", - ["text"] = "Allocates Swift Blocking", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17303", + ["text"] = "Allocates Utility Ordnance", + ["type"] = "enchant", }, }, - ["56860"] = { + ["17330"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|56860", - ["text"] = "Allocates Resolute Reprisal", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17330", + ["text"] = "Allocates Perforation", + ["type"] = "enchant", }, }, - ["57617"] = { + ["17340"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|57617", - ["text"] = "Allocates Shifted Strikes", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17340", + ["text"] = "Allocates Adrenaline Rush", + ["type"] = "enchant", }, }, - ["57785"] = { + ["17372"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|57785", - ["text"] = "Allocates Trained Turrets", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17372", + ["text"] = "Allocates Reaching Strike", + ["type"] = "enchant", }, }, - ["60034"] = { + ["17548"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|60034", - ["text"] = "Allocates Falcon Dive", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17548", + ["text"] = "Allocates Moment of Truth", + ["type"] = "enchant", }, }, - ["60464"] = { + ["17600"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|60464", - ["text"] = "Allocates Fan the Flames", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17600", + ["text"] = "Allocates Thirsting Ally", + ["type"] = "enchant", }, }, - ["61112"] = { + ["17664"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|61112", - ["text"] = "Allocates Roll and Strike", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17664", + ["text"] = "Allocates Decisive Retreat", + ["type"] = "enchant", }, }, - ["61601"] = { + ["17725"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|61601", - ["text"] = "Allocates True Strike", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17725", + ["text"] = "Allocates Bonded Precision", + ["type"] = "enchant", }, }, - ["61921"] = { + ["17762"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|61921", - ["text"] = "Allocates Storm Surge", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17762", + ["text"] = "Allocates Vengeance", + ["type"] = "enchant", }, }, - ["6304"] = { + ["17825"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|6304", - ["text"] = "Allocates Stand Ground", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17825", + ["text"] = "Allocates Tactical Retreat", + ["type"] = "enchant", }, }, - ["64050"] = { + ["17854"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|64050", - ["text"] = "Allocates Marathon Runner", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17854", + ["text"] = "Allocates Escape Velocity", + ["type"] = "enchant", }, }, - ["65204"] = { + ["17882"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|65204", - ["text"] = "Allocates Overflowing Power", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17882", + ["text"] = "Allocates Volatile Grenades", + ["type"] = "enchant", }, }, - ["65256"] = { + ["17955"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|65256", - ["text"] = "Allocates Widespread Coverage", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|17955", + ["text"] = "Allocates Careful Consideration", + ["type"] = "enchant", }, }, - ["7809"] = { + ["18086"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|7809", - ["text"] = "Allocates Wild Storm", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|18086", + ["text"] = "Allocates Breath of Ice", + ["type"] = "enchant", }, }, - ["8831"] = { + ["18157"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|8831", - ["text"] = "Allocates Tempered Mind", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|18157", + ["text"] = "Allocates Tempered Defences", + ["type"] = "enchant", }, }, - ["9226"] = { + ["1823"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|9226", - ["text"] = "Allocates Mental Perseverance", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|1823", + ["text"] = "Allocates Illuminated Crown", + ["type"] = "enchant", }, }, - ["9290"] = { + ["18308"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|9290", - ["text"] = "Allocates Rusted Pins", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|18308", + ["text"] = "Allocates Bleeding Out", + ["type"] = "enchant", }, }, - ["9535"] = { + ["18397"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|9535", - ["text"] = "Allocates Brinerot Ferocity", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|18397", + ["text"] = "Allocates Savoured Blood", + ["type"] = "enchant", }, }, - }, - ["Corrupted"] = { - ["1004011302"] = { + ["18419"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|18419", + ["text"] = "Allocates Ancestral Mending", + ["type"] = "enchant", }, }, - ["101878827"] = { + ["18485"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|18485", + ["text"] = "Allocates Unstable Bond", + ["type"] = "enchant", }, }, - ["1037193709"] = { - ["1HMace"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["1HWeapon"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["2HMace"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, - ["2HWeapon"] = { - ["max"] = 21.5, - ["min"] = 10.5, - }, - ["Bow"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["Crossbow"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, - ["Flail"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["Quarterstaff"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, - ["Spear"] = { - ["max"] = 15.5, - ["min"] = 10.5, + ["18496"] = { + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 21.5, - ["min"] = 14.5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|18496", + ["text"] = "Allocates Lasting Trauma", + ["type"] = "enchant", }, + }, + ["18505"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|18505", + ["text"] = "Allocates Crushing Verdict", + ["type"] = "enchant", }, }, - ["1050105434"] = { - ["Focus"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Quiver"] = { - ["max"] = 25, - ["min"] = 20, + ["18959"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|18959", + ["text"] = "Allocates Ruinic Helm", + ["type"] = "enchant", }, + }, + ["19044"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|19044", + ["text"] = "Allocates Arcane Intensity", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1062208444"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, + ["19125"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", + ["type"] = "enchant", }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["19156"] = { + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19156", + ["text"] = "Allocates Immaterial", + ["type"] = "enchant", }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["19236"] = { + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19236", + ["text"] = "Allocates Projectile Bulwark", + ["type"] = "enchant", }, + }, + ["19249"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|19249", + ["text"] = "Allocates Supportive Ancestors", + ["type"] = "enchant", }, }, - ["124859000"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["19337"] = { + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19337", + ["text"] = "Allocates Precision Salvo", + ["type"] = "enchant", }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["19442"] = { + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|19442", + ["text"] = "Allocates Prolonged Assault", + ["type"] = "enchant", }, + }, + ["19546"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|19546", + ["text"] = "Allocates Favourable Odds", + ["type"] = "enchant", }, }, - ["1316278494"] = { + ["19644"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|19644", + ["text"] = "Allocates Left Hand of Darkness", + ["type"] = "enchant", }, }, - ["1444556985"] = { - ["Chest"] = { - ["max"] = 20, - ["min"] = 10, + ["19715"] = { + ["specialCaseData"] = { + }, + ["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"] = "crafted.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|19955", + ["text"] = "Allocates Endless Blizzard", + ["type"] = "enchant", }, }, - ["1509134228"] = { - ["1HMace"] = { - ["max"] = 25, - ["min"] = 15, + ["20008"] = { + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20008", + ["text"] = "Allocates Unleash Fire", + ["type"] = "enchant", }, - ["2HMace"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["20032"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20032", + ["text"] = "Allocates Erraticism", + ["type"] = "enchant", }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["2021"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2021", + ["text"] = "Allocates Wellspring", + ["type"] = "enchant", }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["20251"] = { + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20251", + ["text"] = "Allocates Splitting Ground", + ["type"] = "enchant", }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["20289"] = { + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20289", + ["text"] = "Allocates Frozen Claw", + ["type"] = "enchant", }, + }, + ["20388"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|20388", + ["text"] = "Allocates Regenerative Flesh", + ["type"] = "enchant", }, }, - ["1671376347"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["20397"] = { + ["specialCaseData"] = { }, - ["Belt"] = { - ["max"] = 25, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20397", + ["text"] = "Allocates Authority", + ["type"] = "enchant", }, - ["Boots"] = { - ["max"] = 25, - ["min"] = 20, + }, + ["20414"] = { + ["specialCaseData"] = { }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20414", + ["text"] = "Allocates Reprisal", + ["type"] = "enchant", }, + }, + ["20416"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|20416", + ["text"] = "Allocates Grit", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1798257884"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["20511"] = { + ["specialCaseData"] = { }, - ["Sceptre"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20511", + ["text"] = "Allocates Cremating Cries", + ["type"] = "enchant", }, + }, + ["20558"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|20558", + ["text"] = "Allocates Among the Hordes", + ["type"] = "enchant", }, }, - ["1999113824"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, + ["20677"] = { + ["specialCaseData"] = { }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20677", + ["text"] = "Allocates For the Jugular", + ["type"] = "enchant", }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["20916"] = { + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20916", + ["text"] = "Allocates Blinding Strike", + ["type"] = "enchant", }, + }, + ["2113"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|2113", + ["text"] = "Allocates Martial Artistry", + ["type"] = "enchant", }, }, - ["210067635"] = { - ["1HMace"] = { - ["max"] = 8, - ["min"] = 6, + ["21164"] = { + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21164", + ["text"] = "Allocates Fleshcrafting", + ["type"] = "enchant", }, - ["2HMace"] = { - ["max"] = 8, - ["min"] = 6, + }, + ["21206"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21206", + ["text"] = "Allocates Explosive Impact", + ["type"] = "enchant", }, - ["Bow"] = { - ["max"] = 8, - ["min"] = 6, + }, + ["2134"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 8, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2134", + ["text"] = "Allocates Toxic Tolerance", + ["type"] = "enchant", }, - ["Flail"] = { - ["max"] = 8, - ["min"] = 6, + }, + ["21349"] = { + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 8, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21349", + ["text"] = "Allocates The Cunning Fox", + ["type"] = "enchant", }, - ["Spear"] = { - ["max"] = 8, - ["min"] = 6, + }, + ["2138"] = { + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 8, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2138", + ["text"] = "Allocates Spiral into Insanity", + ["type"] = "enchant", }, + }, + ["21380"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|21380", + ["text"] = "Allocates Preemptive Strike", + ["type"] = "enchant", }, }, - ["2106365538"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["21453"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|21453", + ["text"] = "Allocates Breakage", + ["type"] = "enchant", }, }, - ["2162097452"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["21537"] = { + ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21537", + ["text"] = "Allocates Fervour", + ["type"] = "enchant", + }, + }, + ["21748"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|21748", + ["text"] = "Allocates Impending Doom", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["2223678961"] = { - ["1HMace"] = { - ["max"] = 14.5, - ["min"] = 9.5, + ["21784"] = { + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["max"] = 14.5, - ["min"] = 9.5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21784", + ["text"] = "Allocates Pack Encouragement", + ["type"] = "enchant", }, - ["2HMace"] = { - ["max"] = 20.5, - ["min"] = 13.5, + }, + ["21935"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 20.5, - ["min"] = 9.5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|21935", + ["text"] = "Allocates Calibration", + ["type"] = "enchant", }, - ["Bow"] = { - ["max"] = 14.5, - ["min"] = 9.5, + }, + ["22532"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 20.5, - ["min"] = 13.5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|22532", + ["text"] = "Allocates Fearful Paralysis", + ["type"] = "enchant", }, - ["Flail"] = { - ["max"] = 14.5, - ["min"] = 9.5, + }, + ["22626"] = { + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 20.5, - ["min"] = 13.5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|22626", + ["text"] = "Allocates Irreparable", + ["type"] = "enchant", }, - ["Spear"] = { - ["max"] = 14.5, - ["min"] = 9.5, + }, + ["22811"] = { + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 20.5, - ["min"] = 13.5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|22811", + ["text"] = "Allocates The Wild Cat", + ["type"] = "enchant", }, + }, + ["22817"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|22817", + ["text"] = "Allocates Inevitable Rupture", + ["type"] = "enchant", }, }, - ["2250533757"] = { - ["Boots"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["22864"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|22864", + ["text"] = "Allocates Tainted Strike", + ["type"] = "enchant", }, }, - ["2451402625"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["22967"] = { + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|22967", + ["text"] = "Allocates Vigilance", + ["type"] = "enchant", }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["23078"] = { + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23078", + ["text"] = "Allocates Holy Protector", + ["type"] = "enchant", }, + }, + ["23221"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|23221", + ["text"] = "Allocates Trick Shot", + ["type"] = "enchant", }, }, - ["2482852589"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["23227"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|23227", + ["text"] = "Allocates Initiative", + ["type"] = "enchant", }, }, - ["280731498"] = { + ["23244"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|23244", + ["text"] = "Allocates Bounty Hunter", + ["type"] = "enchant", }, }, - ["2866361420"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["2335"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|2335", + ["text"] = "Allocates Turn the Clock Forward", + ["type"] = "enchant", }, }, - ["2891184298"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, + ["23362"] = { + ["specialCaseData"] = { }, - ["Staff"] = { - ["max"] = 15, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23362", + ["text"] = "Allocates Slippery Ice", + ["type"] = "enchant", }, - ["Wand"] = { - ["max"] = 15, - ["min"] = 10, + }, + ["23427"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", + ["type"] = "enchant", }, + }, + ["2344"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|2344", + ["text"] = "Allocates Dimensional Weakspot", + ["type"] = "enchant", }, }, - ["2923486259"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["23630"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23630", + ["text"] = "Allocates Self Immolation", + ["type"] = "enchant", }, - ["Chest"] = { - ["max"] = 19, - ["min"] = 13, + }, + ["23736"] = { + ["specialCaseData"] = { }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23736", + ["text"] = "Allocates Spray and Pray", + ["type"] = "enchant", }, - ["Ring"] = { - ["max"] = 19, - ["min"] = 13, + }, + ["23738"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23738", + ["text"] = "Allocates Madness in the Bones", + ["type"] = "enchant", }, + }, + ["23764"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|23764", + ["text"] = "Allocates Alternating Current", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["2974417149"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 40, + ["23939"] = { + ["specialCaseData"] = { }, - ["Focus"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|23939", + ["text"] = "Allocates Glazed Flesh", + ["type"] = "enchant", }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 40, + }, + ["2394"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2394", + ["text"] = "Allocates Blade Flurry", + ["type"] = "enchant", }, + }, + ["23940"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|23940", + ["text"] = "Allocates Adamant Recovery", + ["type"] = "enchant", }, }, - ["3175163625"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["2397"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|2397", + ["text"] = "Allocates Last Stand", + ["type"] = "enchant", }, }, - ["3261801346"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, + ["24062"] = { + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24062", + ["text"] = "Allocates Immortal Infamy", + ["type"] = "enchant", }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + }, + ["24087"] = { + ["specialCaseData"] = { }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24087", + ["text"] = "Allocates Everlasting Infusions", + ["type"] = "enchant", }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, + }, + ["24120"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24120", + ["text"] = "Allocates Mental Toughness", + ["type"] = "enchant", }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + }, + ["24240"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24240", + ["text"] = "Allocates Time Manipulation", + ["type"] = "enchant", }, + }, + ["24438"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|24438", + ["text"] = "Allocates Hardened Wood", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["328541901"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, + ["24483"] = { + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24483", + ["text"] = "Allocates Direct Approach", + ["type"] = "enchant", }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + }, + ["24491"] = { + ["specialCaseData"] = { }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24491", + ["text"] = "Allocates Invocated Echoes", + ["type"] = "enchant", }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, + }, + ["24630"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24630", + ["text"] = "Allocates Fulmination", + ["type"] = "enchant", }, + }, + ["24655"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|24655", + ["text"] = "Allocates Breath of Fire", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["3299347043"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 30, + ["24753"] = { + ["specialCaseData"] = { }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24753", + ["text"] = "Allocates Determined Precision", + ["type"] = "enchant", }, + }, + ["24764"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|24764", + ["text"] = "Allocates Infusing Power", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["3321629045"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["24766"] = { + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|24766", + ["text"] = "Allocates Paranoia", + ["type"] = "enchant", }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["2486"] = { + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2486", + ["text"] = "Allocates Stars Aligned", + ["type"] = "enchant", }, + }, + ["2511"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|2511", + ["text"] = "Allocates Sundering", + ["type"] = "enchant", }, }, - ["3336890334"] = { - ["1HMace"] = { - ["max"] = 22.5, - ["min"] = 15, + ["25211"] = { + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["max"] = 22.5, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25211", + ["text"] = "Allocates Waning Hindrances", + ["type"] = "enchant", }, - ["2HMace"] = { - ["max"] = 32, - ["min"] = 21, + }, + ["25362"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 32, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25362", + ["text"] = "Allocates Chakra of Impact", + ["type"] = "enchant", }, - ["Bow"] = { - ["max"] = 22.5, - ["min"] = 15, + }, + ["25482"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 32, - ["min"] = 21, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25482", + ["text"] = "Allocates Beef", + ["type"] = "enchant", }, - ["Flail"] = { - ["max"] = 22.5, - ["min"] = 15, + }, + ["25513"] = { + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 32, - ["min"] = 21, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25513", + ["text"] = "Allocates Overwhelm", + ["type"] = "enchant", }, - ["Spear"] = { - ["max"] = 22.5, - ["min"] = 15, + }, + ["25619"] = { + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 32, - ["min"] = 21, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25619", + ["text"] = "Allocates Sand in the Eyes", + ["type"] = "enchant", }, + }, + ["25620"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|25620", + ["text"] = "Allocates Meat Recycling", + ["type"] = "enchant", }, }, - ["3372524247"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["25711"] = { + ["specialCaseData"] = { }, - ["Belt"] = { - ["max"] = 25, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|25711", + ["text"] = "Allocates Thrill of Battle", + ["type"] = "enchant", }, - ["Boots"] = { - ["max"] = 25, - ["min"] = 20, + }, + ["2575"] = { + ["specialCaseData"] = { }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2575", + ["text"] = "Allocates Ancestral Alacrity", + ["type"] = "enchant", }, + }, + ["25753"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|25753", + ["text"] = "Allocates Blazing Arms", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["3377888098"] = { + ["25971"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|25971", + ["text"] = "Allocates Tenfold Attacks", + ["type"] = "enchant", }, }, - ["3556824919"] = { - ["Quiver"] = { - ["max"] = 20, - ["min"] = 15, + ["26070"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26070", + ["text"] = "Allocates Bolstering Yell", + ["type"] = "enchant", }, + }, + ["261"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|261", + ["text"] = "Allocates Toxic Sludge", + ["type"] = "enchant", }, }, - ["3917489142"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, + ["26104"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26104", + ["text"] = "Allocates Spirit of the Wyvern", + ["type"] = "enchant", }, + }, + ["26107"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|26107", + ["text"] = "Allocates Kite Runner", + ["type"] = "enchant", }, }, - ["3981240776"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["26291"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|26291", + ["text"] = "Allocates Electrifying Nature", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["4015621042"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, + ["26331"] = { + ["specialCaseData"] = { }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26331", + ["text"] = "Allocates Harsh Winter", + ["type"] = "enchant", }, - ["Focus"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["26339"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26339", + ["text"] = "Allocates Ancestral Artifice", + ["type"] = "enchant", }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["26356"] = { + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26356", + ["text"] = "Allocates Primed to Explode", + ["type"] = "enchant", }, + }, + ["26447"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_4015621042", - ["text"] = "#% increased Energy Shield", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|26447", + ["text"] = "Allocates Refocus", + ["type"] = "enchant", }, }, - ["4080418644"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, + ["2645"] = { + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2645", + ["text"] = "Allocates Skullcrusher", + ["type"] = "enchant", }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + }, + ["26479"] = { + ["specialCaseData"] = { }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26479", + ["text"] = "Allocates Steadfast Resolve", + ["type"] = "enchant", }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, + }, + ["26518"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26518", + ["text"] = "Allocates Cold Nature", + ["type"] = "enchant", }, + }, + ["26563"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|26563", + ["text"] = "Allocates Bone Chains", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["4095671657"] = { - ["Belt"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["27009"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|27009", + ["text"] = "Allocates Lust for Sacrifice", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["4220027924"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["27108"] = { + ["specialCaseData"] = { }, - ["Belt"] = { - ["max"] = 25, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27108", + ["text"] = "Allocates Mass Hysteria", + ["type"] = "enchant", }, - ["Boots"] = { - ["max"] = 25, - ["min"] = 20, + }, + ["27176"] = { + ["specialCaseData"] = { }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27176", + ["text"] = "Allocates The Power Within", + ["type"] = "enchant", }, + }, + ["27303"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|27303", + ["text"] = "Allocates Vulgar Methods", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["44972811"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["27388"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27388", + ["text"] = "Allocates Aspiring Genius", + ["type"] = "enchant", }, + }, + ["27434"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|27434", + ["text"] = "Allocates Archon of the Storm", + ["type"] = "enchant", }, }, - ["709508406"] = { - ["1HMace"] = { - ["max"] = 18, - ["min"] = 12, + ["2745"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2745", + ["text"] = "Allocates The Noble Wolf", + ["type"] = "enchant", }, - ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 12, + }, + ["27491"] = { + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 25.5, - ["min"] = 17, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27491", + ["text"] = "Allocates Heavy Buffer", + ["type"] = "enchant", }, - ["2HWeapon"] = { - ["max"] = 25.5, - ["min"] = 12, + }, + ["27513"] = { + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 18, - ["min"] = 12, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27513", + ["text"] = "Allocates Material Solidification", + ["type"] = "enchant", }, - ["Crossbow"] = { - ["max"] = 25.5, - ["min"] = 17, + }, + ["27626"] = { + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 18, - ["min"] = 12, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27626", + ["text"] = "Allocates Touch the Arcane", + ["type"] = "enchant", }, - ["Quarterstaff"] = { - ["max"] = 25.5, - ["min"] = 17, + }, + ["27687"] = { + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 18, - ["min"] = 12, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27687", + ["text"] = "Allocates Greatest Defence", + ["type"] = "enchant", }, - ["Talisman"] = { - ["max"] = 25.5, - ["min"] = 17, + }, + ["27761"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27761", + ["text"] = "Allocates Counterstancing", + ["type"] = "enchant", }, + }, + ["27875"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_709508406", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|27875", + ["text"] = "Allocates General Electric", + ["type"] = "enchant", }, }, - ["737908626"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["27950"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|27950", + ["text"] = "Allocates Polished Iron", + ["type"] = "enchant", }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, + }, + ["28044"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28044", + ["text"] = "Allocates Coming Calamity", + ["type"] = "enchant", }, + }, + ["2814"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|2814", + ["text"] = "Allocates Engineered Blaze", + ["type"] = "enchant", }, }, - ["789117908"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, + ["28267"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28267", + ["text"] = "Allocates Desensitisation", + ["type"] = "enchant", }, + }, + ["28329"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|28329", + ["text"] = "Allocates Pressure Points", + ["type"] = "enchant", }, }, - ["803737631"] = { - ["Helmet"] = { - ["max"] = 100, - ["min"] = 50, + ["28408"] = { + ["specialCaseData"] = { }, - ["Quiver"] = { - ["max"] = 100, - ["min"] = 50, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28408", + ["text"] = "Allocates Invigorating Hate", + ["type"] = "enchant", }, + }, + ["2843"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|2843", + ["text"] = "Allocates Tolerant Equipment", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["924253255"] = { - ["Boots"] = { - ["max"] = -20, - ["min"] = -30, - }, - ["invertOnNegative"] = true, + ["28441"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "crafted.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "crafted", + ["id"] = "enchant.stat_2954116742|28441", + ["text"] = "Allocates Frantic Swings", + ["type"] = "enchant", }, }, - }, - ["Enchant"] = { - }, - ["Explicit"] = { - ["1002362373"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["28482"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28482", + ["text"] = "Allocates Total Incineration", + ["type"] = "enchant", }, + }, + ["28542"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|28542", + ["text"] = "Allocates The Molten One's Gift", + ["type"] = "enchant", }, }, - ["1002535626"] = { + ["28613"] = { ["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"] = "enchant.stat_2954116742|28613", + ["text"] = "Allocates Roaring Cries", + ["type"] = "enchant", }, }, - ["1004011302"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["2863"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2863", + ["text"] = "Allocates Perpetual Freeze", + ["type"] = "enchant", }, + }, + ["28892"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|28892", + ["text"] = "Allocates Primal Rage", + ["type"] = "enchant", }, }, - ["1007380041"] = { + ["28963"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1007380041", - ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|28963", + ["text"] = "Allocates Chakra of Rhythm", + ["type"] = "enchant", }, }, - ["1011760251"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["28975"] = { + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|28975", + ["text"] = "Allocates Pure Power", + ["type"] = "enchant", }, + }, + ["29288"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|29288", + ["text"] = "Allocates Deadly Invocations", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1014398896"] = { + ["29306"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1014398896", - ["text"] = "#% increased Spell Damage during any Flask Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|29306", + ["text"] = "Allocates Chakra of Thought", + ["type"] = "enchant", }, }, - ["101878827"] = { - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 36, + ["29372"] = { + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|29372", + ["text"] = "Allocates Sudden Infuriation", + ["type"] = "enchant", }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["29514"] = { + ["specialCaseData"] = { }, - ["Sceptre"] = { - ["max"] = 80, - ["min"] = 36, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|29514", + ["text"] = "Allocates Cluster Bombs", + ["type"] = "enchant", }, + }, + ["29527"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|29527", + ["text"] = "Allocates First Approach", + ["type"] = "enchant", }, }, - ["1022759479"] = { + ["29762"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1022759479", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|29762", + ["text"] = "Allocates Guttural Roar", + ["type"] = "enchant", }, }, - ["1028592286"] = { + ["29800"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1028592286", - ["text"] = "#% chance to Chain an additional time", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|29800", + ["text"] = "Allocates Shocking Limit", + ["type"] = "enchant", }, }, - ["1030153674"] = { + ["29881"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1030153674", - ["text"] = "Recover #% of maximum Mana on Kill", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|29881", + ["text"] = "Allocates Surging Beast", + ["type"] = "enchant", }, }, - ["1037193709"] = { - ["1HMace"] = { - ["max"] = 102, - ["min"] = 2, + ["29899"] = { + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["max"] = 102, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|29899", + ["text"] = "Allocates Finish Them", + ["type"] = "enchant", }, - ["2HMace"] = { - ["max"] = 156.5, - ["min"] = 3, + }, + ["2999"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 156.5, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|2999", + ["text"] = "Allocates Final Barrage", + ["type"] = "enchant", }, - ["Bow"] = { - ["max"] = 102, - ["min"] = 2, + }, + ["30132"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 156.5, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30132", + ["text"] = "Allocates Wrapped Quiver", + ["type"] = "enchant", }, - ["Flail"] = { - ["max"] = 102, - ["min"] = 2, + }, + ["30341"] = { + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 156.5, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30341", + ["text"] = "Allocates Master Fletching", + ["type"] = "enchant", }, - ["Spear"] = { - ["max"] = 102, - ["min"] = 2, + }, + ["30392"] = { + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 156.5, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30392", + ["text"] = "Allocates Succour", + ["type"] = "enchant", }, + }, + ["30395"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|30395", + ["text"] = "Allocates Howling Beast", + ["type"] = "enchant", }, }, - ["1039268420"] = { + ["30408"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1039268420", - ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|30408", + ["text"] = "Allocates Efficient Contraptions", + ["type"] = "enchant", }, }, - ["1045789614"] = { + ["30456"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1045789614", - ["text"] = "#% increased Critical Hit Chance against Marked Enemies", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|30456", + ["text"] = "Allocates High Alert", + ["type"] = "enchant", }, }, - ["1049080093"] = { + ["30523"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1049080093", - ["text"] = "Attacks Gain #% of Damage as Extra Fire Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|30523", + ["text"] = "Allocates Dead can Dance", + ["type"] = "enchant", }, }, - ["1050105434"] = { - ["1HWeapon"] = { - ["max"] = 164, - ["min"] = 10, + ["30546"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 328, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30546", + ["text"] = "Allocates Electrified Claw", + ["type"] = "enchant", }, - ["Amulet"] = { - ["max"] = 189, - ["min"] = 10, + }, + ["30562"] = { + ["specialCaseData"] = { }, - ["Belt"] = { - ["max"] = 124, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30562", + ["text"] = "Allocates Inner Faith", + ["type"] = "enchant", }, - ["Boots"] = { - ["max"] = 124, - ["min"] = 10, + }, + ["30720"] = { + ["specialCaseData"] = { }, - ["Focus"] = { - ["max"] = 164, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30720", + ["text"] = "Allocates Entropic Incarnation", + ["type"] = "enchant", }, - ["Gloves"] = { - ["max"] = 124, - ["min"] = 10, + }, + ["30748"] = { + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 149, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|30748", + ["text"] = "Allocates Controlled Chaos", + ["type"] = "enchant", }, - ["Ring"] = { - ["max"] = 179, - ["min"] = 10, + }, + ["31129"] = { + ["specialCaseData"] = { }, - ["Sceptre"] = { - ["max"] = 164, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31129", + ["text"] = "Allocates Lifelong Friend", + ["type"] = "enchant", }, - ["Staff"] = { - ["max"] = 328, - ["min"] = 20, + }, + ["31172"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 164, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31172", + ["text"] = "Allocates Falcon Technique", + ["type"] = "enchant", }, + }, + ["31175"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|31175", + ["text"] = "Allocates Grip of Evil", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1058934731"] = { + ["31189"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1058934731", - ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|31189", + ["text"] = "Allocates Unexpected Finesse", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1060572482"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["31326"] = { + ["specialCaseData"] = { }, - ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31326", + ["text"] = "Allocates Slow Burn", + ["type"] = "enchant", }, + }, + ["31364"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1060572482", - ["text"] = "#% increased Effect of Small Passive Skills in Radius", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|31364", + ["text"] = "Allocates Primal Protection", + ["type"] = "enchant", }, }, - ["1062208444"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, + ["30562"] = { + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "crafted.stat_2954116742|30562", + ["text"] = "Allocates Inner Faith", + ["type"] = "crafted", }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, + }, + ["31373"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", + ["type"] = "enchant", }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 6, + }, + ["31433"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31433", + ["text"] = "Allocates Catalysis", + ["type"] = "enchant", }, + }, + ["31724"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|31724", + ["text"] = "Allocates Iron Slippers", + ["type"] = "enchant", }, }, - ["1062710370"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["31745"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|31745", + ["text"] = "Allocates Lockdown", + ["type"] = "enchant", }, + }, + ["31773"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062710370", - ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|31773", + ["text"] = "Allocates Resurging Archon", + ["type"] = "enchant", }, }, - ["1087108135"] = { + ["31826"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1087108135", - ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|31826", + ["text"] = "Allocates Long Distance Relationship", + ["type"] = "enchant", }, }, - ["1087531620"] = { + ["3188"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1087531620", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|3188", + ["text"] = "Allocates Revenge", + ["type"] = "enchant", }, }, - ["1102738251"] = { + ["31925"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1102738251", - ["text"] = "Life Flasks gain # charges per Second", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|31925", + ["text"] = "Allocates Warding Fetish", + ["type"] = "enchant", }, }, - ["1104825894"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["32071"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1104825894", - ["text"] = "#% faster Curse Activation", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|32071", + ["text"] = "Allocates Primal Growth", + ["type"] = "enchant", }, }, - ["111835965"] = { + ["3215"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_111835965", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|3215", + ["text"] = "Allocates Melding", + ["type"] = "enchant", }, }, - ["1120862500"] = { - ["Charm"] = { - ["max"] = 300, - ["min"] = 16, - }, + ["32151"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1120862500", - ["text"] = "Recover # Mana when Used", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|32151", + ["text"] = "Allocates Crystalline Resistance", + ["type"] = "enchant", }, }, - ["1129429646"] = { + ["32301"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1129429646", - ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|32301", + ["text"] = "Allocates Frazzled", + ["type"] = "enchant", }, }, - ["1135928777"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["32353"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32353", + ["text"] = "Allocates Swift Claw", + ["type"] = "enchant", }, + }, + ["32354"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1135928777", - ["text"] = "#% increased Attack Speed with Crossbows", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|32354", + ["text"] = "Allocates Defiance", + ["type"] = "enchant", }, }, - ["1137305356"] = { + ["32448"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1137305356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|32448", + ["text"] = "Allocates Shockproof", + ["type"] = "enchant", }, }, - ["1145481685"] = { + ["32507"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1145481685", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|32507", + ["text"] = "Allocates Cut to the Bone", + ["type"] = "enchant", }, }, - ["1158842087"] = { + ["32543"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1158842087", - ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|32543", + ["text"] = "Allocates Unhindered", + ["type"] = "enchant", }, }, - ["1160637284"] = { + ["32655"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1160637284", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|32655", + ["text"] = "Allocates Hunting Companion", + ["type"] = "enchant", }, }, - ["1165163804"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["32664"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32664", + ["text"] = "Allocates Chakra of Breathing", + ["type"] = "enchant", }, + }, + ["32721"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1165163804", - ["text"] = "#% increased Attack Speed with Spears", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|32721", + ["text"] = "Allocates Distracted Target", + ["type"] = "enchant", }, }, - ["1166140625"] = { + ["32799"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1166140625", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|32799", + ["text"] = "Allocates Captivating Companionship", + ["type"] = "enchant", }, }, - ["1177404658"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["32858"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1177404658", - ["text"] = "#% increased Global Armour, Evasion and Energy Shield", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|32858", + ["text"] = "Allocates Dread Engineer's Concoction", + ["type"] = "enchant", }, }, - ["1180552088"] = { + ["32932"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1180552088", - ["text"] = "#% increased effect of Archon Buffs on you", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|32932", + ["text"] = "Allocates Ichlotl's Inferno", + ["type"] = "enchant", }, }, - ["1181419800"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["32951"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|32951", + ["text"] = "Allocates Preservation", + ["type"] = "enchant", }, + }, + ["32976"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1181419800", - ["text"] = "#% increased Damage with Maces", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|32976", + ["text"] = "Allocates Gem Enthusiast", + ["type"] = "enchant", }, }, - ["1181501418"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["33059"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33059", + ["text"] = "Allocates Back in Action", + ["type"] = "enchant", }, + }, + ["33093"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1181501418", - ["text"] = "# to Maximum Rage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|33093", + ["text"] = "Allocates Effervescent", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1185341308"] = { + ["33099"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1185341308", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|33099", + ["text"] = "Allocates Hunter's Talisman", + ["type"] = "enchant", }, }, - ["1200678966"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["33216"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33216", + ["text"] = "Allocates Deep Wounds", + ["type"] = "enchant", }, + }, + ["33229"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1200678966", - ["text"] = "#% increased bonuses gained from Equipped Quiver", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|33229", + ["text"] = "Allocates Haemorrhaging Cuts", + ["type"] = "enchant", }, }, - ["1202301673"] = { - ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 1, + ["33240"] = { + ["specialCaseData"] = { }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33240", + ["text"] = "Allocates Lord of Horrors", + ["type"] = "enchant", }, - ["Bow"] = { - ["max"] = 4, - ["min"] = 1, + }, + ["3348"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3348", + ["text"] = "Allocates Spirit of the Wolf", + ["type"] = "enchant", }, - ["Quiver"] = { - ["max"] = 1, - ["min"] = 1, + }, + ["33542"] = { + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 4, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33542", + ["text"] = "Allocates Quick Fingers", + ["type"] = "enchant", }, + }, + ["33585"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1202301673", - ["text"] = "# to Level of all Projectile Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|33585", + ["text"] = "Allocates Unspoken Bond", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1238227257"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["336"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|336", + ["text"] = "Allocates Storm Swell", + ["type"] = "enchant", }, + }, + ["33730"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|33730", + ["text"] = "Allocates Focused Channel", + ["type"] = "enchant", }, }, - ["124131830"] = { - ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, + ["338"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|338", + ["text"] = "Allocates Invocated Limit", + ["type"] = "enchant", }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, + }, + ["33887"] = { + ["specialCaseData"] = { }, - ["Focus"] = { - ["max"] = 2, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33887", + ["text"] = "Allocates Full Salvo", + ["type"] = "enchant", }, - ["Staff"] = { - ["max"] = 6, - ["min"] = 2, + }, + ["33922"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 4, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|33922", + ["text"] = "Allocates Stripped Defences", + ["type"] = "enchant", }, + }, + ["33978"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_124131830", - ["text"] = "# to Level of all Spell Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|33978", + ["text"] = "Allocates Unstoppable Barrier", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1241625305"] = { - ["Quiver"] = { - ["max"] = 59, - ["min"] = 11, - }, + ["34300"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1241625305", - ["text"] = "#% increased Damage with Bow Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|34300", + ["text"] = "Allocates Conservative Casting", + ["type"] = "enchant", }, }, - ["124859000"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 6, - }, + ["34308"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|34308", + ["text"] = "Allocates Personal Touch", + ["type"] = "enchant", }, }, - ["1250712710"] = { - ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["34316"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|34316", + ["text"] = "Allocates One with the River", + ["type"] = "enchant", }, }, - ["1261982764"] = { - ["LifeFlask"] = { - ["max"] = 100, - ["min"] = 61, - }, + ["34324"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1261982764", - ["text"] = "#% increased Life Recovered", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|34324", + ["text"] = "Allocates Spectral Ward", + ["type"] = "enchant", }, }, - ["1263695895"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Wand"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["34340"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|34340", + ["text"] = "Allocates Mass Rejuvenation", + ["type"] = "enchant", }, }, - ["1265767008"] = { + ["34425"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1265767008", - ["text"] = "Your Minions are Gigantic if they have Revived Recently", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|34425", + ["text"] = "Allocates Precise Volatility", + ["type"] = "enchant", }, }, - ["1266413530"] = { + ["34473"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1266413530", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|34473", + ["text"] = "Allocates Spaghettification", + ["type"] = "enchant", }, }, - ["127081978"] = { + ["34531"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_127081978", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", + ["type"] = "enchant", }, }, - ["1285594161"] = { + ["34541"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1285594161", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|34541", + ["text"] = "Allocates Energising Deflection", + ["type"] = "enchant", }, }, - ["1301765461"] = { - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["34543"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1301765461", - ["text"] = "#% to Maximum Chaos Resistance", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|34543", + ["text"] = "Allocates The Frenzied Bear", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1303248024"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["34553"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1303248024", - ["text"] = "#% increased Magnitude of Ailments you inflict", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|34553", + ["text"] = "Allocates Emboldening Lead", + ["type"] = "enchant", }, }, - ["1309799717"] = { + ["34908"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1309799717", - ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|34908", + ["text"] = "Allocates Staunch Deflection", + ["type"] = "enchant", }, }, - ["1310194496"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["3492"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3492", + ["text"] = "Allocates Void", + ["type"] = "enchant", }, + }, + ["35028"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|35028", + ["text"] = "Allocates In the Thick of It", + ["type"] = "enchant", }, }, - ["1315743832"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["35031"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35031", + ["text"] = "Allocates Chakra of Life", + ["type"] = "enchant", }, + }, + ["35324"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1315743832", - ["text"] = "#% increased Thorns damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|35324", + ["text"] = "Allocates Burnout", + ["type"] = "enchant", }, }, - ["1316278494"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["35369"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|35369", + ["text"] = "Allocates Investing Energies", + ["type"] = "enchant", }, + }, + ["35417"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|35417", + ["text"] = "Allocates Wyvern's Breath", + ["type"] = "enchant", }, }, - ["1320662475"] = { + ["35477"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1320662475", - ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|35477", + ["text"] = "Allocates Far Sighted", + ["type"] = "enchant", }, }, - ["1321054058"] = { + ["35560"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1321054058", - ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|35560", + ["text"] = "Allocates At your Command", + ["type"] = "enchant", }, }, - ["1321104829"] = { + ["35564"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1321104829", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|35564", + ["text"] = "Allocates Turn the Clock Back", + ["type"] = "enchant", }, }, - ["1323216174"] = { + ["35581"] = { ["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", + ["id"] = "enchant.stat_2954116742|35581", + ["text"] = "Allocates Near at Hand", + ["type"] = "enchant", }, }, - ["1337740333"] = { + ["35618"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1337740333", - ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|35618", + ["text"] = "Allocates Cold Coat", + ["type"] = "enchant", }, }, - ["1347539079"] = { + ["3567"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1347539079", - ["text"] = "#% Surpassing chance to fire an additional Projectile", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|3567", + ["text"] = "Allocates Raw Mana", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1352561456"] = { + ["35739"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1352561456", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|35739", + ["text"] = "Allocates Crushing Judgement", + ["type"] = "enchant", }, }, - ["1366840608"] = { + ["35792"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1366840608", - ["text"] = "#% increased Charges", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|35792", + ["text"] = "Allocates Blood of Rage", + ["type"] = "enchant", }, }, - ["1368271171"] = { - ["1HMace"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Quiver"] = { - ["max"] = 27, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 27, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Staff"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Wand"] = { - ["max"] = 45, - ["min"] = 2, - }, + ["35809"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", + ["type"] = "enchant", }, }, - ["1379411836"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 13, - ["min"] = 2, - }, + ["35849"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1379411836", - ["text"] = "# to all Attributes", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|35849", + ["text"] = "Allocates Thickened Arteries", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["138421180"] = { + ["35855"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_138421180", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|35855", + ["text"] = "Allocates Fortifying Blood", + ["type"] = "enchant", }, }, - ["1389754388"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Belt"] = { - ["max"] = 33, - ["min"] = 4, - }, + ["35876"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|35876", + ["text"] = "Allocates Admonisher", + ["type"] = "enchant", }, }, - ["139889694"] = { + ["35918"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_139889694", - ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|35918", + ["text"] = "Allocates One For All", + ["type"] = "enchant", }, }, - ["1405298142"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["35966"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1405298142", - ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|35966", + ["text"] = "Allocates Heart Tissue", + ["type"] = "enchant", }, }, - ["1412217137"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, + ["36085"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|36085", + ["text"] = "Allocates Serrated Edges", + ["type"] = "enchant", }, }, - ["1416406066"] = { + ["36100"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1416406066", - ["text"] = "#% increased Spirit", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|36100", + ["text"] = "Allocates Molten Claw", + ["type"] = "enchant", }, }, - ["1417267954"] = { + ["36333"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1417267954", - ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|36333", + ["text"] = "Allocates Explosive Empowerment", + ["type"] = "enchant", }, }, - ["1423639565"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["36341"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|36341", + ["text"] = "Allocates Cull the Hordes", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1426522529"] = { + ["36364"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1426522529", - ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|36364", + ["text"] = "Allocates Electrocution", + ["type"] = "enchant", }, }, - ["1432756708"] = { + ["36507"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1432756708", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|36507", + ["text"] = "Allocates Vile Mending", + ["type"] = "enchant", }, }, - ["1443502073"] = { + ["36623"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1443502073", - ["text"] = "#% increased Effect of Prefixes", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|36623", + ["text"] = "Allocates Convalescence", + ["type"] = "enchant", }, }, - ["1444556985"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["36630"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|36630", + ["text"] = "Allocates Incision", + ["type"] = "enchant", }, }, - ["145581225"] = { + ["36808"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_145581225", - ["text"] = "#% increased Cast Speed during any Flask Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|36808", + ["text"] = "Allocates Spiked Shield", + ["type"] = "enchant", }, }, - ["1459321413"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["3688"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3688", + ["text"] = "Allocates Dynamism", + ["type"] = "enchant", }, + }, + ["36931"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|36931", + ["text"] = "Allocates Concussive Attack", + ["type"] = "enchant", }, }, - ["147764878"] = { + ["36976"] = { ["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"] = "enchant.stat_2954116742|36976", + ["text"] = "Allocates Marked for Death", + ["type"] = "enchant", }, }, - ["1484026495"] = { + ["3698"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1484026495", - ["text"] = "+# maximum stacks of Puppet Master", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|3698", + ["text"] = "Allocates Spike Pit", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1484500028"] = { + ["372"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1484500028", - ["text"] = "Attacks Gain #% of Damage as Extra Cold Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|372", + ["text"] = "Allocates Heatproof", + ["type"] = "enchant", }, }, - ["1485480327"] = { + ["37244"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1485480327", - ["text"] = "Minions have #% increased Immobilisation buildup", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|37244", + ["text"] = "Allocates Shield Expertise", + ["type"] = "enchant", }, }, - ["1488650448"] = { + ["37266"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1488650448", - ["text"] = "# to Ailment Threshold", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|37266", + ["text"] = "Allocates Nourishing Ally", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1493485657"] = { + ["37276"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1493485657", - ["text"] = "Spells have #% increased Cooldown Recovery Rate", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|37276", + ["text"] = "Allocates Battle Trance", + ["type"] = "enchant", }, }, - ["1494950893"] = { + ["37302"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1494950893", - ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|37302", + ["text"] = "Allocates Kept at Bay", + ["type"] = "enchant", }, }, - ["1495814176"] = { + ["37408"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1495814176", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|37408", + ["text"] = "Allocates Staunching", + ["type"] = "enchant", }, }, - ["1505023559"] = { + ["37458"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1505023559", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|37458", + ["text"] = "Allocates Strong Links", + ["type"] = "enchant", }, }, - ["1509134228"] = { - ["1HMace"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 179, - ["min"] = 15, + ["37514"] = { + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 179, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37514", + ["text"] = "Allocates Whirling Assault", + ["type"] = "enchant", }, - ["2HWeapon"] = { - ["max"] = 179, - ["min"] = 15, + }, + ["37543"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", + ["type"] = "enchant", }, - ["Bow"] = { - ["max"] = 179, - ["min"] = 15, + }, + ["37742"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 179, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37742", + ["text"] = "Allocates Manifold Method", + ["type"] = "enchant", }, - ["Flail"] = { - ["max"] = 179, - ["min"] = 15, + }, + ["37806"] = { + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 179, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37806", + ["text"] = "Allocates Branching Bolts", + ["type"] = "enchant", }, - ["Spear"] = { - ["max"] = 179, - ["min"] = 15, + }, + ["37872"] = { + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 179, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|37872", + ["text"] = "Allocates Presence Present", + ["type"] = "enchant", }, + }, + ["38053"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|38053", + ["text"] = "Allocates Deafening Cries", + ["type"] = "enchant", }, }, - ["1509533589"] = { + ["38111"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509533589", - ["text"] = "Enemies take #% increased Damage for each Elemental Ailment type amongyour Ailments on them", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|38111", + ["text"] = "Allocates Pliable Flesh", + ["type"] = "enchant", }, }, - ["1514844108"] = { + ["38329"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1514844108", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|38329", + ["text"] = "Allocates Biting Frost", + ["type"] = "enchant", }, }, - ["1526933524"] = { - ["LifeFlask"] = { - ["max"] = 1, - ["min"] = 1, + ["38342"] = { + ["specialCaseData"] = { }, - ["ManaFlask"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38342", + ["text"] = "Allocates Stupefy", + ["type"] = "enchant", }, + }, + ["38398"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1526933524", - ["text"] = "Instant Recovery", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|38398", + ["text"] = "Allocates Apocalypse", + ["type"] = "enchant", }, }, - ["153777645"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["38459"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38459", + ["text"] = "Allocates Disorientation", + ["type"] = "enchant", }, + }, + ["38479"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Curses", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|38479", + ["text"] = "Allocates Close Confines", + ["type"] = "enchant", }, }, - ["1544773869"] = { - ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 4, + ["37742"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 40, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "crafted.stat_2954116742|37742", + ["text"] = "Allocates Manifold Method", + ["type"] = "crafted", }, + }, + ["38532"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1544773869", - ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", + ["type"] = "enchant", }, }, - ["1545858329"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, + ["38535"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38535", + ["text"] = "Allocates Stormcharged", + ["type"] = "enchant", }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, + }, + ["38537"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", + ["type"] = "enchant", }, + }, + ["38570"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|38570", + ["text"] = "Allocates Demolitionist", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1552666713"] = { + ["38614"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1552666713", - ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|38614", + ["text"] = "Allocates Psychic Fragmentation", + ["type"] = "enchant", }, }, - ["1568848828"] = { + ["38628"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1568848828", - ["text"] = "Recover # Runic Ward when you Block", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|38628", + ["text"] = "Allocates Escalating Toxins", + ["type"] = "enchant", }, }, - ["1569101201"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["38888"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38888", + ["text"] = "Allocates Unerring Impact", + ["type"] = "enchant", }, + }, + ["38895"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1569101201", - ["text"] = "Empowered Attacks deal #% increased Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|38895", + ["text"] = "Allocates Crystal Elixir", + ["type"] = "enchant", }, }, - ["1569159338"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["38537"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "crafted.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", + ["type"] = "crafted", + }, + }, + ["3894"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3894", + ["text"] = "Allocates Eldritch Will", + ["type"] = "enchant", }, + }, + ["38965"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1569159338", - ["text"] = "#% increased Parry Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|38965", + ["text"] = "Allocates Infused Limits", + ["type"] = "enchant", }, }, - ["1570501432"] = { + ["38969"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1570501432", - ["text"] = "Leech Life #% faster", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|38969", + ["text"] = "Allocates Finesse", + ["type"] = "enchant", }, }, - ["1570770415"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 8, + ["38972"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|38972", + ["text"] = "Allocates Restless Dead", + ["type"] = "enchant", }, + }, + ["39050"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|39050", + ["text"] = "Allocates Exploit", + ["type"] = "enchant", }, }, - ["1573130764"] = { - ["Gloves"] = { - ["max"] = 37, - ["min"] = 2, + ["39083"] = { + ["specialCaseData"] = { }, - ["Quiver"] = { - ["max"] = 37, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|39083", + ["text"] = "Allocates Blood Rush", + ["type"] = "enchant", }, - ["Ring"] = { - ["max"] = 37, - ["min"] = 2, + }, + ["3921"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|3921", + ["text"] = "Allocates Fate Finding", + ["type"] = "enchant", }, + }, + ["39347"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|39347", + ["text"] = "Allocates Breaking Blows", + ["type"] = "enchant", }, }, - ["1574590649"] = { - ["1HWeapon"] = { - ["max"] = 25.5, - ["min"] = 2, + ["39369"] = { + ["specialCaseData"] = { }, - ["Sceptre"] = { - ["max"] = 25.5, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|39369", + ["text"] = "Allocates Struck Through", + ["type"] = "enchant", }, + }, + ["39567"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|39567", + ["text"] = "Allocates Ingenuity", + ["type"] = "enchant", }, }, - ["1585769763"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["3985"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1585769763", - ["text"] = "#% increased Blind Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|3985", + ["text"] = "Allocates Forces of Nature", + ["type"] = "enchant", }, }, - ["1589917703"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["39881"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|39881", + ["text"] = "Allocates Staggering Palm", + ["type"] = "enchant", }, }, - ["1590846356"] = { + ["39884"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1590846356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|39884", + ["text"] = "Allocates Searing Heat", + ["type"] = "enchant", }, }, - ["1594812856"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["39990"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|39990", + ["text"] = "Allocates Chronomancy", + ["type"] = "enchant", }, + }, + ["40073"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1594812856", - ["text"] = "#% increased Damage with Warcries", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|40073", + ["text"] = "Allocates Drenched", + ["type"] = "enchant", }, }, - ["1600707273"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, + ["40117"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40117", + ["text"] = "Allocates Spiked Armour", + ["type"] = "enchant", }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, + }, + ["40166"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40166", + ["text"] = "Allocates Deep Trance", + ["type"] = "enchant", }, + }, + ["40213"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|40213", + ["text"] = "Allocates Taste for Blood", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1602294220"] = { + ["40270"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1602294220", - ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|40270", + ["text"] = "Allocates Frenetic", + ["type"] = "enchant", }, }, - ["1604736568"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["40292"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40292", + ["text"] = "Allocates Nimble Strength", + ["type"] = "enchant", }, + }, + ["4031"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1604736568", - ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|4031", + ["text"] = "Allocates Icebreaker", + ["type"] = "enchant", }, }, - ["1615901249"] = { + ["40325"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1615901249", - ["text"] = "Invocated skills have #% increased Maximum Energy", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|40325", + ["text"] = "Allocates Resolution", + ["type"] = "enchant", }, }, - ["1617268696"] = { + ["40345"] = { ["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"] = "enchant.stat_2954116742|40345", + ["text"] = "Allocates Master of Hexes", + ["type"] = "enchant", }, }, - ["1653682082"] = { + ["40399"] = { ["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"] = "enchant.stat_2954116742|40399", + ["text"] = "Allocates Energise", + ["type"] = "enchant", }, }, - ["1671376347"] = { - ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, + ["40480"] = { + ["specialCaseData"] = { }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40480", + ["text"] = "Allocates Harmonic Generator", + ["type"] = "enchant", }, - ["Chest"] = { - ["max"] = 45, - ["min"] = 6, + }, + ["40687"] = { + ["specialCaseData"] = { }, - ["Focus"] = { - ["max"] = 45, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40687", + ["text"] = "Allocates Lead by Example", + ["type"] = "enchant", }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, + }, + ["40803"] = { + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40803", + ["text"] = "Allocates Sigil of Ice", + ["type"] = "enchant", }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, + }, + ["40985"] = { + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 45, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|40985", + ["text"] = "Allocates Empowering Remnants", + ["type"] = "enchant", }, + }, + ["40990"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|40990", + ["text"] = "Allocates Exposed to the Storm", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1691403182"] = { + ["41033"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1691403182", - ["text"] = "Minions have #% increased Cooldown Recovery Rate", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", + ["type"] = "enchant", }, }, - ["1692879867"] = { - ["Chest"] = { - ["max"] = -36, - ["min"] = -60, + ["41394"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|41394", + ["text"] = "Allocates Invigorating Archon", + ["type"] = "enchant", }, - ["invertOnNegative"] = true, + }, + ["41512"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1692879867", - ["text"] = "#% increased Duration of Bleeding on You", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|41512", + ["text"] = "Allocates Heavy Weaponry", + ["type"] = "enchant", }, }, - ["1697447343"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["41580"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|41580", + ["text"] = "Allocates Maiming Strike", + ["type"] = "enchant", }, + }, + ["41620"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1697447343", - ["text"] = "#% increased Freeze Buildup with Quarterstaves", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|41620", + ["text"] = "Allocates Bear's Roar", + ["type"] = "enchant", }, }, - ["1697951953"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["41753"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|41753", + ["text"] = "Allocates Evocational Practitioner", + ["type"] = "enchant", }, + }, + ["41811"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1697951953", - ["text"] = "#% increased Hazard Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|41811", + ["text"] = "Allocates Shatter Palm", + ["type"] = "enchant", }, }, - ["169946467"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["41905"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|41905", + ["text"] = "Allocates Gravedigger", + ["type"] = "enchant", }, + }, + ["41935"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_169946467", - ["text"] = "#% increased Accuracy Rating with Bows", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|41935", + ["text"] = "Allocates Hide of the Bear", + ["type"] = "enchant", }, }, - ["1714971114"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["41972"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|41972", + ["text"] = "Allocates Glaciation", + ["type"] = "enchant", }, + }, + ["42032"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1714971114", - ["text"] = "Mark Skills have #% increased Use Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|42032", + ["text"] = "Allocates Escalating Mayhem", + ["type"] = "enchant", }, }, - ["1718147982"] = { + ["42036"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|42036", + ["text"] = "Allocates Off-Balancing Retort", + ["type"] = "enchant", }, }, - ["173226756"] = { - ["LifeFlask"] = { - ["max"] = 70, - ["min"] = 41, + ["42045"] = { + ["specialCaseData"] = { }, - ["ManaFlask"] = { - ["max"] = 70, - ["min"] = 41, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42045", + ["text"] = "Allocates Archon of the Blizzard", + ["type"] = "enchant", }, + }, + ["42065"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|42065", + ["text"] = "Allocates Surging Currents", + ["type"] = "enchant", }, }, - ["1742651309"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 26, - }, + ["42070"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1742651309", - ["text"] = "#% of Fire Damage taken Recouped as Life", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|42070", + ["text"] = "Allocates Saqawal's Guidance", + ["type"] = "enchant", }, }, - ["174664100"] = { + ["42077"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|42077", + ["text"] = "Allocates Essence Infusion", + ["type"] = "enchant", }, }, - ["1754445556"] = { - ["Gloves"] = { - ["max"] = 37.5, - ["min"] = 2.5, - }, - ["Quiver"] = { - ["max"] = 37.5, - ["min"] = 2.5, - }, - ["Ring"] = { - ["max"] = 37.5, - ["min"] = 2.5, - }, + ["42103"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning damage to Attacks", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|42103", + ["text"] = "Allocates Enduring Deflection", + ["type"] = "enchant", }, }, - ["1756380435"] = { + ["42177"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1756380435", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|42177", + ["text"] = "Allocates Blurred Motion", + ["type"] = "enchant", }, }, - ["1772247089"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["42245"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42245", + ["text"] = "Allocates Efficient Inscriptions", + ["type"] = "enchant", }, + }, + ["42302"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1772247089", - ["text"] = "#% increased chance to inflict Ailments", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|42302", + ["text"] = "Allocates Split Shot", + ["type"] = "enchant", }, }, - ["1773308808"] = { + ["42347"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1773308808", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|42347", + ["text"] = "Allocates Chakra of Sight", + ["type"] = "enchant", }, }, - ["1776411443"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["42354"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42354", + ["text"] = "Allocates Blinding Flash", + ["type"] = "enchant", }, + }, + ["4238"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1776411443", - ["text"] = "Break #% increased Armour", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", + ["type"] = "enchant", }, }, - ["1776945532"] = { + ["42390"] = { ["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"] = "enchant.stat_2954116742|42390", + ["text"] = "Allocates Overheating Blow", + ["type"] = "enchant", }, }, - ["1777421941"] = { + ["42660"] = { ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42660", + ["text"] = "Allocates Commanding Rage", + ["type"] = "enchant", }, + }, + ["42714"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1777421941", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|42714", + ["text"] = "Allocates Thousand Cuts", + ["type"] = "enchant", }, }, - ["1782086450"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["42760"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42760", + ["text"] = "Allocates Chakra of Stability", + ["type"] = "enchant", }, + }, + ["42813"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|42813", + ["text"] = "Allocates Tides of Change", + ["type"] = "enchant", }, }, - ["179541474"] = { + ["4295"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_179541474", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|4295", + ["text"] = "Allocates Adverse Growth", + ["type"] = "enchant", }, }, - ["1797815732"] = { + ["42959"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1797815732", - ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|42959", + ["text"] = "Allocates Low Tolerance", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1798257884"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, + ["42981"] = { + ["specialCaseData"] = { }, - ["Sceptre"] = { - ["max"] = 119, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|42981", + ["text"] = "Allocates Cruel Methods", + ["type"] = "enchant", }, + }, + ["43082"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|43082", + ["text"] = "Allocates Acceleration", + ["type"] = "enchant", }, }, - ["1800303440"] = { + ["43088"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1800303440", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|43088", + ["text"] = "Allocates Agonising Calamity", + ["type"] = "enchant", }, }, - ["1805182458"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["43090"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43090", + ["text"] = "Allocates Electrotherapy", + ["type"] = "enchant", }, + }, + ["43139"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1805182458", - ["text"] = "Companions have #% increased maximum Life", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|43139", + ["text"] = "Allocates Stormbreaker", + ["type"] = "enchant", }, }, - ["1805633363"] = { + ["43250"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1805633363", - ["text"] = "#% increased Reservation Efficiency of Minion Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|43250", + ["text"] = "Allocates Adaptive Skin", + ["type"] = "enchant", }, }, - ["1811130680"] = { - ["ManaFlask"] = { - ["max"] = 100, - ["min"] = 61, - }, + ["4331"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1811130680", - ["text"] = "#% increased Mana Recovered", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|4331", + ["text"] = "Allocates Guided Hand", + ["type"] = "enchant", }, }, - ["1823942939"] = { + ["43396"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1823942939", - ["text"] = "# to maximum number of Summoned Ballista Totems", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|43396", + ["text"] = "Allocates Ancestral Reach", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1829102168"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["43423"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43423", + ["text"] = "Allocates Emboldened Avatar", + ["type"] = "enchant", }, + }, + ["43584"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1829102168", - ["text"] = "#% increased Duration of Damaging Ailments on Enemies", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|43584", + ["text"] = "Allocates Flare", + ["type"] = "enchant", }, }, - ["1834658952"] = { + ["43633"] = { ["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"] = "enchant.stat_2954116742|43633", + ["text"] = "Allocates Energising Archon", + ["type"] = "enchant", }, }, - ["1836676211"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["43677"] = { + ["specialCaseData"] = { }, - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43677", + ["text"] = "Allocates Crippling Toxins", + ["type"] = "enchant", }, + }, + ["43711"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|43711", + ["text"] = "Allocates Thornhide", + ["type"] = "enchant", }, }, - ["1839076647"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["43791"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|43791", + ["text"] = "Allocates Rallying Icon", + ["type"] = "enchant", }, + }, + ["43829"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|43829", + ["text"] = "Allocates Advanced Munitions", + ["type"] = "enchant", }, }, - ["1840985759"] = { + ["43854"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1840985759", - ["text"] = "#% increased Area of Effect for Attacks", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|43854", + ["text"] = "Allocates All For One", + ["type"] = "enchant", }, }, - ["1846980580"] = { + ["43939"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1846980580", - ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|43939", + ["text"] = "Allocates Melting Flames", + ["type"] = "enchant", }, }, - ["1852184471"] = { + ["43944"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1852184471", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|43944", + ["text"] = "Allocates Instability", + ["type"] = "enchant", }, }, - ["1852872083"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["44005"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1852872083", - ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", + ["type"] = "enchant", }, }, - ["1854213750"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["44293"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_1854213750", - ["text"] = "Minions have #% increased Critical Damage Bonus", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|44293", + ["text"] = "Allocates Hastening Barrier", + ["type"] = "enchant", }, }, - ["185580205"] = { + ["44299"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_185580205", - ["text"] = "Charms gain # charge per Second", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|44299", + ["text"] = "Allocates Enhanced Barrier", + ["type"] = "enchant", }, }, - ["1869147066"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 15, + ["44330"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44330", + ["text"] = "Allocates Coated Arms", + ["type"] = "enchant", }, + }, + ["44373"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1869147066", - ["text"] = "#% increased Glory generation for Banner Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|44373", + ["text"] = "Allocates Wither Away", + ["type"] = "enchant", }, }, - ["1873752457"] = { + ["4447"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1873752457", - ["text"] = "Gains # Charges per Second", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|4447", + ["text"] = "Allocates Pin their Motivation", + ["type"] = "enchant", }, }, - ["1874553720"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, - }, + ["44566"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1874553720", - ["text"] = "#% reduced Chill Duration on you", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|44566", + ["text"] = "Allocates Lightning Rod", + ["type"] = "enchant", }, }, - ["1881230714"] = { - ["Bow"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 20, + ["44753"] = { + ["specialCaseData"] = { }, - ["Dagger"] = { - ["max"] = 25, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44753", + ["text"] = "Allocates One With Flame", + ["type"] = "enchant", }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 20, + }, + ["44756"] = { + ["specialCaseData"] = { }, - ["One Hand Axe"] = { - ["max"] = 25, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44756", + ["text"] = "Allocates Marked Agility", + ["type"] = "enchant", }, - ["One Hand Mace"] = { - ["max"] = 25, - ["min"] = 20, + }, + ["44765"] = { + ["specialCaseData"] = { }, - ["One Hand Sword"] = { - ["max"] = 25, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44765", + ["text"] = "Allocates Distracting Presence", + ["type"] = "enchant", }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 20, + }, + ["44917"] = { + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44917", + ["text"] = "Allocates Self Mortification", + ["type"] = "enchant", }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 20, + }, + ["44952"] = { + ["specialCaseData"] = { }, - ["Two Hand Axe"] = { - ["max"] = 25, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44952", + ["text"] = "Allocates Made to Last", + ["type"] = "enchant", }, - ["Two Hand Mace"] = { - ["max"] = 25, - ["min"] = 20, + }, + ["44974"] = { + ["specialCaseData"] = { }, - ["Two Hand Sword"] = { - ["max"] = 25, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|44974", + ["text"] = "Allocates Hail", + ["type"] = "enchant", }, + }, + ["45013"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1881230714", - ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|45013", + ["text"] = "Allocates Finishing Blows", + ["type"] = "enchant", }, }, - ["1892122971"] = { + ["45177"] = { ["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"] = "enchant.stat_2954116742|45177", + ["text"] = "Allocates Strike True", + ["type"] = "enchant", }, }, - ["1896066427"] = { + ["45244"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1896066427", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|45244", + ["text"] = "Allocates Refills", + ["type"] = "enchant", }, }, - ["1911237468"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["45329"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45329", + ["text"] = "Allocates Delayed Danger", + ["type"] = "enchant", }, + }, + ["4534"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1911237468", - ["text"] = "#% increased Stun Threshold while Parrying", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|4534", + ["text"] = "Allocates Piercing Shot", + ["type"] = "enchant", }, }, - ["1940865751"] = { - ["1HMace"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, - ["1HWeapon"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["45370"] = { + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 74.5, - ["min"] = 3.5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45370", + ["text"] = "Allocates The Raging Ox", + ["type"] = "enchant", }, - ["2HWeapon"] = { - ["max"] = 74.5, - ["min"] = 2.5, + }, + ["4544"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4544", + ["text"] = "Allocates The Ancient Serpent", + ["type"] = "enchant", }, - ["Bow"] = { - ["max"] = 52.5, - ["min"] = 2.5, + }, + ["4547"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4547", + ["text"] = "Allocates Unnatural Resilience", + ["type"] = "enchant", }, - ["Crossbow"] = { - ["max"] = 74.5, - ["min"] = 3.5, + }, + ["45488"] = { + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45488", + ["text"] = "Allocates Cross Strike", + ["type"] = "enchant", }, - ["Quarterstaff"] = { - ["max"] = 74.5, - ["min"] = 3.5, + }, + ["45599"] = { + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45599", + ["text"] = "Allocates Lay Siege", + ["type"] = "enchant", }, - ["Talisman"] = { - ["max"] = 74.5, - ["min"] = 3.5, + }, + ["45612"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|45612", + ["text"] = "Allocates Defensive Reflexes", + ["type"] = "enchant", }, + }, + ["45632"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|45632", + ["text"] = "Allocates Mind Eraser", + ["type"] = "enchant", }, }, - ["1944020877"] = { + ["45713"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1944020877", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|45713", + ["text"] = "Allocates Savouring", + ["type"] = "enchant", }, }, - ["195270549"] = { + ["45751"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_195270549", - ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|45751", + ["text"] = "Allocates Frightening Shield", + ["type"] = "enchant", }, }, - ["1967040409"] = { + ["45777"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1967040409", - ["text"] = "Spell Skills have #% increased Area of Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|45777", + ["text"] = "Allocates Hidden Barb", + ["type"] = "enchant", }, }, - ["1967051901"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["4579"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4579", + ["text"] = "Allocates Unbothering Cold", + ["type"] = "enchant", }, + }, + ["45874"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1967051901", - ["text"] = "Loads an additional bolt", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|45874", + ["text"] = "Allocates Proliferating Weeds", + ["type"] = "enchant", }, }, - ["1972391381"] = { + ["46024"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1972391381", - ["text"] = "#% increased Explicit Resistance Modifier magnitudes", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|46024", + ["text"] = "Allocates Sigil of Lightning", + ["type"] = "enchant", }, }, - ["1978899297"] = { - ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["46060"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|46060", + ["text"] = "Allocates Voracious", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1980802737"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["46124"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1980802737", - ["text"] = "Grenade Skills Fire an additional Projectile", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|46124", + ["text"] = "Allocates Arcane Remnants", + ["type"] = "enchant", }, }, - ["1992191903"] = { + ["46182"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1992191903", - ["text"] = "# to Level of all Mark Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|46182", + ["text"] = "Allocates Intense Dose", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1994296038"] = { + ["46197"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1994296038", - ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|46197", + ["text"] = "Allocates Careful Assassin", + ["type"] = "enchant", }, }, - ["1998951374"] = { - ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 16, - ["min"] = 5, - }, + ["46224"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|46224", + ["text"] = "Allocates Arcane Alchemy", + ["type"] = "enchant", }, }, - ["1999113824"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 101, - }, + ["4627"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|4627", + ["text"] = "Allocates Climate Change", + ["type"] = "enchant", }, }, - ["2011656677"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["46296"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|46296", + ["text"] = "Allocates Short Shot", + ["type"] = "enchant", }, }, - ["2023107756"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["46365"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|46365", + ["text"] = "Allocates Gigantic Following", + ["type"] = "enchant", }, + }, + ["46384"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|46384", + ["text"] = "Allocates Wide Barrier", + ["type"] = "enchant", }, }, - ["2039822488"] = { + ["46499"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2039822488", - ["text"] = "#% to Maximum Quality", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|46499", + ["text"] = "Allocates Guts", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["2056107438"] = { + ["4661"] = { ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", + ["type"] = "enchant", }, + }, + ["46683"] = { + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2056107438", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|46683", + ["text"] = "Allocates Inherited Strength ", + ["type"] = "enchant", }, }, - ["2066964205"] = { + ["46692"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2066964205", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|46692", + ["text"] = "Allocates Efficient Alchemy", + ["type"] = "enchant", }, }, - ["2074866941"] = { + ["46696"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2074866941", - ["text"] = "#% increased Exposure Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|46696", + ["text"] = "Allocates Impair", + ["type"] = "enchant", }, }, - ["2077117738"] = { + ["46726"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2077117738", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|46726", + ["text"] = "Allocates Reformed Barrier", + ["type"] = "enchant", }, }, - ["2081918629"] = { + ["4673"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2081918629", - ["text"] = "#% increased effect of Socketed Augment Items", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|4673", + ["text"] = "Allocates Hulking Smash", + ["type"] = "enchant", }, }, - ["2083058281"] = { + ["46972"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2083058281", - ["text"] = "Enemies you Mark take #% increased Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|46972", + ["text"] = "Allocates Arcane Mixtures", + ["type"] = "enchant", }, }, - ["210067635"] = { - ["1HMace"] = { - ["max"] = 28, - ["min"] = 5, + ["47088"] = { + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47088", + ["text"] = "Allocates Sic 'Em", + ["type"] = "enchant", }, - ["2HMace"] = { - ["max"] = 28, - ["min"] = 5, + }, + ["4709"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4709", + ["text"] = "Allocates Near Sighted", + ["type"] = "enchant", }, - ["Bow"] = { - ["max"] = 19, - ["min"] = 5, + }, + ["4716"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 19, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4716", + ["text"] = "Allocates Afterimage", + ["type"] = "enchant", }, - ["Flail"] = { - ["max"] = 28, - ["min"] = 5, + }, + ["47270"] = { + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 28, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47270", + ["text"] = "Allocates Inescapable Cold", + ["type"] = "enchant", }, - ["Spear"] = { - ["max"] = 28, - ["min"] = 5, + }, + ["47316"] = { + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 28, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47316", + ["text"] = "Allocates Goring", + ["type"] = "enchant", }, + }, + ["47363"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|47363", + ["text"] = "Allocates Colossal Weapon", + ["type"] = "enchant", }, }, - ["2101383955"] = { + ["47418"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|47418", + ["text"] = "Allocates Warding Potions", + ["type"] = "enchant", }, }, - ["2103650854"] = { + ["47420"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2103650854", - ["text"] = "#% increased effect of Arcane Surge on you", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|47420", + ["text"] = "Allocates Expendable Army", + ["type"] = "enchant", }, }, - ["2106365538"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["47441"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47441", + ["text"] = "Allocates Stigmata", + ["type"] = "enchant", }, + }, + ["47514"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|47514", + ["text"] = "Allocates Dizzying Hits", + ["type"] = "enchant", }, }, - ["21071013"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["47560"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|47560", + ["text"] = "Allocates Multi Shot", + ["type"] = "enchant", }, + }, + ["47635"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_21071013", - ["text"] = "Herald Skills deal #% increased Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|47635", + ["text"] = "Allocates Overload", + ["type"] = "enchant", }, }, - ["2107703111"] = { + ["47782"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2107703111", - ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|47782", + ["text"] = "Allocates Steady Footing", + ["type"] = "enchant", }, }, - ["2108821127"] = { + ["48006"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2108821127", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|48006", + ["text"] = "Allocates Devastation", + ["type"] = "enchant", }, }, - ["2112395885"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["48014"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2112395885", - ["text"] = "#% increased amount of Life Leeched", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|48014", + ["text"] = "Allocates Honourless", + ["type"] = "enchant", }, }, - ["2118708619"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["4810"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4810", + ["text"] = "Allocates Sanguine Tolerance", + ["type"] = "enchant", }, + }, + ["48103"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2118708619", - ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|48103", + ["text"] = "Allocates Forcewave", + ["type"] = "enchant", }, }, - ["2122183138"] = { + ["48215"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2122183138", - ["text"] = "# Mana gained when you Block", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|48215", + ["text"] = "Allocates Headshot", + ["type"] = "enchant", }, }, - ["2131720304"] = { + ["48240"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2131720304", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|48240", + ["text"] = "Allocates Quick Recovery", + ["type"] = "enchant", }, }, - ["2144192055"] = { - ["Ring"] = { - ["max"] = 233, - ["min"] = 8, - }, + ["48418"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|48418", + ["text"] = "Allocates Hefty Unit", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["2149603090"] = { + ["48524"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2149603090", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|48524", + ["text"] = "Allocates Blood Transfusion", + ["type"] = "enchant", }, }, - ["2150661403"] = { + ["48565"] = { ["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"] = "enchant.stat_2954116742|48565", + ["text"] = "Allocates Bringer of Order", + ["type"] = "enchant", }, }, - ["2158617060"] = { + ["48581"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2158617060", - ["text"] = "#% increased Archon Buff duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|48581", + ["text"] = "Allocates Exploit the Elements", + ["type"] = "enchant", }, }, - ["2160282525"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, + ["48617"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48617", + ["text"] = "Allocates Hunter", + ["type"] = "enchant", }, + }, + ["48649"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|48649", + ["text"] = "Allocates Insulating Hide", + ["type"] = "enchant", }, }, - ["2162097452"] = { - ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, + ["48658"] = { + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48658", + ["text"] = "Allocates Shattering", + ["type"] = "enchant", }, - ["Sceptre"] = { - ["max"] = 4, - ["min"] = 1, + }, + ["48699"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48699", + ["text"] = "Allocates Frostwalker", + ["type"] = "enchant", }, + }, + ["48734"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|48734", + ["text"] = "Allocates The Howling Primate", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["2174054121"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["48774"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|48774", + ["text"] = "Allocates Taut Flesh", + ["type"] = "enchant", }, + }, + ["48925"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2174054121", - ["text"] = "#% chance to inflict Bleeding on Hit", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|48925", + ["text"] = "Allocates Blessing of the Moon", + ["type"] = "enchant", }, }, - ["2189073790"] = { + ["48974"] = { ["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"] = "enchant.stat_2954116742|48974", + ["text"] = "Allocates Altered Brain Chemistry", + ["type"] = "enchant", }, }, - ["2194114101"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["49088"] = { + ["specialCaseData"] = { }, - ["Quiver"] = { - ["max"] = 38, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|49088", + ["text"] = "Allocates Splintering Force", + ["type"] = "enchant", }, + }, + ["49150"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|49150", + ["text"] = "Allocates Precise Invocations", + ["type"] = "enchant", }, }, - ["2200293569"] = { + ["49214"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2200293569", - ["text"] = "Mana Flasks gain # charges per Second", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|49214", + ["text"] = "Allocates Blood of the Wolf", + ["type"] = "enchant", }, }, - ["2202308025"] = { + ["4931"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2202308025", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|4931", + ["text"] = "Allocates Dependable Ward", + ["type"] = "enchant", }, }, - ["221701169"] = { + ["49550"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_221701169", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|49550", + ["text"] = "Allocates Prolonged Fury", + ["type"] = "enchant", }, }, - ["2222186378"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["4959"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4959", + ["text"] = "Allocates Heavy Frost", + ["type"] = "enchant", }, + }, + ["49618"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|49618", + ["text"] = "Allocates Deadly Flourish", + ["type"] = "enchant", }, }, - ["2223678961"] = { + ["49661"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|49661", + ["text"] = "Allocates Perfectly Placed Knife", + ["type"] = "enchant", }, }, - ["2231156303"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, + ["49740"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|49740", + ["text"] = "Allocates Shattered Crystal", + ["type"] = "enchant", }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + }, + ["4985"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4985", + ["text"] = "Allocates Flip the Script", + ["type"] = "enchant", }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, + }, + ["49984"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|49984", + ["text"] = "Allocates Spellblade", + ["type"] = "enchant", }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, + }, + ["50023"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50023", + ["text"] = "Allocates Invigorating Grandeur", + ["type"] = "enchant", }, + }, + ["50062"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|50062", + ["text"] = "Allocates Reinforced Barrier", + ["type"] = "enchant", }, }, - ["2250533757"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["5009"] = { + ["specialCaseData"] = { }, - ["Boots"] = { - ["max"] = 35, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5009", + ["text"] = "Allocates Seeing Stars", + ["type"] = "enchant", }, + }, + ["50253"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|50253", + ["text"] = "Allocates Aftershocks", + ["type"] = "enchant", }, }, - ["2250681686"] = { - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 1, + ["50389"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 2, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50389", + ["text"] = "Allocates Twinned Tethers", + ["type"] = "enchant", }, + }, + ["50392"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2250681686", - ["text"] = "Grenade Skills have +# Cooldown Use", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|50392", + ["text"] = "Allocates Brute Strength", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["2254480358"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, + ["50485"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50485", + ["text"] = "Allocates Zone of Control", + ["type"] = "enchant", }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, + }, + ["50562"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50562", + ["text"] = "Allocates Barbaric Strength", + ["type"] = "enchant", }, + }, + ["50673"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|50673", + ["text"] = "Allocates Avoiding Deflection", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["2256120736"] = { + ["50687"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50687", + ["text"] = "Allocates Coursing Energy", + ["type"] = "enchant", + }, + }, + ["50715"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2256120736", - ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|50715", + ["text"] = "Allocates Frozen Limit", + ["type"] = "enchant", }, }, - ["2272980012"] = { + ["50795"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2272980012", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|50795", + ["text"] = "Allocates Careful Aim", + ["type"] = "enchant", }, }, - ["2301718443"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["50884"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|50884", + ["text"] = "Allocates Primal Sundering", + ["type"] = "enchant", }, + }, + ["50912"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2301718443", - ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|50912", + ["text"] = "Allocates Imbibed Power", + ["type"] = "enchant", }, }, - ["2319832234"] = { + ["51105"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2319832234", - ["text"] = "#% of Damage Taken Recouped as Life, Mana and Energy Shield", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|51105", + ["text"] = "Allocates Spirit Bond", + ["type"] = "enchant", }, }, - ["2320654813"] = { + ["51129"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2320654813", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|51129", + ["text"] = "Allocates Pile On", + ["type"] = "enchant", }, }, - ["2321178454"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["51169"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51169", + ["text"] = "Allocates Soul Bloom", + ["type"] = "enchant", }, - ["Quiver"] = { - ["max"] = 26, - ["min"] = 12, + }, + ["51213"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51213", + ["text"] = "Allocates Wasting", + ["type"] = "enchant", }, + }, + ["51394"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|51394", + ["text"] = "Allocates Unimpeded", + ["type"] = "enchant", }, }, - ["2334956771"] = { + ["51446"] = { ["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"] = "enchant.stat_2954116742|51446", + ["text"] = "Allocates Leather Bound Gauntlets", + ["type"] = "enchant", }, }, - ["2339757871"] = { - ["Boots"] = { - ["max"] = 19, - ["min"] = 16, - }, - ["Chest"] = { - ["max"] = 27, - ["min"] = 16, + ["51509"] = { + ["specialCaseData"] = { }, - ["Focus"] = { - ["max"] = 27, - ["min"] = 16, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51509", + ["text"] = "Allocates Waters of Life", + ["type"] = "enchant", }, - ["Gloves"] = { - ["max"] = 19, - ["min"] = 16, + }, + ["51602"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51602", + ["text"] = "Allocates Unsight", + ["type"] = "enchant", }, - ["Helmet"] = { - ["max"] = 19, - ["min"] = 16, + }, + ["51606"] = { + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 27, - ["min"] = 16, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51606", + ["text"] = "Allocates Freedom of Movement", + ["type"] = "enchant", }, + }, + ["51707"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|51707", + ["text"] = "Allocates Enhanced Reflexes", + ["type"] = "enchant", }, }, - ["234296660"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["51820"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51820", + ["text"] = "Allocates Ancestral Conduits", + ["type"] = "enchant", }, + }, + ["51867"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_234296660", - ["text"] = "Companions deal #% increased Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|51867", + ["text"] = "Allocates Finality", + ["type"] = "enchant", }, }, - ["2347036682"] = { - ["1HWeapon"] = { - ["max"] = 30.5, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 30.5, - ["min"] = 2, + ["51868"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51868", + ["text"] = "Allocates Molten Carapace", + ["type"] = "enchant", }, + }, + ["51871"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2347036682", - ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|51871", + ["text"] = "Allocates Immortal Thirst", + ["type"] = "enchant", }, }, - ["2353576063"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["51891"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|51891", + ["text"] = "Allocates Lucidity", + ["type"] = "enchant", }, + }, + ["51934"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|51934", + ["text"] = "Allocates Invocated Efficiency", + ["type"] = "enchant", }, }, - ["2359002191"] = { + ["52180"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2359002191", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|52180", + ["text"] = "Allocates Trained Deflection", + ["type"] = "enchant", }, }, - ["2365392475"] = { - ["Charm"] = { - ["max"] = 350, - ["min"] = 8, - }, + ["52191"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2365392475", - ["text"] = "Recover # Life when Used", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|52191", + ["text"] = "Allocates Event Horizon", + ["type"] = "enchant", }, }, - ["2374711847"] = { + ["52199"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2374711847", - ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|52199", + ["text"] = "Allocates Overexposure", + ["type"] = "enchant", }, }, - ["2392260628"] = { + ["52229"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2392260628", - ["text"] = "#% increased Runic Ward Regeneration Rate", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|52229", + ["text"] = "Allocates Secrets of the Orb", + ["type"] = "enchant", }, }, - ["2392824305"] = { + ["52245"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2392824305", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|52245", + ["text"] = "Allocates Distant Dreamer", + ["type"] = "enchant", }, }, - ["239367161"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["52257"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|52257", + ["text"] = "Allocates Conductive Embrace", + ["type"] = "enchant", }, + }, + ["5227"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|5227", + ["text"] = "Allocates Escape Strategy", + ["type"] = "enchant", }, }, - ["2416869319"] = { - ["LifeFlask"] = { - ["max"] = 80, - ["min"] = 51, - }, + ["52348"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2416869319", - ["text"] = "Grants #% of Life Recovery to Minions", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|52348", + ["text"] = "Allocates Carved Earth", + ["type"] = "enchant", }, }, - ["2421151933"] = { + ["52392"] = { ["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"] = "enchant.stat_2954116742|52392", + ["text"] = "Allocates Singular Purpose", + ["type"] = "enchant", }, }, - ["2440073079"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["5257"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["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"] = "explicit.stat_2440073079", - ["text"] = "#% increased Damage while Shapeshifted", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|52684", + ["text"] = "Allocates Eroding Chains", + ["type"] = "enchant", }, }, - ["2442527254"] = { + ["52764"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2442527254", - ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|52764", + ["text"] = "Allocates Mystical Rage", + ["type"] = "enchant", }, }, - ["2451402625"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, + ["52764"] = { + ["specialCaseData"] = { }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "crafted.stat_2954116742|52764", + ["text"] = "Allocates Mystical Rage", + ["type"] = "crafted", }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, + }, + ["52803"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|52803", + ["text"] = "Allocates Hale Traveller", + ["type"] = "enchant", }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, + }, + ["5284"] = { + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5284", + ["text"] = "Allocates Shredding Force", + ["type"] = "enchant", + }, + }, + ["52971"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|52971", + ["text"] = "Allocates Quick Response", + ["type"] = "enchant", }, + }, + ["53030"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|53030", + ["text"] = "Allocates Immolation", + ["type"] = "enchant", }, }, - ["2456226238"] = { + ["53131"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2456226238", - ["text"] = "Recover #% of your maximum Mana when an Enemy dies in your Presence", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|53131", + ["text"] = "Allocates Tukohama's Brew", + ["type"] = "enchant", }, }, - ["2456523742"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["53150"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53150", + ["text"] = "Allocates Sharp Sight", + ["type"] = "enchant", }, + }, + ["53185"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2456523742", - ["text"] = "#% increased Critical Damage Bonus with Spears", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|53185", + ["text"] = "Allocates The Winter Owl", + ["type"] = "enchant", }, }, - ["2463230181"] = { - ["2HWeapon"] = { - ["max"] = 200, - ["min"] = 25, + ["53187"] = { + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 200, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53187", + ["text"] = "Allocates Warlord Berserker", + ["type"] = "enchant", }, - ["Quiver"] = { - ["max"] = 60, - ["min"] = 25, + }, + ["53265"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53265", + ["text"] = "Allocates Nature's Bite", + ["type"] = "enchant", }, + }, + ["53294"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|53294", + ["text"] = "Allocates Burn Away", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["2466785537"] = { + ["5332"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2466785537", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|5332", + ["text"] = "Allocates Crystallised Immunities", + ["type"] = "enchant", }, }, - ["2475221757"] = { + ["5335"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2475221757", - ["text"] = "#% increased Effect of Suffixes", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|5335", + ["text"] = "Allocates Shimmering Mirage", + ["type"] = "enchant", }, }, - ["2480498143"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["53367"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53367", + ["text"] = "Allocates Symbol of Defiance", + ["type"] = "enchant", }, + }, + ["53527"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2480498143", - ["text"] = "#% of Skill Mana Costs Converted to Life Costs", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|53527", + ["text"] = "Allocates Shattering Blow", + ["type"] = "enchant", }, }, - ["2481353198"] = { - ["Shield"] = { - ["max"] = 30, - ["min"] = 15, + ["53566"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53566", + ["text"] = "Allocates Run and Gun", + ["type"] = "enchant", }, + }, + ["53607"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|53607", + ["text"] = "Allocates Fortified Location", + ["type"] = "enchant", }, }, - ["2482852589"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, + ["53683"] = { + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53683", + ["text"] = "Allocates Efficient Loading", + ["type"] = "enchant", }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + }, + ["53823"] = { + ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53823", + ["text"] = "Allocates Towering Shield", + ["type"] = "enchant", + }, + }, + ["53853"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|53853", + ["text"] = "Allocates Backup Plan", + ["type"] = "enchant", }, }, - ["2487305362"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["53921"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53921", + ["text"] = "Allocates Unbreaking", + ["type"] = "enchant", }, + }, + ["53935"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2487305362", - ["text"] = "#% increased Magnitude of Poison you inflict", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|53935", + ["text"] = "Allocates Briny Carapace", + ["type"] = "enchant", }, }, - ["2503377690"] = { - ["LifeFlask"] = { - ["max"] = 30, - ["min"] = 20, + ["53941"] = { + ["specialCaseData"] = { }, - ["ManaFlask"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|53941", + ["text"] = "Allocates Shimmering", + ["type"] = "enchant", }, + }, + ["54031"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2503377690", - ["text"] = "#% of Recovery applied Instantly", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|54031", + ["text"] = "Allocates The Great Boar", + ["type"] = "enchant", }, }, - ["2505884597"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, + ["5410"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5410", + ["text"] = "Allocates Channelled Heritage", + ["type"] = "enchant", }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, + }, + ["54148"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54148", + ["text"] = "Allocates Smoke Inhalation", + ["type"] = "enchant", }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, + }, + ["54640"] = { + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54640", + ["text"] = "Allocates Constricting", + ["type"] = "enchant", }, - ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, + }, + ["54805"] = { + ["specialCaseData"] = { }, - ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54805", + ["text"] = "Allocates Hindered Capabilities", + ["type"] = "enchant", }, - ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, + }, + ["54814"] = { + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54814", + ["text"] = "Allocates Profane Commander", + ["type"] = "enchant", }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, + }, + ["54911"] = { + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54911", + ["text"] = "Allocates Firestarter", + ["type"] = "enchant", }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, + }, + ["54937"] = { + ["specialCaseData"] = { }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54937", + ["text"] = "Allocates Vengeful Fury", + ["type"] = "enchant", }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, + }, + ["54990"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|54990", + ["text"] = "Allocates Bloodletting", + ["type"] = "enchant", }, + }, + ["54998"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|54998", + ["text"] = "Allocates Protraction", + ["type"] = "enchant", }, }, - ["2518900926"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["55"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55", + ["text"] = "Allocates Fast Acting Toxins", + ["type"] = "enchant", }, + }, + ["55060"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2518900926", - ["text"] = "#% increased Damage with Plant Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|55060", + ["text"] = "Allocates Shrapnel", + ["type"] = "enchant", }, }, - ["2523933828"] = { - ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["55131"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55131", + ["text"] = "Allocates Light on your Feet", + ["type"] = "enchant", }, + }, + ["55149"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2523933828", - ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|55149", + ["text"] = "Allocates Pure Chaos", + ["type"] = "enchant", }, }, - ["2527686725"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["55180"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55180", + ["text"] = "Allocates Relentless Fallen", + ["type"] = "enchant", }, + }, + ["55193"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|55193", + ["text"] = "Allocates Subterfuge Mask", + ["type"] = "enchant", }, }, - ["2534359663"] = { + ["55308"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2534359663", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|55308", + ["text"] = "Allocates Sling Shots", + ["type"] = "enchant", }, }, - ["253641217"] = { + ["55375"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_253641217", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|55375", + ["text"] = "Allocates Licking Wounds", + ["type"] = "enchant", }, }, - ["2541588185"] = { - ["Charm"] = { - ["max"] = 40, - ["min"] = 16, - }, + ["55450"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2541588185", - ["text"] = "#% increased Duration (Charm)", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|55450", + ["text"] = "Allocates Rallying Form", + ["type"] = "enchant", }, }, - ["2557965901"] = { - ["Gloves"] = { - ["max"] = 9.9, - ["min"] = 6, + ["55568"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 7.9, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|55568", + ["text"] = "Allocates Forthcoming", + ["type"] = "enchant", }, + }, + ["55708"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2557965901", - ["text"] = "Leech #% of Physical Attack Damage as Life", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|55708", + ["text"] = "Allocates Electric Amplification", + ["type"] = "enchant", }, }, - ["255840549"] = { + ["5580"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_255840549", - ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|5580", + ["text"] = "Allocates Watchtowers", + ["type"] = "enchant", }, }, - ["2567751411"] = { + ["55817"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2567751411", - ["text"] = "Warcry Skills have #% increased Area of Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|55817", + ["text"] = "Allocates Alchemical Oil", + ["type"] = "enchant", }, }, - ["2580617872"] = { + ["55835"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2580617872", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|55835", + ["text"] = "Allocates Exposed to the Cosmos", + ["type"] = "enchant", }, }, - ["258119672"] = { + ["55847"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_258119672", - ["text"] = "# metre to Dodge Roll distance", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|55847", + ["text"] = "Allocates Ice Walls", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["2582079000"] = { + ["5594"] = { ["specialCaseData"] = { - ["overrideModLinePlural"] = "+# Charm Slots", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2582079000", - ["text"] = "# Charm Slot", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|5594", + ["text"] = "Allocates Decrepifying Curse", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["2594634307"] = { - ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["56016"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56016", + ["text"] = "Allocates Passthrough Rounds", + ["type"] = "enchant", }, + }, + ["56063"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2594634307", - ["text"] = "Mark Skills have #% increased Skill Effect Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|56063", + ["text"] = "Allocates Lingering Horror", + ["type"] = "enchant", }, }, - ["2610562860"] = { + ["56112"] = { ["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"] = "enchant.stat_2954116742|56112", + ["text"] = "Allocates Extinguishing Exhalation", + ["type"] = "enchant", }, }, - ["262946222"] = { + ["56237"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_262946222", - ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|56237", + ["text"] = "Allocates Enhancing Attacks", + ["type"] = "enchant", }, }, - ["2637470878"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["56265"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56265", + ["text"] = "Allocates Throatseeker", + ["type"] = "enchant", }, + }, + ["56388"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2637470878", - ["text"] = "#% increased Armour Break Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|56388", + ["text"] = "Allocates Reinforced Rallying", + ["type"] = "enchant", }, }, - ["2638756573"] = { + ["5642"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2638756573", - ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|5642", + ["text"] = "Allocates Behemoth", + ["type"] = "enchant", }, }, - ["2639966148"] = { + ["56453"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2639966148", - ["text"] = "Minions Revive #% faster", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|56453", + ["text"] = "Allocates Killer Instinct", + ["type"] = "enchant", }, }, - ["2653231923"] = { + ["56488"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2653231923", - ["text"] = "#% increased Mana Cost Efficiency of Spells", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|56488", + ["text"] = "Allocates Glancing Deflection", + ["type"] = "enchant", }, }, - ["2653955271"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["56493"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56493", + ["text"] = "Allocates Agile Succession", + ["type"] = "enchant", }, + }, + ["56616"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", + ["type"] = "enchant", }, }, - ["266564538"] = { + ["5663"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_266564538", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|5663", + ["text"] = "Allocates Endurance", + ["type"] = "enchant", }, }, - ["2672805335"] = { + ["56714"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|56714", + ["text"] = "Allocates Swift Flight", + ["type"] = "enchant", }, }, - ["2675129731"] = { + ["56767"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2675129731", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|56767", + ["text"] = "Allocates Electrifying Daze", + ["type"] = "enchant", }, }, - ["2676834156"] = { - ["Charm"] = { - ["max"] = 500, - ["min"] = 44, - }, + ["56776"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2676834156", - ["text"] = "Also grants # Guard", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|56776", + ["text"] = "Allocates Cooked", + ["type"] = "enchant", }, }, - ["2690740379"] = { + ["56616"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2690740379", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", - ["type"] = "explicit", + ["id"] = "crafted.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", + ["type"] = "crafted", }, }, - ["2694482655"] = { - ["1HMace"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["56806"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["2696027455"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["5686"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2696027455", - ["text"] = "#% increased Damage with Spears", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|5686", + ["text"] = "Allocates Chillproof", + ["type"] = "enchant", }, }, - ["2704225257"] = { + ["56860"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2704225257", - ["text"] = "# to Spirit", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|56860", + ["text"] = "Allocates Resolute Reprisal", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["2704905000"] = { + ["56893"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2704905000", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|56893", + ["text"] = "Allocates Thicket Warding", + ["type"] = "enchant", }, }, - ["2709367754"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["56988"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|56988", + ["text"] = "Allocates Electric Blood", + ["type"] = "enchant", }, + }, + ["56997"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|56997", + ["text"] = "Allocates Heavy Contact", + ["type"] = "enchant", }, }, - ["2709646369"] = { + ["56999"] = { ["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"] = "enchant.stat_2954116742|56999", + ["text"] = "Allocates Locked On", + ["type"] = "enchant", }, }, - ["2714890129"] = { + ["5703"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2714890129", - ["text"] = "Life Leech can Overflow Maximum Life", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|5703", + ["text"] = "Allocates Echoing Thunder", + ["type"] = "enchant", }, }, - ["2720982137"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["57047"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57047", + ["text"] = "Allocates Polymathy", + ["type"] = "enchant", }, + }, + ["57097"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2720982137", - ["text"] = "Banner Skills have #% increased Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|57097", + ["text"] = "Allocates Spirit Bonds", + ["type"] = "enchant", }, }, - ["2723294374"] = { + ["57110"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2723294374", - ["text"] = "Attacks have added Physical damage equal to #% of maximum Life", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|57110", + ["text"] = "Allocates Infused Flesh", + ["type"] = "enchant", }, }, - ["2726713579"] = { + ["57190"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2726713579", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|57190", + ["text"] = "Allocates Doomsayer", + ["type"] = "enchant", }, }, - ["274716455"] = { - ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 15, + ["57204"] = { + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57204", + ["text"] = "Allocates Critical Exploit", + ["type"] = "enchant", }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + }, + ["5728"] = { + ["specialCaseData"] = { }, - ["Focus"] = { - ["max"] = 34, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|5728", + ["text"] = "Allocates Ancient Aegis", + ["type"] = "enchant", }, - ["Staff"] = { - ["max"] = 59, - ["min"] = 15, + }, + ["57379"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 39, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57379", + ["text"] = "Allocates In Your Face", + ["type"] = "enchant", }, + }, + ["57388"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_274716455", - ["text"] = "#% increased Critical Spell Damage Bonus", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|57388", + ["text"] = "Allocates Overwhelming Strike", + ["type"] = "enchant", }, }, - ["2748665614"] = { - ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, + ["57471"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 6, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57471", + ["text"] = "Allocates Hunker Down", + ["type"] = "enchant", }, + }, + ["57617"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|57617", + ["text"] = "Allocates Shifted Strikes", + ["type"] = "enchant", }, }, - ["2749595652"] = { + ["57785"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2749595652", - ["text"] = "#% chance for Skills to retain 40% of Glory on use", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|57785", + ["text"] = "Allocates Trained Turrets", + ["type"] = "enchant", }, }, - ["2768835289"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, + ["57805"] = { + ["specialCaseData"] = { }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57805", + ["text"] = "Allocates Clear Space", + ["type"] = "enchant", }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, + }, + ["57921"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|57921", + ["text"] = "Allocates Wolf's Howl", + ["type"] = "enchant", }, + }, + ["58016"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2768835289", - ["text"] = "#% increased Spell Physical Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|58016", + ["text"] = "Allocates All Natural", + ["type"] = "enchant", }, }, - ["2768899959"] = { + ["5802"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2768899959", - ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|5802", + ["text"] = "Allocates Stand and Deliver", + ["type"] = "enchant", }, }, - ["2770044702"] = { + ["58096"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2770044702", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|58096", + ["text"] = "Allocates Lasting Incantations", + ["type"] = "enchant", }, }, - ["2797971005"] = { - ["Gloves"] = { - ["max"] = 5, - ["min"] = 2, - }, + ["58183"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|58183", + ["text"] = "Allocates Blood Tearing", + ["type"] = "enchant", }, }, - ["280731498"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["58198"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|58198", + ["text"] = "Allocates Well of Power", + ["type"] = "enchant", }, + }, + ["58215"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|58215", + ["text"] = "Allocates Sanguimantic Rituals", + ["type"] = "enchant", }, }, - ["2809428780"] = { + ["58397"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2809428780", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|58397", + ["text"] = "Allocates Proficiency", + ["type"] = "enchant", }, }, - ["2822644689"] = { + ["58426"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2822644689", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|58426", + ["text"] = "Allocates Pocket Sand", + ["type"] = "enchant", }, }, - ["2839066308"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["58714"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|58714", + ["text"] = "Allocates Grenadier", + ["type"] = "enchant", }, + }, + ["58817"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2839066308", - ["text"] = "#% increased amount of Mana Leeched", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|58817", + ["text"] = "Allocates Artillery Strike", + ["type"] = "enchant", }, }, - ["2840989393"] = { + ["58939"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2840989393", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|58939", + ["text"] = "Allocates Dispatch Foes", + ["type"] = "enchant", }, }, - ["2843214518"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["59070"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59070", + ["text"] = "Allocates Enduring Archon", + ["type"] = "enchant", }, + }, + ["59208"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|59208", + ["text"] = "Allocates Frantic Fighter", + ["type"] = "enchant", }, }, - ["2849546516"] = { + ["59214"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2849546516", - ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|59214", + ["text"] = "Allocates Fated End", + ["type"] = "enchant", }, }, - ["2854751904"] = { - ["1HWeapon"] = { - ["max"] = 37.5, - ["min"] = 3, + ["59303"] = { + ["specialCaseData"] = { }, - ["Sceptre"] = { - ["max"] = 37.5, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59303", + ["text"] = "Allocates Lucky Rabbit Foot", + ["type"] = "enchant", }, + }, + ["59387"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2854751904", - ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|59387", + ["text"] = "Allocates Infusion of Power", + ["type"] = "enchant", }, }, - ["2866361420"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, + ["59433"] = { + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59433", + ["text"] = "Allocates Thirst for Endurance", + ["type"] = "enchant", }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + }, + ["59541"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59541", + ["text"] = "Allocates Necrotised Flesh", + ["type"] = "enchant", }, + }, + ["59589"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|59589", + ["text"] = "Allocates Heavy Armour", + ["type"] = "enchant", }, }, - ["2881298780"] = { - ["Belt"] = { - ["max"] = 185.5, - ["min"] = 2, + ["59596"] = { + ["specialCaseData"] = { }, - ["Chest"] = { - ["max"] = 185.5, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59596", + ["text"] = "Allocates Covering Ward", + ["type"] = "enchant", }, - ["Shield"] = { - ["max"] = 185.5, - ["min"] = 2, + }, + ["59720"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|59720", + ["text"] = "Allocates Beastial Skin", + ["type"] = "enchant", }, + }, + ["59938"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2881298780", - ["text"] = "# to # Physical Thorns damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|59938", + ["text"] = "Allocates Against the Elements", + ["type"] = "enchant", }, }, - ["288364275"] = { + ["57785"] = { ["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"] = "crafted.stat_2954116742|57785", + ["text"] = "Allocates Trained Turrets", + ["type"] = "crafted", }, }, - ["2891184298"] = { - ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 9, + ["60034"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60034", + ["text"] = "Allocates Falcon Dive", + ["type"] = "enchant", }, - ["2HWeapon"] = { - ["max"] = 52, - ["min"] = 14, + }, + ["60083"] = { + ["specialCaseData"] = { }, - ["Amulet"] = { - ["max"] = 28, - ["min"] = 9, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60083", + ["text"] = "Allocates Pin and Run", + ["type"] = "enchant", }, - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + }, + ["60138"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60138", + ["text"] = "Allocates Stylebender", + ["type"] = "enchant", }, - ["Focus"] = { - ["max"] = 32, - ["min"] = 9, + }, + ["60269"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 24, - ["min"] = 9, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60269", + ["text"] = "Allocates Roil", + ["type"] = "enchant", }, - ["Staff"] = { - ["max"] = 52, - ["min"] = 14, + }, + ["60273"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 35, - ["min"] = 9, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60273", + ["text"] = "Allocates Hindering Obstacles", + ["type"] = "enchant", }, + }, + ["60404"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|60404", + ["text"] = "Allocates Perfect Opportunity", + ["type"] = "enchant", }, }, - ["289128254"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 5, + ["60464"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60464", + ["text"] = "Allocates Fan the Flames", + ["type"] = "enchant", }, - ["Sceptre"] = { - ["max"] = 20, - ["min"] = 5, + }, + ["60619"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60619", + ["text"] = "Allocates Scales of the Wyvern", + ["type"] = "enchant", }, + }, + ["60692"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|60692", + ["text"] = "Allocates Echoing Flames", + ["type"] = "enchant", }, }, - ["2897413282"] = { + ["60764"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2897413282", - ["text"] = "# to all Attributes", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|60764", + ["text"] = "Allocates Feathered Fletching", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["2901986750"] = { - ["Amulet"] = { - ["max"] = 18, - ["min"] = 3, + ["60992"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 16, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|60992", + ["text"] = "Allocates Nurturing Guardian", + ["type"] = "enchant", }, - ["Shield"] = { - ["max"] = 18, - ["min"] = 3, + }, + ["61026"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61026", + ["text"] = "Allocates Crystalline Flesh", + ["type"] = "enchant", }, + }, + ["61104"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|61104", + ["text"] = "Allocates Staggering Wounds", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["2907381231"] = { + ["61112"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2907381231", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", + ["type"] = "enchant", }, }, - ["2912416697"] = { + ["6133"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2912416697", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|6133", + ["text"] = "Allocates Core of the Guardian", + ["type"] = "enchant", }, }, - ["2923486259"] = { - ["Amulet"] = { - ["max"] = 27, - ["min"] = 4, + ["61338"] = { + ["specialCaseData"] = { }, - ["Belt"] = { - ["max"] = 27, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61338", + ["text"] = "Allocates Breath of Lightning", + ["type"] = "enchant", }, - ["Boots"] = { - ["max"] = 27, - ["min"] = 4, + }, + ["61354"] = { + ["specialCaseData"] = { }, - ["Chest"] = { - ["max"] = 27, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61354", + ["text"] = "Allocates Infernal Limit", + ["type"] = "enchant", }, - ["Focus"] = { - ["max"] = 27, - ["min"] = 4, + }, + ["61404"] = { + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 27, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61404", + ["text"] = "Allocates Equilibrium", + ["type"] = "enchant", }, - ["Helmet"] = { - ["max"] = 27, - ["min"] = 4, + }, + ["61444"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 27, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61444", + ["text"] = "Allocates Wasting Casts", + ["type"] = "enchant", }, - ["Shield"] = { - ["max"] = 27, - ["min"] = 4, + }, + ["61493"] = { + ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61493", + ["text"] = "Allocates Austerity Measures", + ["type"] = "enchant", + }, + }, + ["61112"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "explicit", + ["id"] = "crafted.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", + ["type"] = "crafted", }, - ["usePositiveSign"] = true, }, - ["293638271"] = { - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 51, + ["61601"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61601", + ["text"] = "Allocates True Strike", + ["type"] = "enchant", }, - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 51, + }, + ["61703"] = { + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61703", + ["text"] = "Allocates Sharpened Claw", + ["type"] = "enchant", }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + }, + ["61741"] = { + ["specialCaseData"] = { }, - ["Staff"] = { - ["max"] = 100, - ["min"] = 51, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61741", + ["text"] = "Allocates Lasting Toxins", + ["type"] = "enchant", }, - ["Wand"] = { - ["max"] = 100, - ["min"] = 51, + }, + ["6178"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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"] = "explicit.stat_293638271", - ["text"] = "#% increased chance to Shock", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|62034", + ["text"] = "Allocates Prism Guard", + ["type"] = "enchant", }, }, - ["2942439603"] = { + ["62185"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2942439603", - ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|62185", + ["text"] = "Allocates Rattled", + ["type"] = "enchant", }, }, - ["2951965588"] = { + ["62230"] = { ["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"] = "enchant.stat_2954116742|62230", + ["text"] = "Allocates Patient Barrier", + ["type"] = "enchant", }, }, - ["2954360902"] = { + ["6229"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2954360902", - ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|6229", + ["text"] = "Allocates Push the Advantage", + ["type"] = "enchant", }, }, - ["2957407601"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["62310"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62310", + ["text"] = "Allocates Incendiary", + ["type"] = "enchant", }, + }, + ["62455"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2957407601", - ["text"] = "Offering Skills have #% increased Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|62455", + ["text"] = "Allocates Bannerman", + ["type"] = "enchant", }, }, - ["2968503605"] = { - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 51, + ["62609"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 51, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62609", + ["text"] = "Allocates Ancestral Unity", + ["type"] = "enchant", }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + }, + ["62803"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62803", + ["text"] = "Allocates Woodland Aspect", + ["type"] = "enchant", }, - ["Staff"] = { - ["max"] = 100, - ["min"] = 51, + }, + ["62887"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 100, - ["min"] = 51, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|62887", + ["text"] = "Allocates Living Death", + ["type"] = "enchant", }, + }, + ["62963"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|62963", + ["text"] = "Allocates Flamewalker", + ["type"] = "enchant", }, }, - ["2969557004"] = { + ["63031"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2969557004", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|63031", + ["text"] = "Allocates Glorious Anticipation", + ["type"] = "enchant", }, }, - ["2970621759"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 26, + ["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"] = "explicit.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|63074", + ["text"] = "Allocates Dark Entries", + ["type"] = "enchant", }, }, - ["2974417149"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 15, + ["63255"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 30, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63255", + ["text"] = "Allocates Savagery", + ["type"] = "enchant", }, - ["Amulet"] = { - ["max"] = 30, - ["min"] = 3, + }, + ["63400"] = { + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63400", + ["text"] = "Allocates Chakra of Elements", + ["type"] = "enchant", }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + }, + ["63431"] = { + ["specialCaseData"] = { }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63431", + ["text"] = "Allocates Leeching Toxins", + ["type"] = "enchant", }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 30, + }, + ["63451"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63451", + ["text"] = "Allocates Cranial Impact", + ["type"] = "enchant", }, + }, + ["63541"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|63541", + ["text"] = "Allocates Brush Off", + ["type"] = "enchant", }, }, - ["2976476845"] = { + ["63579"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2976476845", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|63579", + ["text"] = "Allocates Momentum", + ["type"] = "enchant", }, }, - ["3003542304"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["63585"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63585", + ["text"] = "Allocates Thunderstruck", + ["type"] = "enchant", }, + }, + ["63739"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3003542304", - ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|63739", + ["text"] = "Allocates Vigorous Remnants", + ["type"] = "enchant", }, }, - ["300723956"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["63759"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63759", + ["text"] = "Allocates Stacking Toxins", + ["type"] = "enchant", }, + }, + ["63830"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_300723956", - ["text"] = "Attack Hits apply Incision", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|63830", + ["text"] = "Allocates Marked for Sickness", + ["type"] = "enchant", }, }, - ["3015669065"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, + ["63981"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|63981", + ["text"] = "Allocates Deft Recovery", + ["type"] = "enchant", }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, + }, + ["64050"] = { + ["specialCaseData"] = { }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64050", + ["text"] = "Allocates Marathon Runner", + ["type"] = "enchant", }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 15, + }, + ["64119"] = { + ["specialCaseData"] = { }, - ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64119", + ["text"] = "Allocates Rapid Reload", + ["type"] = "enchant", }, - ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, + }, + ["64240"] = { + ["specialCaseData"] = { }, - ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64240", + ["text"] = "Allocates Battle Fever", + ["type"] = "enchant", }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, + }, + ["64415"] = { + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64415", + ["text"] = "Allocates Shattering Daze", + ["type"] = "enchant", }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, + }, + ["64443"] = { + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64443", + ["text"] = "Allocates Impact Force", + ["type"] = "enchant", }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, + }, + ["64525"] = { + ["specialCaseData"] = { }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64525", + ["text"] = "Allocates Easy Target", + ["type"] = "enchant", }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, + }, + ["64543"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64543", + ["text"] = "Allocates Unbound Forces", + ["type"] = "enchant", }, + }, + ["64650"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|64650", + ["text"] = "Allocates Wary Dodging", + ["type"] = "enchant", }, }, - ["3028809864"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["64659"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|64659", + ["text"] = "Allocates Lasting Boons", + ["type"] = "enchant", }, + }, + ["64851"] = { ["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"] = "enchant.stat_2954116742|64851", + ["text"] = "Allocates Flashy Parrying", + ["type"] = "enchant", }, }, - ["3032590688"] = { - ["Gloves"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["Quiver"] = { - ["max"] = 25.5, - ["min"] = 2, + ["65016"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 25.5, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|65016", + ["text"] = "Allocates Intense Flames", + ["type"] = "enchant", }, + }, + ["65023"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|65023", + ["text"] = "Allocates Impenetrable Shell", + ["type"] = "enchant", }, }, - ["3033371881"] = { - ["Boots"] = { - ["max"] = 23, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 26, - ["min"] = 8, + ["6514"] = { + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 23, - ["min"] = 8, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|6514", + ["text"] = "Allocates Cacophony", + ["type"] = "enchant", }, - ["Helmet"] = { - ["max"] = 23, - ["min"] = 8, + }, + ["65160"] = { + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 26, - ["min"] = 8, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|65160", + ["text"] = "Allocates Titanic", + ["type"] = "enchant", }, + }, + ["65193"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3033371881", - ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|65193", + ["text"] = "Allocates Viciousness", + ["type"] = "enchant", }, }, - ["3035140377"] = { - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, + ["64050"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 3, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "crafted.stat_2954116742|64050", + ["text"] = "Allocates Marathon Runner", + ["type"] = "crafted", }, - ["Dagger"] = { - ["max"] = 2, - ["min"] = 2, + }, + ["65204"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", + ["type"] = "enchant", }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, + }, + ["65243"] = { + ["specialCaseData"] = { }, - ["One Hand Axe"] = { - ["max"] = 2, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|65243", + ["text"] = "Allocates Enveloping Presence", + ["type"] = "enchant", }, - ["One Hand Mace"] = { - ["max"] = 2, - ["min"] = 2, + }, + ["65256"] = { + ["specialCaseData"] = { }, - ["One Hand Sword"] = { - ["max"] = 2, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|65256", + ["text"] = "Allocates Widespread Coverage", + ["type"] = "enchant", }, - ["Quarterstaff"] = { - ["max"] = 3, - ["min"] = 3, + }, + ["65265"] = { + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 2, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|65265", + ["text"] = "Allocates Swift Interruption", + ["type"] = "enchant", }, - ["Talisman"] = { - ["max"] = 3, - ["min"] = 3, + }, + ["6544"] = { + ["specialCaseData"] = { }, - ["Two Hand Axe"] = { - ["max"] = 3, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|6544", + ["text"] = "Allocates Burning Strikes", + ["type"] = "enchant", }, - ["Two Hand Mace"] = { - ["max"] = 3, - ["min"] = 3, + }, + ["65468"] = { + ["specialCaseData"] = { }, - ["Two Hand Sword"] = { - ["max"] = 3, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|65468", + ["text"] = "Allocates Repeating Explosives", + ["type"] = "enchant", }, + }, + ["6655"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3035140377", - ["text"] = "# to Level of all Attack Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|6655", + ["text"] = "Allocates Aggravation", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["3037553757"] = { + ["7062"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7062", + ["text"] = "Allocates Reusable Ammunition", + ["type"] = "enchant", }, }, - ["30438393"] = { + ["7128"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_30438393", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7128", + ["text"] = "Allocates Dangerous Blossom", + ["type"] = "enchant", }, }, - ["3057012405"] = { - ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 10, + ["7163"] = { + ["specialCaseData"] = { }, - ["Sceptre"] = { - ["max"] = 39, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|7163", + ["text"] = "Allocates Stimulants", + ["type"] = "enchant", }, + }, + ["7275"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7275", + ["text"] = "Allocates Electrocuting Exposure", + ["type"] = "enchant", }, }, - ["30642521"] = { + ["7302"] = { ["specialCaseData"] = { - ["overrideModLineSingular"] = "You can apply an additional Curse", }, ["tradeMod"] = { - ["id"] = "explicit.stat_30642521", - ["text"] = "You can apply # additional Curses", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7302", + ["text"] = "Allocates Echoing Pulse", + ["type"] = "enchant", }, }, - ["3065378291"] = { + ["7338"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3065378291", - ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7338", + ["text"] = "Allocates Abasement", + ["type"] = "enchant", }, }, - ["3067892458"] = { - ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["7341"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3067892458", - ["text"] = "Triggered Spells deal #% increased Spell Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7341", + ["text"] = "Allocates Ignore Pain", + ["type"] = "enchant", }, }, - ["3088348485"] = { + ["7395"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3088348485", - ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7395", + ["text"] = "Allocates Retaliation", + ["type"] = "enchant", }, }, - ["3091578504"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["7449"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7449", + ["text"] = "Allocates Splinters", + ["type"] = "enchant", }, }, - ["310246444"] = { + ["750"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_310246444", - ["text"] = "#% increased Damage while Leeching", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|750", + ["text"] = "Allocates Tribal Fury", + ["type"] = "enchant", }, }, - ["3106718406"] = { + ["7542"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3106718406", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7542", + ["text"] = "Allocates Encompassing Domain", + ["type"] = "enchant", }, }, - ["3107707789"] = { + ["7604"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3107707789", - ["text"] = "#% increased Movement Speed while Sprinting", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7604", + ["text"] = "Allocates Rapid Strike", + ["type"] = "enchant", }, }, - ["3113764475"] = { + ["7651"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3113764475", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7651", + ["text"] = "Allocates Pierce the Heart", + ["type"] = "enchant", }, }, - ["3119612865"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["7668"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3119612865", - ["text"] = "Minions have #% additional Physical Damage Reduction", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7668", + ["text"] = "Allocates Internal Bleeding", + ["type"] = "enchant", }, }, - ["3120508478"] = { + ["7777"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3120508478", - ["text"] = "#% increased Damage against Immobilised Enemies", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7777", + ["text"] = "Allocates Breaking Point", + ["type"] = "enchant", }, }, - ["3121133045"] = { + ["7782"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3121133045", - ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7782", + ["text"] = "Allocates Rupturing Pins", + ["type"] = "enchant", }, }, - ["3141070085"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["65256"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - ["type"] = "explicit", + ["id"] = "crafted.stat_2954116742|65256", + ["text"] = "Allocates Widespread Coverage", + ["type"] = "crafted", }, }, - ["3143918757"] = { + ["7809"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3143918757", - ["text"] = "#% increased Glory generation", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7809", + ["text"] = "Allocates Wild Storm", + ["type"] = "enchant", }, }, - ["3146310524"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["7847"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3146310524", - ["text"] = "Dazes on Hit", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|7847", + ["text"] = "Allocates The Fabled Stag", + ["type"] = "enchant", }, }, - ["315791320"] = { - ["Sceptre"] = { - ["max"] = 20, - ["min"] = 15, - }, + ["8273"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_315791320", - ["text"] = "Aura Skills have #% increased Magnitudes", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|8273", + ["text"] = "Allocates Endless Circuit", + ["type"] = "enchant", }, }, - ["3166958180"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["8397"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|8397", + ["text"] = "Allocates Empowering Remains", + ["type"] = "enchant", }, }, - ["3169585282"] = { + ["8483"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3169585282", - ["text"] = "Allies in your Presence have # to Accuracy Rating", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|8483", + ["text"] = "Allocates Ruin", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["3171212276"] = { + ["8531"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3171212276", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|8531", + ["text"] = "Allocates Leaping Ambush", + ["type"] = "enchant", }, }, - ["3173882956"] = { + ["8554"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3173882956", - ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|8554", + ["text"] = "Allocates Burning Nature", + ["type"] = "enchant", }, }, - ["3174700878"] = { - ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 30, + ["8607"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 50, - ["min"] = 30, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8607", + ["text"] = "Allocates Lavianga's Brew", + ["type"] = "enchant", }, + }, + ["8660"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3174700878", - ["text"] = "#% increased Energy Shield from Equipped Focus", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|8660", + ["text"] = "Allocates Reverberation", + ["type"] = "enchant", }, }, - ["3175163625"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["8782"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|8782", + ["text"] = "Allocates Empowering Infusions", + ["type"] = "enchant", }, }, - ["318092306"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["8791"] = { + ["specialCaseData"] = { }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8791", + ["text"] = "Allocates Sturdy Ally", + ["type"] = "enchant", }, + }, + ["8810"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_318092306", - ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|8810", + ["text"] = "Allocates Multitasking", + ["type"] = "enchant", }, }, - ["318953428"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["8827"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8827", + ["text"] = "Allocates Fast Metabolism", + ["type"] = "enchant", }, + }, + ["8831"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", + ["type"] = "enchant", }, }, - ["3191479793"] = { + ["8881"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3191479793", - ["text"] = "Offering Skills have #% increased Buff effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|8881", + ["text"] = "Allocates Unforgiving", + ["type"] = "enchant", }, }, - ["3192728503"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["8896"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|8896", + ["text"] = "Allocates Agile Sprinter", + ["type"] = "enchant", }, + }, + ["8904"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3192728503", - ["text"] = "#% increased Crossbow Reload Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|8904", + ["text"] = "Allocates Death from Afar", + ["type"] = "enchant", }, }, - ["3196823591"] = { + ["8916"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3196823591", - ["text"] = "#% increased Charges gained", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|8916", + ["text"] = "Allocates Bashing Beast", + ["type"] = "enchant", }, }, - ["3222402650"] = { + ["8957"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3222402650", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|8957", + ["text"] = "Allocates Right Hand of Darkness", + ["type"] = "enchant", }, }, - ["3225608889"] = { + ["9009"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3225608889", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|9009", + ["text"] = "Allocates Return to Nature", + ["type"] = "enchant", }, }, - ["3233599707"] = { + ["9020"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|9020", + ["text"] = "Allocates Giantslayer", + ["type"] = "enchant", }, }, - ["323800555"] = { + ["9187"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_323800555", - ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|9187", + ["text"] = "Allocates Escalation", + ["type"] = "enchant", }, }, - ["3243034867"] = { + ["9226"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_3243034867", - ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", + ["type"] = "enchant", }, }, - ["3249412463"] = { +<<<<<<< HEAD + ["9290"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3249412463", - ["text"] = "Supported Minions' Strikes have Melee Splash", - ["type"] = "explicit", + ["id"] = "crafted.stat_2954116742|9290", + ["text"] = "Allocates Rusted Pins", + ["type"] = "crafted", }, }, - ["325171970"] = { + ["9535"] = { +======= + ["9227"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "explicit.stat_325171970", - ["text"] = "#% increased Attack Speed while missing Runic Ward", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|9227", + ["text"] = "Allocates Focused Thrust", + ["type"] = "enchant", }, }, - ["3256879910"] = { + ["9290"] = { +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3256879910", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|9290", + ["text"] = "Allocates Rusted Pins", + ["type"] = "enchant", }, }, - ["3261801346"] = { - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 36, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 33, - ["min"] = 5, + ["9323"] = { + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9323", + ["text"] = "Allocates Craving Slaughter", + ["type"] = "enchant", }, - ["Quiver"] = { - ["max"] = 33, - ["min"] = 5, + }, + ["9328"] = { + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9328", + ["text"] = "Allocates Spirit of the Bear", + ["type"] = "enchant", }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, + }, + ["934"] = { + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 33, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|934", + ["text"] = "Allocates Natural Immunity", + ["type"] = "enchant", }, + }, + ["94"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|94", + ["text"] = "Allocates Efficient Killing", + ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["3276224428"] = { - ["ManaFlask"] = { - ["max"] = 100, - ["min"] = 51, - }, + ["9421"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3276224428", - ["text"] = "#% more Recovery if used while on Low Mana", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|9421", + ["text"] = "Allocates Snowpiercer", + ["type"] = "enchant", }, }, - ["3278136794"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, + ["9444"] = { + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9444", + ["text"] = "Allocates One with the Storm", + ["type"] = "enchant", }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, + }, + ["9472"] = { + ["specialCaseData"] = { }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9472", + ["text"] = "Allocates Catapult", + ["type"] = "enchant", }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 15, + }, + ["9604"] = { + ["specialCaseData"] = { }, - ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9604", + ["text"] = "Allocates Thirst of Kitava", + ["type"] = "enchant", }, - ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, + }, + ["9652"] = { + ["specialCaseData"] = { }, - ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9652", + ["text"] = "Allocates Mending Deflection", + ["type"] = "enchant", }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, + }, + ["9736"] = { + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9736", + ["text"] = "Allocates Insulated Treads", + ["type"] = "enchant", }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, + }, + ["9896"] = { + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9896", + ["text"] = "Allocates Heartstopping Presence", + ["type"] = "enchant", }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, + }, + ["9908"] = { + ["specialCaseData"] = { }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9908", + ["text"] = "Allocates Price of Freedom", + ["type"] = "enchant", }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, + }, + ["9928"] = { + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|9928", + ["text"] = "Allocates Embracing Frost", + ["type"] = "enchant", }, + }, + ["9968"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2954116742|9968", + ["text"] = "Allocates Feel the Earth", + ["type"] = "enchant", }, }, - ["3283482523"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + }, + ["Corrupted"] = { + ["1004011302"] = { + ["specialCaseData"] = { +<<<<<<< HEAD }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "crafted.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "crafted", }, + }, + ["101878827"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3283482523", - ["text"] = "#% increased Attack Speed with Quarterstaves", - ["type"] = "explicit", + ["id"] = "crafted.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "crafted", }, }, - ["328541901"] = { + ["1037193709"] = { + ["1HMace"] = { + ["max"] = 15.5, + ["min"] = 10.5, + }, ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, + ["max"] = 15.5, + ["min"] = 10.5, + }, + ["2HMace"] = { + ["max"] = 21.5, + ["min"] = 14.5, }, ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, + ["max"] = 21.5, + ["min"] = 10.5, }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, + ["Bow"] = { + ["max"] = 15.5, + ["min"] = 10.5, }, - ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, + ["Crossbow"] = { + ["max"] = 21.5, + ["min"] = 14.5, }, ["Flail"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 36, - ["min"] = 5, + ["max"] = 15.5, + ["min"] = 10.5, }, ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, + ["max"] = 21.5, + ["min"] = 14.5, }, - ["Staff"] = { - ["max"] = 33, - ["min"] = 5, + ["Spear"] = { + ["max"] = 15.5, + ["min"] = 10.5, }, ["Talisman"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Wand"] = { - ["max"] = 33, - ["min"] = 5, + ["max"] = 21.5, + ["min"] = 14.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "explicit", + ["id"] = "crafted.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "crafted", }, - ["usePositiveSign"] = true, }, - ["3291658075"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["1050105434"] = { ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", + ["max"] = 25, + ["min"] = 20, }, - }, - ["3292710273"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 1, + ["Quiver"] = { + ["max"] = 25, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 1, + ["Ring"] = { + ["max"] = 25, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3292710273", - ["text"] = "Gain # Rage when Hit by an Enemy", - ["type"] = "explicit", + ["id"] = "crafted.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["3299347043"] = { - ["Amulet"] = { - ["max"] = 149, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 174, - ["min"] = 10, - }, + ["1062208444"] = { ["Boots"] = { - ["max"] = 149, - ["min"] = 10, + ["max"] = 25, + ["min"] = 15, }, ["Chest"] = { - ["max"] = 214, - ["min"] = 7, + ["max"] = 25, + ["min"] = 15, }, ["Gloves"] = { - ["max"] = 149, - ["min"] = 7, + ["max"] = 25, + ["min"] = 15, }, ["Helmet"] = { - ["max"] = 174, - ["min"] = 7, - }, - ["Ring"] = { - ["max"] = 119, - ["min"] = 10, + ["max"] = 25, + ["min"] = 15, }, ["Shield"] = { - ["max"] = 189, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3301100256"] = { - ["Chest"] = { - ["max"] = -36, - ["min"] = -60, + ["max"] = 25, + ["min"] = 15, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3301100256", - ["text"] = "#% increased Poison Duration on you", - ["type"] = "explicit", + ["id"] = "crafted.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "crafted", }, }, - ["3321629045"] = { + ["124859000"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 6, + ["max"] = 25, + ["min"] = 15, }, ["Chest"] = { - ["max"] = 110, - ["min"] = 6, + ["max"] = 25, + ["min"] = 15, }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, + ["max"] = 25, + ["min"] = 15, }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, + ["max"] = 25, + ["min"] = 15, }, ["Shield"] = { - ["max"] = 110, - ["min"] = 6, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "explicit", + ["id"] = "crafted.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "crafted", }, }, - ["3325883026"] = { - ["Amulet"] = { - ["max"] = 33, - ["min"] = 1, - }, - ["Belt"] = { - ["max"] = 29, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 23, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 36, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 23, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 18, - ["min"] = 1, - }, + ["1316278494"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", - ["type"] = "explicit", + ["id"] = "crafted.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "crafted", }, }, - ["3336230913"] = { + ["1444556985"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336230913", - ["text"] = "# to maximum Runic Ward", - ["type"] = "explicit", + ["id"] = "crafted.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "crafted", }, - ["usePositiveSign"] = true, }, - ["3336890334"] = { + ["1509134228"] = { ["1HMace"] = { - ["max"] = 123, - ["min"] = 2.5, + ["max"] = 25, + ["min"] = 15, }, ["1HWeapon"] = { - ["max"] = 123, - ["min"] = 2.5, + ["max"] = 25, + ["min"] = 15, }, ["2HMace"] = { - ["max"] = 188.5, - ["min"] = 4, + ["max"] = 25, + ["min"] = 15, }, ["2HWeapon"] = { - ["max"] = 188.5, - ["min"] = 2.5, + ["max"] = 25, + ["min"] = 15, }, ["Bow"] = { - ["max"] = 123, - ["min"] = 2.5, + ["max"] = 25, + ["min"] = 15, }, ["Crossbow"] = { - ["max"] = 188.5, - ["min"] = 4, + ["max"] = 25, + ["min"] = 15, }, ["Flail"] = { - ["max"] = 123, - ["min"] = 2.5, + ["max"] = 25, + ["min"] = 15, }, ["Quarterstaff"] = { - ["max"] = 188.5, - ["min"] = 4, + ["max"] = 25, + ["min"] = 15, }, ["Spear"] = { - ["max"] = 123, - ["min"] = 2.5, + ["max"] = 25, + ["min"] = 15, }, ["Talisman"] = { - ["max"] = 188.5, - ["min"] = 4, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "explicit", + ["id"] = "crafted.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "crafted", }, }, - ["335885735"] = { + ["1671376347"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_335885735", - ["text"] = "Bears the Mark of the Abyssal Lord", - ["type"] = "explicit", + ["id"] = "crafted.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["3362812763"] = { + ["1798257884"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Sceptre"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "crafted.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "crafted", + }, + }, + ["1999113824"] = { ["Boots"] = { - ["max"] = 43, - ["min"] = 14, + ["max"] = 25, + ["min"] = 15, }, ["Chest"] = { - ["max"] = 50, - ["min"] = 14, + ["max"] = 25, + ["min"] = 15, }, ["Gloves"] = { - ["max"] = 43, - ["min"] = 14, + ["max"] = 25, + ["min"] = 15, }, ["Helmet"] = { - ["max"] = 43, - ["min"] = 14, - }, - ["Shield"] = { - ["max"] = 50, - ["min"] = 14, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", - ["type"] = "explicit", + ["id"] = "crafted.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "crafted", }, - ["usePositiveSign"] = true, }, - ["3372524247"] = { - ["Amulet"] = { - ["max"] = 45, + ["210067635"] = { + ["1HMace"] = { + ["max"] = 8, ["min"] = 6, }, - ["Belt"] = { - ["max"] = 45, + ["1HWeapon"] = { + ["max"] = 8, ["min"] = 6, }, - ["Boots"] = { - ["max"] = 45, + ["2HMace"] = { + ["max"] = 8, ["min"] = 6, }, - ["Chest"] = { - ["max"] = 45, + ["2HWeapon"] = { + ["max"] = 8, ["min"] = 6, }, - ["Focus"] = { - ["max"] = 45, + ["Bow"] = { + ["max"] = 8, ["min"] = 6, }, - ["Gloves"] = { - ["max"] = 45, + ["Crossbow"] = { + ["max"] = 8, ["min"] = 6, }, - ["Helmet"] = { - ["max"] = 45, + ["Flail"] = { + ["max"] = 8, ["min"] = 6, }, - ["Ring"] = { - ["max"] = 45, + ["Quarterstaff"] = { + ["max"] = 8, ["min"] = 6, }, - ["Shield"] = { - ["max"] = 45, + ["Spear"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["Talisman"] = { + ["max"] = 8, ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "explicit", + ["id"] = "crafted.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "crafted", }, - ["usePositiveSign"] = true, }, - ["3374165039"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["2106365538"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "explicit", + ["id"] = "crafted.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "crafted", }, }, - ["3377888098"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["2162097452"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "explicit", + ["id"] = "crafted.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["3384867265"] = { - ["specialCaseData"] = { + ["2223678961"] = { + ["1HMace"] = { + ["max"] = 14.5, + ["min"] = 9.5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3384867265", - ["text"] = "Sealed Skills have #% increased Seal gain frequency", - ["type"] = "explicit", + ["1HWeapon"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["2HMace"] = { + ["max"] = 20.5, + ["min"] = 13.5, + }, + ["2HWeapon"] = { + ["max"] = 20.5, + ["min"] = 9.5, + }, + ["Bow"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["Crossbow"] = { + ["max"] = 20.5, + ["min"] = 13.5, + }, + ["Flail"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["Quarterstaff"] = { + ["max"] = 20.5, + ["min"] = 13.5, + }, + ["Spear"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["Talisman"] = { + ["max"] = 20.5, + ["min"] = 13.5, }, - }, - ["3386297724"] = { ["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"] = "crafted.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "crafted", }, }, - ["3391917254"] = { + ["2250533757"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3391917254", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", - ["type"] = "explicit", + ["id"] = "crafted.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "crafted", }, }, - ["3393628375"] = { - ["specialCaseData"] = { + ["2451402625"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3393628375", - ["text"] = "#% to Cold and Chaos Resistances", - ["type"] = "explicit", + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, }, - ["usePositiveSign"] = true, - }, - ["3394832998"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3394832998", - ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", - ["type"] = "explicit", + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["3395186672"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3395186672", - ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", - ["type"] = "explicit", + ["id"] = "crafted.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "crafted", }, }, - ["3398301358"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["2482852589"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3398301358", - ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", + ["id"] = "crafted.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "crafted", }, }, - ["3398787959"] = { + ["280731498"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", - ["type"] = "explicit", + ["id"] = "crafted.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "crafted", }, }, - ["3399401168"] = { + ["2866361420"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3399401168", - ["text"] = "#% to Fire Spell Critical Hit Chance", - ["type"] = "explicit", + ["id"] = "crafted.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "crafted", }, - ["usePositiveSign"] = true, }, - ["3401186585"] = { - ["AnyJewel"] = { + ["2891184298"] = { + ["1HWeapon"] = { ["max"] = 15, ["min"] = 10, }, - ["BaseJewel"] = { + ["2HWeapon"] = { ["max"] = 15, ["min"] = 10, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3401186585", - ["text"] = "#% increased Parried Debuff Duration", - ["type"] = "explicit", - }, - }, - ["3407849389"] = { - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3407849389", - ["text"] = "#% reduced effect of Curses on you", - ["type"] = "explicit", + ["Wand"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["3409275777"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3409275777", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", - ["type"] = "explicit", + ["id"] = "crafted.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "crafted", }, }, - ["3417711605"] = { + ["2923486259"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 7, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 7, + ["min"] = 3, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 19, + ["min"] = 13, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - ["type"] = "explicit", + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["Ring"] = { + ["max"] = 19, + ["min"] = 13, }, - }, - ["3419203492"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3419203492", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", - ["type"] = "explicit", + ["id"] = "crafted.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["3422093970"] = { - ["specialCaseData"] = { + ["2974417149"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3422093970", - ["text"] = "#% chance for Remnants you pick up to count as picking up an additional Remnant", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 40, }, - }, - ["3429148113"] = { - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3429148113", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", - ["type"] = "explicit", + ["Staff"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["3465022881"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3465022881", - ["text"] = "#% to Lightning and Chaos Resistances", - ["type"] = "explicit", + ["id"] = "crafted.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "crafted", }, - ["usePositiveSign"] = true, }, - ["3471443885"] = { + ["3175163625"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3471443885", - ["text"] = "#% of Damage taken from Deflected Hits Recouped as Life", - ["type"] = "explicit", + ["id"] = "crafted.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "crafted", }, }, - ["3473929743"] = { - ["AnyJewel"] = { - ["max"] = 20, + ["3261801346"] = { + ["Amulet"] = { + ["max"] = 15, ["min"] = 10, }, + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, ["BaseJewel"] = { - ["max"] = 20, + ["max"] = 6, + ["min"] = 4, + }, + ["Belt"] = { + ["max"] = 15, ["min"] = 10, }, - ["specialCaseData"] = { + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3473929743", - ["text"] = "#% increased Pin Buildup", - ["type"] = "explicit", + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["3482326075"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3482326075", - ["text"] = "Remnants can be collected from #% further away", - ["type"] = "explicit", + ["id"] = "crafted.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["3484657501"] = { - ["Boots"] = { - ["max"] = 190, - ["min"] = 9, + ["328541901"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Chest"] = { - ["max"] = 310, - ["min"] = 3, - }, - ["Gloves"] = { - ["max"] = 190, - ["min"] = 9, - }, - ["Helmet"] = { - ["max"] = 221, - ["min"] = 9, - }, - ["Shield"] = { - ["max"] = 277, - ["min"] = 9, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "# to Armour (Local)", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3485067555"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 6, + ["min"] = 4, }, - ["specialCaseData"] = { + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", - ["type"] = "explicit", + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - }, - ["3489782002"] = { - ["Amulet"] = { - ["max"] = 89, - ["min"] = 8, + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "explicit", + ["id"] = "crafted.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "crafted", }, ["usePositiveSign"] = true, }, - ["3513818125"] = { - ["specialCaseData"] = { + ["3299347043"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3513818125", - ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", - ["type"] = "explicit", + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, }, - }, - ["3518449420"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3518449420", - ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", - ["type"] = "explicit", + ["id"] = "crafted.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["3523867985"] = { + ["3321629045"] = { ["Boots"] = { - ["max"] = 110, + ["max"] = 25, ["min"] = 15, }, ["Chest"] = { - ["max"] = 110, + ["max"] = 25, ["min"] = 15, }, ["Gloves"] = { - ["max"] = 110, + ["max"] = 25, ["min"] = 15, }, ["Helmet"] = { - ["max"] = 110, + ["max"] = 25, ["min"] = 15, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield", - ["type"] = "explicit", + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["3526763442"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3526763442", - ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", - ["type"] = "explicit", + ["id"] = "crafted.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "crafted", }, }, - ["3544800472"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { + ["3336890334"] = { + ["1HMace"] = { + ["max"] = 22.5, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", - ["type"] = "explicit", + ["1HWeapon"] = { + ["max"] = 22.5, + ["min"] = 15, }, - }, - ["3552135623"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 32, + ["min"] = 21, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3552135623", - ["text"] = "Prevent #% of Damage from Deflected Hits", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 32, + ["min"] = 15, }, - ["usePositiveSign"] = true, - }, - ["3556824919"] = { - ["Amulet"] = { - ["max"] = 39, - ["min"] = 10, + ["Bow"] = { + ["max"] = 22.5, + ["min"] = 15, }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Crossbow"] = { + ["max"] = 32, + ["min"] = 21, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Flail"] = { + ["max"] = 22.5, + ["min"] = 15, }, - ["Gloves"] = { - ["max"] = 34, - ["min"] = 10, + ["Quarterstaff"] = { + ["max"] = 32, + ["min"] = 21, }, - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 22.5, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", - ["type"] = "explicit", + ["Talisman"] = { + ["max"] = 32, + ["min"] = 21, }, - }, - ["3579898587"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3579898587", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", - ["type"] = "explicit", + ["id"] = "crafted.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "crafted", }, }, - ["3585532255"] = { + ["3372524247"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, ["Belt"] = { - ["max"] = 40, + ["max"] = 25, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["RadiusJewel"] = { + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", - ["type"] = "explicit", + ["id"] = "crafted.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["3587953142"] = { + ["3377888098"] = { ["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"] = "crafted.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "crafted", }, }, - ["3590792340"] = { - ["AnyJewel"] = { + ["3556824919"] = { + ["Quiver"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 15, }, - ["BaseJewel"] = { + ["Ring"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3590792340", - ["text"] = "#% increased Mana Flask Charges gained", - ["type"] = "explicit", + ["id"] = "crafted.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "crafted", }, }, - ["3596695232"] = { - ["AnyJewel"] = { - ["max"] = 20, + ["3917489142"] = { + ["Amulet"] = { + ["max"] = 15, ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 20, + ["Ring"] = { + ["max"] = 15, ["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"] = "crafted.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "crafted", }, }, - ["3621874554"] = { + ["3981240776"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["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", - }, - }, - ["3628935286"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3628935286", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", - ["type"] = "explicit", + ["id"] = "crafted.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["3639275092"] = { - ["1HMace"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["1HWeapon"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["2HMace"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["2HWeapon"] = { - ["max"] = -15, - ["min"] = -35, - }, + ["4015621042"] = { ["Boots"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Bow"] = { - ["max"] = -15, - ["min"] = -35, + ["max"] = 25, + ["min"] = 15, }, ["Chest"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Crossbow"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Flail"] = { - ["max"] = -15, - ["min"] = -35, + ["max"] = 25, + ["min"] = 15, }, ["Focus"] = { - ["max"] = -15, - ["min"] = -35, + ["max"] = 25, + ["min"] = 15, }, ["Gloves"] = { - ["max"] = -15, - ["min"] = -35, + ["max"] = 25, + ["min"] = 15, }, ["Helmet"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Quarterstaff"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Sceptre"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Shield"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Spear"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Staff"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Talisman"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Wand"] = { - ["max"] = -15, - ["min"] = -35, + ["max"] = 25, + ["min"] = 15, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", - ["type"] = "explicit", + ["id"] = "crafted.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "crafted", }, }, - ["3641543553"] = { - ["specialCaseData"] = { + ["4080418644"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3641543553", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", - ["type"] = "explicit", + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - }, - ["3655769732"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3655769732", - ["text"] = "#% to Quality of all Skills", - ["type"] = "explicit", + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, }, - ["usePositiveSign"] = true, - }, - ["3665922113"] = { - ["specialCaseData"] = { + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3665922113", - ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", - ["type"] = "explicit", + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["3666476747"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3666476747", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", - ["type"] = "explicit", + ["id"] = "crafted.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["3668351662"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration", - ["type"] = "explicit", + ["4095671657"] = { + ["Belt"] = { + ["max"] = 3, + ["min"] = 1, }, - }, - ["3669820740"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3669820740", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", - ["type"] = "explicit", + ["id"] = "crafted.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["3676141501"] = { + ["4220027924"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 10, + ["min"] = 5, }, - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, + ["Belt"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", - ["type"] = "explicit", + ["id"] = "crafted.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "crafted", }, ["usePositiveSign"] = true, }, - ["3679418014"] = { + ["44972811"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 26, + ["max"] = 25, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", - ["type"] = "explicit", + ["id"] = "crafted.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "crafted", }, }, - ["3695891184"] = { + ["709508406"] = { ["1HMace"] = { - ["max"] = 84, - ["min"] = 4, + ["max"] = 18, + ["min"] = 12, }, ["1HWeapon"] = { - ["max"] = 84, - ["min"] = 4, + ["max"] = 18, + ["min"] = 12, }, ["2HMace"] = { - ["max"] = 84, - ["min"] = 4, + ["max"] = 25.5, + ["min"] = 17, }, ["2HWeapon"] = { - ["max"] = 84, - ["min"] = 4, + ["max"] = 25.5, + ["min"] = 12, }, ["Bow"] = { - ["max"] = 84, - ["min"] = 4, + ["max"] = 18, + ["min"] = 12, }, ["Crossbow"] = { - ["max"] = 84, - ["min"] = 4, + ["max"] = 25.5, + ["min"] = 17, }, ["Flail"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Gloves"] = { - ["max"] = 84, - ["min"] = 4, + ["max"] = 18, + ["min"] = 12, }, ["Quarterstaff"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Quiver"] = { - ["max"] = 53, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 53, - ["min"] = 4, + ["max"] = 25.5, + ["min"] = 17, }, ["Spear"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Staff"] = { - ["max"] = 84, - ["min"] = 4, + ["max"] = 18, + ["min"] = 12, }, ["Talisman"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Wand"] = { - ["max"] = 84, - ["min"] = 4, + ["max"] = 25.5, + ["min"] = 17, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", - ["type"] = "explicit", + ["id"] = "crafted.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "crafted", }, }, - ["3700202631"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3700202631", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", - ["type"] = "explicit", + ["737908626"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["3714003708"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, }, - ["Quiver"] = { - ["max"] = 39, - ["min"] = 10, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3714003708", - ["text"] = "#% increased Critical Damage Bonus for Attack Damage", - ["type"] = "explicit", + ["id"] = "crafted.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "crafted", }, }, - ["3741323227"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["789117908"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", - ["type"] = "explicit", + ["id"] = "crafted.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "crafted", }, }, - ["3742865955"] = { - ["specialCaseData"] = { + ["803737631"] = { + ["Helmet"] = { + ["max"] = 100, + ["min"] = 50, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3742865955", - ["text"] = "Minions deal #% increased Damage with Command Skills", - ["type"] = "explicit", + ["Quiver"] = { + ["max"] = 100, + ["min"] = 50, }, - }, - ["3749502527"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3749502527", - ["text"] = "#% chance to gain Volatility on Kill", - ["type"] = "explicit", + ["id"] = "crafted.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "crafted", }, + ["usePositiveSign"] = true, }, - ["3752589831"] = { + ["924253255"] = { + ["Boots"] = { + ["max"] = -20, + ["min"] = -30, + }, + ["invertOnNegative"] = true, ["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"] = "crafted.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "crafted", }, }, - ["3759663284"] = { + }, + ["Enchant"] = { + }, + ["Explicit"] = { + ["1002362373"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["Quiver"] = { - ["max"] = 46, - ["min"] = 10, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", ["type"] = "explicit", }, }, - ["3759735052"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["1002535626"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", + ["id"] = "explicit.stat_1002535626", + ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", ["type"] = "explicit", }, }, - ["3771516363"] = { - ["Shield"] = { - ["max"] = 8, - ["min"] = 4, + ["1004011302"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "explicit", }, }, - ["3774951878"] = { + ["1007380041"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3774951878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["id"] = "explicit.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", ["type"] = "explicit", }, }, - ["3780644166"] = { + ["1011760251"] = { ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["max"] = 1, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", + ["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", }, }, - ["3787460122"] = { + ["101878827"] = { + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 36, + }, ["AnyJewel"] = { ["max"] = 25, ["min"] = 15, @@ -8820,1259 +8466,1169 @@ return { ["max"] = 25, ["min"] = 15, }, + ["Sceptre"] = { + ["max"] = 80, + ["min"] = 36, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3787460122", - ["text"] = "Offerings have #% increased Maximum Life", + ["id"] = "explicit.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", ["type"] = "explicit", }, }, - ["378796798"] = { + ["1022759479"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_378796798", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["id"] = "explicit.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", ["type"] = "explicit", }, }, - ["378817135"] = { + ["1028592286"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_378817135", - ["text"] = "#% to Fire and Chaos Resistances", + ["id"] = "explicit.stat_1028592286", + ["text"] = "#% chance to Chain an additional time", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["3791899485"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["1030153674"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3791899485", - ["text"] = "#% increased Ignite Magnitude", + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", ["type"] = "explicit", }, }, - ["3811191316"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 5, + ["1037193709"] = { + ["1HMace"] = { + ["max"] = 102, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 5, + ["1HWeapon"] = { + ["max"] = 102, + ["min"] = 2, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 156.5, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3811191316", - ["text"] = "Minions have #% increased Area of Effect", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 156.5, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 156.5, + ["min"] = 3, + }, + ["Flail"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 156.5, + ["min"] = 3, + }, + ["Spear"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 156.5, + ["min"] = 3, }, - }, - ["3814876985"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Hit", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", ["type"] = "explicit", }, }, - ["3821543413"] = { + ["1039268420"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3821543413", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["id"] = "explicit.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", ["type"] = "explicit", }, }, - ["3824372849"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["1045789614"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3824372849", - ["text"] = "#% increased Curse Duration", + ["id"] = "explicit.stat_1045789614", + ["text"] = "#% increased Critical Hit Chance against Marked Enemies", ["type"] = "explicit", }, }, - ["3835551335"] = { + ["1049080093"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", + ["id"] = "explicit.stat_1049080093", + ["text"] = "Attacks Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, }, - ["3837707023"] = { - ["AnyJewel"] = { - ["max"] = 13, - ["min"] = 7, + ["1050105434"] = { + ["1HWeapon"] = { + ["max"] = 164, + ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 13, - ["min"] = 7, + ["2HWeapon"] = { + ["max"] = 328, + ["min"] = 20, + }, + ["Amulet"] = { + ["max"] = 189, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 124, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 124, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 164, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 124, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 149, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 179, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 164, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 328, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 164, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3837707023", - ["text"] = "Minions have #% to Chaos Resistance", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["3850614073"] = { - ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["Sceptre"] = { - ["max"] = 18, - ["min"] = 3, - }, + ["1058934731"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3850614073", - ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["id"] = "explicit.stat_1058934731", + ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["3851254963"] = { + ["1060572482"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, + ["max"] = 25, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", + ["id"] = "explicit.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", ["type"] = "explicit", }, }, - ["3855016469"] = { - ["Body Armour"] = { - ["max"] = 50, - ["min"] = 40, + ["1062208444"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, }, ["Shield"] = { - ["max"] = 54, - ["min"] = 21, + ["max"] = 110, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", ["type"] = "explicit", }, }, - ["3856744003"] = { + ["1062710370"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3856744003", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["id"] = "explicit.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "explicit", }, }, - ["3858398337"] = { + ["1087108135"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3858398337", - ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["id"] = "explicit.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", ["type"] = "explicit", }, }, - ["3858572996"] = { + ["1087531620"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3858572996", - ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", + ["id"] = "explicit.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", ["type"] = "explicit", }, }, - ["3859848445"] = { + ["1102738251"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3859848445", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["id"] = "explicit.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", ["type"] = "explicit", }, }, - ["3865605585"] = { + ["1104825894"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3865605585", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["id"] = "explicit.stat_1104825894", + ["text"] = "#% faster Curse Activation", ["type"] = "explicit", }, }, - ["3868118796"] = { + ["111835965"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3868118796", - ["text"] = "Attacks Chain an additional time", + ["id"] = "explicit.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", ["type"] = "explicit", }, }, - ["387439868"] = { - ["1HMace"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["2HMace"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 19, + ["1120862500"] = { + ["Charm"] = { + ["max"] = 300, + ["min"] = 16, }, - ["Bow"] = { - ["max"] = 100, - ["min"] = 19, + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 139, - ["min"] = 34, + ["tradeMod"] = { + ["id"] = "explicit.stat_1120862500", + ["text"] = "Recover # Mana when Used", + ["type"] = "explicit", }, - ["Flail"] = { - ["max"] = 100, - ["min"] = 19, + }, + ["1129429646"] = { + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 139, - ["min"] = 34, + ["tradeMod"] = { + ["id"] = "explicit.stat_1129429646", + ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 100, - ["min"] = 19, + }, + ["1135928777"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Talisman"] = { - ["max"] = 139, - ["min"] = 34, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", + ["id"] = "explicit.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", ["type"] = "explicit", }, }, - ["3885405204"] = { + ["1137305356"] = { ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", + ["id"] = "explicit.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", ["type"] = "explicit", }, }, - ["388617051"] = { - ["invertOnNegative"] = true, + ["1145481685"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_388617051", - ["text"] = "#% increased Charges per use", + ["id"] = "explicit.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", ["type"] = "explicit", }, }, - ["3891355829"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["1158842087"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3891355829|1", - ["text"] = "Upgrades Radius to Medium", + ["id"] = "explicit.stat_1158842087", + ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", ["type"] = "explicit", }, }, - ["391602279"] = { + ["1160637284"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_391602279", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["id"] = "explicit.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", ["type"] = "explicit", }, }, - ["3917489142"] = { - ["Amulet"] = { - ["max"] = 19, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 19, - ["min"] = 6, + ["1165163804"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Ring"] = { - ["max"] = 19, - ["min"] = 6, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "explicit.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", ["type"] = "explicit", }, }, - ["3936121440"] = { + ["1166140625"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3936121440", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["id"] = "explicit.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", ["type"] = "explicit", }, }, - ["394473632"] = { + ["1177404658"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_394473632", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["id"] = "explicit.stat_1177404658", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield", ["type"] = "explicit", }, }, - ["3962278098"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, + ["1180552088"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_1180552088", + ["text"] = "#% increased effect of Archon Buffs on you", ["type"] = "explicit", }, }, - ["3973629633"] = { + ["1181419800"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3973629633", - ["text"] = "#% increased Withered Magnitude", + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces", ["type"] = "explicit", }, }, - ["3981240776"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 30, + ["1181501418"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Chest"] = { - ["max"] = 61, - ["min"] = 30, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3981240776", - ["text"] = "# to Spirit", + ["id"] = "explicit.stat_1181501418", + ["text"] = "# to Maximum Rage", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["3984146263"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3984146263", - ["text"] = "Tempest Bells are destroyed after an additional # Hits", - ["type"] = "explicit", - }, - }, - ["3984865854"] = { - ["1HWeapon"] = { - ["max"] = 65, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 65, - ["min"] = 10, - }, + ["1185341308"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3984865854", - ["text"] = "#% increased Spirit", + ["id"] = "explicit.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", ["type"] = "explicit", }, }, - ["4009879772"] = { + ["1200678966"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 6, + ["min"] = 4, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 6, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4009879772", - ["text"] = "#% increased Life Flask Charges gained", + ["id"] = "explicit.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", ["type"] = "explicit", }, }, - ["4010677958"] = { + ["1202301673"] = { ["1HWeapon"] = { - ["max"] = 33, + ["max"] = 4, ["min"] = 1, }, - ["Sceptre"] = { - ["max"] = 33, + ["2HWeapon"] = { + ["max"] = 5, ["min"] = 1, }, - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", - ["type"] = "explicit", - }, - }, - ["4015621042"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 100, - ["min"] = 6, + ["Bow"] = { + ["max"] = 4, + ["min"] = 1, }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 2, }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, + ["Quiver"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 101, + ["Spear"] = { + ["max"] = 4, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", + ["id"] = "explicit.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["4019237939"] = { - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, + ["1238227257"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "explicit", }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, + }, + ["124131830"] = { + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 1, }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 2, }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, + ["Focus"] = { + ["max"] = 2, + ["min"] = 1, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 6, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4019237939", - ["text"] = "Gain #% of Damage as Extra Physical Damage", - ["type"] = "explicit", + ["Wand"] = { + ["max"] = 4, + ["min"] = 1, }, - }, - ["4032352472"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4032352472", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + ["id"] = "explicit.stat_124131830", + ["text"] = "# to Level of all Spell Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["4045894391"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["1241625305"] = { + ["Quiver"] = { + ["max"] = 59, + ["min"] = 11, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4045894391", - ["text"] = "#% increased Damage with Quarterstaves", + ["id"] = "explicit.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", ["type"] = "explicit", }, }, - ["4052037485"] = { + ["124859000"] = { ["Boots"] = { - ["max"] = 60, - ["min"] = 5, + ["max"] = 100, + ["min"] = 6, }, ["Chest"] = { - ["max"] = 96, - ["min"] = 2, - }, - ["Focus"] = { - ["max"] = 90, - ["min"] = 10, + ["max"] = 110, + ["min"] = 6, }, ["Gloves"] = { - ["max"] = 60, - ["min"] = 5, + ["max"] = 100, + ["min"] = 6, }, ["Helmet"] = { - ["max"] = 73, - ["min"] = 5, + ["max"] = 100, + ["min"] = 6, }, ["Shield"] = { - ["max"] = 42, - ["min"] = 5, + ["max"] = 110, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4052037485", - ["text"] = "# to maximum Energy Shield (Local)", + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["4067062424"] = { - ["Gloves"] = { - ["max"] = 30.5, - ["min"] = 1.5, + ["1250712710"] = { + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 10, }, - ["Quiver"] = { - ["max"] = 30.5, - ["min"] = 1.5, + ["Sceptre"] = { + ["max"] = 38, + ["min"] = 10, }, - ["Ring"] = { - ["max"] = 30.5, - ["min"] = 1.5, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, + ["1261982764"] = { + ["LifeFlask"] = { + ["max"] = 100, + ["min"] = 61, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold damage to Attacks", + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", ["type"] = "explicit", }, }, - ["4080418644"] = { + ["1263695895"] = { ["1HMace"] = { - ["max"] = 33, + ["max"] = 15, ["min"] = 5, }, ["1HWeapon"] = { - ["max"] = 33, + ["max"] = 15, ["min"] = 5, }, ["2HMace"] = { - ["max"] = 33, + ["max"] = 15, ["min"] = 5, }, ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Belt"] = { - ["max"] = 36, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 33, + ["max"] = 15, ["min"] = 5, }, - ["Chest"] = { - ["max"] = 33, + ["Bow"] = { + ["max"] = 15, ["min"] = 5, }, ["Crossbow"] = { - ["max"] = 33, + ["max"] = 15, ["min"] = 5, }, ["Flail"] = { - ["max"] = 33, + ["max"] = 15, ["min"] = 5, }, - ["Gloves"] = { - ["max"] = 33, + ["Helmet"] = { + ["max"] = 15, ["min"] = 5, }, - ["Helmet"] = { - ["max"] = 33, + ["Quarterstaff"] = { + ["max"] = 15, ["min"] = 5, }, ["Ring"] = { - ["max"] = 33, + ["max"] = 15, ["min"] = 5, }, ["Sceptre"] = { - ["max"] = 33, + ["max"] = 15, ["min"] = 5, }, - ["Shield"] = { - ["max"] = 33, + ["Spear"] = { + ["max"] = 15, ["min"] = 5, }, - ["Spear"] = { - ["max"] = 33, + ["Staff"] = { + ["max"] = 15, ["min"] = 5, }, ["Talisman"] = { - ["max"] = 33, + ["max"] = 15, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 15, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["4081947835"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["1265767008"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["id"] = "explicit.stat_1265767008", + ["text"] = "Your Minions are Gigantic if they have Revived Recently", ["type"] = "explicit", }, }, - ["4089835882"] = { + ["1266413530"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4089835882", - ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["id"] = "explicit.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", ["type"] = "explicit", }, }, - ["4092130601"] = { + ["127081978"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4092130601", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["id"] = "explicit.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", ["type"] = "explicit", }, }, - ["4095671657"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["1285594161"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", + ["id"] = "explicit.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["4097212302"] = { + ["1301765461"] = { + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4097212302", - ["text"] = "# to maximum number of Elemental Infusions", + ["id"] = "explicit.stat_1301765461", + ["text"] = "#% to Maximum Chaos Resistance", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["4101445926"] = { - ["Focus"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Staff"] = { - ["max"] = 32, - ["min"] = 28, + ["1303248024"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 18, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4101445926", - ["text"] = "#% increased Mana Cost Efficiency", + ["id"] = "explicit.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", ["type"] = "explicit", }, }, - ["412709880"] = { + ["1309799717"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_412709880", - ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + ["id"] = "explicit.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "explicit", }, }, - ["4129825612"] = { - ["Body Armour"] = { + ["1310194496"] = { + ["AnyJewel"] = { ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "explicit", + ["min"] = 5, }, - }, - ["4139681126"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", ["type"] = "explicit", }, }, - ["4142814612"] = { - ["specialCaseData"] = { + ["1315743832"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4142814612", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["4147510958"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4147510958", - ["text"] = "Sealed Skills have # to maximum Seals", + ["id"] = "explicit.stat_1315743832", + ["text"] = "#% increased Thorns damage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["4147897060"] = { + ["1316278494"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4147897060", - ["text"] = "#% increased Block chance", + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", ["type"] = "explicit", }, }, - ["4159248054"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["1320662475"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4159248054", - ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["id"] = "explicit.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", ["type"] = "explicit", }, }, - ["416040624"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["1321054058"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_416040624", - ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["id"] = "explicit.stat_1321054058", + ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", ["type"] = "explicit", }, }, - ["4162678661"] = { + ["1321104829"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4162678661", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["id"] = "explicit.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", ["type"] = "explicit", }, }, - ["4173554949"] = { + ["1323216174"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4173554949", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["id"] = "explicit.stat_1323216174", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "explicit", }, }, - ["4180952808"] = { + ["1337740333"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4180952808", - ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + ["id"] = "explicit.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", ["type"] = "explicit", }, }, - ["4188894176"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["1347539079"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_1347539079", + ["text"] = "#% Surpassing chance to fire an additional Projectile", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, + }, + ["1352561456"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4188894176", - ["text"] = "#% increased Damage with Bows", + ["id"] = "explicit.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "explicit", }, }, - ["4215035940"] = { + ["1366840608"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4215035940", - ["text"] = "On Corruption, Item gains two Enchantments", + ["id"] = "explicit.stat_1366840608", + ["text"] = "#% increased Charges", ["type"] = "explicit", }, }, - ["4220027924"] = { - ["Amulet"] = { + ["1368271171"] = { + ["1HMace"] = { ["max"] = 45, - ["min"] = 6, + ["min"] = 2, }, - ["Belt"] = { + ["1HWeapon"] = { ["max"] = 45, - ["min"] = 6, + ["min"] = 2, }, - ["Boots"] = { + ["2HMace"] = { ["max"] = 45, - ["min"] = 6, + ["min"] = 2, }, - ["Chest"] = { + ["2HWeapon"] = { ["max"] = 45, - ["min"] = 6, + ["min"] = 2, }, - ["Focus"] = { + ["Bow"] = { ["max"] = 45, - ["min"] = 6, + ["min"] = 2, }, - ["Gloves"] = { + ["Crossbow"] = { ["max"] = 45, - ["min"] = 6, + ["min"] = 2, }, - ["Helmet"] = { + ["Flail"] = { ["max"] = 45, - ["min"] = 6, + ["min"] = 2, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Quiver"] = { + ["max"] = 27, + ["min"] = 2, }, ["Ring"] = { + ["max"] = 27, + ["min"] = 2, + }, + ["Spear"] = { ["max"] = 45, - ["min"] = 6, + ["min"] = 2, }, - ["Shield"] = { + ["Staff"] = { ["max"] = 45, - ["min"] = 6, + ["min"] = 2, }, - ["specialCaseData"] = { + ["Talisman"] = { + ["max"] = 45, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "explicit", + ["Wand"] = { + ["max"] = 45, + ["min"] = 2, }, - ["usePositiveSign"] = true, - }, - ["4225700219"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4225700219", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", + ["id"] = "explicit.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", ["type"] = "explicit", }, }, - ["4226189338"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, + ["1379411836"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 2, }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, + ["Ring"] = { + ["max"] = 13, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", + ["id"] = "explicit.stat_1379411836", + ["text"] = "# to all Attributes", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["4234573345"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["138421180"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4234573345", - ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["id"] = "explicit.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", ["type"] = "explicit", }, }, - ["4236566306"] = { + ["1389754388"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 8, + ["max"] = 15, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 33, ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", + ["id"] = "explicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", ["type"] = "explicit", }, }, - ["4246007234"] = { + ["139889694"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4246007234", - ["text"] = "#% increased Attack Damage while on Low Life", + ["id"] = "explicit.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "explicit", }, }, - ["4258000627"] = { + ["1405298142"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 25, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4258000627", - ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", + ["id"] = "explicit.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "explicit", }, }, - ["4258524206"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4258524206", - ["text"] = "#% chance to build an additional Combo on Hit", - ["type"] = "explicit", + ["1412217137"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, }, - }, - ["4258720395"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4258720395", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", ["type"] = "explicit", }, }, - ["4259875040"] = { + ["1416406066"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4259875040", - ["text"] = "#% increased Magnitude of Impales inflicted with Spells", + ["id"] = "explicit.stat_1416406066", + ["text"] = "#% increased Spirit", ["type"] = "explicit", }, }, - ["4273473110"] = { + ["1417267954"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4273473110", - ["text"] = "#% increased maximum Runic Ward", + ["id"] = "explicit.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "explicit", }, }, - ["427684353"] = { + ["1423639565"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_427684353", - ["text"] = "#% increased Damage with Crossbows", + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["429143663"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["1426522529"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["type"] = "explicit", }, + }, + ["1432756708"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_429143663", - ["text"] = "Banner Skills have #% increased Area of Effect", + ["id"] = "explicit.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", ["type"] = "explicit", }, }, - ["434750362"] = { + ["1443502073"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_434750362", - ["text"] = "#% increased Area of Effect for Attacks per 10 Intelligence", + ["id"] = "explicit.stat_1443502073", + ["text"] = "#% increased Effect of Prefixes", ["type"] = "explicit", }, }, - ["440490623"] = { - ["AnyJewel"] = { - ["max"] = 20, + ["1444556985"] = { + ["Amulet"] = { + ["max"] = 24, ["min"] = 10, }, + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_440490623", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "explicit", }, }, - ["442393998"] = { + ["145581225"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_442393998", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["id"] = "explicit.stat_145581225", + ["text"] = "#% increased Cast Speed during any Flask Effect", ["type"] = "explicit", }, }, - ["44972811"] = { + ["1459321413"] = { ["AnyJewel"] = { ["max"] = 10, ["min"] = 5, @@ -10084,380 +9640,368 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", ["type"] = "explicit", }, }, - ["455816363"] = { + ["147764878"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_455816363", - ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["id"] = "explicit.stat_147764878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "explicit", }, }, - ["458438597"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["1484026495"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", + ["id"] = "explicit.stat_1484026495", + ["text"] = "+# maximum stacks of Puppet Master", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["462424929"] = { + ["1484500028"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_462424929", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["id"] = "explicit.stat_1484500028", + ["text"] = "Attacks Gain #% of Damage as Extra Cold Damage", ["type"] = "explicit", }, }, - ["472520716"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 10, - }, + ["1485480327"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - ["type"] = "explicit", - }, - }, - ["473429811"] = { - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["Wand"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_473429811", - ["text"] = "#% increased Freeze Buildup", + ["id"] = "explicit.stat_1485480327", + ["text"] = "Minions have #% increased Immobilisation buildup", ["type"] = "explicit", }, }, - ["473917671"] = { + ["1488650448"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_473917671", - ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["id"] = "explicit.stat_1488650448", + ["text"] = "# to Ailment Threshold", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["484792219"] = { + ["1493485657"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_484792219", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["id"] = "explicit.stat_1493485657", + ["text"] = "Spells have #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, }, - ["491450213"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["1494950893"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_491450213", - ["text"] = "Minions have #% increased Critical Hit Chance", + ["id"] = "explicit.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", ["type"] = "explicit", }, }, - ["504915064"] = { + ["1495814176"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_504915064", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["id"] = "explicit.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", ["type"] = "explicit", }, }, - ["517664839"] = { + ["1505023559"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_517664839", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + ["id"] = "explicit.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", ["type"] = "explicit", }, }, - ["518292764"] = { + ["1509134228"] = { ["1HMace"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 179, + ["min"] = 15, }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 179, + ["min"] = 15, }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 179, + ["min"] = 15, }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 179, + ["min"] = 15, }, ["Bow"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 179, + ["min"] = 15, }, ["Crossbow"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 179, + ["min"] = 15, }, ["Flail"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 179, + ["min"] = 15, }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 179, + ["min"] = 15, }, ["Spear"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 179, + ["min"] = 15, }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 179, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_518292764", - ["text"] = "#% to Critical Hit Chance", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["51994685"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, + ["1509533589"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", + ["id"] = "explicit.stat_1509533589", + ["text"] = "Enemies take #% increased Damage for each Elemental Ailment type amongyour Ailments on them", ["type"] = "explicit", }, }, - ["525523040"] = { + ["1514844108"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_525523040", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["id"] = "explicit.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", ["type"] = "explicit", }, }, - ["53045048"] = { - ["Boots"] = { - ["max"] = 176, - ["min"] = 6, + ["1526933524"] = { + ["LifeFlask"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Chest"] = { - ["max"] = 300, - ["min"] = 2, + ["ManaFlask"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Gloves"] = { - ["max"] = 176, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 207, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", + ["type"] = "explicit", }, - ["Shield"] = { - ["max"] = 261, - ["min"] = 6, + }, + ["153777645"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "# to Evasion Rating (Local)", + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["533892981"] = { + ["1544773869"] = { + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 4, + }, + ["Crossbow"] = { + ["max"] = 40, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_533892981", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["id"] = "explicit.stat_1544773869", + ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", ["type"] = "explicit", }, }, - ["538241406"] = { - ["AnyJewel"] = { + ["1545858329"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HWeapon"] = { ["max"] = 7, - ["min"] = 3, + ["min"] = 1, }, - ["BaseJewel"] = { + ["Staff"] = { ["max"] = 7, - ["min"] = 3, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_538241406", - ["text"] = "Damaging Ailments deal damage #% faster", + ["id"] = "explicit.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["541021467"] = { + ["1552666713"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_541021467", - ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", + ["id"] = "explicit.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", ["type"] = "explicit", }, }, - ["54812069"] = { + ["1568848828"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_54812069", - ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", + ["id"] = "explicit.stat_1568848828", + ["text"] = "Recover # Runic Ward when you Block", ["type"] = "explicit", }, }, - ["554145967"] = { + ["1569101201"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_554145967", - ["text"] = "Recover # Runic Ward when a Charm is used", + ["id"] = "explicit.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", ["type"] = "explicit", }, }, - ["555706343"] = { + ["1569159338"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_555706343", - ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", + ["id"] = "explicit.stat_1569159338", + ["text"] = "#% increased Parry Damage", ["type"] = "explicit", }, }, - ["55876295"] = { - ["1HMace"] = { - ["max"] = 9.9, - ["min"] = 6, + ["1570501432"] = { + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["max"] = 9.9, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_1570501432", + ["text"] = "Leech Life #% faster", + ["type"] = "explicit", }, - ["2HMace"] = { - ["max"] = 9.9, - ["min"] = 6, + }, + ["1570770415"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 8, }, - ["2HWeapon"] = { - ["max"] = 9.9, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 9.9, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "explicit", }, - ["Crossbow"] = { - ["max"] = 9.9, - ["min"] = 6, + }, + ["1573130764"] = { + ["Gloves"] = { + ["max"] = 37, + ["min"] = 2, }, - ["Flail"] = { - ["max"] = 9.9, - ["min"] = 6, + ["Quiver"] = { + ["max"] = 37, + ["min"] = 2, }, - ["Quarterstaff"] = { - ["max"] = 9.9, - ["min"] = 6, + ["Ring"] = { + ["max"] = 37, + ["min"] = 2, }, - ["Spear"] = { - ["max"] = 9.9, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 9.9, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1574590649"] = { + ["1HWeapon"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["Sceptre"] = { + ["max"] = 25.5, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_55876295", - ["text"] = "Leeches #% of Physical Damage as Life", + ["id"] = "explicit.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "explicit", }, }, - ["565784293"] = { + ["1585769763"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_565784293", - ["text"] = "#% increased Knockback Distance", + ["id"] = "explicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", ["type"] = "explicit", }, }, - ["587431675"] = { - ["Amulet"] = { - ["max"] = 38, - ["min"] = 10, - }, + ["1589917703"] = { ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -10466,28 +10010,41 @@ return { ["max"] = 15, ["min"] = 5, }, - ["Helmet"] = { - ["max"] = 34, - ["min"] = 10, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", }, + }, + ["1590846356"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Critical Hit Chance", + ["id"] = "explicit.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", ["type"] = "explicit", }, }, - ["589361270"] = { + ["1594812856"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_589361270", - ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", + ["id"] = "explicit.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", ["type"] = "explicit", }, }, - ["591105508"] = { + ["1600707273"] = { ["1HWeapon"] = { ["max"] = 5, ["min"] = 1, @@ -10507,595 +10064,500 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", + ["id"] = "explicit.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["593241812"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_593241812", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["61644361"] = { + ["1602294220"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_61644361", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["id"] = "explicit.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", ["type"] = "explicit", }, }, - ["624954515"] = { + ["1604736568"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", + ["id"] = "explicit.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "explicit", }, }, - ["627767961"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["1615901249"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_627767961", - ["text"] = "#% increased Damage while you have an active Charm", + ["id"] = "explicit.stat_1615901249", + ["text"] = "Invocated skills have #% increased Maximum Energy", ["type"] = "explicit", }, }, - ["62849030"] = { + ["1617268696"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_62849030", - ["text"] = "Critical Hits Poison the enemy", + ["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", }, }, - ["644456512"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 8, - }, + ["1653682082"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", + ["id"] = "explicit.stat_1653682082", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, }, - ["648019518"] = { - ["LifeFlask"] = { - ["max"] = 15, - ["min"] = 15, + ["1671376347"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 45, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_648019518", - ["text"] = "Removes #% of Life Recovered from Mana when used", + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["654207792"] = { + ["1691403182"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_654207792", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + ["id"] = "explicit.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, }, - ["656461285"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, + ["1692879867"] = { + ["Chest"] = { + ["max"] = -36, + ["min"] = -60, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", + ["id"] = "explicit.stat_1692879867", + ["text"] = "#% increased Duration of Bleeding on You", ["type"] = "explicit", }, }, - ["669069897"] = { - ["1HMace"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 8.9, - ["min"] = 5, + ["1697447343"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Talisman"] = { - ["max"] = 8.9, - ["min"] = 5, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_669069897", - ["text"] = "Leeches #% of Physical Damage as Mana", + ["id"] = "explicit.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", ["type"] = "explicit", }, }, - ["674553446"] = { + ["1697951953"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", + ["id"] = "explicit.stat_1697951953", + ["text"] = "#% increased Hazard Damage", ["type"] = "explicit", }, }, - ["680068163"] = { + ["169946467"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", + ["id"] = "explicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", ["type"] = "explicit", }, }, - ["681332047"] = { + ["1714971114"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["Gloves"] = { - ["max"] = 16, + ["max"] = 15, ["min"] = 5, }, - ["Quiver"] = { - ["max"] = 16, - ["min"] = 5, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", + ["type"] = "explicit", }, + }, + ["1718147982"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", ["type"] = "explicit", }, }, - ["686254215"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["173226756"] = { + ["LifeFlask"] = { + ["max"] = 70, + ["min"] = 41, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["ManaFlask"] = { + ["max"] = 70, + ["min"] = 41, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_686254215", - ["text"] = "#% increased Totem Life", + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", ["type"] = "explicit", }, }, - ["691932474"] = { - ["1HMace"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 550, - ["min"] = 10, + ["1742651309"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 26, }, - ["2HWeapon"] = { - ["max"] = 650, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 650, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "explicit", }, - ["Crossbow"] = { - ["max"] = 650, - ["min"] = 10, + }, + ["174664100"] = { + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 550, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "explicit", }, - ["Quarterstaff"] = { - ["max"] = 550, - ["min"] = 10, + }, + ["1754445556"] = { + ["Gloves"] = { + ["max"] = 37.5, + ["min"] = 2.5, }, - ["Spear"] = { - ["max"] = 550, - ["min"] = 10, + ["Quiver"] = { + ["max"] = 37.5, + ["min"] = 2.5, }, - ["Talisman"] = { - ["max"] = 550, - ["min"] = 10, + ["Ring"] = { + ["max"] = 37.5, + ["min"] = 2.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_691932474", - ["text"] = "# to Accuracy Rating (Local)", + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["693237939"] = { + ["1756380435"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_693237939", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["id"] = "explicit.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", ["type"] = "explicit", }, }, - ["700317374"] = { - ["LifeFlask"] = { - ["max"] = 80, - ["min"] = -50, + ["1772247089"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["ManaFlask"] = { - ["max"] = 80, - ["min"] = -50, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", + ["id"] = "explicit.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", ["type"] = "explicit", }, }, - ["707457662"] = { - ["Gloves"] = { - ["max"] = 8.9, + ["1773308808"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["type"] = "explicit", + }, + }, + ["1776411443"] = { + ["AnyJewel"] = { + ["max"] = 15, ["min"] = 5, }, - ["Ring"] = { - ["max"] = 6.9, + ["BaseJewel"] = { + ["max"] = 15, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["id"] = "explicit.stat_1776411443", + ["text"] = "Break #% increased Armour", ["type"] = "explicit", }, }, - ["709508406"] = { - ["1HMace"] = { - ["max"] = 127.5, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 127.5, - ["min"] = 2, + ["1776945532"] = { + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 196, - ["min"] = 3.5, + ["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", }, - ["2HWeapon"] = { - ["max"] = 196, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 127.5, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 196, - ["min"] = 3.5, - }, - ["Flail"] = { - ["max"] = 127.5, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 196, - ["min"] = 3.5, - }, - ["Spear"] = { - ["max"] = 127.5, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 196, - ["min"] = 3.5, - }, - ["specialCaseData"] = { + }, + ["1777421941"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage", + ["id"] = "explicit.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", ["type"] = "explicit", }, }, - ["712554801"] = { + ["1782086450"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["max"] = 15, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_712554801", - ["text"] = "#% increased Effect of your Mark Skills", - ["type"] = "explicit", + ["max"] = 15, + ["min"] = 10, }, - }, - ["715957346"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_715957346", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "explicit", }, }, - ["73032170"] = { + ["179541474"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_73032170", - ["text"] = "Minions have #% increased Skill Speed with Command Skills", + ["id"] = "explicit.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", ["type"] = "explicit", }, }, - ["734614379"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, + ["1797815732"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", + ["id"] = "explicit.stat_1797815732", + ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["736967255"] = { + ["1798257884"] = { ["1HWeapon"] = { ["max"] = 119, ["min"] = 25, }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["AnyJewel"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["BaseJewel"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { + ["Sceptre"] = { ["max"] = 119, ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "explicit", }, }, - ["737908626"] = { - ["1HWeapon"] = { - ["max"] = 73, - ["min"] = 27, + ["1800303440"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 40, + ["tradeMod"] = { + ["id"] = "explicit.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["type"] = "explicit", }, + }, + ["1805182458"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 59, - ["min"] = 27, + ["max"] = 20, + ["min"] = 10, }, - ["Staff"] = { - ["max"] = 109, - ["min"] = 40, + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 73, - ["min"] = 27, + ["tradeMod"] = { + ["id"] = "explicit.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", + ["type"] = "explicit", }, + }, + ["1805633363"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", + ["id"] = "explicit.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", ["type"] = "explicit", }, }, - ["748522257"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 11, + ["1811130680"] = { + ["ManaFlask"] = { + ["max"] = 100, + ["min"] = 61, }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 11, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 11, + ["tradeMod"] = { + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", + ["type"] = "explicit", }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 11, + }, + ["1823942939"] = { + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 11, + ["tradeMod"] = { + ["id"] = "explicit.stat_1823942939", + ["text"] = "# to maximum number of Summoned Ballista Totems", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 11, + ["usePositiveSign"] = true, + }, + ["1829102168"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 11, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_748522257", - ["text"] = "#% increased Stun Duration", + ["id"] = "explicit.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", ["type"] = "explicit", }, }, - ["758893621"] = { + ["1834658952"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_758893621", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["id"] = "explicit.stat_1834658952", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", ["type"] = "explicit", }, }, - ["770672621"] = { - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 21, - }, + ["1836676211"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, - ["Sceptre"] = { - ["max"] = 50, - ["min"] = 21, + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["id"] = "explicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", ["type"] = "explicit", }, }, - ["789117908"] = { - ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 8, - }, - ["2HWeapon"] = { - ["max"] = 104, - ["min"] = 8, - }, - ["Amulet"] = { - ["max"] = 69, - ["min"] = 10, - }, + ["1839076647"] = { ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -11104,3315 +10566,25589 @@ return { ["max"] = 15, ["min"] = 5, }, - ["Focus"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 69, - ["min"] = 8, + ["specialCaseData"] = { }, - ["Sceptre"] = { - ["max"] = 69, - ["min"] = 8, - }, - ["Staff"] = { - ["max"] = 104, - ["min"] = 8, - }, - ["Wand"] = { - ["max"] = 69, - ["min"] = 8, + ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", }, + }, + ["1840985759"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["id"] = "explicit.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", ["type"] = "explicit", }, }, - ["791928121"] = { - ["1HMace"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["2HMace"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Flail"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Quarterstaff"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Spear"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Talisman"] = { - ["max"] = 80, - ["min"] = 21, - }, + ["1846980580"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", + ["id"] = "explicit.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "explicit", }, }, - ["793875384"] = { + ["1852184471"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_793875384", - ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", + ["id"] = "explicit.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", ["type"] = "explicit", }, }, - ["795138349"] = { + ["1852872083"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["id"] = "explicit.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "explicit", }, }, - ["797289402"] = { + ["1854213750"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_797289402", - ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", ["type"] = "explicit", }, }, - ["803737631"] = { - ["Amulet"] = { - ["max"] = 450, - ["min"] = 11, - }, - ["Gloves"] = { - ["max"] = 550, - ["min"] = 11, + ["185580205"] = { + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 550, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_185580205", + ["text"] = "Charms gain # charge per Second", + ["type"] = "explicit", }, - ["Quiver"] = { - ["max"] = 550, - ["min"] = 11, + }, + ["1869147066"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 15, }, - ["Ring"] = { - ["max"] = 450, - ["min"] = 11, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "explicit.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["809229260"] = { - ["Belt"] = { - ["max"] = 351, - ["min"] = 12, - }, + ["1873752457"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", + ["id"] = "explicit.stat_1873752457", + ["text"] = "Gains # Charges per Second", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["818778753"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["1874553720"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 36, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["id"] = "explicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", ["type"] = "explicit", }, }, - ["821021828"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 2, + ["1881230714"] = { + ["Bow"] = { + ["max"] = 25, + ["min"] = 20, }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 2, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 20, }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 2, + ["Dagger"] = { + ["max"] = 25, + ["min"] = 20, }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 2, + ["Flail"] = { + ["max"] = 25, + ["min"] = 20, }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 2, + ["One Hand Axe"] = { + ["max"] = 25, + ["min"] = 20, }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 2, + ["One Hand Mace"] = { + ["max"] = 25, + ["min"] = 20, }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 2, + ["One Hand Sword"] = { + ["max"] = 25, + ["min"] = 20, }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 2, + ["max"] = 25, + ["min"] = 20, }, ["Spear"] = { - ["max"] = 5, - ["min"] = 2, + ["max"] = 25, + ["min"] = 20, }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["specialCaseData"] = { + ["max"] = 25, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", - ["type"] = "explicit", + ["Two Hand Axe"] = { + ["max"] = 25, + ["min"] = 20, }, - }, - ["821241191"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Two Hand Mace"] = { + ["max"] = 25, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Two Hand Sword"] = { + ["max"] = 25, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", + ["id"] = "explicit.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", ["type"] = "explicit", }, }, - ["821948283"] = { + ["1892122971"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_821948283", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + ["id"] = "explicit.stat_1892122971", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", ["type"] = "explicit", }, }, - ["825116955"] = { + ["1896066427"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_825116955", - ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", + ["id"] = "explicit.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", ["type"] = "explicit", }, }, - ["828533480"] = { + ["1911237468"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_828533480", - ["text"] = "#% Chance to gain a Charge when you kill an enemy", + ["id"] = "explicit.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", ["type"] = "explicit", }, }, - ["830161081"] = { + ["1940865751"] = { + ["1HMace"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["1HWeapon"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["2HMace"] = { + ["max"] = 74.5, + ["min"] = 3.5, + }, + ["2HWeapon"] = { + ["max"] = 74.5, + ["min"] = 2.5, + }, + ["Bow"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["Crossbow"] = { + ["max"] = 74.5, + ["min"] = 3.5, + }, + ["Flail"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["Quarterstaff"] = { + ["max"] = 74.5, + ["min"] = 3.5, + }, + ["Spear"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["Talisman"] = { + ["max"] = 74.5, + ["min"] = 3.5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_830161081", - ["text"] = "#% increased Runic Ward", + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", ["type"] = "explicit", }, }, - ["830345042"] = { + ["1944020877"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_830345042", - ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["id"] = "explicit.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", ["type"] = "explicit", }, }, - ["844449513"] = { + ["195270549"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_844449513", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["id"] = "explicit.stat_195270549", + ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", ["type"] = "explicit", }, }, - ["849987426"] = { - ["1HWeapon"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 37, - ["min"] = 2, - }, + ["1967040409"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_849987426", - ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", + ["id"] = "explicit.stat_1967040409", + ["text"] = "Spell Skills have #% increased Area of Effect", ["type"] = "explicit", }, }, - ["868556494"] = { + ["1967051901"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_868556494", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["id"] = "explicit.stat_1967051901", + ["text"] = "Loads an additional bolt", ["type"] = "explicit", }, }, - ["872504239"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["1972391381"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_872504239", - ["text"] = "#% increased Stun Buildup with Maces", + ["id"] = "explicit.stat_1972391381", + ["text"] = "#% increased Explicit Resistance Modifier magnitudes", ["type"] = "explicit", }, }, - ["886931978"] = { - ["LifeFlask"] = { - ["max"] = 100, - ["min"] = 51, + ["1978899297"] = { + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_886931978", - ["text"] = "#% more Recovery if used while on Low Life", + ["id"] = "explicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["915769802"] = { - ["Belt"] = { - ["max"] = 304, - ["min"] = 6, + ["1980802737"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Boots"] = { - ["max"] = 352, - ["min"] = 6, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Chest"] = { - ["max"] = 304, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 304, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "explicit", }, + }, + ["1992191903"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", + ["id"] = "explicit.stat_1992191903", + ["text"] = "# to Level of all Mark Skills", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["918325986"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["1994296038"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_918325986", - ["text"] = "#% increased Skill Speed while Shapeshifted", + ["id"] = "explicit.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "explicit", }, }, - ["9187492"] = { - ["1HMace"] = { - ["max"] = 4, - ["min"] = 1, - }, + ["1998951374"] = { ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, + ["max"] = 16, + ["min"] = 5, }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 2, + ["Sceptre"] = { + ["max"] = 16, + ["min"] = 5, }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 2, + ["specialCaseData"] = { }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "explicit", }, - ["Flail"] = { - ["max"] = 4, - ["min"] = 1, + }, + ["1999113824"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, }, - ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 2, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, }, - ["Spear"] = { - ["max"] = 4, - ["min"] = 1, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 2, + ["Shield"] = { + ["max"] = 110, + ["min"] = 101, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_9187492", - ["text"] = "# to Level of all Melee Skills", + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["924253255"] = { + ["2011656677"] = { ["AnyJewel"] = { - ["max"] = -5, - ["min"] = -10, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = -5, - ["min"] = -10, + ["max"] = 10, + ["min"] = 5, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", ["type"] = "explicit", }, }, - ["933355817"] = { + ["2023107756"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_933355817", - ["text"] = "#% to gain Archon of Undeath when you create an Offering", + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "explicit", }, }, - ["942519401"] = { + ["2039822488"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_942519401", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["id"] = "explicit.stat_2039822488", + ["text"] = "#% to Maximum Quality", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["944643028"] = { + ["2056107438"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_944643028", - ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["id"] = "explicit.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", ["type"] = "explicit", }, }, - ["945774314"] = { + ["2066964205"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_945774314", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["id"] = "explicit.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", ["type"] = "explicit", }, }, - ["953593695"] = { + ["2074866941"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_953593695", - ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", + ["id"] = "explicit.stat_2074866941", + ["text"] = "#% increased Exposure Effect", ["type"] = "explicit", }, }, - ["959641748"] = { - ["ManaFlask"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["2077117738"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_959641748", - ["text"] = "Removes #% of Mana Recovered from Life when used", + ["id"] = "explicit.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", ["type"] = "explicit", }, }, - ["971590056"] = { + ["2081918629"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_971590056", - ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", + ["id"] = "explicit.stat_2081918629", + ["text"] = "#% increased effect of Socketed Augment Items", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["980177976"] = { + ["2083058281"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_980177976", - ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["id"] = "explicit.stat_2083058281", + ["text"] = "Enemies you Mark take #% increased Damage", ["type"] = "explicit", }, }, - ["983749596"] = { - ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, + ["210067635"] = { + ["1HMace"] = { + ["max"] = 28, + ["min"] = 5, }, - ["Body Armour"] = { - ["max"] = 10, - ["min"] = 8, + ["1HWeapon"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 19, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 19, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 28, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", }, }, - ["986397080"] = { - ["Chest"] = { - ["max"] = 60, - ["min"] = 36, - }, + ["2101383955"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", + ["id"] = "explicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", ["type"] = "explicit", }, }, - ["99927264"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, - }, + ["2103650854"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_99927264", - ["text"] = "#% reduced Shock duration on you", + ["id"] = "explicit.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", ["type"] = "explicit", }, }, - }, - ["Implicit"] = { - ["1050105434"] = { - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["2106365538"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "implicit", + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1137147997"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["21071013"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1137147997", - ["text"] = "Unblockable", - ["type"] = "implicit", + ["id"] = "explicit.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", + ["type"] = "explicit", }, }, - ["1207554355"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["2107703111"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["type"] = "explicit", }, + }, + ["2108821127"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1207554355", - ["text"] = "#% increased Arrow Speed", - ["type"] = "implicit", + ["id"] = "explicit.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["type"] = "explicit", }, }, - ["1379411836"] = { - ["Amulet"] = { - ["max"] = 7, + ["2112395885"] = { + ["AnyJewel"] = { + ["max"] = 15, ["min"] = 5, }, - ["Helmet"] = { - ["max"] = 24, - ["min"] = 16, - }, - ["Ring"] = { - ["max"] = 12, - ["min"] = 8, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1379411836", - ["text"] = "# to all Attributes", - ["type"] = "implicit", + ["id"] = "explicit.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1389754388"] = { - ["Belt"] = { + ["2118708619"] = { + ["AnyJewel"] = { ["max"] = 20, - ["min"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", - ["type"] = "implicit", + ["id"] = "explicit.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "explicit", }, }, - ["1412682799"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["2122183138"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1412682799", - ["text"] = "Used when you become Poisoned", - ["type"] = "implicit", + ["id"] = "explicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "explicit", }, }, - ["1416292992"] = { - ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["2131720304"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1416292992", - ["text"] = "Has # Charm Slot", - ["type"] = "implicit", + ["id"] = "explicit.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", }, }, - ["1434716233"] = { - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["2144192055"] = { + ["Ring"] = { + ["max"] = 233, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1434716233", - ["text"] = "Warcries Empower an additional Attack", - ["type"] = "implicit", + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1444556985"] = { - ["Chest"] = { - ["max"] = 14, - ["min"] = 8, - }, + ["2149603090"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "implicit", + ["id"] = "explicit.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["type"] = "explicit", }, }, - ["1451444093"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["2150661403"] = { + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, + ["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", }, + }, + ["2158617060"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1451444093", - ["text"] = "Bifurcates Critical Hits", - ["type"] = "implicit", + ["id"] = "explicit.stat_2158617060", + ["text"] = "#% increased Archon Buff duration", + ["type"] = "explicit", }, }, - ["1458343515"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, + ["2160282525"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 36, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1458343515", - ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", - ["type"] = "implicit", + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "explicit", }, }, - ["1503146834"] = { - ["2HMace"] = { - ["max"] = 1, + ["2162097452"] = { + ["1HWeapon"] = { + ["max"] = 4, ["min"] = 1, }, - ["2HWeapon"] = { - ["max"] = 1, + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Sceptre"] = { + ["max"] = 4, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1503146834", - ["text"] = "Crushes Enemies on Hit", - ["type"] = "implicit", + ["id"] = "explicit.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1541903247"] = { - ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["2174054121"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1541903247", - ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", - ["type"] = "implicit", + ["id"] = "explicit.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", + ["type"] = "explicit", }, }, - ["1570770415"] = { - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["2189073790"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", - ["type"] = "implicit", + ["id"] = "explicit.stat_2189073790", + ["text"] = "Projectiles have #% chance to Fork if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", }, }, - ["1573130764"] = { + ["2194114101"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, ["Quiver"] = { - ["max"] = 4, - ["min"] = 4, + ["max"] = 38, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", - ["type"] = "implicit", + ["id"] = "explicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "explicit", }, }, - ["1589917703"] = { - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["2200293569"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "implicit", + ["id"] = "explicit.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", + ["type"] = "explicit", }, }, - ["1671376347"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["2202308025"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "implicit", + ["id"] = "explicit.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1691862754"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["221701169"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1691862754", - ["text"] = "Used when you become Frozen", - ["type"] = "implicit", + ["id"] = "explicit.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["type"] = "explicit", }, }, - ["1702195217"] = { - ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 12, + ["2222186378"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Quarterstaff"] = { - ["max"] = 18, - ["min"] = 12, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1702195217", - ["text"] = "#% to Block chance", - ["type"] = "implicit", + ["id"] = "explicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1745952865"] = { - ["Chest"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["2223678961"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", - ["type"] = "implicit", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "explicit", }, }, - ["1803308202"] = { + ["2231156303"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 238, + ["min"] = 50, }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 20, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1803308202", - ["text"] = "#% increased Bolt Speed", - ["type"] = "implicit", + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, }, - }, - ["1810482573"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1810482573", - ["text"] = "Used when you become Stunned", - ["type"] = "implicit", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", }, }, - ["1836676211"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "implicit", + ["2250533757"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["1856590738"] = { - ["Ring"] = { - ["max"] = 1, + ["BaseJewel"] = { + ["max"] = 2, ["min"] = 1, }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1856590738", - ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", - ["type"] = "implicit", + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", }, }, - ["1967051901"] = { + ["2250681686"] = { ["2HWeapon"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["Crossbow"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1967051901", - ["text"] = "Loads an additional bolt", - ["type"] = "implicit", + ["id"] = "explicit.stat_2250681686", + ["text"] = "Grenade Skills have +# Cooldown Use", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1978899297"] = { - ["Chest"] = { - ["max"] = 1, + ["2254480358"] = { + ["1HWeapon"] = { + ["max"] = 5, ["min"] = 1, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["1980802737"] = { ["2HWeapon"] = { - ["max"] = 1, + ["max"] = 7, ["min"] = 1, }, - ["Crossbow"] = { - ["max"] = 1, + ["Staff"] = { + ["max"] = 7, ["min"] = 1, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1980802737", - ["text"] = "Grenade Skills Fire an additional Projectile", - ["type"] = "implicit", - }, - }, - ["2016937536"] = { - ["Charm"] = { - ["max"] = 1, + ["Wand"] = { + ["max"] = 5, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2016937536", - ["text"] = "Used when you take Lightning damage from a Hit", - ["type"] = "implicit", + ["id"] = "explicit.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["2055966527"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["2256120736"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2055966527", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "implicit", + ["id"] = "explicit.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["type"] = "explicit", }, }, - ["2194114101"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["2272980012"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", - ["type"] = "implicit", + ["id"] = "explicit.stat_2272980012", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["type"] = "explicit", }, }, - ["2222186378"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, + ["2301718443"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", - ["type"] = "implicit", + ["id"] = "explicit.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "explicit", }, }, - ["2250533757"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["2319832234"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "implicit", + ["id"] = "explicit.stat_2319832234", + ["text"] = "#% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["type"] = "explicit", }, }, - ["2251279027"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["2320654813"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2251279027", - ["text"] = "# to Level of all Corrupted Skill Gems", - ["type"] = "implicit", + ["id"] = "explicit.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, ["2321178454"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 20, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["Quiver"] = { - ["max"] = 100, - ["min"] = 100, + ["max"] = 26, + ["min"] = 12, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2321178454", + ["id"] = "explicit.stat_2321178454", ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "implicit", + ["type"] = "explicit", }, }, - ["239367161"] = { - ["Quiver"] = { - ["max"] = 40, - ["min"] = 25, - }, + ["2334956771"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", - ["type"] = "implicit", + ["id"] = "explicit.stat_2334956771", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "explicit", }, }, - ["2463230181"] = { - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["2339757871"] = { + ["Boots"] = { + ["max"] = 19, + ["min"] = 16, }, - ["Bow"] = { - ["max"] = 50, - ["min"] = 50, + ["Chest"] = { + ["max"] = 27, + ["min"] = 16, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 27, + ["min"] = 16, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", - ["type"] = "implicit", + ["Gloves"] = { + ["max"] = 19, + ["min"] = 16, }, - ["usePositiveSign"] = true, - }, - ["2527686725"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["Helmet"] = { + ["max"] = 19, + ["min"] = 16, }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 20, + ["Shield"] = { + ["max"] = 27, + ["min"] = 16, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", - ["type"] = "implicit", + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", }, }, - ["2646093132"] = { - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, + ["234296660"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2646093132", - ["text"] = "Inflict Abyssal Wasting on Hit", - ["type"] = "implicit", + ["id"] = "explicit.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "explicit", }, }, - ["2694482655"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["2347036682"] = { ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 30.5, + ["min"] = 2, + }, + ["Sceptre"] = { + ["max"] = 30.5, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "implicit", + ["id"] = "explicit.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["2733960806"] = { - ["Belt"] = { - ["max"] = 1, - ["min"] = 1, + ["2353576063"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2733960806", - ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", - ["type"] = "implicit", + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "explicit", }, }, - ["2778646494"] = { + ["2359002191"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["2365392475"] = { ["Charm"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 350, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2778646494", - ["text"] = "Used when you are affected by a Slow", - ["type"] = "implicit", + ["id"] = "explicit.stat_2365392475", + ["text"] = "Recover # Life when Used", + ["type"] = "explicit", }, }, - ["2797971005"] = { - ["Quiver"] = { - ["max"] = 3, - ["min"] = 2, + ["2374711847"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["type"] = "explicit", }, + }, + ["2392260628"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "implicit", + ["id"] = "explicit.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", + ["type"] = "explicit", }, }, - ["2891184298"] = { - ["Ring"] = { - ["max"] = 10, - ["min"] = 7, + ["2392824305"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "implicit", + ["id"] = "explicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "explicit", }, }, - ["2901986750"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, + ["2416869319"] = { + ["LifeFlask"] = { + ["max"] = 80, + ["min"] = 51, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", + ["type"] = "explicit", + }, + }, + ["2421151933"] = { + ["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", + }, + }, + ["2440073079"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", + ["type"] = "explicit", }, + }, + ["2442527254"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["2451402625"] = { ["Boots"] = { - ["max"] = 16, - ["min"] = 8, + ["max"] = 100, + ["min"] = 6, }, ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 110, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, }, ["Helmet"] = { - ["max"] = 16, - ["min"] = 8, + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["2456523742"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", + ["type"] = "explicit", + }, + }, + ["2463230181"] = { + ["2HWeapon"] = { + ["max"] = 200, + ["min"] = 25, + }, + ["Bow"] = { + ["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, + }, + ["2466785537"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["2480498143"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + }, + ["2481353198"] = { + ["Shield"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "explicit", + }, + }, + ["2482852589"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["2487305362"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", + ["type"] = "explicit", + }, + }, + ["2503377690"] = { + ["LifeFlask"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["ManaFlask"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", + ["type"] = "explicit", + }, + }, + ["2505884597"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + }, + ["2518900926"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", + ["type"] = "explicit", + }, + }, + ["2523933828"] = { + ["AnyJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2523933828", + ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "explicit", + }, + }, + ["2527686725"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "explicit", + }, + }, + ["2534359663"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["253641217"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["type"] = "explicit", + }, + }, + ["2541588185"] = { + ["Charm"] = { + ["max"] = 40, + ["min"] = 16, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2541588185", + ["text"] = "#% increased Duration (Charm)", + ["type"] = "explicit", + }, + }, + ["2557965901"] = { + ["Gloves"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 7.9, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "explicit", + }, + }, + ["255840549"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["2580617872"] = { + ["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, + }, + ["2582079000"] = { + ["specialCaseData"] = { + ["overrideModLinePlural"] = "+# Charm Slots", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2582079000", + ["text"] = "# Charm Slot", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["2594634307"] = { + ["AnyJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["2610562860"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["2637470878"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", + ["type"] = "explicit", + }, + }, + ["2638756573"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["2653231923"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2653231923", + ["text"] = "#% increased Mana Cost Efficiency of Spells", + ["type"] = "explicit", + }, + }, + ["2653955271"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + }, + ["266564538"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["2675129731"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2675129731", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, + ["2676834156"] = { + ["Charm"] = { + ["max"] = 500, + ["min"] = 44, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2676834156", + ["text"] = "Also grants # Guard", + ["type"] = "explicit", + }, + }, + ["2690740379"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Talisman"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["2704905000"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "explicit", + }, + }, + ["2709646369"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["2720982137"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["2726713579"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["2HWeapon"] = { + ["max"] = 59, + ["min"] = 15, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 34, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 59, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 39, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", + ["type"] = "explicit", + }, + }, + ["2748665614"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["2768835289"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", + ["type"] = "explicit", + }, + }, + ["2768899959"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["2770044702"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["type"] = "explicit", + }, + }, + ["2797971005"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["280731498"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["2809428780"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["type"] = "explicit", + }, + }, + ["2822644689"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["2839066308"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", + ["type"] = "explicit", + }, + }, + ["2840989393"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "explicit", + }, + }, + ["2849546516"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["Sceptre"] = { + ["max"] = 37.5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "explicit", + }, + }, + ["2866361420"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, + ["2881298780"] = { + ["Belt"] = { + ["max"] = 185.5, + ["min"] = 2, + }, + ["Chest"] = { + ["max"] = 185.5, + ["min"] = 2, + }, + ["Shield"] = { + ["max"] = 185.5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", + ["type"] = "explicit", + }, + }, + ["288364275"] = { + ["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", + }, + }, + ["2891184298"] = { + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 9, + }, + ["2HWeapon"] = { + ["max"] = 52, + ["min"] = 14, + }, + ["Amulet"] = { + ["max"] = 28, + ["min"] = 9, + }, + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Focus"] = { + ["max"] = 32, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 24, + ["min"] = 9, + }, + ["Staff"] = { + ["max"] = 52, + ["min"] = 14, + }, + ["Wand"] = { + ["max"] = 35, + ["min"] = 9, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["289128254"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["2901986750"] = { + ["Amulet"] = { + ["max"] = 18, + ["min"] = 3, + }, + ["Ring"] = { + ["max"] = 16, + ["min"] = 3, + }, + ["Shield"] = { + ["max"] = 18, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["2907381231"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["type"] = "explicit", + }, + }, + ["2912416697"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["type"] = "explicit", + }, + }, + ["2923486259"] = { + ["Amulet"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Belt"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Boots"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Chest"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Focus"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Gloves"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Helmet"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Shield"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["293638271"] = { + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["Wand"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["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", + }, + }, + ["2954360902"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["2957407601"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", + ["type"] = "explicit", + }, + }, + ["2968503605"] = { + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["Wand"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "explicit", + }, + }, + ["2969557004"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["2974417149"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 30, + }, + ["Amulet"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["2976476845"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["type"] = "explicit", + }, + }, + ["3003542304"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "explicit", + }, + }, + ["300723956"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_300723956", + ["text"] = "Attack Hits apply Incision", + ["type"] = "explicit", + }, + }, + ["3015669065"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + }, + ["3028809864"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["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", + }, + }, + ["3032590688"] = { + ["Gloves"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["Quiver"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["3033371881"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 26, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 23, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 23, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 26, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["type"] = "explicit", + }, + }, + ["3035140377"] = { + ["Bow"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["Dagger"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Flail"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["One Hand Axe"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["One Hand Mace"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["One Hand Sword"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["Spear"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["Two Hand Axe"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["Two Hand Mace"] = { + ["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, + }, + ["3037553757"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, + ["30438393"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["Sceptre"] = { + ["max"] = 39, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "explicit", + }, + }, + ["3065378291"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["3088348485"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["type"] = "explicit", + }, + }, + ["3091578504"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3106718406"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3113764475"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["3119612865"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3121133045"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3121133045", + ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", + ["type"] = "explicit", + }, + }, + ["3141070085"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", + }, + }, + ["3143918757"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3143918757", + ["text"] = "#% increased Glory generation", + ["type"] = "explicit", + }, + }, + ["3146310524"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3146310524", + ["text"] = "Dazes on Hit", + ["type"] = "explicit", + }, + }, + ["315791320"] = { + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "explicit", + }, + }, + ["3166958180"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["3171212276"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["3173882956"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", + ["type"] = "explicit", + }, + }, + ["3175163625"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "explicit", + }, + }, + ["318092306"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_318092306", + ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", + ["type"] = "explicit", + }, + }, + ["318953428"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3192728503"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", + ["type"] = "explicit", + }, + }, + ["3196823591"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charges gained", + ["type"] = "explicit", + }, + }, + ["3222402650"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3233599707"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3243034867"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["325171970"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_325171970", + ["text"] = "#% increased Attack Speed while missing Runic Ward", + ["type"] = "explicit", + }, + }, + ["3256879910"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, + ["3261801346"] = { + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 36, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Quiver"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["3276224428"] = { + ["ManaFlask"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3276224428", + ["text"] = "#% more Recovery if used while on Low Mana", + ["type"] = "explicit", + }, + }, + ["3278136794"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + }, + ["3283482523"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", + ["type"] = "explicit", + }, + }, + ["328541901"] = { + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 36, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["3291658075"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["3292710273"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", + }, + }, + ["3299347043"] = { + ["Amulet"] = { + ["max"] = 149, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 174, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 149, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 214, + ["min"] = 7, + }, + ["Gloves"] = { + ["max"] = 149, + ["min"] = 7, + }, + ["Helmet"] = { + ["max"] = 174, + ["min"] = 7, + }, + ["Ring"] = { + ["max"] = 119, + ["min"] = 10, + }, + ["Shield"] = { + ["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", + }, + }, + ["3321629045"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "explicit", + }, + }, + ["3325883026"] = { + ["Amulet"] = { + ["max"] = 33, + ["min"] = 1, + }, + ["Belt"] = { + ["max"] = 29, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 23, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 36, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 23, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 18, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["3336890334"] = { + ["1HMace"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["1HWeapon"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["2HMace"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 188.5, + ["min"] = 2.5, + }, + ["Bow"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["Crossbow"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["Quarterstaff"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["Talisman"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3362812763"] = { + ["Boots"] = { + ["max"] = 43, + ["min"] = 14, + }, + ["Chest"] = { + ["max"] = 50, + ["min"] = 14, + }, + ["Gloves"] = { + ["max"] = 43, + ["min"] = 14, + }, + ["Helmet"] = { + ["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, + }, + ["3372524247"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["3374165039"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + }, + }, + ["3377888098"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3386297724"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + }, + ["3391917254"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["3394832998"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + }, + ["3395186672"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3399401168"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3399401168", + ["text"] = "#% to Fire Spell Critical Hit Chance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["3401186585"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3409275777"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["type"] = "explicit", + }, + }, + ["3417711605"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + }, + ["3419203492"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3429148113"] = { + ["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", + }, + }, + ["3465022881"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3473929743"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3484657501"] = { + ["Boots"] = { + ["max"] = 190, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 310, + ["min"] = 3, + }, + ["Gloves"] = { + ["max"] = 190, + ["min"] = 9, + }, + ["Helmet"] = { + ["max"] = 221, + ["min"] = 9, + }, + ["Shield"] = { + ["max"] = 277, + ["min"] = 9, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["3485067555"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["3513818125"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3523867985"] = { + ["Boots"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3544800472"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["3556824919"] = { + ["Amulet"] = { + ["max"] = 39, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 34, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["3579898587"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3590792340"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["3596695232"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["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", + }, + }, + ["3621874554"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3628935286"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["1HWeapon"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["2HMace"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["2HWeapon"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Boots"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Bow"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Chest"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Crossbow"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Flail"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Focus"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Gloves"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Helmet"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Quarterstaff"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Sceptre"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Shield"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Spear"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Staff"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Talisman"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Wand"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "explicit", + }, + }, + ["3641543553"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["3665922113"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["3666476747"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration", + ["type"] = "explicit", + }, + }, + ["3669820740"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["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, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["3695891184"] = { + ["1HMace"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Crossbow"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Gloves"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Quarterstaff"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Quiver"] = { + ["max"] = 53, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 53, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Talisman"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "explicit", + }, + }, + ["3700202631"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 39, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["type"] = "explicit", + }, + }, + ["3741323227"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3749502527"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3749502527", + ["text"] = "#% chance to gain Volatility on Kill", + ["type"] = "explicit", + }, + }, + ["3752589831"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["Quiver"] = { + ["max"] = 46, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, + ["3759735052"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "explicit", + }, + }, + ["3771516363"] = { + ["Shield"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, + ["3774951878"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "explicit", + }, + }, + ["3787460122"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", + ["type"] = "explicit", + }, + }, + ["378796798"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["3791899485"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "explicit", + }, + }, + ["3811191316"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3821543413"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["type"] = "explicit", + }, + }, + ["3824372849"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "explicit", + }, + }, + ["3835551335"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "explicit", + }, + }, + ["3837707023"] = { + ["AnyJewel"] = { + ["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, + }, + ["3850614073"] = { + ["1HWeapon"] = { + ["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, + }, + ["3851254963"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + }, + ["3855016469"] = { + ["Body Armour"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["Shield"] = { + ["max"] = 54, + ["min"] = 21, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["3856744003"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["type"] = "explicit", + }, + }, + ["3858398337"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3859848445"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["type"] = "explicit", + }, + }, + ["3865605585"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["387439868"] = { + ["1HMace"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["2HMace"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["2HWeapon"] = { + ["max"] = 139, + ["min"] = 19, + }, + ["Bow"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["Crossbow"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["Flail"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["Quarterstaff"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["Spear"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["Talisman"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "explicit", + }, + }, + ["3885405204"] = { + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "explicit", + }, + }, + ["388617051"] = { + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "explicit", + }, + }, + ["3891355829"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3891355829|1", + ["text"] = "Upgrades Radius to Medium", + ["type"] = "explicit", + }, + }, + ["391602279"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["Boots"] = { + ["max"] = 18, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 18, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 19, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 19, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + }, + ["3936121440"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["type"] = "explicit", + }, + }, + ["394473632"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["type"] = "explicit", + }, + }, + ["3962278098"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["3973629633"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "explicit", + }, + }, + ["3981240776"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Chest"] = { + ["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", + }, + }, + ["3984865854"] = { + ["1HWeapon"] = { + ["max"] = 65, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 65, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "explicit", + }, + }, + ["4009879772"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["4010677958"] = { + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 1, + }, + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "explicit", + }, + }, + ["4015621042"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 101, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "explicit", + }, + }, + ["4019237939"] = { + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["type"] = "explicit", + }, + }, + ["4032352472"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", + ["type"] = "explicit", + }, + }, + ["4052037485"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 96, + ["min"] = 2, + }, + ["Focus"] = { + ["max"] = 90, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 60, + ["min"] = 5, + }, + ["Helmet"] = { + ["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, + }, + ["4067062424"] = { + ["Gloves"] = { + ["max"] = 30.5, + ["min"] = 1.5, + }, + ["Quiver"] = { + ["max"] = 30.5, + ["min"] = 1.5, + }, + ["Ring"] = { + ["max"] = 30.5, + ["min"] = 1.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", + ["type"] = "explicit", + }, + }, + ["4080418644"] = { + ["1HMace"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 36, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["4081947835"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "explicit", + }, + }, + ["4089835882"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["type"] = "explicit", + }, + }, + ["4092130601"] = { + ["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", + }, + }, + ["4095671657"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["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, + }, + ["4101445926"] = { + ["Focus"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Staff"] = { + ["max"] = 32, + ["min"] = 28, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", + ["type"] = "explicit", + }, + }, + ["412709880"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "explicit", + }, + }, + ["4139681126"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "explicit", + }, + }, + ["4142814612"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["4147897060"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4147897060", + ["text"] = "#% increased Block chance", + ["type"] = "explicit", + }, + }, + ["4159248054"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["416040624"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["4162678661"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["4173554949"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["type"] = "explicit", + }, + }, + ["4180952808"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["4220027924"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Shield"] = { + ["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", + }, + }, + ["4226189338"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["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, + }, + ["4234573345"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["type"] = "explicit", + }, + }, + ["4236566306"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["4258000627"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["4258720395"] = { + ["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", + }, + }, + ["4259875040"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["427684353"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", + ["type"] = "explicit", + }, + }, + ["429143663"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["440490623"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "explicit", + }, + }, + ["442393998"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["type"] = "explicit", + }, + }, + ["44972811"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "explicit", + }, + }, + ["455816363"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["type"] = "explicit", + }, + }, + ["458438597"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + }, + ["462424929"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "explicit", + }, + }, + ["473429811"] = { + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 31, + }, + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 31, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 80, + ["min"] = 31, + }, + ["Wand"] = { + ["max"] = 80, + ["min"] = 31, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "explicit", + }, + }, + ["473917671"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["484792219"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["type"] = "explicit", + }, + }, + ["491450213"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, + ["504915064"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["type"] = "explicit", + }, + }, + ["517664839"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Spear"] = { + ["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, + }, + ["51994685"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "explicit", + }, + }, + ["525523040"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["Chest"] = { + ["max"] = 300, + ["min"] = 2, + }, + ["Gloves"] = { + ["max"] = 176, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 207, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 261, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["533892981"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["538241406"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["54812069"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["555706343"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_555706343", + ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + }, + ["55876295"] = { + ["1HMace"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["Crossbow"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["Flail"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["Quarterstaff"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["Spear"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["Talisman"] = { + ["max"] = 9.9, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "explicit", + }, + }, + ["565784293"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_565784293", + ["text"] = "#% increased Knockback Distance", + ["type"] = "explicit", + }, + }, + ["587431675"] = { + ["Amulet"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 34, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["591105508"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["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, + }, + ["593241812"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["61644361"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["627767961"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["644456512"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "explicit", + }, + }, + ["648019518"] = { + ["LifeFlask"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", + ["type"] = "explicit", + }, + }, + ["654207792"] = { + ["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", + }, + }, + ["656461285"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "explicit", + }, + }, + ["669069897"] = { + ["1HMace"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["680068163"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "explicit", + }, + }, + ["681332047"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Gloves"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["Quiver"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["686254215"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "explicit", + }, + }, + ["691932474"] = { + ["1HMace"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 650, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 650, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 650, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["Talisman"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["693237939"] = { + ["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", + }, + }, + ["700317374"] = { + ["LifeFlask"] = { + ["max"] = 80, + ["min"] = -50, + }, + ["ManaFlask"] = { + ["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, + }, + ["Ring"] = { + ["max"] = 6.9, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "explicit", + }, + }, + ["709508406"] = { + ["1HMace"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 196, + ["min"] = 3.5, + }, + ["2HWeapon"] = { + ["max"] = 196, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 196, + ["min"] = 3.5, + }, + ["Flail"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 196, + ["min"] = 3.5, + }, + ["Spear"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 196, + ["min"] = 3.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "explicit", + }, + }, + ["712554801"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", + ["type"] = "explicit", + }, + }, + ["715957346"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["type"] = "explicit", + }, + }, + ["73032170"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_73032170", + ["text"] = "Minions have #% increased Skill Speed with Command Skills", + ["type"] = "explicit", + }, + }, + ["734614379"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "explicit", + }, + }, + ["736967255"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["AnyJewel"] = { + ["max"] = 13, + ["min"] = 7, + }, + ["BaseJewel"] = { + ["max"] = 13, + ["min"] = 7, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["737908626"] = { + ["1HWeapon"] = { + ["max"] = 73, + ["min"] = 27, + }, + ["2HWeapon"] = { + ["max"] = 109, + ["min"] = 40, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 59, + ["min"] = 27, + }, + ["Staff"] = { + ["max"] = 109, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 73, + ["min"] = 27, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "explicit", + }, + }, + ["748522257"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["770672621"] = { + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 21, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 50, + ["min"] = 21, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["789117908"] = { + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 104, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 69, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 69, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 69, + ["min"] = 8, + }, + ["Sceptre"] = { + ["max"] = 69, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 104, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 69, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, + ["791928121"] = { + ["1HMace"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["2HMace"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Flail"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Quarterstaff"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Spear"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Talisman"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["795138349"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["803737631"] = { + ["Amulet"] = { + ["max"] = 450, + ["min"] = 11, + }, + ["Gloves"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["Helmet"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["Ring"] = { + ["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, + }, + ["818778753"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["821021828"] = { + ["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, + }, + ["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"] = "explicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "explicit", + }, + }, + ["821241191"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "explicit", + }, + }, + ["821948283"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["828533480"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["830345042"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["type"] = "explicit", + }, + }, + ["844449513"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["849987426"] = { + ["1HWeapon"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["Sceptre"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", + ["type"] = "explicit", + }, + }, + ["868556494"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["872504239"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", + ["type"] = "explicit", + }, + }, + ["886931978"] = { + ["LifeFlask"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", + ["type"] = "explicit", + }, + }, + ["915769802"] = { + ["Belt"] = { + ["max"] = 304, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 352, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 304, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 304, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["918325986"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", + ["type"] = "explicit", + }, + }, + ["9187492"] = { + ["1HMace"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Spear"] = { + ["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, + }, + ["924253255"] = { + ["AnyJewel"] = { + ["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", + }, + }, + ["933355817"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_933355817", + ["text"] = "#% to gain Archon of Undeath when you create an Offering", + ["type"] = "explicit", + }, + }, + ["942519401"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["944643028"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["type"] = "explicit", + }, + }, + ["945774314"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["959641748"] = { + ["ManaFlask"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["980177976"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["Body Armour"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["986397080"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + }, + ["Implicit"] = { + ["1050105434"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["1137147997"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1137147997", + ["text"] = "Unblockable", + ["type"] = "implicit", + }, + }, + ["1207554355"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1207554355", + ["text"] = "#% increased Arrow Speed", + ["type"] = "implicit", + }, + }, + ["1379411836"] = { + ["Amulet"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["1389754388"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1416292992", + ["text"] = "Has # Charm Slot", + ["type"] = "implicit", + }, + }, + ["1434716233"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", + ["type"] = "implicit", + }, + }, + ["1444556985"] = { + ["Chest"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + ["1451444093"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1451444093", + ["text"] = "Bifurcates Critical Hits", + ["type"] = "implicit", + }, + }, + ["1458343515"] = { + ["Amulet"] = { + ["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", + }, + }, + ["1503146834"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1503146834", + ["text"] = "Crushes Enemies on Hit", + ["type"] = "implicit", + }, + }, + ["1541903247"] = { + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["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", + }, + }, + ["1570770415"] = { + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "implicit", + }, + }, + ["1573130764"] = { + ["Quiver"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "implicit", + }, + }, + ["1589917703"] = { + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["1671376347"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["1691862754"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1691862754", + ["text"] = "Used when you become Frozen", + ["type"] = "implicit", + }, + }, + ["1702195217"] = { + ["2HWeapon"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Quarterstaff"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["1745952865"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "implicit", + }, + }, + ["1803308202"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1803308202", + ["text"] = "#% increased Bolt Speed", + ["type"] = "implicit", + }, + }, + ["1810482573"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1810482573", + ["text"] = "Used when you become Stunned", + ["type"] = "implicit", + }, + }, + ["1836676211"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "implicit", + }, + }, + ["1856590738"] = { + ["Ring"] = { + ["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", + }, + }, + ["1967051901"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["1980802737"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "implicit", + }, + }, + ["2016937536"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2016937536", + ["text"] = "Used when you take Lightning damage from a Hit", + ["type"] = "implicit", + }, + }, + ["2055966527"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2055966527", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + }, + ["2194114101"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "implicit", + }, + }, + ["2222186378"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "implicit", + }, + }, + ["2250533757"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["2321178454"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Quiver"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "implicit", + }, + }, + ["239367161"] = { + ["Quiver"] = { + ["max"] = 40, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "implicit", + }, + }, + ["2463230181"] = { + ["2HWeapon"] = { + ["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, + }, + ["2527686725"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "implicit", + }, + }, + ["2646093132"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["2733960806"] = { + ["Belt"] = { + ["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", + }, + }, + ["2778646494"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2778646494", + ["text"] = "Used when you are affected by a Slow", + ["type"] = "implicit", + }, + }, + ["2797971005"] = { + ["Quiver"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["2891184298"] = { + ["Ring"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + }, + ["2901986750"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["Boots"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Ring"] = { + ["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, + }, + ["Ring"] = { + ["max"] = 13, + ["min"] = 7, + }, + ["Shield"] = { + ["max"] = 19, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["2933846633"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2933846633", + ["text"] = "Dazes on Hit", + ["type"] = "implicit", + }, + }, + ["2968503605"] = { + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 50, + }, + ["Talisman"] = { + ["max"] = 80, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "implicit", + }, + }, + ["2994271459"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2994271459", + ["text"] = "Used when you take Cold damage from a Hit", + ["type"] = "implicit", + }, + }, + ["3032590688"] = { + ["Quiver"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 2.5, + ["min"] = 2.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", + }, + }, + ["3182714256"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = -2, + }, + ["Ring"] = { + ["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, + }, + ["328541901"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["3299347043"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["Chest"] = { + ["max"] = 80, + ["min"] = 60, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["3310778564"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3310778564", + ["text"] = "Used when you take Chaos damage from a Hit", + ["type"] = "implicit", + }, + }, + ["3325883026"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "implicit", + }, + }, + ["3362812763"] = { + ["Chest"] = { + ["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, + }, + ["3398402065"] = { + ["2HWeapon"] = { + ["max"] = -50, + ["min"] = -50, + }, + ["Bow"] = { + ["max"] = -50, + ["min"] = -50, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3398402065", + ["text"] = "#% increased Projectile Range", + ["type"] = "implicit", + }, + }, + ["3544800472"] = { + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "implicit", + }, + }, + ["3585532255"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "implicit", + }, + }, + ["3675300253"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3675300253", + ["text"] = "Strikes deal Splash Damage", + ["type"] = "implicit", + }, + }, + ["3676540188"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3676540188", + ["text"] = "Used when you start Bleeding", + ["type"] = "implicit", + }, + }, + ["3699444296"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3699444296", + ["text"] = "Used when you become Shocked", + ["type"] = "implicit", + }, + }, + ["3854901951"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3854901951", + ["text"] = "Used when you take Fire damage from a Hit", + ["type"] = "implicit", + }, + }, + ["3855016469"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "implicit", + }, + }, + ["3917489142"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 12, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", + }, + }, + ["3954735777"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3954735777", + ["text"] = "#% chance to Poison on Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["3981240776"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["4010341289"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4010341289", + ["text"] = "Used when you kill a Rare or Unique enemy", + ["type"] = "implicit", + }, + }, + ["4077843608"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4077843608", + ["text"] = "Has 1 Socket", + ["type"] = "implicit", + }, + }, + ["4080418644"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["4126210832"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["458438597"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + }, + ["462041840"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_462041840", + ["text"] = "#% of Flask Recovery applied Instantly", + ["type"] = "implicit", + }, + }, + ["548198834"] = { + ["2HWeapon"] = { + ["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", + }, + }, + ["585126960"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_585126960", + ["text"] = "Used when you become Ignited", + ["type"] = "implicit", + }, + }, + ["624954515"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "implicit", + }, + }, + ["644456512"] = { + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "implicit", + }, + }, + ["680068163"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "implicit", + }, + }, + ["681332047"] = { + ["Quiver"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", + }, + }, + ["718638445"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = -2, + }, + ["Ring"] = { + ["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, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_731781020", + ["text"] = "Flasks gain # charges per Second", + ["type"] = "implicit", + }, + }, + ["789117908"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + }, + ["791928121"] = { + ["2HMace"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["821241191"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "implicit", + }, + }, + ["836936635"] = { + ["Chest"] = { + ["max"] = 2.5, + ["min"] = 1.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["958696139"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_958696139", + ["text"] = "Grants 1 additional Skill Slot", + ["type"] = "implicit", + }, + }, + }, + ["Rune"] = { + ["1004011302"] = { + ["Focus"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, +======= + }, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["tradeMod"] = { + ["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"] = { +<<<<<<< HEAD + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = -40, + }, + ["invertOnNegative"] = true, +======= +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "enchant", + }, + }, + ["1037193709"] = { + ["1HMace"] = { +<<<<<<< HEAD + ["max"] = 18, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["Claw"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["Crossbow"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["Quarterstaff"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["Talisman"] = { + ["max"] = 18, + ["min"] = 4, + }, +======= + ["max"] = 15.5, + ["min"] = 10.5, + }, + ["1HWeapon"] = { + ["max"] = 15.5, + ["min"] = 10.5, + }, + ["2HMace"] = { + ["max"] = 21.5, + ["min"] = 14.5, + }, + ["2HWeapon"] = { + ["max"] = 21.5, + ["min"] = 10.5, + }, + ["Bow"] = { + ["max"] = 15.5, + ["min"] = 10.5, + }, + ["Crossbow"] = { + ["max"] = 21.5, + ["min"] = 14.5, + }, + ["Flail"] = { + ["max"] = 15.5, + ["min"] = 10.5, + }, + ["Quarterstaff"] = { + ["max"] = 21.5, + ["min"] = 14.5, + }, + ["Spear"] = { + ["max"] = 15.5, + ["min"] = 10.5, + }, + ["Talisman"] = { + ["max"] = 21.5, + ["min"] = 14.5, + }, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "enchant", + }, + }, + ["1050105434"] = { +<<<<<<< HEAD + ["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, + }, + ["Quarterstaff"] = { + ["max"] = 90, + ["min"] = 45, + }, + ["Shield"] = { + ["max"] = 50, + ["min"] = 20, + }, +======= + ["Focus"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Quiver"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 20, + }, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["1062208444"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Shield"] = { + ["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"] = "enchant.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", + ["type"] = "enchant", + }, + }, + ["124859000"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["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"] = 50, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "enchant", + }, + }, + ["1316278494"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "enchant", + }, + }, + ["1368271171"] = { +<<<<<<< HEAD + ["1HMace"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Talisman"] = { + ["max"] = 40, +======= + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 15, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["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, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "enchant", + }, + }, + ["1509134228"] = { + ["1HMace"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Talisman"] = { + ["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"] = "enchant.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "enchant", + }, + }, +<<<<<<< HEAD + ["1671376347"] = { + ["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, +======= + ["1545858329"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["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"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, +<<<<<<< HEAD + ["1798257884"] = { + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, +======= + ["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"] = { + ["Focus"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "enchant", + }, + }, + ["1798257884"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Sceptre"] = { + ["max"] = 30, + ["min"] = 20, + }, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "enchant", + }, + }, + ["185580205"] = { +<<<<<<< HEAD + ["Helmet"] = { +======= + ["Amulet"] = { + ["max"] = 0.17, + ["min"] = 0.08, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_185580205", + ["text"] = "Charms gain # charges per Second", + ["type"] = "enchant", + }, + }, + ["1967051901"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { +<<<<<<< HEAD + ["id"] = "enchant.stat_185580205", + ["text"] = "Charms gain # charge per Second", +======= + ["id"] = "enchant.stat_1967051901", + ["text"] = "Loads an additional bolt", +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["type"] = "enchant", + }, + }, + ["1978899297"] = { +<<<<<<< HEAD + ["Chest"] = { + ["max"] = -10, + ["min"] = -10, +======= + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "enchant", + }, +<<<<<<< HEAD +======= + ["usePositiveSign"] = true, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["1998951374"] = { + ["1HWeapon"] = { + ["max"] = 10, +<<<<<<< HEAD + ["min"] = 10, +======= + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 10, + ["min"] = 5, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "enchant", + }, + }, + ["1999113824"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "enchant", + }, + }, + ["210067635"] = { + ["1HMace"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["2HWeapon"] = { +<<<<<<< HEAD + ["max"] = 50, + ["min"] = 5, + }, +======= + ["max"] = 8, + ["min"] = 6, + }, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["Bow"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["Crossbow"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["Flail"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["Quarterstaff"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["Spear"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["Talisman"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "enchant", + }, + }, + ["2106365538"] = { + ["Belt"] = { + ["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"] = "enchant.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "enchant", + }, + }, + ["2162097452"] = { + ["Helmet"] = { + ["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, + }, + ["1HWeapon"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["2HMace"] = { + ["max"] = 20.5, + ["min"] = 13.5, + }, + ["2HWeapon"] = { + ["max"] = 20.5, + ["min"] = 9.5, + }, + ["Bow"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["Crossbow"] = { + ["max"] = 20.5, + ["min"] = 13.5, + }, + ["Flail"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["Quarterstaff"] = { + ["max"] = 20.5, + ["min"] = 13.5, + }, + ["Spear"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["Talisman"] = { + ["max"] = 20.5, + ["min"] = 13.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "enchant", + }, + }, + ["2250533757"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "enchant", + }, + }, +<<<<<<< HEAD + ["227523295"] = { +======= + ["2254480358"] = { +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, +<<<<<<< HEAD +======= + ["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, + }, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_227523295", + ["text"] = "# to Maximum Power Charges", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, +<<<<<<< HEAD + ["2353576063"] = { + ["Gloves"] = { + ["max"] = 8, + ["min"] = 8, +======= + ["2301191210"] = { + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 5, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["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"] = "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, + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["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"] = 15, +<<<<<<< HEAD + ["min"] = 15, +======= + ["min"] = 10, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "enchant", + }, + }, + ["2482852589"] = { + ["Belt"] = { + ["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, + }, +<<<<<<< HEAD + ["280731498"] = { + ["Helmet"] = { +======= + ["2763429652"] = { + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Crossbow"] = { +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "enchant", + }, + }, + ["280731498"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "enchant", + }, + }, + ["2866361420"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "enchant", + }, + }, + ["2891184298"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "enchant", + }, + }, + ["289128254"] = { + ["1HWeapon"] = { + ["max"] = 10, +<<<<<<< HEAD + ["min"] = 10, +======= + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 10, + ["min"] = 5, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "enchant", + }, + }, + ["2901986750"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 5, + }, +<<<<<<< HEAD + ["Chest"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 5, +======= + ["Ring"] = { + ["max"] = 10, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["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, + }, +<<<<<<< HEAD + ["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"] = "enchant.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "enchant", + }, + }, + ["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"] = "enchant.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "enchant", + }, + }, + ["2974417149"] = { + ["1HWeapon"] = { + ["max"] = 35, +======= + ["Staff"] = { + ["max"] = 30, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 35, + ["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, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "enchant", + }, + }, + ["3057012405"] = { + ["1HWeapon"] = { +<<<<<<< HEAD + ["max"] = 20, + ["min"] = 20, +======= + ["max"] = 15, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 10, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "enchant", + }, + }, + ["3175163625"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "enchant", + }, + }, +<<<<<<< HEAD + ["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, + }, +======= + ["3233599707"] = { +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "enchant", + }, + }, + ["3261801346"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["328541901"] = { +<<<<<<< HEAD + ["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, +======= + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["3299347043"] = { +<<<<<<< HEAD + ["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, + }, +======= + ["Belt"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, + }, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["3321629045"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "enchant", + }, + }, + ["3336890334"] = { + ["1HMace"] = { +<<<<<<< HEAD + ["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, + }, +======= + ["max"] = 22.5, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 22.5, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 32, + ["min"] = 21, + }, + ["2HWeapon"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 22.5, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 32, + ["min"] = 21, + }, + ["Flail"] = { + ["max"] = 22.5, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 32, + ["min"] = 21, + }, + ["Spear"] = { + ["max"] = 22.5, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 32, + ["min"] = 21, + }, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "enchant", + }, + }, + ["3372524247"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Boots"] = { +<<<<<<< HEAD + ["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, +======= + ["max"] = 25, + ["min"] = 20, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["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"] = { +<<<<<<< HEAD + ["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, + }, + ["Talisman"] = { + ["max"] = 13, + ["min"] = 13, + }, +======= +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["Ring"] = { + ["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"] = { +<<<<<<< HEAD + ["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, +======= + ["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, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["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"] = "enchant.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "enchant", + }, + }, + ["3917489142"] = { +<<<<<<< HEAD + ["Chest"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 10, + }, +======= + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, + }, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "enchant", + }, + }, + ["3981240776"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["3984865854"] = { + ["1HWeapon"] = { +<<<<<<< HEAD + ["max"] = 15, +======= + ["max"] = 25, + ["min"] = 15, + }, + ["Sceptre"] = { + ["max"] = 25, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "enchant", + }, + }, +<<<<<<< HEAD + ["4080418644"] = { + ["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, +======= + ["4015621042"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Focus"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "enchant", + }, + }, + ["4078695"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["4080418644"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Ring"] = { + ["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"] = "enchant.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["4220027924"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Boots"] = { +<<<<<<< HEAD + ["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, +======= + ["max"] = 25, + ["min"] = 20, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["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", + }, + }, +<<<<<<< HEAD + ["44972811"] = { + ["Shield"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "enchant", + }, + }, + ["473429811"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 30, +======= + ["4283407333"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4283407333", + ["text"] = "# to Level of all Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["44972811"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Ring"] = { + ["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", + }, + }, +<<<<<<< HEAD + ["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, +======= + ["480796730"] = { + ["Shield"] = { + ["max"] = 3, + ["min"] = 3, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["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"] = "enchant.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "enchant", + }, + }, + ["709508406"] = { + ["1HMace"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["1HWeapon"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["2HMace"] = { + ["max"] = 25.5, + ["min"] = 17, + }, + ["2HWeapon"] = { + ["max"] = 25.5, + ["min"] = 12, + }, + ["Bow"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Crossbow"] = { + ["max"] = 25.5, + ["min"] = 17, + }, + ["Flail"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Quarterstaff"] = { + ["max"] = 25.5, + ["min"] = 17, + }, + ["Spear"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Talisman"] = { + ["max"] = 25.5, + ["min"] = 17, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "enchant", + }, + }, +<<<<<<< HEAD + ["737908626"] = { + ["1HWeapon"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["Quarterstaff"] = { + ["max"] = 28, + ["min"] = 16, + }, +======= + ["721014846"] = { +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_721014846", + ["text"] = "You cannot be Hindered", + ["type"] = "enchant", + }, + }, + ["737908626"] = { + ["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_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "enchant", + }, + }, +<<<<<<< HEAD + ["789117908"] = { + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["Chest"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["Focus"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["Gloves"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["Helmet"] = { + ["max"] = 21, + ["min"] = 12, + }, + ["Quarterstaff"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 21, + ["min"] = 12, +======= + ["762600725"] = { + ["Shield"] = { + ["max"] = 25, + ["min"] = 20, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "enchant", + }, + }, + ["789117908"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "enchant", + }, + }, + ["791928121"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 20, + }, +<<<<<<< HEAD + ["Bow"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 50, + ["min"] = 20, + }, +======= +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["Flail"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 50, + ["min"] = 20, + }, +<<<<<<< HEAD + ["Talisman"] = { + ["max"] = 50, + ["min"] = 20, + }, +======= +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "enchant", + }, + }, + ["803737631"] = { +<<<<<<< HEAD + ["Helmet"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["836936635"] = { + ["Boots"] = { + ["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, +======= + ["Helmet"] = { + ["max"] = 100, + ["min"] = 50, + }, + ["Quiver"] = { + ["max"] = 100, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["818778753"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + }, + ["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, + }, +<<<<<<< HEAD + ["Chest"] = { + ["max"] = -50, + ["min"] = -50, + }, + ["invertOnNegative"] = true, +======= +>>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["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"] = "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, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", + }, + }, + ["1004011302"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["1007380041"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["type"] = "explicit", + }, + }, + ["1011760251"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["101878827"] = { + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 36, + }, + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Sceptre"] = { + ["max"] = 80, + ["min"] = 36, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "explicit", + }, + }, + ["1022759479"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["1037193709"] = { + ["1HMace"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 156.5, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 156.5, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 156.5, + ["min"] = 3, + }, + ["Flail"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 156.5, + ["min"] = 3, + }, + ["Spear"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 156.5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", + }, + }, + ["1039268420"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["type"] = "explicit", + }, + }, + ["1050105434"] = { + ["1HWeapon"] = { + ["max"] = 164, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 328, + ["min"] = 20, + }, + ["Amulet"] = { + ["max"] = 189, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 124, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 124, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 164, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 124, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 149, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 179, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 164, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 328, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 164, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["1060572482"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["type"] = "explicit", + }, + }, + ["1062208444"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + }, + ["1062710370"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "explicit", + }, + }, + ["1087108135"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["type"] = "explicit", + }, + }, + ["1087531620"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["type"] = "explicit", + }, + }, + ["1104825894"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1104825894", + ["text"] = "#% faster Curse Activation", + ["type"] = "explicit", + }, + }, + ["111835965"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["1135928777"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", + ["type"] = "explicit", + }, + }, + ["1137305356"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1145481685"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["type"] = "explicit", + }, + }, + ["1160637284"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["type"] = "explicit", + }, + }, + ["1165163804"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", + ["type"] = "explicit", + }, + }, + ["1166140625"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["type"] = "explicit", + }, + }, + ["1181419800"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces", + ["type"] = "explicit", + }, + }, + ["1181501418"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["1185341308"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["type"] = "explicit", + }, + }, + ["1200678966"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["type"] = "explicit", + }, + }, + ["1202301673"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 7, + ["min"] = 2, + }, + ["Quiver"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 5, + ["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, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "explicit", + }, + }, + ["124131830"] = { + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 2, + }, + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Focus"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Staff"] = { + ["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, + }, + ["1241625305"] = { + ["Quiver"] = { + ["max"] = 59, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "explicit", + }, + }, + ["124859000"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + }, + ["1250712710"] = { + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, + ["1261982764"] = { + ["LifeFlask"] = { + ["max"] = 100, + ["min"] = 61, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", + ["type"] = "explicit", + }, + }, + ["1263695895"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + }, + ["1266413530"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["type"] = "explicit", + }, + }, + ["127081978"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["type"] = "explicit", + }, + }, + ["1285594161"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["1303248024"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", + ["type"] = "explicit", + }, + }, + ["1309799717"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["1310194496"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, + ["1315743832"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "explicit", + }, + }, + ["1316278494"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "explicit", + }, + }, + ["1320662475"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["type"] = "explicit", + }, + }, + ["1321104829"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["1337740333"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["type"] = "explicit", + }, + }, + ["1352561456"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["1368271171"] = { + ["1HMace"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Flail"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Quiver"] = { + ["max"] = 27, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 27, + ["min"] = 2, + }, + ["Spear"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "explicit", + }, + }, + ["1379411836"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 13, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["138421180"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["type"] = "explicit", + }, + }, + ["1389153006"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1389153006", + ["text"] = "#% increased Global Defences", + ["type"] = "explicit", + }, + }, + ["1389754388"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 33, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "explicit", + }, + }, + ["139889694"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["1405298142"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "explicit", + }, + }, + ["1412217137"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "explicit", + }, + }, + ["1417267954"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, + ["1423639565"] = { + ["AnyJewel"] = { + ["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, + }, + ["1426522529"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["type"] = "explicit", + }, + }, + ["1432756708"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + }, + ["1444556985"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["145497481"] = { + ["AnyJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_145497481", + ["text"] = "#% increased Defences from Equipped Shield", + ["type"] = "explicit", + }, + }, + ["1459321413"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, + ["147764878"] = { + ["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", + }, + }, + ["1494950893"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1495814176"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + ["type"] = "explicit", + }, + }, + ["1505023559"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, + ["1509134228"] = { + ["1HMace"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["1514844108"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + ["type"] = "explicit", + }, + }, + ["1526933524"] = { + ["LifeFlask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["ManaFlask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", + ["type"] = "explicit", + }, + }, + ["153777645"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", + ["type"] = "explicit", + }, + }, + ["1545858329"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["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, + }, + ["1552666713"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + }, + ["1569101201"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1569159338"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1569159338", + ["text"] = "#% increased Parry Damage", + ["type"] = "explicit", + }, + }, + ["1570501432"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1570501432", + ["text"] = "Leech Life #% faster", + ["type"] = "explicit", + }, + }, + ["1570770415"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "explicit", + }, + }, + ["1573130764"] = { + ["Gloves"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["Quiver"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "explicit", + }, + }, + ["1574590649"] = { + ["1HWeapon"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["Sceptre"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "explicit", + }, + }, + ["1585769763"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", + ["type"] = "explicit", + }, + }, + ["1589917703"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1590846356"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", + ["type"] = "explicit", + }, + }, + ["1600707273"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["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, + }, + ["1602294220"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["type"] = "explicit", + }, + }, + ["1604736568"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["type"] = "explicit", + }, + }, + ["1653682082"] = { + ["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", + }, + }, + ["1671376347"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["1692879867"] = { + ["Chest"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + }, + ["1697951953"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1697951953", + ["text"] = "#% increased Hazard Damage", + ["type"] = "explicit", + }, + }, + ["169946467"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", + ["type"] = "explicit", + }, + }, + ["1714971114"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["173226756"] = { + ["LifeFlask"] = { + ["max"] = 70, + ["min"] = 41, + }, + ["ManaFlask"] = { + ["max"] = 70, + ["min"] = 41, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + }, + ["1742651309"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 26, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["1754445556"] = { + ["Gloves"] = { + ["max"] = 37.5, + ["min"] = 2.5, + }, + ["Quiver"] = { + ["max"] = 37.5, + ["min"] = 2.5, + }, + ["Ring"] = { + ["max"] = 37.5, + ["min"] = 2.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["1772247089"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", + ["type"] = "explicit", + }, + }, + ["1773308808"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["type"] = "explicit", + }, + }, + ["1776411443"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "explicit", + }, + }, + ["1777421941"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["type"] = "explicit", + }, + }, + ["1782086450"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["Focus"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + }, + ["179541474"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + ["type"] = "explicit", + }, + }, + ["1798257884"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["Sceptre"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1800303440"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["1811130680"] = { + ["ManaFlask"] = { + ["max"] = 100, + ["min"] = 61, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", + ["type"] = "explicit", + }, + }, + ["1829102168"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["type"] = "explicit", + }, + }, + ["1834658952"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["1839076647"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + }, + ["1846980580"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["type"] = "explicit", + }, + }, + ["1852184471"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", + ["type"] = "explicit", + }, + }, + ["1852872083"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "explicit", + }, + }, + ["1854213750"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["1869147066"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["1874553720"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", + ["type"] = "explicit", + }, + }, + ["1881230714"] = { + ["Bow"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Dagger"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Flail"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["One Hand Axe"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["One Hand Mace"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["One Hand Sword"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Two Hand Axe"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Two Hand Mace"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Two Hand Sword"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["type"] = "explicit", + }, + }, + ["1892122971"] = { + ["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", + }, + }, + ["1896066427"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + }, + ["1911237468"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", + ["type"] = "explicit", + }, + }, + ["1940865751"] = { + ["1HMace"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["1HWeapon"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["2HMace"] = { + ["max"] = 74.5, + ["min"] = 3.5, + }, + ["2HWeapon"] = { + ["max"] = 74.5, + ["min"] = 2.5, + }, + ["Bow"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["Crossbow"] = { + ["max"] = 74.5, + ["min"] = 3.5, + }, + ["Flail"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["Quarterstaff"] = { + ["max"] = 74.5, + ["min"] = 3.5, + }, + ["Spear"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["Talisman"] = { + ["max"] = 74.5, + ["min"] = 3.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "explicit", + }, + }, + ["1944020877"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["type"] = "explicit", + }, + }, + ["1967051901"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "explicit", + }, + }, + ["1978899297"] = { + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["1994296038"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["1998951374"] = { + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["1999113824"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 101, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "explicit", + }, + }, + ["2011656677"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, + ["2023107756"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "explicit", + }, + }, + ["2056107438"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["2066964205"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["2077117738"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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 Items", + ["type"] = "explicit", + }, + }, + ["210067635"] = { + ["1HMace"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 19, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 19, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, + ["2106365538"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["21071013"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["2107703111"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["type"] = "explicit", + }, + }, + ["2108821127"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["type"] = "explicit", + }, + }, + ["2112395885"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", + ["type"] = "explicit", + }, + }, + ["2118708619"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["2131720304"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", + }, + }, + ["2144192055"] = { + ["Ring"] = { + ["max"] = 203, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["2149603090"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["2160282525"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "explicit", + }, + }, + ["2162097452"] = { + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Helmet"] = { + ["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, + }, + ["2174054121"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", + ["type"] = "explicit", + }, + }, + ["2194114101"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["Quiver"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "explicit", + }, + }, + ["2202308025"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["type"] = "explicit", + }, + }, + ["221701169"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["type"] = "explicit", + }, + }, + ["2222186378"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["2231156303"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["2250533757"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["2254480358"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["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, + }, + ["2256120736"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["type"] = "explicit", + }, + }, + ["2272980012"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "explicit", + }, + }, + ["2320654813"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["type"] = "explicit", + }, + }, + ["2321178454"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 26, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "explicit", + }, + }, + ["2334956771"] = { + ["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", + }, + }, + ["2339757871"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["Focus"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["Shield"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + }, + ["234296660"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["2347036682"] = { + ["1HWeapon"] = { + ["max"] = 30.5, + ["min"] = 2, + }, + ["Sceptre"] = { + ["max"] = 30.5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["type"] = "explicit", + }, + }, + ["2353576063"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "explicit", + }, + }, + ["2359002191"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["2365392475"] = { + ["Charm"] = { + ["max"] = 350, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2365392475", + ["text"] = "Recover # Life when Used", + ["type"] = "explicit", + }, + }, + ["2374711847"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["type"] = "explicit", + }, + }, + ["2392824305"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "explicit", + }, + }, + ["2416869319"] = { + ["LifeFlask"] = { + ["max"] = 80, + ["min"] = 51, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", + ["type"] = "explicit", + }, + }, + ["2421151933"] = { + ["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", + }, + }, + ["2440073079"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", + ["type"] = "explicit", + }, + }, + ["2442527254"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["2451402625"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "explicit", + }, + }, + ["2456523742"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", + ["type"] = "explicit", + }, + }, + ["2463230181"] = { + ["2HWeapon"] = { + ["max"] = 200, + ["min"] = 25, + }, + ["Bow"] = { + ["max"] = 200, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["2466785537"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["type"] = "explicit", + }, + }, + ["2480498143"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + }, + ["2481353198"] = { + ["Shield"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "explicit", + }, + }, + ["2482852589"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["2487305362"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", + ["type"] = "explicit", + }, + }, + ["2503377690"] = { + ["LifeFlask"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["ManaFlask"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", + ["type"] = "explicit", + }, + }, + ["2505884597"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + }, + ["2518900926"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", + ["type"] = "explicit", + }, + }, + ["2527686725"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "explicit", + }, + }, + ["2534359663"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["253641217"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["type"] = "explicit", + }, + }, + ["2541588185"] = { + ["Charm"] = { + ["max"] = 40, + ["min"] = 16, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2541588185", + ["text"] = "#% increased Duration (Charm)", + ["type"] = "explicit", + }, + }, + ["2557965901"] = { + ["Gloves"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 7.9, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "explicit", + }, + }, + ["255840549"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["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", + }, + }, + ["2582079000"] = { + ["specialCaseData"] = { + ["overrideModLinePlural"] = "+# Charm Slots", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2582079000", + ["text"] = "# Charm Slot", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["2594634307"] = { + ["AnyJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["2610562860"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2610562860", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["2637470878"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", + ["type"] = "explicit", + }, + }, + ["2638756573"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["2653955271"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + }, + ["266564538"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["2675129731"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2675129731", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, + ["2676834156"] = { + ["Charm"] = { + ["max"] = 500, + ["min"] = 44, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2676834156", + ["text"] = "Also grants # Guard", + ["type"] = "explicit", + }, + }, + ["2690740379"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Talisman"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2696027455", + ["text"] = "#% increased Damage with Spears", + ["type"] = "explicit", + }, + }, + ["2704905000"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "explicit", + }, + }, + ["2709646369"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2709646369", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + }, + ["2720982137"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", + ["type"] = "explicit", + }, + }, + ["2726713579"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["2HWeapon"] = { + ["max"] = 59, + ["min"] = 15, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 34, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 59, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 39, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", + ["type"] = "explicit", + }, + }, + ["2748665614"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, + ["2768835289"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", + ["type"] = "explicit", + }, + }, + ["2768899959"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["2770044702"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["type"] = "explicit", + }, + }, + ["2797971005"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["280731498"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["2809428780"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["type"] = "explicit", + }, + }, + ["2822644689"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["2839066308"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", + ["type"] = "explicit", + }, + }, + ["2840989393"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "explicit", + }, + }, + ["2849546516"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["Sceptre"] = { + ["max"] = 37.5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "explicit", + }, + }, + ["2866361420"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, + ["2881298780"] = { + ["Belt"] = { + ["max"] = 185.5, + ["min"] = 2, + }, + ["Chest"] = { + ["max"] = 185.5, + ["min"] = 2, + }, + ["Shield"] = { + ["max"] = 185.5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", + ["type"] = "explicit", + }, + }, + ["288364275"] = { + ["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", + }, + }, + ["2891184298"] = { + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 9, + }, + ["2HWeapon"] = { + ["max"] = 52, + ["min"] = 14, + }, + ["Amulet"] = { + ["max"] = 28, + ["min"] = 9, + }, + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Focus"] = { + ["max"] = 32, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 24, + ["min"] = 9, + }, + ["Staff"] = { + ["max"] = 52, + ["min"] = 14, + }, + ["Wand"] = { + ["max"] = 35, + ["min"] = 9, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["289128254"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["2901986750"] = { + ["Amulet"] = { + ["max"] = 18, + ["min"] = 3, + }, + ["Ring"] = { + ["max"] = 16, + ["min"] = 3, + }, + ["Shield"] = { + ["max"] = 18, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["2907381231"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["type"] = "explicit", + }, + }, + ["2912416697"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["type"] = "explicit", + }, + }, + ["2923486259"] = { + ["Amulet"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Belt"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Boots"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Chest"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Focus"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Gloves"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Helmet"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Shield"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["293638271"] = { + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["Wand"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "explicit", + }, + }, + ["2954360902"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["2957407601"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", + ["type"] = "explicit", + }, + }, + ["2968503605"] = { + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["Wand"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "explicit", + }, + }, + ["2969557004"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["2974417149"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 30, + }, + ["Amulet"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["2976476845"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["type"] = "explicit", + }, + }, + ["3003542304"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "explicit", + }, + }, + ["300723956"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_300723956", + ["text"] = "Attack Hits apply Incision", + ["type"] = "explicit", + }, + }, + ["3015669065"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + }, + ["3028809864"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["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", + }, + }, + ["3032590688"] = { + ["Gloves"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["Quiver"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["3033371881"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 26, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 23, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 23, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 26, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["type"] = "explicit", + }, + }, + ["3035140377"] = { + ["Bow"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["Flail"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["One Hand Axe"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["One Hand Mace"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["One Hand Sword"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Two Hand Axe"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Two Hand Mace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Two Hand Sword"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["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", + }, + }, + ["30438393"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["Sceptre"] = { + ["max"] = 39, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["3065378291"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["3088348485"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["type"] = "explicit", + }, + }, + ["3091578504"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["3106718406"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3106718406", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["3113764475"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["3119612865"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, + ["3141070085"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", + }, + }, + ["3146310524"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3146310524", + ["text"] = "Dazes on Hit", + ["type"] = "explicit", + }, + }, + ["315791320"] = { + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "explicit", + }, + }, + ["3166958180"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["3171212276"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["3173882956"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", + ["type"] = "explicit", + }, + }, + ["3175163625"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "explicit", + }, + }, + ["318092306"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_318092306", + ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", + ["type"] = "explicit", + }, + }, + ["318953428"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["3192728503"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", + ["type"] = "explicit", + }, + }, + ["3196823591"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charges gained", + ["type"] = "explicit", + }, + }, + ["3222402650"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3233599707"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "explicit", + }, + }, + ["3243034867"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3243034867", + ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", + ["type"] = "explicit", + }, + }, + ["3256879910"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, + ["3261801346"] = { + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 36, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Quiver"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["3276224428"] = { + ["ManaFlask"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3276224428", + ["text"] = "#% more Recovery if used while on Low Mana", + ["type"] = "explicit", + }, + }, + ["3278136794"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + }, + ["3283482523"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", + ["type"] = "explicit", + }, + }, + ["328541901"] = { + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 36, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["3291658075"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["3292710273"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", + }, + }, + ["3299347043"] = { + ["Amulet"] = { + ["max"] = 149, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 174, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 149, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 214, + ["min"] = 7, + }, + ["Gloves"] = { + ["max"] = 149, + ["min"] = 7, + }, + ["Helmet"] = { + ["max"] = 174, + ["min"] = 7, + }, + ["Ring"] = { + ["max"] = 119, + ["min"] = 10, + }, + ["Shield"] = { + ["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", + }, + }, + ["3321629045"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "explicit", + }, + }, + ["3325883026"] = { + ["Amulet"] = { + ["max"] = 33, + ["min"] = 1, + }, + ["Belt"] = { + ["max"] = 29, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 23, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 36, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 23, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 18, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "explicit", + }, + }, + ["3336890334"] = { + ["1HMace"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["1HWeapon"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["2HMace"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 188.5, + ["min"] = 2.5, + }, + ["Bow"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["Crossbow"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["Quarterstaff"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["Talisman"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3362812763"] = { + ["Boots"] = { + ["max"] = 43, + ["min"] = 14, + }, + ["Chest"] = { + ["max"] = 50, + ["min"] = 14, + }, + ["Gloves"] = { + ["max"] = 43, + ["min"] = 14, + }, + ["Helmet"] = { + ["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, + }, + ["3372524247"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["3374165039"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + }, + }, + ["3377888098"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["3386297724"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + }, + ["3391917254"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["3394832998"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + }, + ["3395186672"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["3401186585"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", + ["type"] = "explicit", + }, + }, + ["3409275777"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["type"] = "explicit", + }, + }, + ["3417711605"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + }, + ["3419203492"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["type"] = "explicit", + }, + }, + ["3473929743"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3473929743", + ["text"] = "#% increased Pin Buildup", + ["type"] = "explicit", + }, + }, + ["3484657501"] = { + ["Boots"] = { + ["max"] = 160, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 276, + ["min"] = 4, + }, + ["Gloves"] = { + ["max"] = 160, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 202, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 256, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["3485067555"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["3513818125"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["type"] = "explicit", + }, + }, + ["3523867985"] = { + ["Boots"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + }, + ["3544800472"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "explicit", + }, + }, + ["3556824919"] = { + ["Amulet"] = { + ["max"] = 39, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 34, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["3579898587"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "explicit", + }, + }, + ["3590792340"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["3596695232"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["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", + }, + }, + ["3628935286"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["1HWeapon"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["2HMace"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["2HWeapon"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Boots"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Bow"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Chest"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Crossbow"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Flail"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Focus"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Gloves"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Helmet"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Quarterstaff"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Sceptre"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Shield"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Spear"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Staff"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Talisman"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Wand"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "explicit", + }, + }, + ["3641543553"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["type"] = "explicit", + }, + }, + ["3665922113"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["3666476747"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration", + ["type"] = "explicit", + }, + }, + ["3669820740"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["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, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["3695891184"] = { + ["1HMace"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Crossbow"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Gloves"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Quarterstaff"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Quiver"] = { + ["max"] = 53, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 53, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Talisman"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "explicit", + }, + }, + ["3700202631"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 39, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["type"] = "explicit", + }, + }, + ["3741323227"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "explicit", + }, + }, + ["3749502527"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3749502527", + ["text"] = "#% chance to gain Volatility on Kill", + ["type"] = "explicit", + }, + }, + ["3752589831"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["Quiver"] = { + ["max"] = 46, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, + ["3759735052"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "explicit", + }, + }, + ["3771516363"] = { + ["Shield"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, + ["3774951878"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "explicit", + }, + }, + ["3787460122"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", + ["type"] = "explicit", + }, + }, + ["378796798"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["3791899485"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "explicit", + }, + }, + ["3811191316"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["3821543413"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["type"] = "explicit", + }, + }, + ["3824372849"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "explicit", + }, + }, + ["3835551335"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "explicit", + }, + }, + ["3837707023"] = { + ["AnyJewel"] = { + ["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, + }, + ["3850614073"] = { + ["1HWeapon"] = { + ["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, + }, + ["3851254963"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + }, + ["3855016469"] = { + ["Body Armour"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["Shield"] = { + ["max"] = 54, + ["min"] = 21, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["3856744003"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["type"] = "explicit", + }, + }, + ["3858398337"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["type"] = "explicit", + }, + }, + ["3859848445"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["type"] = "explicit", + }, + }, + ["3865605585"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["type"] = "explicit", + }, + }, + ["387439868"] = { + ["1HMace"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["2HMace"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["2HWeapon"] = { + ["max"] = 139, + ["min"] = 19, + }, + ["Bow"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["Crossbow"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["Flail"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["Quarterstaff"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["Spear"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["Talisman"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "explicit", + }, + }, + ["3885405204"] = { + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "explicit", + }, + }, + ["388617051"] = { + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "explicit", + }, + }, + ["3891355829"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3891355829|1", + ["text"] = "Upgrades Radius to Medium", + ["type"] = "explicit", + }, + }, + ["391602279"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["Boots"] = { + ["max"] = 18, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 18, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 19, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 19, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + }, + ["3936121440"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["type"] = "explicit", + }, + }, + ["394473632"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["type"] = "explicit", + }, + }, + ["3962278098"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["3973629633"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "explicit", + }, + }, + ["3981240776"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Chest"] = { + ["max"] = 61, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["3984865854"] = { + ["1HWeapon"] = { + ["max"] = 65, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 65, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "explicit", + }, + }, + ["4009879772"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["4010677958"] = { + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 1, + }, + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "explicit", + }, + }, + ["4015621042"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 101, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "explicit", + }, + }, + ["4019237939"] = { + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["type"] = "explicit", + }, + }, + ["4032352472"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", + ["type"] = "explicit", + }, + }, + ["4052037485"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 96, + ["min"] = 2, + }, + ["Focus"] = { + ["max"] = 90, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 60, + ["min"] = 5, + }, + ["Helmet"] = { + ["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, + }, + ["4067062424"] = { + ["Gloves"] = { + ["max"] = 30.5, + ["min"] = 1.5, + }, + ["Quiver"] = { + ["max"] = 30.5, + ["min"] = 1.5, + }, + ["Ring"] = { + ["max"] = 30.5, + ["min"] = 1.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", + ["type"] = "explicit", + }, + }, + ["4080418644"] = { + ["1HMace"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 36, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["4081947835"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "explicit", + }, + }, + ["4089835882"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["type"] = "explicit", + }, + }, + ["4092130601"] = { + ["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", + }, + }, + ["4095671657"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["4101445926"] = { + ["Focus"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Staff"] = { + ["max"] = 32, + ["min"] = 28, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", + ["type"] = "explicit", + }, + }, + ["412709880"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "explicit", + }, + }, + ["4139681126"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "explicit", + }, + }, + ["4142814612"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4142814612", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["4147897060"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4147897060", + ["text"] = "#% increased Block chance", + ["type"] = "explicit", + }, + }, + ["4159248054"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["416040624"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["4162678661"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["4173554949"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["type"] = "explicit", + }, + }, + ["4180952808"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["4220027924"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Shield"] = { + ["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", + }, + }, + ["4226189338"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["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, + }, + ["4234573345"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["type"] = "explicit", + }, + }, + ["4236566306"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "explicit", + }, + }, + ["4258000627"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4258000627", + ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", + ["type"] = "explicit", + }, + }, + ["4258720395"] = { + ["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", + }, + }, + ["427684353"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", + ["type"] = "explicit", + }, + }, + ["429143663"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["440490623"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "explicit", + }, + }, + ["442393998"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["type"] = "explicit", + }, + }, + ["44972811"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "explicit", + }, + }, + ["455816363"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["type"] = "explicit", + }, + }, + ["458438597"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + }, + ["462424929"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "explicit", + }, + }, + ["473429811"] = { + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 31, + }, + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 31, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 80, + ["min"] = 31, + }, + ["Wand"] = { + ["max"] = 80, + ["min"] = 31, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "explicit", + }, + }, + ["473917671"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["484792219"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["type"] = "explicit", + }, + }, + ["491450213"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, + ["504915064"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["type"] = "explicit", + }, + }, + ["517664839"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Spear"] = { + ["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, + }, + ["51994685"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "explicit", + }, + }, + ["525523040"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["type"] = "explicit", + }, + }, + ["53045048"] = { + ["Boots"] = { + ["max"] = 142, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 251, + ["min"] = 3, + }, + ["Gloves"] = { + ["max"] = 142, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 181, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 232, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["533892981"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["538241406"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", + ["type"] = "explicit", + }, + }, + ["55876295"] = { + ["1HMace"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "explicit", + }, + }, + ["565784293"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_565784293", + ["text"] = "#% increased Knockback Distance", + ["type"] = "explicit", + }, + }, + ["587431675"] = { + ["Amulet"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 34, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, + ["591105508"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["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, + }, + ["593241812"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["61644361"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["627767961"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", + ["type"] = "explicit", + }, + }, + ["644456512"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "explicit", + }, + }, + ["648019518"] = { + ["LifeFlask"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", + ["type"] = "explicit", + }, + }, + ["654207792"] = { + ["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", + }, + }, + ["656461285"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "explicit", + }, + }, + ["669069897"] = { + ["1HMace"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 7.9, + ["min"] = 4, + }, + ["Crossbow"] = { + ["max"] = 7.9, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Quarterstaff"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Talisman"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["680068163"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "explicit", + }, + }, + ["681332047"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Gloves"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["Quiver"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["686254215"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "explicit", + }, + }, + ["691932474"] = { + ["1HMace"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 650, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 650, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 650, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["Talisman"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["693237939"] = { + ["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", + }, + }, + ["700317374"] = { + ["LifeFlask"] = { + ["max"] = 80, + ["min"] = -50, + }, + ["ManaFlask"] = { + ["max"] = 80, + ["min"] = -50, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["707457662"] = { + ["Gloves"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 6.9, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "explicit", + }, + }, + ["709508406"] = { + ["1HMace"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 196, + ["min"] = 3.5, + }, + ["2HWeapon"] = { + ["max"] = 196, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 196, + ["min"] = 3.5, + }, + ["Flail"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 196, + ["min"] = 3.5, + }, + ["Spear"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 196, + ["min"] = 3.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "explicit", + }, + }, + ["712554801"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", + ["type"] = "explicit", + }, + }, + ["713216632"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_713216632", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Defences from Equipped Shield", + ["type"] = "explicit", + }, + }, + ["715957346"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["type"] = "explicit", + }, + }, + ["734614379"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "explicit", + }, + }, + ["736967255"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["737908626"] = { + ["1HWeapon"] = { + ["max"] = 73, + ["min"] = 27, + }, + ["2HWeapon"] = { + ["max"] = 109, + ["min"] = 40, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 59, + ["min"] = 27, + }, + ["Staff"] = { + ["max"] = 109, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 73, + ["min"] = 27, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "explicit", + }, + }, + ["748522257"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_748522257", + ["text"] = "#% increased Stun Duration", + ["type"] = "explicit", + }, + }, + ["770672621"] = { + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 21, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 50, + ["min"] = 21, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["789117908"] = { + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 104, + ["min"] = 8, + }, + ["Amulet"] = { + ["max"] = 69, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 69, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 69, + ["min"] = 8, + }, + ["Sceptre"] = { + ["max"] = 69, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 104, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 69, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, + ["791928121"] = { + ["1HMace"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["2HMace"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Flail"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Quarterstaff"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Spear"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Talisman"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["795138349"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "explicit", + }, + }, + ["803737631"] = { + ["Amulet"] = { + ["max"] = 450, + ["min"] = 11, + }, + ["Gloves"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["Helmet"] = { + ["max"] = 550, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["Ring"] = { + ["max"] = 450, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["809229260"] = { + ["Belt"] = { + ["max"] = 255, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["818778753"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["821021828"] = { + ["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, + }, + ["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"] = "explicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "explicit", + }, + }, + ["821241191"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "explicit", + }, + }, + ["821948283"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_821948283", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + ["type"] = "explicit", + }, + }, + ["828533480"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_828533480", + ["text"] = "#% Chance to gain a Charge when you kill an enemy", + ["type"] = "explicit", + }, + }, + ["830345042"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["type"] = "explicit", + }, + }, + ["844449513"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["849987426"] = { + ["1HWeapon"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["Sceptre"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", + ["type"] = "explicit", + }, + }, + ["868556494"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + }, + ["872504239"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", + ["type"] = "explicit", + }, + }, + ["886931978"] = { + ["LifeFlask"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", + ["type"] = "explicit", + }, + }, + ["915769802"] = { + ["Belt"] = { + ["max"] = 304, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 352, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 304, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 304, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["918325986"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", + ["type"] = "explicit", + }, + }, + ["9187492"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 7, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 2, + }, + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 7, + ["min"] = 2, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 7, + ["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, + }, + ["BaseJewel"] = { + ["max"] = -5, + ["min"] = -10, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "explicit", + }, + }, + ["942519401"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["944643028"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["type"] = "explicit", + }, + }, + ["945774314"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["type"] = "explicit", + }, + }, + ["959641748"] = { + ["ManaFlask"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", + ["type"] = "explicit", + }, + }, + ["980177976"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["Body Armour"] = { + ["max"] = 10, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["986397080"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + }, + ["Implicit"] = { + ["1028592286"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["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, + }, + ["1137147997"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1137147997", + ["text"] = "Unblockable", + ["type"] = "implicit", + }, + }, + ["1181501418"] = { + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Talisman"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["1207554355"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1207554355", + ["text"] = "#% increased Arrow Speed", + ["type"] = "implicit", + }, + }, + ["1379411836"] = { + ["Amulet"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["1389754388"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["1434716233"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", + ["type"] = "implicit", + }, + }, + ["1444556985"] = { + ["Chest"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + ["1451444093"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1451444093", + ["text"] = "Bifurcates Critical Hits", + ["type"] = "implicit", + }, + }, + ["1503146834"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1503146834", + ["text"] = "Crushes Enemies on Hit", + ["type"] = "implicit", + }, + }, + ["1541903247"] = { + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["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", + }, + }, + ["1570770415"] = { + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "implicit", + }, + }, + ["1573130764"] = { + ["Quiver"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "implicit", + }, + }, + ["1589917703"] = { + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["1671376347"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["1691862754"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1691862754", + ["text"] = "Used when you become Frozen", + ["type"] = "implicit", + }, + }, + ["1702195217"] = { + ["2HWeapon"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["1745952865"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "implicit", + }, + }, + ["1782086450"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "implicit", + }, + }, + ["1803308202"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1803308202", + ["text"] = "#% increased Bolt Speed", + ["type"] = "implicit", + }, + }, + ["1810482573"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1810482573", + ["text"] = "Used when you become Stunned", + ["type"] = "implicit", + }, + }, + ["1836676211"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "implicit", + }, + }, + ["1967051901"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["1980802737"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "implicit", + }, + }, + ["2016937536"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2016937536", + ["text"] = "Used when you take Lightning damage from a Hit", + ["type"] = "implicit", + }, + }, + ["2055966527"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2055966527", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + }, + ["2194114101"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "implicit", + }, + }, + ["2222186378"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "implicit", + }, + }, + ["2250533757"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["2321178454"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Quiver"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "implicit", + }, + }, + ["239367161"] = { + ["Quiver"] = { + ["max"] = 40, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "implicit", + }, + }, + ["2463230181"] = { + ["2HWeapon"] = { + ["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, + }, + ["2527686725"] = { + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "implicit", + }, + }, + ["2646093132"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["275498888"] = { + ["Ring"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_275498888", + ["text"] = "Maximum Quality is #%", + ["type"] = "implicit", + }, + }, + ["2778646494"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2778646494", + ["text"] = "Used when you are affected by a Slow", + ["type"] = "implicit", + }, + }, + ["2797971005"] = { + ["Quiver"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["2891184298"] = { + ["Ring"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + }, + ["2901986750"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["Boots"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Ring"] = { + ["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, + }, + ["Ring"] = { + ["max"] = 13, + ["min"] = 7, + }, + ["Shield"] = { + ["max"] = 19, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["2933846633"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2933846633", + ["text"] = "Dazes on Hit", + ["type"] = "implicit", + }, + }, + ["2968503605"] = { + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 50, + }, + ["Talisman"] = { + ["max"] = 80, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "implicit", + }, + }, + ["2994271459"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2994271459", + ["text"] = "Used when you take Cold damage from a Hit", + ["type"] = "implicit", + }, + }, + ["3032590688"] = { + ["Quiver"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 2.5, + ["min"] = 2.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", + }, + }, + ["3182714256"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = -2, + }, + ["Ring"] = { + ["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, + }, + ["328541901"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["3299347043"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["Chest"] = { + ["max"] = 80, + ["min"] = 60, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["3310778564"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3310778564", + ["text"] = "Used when you take Chaos damage from a Hit", + ["type"] = "implicit", + }, + }, + ["3325883026"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "implicit", + }, + }, + ["3362812763"] = { + ["Chest"] = { + ["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, + }, + ["3398402065"] = { + ["2HWeapon"] = { + ["max"] = -50, + ["min"] = -50, + }, + ["Bow"] = { + ["max"] = -50, + ["min"] = -50, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3398402065", + ["text"] = "#% increased Projectile Range", + ["type"] = "implicit", + }, + }, + ["3489782002"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["3544800472"] = { + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "implicit", + }, + }, + ["3585532255"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "implicit", + }, + }, + ["3675300253"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3675300253", + ["text"] = "Strikes deal Splash Damage", + ["type"] = "implicit", + }, + }, + ["3676540188"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3676540188", + ["text"] = "Used when you start Bleeding", + ["type"] = "implicit", + }, + }, + ["3699444296"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3699444296", + ["text"] = "Used when you become Shocked", + ["type"] = "implicit", + }, + }, + ["3854901951"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3854901951", + ["text"] = "Used when you take Fire damage from a Hit", + ["type"] = "implicit", + }, + }, + ["3855016469"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "implicit", + }, + }, + ["3917489142"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 12, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", + }, + }, + ["3954735777"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3954735777", + ["text"] = "#% chance to Poison on Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["3981240776"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["4010341289"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4010341289", + ["text"] = "Used when you kill a Rare or Unique enemy", + ["type"] = "implicit", + }, + }, + ["4080418644"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["4126210832"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["458438597"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + }, + ["462041840"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_462041840", + ["text"] = "#% of Flask Recovery applied Instantly", + ["type"] = "implicit", + }, + }, + ["548198834"] = { + ["2HWeapon"] = { + ["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", + }, + }, + ["585126960"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_585126960", + ["text"] = "Used when you become Ignited", + ["type"] = "implicit", + }, + }, + ["624954515"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "implicit", + }, + }, + ["644456512"] = { + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "implicit", + }, + }, + ["680068163"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "implicit", + }, + }, + ["681332047"] = { + ["Quiver"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", + }, + }, + ["718638445"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = -2, + }, + ["Ring"] = { + ["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, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_731781020", + ["text"] = "Flasks gain # charges per Second", + ["type"] = "implicit", + }, + }, + ["789117908"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + }, + ["791928121"] = { + ["2HMace"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["809229260"] = { + ["Belt"] = { + ["max"] = 140, + ["min"] = 100, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["821241191"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "implicit", + }, + }, + ["836936635"] = { + ["Chest"] = { + ["max"] = 2.5, + ["min"] = 1.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["958696139"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_958696139", + ["text"] = "Grants 1 additional Skill Slot", + ["type"] = "implicit", + }, + }, + }, + ["Rune"] = { + ["1004011302"] = { + ["Focus"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "augment", + }, + }, + ["1011760251"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["101878827"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "augment", + }, + }, + ["1030153674"] = { + ["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_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", + ["type"] = "augment", + }, + }, + ["1037193709"] = { + ["1HMace"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["Claw"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["Crossbow"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["Quarterstaff"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["Talisman"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "augment", + }, + }, + ["1050105434"] = { + ["Boots"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Focus"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["1181501418"] = { + ["Helmet"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["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"] = 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, }, - ["Ring"] = { - ["max"] = 10, - ["min"] = 7, + ["Wand"] = { + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "implicit", + ["id"] = "rune.stat_1228682002", + ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["2923486259"] = { + ["1238227257"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 13, - ["min"] = 7, + ["max"] = 8, + ["min"] = 8, }, - ["Ring"] = { - ["max"] = 13, - ["min"] = 7, + ["Focus"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, }, ["Shield"] = { - ["max"] = 19, - ["min"] = 11, + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "implicit", + ["id"] = "rune.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["2933846633"] = { - ["1HMace"] = { + ["124131830"] = { + ["Staff"] = { ["max"] = 1, ["min"] = 1, }, - ["1HWeapon"] = { + ["Wand"] = { ["max"] = 1, ["min"] = 1, }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "rune.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["1250712710"] = { + ["1HWeapon"] = { + ["max"] = 14, + ["min"] = 14, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2933846633", - ["text"] = "Dazes on Hit", - ["type"] = "implicit", + ["id"] = "rune.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "augment", }, }, - ["2968503605"] = { + ["1368271171"] = { + ["1HMace"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 24, + ["min"] = 8, + }, ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 24, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["Crossbow"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["Flail"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["Quarterstaff"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["Spear"] = { + ["max"] = 24, + ["min"] = 8, + }, ["Talisman"] = { - ["max"] = 80, - ["min"] = 50, - }, + ["max"] = 24, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "implicit", + ["id"] = "rune.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "augment", }, }, - ["2994271459"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, + ["1374654984"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2994271459", - ["text"] = "Used when you take Cold damage from a Hit", - ["type"] = "implicit", + ["id"] = "rune.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["type"] = "augment", }, }, - ["3032590688"] = { - ["Quiver"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 2.5, - ["min"] = 2.5, + ["1381474422"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "implicit", + ["id"] = "rune.stat_1381474422", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", + ["type"] = "augment", }, }, - ["3182714256"] = { - ["Amulet"] = { - ["max"] = 2, - ["min"] = -2, - }, - ["Ring"] = { - ["max"] = 2, - ["min"] = -2, + ["1382805233"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3182714256", - ["text"] = "# Prefix Modifier allowed", - ["type"] = "implicit", + ["id"] = "rune.stat_1382805233", + ["text"] = "#% increased Deflection Rating while moving", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["3261801346"] = { - ["Amulet"] = { - ["max"] = 15, + ["1433756169"] = { + ["1HMace"] = { + ["max"] = 10, ["min"] = 10, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "implicit", + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, }, - ["usePositiveSign"] = true, - }, - ["328541901"] = { - ["Amulet"] = { - ["max"] = 15, + ["2HWeapon"] = { + ["max"] = 10, ["min"] = 10, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "implicit", + ["Claw"] = { + ["max"] = 10, + ["min"] = 10, }, - ["usePositiveSign"] = true, - }, - ["3299347043"] = { - ["Amulet"] = { - ["max"] = 40, - ["min"] = 30, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 10, }, - ["Chest"] = { - ["max"] = 80, - ["min"] = 60, + ["Flail"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "implicit", + ["id"] = "rune.stat_1433756169", + ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["3310778564"] = { - ["Charm"] = { + ["1444556985"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "augment", + }, + }, + ["1480688478"] = { + ["Gloves"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3310778564", - ["text"] = "Used when you take Chaos damage from a Hit", - ["type"] = "implicit", + ["id"] = "rune.stat_1480688478", + ["text"] = "One of your Persistent Minions revives when an Offering expires", + ["type"] = "augment", }, }, - ["3325883026"] = { - ["Amulet"] = { - ["max"] = 4, - ["min"] = 2, + ["1496740334"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", - ["type"] = "implicit", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["3362812763"] = { ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", - ["type"] = "implicit", + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, }, - ["usePositiveSign"] = true, - }, - ["3372524247"] = { - ["Ring"] = { - ["max"] = 30, + ["Helmet"] = { + ["max"] = 20, ["min"] = 20, }, - ["specialCaseData"] = { + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "implicit", + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, }, - ["usePositiveSign"] = true, - }, - ["3398402065"] = { - ["2HWeapon"] = { - ["max"] = -50, - ["min"] = -50, + ["Spear"] = { + ["max"] = 20, + ["min"] = 20, }, - ["Bow"] = { - ["max"] = -50, - ["min"] = -50, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 20, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3398402065", - ["text"] = "#% increased Projectile Range", - ["type"] = "implicit", + ["id"] = "rune.stat_1496740334", + ["text"] = "Convert #% of Requirements to Dexterity", + ["type"] = "augment", }, }, - ["3544800472"] = { - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - }, + ["1519615863"] = { + ["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"] = "implicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", - ["type"] = "implicit", + ["id"] = "rune.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "augment", }, }, - ["3585532255"] = { - ["Belt"] = { - ["max"] = 30, + ["1556124492"] = { + ["1HMace"] = { + ["max"] = 20, ["min"] = 20, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", - ["type"] = "implicit", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["3675300253"] = { ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 20, + ["min"] = 20, }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 20, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3675300253", - ["text"] = "Strikes deal Splash Damage", - ["type"] = "implicit", + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["3676540188"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3676540188", - ["text"] = "Used when you start Bleeding", - ["type"] = "implicit", + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["3699444296"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, + ["Flail"] = { + ["max"] = 20, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3699444296", - ["text"] = "Used when you become Shocked", - ["type"] = "implicit", + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["3854901951"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3854901951", - ["text"] = "Used when you take Fire damage from a Hit", - ["type"] = "implicit", + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["3855016469"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["Spear"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "implicit", + ["id"] = "rune.stat_1556124492", + ["text"] = "Convert #% of Requirements to Strength", + ["type"] = "augment", }, }, - ["3917489142"] = { - ["Amulet"] = { - ["max"] = 20, - ["min"] = 12, - }, - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Ring"] = { + ["1574590649"] = { + ["1HWeapon"] = { ["max"] = 15, - ["min"] = 6, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "implicit", + ["id"] = "rune.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "augment", }, }, - ["3954735777"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["1585886916"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3954735777", - ["text"] = "#% chance to Poison on Hit with Attacks", - ["type"] = "implicit", + ["id"] = "rune.stat_1585886916", + ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", + ["type"] = "augment", }, }, - ["3981240776"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["1671376347"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 14, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 14, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "implicit", + ["id"] = "rune.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "augment", }, ["usePositiveSign"] = true, }, - ["4010341289"] = { - ["Charm"] = { + ["1755296234"] = { + ["1HMace"] = { ["max"] = 1, ["min"] = 1, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4010341289", - ["text"] = "Used when you kill a Rare or Unique enemy", - ["type"] = "implicit", + ["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, }, - }, - ["4077843608"] = { - ["1HMace"] = { + ["Quarterstaff"] = { ["max"] = 1, ["min"] = 1, }, - ["1HWeapon"] = { + ["Spear"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Talisman"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_4077843608", - ["text"] = "Has 1 Socket", - ["type"] = "implicit", + ["id"] = "rune.stat_1755296234", + ["text"] = "Targets can be affected by # of your Poisons at the same time", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["4080418644"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 20, - ["min"] = 15, + ["1772929282"] = { + ["Helmet"] = { + ["max"] = -5, + ["min"] = -5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "implicit", + ["id"] = "rune.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["4126210832"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["1782086450"] = { + ["Chest"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Focus"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "augment", }, + }, + ["1798257884"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_4126210832", - ["text"] = "Always Hits", - ["type"] = "implicit", + ["id"] = "rune.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "augment", }, }, - ["4220027924"] = { - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["1805633363"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "implicit", + ["id"] = "rune.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["458438597"] = { + ["1937310173"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "implicit", + ["id"] = "rune.stat_1937310173", + ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", + ["type"] = "augment", }, }, - ["462041840"] = { - ["Belt"] = { - ["max"] = 20, - ["min"] = 20, + ["1947060170"] = { + ["Helmet"] = { + ["max"] = 40, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_462041840", - ["text"] = "#% of Flask Recovery applied Instantly", - ["type"] = "implicit", + ["id"] = "rune.stat_1947060170", + ["text"] = "#% of Armour also applies to Cold Damage", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["548198834"] = { - ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 16, - }, - ["Quarterstaff"] = { - ["max"] = 16, - ["min"] = 16, + ["1984310483"] = { + ["Helmet"] = { + ["max"] = 6, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_548198834", - ["text"] = "#% increased Melee Strike Range with this weapon", - ["type"] = "implicit", + ["id"] = "rune.stat_1984310483", + ["text"] = "Enemies you Curse take #% increased Damage", + ["type"] = "augment", }, }, - ["585126960"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, + ["1998951374"] = { + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "implicit.stat_585126960", - ["text"] = "Used when you become Ignited", - ["type"] = "implicit", + ["id"] = "rune.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "augment", }, }, - ["624954515"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["2011656677"] = { + ["1HMace"] = { + ["max"] = -25, + ["min"] = -25, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = -25, + ["min"] = -25, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "implicit", + ["2HMace"] = { + ["max"] = -25, + ["min"] = -25, }, - }, - ["644456512"] = { - ["Belt"] = { + ["2HWeapon"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Boots"] = { ["max"] = 15, - ["min"] = 10, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = -25, + ["min"] = -25, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "implicit", + ["Claw"] = { + ["max"] = -25, + ["min"] = -25, }, - }, - ["680068163"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, + ["Crossbow"] = { + ["max"] = -25, + ["min"] = -25, }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, + ["Flail"] = { + ["max"] = -25, + ["min"] = -25, }, - ["specialCaseData"] = { + ["Quarterstaff"] = { + ["max"] = -25, + ["min"] = -25, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "implicit", + ["Spear"] = { + ["max"] = -25, + ["min"] = -25, }, - }, - ["681332047"] = { - ["Quiver"] = { - ["max"] = 10, - ["min"] = 7, + ["Talisman"] = { + ["max"] = -25, + ["min"] = -25, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "implicit", + ["id"] = "rune.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "augment", }, }, - ["718638445"] = { - ["Amulet"] = { + ["2023107756"] = { + ["1HMace"] = { ["max"] = 2, - ["min"] = -2, + ["min"] = 2, }, - ["Ring"] = { + ["1HWeapon"] = { ["max"] = 2, - ["min"] = -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"] = "implicit.stat_718638445", - ["text"] = "# Suffix Modifier allowed", - ["type"] = "implicit", + ["id"] = "rune.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["731781020"] = { - ["Belt"] = { - ["max"] = 0.17, - ["min"] = 0.17, + ["2074866941"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_731781020", - ["text"] = "Flasks gain # charges per Second", - ["type"] = "implicit", + ["id"] = "rune.stat_2074866941", + ["text"] = "#% increased Exposure Effect", + ["type"] = "augment", }, }, - ["789117908"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, + ["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, }, - ["Chest"] = { + ["Crossbow"] = { ["max"] = 50, - ["min"] = 40, + ["min"] = 50, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 50, + ["min"] = 50, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "implicit", + ["Quarterstaff"] = { + ["max"] = 50, + ["min"] = 50, }, - }, - ["791928121"] = { - ["2HMace"] = { + ["Spear"] = { ["max"] = 50, - ["min"] = 20, + ["min"] = 50, }, - ["2HWeapon"] = { + ["Talisman"] = { ["max"] = 50, - ["min"] = 20, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "implicit", + ["id"] = "rune.stat_2077615515", + ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", + ["type"] = "augment", }, }, - ["803737631"] = { - ["Ring"] = { - ["max"] = 160, - ["min"] = 120, - }, + ["210067635"] = { + ["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"] = "implicit.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "implicit", + ["id"] = "rune.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["821241191"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, + ["2103650854"] = { + ["Gloves"] = { + ["max"] = 40, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - ["type"] = "implicit", + ["id"] = "rune.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", + ["type"] = "augment", }, }, - ["836936635"] = { + ["2191621386"] = { ["Chest"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", - ["type"] = "implicit", + ["id"] = "rune.stat_2191621386", + ["text"] = "#% of Armour also applies to Chaos Damage while on full Energy Shield", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["924253255"] = { - ["Chest"] = { - ["max"] = -20, - ["min"] = -30, + ["2200571612"] = { + ["Boots"] = { + ["max"] = 40, + ["min"] = 40, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "implicit", + ["id"] = "rune.stat_2200571612", + ["text"] = "#% of Armour also applies to Lightning Damage", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["958696139"] = { - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["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"] = "implicit.stat_958696139", - ["text"] = "Grants 1 additional Skill Slot", - ["type"] = "implicit", + ["id"] = "rune.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "augment", }, }, - }, - ["Rune"] = { - ["1004011302"] = { - ["Focus"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["2231410646"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "enchant", + ["id"] = "rune.stat_2231410646", + ["text"] = "A random Skill that requires Glory generates #% of its maximum Glory when your Mark Activates", + ["type"] = "augment", }, }, - ["1011760251"] = { - ["Boots"] = { + ["2241849004"] = { + ["Gloves"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "enchant", + ["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", }, - ["usePositiveSign"] = true, }, - ["101878827"] = { - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = -40, - }, - ["invertOnNegative"] = true, + ["2250533757"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "enchant", + ["id"] = "rune.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "augment", }, }, - ["1037193709"] = { - ["1HMace"] = { - ["max"] = 18, - ["min"] = 4, + ["2310741722"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 8, }, - ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 4, + ["Chest"] = { + ["max"] = 12, + ["min"] = 8, }, - ["2HMace"] = { - ["max"] = 18, - ["min"] = 4, + ["Focus"] = { + ["max"] = 12, + ["min"] = 8, }, - ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 4, + ["Gloves"] = { + ["max"] = 12, + ["min"] = 8, }, - ["Bow"] = { - ["max"] = 18, - ["min"] = 4, + ["Helmet"] = { + ["max"] = 12, + ["min"] = 8, }, - ["Claw"] = { - ["max"] = 18, - ["min"] = 4, + ["Shield"] = { + ["max"] = 12, + ["min"] = 8, }, - ["Crossbow"] = { - ["max"] = 18, - ["min"] = 4, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 18, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "rune.stat_2310741722", + ["text"] = "#% increased Life and Mana Recovery from Flasks", + ["type"] = "augment", }, - ["Quarterstaff"] = { - ["max"] = 18, - ["min"] = 4, + }, + ["2339757871"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, }, - ["Spear"] = { + ["Staff"] = { ["max"] = 18, - ["min"] = 4, + ["min"] = 12, }, - ["Talisman"] = { + ["Wand"] = { ["max"] = 18, - ["min"] = 4, + ["min"] = 12, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "enchant", + ["id"] = "rune.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "augment", }, }, - ["1050105434"] = { - ["1HWeapon"] = { - ["max"] = 90, - ["min"] = 45, + ["2353576063"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "augment", }, + }, + ["2363593824"] = { ["Boots"] = { - ["max"] = 50, - ["min"] = 20, + ["max"] = 12, + ["min"] = 12, }, - ["Chest"] = { - ["max"] = 50, - ["min"] = 20, + ["specialCaseData"] = { }, - ["Focus"] = { - ["max"] = 50, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "rune.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", + ["type"] = "augment", }, - ["Gloves"] = { - ["max"] = 50, - ["min"] = 20, + }, + ["2481353198"] = { + ["Shield"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "augment", + }, + }, + ["2505884597"] = { + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "rune.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "augment", + }, + }, + ["263495202"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 10, + ["max"] = 12, + ["min"] = 12, }, - ["Quarterstaff"] = { - ["max"] = 90, - ["min"] = 45, + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 50, + ["tradeMod"] = { + ["id"] = "rune.stat_263495202", + ["text"] = "#% increased Cost Efficiency", + ["type"] = "augment", + }, + }, + ["2663359259"] = { + ["Gloves"] = { + ["max"] = 20, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "enchant", + ["id"] = "rune.stat_2663359259", + ["text"] = "#% increased total Power counted by Warcries", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["1368271171"] = { + ["2694482655"] = { ["1HMace"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Crossbow"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Flail"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Quarterstaff"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Spear"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Talisman"] = { - ["max"] = 40, - ["min"] = 10, + ["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"] = "enchant.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", - ["type"] = "enchant", + ["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", }, }, - ["1444556985"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, + ["2709367754"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "enchant", + ["id"] = "rune.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "augment", }, }, - ["1519615863"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, + ["2748665614"] = { + ["Helmet"] = { + ["max"] = 3, + ["min"] = 3, }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "rune.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "augment", }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + }, + ["280497929"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 15, + ["specialCaseData"] = { }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "rune.stat_280497929", + ["text"] = "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", + ["type"] = "augment", }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, + ["usePositiveSign"] = true, + }, + ["280731498"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "augment", }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 15, + }, + ["2854751904"] = { + ["1HWeapon"] = { + ["max"] = 20.5, + ["min"] = 20.5, }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "rune.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "augment", }, - ["Talisman"] = { + }, + ["2876843277"] = { + ["Boots"] = { ["max"] = 15, ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "enchant", + ["id"] = "rune.stat_2876843277", + ["text"] = "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", + ["type"] = "augment", }, }, - ["1671376347"] = { - ["Boots"] = { - ["max"] = 22, - ["min"] = 10, + ["2891184298"] = { + ["Gloves"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "augment", }, - ["Chest"] = { - ["max"] = 22, - ["min"] = 10, + }, + ["289128254"] = { + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 8, }, - ["Focus"] = { - ["max"] = 22, - ["min"] = 10, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "augment", }, + }, + ["2901986750"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 5, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 22, - ["min"] = 10, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Helmet"] = { - ["max"] = 22, - ["min"] = 10, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Shield"] = { - ["max"] = 22, - ["min"] = 10, - }, + ["max"] = 5, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "enchant", + ["id"] = "rune.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "augment", }, ["usePositiveSign"] = true, }, - ["1798257884"] = { - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, + ["2910761524"] = { + ["Staff"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "enchant", + ["id"] = "rune.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", + ["type"] = "augment", }, }, - ["185580205"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["2913012734"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_185580205", - ["text"] = "Charms gain # charge per Second", - ["type"] = "enchant", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["1978899297"] = { ["Chest"] = { - ["max"] = -10, - ["min"] = -10, + ["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, }, - ["specialCaseData"] = { + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "enchant", + ["Spear"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["1998951374"] = { - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", - ["type"] = "enchant", + ["id"] = "rune.stat_2913012734", + ["text"] = "Convert #% of Requirements to Intelligence", + ["type"] = "augment", }, }, - ["210067635"] = { + ["2916861134"] = { ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 50, + ["min"] = 50, }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 50, + ["min"] = 50, }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 50, + ["min"] = 50, }, ["2HWeapon"] = { ["max"] = 50, - ["min"] = 5, + ["min"] = 50, }, ["Bow"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 50, + ["min"] = 50, }, ["Claw"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 50, + ["min"] = 50, }, ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 50, + ["min"] = 50, }, ["Flail"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 50, + ["min"] = 50, }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 50, + ["min"] = 50, }, ["Spear"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 50, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "enchant", + ["id"] = "rune.stat_2916861134", + ["text"] = "#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", + ["type"] = "augment", }, }, - ["2223678961"] = { - ["1HMace"] = { - ["max"] = 24, - ["min"] = 24, + ["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"] = 24, - ["min"] = 24, - }, + ["max"] = 30, + ["min"] = 30, + }, ["2HMace"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 30, + ["min"] = 30, + }, ["2HWeapon"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Bow"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Claw"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Crossbow"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Flail"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Quarterstaff"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Spear"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Talisman"] = { - ["max"] = 24, - ["min"] = 24, - }, + ["max"] = 30, + ["min"] = 30, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "enchant", + ["id"] = "rune.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "augment", }, }, - ["2250533757"] = { - ["Boots"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["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"] = "enchant.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "enchant", + ["id"] = "rune.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "augment", }, }, - ["227523295"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["2974417149"] = { + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_227523295", - ["text"] = "# to Maximum Power Charges", - ["type"] = "enchant", + ["id"] = "rune.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["2353576063"] = { - ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, + ["3015669065"] = { + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", - ["type"] = "enchant", + ["id"] = "rune.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "augment", }, }, - ["2481353198"] = { - ["Shield"] = { - ["max"] = 15, - ["min"] = 15, + ["3032590688"] = { + ["Gloves"] = { + ["max"] = 8.5, + ["min"] = 8.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", - ["type"] = "enchant", + ["id"] = "rune.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "augment", }, }, - ["2694482655"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["3057012405"] = { ["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, + ["max"] = 14, + ["min"] = 14, }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "augment", }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 5, + }, + ["3107707789"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 25, }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "rune.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", + ["type"] = "augment", }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, + }, + ["310945763"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "enchant", + ["id"] = "rune.stat_310945763", + ["text"] = "#% increased Life Cost Efficiency", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["280731498"] = { - ["Helmet"] = { - ["max"] = 15, + ["3166958180"] = { + ["Gloves"] = { + ["max"] = 10, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "enchant", + ["id"] = "rune.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "augment", + }, + }, + ["3175163625"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "augment", }, }, - ["2891184298"] = { + ["3261801346"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Flail"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 10, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Spear"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "enchant", + ["id"] = "rune.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["289128254"] = { - ["1HWeapon"] = { + ["3278136794"] = { + ["Staff"] = { ["max"] = 10, - ["min"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", - ["type"] = "enchant", + ["id"] = "rune.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "augment", }, }, - ["2901986750"] = { + ["328541901"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, ["Boots"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Flail"] = { + ["max"] = 10, + ["min"] = 6, + }, ["Focus"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["Spear"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "enchant", + ["id"] = "rune.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "augment", }, ["usePositiveSign"] = true, }, - ["2923486259"] = { + ["3299347043"] = { ["Boots"] = { - ["max"] = 11, - ["min"] = 11, - }, + ["max"] = 40, + ["min"] = 20, + }, ["Chest"] = { - ["max"] = 11, - ["min"] = 11, - }, + ["max"] = 40, + ["min"] = 20, + }, ["Focus"] = { - ["max"] = 11, - ["min"] = 11, - }, + ["max"] = 40, + ["min"] = 20, + }, ["Gloves"] = { - ["max"] = 11, - ["min"] = 11, - }, + ["max"] = 40, + ["min"] = 20, + }, ["Helmet"] = { - ["max"] = 11, - ["min"] = 11, - }, + ["max"] = 40, + ["min"] = 20, + }, ["Shield"] = { - ["max"] = 11, - ["min"] = 11, - }, + ["max"] = 40, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "enchant", + ["id"] = "rune.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "augment", }, ["usePositiveSign"] = true, }, - ["293638271"] = { + ["3336890334"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30.5, + ["min"] = 5.5, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30.5, + ["min"] = 5.5, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30.5, + ["min"] = 5.5, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30.5, + ["min"] = 5.5, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30.5, + ["min"] = 5.5, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30.5, + ["min"] = 5.5, + }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30.5, + ["min"] = 5.5, + }, ["Flail"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30.5, + ["min"] = 5.5, + }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30.5, + ["min"] = 5.5, + }, ["Spear"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30.5, + ["min"] = 5.5, + }, ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 30.5, + ["min"] = 5.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "augment", }, + }, + ["3372524247"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 14, + ["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"] = "enchant.stat_293638271", - ["text"] = "#% increased chance to Shock", - ["type"] = "enchant", + ["id"] = "rune.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "augment", }, }, - ["2968503605"] = { + ["3398787959"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 13, + ["min"] = 13, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 13, + ["min"] = 13, + }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 13, + ["min"] = 13, + }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 13, + ["min"] = 13, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 13, + ["min"] = 13, + }, ["Claw"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 13, + ["min"] = 13, + }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 13, + ["min"] = 13, + }, ["Flail"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 13, + ["min"] = 13, + }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 13, + ["min"] = 13, + }, ["Spear"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 13, + ["min"] = 13, + }, + ["Staff"] = { + ["max"] = 13, + ["min"] = 13, + }, ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, + ["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"] = "enchant.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "enchant", + ["id"] = "rune.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", + ["type"] = "augment", }, }, - ["2974417149"] = { - ["1HWeapon"] = { + ["3473409233"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3473409233", + ["text"] = "Lose #% of maximum Life per second while Sprinting", + ["type"] = "augment", + }, + }, + ["3489782002"] = { + ["Staff"] = { ["max"] = 35, - ["min"] = 20, + ["min"] = 25, }, - ["Quarterstaff"] = { + ["Wand"] = { ["max"] = 35, - ["min"] = 20, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "enchant", + ["id"] = "rune.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["3057012405"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["3523867985"] = { + ["Boots"] = { + ["max"] = 18, + ["min"] = 14, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 18, + ["min"] = 14, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", - ["type"] = "enchant", + ["Focus"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["Gloves"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["Helmet"] = { + ["max"] = 18, + ["min"] = 14, }, - }, - ["3175163625"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, + ["Shield"] = { + ["max"] = 18, + ["min"] = 14, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "enchant", + ["id"] = "rune.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "augment", }, }, - ["3261801346"] = { + ["3537994888"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 50, + ["min"] = 50, }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 50, + ["min"] = 50, }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 50, + ["min"] = 50, }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 50, + ["min"] = 50, }, ["Bow"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 50, + ["min"] = 50, }, ["Claw"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 50, + ["min"] = 50, }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 50, + ["min"] = 50, }, ["Flail"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 50, + ["min"] = 50, }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 50, + ["min"] = 50, }, ["Spear"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 50, + ["min"] = 50, }, ["Staff"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 50, + ["min"] = 50, }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 50, + ["min"] = 50, }, ["Wand"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "enchant", + ["id"] = "rune.stat_3537994888", + ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["328541901"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["3544800472"] = { ["Boots"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 25, + ["min"] = 25, }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 6, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "augment", }, + }, + ["3552135623"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 3, + ["min"] = 3, }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "rune.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "augment", }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 6, + ["usePositiveSign"] = true, + }, + ["3570773271"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Focus"] = { - ["max"] = 15, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 15, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "rune.stat_3570773271", + ["text"] = "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", + ["type"] = "augment", }, + }, + ["3585532255"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 20, + ["min"] = 20, }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 15, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "rune.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "augment", }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 6, + }, + ["3655769732"] = { + ["Chest"] = { + ["max"] = 2, + ["min"] = 2, }, - ["Staff"] = { - ["max"] = 15, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "rune.stat_3655769732", + ["text"] = "#% to Quality of all Skills", + ["type"] = "augment", }, - ["Wand"] = { - ["max"] = 15, - ["min"] = 6, + ["usePositiveSign"] = true, + }, + ["3666934677"] = { + ["Helmet"] = { + ["max"] = 2, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "enchant", + ["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, }, - ["3299347043"] = { + ["3678845069"] = { ["1HMace"] = { - ["max"] = 80, - ["min"] = 80, + ["max"] = 10, + ["min"] = 10, }, ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 80, + ["max"] = 10, + ["min"] = 10, }, ["2HMace"] = { - ["max"] = 80, - ["min"] = 80, + ["max"] = 10, + ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["Boots"] = { - ["max"] = 75, - ["min"] = 30, + ["max"] = 10, + ["min"] = 10, }, ["Bow"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["Chest"] = { - ["max"] = 75, - ["min"] = 30, + ["max"] = 10, + ["min"] = 10, }, ["Claw"] = { - ["max"] = 80, - ["min"] = 80, + ["max"] = 10, + ["min"] = 10, }, ["Crossbow"] = { - ["max"] = 80, - ["min"] = 80, + ["max"] = 10, + ["min"] = 10, }, ["Flail"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["Focus"] = { - ["max"] = 75, - ["min"] = 30, - }, - ["Gloves"] = { - ["max"] = 75, - ["min"] = 30, - }, - ["Helmet"] = { - ["max"] = 75, + ["max"] = 10, ["min"] = 10, }, ["Quarterstaff"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["Shield"] = { - ["max"] = 75, - ["min"] = 30, + ["max"] = 10, + ["min"] = 10, }, ["Spear"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["Staff"] = { - ["max"] = 80, - ["min"] = 80, + ["max"] = 10, + ["min"] = 10, }, ["Talisman"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["Wand"] = { - ["max"] = 80, - ["min"] = 80, + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "enchant", + ["id"] = "rune.stat_3678845069", + ["text"] = "Attacks with this Weapon have #% chance to inflict Exposure", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["3336890334"] = { + ["3695891184"] = { ["1HMace"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 30, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 30, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 30, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 30, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 30, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 30, + ["min"] = 10, + }, ["Crossbow"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 30, + ["min"] = 10, + }, ["Flail"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 30, + ["min"] = 10, + }, ["Quarterstaff"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 30, + ["min"] = 10, + }, ["Spear"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 30, + ["min"] = 10, + }, ["Talisman"] = { - ["max"] = 20.5, - ["min"] = 5.5, + ["max"] = 30, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "augment", + }, + }, + ["3742865955"] = { + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Staff"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "enchant", + ["id"] = "rune.stat_3742865955", + ["text"] = "Minions deal #% increased Damage with Command Skills", + ["type"] = "augment", }, }, - ["3372524247"] = { + ["3759663284"] = { + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "augment", + }, + }, + ["3801067695"] = { ["Boots"] = { - ["max"] = 22, + ["max"] = 10, ["min"] = 10, }, ["Chest"] = { - ["max"] = 22, + ["max"] = 10, ["min"] = 10, }, ["Focus"] = { - ["max"] = 22, + ["max"] = 10, ["min"] = 10, }, ["Gloves"] = { - ["max"] = 22, + ["max"] = 10, ["min"] = 10, }, ["Helmet"] = { - ["max"] = 22, + ["max"] = 10, ["min"] = 10, }, ["Shield"] = { - ["max"] = 22, + ["max"] = 10, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "enchant", + ["id"] = "rune.stat_3801067695", + ["text"] = "#% reduced effect of Shock on you", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["3377888098"] = { - ["Helmet"] = { + ["3824372849"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "augment", + }, + }, + ["3850614073"] = { + ["1HWeapon"] = { ["max"] = 8, ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "enchant", + ["id"] = "rune.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["3398787959"] = { - ["1HMace"] = { - ["max"] = 13, - ["min"] = 13, + ["3855016469"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, }, - ["1HWeapon"] = { - ["max"] = 13, - ["min"] = 13, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, }, - ["2HMace"] = { - ["max"] = 13, - ["min"] = 13, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 13, - ["min"] = 13, + ["tradeMod"] = { + ["id"] = "rune.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["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"] = 13, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Claw"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Crossbow"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Flail"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Quarterstaff"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Spear"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 30, + }, ["Talisman"] = { - ["max"] = 13, - ["min"] = 13, - }, + ["max"] = 30, + ["min"] = 30, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", - ["type"] = "enchant", + ["id"] = "rune.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "augment", }, }, - ["3676141501"] = { - ["Helmet"] = { + ["3885405204"] = { + ["Bow"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { - }, + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", - ["type"] = "enchant", + ["id"] = "rune.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["3695891184"] = { + ["3885634897"] = { ["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"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "augment", + }, + }, + ["3897831687"] = { + ["Gloves"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3897831687", + ["text"] = "#% of Armour also applies to Fire Damage", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3903510399"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3903510399", + ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", + ["type"] = "augment", + }, + }, + ["3917489142"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "augment", }, - ["Talisman"] = { - ["max"] = 45, - ["min"] = 15, + }, + ["3973629633"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", - ["type"] = "enchant", + ["id"] = "rune.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "augment", }, }, - ["387439868"] = { + ["3981240776"] = { ["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"] = "rune.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3984865854"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, }, + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["id"] = "enchant.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", - ["type"] = "enchant", + ["id"] = "rune.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "augment", }, }, - ["3885405204"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["4010677958"] = { + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "enchant.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "enchant", + ["id"] = "rune.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "augment", }, }, - ["3885634897"] = { + ["4064396395"] = { ["1HMace"] = { ["max"] = 15, ["min"] = 15, @@ -14460,628 +36196,1035 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3885634897", - ["text"] = "#% chance to Poison on Hit with this weapon", - ["type"] = "enchant", + ["id"] = "rune.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "augment", }, }, - ["3917489142"] = { + ["4080418644"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 10, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Flail"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 10, + ["max"] = 10, + ["min"] = 6, + }, + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Spear"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["4095671657"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["416040624"] = { + ["Staff"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 14, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "enchant", + ["id"] = "rune.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "augment", }, }, - ["3981240776"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, + ["4220027924"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "augment", }, + ["usePositiveSign"] = true, + }, + ["4236566306"] = { + ["1HMace"] = { + ["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"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "augment", + }, + }, + ["426207520"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["4282982513"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4282982513", + ["text"] = "Increases and Reductions to Movement Speed also apply to Energy Shield Recharge Rate", + ["type"] = "augment", + }, + }, + ["458438597"] = { + ["Chest"] = { ["max"] = 15, ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "enchant", + ["id"] = "rune.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["3984865854"] = { + ["473429811"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 30, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["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_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "augment", + }, + }, + ["554899692"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3984865854", - ["text"] = "#% increased Spirit", - ["type"] = "enchant", + ["id"] = "rune.stat_554899692", + ["text"] = "# Charm Slot (Global)", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["4080418644"] = { + ["55876295"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["Bow"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["Claw"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["Flail"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["Spear"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Staff"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 15, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "enchant", + ["id"] = "rune.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["4095671657"] = { - ["Gloves"] = { + ["594547430"] = { + ["Helmet"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "enchant", + ["id"] = "rune.stat_594547430", + ["text"] = "Remove a Damaging Ailment when you use a Command Skill", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["4220027924"] = { - ["Boots"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 22, - ["min"] = 10, - }, + ["624954515"] = { ["Gloves"] = { - ["max"] = 22, - ["min"] = 10, + ["max"] = 15, + ["min"] = 15, }, - ["Helmet"] = { - ["max"] = 22, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 22, + ["tradeMod"] = { + ["id"] = "rune.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "augment", + }, + }, + ["649025131"] = { + ["Boots"] = { + ["max"] = 10, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "enchant", + ["id"] = "rune.stat_649025131", + ["text"] = "#% increased Movement Speed when on Low Life", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["4236566306"] = { + ["669069897"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 2.5, + ["min"] = 1.5, }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 2.5, + ["min"] = 1.5, }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 2.5, + ["min"] = 1.5, }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 2.5, + ["min"] = 1.5, }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 2.5, + ["min"] = 1.5, }, ["Claw"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 2.5, + ["min"] = 1.5, }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 2.5, + ["min"] = 1.5, }, ["Flail"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 2.5, + ["min"] = 1.5, }, ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 2.5, + ["min"] = 1.5, }, ["Spear"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 2.5, + ["min"] = 1.5, }, ["Talisman"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 2.5, + ["min"] = 1.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", - ["type"] = "enchant", + ["id"] = "rune.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "augment", }, }, - ["44972811"] = { - ["Shield"] = { - ["max"] = 50, - ["min"] = 50, + ["681332047"] = { + ["Gloves"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "enchant", + ["id"] = "rune.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "augment", }, }, - ["473429811"] = { + ["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"] = 30, - ["min"] = 30, + ["max"] = 110, + ["min"] = 50, }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 110, + ["min"] = 50, }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 110, + ["min"] = 50, }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 110, + ["min"] = 50, }, ["Bow"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 110, + ["min"] = 50, }, ["Claw"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 110, + ["min"] = 50, }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 110, + ["min"] = 50, }, ["Flail"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 110, + ["min"] = 50, }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 110, + ["min"] = 50, }, ["Spear"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 110, + ["min"] = 50, }, ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 110, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_473429811", - ["text"] = "#% increased Freeze Buildup", - ["type"] = "enchant", + ["id"] = "rune.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, ["709508406"] = { ["1HMace"] = { - ["max"] = 18.5, + ["max"] = 28.5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "augment", + }, + }, + ["731403740"] = { + ["1HMace"] = { + ["max"] = 5, ["min"] = 5, }, ["1HWeapon"] = { - ["max"] = 18.5, + ["max"] = 5, ["min"] = 5, }, ["2HMace"] = { - ["max"] = 18.5, + ["max"] = 5, ["min"] = 5, }, ["2HWeapon"] = { - ["max"] = 18.5, + ["max"] = 5, ["min"] = 5, }, ["Bow"] = { - ["max"] = 18.5, + ["max"] = 5, ["min"] = 5, }, ["Claw"] = { - ["max"] = 18.5, + ["max"] = 5, ["min"] = 5, }, ["Crossbow"] = { - ["max"] = 18.5, + ["max"] = 5, ["min"] = 5, }, ["Flail"] = { - ["max"] = 18.5, + ["max"] = 5, ["min"] = 5, }, ["Quarterstaff"] = { - ["max"] = 18.5, + ["max"] = 5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 5, ["min"] = 5, }, - ["Spear"] = { - ["max"] = 18.5, + ["Staff"] = { + ["max"] = 5, ["min"] = 5, }, ["Talisman"] = { - ["max"] = 18.5, + ["max"] = 5, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 5, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_709508406", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "enchant", + ["id"] = "rune.stat_731403740", + ["text"] = "Gain #% of Damage as Extra Damage of all Elements", + ["type"] = "augment", }, }, ["737908626"] = { - ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 16, - }, - ["Quarterstaff"] = { - ["max"] = 28, - ["min"] = 16, - }, + ["Staff"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 24, + ["min"] = 16, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_737908626", + ["id"] = "rune.stat_737908626", ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "enchant", + ["type"] = "augment", }, }, - ["789117908"] = { - ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 20, - }, + ["757050353"] = { ["Boots"] = { - ["max"] = 21, - ["min"] = 12, + ["max"] = 50.5, + ["min"] = 50.5, }, ["Chest"] = { - ["max"] = 21, - ["min"] = 12, + ["max"] = 50.5, + ["min"] = 50.5, }, ["Focus"] = { - ["max"] = 21, - ["min"] = 12, + ["max"] = 50.5, + ["min"] = 50.5, }, ["Gloves"] = { - ["max"] = 21, - ["min"] = 12, + ["max"] = 50.5, + ["min"] = 50.5, }, ["Helmet"] = { - ["max"] = 21, - ["min"] = 12, - }, - ["Quarterstaff"] = { - ["max"] = 35, - ["min"] = 20, + ["max"] = 50.5, + ["min"] = 50.5, }, ["Shield"] = { - ["max"] = 21, + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_757050353", + ["text"] = "# to # Lightning Thorns damage", + ["type"] = "augment", + }, + }, + ["770672621"] = { + ["Helmet"] = { + ["max"] = 12, ["min"] = 12, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_789117908", + ["id"] = "rune.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "augment", + }, + }, + ["782230869"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_782230869", + ["text"] = "#% increased Magnitude of Non-Damaging Ailments you inflict", + ["type"] = "augment", + }, + }, + ["789117908"] = { + ["Boots"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Chest"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Focus"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Gloves"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Helmet"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Shield"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Staff"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_789117908", ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "enchant", + ["type"] = "augment", }, }, ["791928121"] = { ["1HMace"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Crossbow"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Flail"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Spear"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Talisman"] = { - ["max"] = 50, - ["min"] = 20, + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "augment", + }, + }, + ["836936635"] = { + ["Boots"] = { + ["max"] = 0.35, + ["min"] = 0.25, + }, + ["Chest"] = { + ["max"] = 1.5, + ["min"] = 0.25, + }, + ["Focus"] = { + ["max"] = 0.35, + ["min"] = 0.25, + }, + ["Gloves"] = { + ["max"] = 0.35, + ["min"] = 0.25, + }, + ["Helmet"] = { + ["max"] = 0.35, + ["min"] = 0.25, + }, + ["Shield"] = { + ["max"] = 0.35, + ["min"] = 0.25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "augment", + }, + }, + ["889552744"] = { + ["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"] = "enchant.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "enchant", + ["id"] = "rune.stat_889552744", + ["text"] = "Minions take #% of Physical Damage as Lightning Damage", + ["type"] = "augment", }, }, - ["803737631"] = { + ["915264788"] = { ["Helmet"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "enchant", + ["id"] = "rune.stat_915264788", + ["text"] = "#% increased Thorns Critical Hit Chance", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["836936635"] = { + ["915769802"] = { ["Boots"] = { - ["max"] = 0.5, - ["min"] = 0.35, + ["max"] = 80, + ["min"] = 40, }, ["Chest"] = { - ["max"] = 1.5, - ["min"] = 0.35, + ["max"] = 80, + ["min"] = 40, }, ["Focus"] = { - ["max"] = 0.5, - ["min"] = 0.35, + ["max"] = 80, + ["min"] = 40, }, ["Gloves"] = { - ["max"] = 0.5, - ["min"] = 0.35, + ["max"] = 80, + ["min"] = 40, }, ["Helmet"] = { - ["max"] = 0.5, - ["min"] = 0.35, + ["max"] = 80, + ["min"] = 40, }, ["Shield"] = { - ["max"] = 0.5, - ["min"] = 0.35, + ["max"] = 80, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", - ["type"] = "enchant", + ["id"] = "rune.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, ["924253255"] = { ["Boots"] = { - ["max"] = -15, - ["min"] = -15, + ["max"] = -15, + ["min"] = -15, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "augment", }, - ["Chest"] = { - ["max"] = -50, - ["min"] = -50, + }, + ["935518591"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "enchant", + ["id"] = "rune.stat_935518591", + ["text"] = "Critical Hit chance is Lucky against Parried enemies", + ["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, + ["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"] = "enchant.stat_970213192", - ["text"] = "#% increased Skill Speed", - ["type"] = "enchant", + ["id"] = "rune.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "augment", }, }, }, diff --git a/src/Data/trade_site_stats.json b/src/Data/trade_site_stats.json new file mode 100644 index 000000000..83a1bc2ae --- /dev/null +++ b/src/Data/trade_site_stats.json @@ -0,0 +1,32204 @@ +{ + "result": [ + { + "id": "pseudo", + "label": "Pseudo", + "entries": [ + { + "id": "pseudo.pseudo_total_cold_resistance", + "text": "+#% total to Cold Resistance", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_total_fire_resistance", + "text": "+#% total to Fire Resistance", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_total_lightning_resistance", + "text": "+#% total to Lightning Resistance", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_total_elemental_resistance", + "text": "+#% total Elemental Resistance", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_total_chaos_resistance", + "text": "+#% total to Chaos Resistance", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_total_resistance", + "text": "+#% total Resistance", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_count_resistances", + "text": "# total Resistances", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_count_elemental_resistances", + "text": "# total Elemental Resistances", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_total_all_elemental_resistances", + "text": "+#% total to all Elemental Resistances", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_total_strength", + "text": "+# total to Strength", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_total_dexterity", + "text": "+# total to Dexterity", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_total_intelligence", + "text": "+# total to Intelligence", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_total_all_attributes", + "text": "+# total to all Attributes", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_total_attributes", + "text": "+# total to Attributes", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_total_life", + "text": "+# total maximum Life", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_total_mana", + "text": "+# total maximum Mana", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_total_energy_shield", + "text": "+# total maximum Energy Shield", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_increased_energy_shield", + "text": "#% total increased maximum Energy Shield", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_increased_movement_speed", + "text": "#% increased Movement Speed", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_enchant_mods", + "text": "# Enchant Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_implicit_mods", + "text": "# Implicit Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_prefix_mods", + "text": "# Prefix Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_suffix_mods", + "text": "# Suffix Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_affix_mods", + "text": "# Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_desecrated_prefix_mods", + "text": "# Desecrated Prefix Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_desecrated_suffix_mods", + "text": "# Desecrated Suffix Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_desecrated_mods", + "text": "# Desecrated Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_unrevealed_prefix_mods", + "text": "# Unrevealed Prefix Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_unrevealed_suffix_mods", + "text": "# Unrevealed Suffix Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_unrevealed_mods", + "text": "# Unrevealed Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_empty_prefix_mods", + "text": "# Empty Prefix Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_empty_suffix_mods", + "text": "# Empty Suffix Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_empty_affix_mods", + "text": "# Empty Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_fractured_mods", + "text": "# Fractured Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_crafted_mods", + "text": "# Crafted Modifiers", + "type": "pseudo" + }, + { + "id": "pseudo.pseudo_number_of_uses_remaining", + "text": "# uses remaining (Tablets)", + "type": "pseudo" + } + ] + }, + { + "id": "explicit", + "label": "Explicit", + "entries": [ + { + "id": "explicit.stat_1050105434", + "text": "# to maximum Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_3299347043", + "text": "# to maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_3372524247", + "text": "#% to Fire Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_4220027924", + "text": "#% to Cold Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_1671376347", + "text": "#% to Lightning Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_3917489142", + "text": "#% increased Rarity of Items found", + "type": "explicit" + }, + { + "id": "explicit.stat_328541901", + "text": "# to Intelligence", + "type": "explicit" + }, + { + "id": "explicit.stat_3261801346", + "text": "# to Dexterity", + "type": "explicit" + }, + { + "id": "explicit.stat_4080418644", + "text": "# to Strength", + "type": "explicit" + }, + { + "id": "explicit.stat_3325883026", + "text": "# Life Regeneration per second", + "type": "explicit" + }, + { + "id": "explicit.stat_789117908", + "text": "#% increased Mana Regeneration Rate", + "type": "explicit" + }, + { + "id": "explicit.stat_803737631", + "text": "# to Accuracy Rating", + "type": "explicit" + }, + { + "id": "explicit.stat_2974417149", + "text": "#% increased Spell Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_4052037485", + "text": "# to maximum Energy Shield (Local)", + "type": "explicit" + }, + { + "id": "explicit.stat_3032590688", + "text": "Adds # to # Physical Damage to Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_4015621042", + "text": "#% increased Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2891184298", + "text": "#% increased Cast Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_1368271171", + "text": "Gain # Mana per enemy killed", + "type": "explicit" + }, + { + "id": "explicit.stat_3695891184", + "text": "Gain # Life per enemy killed", + "type": "explicit" + }, + { + "id": "explicit.stat_2901986750", + "text": "#% to all Elemental Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_915769802", + "text": "# to Stun Threshold", + "type": "explicit" + }, + { + "id": "explicit.stat_1509134228", + "text": "#% increased Physical Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3639275092", + "text": "#% increased Attribute Requirements", + "type": "explicit" + }, + { + "id": "explicit.stat_53045048", + "text": "# to Evasion Rating (Local)", + "type": "explicit" + }, + { + "id": "explicit.stat_2923486259", + "text": "#% to Chaos Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_2482852589", + "text": "#% increased maximum Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_3981240776", + "text": "# to Spirit", + "type": "explicit" + }, + { + "id": "explicit.stat_2250533757", + "text": "#% increased Movement Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_691932474", + "text": "# to Accuracy Rating (Local)", + "type": "explicit" + }, + { + "id": "explicit.stat_1754445556", + "text": "Adds # to # Lightning damage to Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_2231156303", + "text": "#% increased Lightning Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3489782002", + "text": "# to maximum Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2144192055", + "text": "# to Evasion Rating", + "type": "explicit" + }, + { + "id": "explicit.stat_1263695895", + "text": "#% increased Light Radius", + "type": "explicit" + }, + { + "id": "explicit.stat_4067062424", + "text": "Adds # to # Cold damage to Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_124859000", + "text": "#% increased Evasion Rating (Local)", + "type": "explicit" + }, + { + "id": "explicit.stat_2106365538", + "text": "#% increased Evasion Rating", + "type": "explicit" + }, + { + "id": "explicit.stat_3291658075", + "text": "#% increased Cold Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1573130764", + "text": "Adds # to # Fire damage to Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_587431675", + "text": "#% increased Critical Hit Chance", + "type": "explicit" + }, + { + "id": "explicit.stat_1379411836", + "text": "# to all Attributes", + "type": "explicit" + }, + { + "id": "explicit.stat_3484657501", + "text": "# to Armour (Local)", + "type": "explicit" + }, + { + "id": "explicit.stat_1940865751", + "text": "Adds # to # Physical Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2866361420", + "text": "#% increased Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_3556824919", + "text": "#% increased Critical Damage Bonus", + "type": "explicit" + }, + { + "id": "explicit.stat_1062208444", + "text": "#% increased Armour (Local)", + "type": "explicit" + }, + { + "id": "explicit.stat_1999113824", + "text": "#% increased Evasion and Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_3962278098", + "text": "#% increased Fire Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3336890334", + "text": "Adds # to # Lightning Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2881298780", + "text": "# to # Physical Thorns damage", + "type": "explicit" + }, + { + "id": "explicit.stat_736967255", + "text": "#% increased Chaos Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3321629045", + "text": "#% increased Armour and Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2451402625", + "text": "#% increased Armour and Evasion", + "type": "explicit" + }, + { + "id": "explicit.stat_709508406", + "text": "Adds # to # Fire Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3873704640", + "text": "#% increased Magic Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_1037193709", + "text": "Adds # to # Cold Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3793155082", + "text": "#% increased Rare Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_2968503605", + "text": "#% increased Flammability Magnitude", + "type": "explicit" + }, + { + "id": "explicit.stat_737908626", + "text": "#% increased Critical Hit Chance for Spells", + "type": "explicit" + }, + { + "id": "explicit.stat_210067635", + "text": "#% increased Attack Speed (Local)", + "type": "explicit" + }, + { + "id": "explicit.stat_1202301673", + "text": "# to Level of all Projectile Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_681332047", + "text": "#% increased Attack Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_9187492", + "text": "# to Level of all Melee Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1276056105", + "text": "#% increased Gold found in this Area (Gold Piles)", + "type": "explicit" + }, + { + "id": "explicit.stat_1276056105", + "text": "#% increased Gold found in your Maps (Gold Piles)", + "type": "explicit" + }, + { + "id": "explicit.stat_387439868", + "text": "#% increased Elemental Damage with Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_2162097452", + "text": "# to Level of all Minion Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_274716455", + "text": "#% increased Critical Spell Damage Bonus", + "type": "explicit" + }, + { + "id": "explicit.stat_518292764", + "text": "#% to Critical Hit Chance", + "type": "explicit" + }, + { + "id": "explicit.stat_2694482655", + "text": "#% to Critical Damage Bonus", + "type": "explicit" + }, + { + "id": "explicit.stat_3141070085", + "text": "#% increased Elemental Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_707457662", + "text": "Leech #% of Physical Attack Damage as Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_3759663284", + "text": "#% increased Projectile Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_2557965901", + "text": "Leech #% of Physical Attack Damage as Life", + "type": "explicit" + }, + { + "id": "explicit.stat_809229260", + "text": "# to Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_124131830", + "text": "# to Level of all Spell Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1389754388", + "text": "#% increased Charm Effect Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_1444556985", + "text": "#% of Damage taken Recouped as Life", + "type": "explicit" + }, + { + "id": "explicit.stat_3278136794", + "text": "Gain #% of Damage as Extra Lightning Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_669069897", + "text": "Leeches #% of Physical Damage as Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_55876295", + "text": "Leeches #% of Physical Damage as Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2194114101", + "text": "#% increased Critical Hit Chance for Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_2339757871", + "text": "#% increased Energy Shield Recharge Rate", + "type": "explicit" + }, + { + "id": "explicit.stat_3714003708", + "text": "#% increased Critical Damage Bonus for Attack Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1589917703", + "text": "Minions deal #% increased Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2505884597", + "text": "Gain #% of Damage as Extra Cold Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3015669065", + "text": "Gain #% of Damage as Extra Fire Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1839076647", + "text": "#% increased Projectile Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_57434274", + "text": "#% increased Experience gain", + "type": "explicit" + }, + { + "id": "explicit.stat_57434274", + "text": "#% increased Experience gain in your Maps", + "type": "explicit" + }, + { + "id": "explicit.stat_770672621", + "text": "Minions have #% increased maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_293638271", + "text": "#% increased chance to Shock", + "type": "explicit" + }, + { + "id": "explicit.stat_3984865854", + "text": "#% increased Spirit", + "type": "explicit" + }, + { + "id": "explicit.stat_1782086450", + "text": "#% faster start of Energy Shield Recharge", + "type": "explicit" + }, + { + "id": "explicit.stat_821021828", + "text": "Grants # Life per Enemy Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_2112395885", + "text": "#% increased amount of Life Leeched", + "type": "explicit" + }, + { + "id": "explicit.stat_239367161", + "text": "#% increased Stun Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_2843214518", + "text": "#% increased Attack Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1714706956", + "text": "#% increased Magic Pack Size", + "type": "explicit" + }, + { + "id": "explicit.stat_1836676211", + "text": "#% increased Flask Charges gained", + "type": "explicit" + }, + { + "id": "explicit.stat_2624927319", + "text": "#% increased number of Monster Packs", + "type": "explicit" + }, + { + "id": "explicit.stat_2624927319", + "text": "#% increased number of Monster Packs in your Maps", + "type": "explicit" + }, + { + "id": "explicit.stat_3417711605", + "text": "Damage Penetrates #% Cold Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_624954515", + "text": "#% increased Accuracy Rating", + "type": "explicit" + }, + { + "id": "explicit.stat_3585532255", + "text": "#% increased Charm Charges gained", + "type": "explicit" + }, + { + "id": "explicit.stat_51994685", + "text": "#% increased Flask Life Recovery rate", + "type": "explicit" + }, + { + "id": "explicit.stat_473429811", + "text": "#% increased Freeze Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_791928121", + "text": "Causes #% increased Stun Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_748522257", + "text": "#% increased Stun Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_1545858329", + "text": "# to Level of all Lightning Spell Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1412217137", + "text": "#% increased Flask Mana Recovery rate", + "type": "explicit" + }, + { + "id": "explicit.stat_44972811", + "text": "#% increased Life Regeneration rate", + "type": "explicit" + }, + { + "id": "explicit.stat_680068163", + "text": "#% increased Stun Threshold", + "type": "explicit" + }, + { + "id": "explicit.stat_2487305362", + "text": "#% increased Magnitude of Poison you inflict", + "type": "explicit" + }, + { + "id": "explicit.stat_2481353198", + "text": "#% increased Block chance (Local)", + "type": "explicit" + }, + { + "id": "explicit.stat_472520716", + "text": "#% of Damage taken Recouped as Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_3791899485", + "text": "#% increased Ignite Magnitude", + "type": "explicit" + }, + { + "id": "explicit.stat_4188894176", + "text": "#% increased Damage with Bows", + "type": "explicit" + }, + { + "id": "explicit.stat_2306002879", + "text": "#% increased Rarity of Items found", + "type": "explicit" + }, + { + "id": "explicit.stat_1241625305", + "text": "#% increased Damage with Bow Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_818778753", + "text": "Damage Penetrates #% Lightning Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_1002362373", + "text": "#% increased Melee Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1310194496", + "text": "#% increased Global Physical Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2023107756", + "text": "Recover #% of maximum Life on Kill", + "type": "explicit" + }, + { + "id": "explicit.stat_427684353", + "text": "#% increased Damage with Crossbows", + "type": "explicit" + }, + { + "id": "explicit.stat_280731498", + "text": "#% increased Area of Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_2390685262", + "text": "#% increased Quantity of Items found", + "type": "explicit" + }, + { + "id": "explicit.stat_2748665614", + "text": "#% increased maximum Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_2777224821", + "text": "#% increased Quantity of Waystones found", + "type": "explicit" + }, + { + "id": "explicit.stat_4045894391", + "text": "#% increased Damage with Quarterstaves", + "type": "explicit" + }, + { + "id": "explicit.stat_821241191", + "text": "#% increased Life Recovery from Flasks", + "type": "explicit" + }, + { + "id": "explicit.stat_1366840608", + "text": "#% increased Charges", + "type": "explicit" + }, + { + "id": "explicit.stat_4147897060", + "text": "#% increased Block chance", + "type": "explicit" + }, + { + "id": "explicit.stat_3091578504", + "text": "Minions have #% increased Attack and Cast Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_2709367754", + "text": "Gain # Rage on Melee Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_2174054121", + "text": "#% chance to inflict Bleeding on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_3759735052", + "text": "#% increased Attack Speed with Bows", + "type": "explicit" + }, + { + "id": "explicit.stat_983749596", + "text": "#% increased maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_986397080", + "text": "#% reduced Ignite Duration on you", + "type": "explicit" + }, + { + "id": "explicit.stat_3668351662", + "text": "#% increased Shock Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_1423639565", + "text": "Minions have #% to all Elemental Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_1692879867", + "text": "#% increased Duration of Bleeding on You", + "type": "explicit" + }, + { + "id": "explicit.stat_416040624", + "text": "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_3292710273", + "text": "Gain # Rage when Hit by an Enemy", + "type": "explicit" + }, + { + "id": "explicit.stat_2029171424", + "text": "Players are periodically Cursed with Enfeeble", + "type": "explicit" + }, + { + "id": "explicit.stat_1316278494", + "text": "#% increased Warcry Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_1829102168", + "text": "#% increased Duration of Damaging Ailments on Enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_4101943684", + "text": "Monsters have #% increased Stun Threshold", + "type": "explicit" + }, + { + "id": "explicit.stat_1994551050", + "text": "Monsters have #% increased Ailment Threshold", + "type": "explicit" + }, + { + "id": "explicit.stat_2222186378", + "text": "#% increased Mana Recovery from Flasks", + "type": "explicit" + }, + { + "id": "explicit.stat_591105508", + "text": "# to Level of all Fire Spell Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1054098949", + "text": "+#% Monster Elemental Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_1135928777", + "text": "#% increased Attack Speed with Crossbows", + "type": "explicit" + }, + { + "id": "explicit.stat_795138349", + "text": "#% chance to Poison on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_644456512", + "text": "#% reduced Flask Charges used", + "type": "explicit" + }, + { + "id": "explicit.stat_99927264", + "text": "#% reduced Shock duration on you", + "type": "explicit" + }, + { + "id": "explicit.stat_57326096", + "text": "Monsters have #% Critical Damage Bonus", + "type": "explicit" + }, + { + "id": "explicit.stat_95249895", + "text": "#% more Monster Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2753083623", + "text": "Monsters have #% increased Critical Hit Chance", + "type": "explicit" + }, + { + "id": "explicit.stat_554690751", + "text": "Players are periodically Cursed with Elemental Weakness", + "type": "explicit" + }, + { + "id": "explicit.stat_211727", + "text": "Monsters deal #% of Damage as Extra Cold", + "type": "explicit" + }, + { + "id": "explicit.stat_512071314", + "text": "Monsters deal #% of Damage as Extra Lightning", + "type": "explicit" + }, + { + "id": "explicit.stat_1629357380", + "text": "Players are periodically Cursed with Temporal Chains", + "type": "explicit" + }, + { + "id": "explicit.stat_92381065", + "text": "Monsters deal #% of Damage as Extra Fire", + "type": "explicit" + }, + { + "id": "explicit.stat_3909654181", + "text": "Monsters have #% increased Attack, Cast and Movement Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_3301100256", + "text": "#% increased Poison Duration on you", + "type": "explicit" + }, + { + "id": "explicit.stat_3067892458", + "text": "Triggered Spells deal #% increased Spell Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1890519597", + "text": "#% increased Monster Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3544800472", + "text": "#% increased Elemental Ailment Threshold", + "type": "explicit" + }, + { + "id": "explicit.stat_3196823591", + "text": "#% increased Charges gained", + "type": "explicit" + }, + { + "id": "explicit.stat_2839066308", + "text": "#% increased amount of Mana Leeched", + "type": "explicit" + }, + { + "id": "explicit.stat_798469000", + "text": "#% increased amount of Rare Chests", + "type": "explicit" + }, + { + "id": "explicit.stat_388617051", + "text": "#% increased Charges per use", + "type": "explicit" + }, + { + "id": "explicit.stat_2898517796", + "text": "#% increased amount of Magic Chests", + "type": "explicit" + }, + { + "id": "explicit.stat_3283482523", + "text": "#% increased Attack Speed with Quarterstaves", + "type": "explicit" + }, + { + "id": "explicit.stat_3174700878", + "text": "#% increased Energy Shield from Equipped Focus", + "type": "explicit" + }, + { + "id": "explicit.stat_1798257884", + "text": "Allies in your Presence deal #% increased Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3377888098", + "text": "#% increased Skill Effect Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_4159248054", + "text": "#% increased Warcry Cooldown Recovery Rate", + "type": "explicit" + }, + { + "id": "explicit.stat_3374165039", + "text": "#% increased Totem Placement speed", + "type": "explicit" + }, + { + "id": "explicit.stat_4010677958", + "text": "Allies in your Presence Regenerate # Life per second", + "type": "explicit" + }, + { + "id": "explicit.stat_1181419800", + "text": "#% increased Damage with Maces", + "type": "explicit" + }, + { + "id": "explicit.stat_3851254963", + "text": "#% increased Totem Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2321178454", + "text": "#% chance to Pierce an Enemy", + "type": "explicit" + }, + { + "id": "explicit.stat_2160282525", + "text": "#% reduced Freeze Duration on you", + "type": "explicit" + }, + { + "id": "explicit.stat_1874553720", + "text": "#% reduced Chill Duration on you", + "type": "explicit" + }, + { + "id": "explicit.stat_872504239", + "text": "#% increased Stun Buildup with Maces", + "type": "explicit" + }, + { + "id": "explicit.stat_2653955271", + "text": "Damage Penetrates #% Fire Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_440490623", + "text": "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_3741323227", + "text": "#% increased Flask Effect Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_565784293", + "text": "#% increased Knockback Distance", + "type": "explicit" + }, + { + "id": "explicit.stat_4181072906", + "text": "Players have #% less Recovery Rate of Life and Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_686254215", + "text": "#% increased Totem Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2254480358", + "text": "# to Level of all Cold Spell Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_153777645", + "text": "#% increased Area of Effect of Curses", + "type": "explicit" + }, + { + "id": "explicit.stat_21071013", + "text": "Herald Skills deal #% increased Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3233599707", + "text": "#% increased Weapon Swap Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_1570770415", + "text": "#% reduced Charm Charges used", + "type": "explicit" + }, + { + "id": "explicit.stat_2527686725", + "text": "#% increased Magnitude of Shock you inflict", + "type": "explicit" + }, + { + "id": "explicit.stat_3166958180", + "text": "#% increased Magnitude of Bleeding you inflict", + "type": "explicit" + }, + { + "id": "explicit.stat_1852872083", + "text": "#% increased Damage with Hits against Rare and Unique Enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_1303248024", + "text": "#% increased Magnitude of Ailments you inflict", + "type": "explicit" + }, + { + "id": "explicit.stat_700317374", + "text": "#% increased Amount Recovered", + "type": "explicit" + }, + { + "id": "explicit.stat_3119612865", + "text": "Minions have #% additional Physical Damage Reduction", + "type": "explicit" + }, + { + "id": "explicit.stat_133340941", + "text": "Area has patches of Ignited Ground", + "type": "explicit" + }, + { + "id": "explicit.stat_3998863698", + "text": "Monsters have #% increased Freeze Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_3376488707", + "text": "#% maximum Player Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_2508044078", + "text": "Monsters inflict #% increased Flammability Magnitude", + "type": "explicit" + }, + { + "id": "explicit.stat_1898978455", + "text": "Monster Damage Penetrates #% Elemental Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_2768835289", + "text": "#% increased Spell Physical Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_627767961", + "text": "#% increased Damage while you have an active Charm", + "type": "explicit" + }, + { + "id": "explicit.stat_115425161", + "text": "Monsters have #% increased Stun Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_2582079000", + "text": "# Charm Slot", + "type": "explicit" + }, + { + "id": "explicit.stat_95221307", + "text": "Monsters have #% chance to Poison on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_2570249991", + "text": "Monsters are Evasive", + "type": "explicit" + }, + { + "id": "explicit.stat_2549889921", + "text": "Players gain #% reduced Flask Charges", + "type": "explicit" + }, + { + "id": "explicit.stat_337935900", + "text": "Monsters take #% reduced Extra Damage from Critical Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_2887760183", + "text": "Monsters gain #% of maximum Life as Extra maximum Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2506820610", + "text": "Monsters have #% chance to inflict Bleeding on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_3169585282", + "text": "Allies in your Presence have # to Accuracy Rating", + "type": "explicit" + }, + { + "id": "explicit.stat_3787460122", + "text": "Offerings have #% increased Maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2539290279", + "text": "Monsters are Armoured", + "type": "explicit" + }, + { + "id": "explicit.stat_1718147982", + "text": "#% increased Minion Accuracy Rating", + "type": "explicit" + }, + { + "id": "explicit.stat_3477720557", + "text": "Area has patches of Shocked Ground", + "type": "explicit" + }, + { + "id": "explicit.stat_349586058", + "text": "Area has patches of Chilled Ground", + "type": "explicit" + }, + { + "id": "explicit.stat_1604736568", + "text": "Recover #% of maximum Mana on Kill (Jewel)", + "type": "explicit" + }, + { + "id": "explicit.stat_2017682521", + "text": "#% increased Pack Size", + "type": "explicit" + }, + { + "id": "explicit.stat_1854213750", + "text": "Minions have #% increased Critical Damage Bonus", + "type": "explicit" + }, + { + "id": "explicit.stat_2347036682", + "text": "Allies in your Presence deal # to # added Attack Cold Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2797971005", + "text": "Gain # Life per Enemy Hit with Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_3485067555", + "text": "#% increased Chill Duration on Enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_4236566306", + "text": "Meta Skills gain #% increased Energy", + "type": "explicit" + }, + { + "id": "explicit.stat_689816330", + "text": "Area has #% increased chance to contain Shrines", + "type": "explicit" + }, + { + "id": "explicit.stat_689816330", + "text": "#% increased chance of Shrines", + "type": "explicit" + }, + { + "id": "explicit.stat_491450213", + "text": "Minions have #% increased Critical Hit Chance", + "type": "explicit" + }, + { + "id": "explicit.stat_1873752457", + "text": "Gains # Charges per Second", + "type": "explicit" + }, + { + "id": "explicit.stat_169946467", + "text": "#% increased Accuracy Rating with Bows", + "type": "explicit" + }, + { + "id": "explicit.stat_4279535856", + "text": "Area has #% increased chance to contain Strongboxes", + "type": "explicit" + }, + { + "id": "explicit.stat_4279535856", + "text": "#% increased chance of Strongboxes", + "type": "explicit" + }, + { + "id": "explicit.stat_4226189338", + "text": "# to Level of all Chaos Spell Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1200678966", + "text": "#% increased bonuses gained from Equipped Quiver", + "type": "explicit" + }, + { + "id": "explicit.stat_1825943485", + "text": "Area has #% increased chance to contain Essences", + "type": "explicit" + }, + { + "id": "explicit.stat_1825943485", + "text": "#% increased chance of Essences", + "type": "explicit" + }, + { + "id": "explicit.stat_3824372849", + "text": "#% increased Curse Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_1772247089", + "text": "#% increased chance to inflict Ailments", + "type": "explicit" + }, + { + "id": "explicit.stat_828533480", + "text": "#% Chance to gain a Charge when you kill an enemy", + "type": "explicit" + }, + { + "id": "explicit.stat_3780644166", + "text": "#% increased Freeze Threshold", + "type": "explicit" + }, + { + "id": "explicit.stat_2854751904", + "text": "Allies in your Presence deal # to # added Attack Lightning Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_849987426", + "text": "Allies in your Presence deal # to # added Attack Fire Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3732878551", + "text": "Rare Monsters have a #% Surpassing chance to have an additional Modifier", + "type": "explicit" + }, + { + "id": "explicit.stat_3732878551", + "text": "Rare Monsters in your Maps have a #% Surpassing chance to have an additional Modifier", + "type": "explicit" + }, + { + "id": "explicit.stat_656461285", + "text": "#% increased Intelligence", + "type": "explicit" + }, + { + "id": "explicit.stat_4139681126", + "text": "#% increased Dexterity", + "type": "explicit" + }, + { + "id": "explicit.stat_734614379", + "text": "#% increased Strength", + "type": "explicit" + }, + { + "id": "explicit.stat_1998951374", + "text": "Allies in your Presence have #% increased Attack Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_3192728503", + "text": "#% increased Crossbow Reload Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_970213192", + "text": "#% increased Skill Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_1697447343", + "text": "#% increased Freeze Buildup with Quarterstaves", + "type": "explicit" + }, + { + "id": "explicit.stat_289128254", + "text": "Allies in your Presence have #% increased Cast Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_1600707273", + "text": "# to Level of all Physical Spell Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2594634307", + "text": "Mark Skills have #% increased Skill Effect Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_1250712710", + "text": "Allies in your Presence have #% increased Critical Hit Chance", + "type": "explicit" + }, + { + "id": "explicit.stat_1238227257", + "text": "Debuffs on you expire #% faster", + "type": "explicit" + }, + { + "id": "explicit.stat_1062710370", + "text": "#% increased Duration of Ignite, Shock and Chill on Enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_3057012405", + "text": "Allies in your Presence have #% increased Critical Damage Bonus", + "type": "explicit" + }, + { + "id": "explicit.stat_1574590649", + "text": "Allies in your Presence deal # to # added Attack Physical Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_318953428", + "text": "#% chance to Blind Enemies on Hit with Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_1714971114", + "text": "Mark Skills have #% increased Use Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_4095671657", + "text": "#% to Maximum Fire Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_1594812856", + "text": "#% increased Damage with Warcries", + "type": "explicit" + }, + { + "id": "explicit.stat_1569101201", + "text": "Empowered Attacks deal #% increased Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1315743832", + "text": "#% increased Thorns damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3473929743", + "text": "#% increased Pin Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_3850614073", + "text": "Allies in your Presence have #% to all Elemental Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_2011656677", + "text": "#% increased Poison Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_889691035", + "text": "#% increased Attack Speed per 10 Dexterity", + "type": "explicit" + }, + { + "id": "explicit.stat_2541588185", + "text": "#% increased Duration (Charm)", + "type": "explicit" + }, + { + "id": "explicit.stat_2301718443", + "text": "#% increased Damage against Enemies with Fully Broken Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_3146310524", + "text": "Dazes on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_2200661314", + "text": "Monsters deal #% of Damage as Extra Chaos", + "type": "explicit" + }, + { + "id": "explicit.stat_941368244", + "text": "Players have #% more Cooldown Recovery Rate", + "type": "explicit" + }, + { + "id": "explicit.stat_1405298142", + "text": "#% increased Stun Threshold if you haven't been Stunned Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_1879340377", + "text": "Monsters Break Armour equal to #% of Physical Damage dealt", + "type": "explicit" + }, + { + "id": "explicit.stat_1011760251", + "text": "#% to Maximum Lightning Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_3796523155", + "text": "#% less effect of Curses on Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_1309819744", + "text": "Monsters fire # additional Projectiles", + "type": "explicit" + }, + { + "id": "explicit.stat_3222482040", + "text": "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_1588049749", + "text": "Monsters have #% increased Accuracy Rating", + "type": "explicit" + }, + { + "id": "explicit.stat_1776411443", + "text": "Break #% increased Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_1791136590", + "text": "#% increased Weapon Damage per 10 Strength", + "type": "explicit" + }, + { + "id": "explicit.stat_434750362", + "text": "#% increased Area of Effect for Attacks per 10 Intelligence", + "type": "explicit" + }, + { + "id": "explicit.stat_101878827", + "text": "#% increased Presence Area of Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_1708461270", + "text": "Monsters have #% increased Area of Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_2365392475", + "text": "Recover # Life when Used", + "type": "explicit" + }, + { + "id": "explicit.stat_173226756", + "text": "#% increased Recovery rate", + "type": "explicit" + }, + { + "id": "explicit.stat_1120862500", + "text": "Recover # Mana when Used", + "type": "explicit" + }, + { + "id": "explicit.stat_3119292058", + "text": "Enemies Chilled by your Hits can be Shattered as though Frozen", + "type": "explicit" + }, + { + "id": "explicit.stat_1210760818", + "text": "Breaches have #% increased Monster density", + "type": "explicit" + }, + { + "id": "explicit.stat_3523867985", + "text": "#% increased Armour, Evasion and Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_1459321413", + "text": "#% increased Bleeding Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_3676141501", + "text": "#% to Maximum Cold Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_924253255", + "text": "#% increased Slowing Potency of Debuffs on You", + "type": "explicit" + }, + { + "id": "explicit.stat_2503377690", + "text": "#% of Recovery applied Instantly", + "type": "explicit" + }, + { + "id": "explicit.stat_2224050171", + "text": "Breaches in Area contain # additional Clasped Hand", + "type": "explicit" + }, + { + "id": "explicit.stat_2224050171", + "text": "Breaches in your Maps contain # additional Clasped Hand", + "type": "explicit" + }, + { + "id": "explicit.stat_2448633171", + "text": "#% of Damage taken bypasses Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_1228337241", + "text": "Gain #% of maximum Life as Extra maximum Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_3309089125", + "text": "Area contains # additional packs of Bramble Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_3757259819", + "text": "Area contains # additional packs of Beasts", + "type": "explicit" + }, + { + "id": "explicit.stat_240445958", + "text": "Area contains # additional packs of Undead", + "type": "explicit" + }, + { + "id": "explicit.stat_1436812886", + "text": "Area contains # additional packs of Ezomyte Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_2949706590", + "text": "Area contains # additional packs of Iron Guards", + "type": "explicit" + }, + { + "id": "explicit.stat_624534143", + "text": "#% increased Quantity of Breach Splinters dropped by Breach Monsters in Area", + "type": "explicit" + }, + { + "id": "explicit.stat_624534143", + "text": "#% increased Quantity of Breach Splinters dropped by Breach Monsters in your Maps", + "type": "explicit" + }, + { + "id": "explicit.stat_4130878258", + "text": "Area contains # additional packs of Faridun Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_3592067990", + "text": "Area contains # additional packs of Plagued Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_1689473577", + "text": "Area contains # additional packs of Transcended Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_4181857719", + "text": "Area contains # additional packs of Vaal Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_3049505189", + "text": "Areas which contain Breaches have #% chance to contain an additional Breach", + "type": "explicit" + }, + { + "id": "explicit.stat_3049505189", + "text": "Your Maps which contain Breaches have #% chance to contain an additional Breach", + "type": "explicit" + }, + { + "id": "explicit.stat_3240183538", + "text": "Area contains an additional Strongbox", + "type": "explicit" + }, + { + "id": "explicit.stat_3240183538", + "text": "Your Maps contain # additional Strongboxes", + "type": "explicit" + }, + { + "id": "explicit.stat_1468737867", + "text": "Area contains an additional Shrine", + "type": "explicit" + }, + { + "id": "explicit.stat_1468737867", + "text": "Your Maps contain an additional Shrine", + "type": "explicit" + }, + { + "id": "explicit.stat_395808938", + "text": "Area contains an additional Essence", + "type": "explicit" + }, + { + "id": "explicit.stat_395808938", + "text": "Your Maps contain an additional Essence", + "type": "explicit" + }, + { + "id": "explicit.stat_2676834156", + "text": "Also grants # Guard", + "type": "explicit" + }, + { + "id": "explicit.stat_1004011302", + "text": "#% increased Cooldown Recovery Rate", + "type": "explicit" + }, + { + "id": "explicit.stat_2550456553", + "text": "Rare Monsters have # additional Modifier", + "type": "explicit" + }, + { + "id": "explicit.stat_2550456553", + "text": "Rare Monsters in your Maps have # additional Modifier", + "type": "explicit" + }, + { + "id": "explicit.stat_2458962764", + "text": "#% of Maximum Life Converted to Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2214228141", + "text": "Projectiles Pierce all Ignited enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_2480498143", + "text": "#% of Skill Mana Costs Converted to Life Costs", + "type": "explicit" + }, + { + "id": "explicit.stat_1049080093", + "text": "Attacks Gain #% of Damage as Extra Fire Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_335699483", + "text": "Leeches #% of maximum Life when you Cast a Spell", + "type": "explicit" + }, + { + "id": "explicit.stat_2672805335", + "text": "#% increased Attack and Cast Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_1017648537", + "text": "Lightning damage from Hits Contributes to Electrocution Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_965913123", + "text": "#% chance to not destroy Corpses when Consuming Corpses", + "type": "explicit" + }, + { + "id": "explicit.stat_1261612903", + "text": "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_2949096603", + "text": "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", + "type": "explicit" + }, + { + "id": "explicit.stat_1011772129", + "text": "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", + "type": "explicit" + }, + { + "id": "explicit.stat_997343726", + "text": "Gain #% of Damage as Chaos Damage per Undead Minion", + "type": "explicit" + }, + { + "id": "explicit.stat_2639966148", + "text": "Minions Revive #% faster", + "type": "explicit" + }, + { + "id": "explicit.stat_1686824704", + "text": "#% of Cold Damage Converted to Lightning Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_826162720", + "text": "Trigger Ember Fusillade Skill on casting a Spell", + "type": "explicit" + }, + { + "id": "explicit.stat_3771516363", + "text": "#% additional Physical Damage Reduction", + "type": "explicit" + }, + { + "id": "explicit.stat_3885405204", + "text": "Bow Attacks fire # additional Arrows", + "type": "explicit" + }, + { + "id": "explicit.stat_1289045485", + "text": "Critical Hits Ignore Enemy Monster Lightning Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_704919631", + "text": "Trigger Lightning Bolt Skill on Critical Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_811217923", + "text": "Trigger Spark Skill on killing a Shocked Enemy", + "type": "explicit" + }, + { + "id": "explicit.stat_3837707023", + "text": "Minions have #% to Chaos Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_2637470878", + "text": "#% increased Armour Break Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_2154246560", + "text": "#% increased Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2118708619", + "text": "#% increased Damage if you have Consumed a Corpse Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_3544050945", + "text": "#% of Spell Mana Cost Converted to Life Cost", + "type": "explicit" + }, + { + "id": "explicit.stat_603021645", + "text": "When a Party Member in your Presence Casts a Spell, you\nSacrifice #% of Mana and they Leech that Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_828179689", + "text": "#% increased Magnitude of Chill you inflict", + "type": "explicit" + }, + { + "id": "explicit.stat_1261982764", + "text": "#% increased Life Recovered", + "type": "explicit" + }, + { + "id": "explicit.stat_3891355829|1", + "text": "Upgrades Radius to Medium", + "type": "explicit" + }, + { + "id": "explicit.stat_4187571952", + "text": "Gain no inherent bonus from Intelligence", + "type": "explicit" + }, + { + "id": "explicit.stat_648019518", + "text": "Removes #% of Life Recovered from Mana when used", + "type": "explicit" + }, + { + "id": "explicit.stat_2200293569", + "text": "Mana Flasks gain # charges per Second", + "type": "explicit" + }, + { + "id": "explicit.stat_315791320", + "text": "Aura Skills have #% increased Magnitudes", + "type": "explicit" + }, + { + "id": "explicit.stat_2353576063", + "text": "#% increased Curse Magnitudes", + "type": "explicit" + }, + { + "id": "explicit.stat_210092264", + "text": "#% of Elemental Damage Converted to Cold Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3973629633", + "text": "#% increased Withered Magnitude", + "type": "explicit" + }, + { + "id": "explicit.stat_2720982137", + "text": "Banner Skills have #% increased Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_1869147066", + "text": "#% increased Glory generation for Banner Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3464380325", + "text": "Projectiles Split towards # targets", + "type": "explicit" + }, + { + "id": "explicit.stat_4256531808", + "text": "Abyss Pits in Area are twice as likely to have Rewards", + "type": "explicit" + }, + { + "id": "explicit.stat_474294393", + "text": "#% reduced Mana Cost of Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3027830452", + "text": "Gain #% of maximum Mana as Extra maximum Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2929867083", + "text": "#% increased Rarity of Items found when on Low Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1090596078", + "text": "Breaches in Area spawn #% increased Magic Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_1090596078", + "text": "Breaches in your Maps spawn #% increased Magic Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_1653625239", + "text": "Breaches in Area spawn an additional Rare Monster", + "type": "explicit" + }, + { + "id": "explicit.stat_1653625239", + "text": "Breaches in your Maps spawn an additional Rare Monster", + "type": "explicit" + }, + { + "id": "explicit.stat_3003542304", + "text": "Projectiles have #% chance for an additional Projectile when Forking", + "type": "explicit" + }, + { + "id": "explicit.stat_4255069232", + "text": "#% increased Rarity of Items dropped by Map Bosses", + "type": "explicit" + }, + { + "id": "explicit.stat_3860150265", + "text": "Map Bosses grant #% increased Experience", + "type": "explicit" + }, + { + "id": "explicit.stat_3119172063", + "text": "#% increased Quantity of Items dropped by Map Bosses", + "type": "explicit" + }, + { + "id": "explicit.stat_3398787959", + "text": "Gain #% of Damage as Extra Chaos Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_712554801", + "text": "#% increased Effect of your Mark Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3868118796", + "text": "Attacks Chain an additional time", + "type": "explicit" + }, + { + "id": "explicit.stat_1102738251", + "text": "Life Flasks gain # charges per Second", + "type": "explicit" + }, + { + "id": "explicit.stat_289540902", + "text": "#% of Elemental Damage Converted to Lightning Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_40154188", + "text": "#% of Elemental Damage Converted to Fire Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3033371881", + "text": "Gain Deflection Rating equal to #% of Evasion Rating", + "type": "explicit" + }, + { + "id": "explicit.stat_990363519", + "text": "Enemies in your Presence have #% to Fire Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_2041668411", + "text": "Physical Damage is Pinning", + "type": "explicit" + }, + { + "id": "explicit.stat_3836551197", + "text": "#% increased Stack size of Simulacrum Splinters found in Area", + "type": "explicit" + }, + { + "id": "explicit.stat_3836551197", + "text": "#% increased Stack size of Simulacrum Splinters found in your Maps", + "type": "explicit" + }, + { + "id": "explicit.stat_3465791711", + "text": "Delirium Monsters in Area have #% increased Pack Size", + "type": "explicit" + }, + { + "id": "explicit.stat_3465791711", + "text": "Delirium Monsters in your Maps have #% increased Pack Size", + "type": "explicit" + }, + { + "id": "explicit.stat_3371943724", + "text": "Trigger Decompose every 1.2 metres travelled", + "type": "explicit" + }, + { + "id": "explicit.stat_3962960008", + "text": "Delirium Encounters in Area are #% more likely to spawn Unique Bosses", + "type": "explicit" + }, + { + "id": "explicit.stat_3962960008", + "text": "#% increased chance to manifest additional Unique Boss Shards within Delirium Fog", + "type": "explicit" + }, + { + "id": "explicit.stat_3428124128", + "text": "Delirious Monsters Killed in Area provide #% increased Reward Progress", + "type": "explicit" + }, + { + "id": "explicit.stat_3428124128", + "text": "Delirious Monsters killed in your Maps provide #% increased Reward Progress", + "type": "explicit" + }, + { + "id": "explicit.stat_1433051415", + "text": "Enemies in your Presence are Ignited as though dealt # Base Fire Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3503160529", + "text": "#% of Fire Damage Converted to Cold Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1585769763", + "text": "#% increased Blind Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_1104825894", + "text": "#% faster Curse Activation", + "type": "explicit" + }, + { + "id": "explicit.stat_4077035099", + "text": "Passives in Radius can be Allocated without being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_892489594", + "text": "#% increased Chance to be afflicted by Ailments when Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_610276769", + "text": "#% increased Movement Speed while affected by an Ailment", + "type": "explicit" + }, + { + "id": "explicit.stat_458438597", + "text": "#% of Damage is taken from Mana before Life", + "type": "explicit" + }, + { + "id": "explicit.stat_710476746", + "text": "#% increased Reload Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_2535267021", + "text": "Share Charges with Allies in your Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_4287671144", + "text": "#% of your Base Life Regeneration is granted to Allies in your Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_720908147", + "text": "#% increased Attack Speed per 20 Dexterity", + "type": "explicit" + }, + { + "id": "explicit.stat_3111921451", + "text": "Adds # to # Lightning Damage to Attacks per 20 Intelligence", + "type": "explicit" + }, + { + "id": "explicit.stat_2895144208", + "text": "Maim on Critical Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_2440265466", + "text": "Areas which contain Breaches have #% chance to contain three additional Breaches", + "type": "explicit" + }, + { + "id": "explicit.stat_2440265466", + "text": "Your Maps which contain Breaches have #% chance to contain three additional Breaches", + "type": "explicit" + }, + { + "id": "explicit.stat_3450276548", + "text": "Blind Chilled enemies on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_1181501418", + "text": "# to Maximum Rage", + "type": "explicit" + }, + { + "id": "explicit.stat_2957407601", + "text": "Offering Skills have #% increased Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_4081947835", + "text": "Projectiles have #% chance to Chain an additional time from terrain", + "type": "explicit" + }, + { + "id": "explicit.stat_959641748", + "text": "Removes #% of Mana Recovered from Life when used", + "type": "explicit" + }, + { + "id": "explicit.stat_1811130680", + "text": "#% increased Mana Recovered", + "type": "explicit" + }, + { + "id": "explicit.stat_943702197", + "text": "Minions gain #% of their maximum Life as Extra maximum Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2412053423", + "text": "#% increased Spell Damage per 10 Spirit", + "type": "explicit" + }, + { + "id": "explicit.stat_842299438", + "text": "Bolts fired by Crossbow Attacks have #% chance to not\nexpend Ammunition if you've Reloaded Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_3612407781", + "text": "# Physical damage taken from Projectile Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_538241406", + "text": "Damaging Ailments deal damage #% faster", + "type": "explicit" + }, + { + "id": "explicit.stat_947072590", + "text": "You cannot be Ignited for # second after being Ignited", + "type": "explicit" + }, + { + "id": "explicit.stat_613752285", + "text": "Sacrifice #% of maximum Life to gain that much Energy Shield when you Cast a Spell", + "type": "explicit" + }, + { + "id": "explicit.stat_2933846633", + "text": "Dazes on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_854225133", + "text": "You have no Life Regeneration", + "type": "explicit" + }, + { + "id": "explicit.stat_1004468512", + "text": "#% of Physical Damage taken as Fire Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1993950627", + "text": "# to # Fire Thorns damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3761294489", + "text": "All Damage from Hits with this Weapon Contributes to Freeze Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_3222402650", + "text": "Small Passive Skills in Radius also grant #% increased Elemental Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2153364323", + "text": "# Intelligence Requirement", + "type": "explicit" + }, + { + "id": "explicit.stat_2091621414", + "text": "Causes Bleeding on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_796381300", + "text": "Gain 0% to #% increased Movement Speed at random when Hit, until Hit again", + "type": "explicit" + }, + { + "id": "explicit.stat_1702195217", + "text": "#% to Block chance", + "type": "explicit" + }, + { + "id": "explicit.stat_1631928082", + "text": "Increases and Reductions to Minion Damage also affect you", + "type": "explicit" + }, + { + "id": "explicit.stat_3362812763", + "text": "#% of Armour also applies to Elemental Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_423304126", + "text": "You count as on Full Mana while at #% of maximum Mana or above", + "type": "explicit" + }, + { + "id": "explicit.stat_4145314483", + "text": "#% increased Attack Speed while on Full Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_886931978", + "text": "#% more Recovery if used while on Low Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2511217560", + "text": "#% increased Stun Recovery", + "type": "explicit" + }, + { + "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" + }, + { + "id": "explicit.stat_2230687504", + "text": "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3627052716", + "text": "#% of Lightning Damage Converted to Cold Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3276224428", + "text": "#% more Recovery if used while on Low Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_769129523", + "text": "Causes Double Stun Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_2262736444", + "text": "Eldritch Battery", + "type": "explicit" + }, + { + "id": "explicit.stat_1200347828", + "text": "Life Flasks used while on Low Life apply Recovery Instantly", + "type": "explicit" + }, + { + "id": "explicit.stat_1618482990", + "text": "#% chance for Energy Shield Recharge to start when you Kill an Enemy", + "type": "explicit" + }, + { + "id": "explicit.stat_1839832419", + "text": "Mana Flasks used while on Low Mana apply Recovery Instantly", + "type": "explicit" + }, + { + "id": "explicit.stat_2905515354", + "text": "You take #% of damage from Blocked Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_2416869319", + "text": "Grants #% of Life Recovery to Minions", + "type": "explicit" + }, + { + "id": "explicit.stat_1158324489", + "text": "Culling Strike against Frozen Enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_3045072899", + "text": "Minions' Resistances are equal to yours", + "type": "explicit" + }, + { + "id": "explicit.stat_50721145", + "text": "Your speed is unaffected by Slows", + "type": "explicit" + }, + { + "id": "explicit.stat_2592455368", + "text": "You have a Smoke Cloud around you while stationary", + "type": "explicit" + }, + { + "id": "explicit.stat_356835700", + "text": "You are considered on Low Life while at #% of maximum Life or below instead", + "type": "explicit" + }, + { + "id": "explicit.stat_1689729380", + "text": "#% chance to Avoid Death from Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_3801067695", + "text": "#% reduced effect of Shock on you", + "type": "explicit" + }, + { + "id": "explicit.stat_3205239847", + "text": "#% of Fire Damage from Hits taken as Physical Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1683578560", + "text": "Unwavering Stance", + "type": "explicit" + }, + { + "id": "explicit.stat_1466716929", + "text": "Gain # Rage when Critically Hit by an Enemy", + "type": "explicit" + }, + { + "id": "explicit.stat_1478653032", + "text": "#% reduced Effect of Chill on you", + "type": "explicit" + }, + { + "id": "explicit.stat_2635559734", + "text": "Base Critical Hit Chance for Attacks with Weapons is #%", + "type": "explicit" + }, + { + "id": "explicit.stat_585231074", + "text": "No Movement Speed Penalty while Shield is Raised", + "type": "explicit" + }, + { + "id": "explicit.stat_2214130968", + "text": "Always deals Critical Hits against Heavy Stunned Enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_98977150", + "text": "Pain Attunement", + "type": "explicit" + }, + { + "id": "explicit.stat_1902409192", + "text": "Lose # Life when you use a Skill", + "type": "explicit" + }, + { + "id": "explicit.stat_11014011", + "text": "Warcries Explode Corpses dealing #% of their Life as Physical Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2567751411", + "text": "Warcry Skills have #% increased Area of Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_3393547195", + "text": "#% increased Movement Speed when on Full Life", + "type": "explicit" + }, + { + "id": "explicit.stat_88817332", + "text": "#% increased Evasion Rating when on Full Life", + "type": "explicit" + }, + { + "id": "explicit.stat_289086688", + "text": "Hits Break # Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_326965591", + "text": "Iron Reflexes", + "type": "explicit" + }, + { + "id": "explicit.stat_381470861", + "text": "Enemies are Culled on Block", + "type": "explicit" + }, + { + "id": "explicit.stat_3764198549", + "text": "Every 3 seconds, Consume a nearby Corpse to Recover #% of maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2715190555", + "text": "#% to Thorns Critical Hit Chance", + "type": "explicit" + }, + { + "id": "explicit.stat_3590792340", + "text": "#% increased Mana Flask Charges gained", + "type": "explicit" + }, + { + "id": "explicit.stat_2306924373", + "text": "You cannot be Chilled for # second after being Chilled", + "type": "explicit" + }, + { + "id": "explicit.stat_1092987622", + "text": "#% of Melee Physical Damage taken reflected to Attacker", + "type": "explicit" + }, + { + "id": "explicit.stat_215346464", + "text": "You cannot be Shocked for # second after being Shocked", + "type": "explicit" + }, + { + "id": "explicit.stat_3423694372", + "text": "#% chance to be inflicted with Bleeding when Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_3612464552", + "text": "You cannot be Frozen for # second after being Frozen", + "type": "explicit" + }, + { + "id": "explicit.stat_4275855121", + "text": "Curses you inflict are reflected back to you", + "type": "explicit" + }, + { + "id": "explicit.stat_3308030688", + "text": "#% increased Mana Regeneration Rate while stationary", + "type": "explicit" + }, + { + "id": "explicit.stat_3037553757", + "text": "#% increased Warcry Buff Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_2793222406", + "text": "#% increased bonuses gained from Equipped Rings", + "type": "explicit" + }, + { + "id": "explicit.stat_4009879772", + "text": "#% increased Life Flask Charges gained", + "type": "explicit" + }, + { + "id": "explicit.stat_2894895028", + "text": "Damage over Time bypasses your Energy Shield\nWhile not on Full Life, Sacrifice #% of maximum Mana per Second to Recover that much Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1419390131", + "text": "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_359380213", + "text": "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_62849030", + "text": "Critical Hits Poison the enemy", + "type": "explicit" + }, + { + "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" + }, + { + "id": "explicit.stat_352044736", + "text": "Every Rage also grants #% increased Stun Threshold", + "type": "explicit" + }, + { + "id": "explicit.stat_836936635", + "text": "Regenerate #% of maximum Life per second", + "type": "explicit" + }, + { + "id": "explicit.stat_1306791873", + "text": "Lose all Fragile Regrowth when Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_3841984913", + "text": "Gain # Fragile Regrowth each second", + "type": "explicit" + }, + { + "id": "explicit.stat_3175722882", + "text": "#% of maximum Life Regenerated per second per Fragile Regrowth", + "type": "explicit" + }, + { + "id": "explicit.stat_344174146", + "text": "#% increased Mana Regeneration Rate per Fragile Regrowth", + "type": "explicit" + }, + { + "id": "explicit.stat_1173537953", + "text": "Maximum # Fragile Regrowth", + "type": "explicit" + }, + { + "id": "explicit.stat_38301299", + "text": "#% to Fire Resistance while on Low Life", + "type": "explicit" + }, + { + "id": "explicit.stat_3942946753", + "text": "Regenerate #% of maximum Life per second while on Low Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1374654984", + "text": "#% of Physical Damage prevented Recouped as Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1435496528", + "text": "Gain Cold Thorns Damage equal to #% of your maximum Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_281311123", + "text": "Iron Will", + "type": "explicit" + }, + { + "id": "explicit.stat_3528245713", + "text": "Iron Grip", + "type": "explicit" + }, + { + "id": "explicit.stat_2135899247", + "text": "Lose all Power Charges on reaching maximum Power Charges", + "type": "explicit" + }, + { + "id": "explicit.stat_1453197917", + "text": "#% chance to gain a Power Charge on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_1060572482", + "text": "#% increased Effect of Small Passive Skills in Radius", + "type": "explicit" + }, + { + "id": "explicit.stat_4256314560", + "text": "Shocks you when you reach maximum Power Charges", + "type": "explicit" + }, + { + "id": "explicit.stat_1073310669", + "text": "#% increased Evasion Rating if you have been Hit Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_67637087", + "text": "#% less Damage taken if you have not been Hit Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_3811191316", + "text": "Minions have #% increased Area of Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_1269971728", + "text": "#% reduced Magnitude of Ignite on you", + "type": "explicit" + }, + { + "id": "explicit.stat_3414243317", + "text": "Thorns can Retaliate against all Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_394473632", + "text": "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + "type": "explicit" + }, + { + "id": "explicit.stat_185580205", + "text": "Charms gain # charge per Second", + "type": "explicit" + }, + { + "id": "explicit.stat_3749630567", + "text": "#% less Flask Charges used", + "type": "explicit" + }, + { + "id": "explicit.stat_1170174456", + "text": "#% increased Endurance Charge Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_939832726", + "text": "Recover #% of maximum Life for each Endurance Charge consumed", + "type": "explicit" + }, + { + "id": "explicit.stat_2438634449", + "text": "#% chance to Aggravate Bleeding on targets you Critically Hit with Attacks", + "type": "explicit" + }, + { + "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" + }, + { + "id": "explicit.stat_3686997387", + "text": "Double Stun Threshold while Shield is Raised", + "type": "explicit" + }, + { + "id": "explicit.stat_2310741722", + "text": "#% increased Life and Mana Recovery from Flasks", + "type": "explicit" + }, + { + "id": "explicit.stat_2995914769", + "text": "Every Rage also grants #% increased Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_4176970656", + "text": "# Physical Damage taken on Minion Death", + "type": "explicit" + }, + { + "id": "explicit.stat_3891355829|2", + "text": "Upgrades Radius to Large", + "type": "explicit" + }, + { + "id": "explicit.stat_1030153674", + "text": "Recover #% of maximum Mana on Kill", + "type": "explicit" + }, + { + "id": "explicit.stat_841429130", + "text": "Bleeding you inflict is Aggravated", + "type": "explicit" + }, + { + "id": "explicit.stat_1769611692", + "text": "Delirium in Area increases #% faster with distance from the mirror", + "type": "explicit" + }, + { + "id": "explicit.stat_1769611692", + "text": "Delirium in your Maps increases #% faster with distance from the mirror", + "type": "explicit" + }, + { + "id": "explicit.stat_1094937621", + "text": "Critical Hits ignore Enemy Monster Elemental Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_4163415912", + "text": "+# to Spirit per Socket filled", + "type": "explicit" + }, + { + "id": "explicit.stat_2875218423", + "text": "Damage Blocked is Recouped as Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_1086147743", + "text": "#% increased Ignite Duration on Enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_1158842087", + "text": "Gain #% of Elemental Damage as Extra Cold Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3550887155", + "text": "Gain #% of Elemental Damage as Extra Lightning Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_701564564", + "text": "Gain #% of Elemental Damage as Extra Fire Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2293111154", + "text": "Increases and Reductions to Minion Attack Speed also affect you", + "type": "explicit" + }, + { + "id": "explicit.stat_911712882", + "text": "#% increased Maximum Mana per Socket filled", + "type": "explicit" + }, + { + "id": "explicit.stat_674553446", + "text": "Adds # to # Chaos Damage to Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_78985352", + "text": "#% chance to Intimidate Enemies for 4 seconds on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_4058681894", + "text": "You have no Critical Damage Bonus", + "type": "explicit" + }, + { + "id": "explicit.stat_1457896329", + "text": "#% increased Quantity of Waystones dropped by Map Bosses", + "type": "explicit" + }, + { + "id": "explicit.stat_313223231", + "text": "#% increased Rarity of Items found per Socket filled", + "type": "explicit" + }, + { + "id": "explicit.stat_1137305356", + "text": "Small Passive Skills in Radius also grant #% increased Spell Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1484500028", + "text": "Attacks Gain #% of Damage as Extra Cold Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_632761194", + "text": "Life Regeneration is applied to Energy Shield instead", + "type": "explicit" + }, + { + "id": "explicit.stat_1816894864", + "text": "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", + "type": "explicit" + }, + { + "id": "explicit.stat_3665922113", + "text": "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2930706364", + "text": "Permanently Intimidate enemies on Block", + "type": "explicit" + }, + { + "id": "explicit.stat_2593651571", + "text": "+#% to all Elemental Resistances per Socket filled", + "type": "explicit" + }, + { + "id": "explicit.stat_1457411584", + "text": "Every 4 seconds, Recover 1 Life for every # Life Recovery per second from Regeneration", + "type": "explicit" + }, + { + "id": "explicit.stat_231864447", + "text": "Area contains an additional Rare Chest", + "type": "explicit" + }, + { + "id": "explicit.stat_231864447", + "text": "Your Maps contain an additional Rare Chest", + "type": "explicit" + }, + { + "id": "explicit.stat_3350944114", + "text": "Delirium Fog in Area dissipates #% faster", + "type": "explicit" + }, + { + "id": "explicit.stat_3350944114", + "text": "Delirium Fog dissipates #% faster", + "type": "explicit" + }, + { + "id": "explicit.stat_3947672598", + "text": "Life Recovery from Regeneration is not applied", + "type": "explicit" + }, + { + "id": "explicit.stat_2504358770", + "text": "Breaches open and close #% faster", + "type": "explicit" + }, + { + "id": "explicit.stat_2504358770", + "text": "Breaches in your Maps open and close #% faster", + "type": "explicit" + }, + { + "id": "explicit.stat_4065505214", + "text": "#% increased effect of Socketed Soul Cores", + "type": "explicit" + }, + { + "id": "explicit.stat_551040294", + "text": "Delirium Fog in Area spawns #% increased Fracturing Mirrors", + "type": "explicit" + }, + { + "id": "explicit.stat_551040294", + "text": "#% increased Fracturing Mirrors manifested within Delirium Fog", + "type": "explicit" + }, + { + "id": "explicit.stat_1526933524", + "text": "Instant Recovery", + "type": "explicit" + }, + { + "id": "explicit.stat_1373370443", + "text": "Skills have a #% longer Perfect Timing window", + "type": "explicit" + }, + { + "id": "explicit.stat_3314057862", + "text": "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", + "type": "explicit" + }, + { + "id": "explicit.stat_1040569494", + "text": "#% increased Evasion Rating if you've Dodge Rolled Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_2513318031", + "text": "#% increased Attributes per Socket filled", + "type": "explicit" + }, + { + "id": "explicit.stat_4224965099", + "text": "Lightning Damage of Enemies Hitting you is Lucky", + "type": "explicit" + }, + { + "id": "explicit.stat_258119672", + "text": "# metre to Dodge Roll distance", + "type": "explicit" + }, + { + "id": "explicit.stat_1174954559", + "text": "Delirium Fog in Area lasts # additional seconds before dissipating", + "type": "explicit" + }, + { + "id": "explicit.stat_1174954559", + "text": "Delirium Fog in your Maps lasts # additional seconds before dissipating", + "type": "explicit" + }, + { + "id": "explicit.stat_2301852600", + "text": "Deal #% of Overkill damage to enemies within 2 metres of the enemy killed", + "type": "explicit" + }, + { + "id": "explicit.stat_1488650448", + "text": "# to Ailment Threshold", + "type": "explicit" + }, + { + "id": "explicit.stat_2702182380", + "text": "#% increased Maximum Life per Socket filled", + "type": "explicit" + }, + { + "id": "explicit.stat_2442527254", + "text": "Small Passive Skills in Radius also grant #% increased Cold Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3855016469", + "text": "Hits against you have #% reduced Critical Damage Bonus", + "type": "explicit" + }, + { + "id": "explicit.stat_2768899959", + "text": "Small Passive Skills in Radius also grant #% increased Lightning Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1022759479", + "text": "Notable Passive Skills in Radius also grant #% increased Cast Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_2022332470", + "text": "You take Fire Damage instead of Physical Damage from Bleeding", + "type": "explicit" + }, + { + "id": "explicit.stat_455816363", + "text": "Small Passive Skills in Radius also grant #% increased Projectile Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2315177528", + "text": "Chaos Damage from Hits also Contributes to Electrocute Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_2973498992", + "text": "Chaos Damage from Hits also Contributes to Freeze Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_261503687", + "text": "Attacks Gain #% of Physical Damage as extra Chaos Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_874646180", + "text": "Aggravate Bleeding on Enemies when they Enter your Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_2954360902", + "text": "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1978899297", + "text": "#% to all Maximum Elemental Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_3256879910", + "text": "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + "type": "explicit" + }, + { + "id": "explicit.stat_3394832998", + "text": "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + "type": "explicit" + }, + { + "id": "explicit.stat_1994296038", + "text": "Small Passive Skills in Radius also grant #% increased Evasion Rating", + "type": "explicit" + }, + { + "id": "explicit.stat_410952253", + "text": "Cannot have Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_1185341308", + "text": "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + "type": "explicit" + }, + { + "id": "explicit.stat_3276271783", + "text": "Regenerate # Life per second per Maximum Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_3666476747", + "text": "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + "type": "explicit" + }, + { + "id": "explicit.stat_2838161567", + "text": "Skills reserve 50% less Spirit", + "type": "explicit" + }, + { + "id": "explicit.stat_4173554949", + "text": "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_1967051901", + "text": "Loads an additional bolt", + "type": "explicit" + }, + { + "id": "explicit.stat_378796798", + "text": "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1426522529", + "text": "Small Passive Skills in Radius also grant #% increased Attack Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_159726667", + "text": "Monsters Sacrificed at Ritual Altars in Area grant #% increased Tribute", + "type": "explicit" + }, + { + "id": "explicit.stat_159726667", + "text": "Monsters Sacrificed at Ritual Altars grant #% increased Tribute", + "type": "explicit" + }, + { + "id": "explicit.stat_2282052746", + "text": "Rerolling Favours at Ritual Altars in Area costs #% increased Tribute", + "type": "explicit" + }, + { + "id": "explicit.stat_2282052746", + "text": "Rerolling Favours at Ritual Altars costs #% increased Tribute", + "type": "explicit" + }, + { + "id": "explicit.stat_2822644689", + "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_484792219", + "text": "Small Passive Skills in Radius also grant #% increased Stun Threshold", + "type": "explicit" + }, + { + "id": "explicit.stat_253641217", + "text": "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + "type": "explicit" + }, + { + "id": "explicit.stat_1658498488", + "text": "Corrupted Blood cannot be inflicted on you", + "type": "explicit" + }, + { + "id": "explicit.stat_533892981", + "text": "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + "type": "explicit" + }, + { + "id": "explicit.stat_2369960685", + "text": "#% of Charges consumed by used Charms are granted to your Life Flasks", + "type": "explicit" + }, + { + "id": "explicit.stat_588512487", + "text": "Map has # additional random Modifier", + "type": "explicit" + }, + { + "id": "explicit.stat_588512487", + "text": "Your Maps have # additional random Modifier", + "type": "explicit" + }, + { + "id": "explicit.stat_1207554355", + "text": "#% increased Arrow Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_4219583418", + "text": "#% increased quantity of Artifacts dropped by Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_4219583418", + "text": "#% increased quantity of Artifacts dropped by Monsters in your Maps", + "type": "explicit" + }, + { + "id": "explicit.stat_1755296234", + "text": "Targets can be affected by # of your Poisons at the same time", + "type": "explicit" + }, + { + "id": "explicit.stat_1539368271", + "text": "#% increased Expedition Explosive Placement Range", + "type": "explicit" + }, + { + "id": "explicit.stat_1039268420", + "text": "Small Passive Skills in Radius also grant #% increased chance to Shock", + "type": "explicit" + }, + { + "id": "explicit.stat_265717301", + "text": "Flasks do not recover Life", + "type": "explicit" + }, + { + "id": "explicit.stat_259470957", + "text": "On-Kill Effects happen twice", + "type": "explicit" + }, + { + "id": "explicit.stat_3289828378", + "text": "#% increased Expedition Explosive Radius", + "type": "explicit" + }, + { + "id": "explicit.stat_412462523", + "text": "#% more Attack Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_849085925", + "text": "Enemies Frozen by you take #% increased Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2002533190", + "text": "Regenerate #% of maximum Life per second while Surrounded", + "type": "explicit" + }, + { + "id": "explicit.stat_2439129490", + "text": "Chaos Resistance is zero", + "type": "explicit" + }, + { + "id": "explicit.stat_2308632835", + "text": "#% increased Reservation Efficiency of Skills which create Undead Minions", + "type": "explicit" + }, + { + "id": "explicit.stat_474452755", + "text": "Cannot Evade Enemy Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_554899692", + "text": "# Charm Slot (Global)", + "type": "explicit" + }, + { + "id": "explicit.stat_3753748365", + "text": "Damage of Enemies Hitting you is Unlucky while you are on Low Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2704905000", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + "type": "explicit" + }, + { + "id": "explicit.stat_234296660", + "text": "Companions deal #% increased Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2359002191", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + "type": "explicit" + }, + { + "id": "explicit.stat_1984618452", + "text": "Monsters have #% increased Shock Chance", + "type": "explicit" + }, + { + "id": "explicit.stat_1161337167", + "text": "Can be modified while Corrupted", + "type": "explicit" + }, + { + "id": "explicit.stat_1417267954", + "text": "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1896066427", + "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_2077117738", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + "type": "explicit" + }, + { + "id": "explicit.stat_1337740333", + "text": "Small Passive Skills in Radius also grant #% increased Melee Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1552666713", + "text": "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + "type": "explicit" + }, + { + "id": "explicit.stat_4195198267", + "text": "Blocking Damage Poisons the Enemy as though dealing # Base Chaos Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_752930724", + "text": "Equipment and Skill Gems have #% increased Attribute Requirements", + "type": "explicit" + }, + { + "id": "explicit.stat_4164870816", + "text": "#% increased Critical Damage Bonus per Power Charge", + "type": "explicit" + }, + { + "id": "explicit.stat_945774314", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Bows", + "type": "explicit" + }, + { + "id": "explicit.stat_139889694", + "text": "Small Passive Skills in Radius also grant #% increased Fire Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_980177976", + "text": "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + "type": "explicit" + }, + { + "id": "explicit.stat_1309799717", + "text": "Small Passive Skills in Radius also grant #% increased Chaos Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3858398337", + "text": "Small Passive Skills in Radius also grant #% increased Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_868556494", + "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_2333085568", + "text": "# to all Attributes per Level", + "type": "explicit" + }, + { + "id": "explicit.stat_1563503803", + "text": "#% chance to Avoid Chaos Damage from Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_227523295", + "text": "# to Maximum Power Charges", + "type": "explicit" + }, + { + "id": "explicit.stat_3384885789", + "text": "This Weapon's Critical Hit Chance is #%", + "type": "explicit" + }, + { + "id": "explicit.stat_3751072557", + "text": "Curses have no Activation Delay", + "type": "explicit" + }, + { + "id": "explicit.stat_3821543413", + "text": "Notable Passive Skills in Radius also grant #% increased Block chance", + "type": "explicit" + }, + { + "id": "explicit.stat_1520059289", + "text": "Onslaught", + "type": "explicit" + }, + { + "id": "explicit.stat_517664839", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + "type": "explicit" + }, + { + "id": "explicit.stat_4012215578", + "text": "All Damage from Hits Contributes to Poison Magnitude", + "type": "explicit" + }, + { + "id": "explicit.stat_2524254339", + "text": "Culling Strike", + "type": "explicit" + }, + { + "id": "explicit.stat_793801176", + "text": "Energy Generation is doubled", + "type": "explicit" + }, + { + "id": "explicit.stat_3391917254", + "text": "Notable Passive Skills in Radius also grant #% increased Area of Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_1540254896", + "text": "Flammability Magnitude is doubled", + "type": "explicit" + }, + { + "id": "explicit.stat_1508661598", + "text": "Hits with this Weapon have no Critical Damage Bonus", + "type": "explicit" + }, + { + "id": "explicit.stat_1576794517", + "text": "Enemies in your Presence killed by anyone count as being killed by you instead", + "type": "explicit" + }, + { + "id": "explicit.stat_2696027455", + "text": "#% increased Damage with Spears", + "type": "explicit" + }, + { + "id": "explicit.stat_1165163804", + "text": "#% increased Attack Speed with Spears", + "type": "explicit" + }, + { + "id": "explicit.stat_664024640", + "text": "You can Socket an additional copy of each Lineage Support Gem, in different Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2065500219", + "text": "#% increased Effectiveness of Monsters in your Maps", + "type": "explicit" + }, + { + "id": "explicit.stat_310945763", + "text": "#% increased Life Cost Efficiency", + "type": "explicit" + }, + { + "id": "explicit.stat_4294267596", + "text": "Take no Extra Damage from Critical Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_3641543553", + "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + "type": "explicit" + }, + { + "id": "explicit.stat_462424929", + "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + "type": "explicit" + }, + { + "id": "explicit.stat_295075366", + "text": "#% increased Strength Requirement", + "type": "explicit" + }, + { + "id": "explicit.stat_2801937280", + "text": "Blood Magic", + "type": "explicit" + }, + { + "id": "explicit.stat_1195849808", + "text": "You gain Onslaught for # seconds on Kill", + "type": "explicit" + }, + { + "id": "explicit.stat_2726713579", + "text": "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + "type": "explicit" + }, + { + "id": "explicit.stat_3669820740", + "text": "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + "type": "explicit" + }, + { + "id": "explicit.stat_3225608889", + "text": "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_3106718406", + "text": "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_4258251165", + "text": "Allies in your Presence Gain #% of Damage as Extra Chaos Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1224838456", + "text": "Enemies in your Presence Gain #% of Damage as Extra Chaos Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3175163625", + "text": "#% increased Quantity of Gold Dropped by Slain Enemies", + "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" + }, + { + "id": "explicit.stat_3513818125", + "text": "Small Passive Skills in Radius also grant #% increased Shock Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_3971919056", + "text": "Life Recharges", + "type": "explicit" + }, + { + "id": "explicit.stat_821948283", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + "type": "explicit" + }, + { + "id": "explicit.stat_1805182458", + "text": "Companions have #% increased maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2272980012", + "text": "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_3563080185", + "text": "#% increased Culling Strike Threshold", + "type": "explicit" + }, + { + "id": "explicit.stat_65133983", + "text": "Drop Shocked Ground while moving, lasting 8 seconds", + "type": "explicit" + }, + { + "id": "explicit.stat_4283407333", + "text": "# to Level of all Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1875158664", + "text": "Giant's Blood", + "type": "explicit" + }, + { + "id": "explicit.stat_1770833858", + "text": "Delirium Encounters in Area have #% chance to generate an additional Reward", + "type": "explicit" + }, + { + "id": "explicit.stat_1770833858", + "text": "Delirium Encounters in your Maps have #% chance to generate an additional Reward", + "type": "explicit" + }, + { + "id": "explicit.stat_720388959", + "text": "Life Recovery from Flasks is instant", + "type": "explicit" + }, + { + "id": "explicit.stat_2323782229", + "text": "Slaying Rare Monsters in Area pauses the Delirium Mirror Timer for 1 second", + "type": "explicit" + }, + { + "id": "explicit.stat_2323782229", + "text": "Slaying Rare Monsters in your Maps pauses the Delirium Mirror Timer for 1 second", + "type": "explicit" + }, + { + "id": "explicit.stat_3398301358", + "text": "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_1166140625", + "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + "type": "explicit" + }, + { + "id": "explicit.stat_1910743684", + "text": "All damage with this Weapon causes Electrocution buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_1776968075", + "text": "You have no Elemental Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_715957346", + "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + "type": "explicit" + }, + { + "id": "explicit.stat_2131720304", + "text": "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + "type": "explicit" + }, + { + "id": "explicit.stat_1602294220", + "text": "Small Passive Skills in Radius also grant #% increased Warcry Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_3815617979", + "text": "Area has #% increased chance to contain Azmeri Spirits", + "type": "explicit" + }, + { + "id": "explicit.stat_3815617979", + "text": "#% increased chance of Azmeri Spirits", + "type": "explicit" + }, + { + "id": "explicit.stat_513747733", + "text": "#% increased bonuses gained from left Equipped Ring", + "type": "explicit" + }, + { + "id": "explicit.stat_2056107438", + "text": "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + "type": "explicit" + }, + { + "id": "explicit.stat_1145481685", + "text": "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + "type": "explicit" + }, + { + "id": "explicit.stat_3538915253", + "text": "On Hitting an enemy, gains maximum added Lightning damage equal to\nthe enemy's Power for 20 seconds, up to a total of #", + "type": "explicit" + }, + { + "id": "explicit.stat_1465760952", + "text": "Cannot Block", + "type": "explicit" + }, + { + "id": "explicit.stat_3885501357", + "text": "#% increased bonuses gained from right Equipped Ring", + "type": "explicit" + }, + { + "id": "explicit.stat_3679696791", + "text": "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_3491722585", + "text": "Enemies in your Presence are Intimidated", + "type": "explicit" + }, + { + "id": "explicit.stat_2415497478", + "text": "#% chance to Avoid Physical Damage from Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_4078695", + "text": "# to Maximum Frenzy Charges", + "type": "explicit" + }, + { + "id": "explicit.stat_2772033465", + "text": "#% of Fire damage Converted to Lightning damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2350411833", + "text": "You lose #% of maximum Energy Shield per second", + "type": "explicit" + }, + { + "id": "explicit.stat_3441651621", + "text": "# Physical Damage taken from Attack Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_3035140377", + "text": "# to Level of all Attack Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2402413437", + "text": "Energy Shield Recharge starts when you use a Mana Flask", + "type": "explicit" + }, + { + "id": "explicit.stat_3700202631", + "text": "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + "type": "explicit" + }, + { + "id": "explicit.stat_2392824305", + "text": "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + "type": "explicit" + }, + { + "id": "explicit.stat_2969557004", + "text": "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_3409275777", + "text": "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + "type": "explicit" + }, + { + "id": "explicit.stat_2976476845", + "text": "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + "type": "explicit" + }, + { + "id": "explicit.stat_30438393", + "text": "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + "type": "explicit" + }, + { + "id": "explicit.stat_820939409", + "text": "Gain # Mana per Enemy Hit with Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_1541516339", + "text": "#% increased Movement Speed per Frenzy Charge", + "type": "explicit" + }, + { + "id": "explicit.stat_999436592", + "text": "Excess Life Recovery from Leech is applied to Energy Shield", + "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" + }, + { + "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_3407300125", + "text": "Increases and Reductions to Mana Regeneration Rate also\napply to Energy Shield Recharge Rate", + "type": "explicit" + }, + { + "id": "explicit.stat_480796730", + "text": "#% to maximum Block chance", + "type": "explicit" + }, + { + "id": "explicit.stat_111835965", + "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + "type": "explicit" + }, + { + "id": "explicit.stat_2840989393", + "text": "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_2161347476", + "text": "Accuracy Rating is Doubled", + "type": "explicit" + }, + { + "id": "explicit.stat_3774951878", + "text": "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + "type": "explicit" + }, + { + "id": "explicit.stat_2108821127", + "text": "Small Passive Skills in Radius also grant #% increased Totem Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1852184471", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Maces", + "type": "explicit" + }, + { + "id": "explicit.stat_2812872407", + "text": "Life Recovery from Flasks also applies to Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2714890129", + "text": "Life Leech can Overflow Maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2045949233", + "text": "#% chance for Slam Skills you use yourself to cause an additional Aftershock", + "type": "explicit" + }, + { + "id": "explicit.stat_1773308808", + "text": "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_1432756708", + "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_2456523742", + "text": "#% increased Critical Damage Bonus with Spears", + "type": "explicit" + }, + { + "id": "explicit.stat_3088348485", + "text": "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_2466785537", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + "type": "explicit" + }, + { + "id": "explicit.stat_1129429646", + "text": "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_442393998", + "text": "Small Passive Skills in Radius also grant #% increased Totem Life", + "type": "explicit" + }, + { + "id": "explicit.stat_473917671", + "text": "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_28208665", + "text": "Favours Deferred at Ritual Altars in Area reappear #% sooner", + "type": "explicit" + }, + { + "id": "explicit.stat_28208665", + "text": "Favours Deferred at Ritual Altars in your Maps reappear #% sooner", + "type": "explicit" + }, + { + "id": "explicit.stat_1546580830", + "text": "Enemies in your Presence have Lightning Resistance equal to yours", + "type": "explicit" + }, + { + "id": "explicit.stat_3999959974", + "text": "Lightning Resistance does not affect Lightning damage taken", + "type": "explicit" + }, + { + "id": "explicit.stat_2134207902", + "text": "+100% of Armour also applies to Lightning Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_391602279", + "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + "type": "explicit" + }, + { + "id": "explicit.stat_1147690586", + "text": "# to Level of all Lightning Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_944643028", + "text": "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_2081918629", + "text": "#% increased effect of Socketed Augment Items", + "type": "explicit" + }, + { + "id": "explicit.stat_3113764475", + "text": "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_1301765461", + "text": "#% to Maximum Chaos Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_1298316550", + "text": "Dodge Roll passes through Enemies", + "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" + }, + { + "id": "explicit.stat_599749213", + "text": "# to Level of all Fire Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_4112450013", + "text": "Moving while Bleeding doesn't cause you to take extra damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1031644647", + "text": "Revived Monsters from Ritual Altars in Area have #% increased chance to be Magic", + "type": "explicit" + }, + { + "id": "explicit.stat_1031644647", + "text": "Revived Monsters from Ritual Altars have #% increased chance to be Magic", + "type": "explicit" + }, + { + "id": "explicit.stat_2955966707", + "text": "The Effect of Chill on you is reversed", + "type": "explicit" + }, + { + "id": "explicit.stat_3070990531", + "text": "You have no Accuracy Penalty at Distance", + "type": "explicit" + }, + { + "id": "explicit.stat_1345835998", + "text": "Deferring Favours at Ritual Altars in Area costs #% increased Tribute", + "type": "explicit" + }, + { + "id": "explicit.stat_1345835998", + "text": "Deferring Favours at Ritual Altars in your Maps costs #% increased Tribute", + "type": "explicit" + }, + { + "id": "explicit.stat_1256719186", + "text": "#% increased Duration (Flask)", + "type": "explicit" + }, + { + "id": "explicit.stat_2397460217", + "text": "Your Life Flask also applies to your Minions", + "type": "explicit" + }, + { + "id": "explicit.stat_3979184174", + "text": "Revived Monsters from Ritual Altars in Area have #% increased chance to be Rare", + "type": "explicit" + }, + { + "id": "explicit.stat_3979184174", + "text": "Revived Monsters from Ritual Altars have #% increased chance to be Rare", + "type": "explicit" + }, + { + "id": "explicit.stat_2920970371", + "text": "#% increased Duration of Curses on you", + "type": "explicit" + }, + { + "id": "explicit.stat_64726306", + "text": "Can't use other Rings", + "type": "explicit" + }, + { + "id": "explicit.stat_1135194732", + "text": "Can have # additional Instilled Modifiers", + "type": "explicit" + }, + { + "id": "explicit.stat_331731406", + "text": "Cannot be Ignited", + "type": "explicit" + }, + { + "id": "explicit.stat_3154256486", + "text": "You count as on Low Life while at #% of maximum Mana or below", + "type": "explicit" + }, + { + "id": "explicit.stat_1143240184", + "text": "You count as on Low Mana while at #% of maximum Life or below", + "type": "explicit" + }, + { + "id": "explicit.stat_1555237944", + "text": "#% chance when you gain a Charge to gain an additional Charge", + "type": "explicit" + }, + { + "id": "explicit.stat_3419203492", + "text": "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + "type": "explicit" + }, + { + "id": "explicit.stat_4219853180", + "text": "Ritual Favours in Area have #% increased chance to be Omens", + "type": "explicit" + }, + { + "id": "explicit.stat_4219853180", + "text": "Ritual Favours in your Maps have #% increased chance to be Omens", + "type": "explicit" + }, + { + "id": "explicit.stat_3814876985", + "text": "#% chance to gain a Power Charge on Critical Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_1321104829", + "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + "type": "explicit" + }, + { + "id": "explicit.stat_3679769182", + "text": "# to Stun Threshold per Socket filled", + "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" + }, + { + "id": "explicit.stat_1451444093", + "text": "Bifurcates Critical Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_1640965354", + "text": "Area contains #% increased number of Runic Monster Markers", + "type": "explicit" + }, + { + "id": "explicit.stat_1640965354", + "text": "#% increased number of Runic Monster Markers", + "type": "explicit" + }, + { + "id": "explicit.stat_3835551335", + "text": "Cannot be Poisoned", + "type": "explicit" + }, + { + "id": "explicit.stat_1777421941", + "text": "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_2256120736", + "text": "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + "type": "explicit" + }, + { + "id": "explicit.stat_2694800111", + "text": "#% increased number of Rare Expedition Monsters in Area", + "type": "explicit" + }, + { + "id": "explicit.stat_2694800111", + "text": "#% increased number of Rare Expedition Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_525523040", + "text": "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + "type": "explicit" + }, + { + "id": "explicit.stat_2933024469", + "text": "Right ring slot: Projectiles from Spells cannot Fork", + "type": "explicit" + }, + { + "id": "explicit.stat_2378065031", + "text": "Curse Skills have #% increased Cast Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_2786852525", + "text": "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_3081479811", + "text": "Allies in your Presence Regenerate #% of their Maximum Life per second", + "type": "explicit" + }, + { + "id": "explicit.stat_1555918911", + "text": "Right ring slot: Projectiles from Spells Chain +# times", + "type": "explicit" + }, + { + "id": "explicit.stat_65135897", + "text": "Cannot use Shield Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2437476305", + "text": "Left ring slot: Projectiles from Spells Fork", + "type": "explicit" + }, + { + "id": "explicit.stat_3826125995", + "text": "Projectiles from Spells cannot Pierce", + "type": "explicit" + }, + { + "id": "explicit.stat_2173791158", + "text": "Allies in your Presence Gain #% of Damage as Extra Fire Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3647242059", + "text": "Left ring slot: Projectiles from Spells cannot Chain", + "type": "explicit" + }, + { + "id": "explicit.stat_3859848445", + "text": "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + "type": "explicit" + }, + { + "id": "explicit.stat_599320227", + "text": "#% chance for Trigger skills to refund half of Energy Spent", + "type": "explicit" + }, + { + "id": "explicit.stat_3518087336", + "text": "Dodge Roll avoids all Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_3156445245", + "text": "#% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", + "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" + }, + { + "id": "explicit.stat_2518598473", + "text": "Take # Fire Damage when you Ignite an Enemy", + "type": "explicit" + }, + { + "id": "explicit.stat_2849546516", + "text": "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + "type": "explicit" + }, + { + "id": "explicit.stat_3065378291", + "text": "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1569159338", + "text": "#% increased Parry Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2107703111", + "text": "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2901213448", + "text": "# to Level of all Elemental Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2267564181", + "text": "Require # additional enemies to be Surrounded", + "type": "explicit" + }, + { + "id": "explicit.stat_258955603", + "text": "Alternating every 5 seconds:\nTake #% more Damage from Hits\nTake #% more Damage over time", + "type": "explicit" + }, + { + "id": "explicit.stat_491899612", + "text": "Cannot be Shocked", + "type": "explicit" + }, + { + "id": "explicit.stat_1083387327", + "text": "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_1083387327", + "text": "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters in your Maps", + "type": "explicit" + }, + { + "id": "explicit.stat_1361645249", + "text": "Allies in your Presence have Block Chance equal to yours", + "type": "explicit" + }, + { + "id": "explicit.stat_593241812", + "text": "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + "type": "explicit" + }, + { + "id": "explicit.stat_1697951953", + "text": "#% increased Hazard Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_793875384", + "text": "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", + "type": "explicit" + }, + { + "id": "explicit.stat_1352561456", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3865605585", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_1285594161", + "text": "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + "type": "explicit" + }, + { + "id": "explicit.stat_30642521", + "text": "You can apply # additional Curses", + "type": "explicit" + }, + { + "id": "explicit.stat_3628935286", + "text": "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + "type": "explicit" + }, + { + "id": "explicit.stat_3418590244", + "text": "Can only be applied to Precursor Tower Maps\nCompleting the Tower makes all nearby Maps accessible", + "type": "explicit" + }, + { + "id": "explicit.stat_2147773348", + "text": "Energy Shield is increased by Uncapped Cold Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_1000566389", + "text": "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_419098854", + "text": "Evasion Rating is increased by Uncapped Lightning Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_713266390", + "text": "Armour is increased by Uncapped Fire Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_412709880", + "text": "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + "type": "explicit" + }, + { + "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_1087108135", + "text": "Small Passive Skills in Radius also grant #% increased Curse Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_61644361", + "text": "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_830345042", + "text": "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + "type": "explicit" + }, + { + "id": "explicit.stat_818877178", + "text": "#% increased Parried Debuff Magnitude", + "type": "explicit" + }, + { + "id": "explicit.stat_2162684861", + "text": "Areas with Powerful Map Bosses contain an additional Essence", + "type": "explicit" + }, + { + "id": "explicit.stat_2942704390", + "text": "Skills have +# to Limit", + "type": "explicit" + }, + { + "id": "explicit.stat_3969608626", + "text": "Effect is not removed when Unreserved Mana is Filled", + "type": "explicit" + }, + { + "id": "explicit.stat_3311259821", + "text": "Deals #% of current Mana as Chaos Damage to you when Effect ends", + "type": "explicit" + }, + { + "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" + }, + { + "id": "explicit.stat_2104138899", + "text": "Parrying applies # Stack of Critical Weakness", + "type": "explicit" + }, + { + "id": "explicit.stat_4117005593", + "text": "Skills gain #% of Damage as Chaos Damage per 3 Life Cost", + "type": "explicit" + }, + { + "id": "explicit.stat_2089152298", + "text": "#% of Parry Physical Damage Converted to Cold Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3642528642|7", + "text": "Only affects Passives in Very Large Ring", + "type": "explicit" + }, + { + "id": "explicit.stat_127081978", + "text": "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + "type": "explicit" + }, + { + "id": "explicit.stat_1087531620", + "text": "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_3856744003", + "text": "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_1323216174", + "text": "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_2202308025", + "text": "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_2913235441", + "text": "When you kill a Rare monster, you gain its Modifiers for 60 seconds", + "type": "explicit" + }, + { + "id": "explicit.stat_4162678661", + "text": "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_332217711", + "text": "#% increased Maximum Life per socketed Grand Spectrum", + "type": "explicit" + }, + { + "id": "explicit.stat_3642528642|4", + "text": "Only affects Passives in Medium Ring", + "type": "explicit" + }, + { + "id": "explicit.stat_3642528642|3", + "text": "Only affects Passives in Medium-Small Ring", + "type": "explicit" + }, + { + "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_4258000627", + "text": "Small Passive Skills in Radius also grant Dazes on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_1881230714", + "text": "#% chance to gain Onslaught on Killing Hits with this Weapon", + "type": "explicit" + }, + { + "id": "explicit.stat_1160637284", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + "type": "explicit" + }, + { + "id": "explicit.stat_221701169", + "text": "Notable Passive Skills in Radius also grant #% increased Poison Duration", + "type": "explicit" + }, + { + "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_3395186672", + "text": "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1002973905", + "text": "Recover all Mana when Used", + "type": "explicit" + }, + { + "id": "explicit.stat_1944020877", + "text": "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_3642528642|2", + "text": "Only affects Passives in Small Ring", + "type": "explicit" + }, + { + "id": "explicit.stat_3642528642|1", + "text": "Only affects Passives in Very Small Ring", + "type": "explicit" + }, + { + "id": "explicit.stat_2320654813", + "text": "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + "type": "explicit" + }, + { + "id": "explicit.stat_2066964205", + "text": "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + "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" + }, + { + "id": "explicit.stat_2044810874", + "text": "This item gains bonuses from Socketed Items as though it was a Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_4089835882", + "text": "Small Passive Skills in Radius also grant Break #% increased Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_2957287092", + "text": "Chance to Block Damage is Lucky", + "type": "explicit" + }, + { + "id": "explicit.stat_429143663", + "text": "Banner Skills have #% increased Area of Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_1084853859", + "text": "Delirium Fog in your Maps never dissipates", + "type": "explicit" + }, + { + "id": "explicit.stat_1228222525", + "text": "Favours at Ritual Altars in Area costs #% increased Tribute", + "type": "explicit" + }, + { + "id": "explicit.stat_1320662475", + "text": "Small Passive Skills in Radius also grant #% increased Thorns damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2500154144", + "text": "Can Reroll Favours at Ritual Altars in your Maps twice as many times", + "type": "explicit" + }, + { + "id": "explicit.stat_1217651243", + "text": "Breaches expand to at least # metre in radius\nBreaches remain open while there are alive Breach Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_1217651243", + "text": "Breaches in your Maps expand to at least # metre in radius\nBreaches in your Maps remain open while there are alive Breach Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_1505023559", + "text": "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_3042527515", + "text": "Areas with Map Powerful Map Bosses contain an additional Shrine", + "type": "explicit" + }, + { + "id": "explicit.stat_3042527515", + "text": "Areas with Powerful Map Bosses contain an additional Shrine", + "type": "explicit" + }, + { + "id": "explicit.stat_3040603554", + "text": "Areas with Powerful Map Bosses contain an additional Strongbox", + "type": "explicit" + }, + { + "id": "explicit.stat_1613322341", + "text": "Enemies Immobilised by you take #% less Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_4238331303", + "text": "Immobilise enemies at #% buildup instead of 100%", + "type": "explicit" + }, + { + "id": "explicit.stat_144770454", + "text": "Expedition Monsters in your Maps spawn with half of their Life missing", + "type": "explicit" + }, + { + "id": "explicit.stat_3642528642|6", + "text": "Only affects Passives in Large Ring", + "type": "explicit" + }, + { + "id": "explicit.stat_2588474575", + "text": "Map Bosses are Hunted by Azmeri Spirits", + "type": "explicit" + }, + { + "id": "explicit.stat_243380454", + "text": "# additional Rare Monsters are spawned from Abysses", + "type": "explicit" + }, + { + "id": "explicit.stat_1458461453", + "text": "Map Bosses have # additional Modifier", + "type": "explicit" + }, + { + "id": "explicit.stat_937291386", + "text": "Favours Rerolled at Ritual Altars in Area have #% chance to cost no Tribute", + "type": "explicit" + }, + { + "id": "explicit.stat_937291386", + "text": "Favours Rerolled at Ritual Altars in your Maps have #% chance to cost no Tribute", + "type": "explicit" + }, + { + "id": "explicit.stat_918325986", + "text": "#% increased Skill Speed while Shapeshifted", + "type": "explicit" + }, + { + "id": "explicit.stat_2440073079", + "text": "#% increased Damage while Shapeshifted", + "type": "explicit" + }, + { + "id": "explicit.stat_234657505", + "text": "Grants effect of Guided Freezing Shrine", + "type": "explicit" + }, + { + "id": "explicit.stat_378817135", + "text": "#% to Fire and Chaos Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_3642528642|5", + "text": "Only affects Passives in Medium-Large Ring", + "type": "explicit" + }, + { + "id": "explicit.stat_2816104578", + "text": "Runic Monsters in your Maps are Duplicated", + "type": "explicit" + }, + { + "id": "explicit.stat_1352729973", + "text": "Area has #% increased chance to contain Rogue Exiles", + "type": "explicit" + }, + { + "id": "explicit.stat_1352729973", + "text": "#% increased chance of Rogue Exiles", + "type": "explicit" + }, + { + "id": "explicit.stat_3393628375", + "text": "#% to Cold and Chaos Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_2442647190", + "text": "Recover #% of maximum Life when you Block", + "type": "explicit" + }, + { + "id": "explicit.stat_3401186585", + "text": "#% increased Parried Debuff Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_3078574625", + "text": "#% increased Effect of Remnants in Area", + "type": "explicit" + }, + { + "id": "explicit.stat_3078574625", + "text": "#% increased Effect of Remnants in your Maps", + "type": "explicit" + }, + { + "id": "explicit.stat_3465022881", + "text": "#% to Lightning and Chaos Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_586037801", + "text": "#% increased Desecrated Modifier magnitudes", + "type": "explicit" + }, + { + "id": "explicit.stat_3389184522", + "text": "Leech from Critical Hits is instant", + "type": "explicit" + }, + { + "id": "explicit.stat_2396719220", + "text": "Area contains an additional Magic Chest", + "type": "explicit" + }, + { + "id": "explicit.stat_40618390", + "text": "Notable Passive Skills in Radius also grant #% increased Intelligence", + "type": "explicit" + }, + { + "id": "explicit.stat_2717786748", + "text": "Notable Passive Skills in Radius also grant #% increased Dexterity", + "type": "explicit" + }, + { + "id": "explicit.stat_2284588585", + "text": "Gain a random Charge on reaching Maximum Rage, no more than once every # seconds", + "type": "explicit" + }, + { + "id": "explicit.stat_3642528642|8", + "text": "Only affects Passives in Massive Ring", + "type": "explicit" + }, + { + "id": "explicit.stat_1736538865", + "text": "You have Consecrated Ground around you while stationary", + "type": "explicit" + }, + { + "id": "explicit.stat_3851480592", + "text": "Lose all Rage on reaching Maximum Rage", + "type": "explicit" + }, + { + "id": "explicit.stat_1842384813", + "text": "Notable Passive Skills in Radius also grant #% increased Strength", + "type": "explicit" + }, + { + "id": "explicit.stat_2716923832", + "text": "Recover Life equal to #% of Mana Flask's Recovery Amount when used", + "type": "explicit" + }, + { + "id": "explicit.stat_1430165758", + "text": "#% increased Spirit per socketed Grand Spectrum", + "type": "explicit" + }, + { + "id": "explicit.stat_1163615092", + "text": "Projectiles have #% increased Critical Hit chance for each time they have Pierced", + "type": "explicit" + }, + { + "id": "explicit.stat_2566921799", + "text": "Grants a Power Charge on use", + "type": "explicit" + }, + { + "id": "explicit.stat_280890192", + "text": "Grants a Frenzy Charge on use", + "type": "explicit" + }, + { + "id": "explicit.stat_3891350097", + "text": "Recover Mana equal to #% of Life Flask's Recovery Amount when used", + "type": "explicit" + }, + { + "id": "explicit.stat_21824003", + "text": "#% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_2948688907", + "text": "Small Passive Skills in Radius also grant #% to Fire Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_3650992555", + "text": "Debuffs you inflict have #% increased Slow Magnitude", + "type": "explicit" + }, + { + "id": "explicit.stat_2884937919", + "text": "Small Passive Skills in Radius also grant #% to Cold Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_3605834869", + "text": "Skills Gain #% of Mana Cost as Extra Life Cost", + "type": "explicit" + }, + { + "id": "explicit.stat_3994876825", + "text": "Small Passive Skills in Radius also grant #% to Lightning Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_1013492127", + "text": "Spells fire # additional Projectiles\nSpells fire Projectiles in a circle", + "type": "explicit" + }, + { + "id": "explicit.stat_2620375641", + "text": "Charms use no Charges", + "type": "explicit" + }, + { + "id": "explicit.stat_2423248184", + "text": "#% less minimum Physical Attack Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1862508014", + "text": "Notable Passive Skills in Radius also grant #% to Maximum Cold Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_3735888493", + "text": "#% more maximum Physical Attack Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_338620903", + "text": "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Fire Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2421436896", + "text": "Arrows Fork", + "type": "explicit" + }, + { + "id": "explicit.stat_2138799639", + "text": "Arrows Pierce all targets after Forking", + "type": "explicit" + }, + { + "id": "explicit.stat_2217513089", + "text": "Notable Passive Skills in Radius also grant #% to Maximum Lightning Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_1961849903", + "text": "Cannot use Projectile Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_2833226514", + "text": "# Strength Requirement", + "type": "explicit" + }, + { + "id": "explicit.stat_1458880585", + "text": "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_3490187949", + "text": "Area contains # additional Abysses", + "type": "explicit" + }, + { + "id": "explicit.stat_360553763", + "text": "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", + "type": "explicit" + }, + { + "id": "explicit.stat_4101445926", + "text": "#% increased Mana Cost Efficiency", + "type": "explicit" + }, + { + "id": "explicit.stat_2516303866", + "text": "Your Critical Damage Bonus is 250%", + "type": "explicit" + }, + { + "id": "explicit.stat_1015576579", + "text": "#% increased Armour from Equipped Body Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_852470634", + "text": "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Lightning Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_514290151", + "text": "Gain #% of Maximum Mana as Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_3787436548", + "text": "Historic", + "type": "explicit" + }, + { + "id": "explicit.stat_2580617872", + "text": "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + "type": "explicit" + }, + { + "id": "explicit.stat_833138896", + "text": "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Cold Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1659564104", + "text": "#% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_1809641701", + "text": "Small Passive Skills in Radius also grant #% increased maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1509210032", + "text": "Grants up to your maximum Rage on use", + "type": "explicit" + }, + { + "id": "explicit.stat_1123023256", + "text": "#% to Chaos Resistance per Socket filled", + "type": "explicit" + }, + { + "id": "explicit.stat_2348696937", + "text": "Spells have a #% chance to inflict Withered for 4 seconds on Hit", + "type": "explicit" + }, + { + "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_944630113", + "text": "Abysses spawn #% increased Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_3872034802", + "text": "Decimating Strike", + "type": "explicit" + }, + { + "id": "explicit.stat_504915064", + "text": "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_1717295693", + "text": "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", + "type": "explicit" + }, + { + "id": "explicit.stat_3885634897", + "text": "#% chance to Poison on Hit with this weapon", + "type": "explicit" + }, + { + "id": "explicit.stat_2739148464", + "text": "Has no Attribute Requirements", + "type": "explicit" + }, + { + "id": "explicit.stat_1247628870", + "text": "Small Passive Skills in Radius also grant #% increased maximum Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_367897259", + "text": "Lose all Tailwind when Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_2459662130", + "text": "Gain Tailwind on Critical Hit, no more than once per second", + "type": "explicit" + }, + { + "id": "explicit.stat_3739186583", + "text": "Knocks Back Enemies on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_782941180", + "text": "#% of Spell Damage Leeched as Life", + "type": "explicit" + }, + { + "id": "explicit.stat_4151994709", + "text": "Notable Passive Skills in Radius also grant #% to Maximum Fire Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_2722831300", + "text": "Abysses in Area have #% increased chance to lead to an Abyssal Depths", + "type": "explicit" + }, + { + "id": "explicit.stat_2722831300", + "text": "Abysses have #% increased chance to lead to an Abyssal Depths", + "type": "explicit" + }, + { + "id": "explicit.stat_3849649145", + "text": "Creates Consecrated Ground on use", + "type": "explicit" + }, + { + "id": "explicit.stat_3148264775", + "text": "You have no Spirit", + "type": "explicit" + }, + { + "id": "explicit.stat_2420248029", + "text": "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", + "type": "explicit" + }, + { + "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" + }, + { + "id": "explicit.stat_53386210", + "text": "#% increased Spirit Reservation Efficiency", + "type": "explicit" + }, + { + "id": "explicit.stat_3675300253", + "text": "Strikes deal Splash Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3474271079", + "text": "# to all Attributes per Socket filled", + "type": "explicit" + }, + { + "id": "explicit.stat_1726753705", + "text": "#% more Life Recovered", + "type": "explicit" + }, + { + "id": "explicit.stat_2932359713", + "text": "Effect is not removed when Unreserved Life is Filled", + "type": "explicit" + }, + { + "id": "explicit.stat_3598623697", + "text": "#% of Damage taken during effect Recouped as Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1810907437", + "text": "Presence Radius is doubled", + "type": "explicit" + }, + { + "id": "explicit.stat_2518900926", + "text": "#% increased Damage with Plant Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1375667591", + "text": "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", + "type": "explicit" + }, + { + "id": "explicit.stat_4142814612", + "text": "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_3881997959", + "text": "Increases Movement Speed by 25%, plus 1% per # Evasion Rating, up to a maximum of 75%\nOther Modifiers to Movement Speed except for Sprinting do not apply", + "type": "explicit" + }, + { + "id": "explicit.stat_2741291867", + "text": "Area is overrun by the Abyssal", + "type": "explicit" + }, + { + "id": "explicit.stat_1519615863", + "text": "#% chance to cause Bleeding on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_1291285202", + "text": "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", + "type": "explicit" + }, + { + "id": "explicit.stat_1133453872", + "text": "# Dexterity Requirement", + "type": "explicit" + }, + { + "id": "explicit.stat_4126210832", + "text": "Always Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_555311715", + "text": "Gain # Rage when Hit by an Enemy during effect", + "type": "explicit" + }, + { + "id": "explicit.stat_1627878766", + "text": "Small Passive Skills in Radius also grant #% reduced Shock duration on you", + "type": "explicit" + }, + { + "id": "explicit.stat_1710200734", + "text": "#% increased chance to find Desecrated Currency", + "type": "explicit" + }, + { + "id": "explicit.stat_2910761524", + "text": "#% chance for Spell Skills to fire 2 additional Projectiles", + "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" + }, + { + "id": "explicit.stat_3091132047", + "text": "Your base Energy Shield Recharge Delay is # second", + "type": "explicit" + }, + { + "id": "explicit.stat_860443350", + "text": "Small Passive Skills in Radius also grant #% reduced Freeze Duration on you", + "type": "explicit" + }, + { + "id": "explicit.stat_3474941090", + "text": "Small Passive Skills in Radius also grant #% reduced Ignite Duration on you", + "type": "explicit" + }, + { + "id": "explicit.stat_3464644319", + "text": "No Inherent loss of Rage during effect", + "type": "explicit" + }, + { + "id": "explicit.stat_548198834", + "text": "#% increased Melee Strike Range with this weapon", + "type": "explicit" + }, + { + "id": "explicit.stat_4021234281", + "text": "Any number of Poisons from this Weapon can affect a target at the same time", + "type": "explicit" + }, + { + "id": "explicit.stat_4180952808", + "text": "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + "type": "explicit" + }, + { + "id": "explicit.stat_3176481473", + "text": "#% increased Spell Damage while on Full Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2839545956", + "text": "Area contains an additional Summoning Circle", + "type": "explicit" + }, + { + "id": "explicit.stat_3122852693", + "text": "#% to Block Chance while holding a Focus", + "type": "explicit" + }, + { + "id": "explicit.stat_150391334", + "text": "# to maximum Life per Socket filled", + "type": "explicit" + }, + { + "id": "explicit.stat_1036267537", + "text": "# to maximum Mana per Socket filled", + "type": "explicit" + }, + { + "id": "explicit.stat_533542952", + "text": "Inflict Elemental Exposure on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_242161915", + "text": "#% to all Elemental Resistances per socketed Grand Spectrum", + "type": "explicit" + }, + { + "id": "explicit.stat_358129101", + "text": "Area contains # additional Azmeri Spirit", + "type": "explicit" + }, + { + "id": "explicit.stat_4032352472", + "text": "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_535217483", + "text": "#% increased Projectile Speed with this Weapon", + "type": "explicit" + }, + { + "id": "explicit.stat_2789248444", + "text": "#% increased chance for Abyssal monsters to have Abyssal Modifiers", + "type": "explicit" + }, + { + "id": "explicit.stat_4142786792", + "text": "All Damage from Hits with this Weapon Contributes to Pin Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_461663422", + "text": "#% increased Effect of Jewel Socket Passive Skills\ncontaining Corrupted Magic Jewels", + "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" + }, + { + "id": "explicit.stat_2770044702", + "text": "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + "type": "explicit" + }, + { + "id": "explicit.stat_281201999", + "text": "Knockback direction is reversed", + "type": "explicit" + }, + { + "id": "explicit.stat_1500744699", + "text": "Maximum Chance to Evade is 50%", + "type": "explicit" + }, + { + "id": "explicit.stat_4062529591", + "text": "Cannot Immobilise enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_3278008231", + "text": "Fully Armour Broken enemies you kill with Hits Shatter", + "type": "explicit" + }, + { + "id": "explicit.stat_3936121440", + "text": "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + "type": "explicit" + }, + { + "id": "explicit.stat_3058238353", + "text": "Critical Hits inflict Impale", + "type": "explicit" + }, + { + "id": "explicit.stat_1856590738", + "text": "This item gains bonuses from Socketed Items as though it was Gloves", + "type": "explicit" + }, + { + "id": "explicit.stat_1967040409", + "text": "Spell Skills have #% increased Area of Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_3243034867", + "text": "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", + "type": "explicit" + }, + { + "id": "explicit.stat_949573361", + "text": "Breaks Armour equal to #% of damage from Hits with this weapon", + "type": "explicit" + }, + { + "id": "explicit.stat_4019237939", + "text": "Gain #% of Damage as Extra Physical Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_701923421", + "text": "Hits against you have #% reduced Critical Damage Bonus per Socket filled", + "type": "explicit" + }, + { + "id": "explicit.stat_3414998042", + "text": "Critical Hits cannot Extract Impale", + "type": "explicit" + }, + { + "id": "explicit.stat_3666934677", + "text": "#% increased Experience gain", + "type": "explicit" + }, + { + "id": "explicit.stat_1840985759", + "text": "#% increased Area of Effect for Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_4234573345", + "text": "#% increased Effect of Notable Passive Skills in Radius", + "type": "explicit" + }, + { + "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_844449513", + "text": "Notable Passive Skills in Radius also grant #% increased Movement Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_1381474422", + "text": "#% increased Magnitude of Damaging Ailments you inflict", + "type": "explicit" + }, + { + "id": "explicit.stat_932866937", + "text": "Life and Mana Flasks can be equipped in either slot", + "type": "explicit" + }, + { + "id": "explicit.stat_2573406169", + "text": "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", + "type": "explicit" + }, + { + "id": "explicit.stat_170426423", + "text": "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1952324525", + "text": "All Attacks count as Empowered Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_179541474", + "text": "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + "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" + }, + { + "id": "explicit.stat_2912416697", + "text": "Notable Passive Skills in Radius also grant #% increased Blind Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_2918129907", + "text": "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", + "type": "explicit" + }, + { + "id": "explicit.stat_3753446846", + "text": "Expeditions in Area have # Remnants", + "type": "explicit" + }, + { + "id": "explicit.stat_3753446846", + "text": "Expeditions in your Maps have # Remnant", + "type": "explicit" + }, + { + "id": "explicit.stat_223138829", + "text": "Inflict Elemental Exposure to Enemies 3 metres in front of you\nfor 4 seconds, every 0.25 seconds while raised", + "type": "explicit" + }, + { + "id": "explicit.stat_2264240911", + "text": "Small Passive Skills in Radius also grant #% to Chaos Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_1920747151", + "text": "Non-Channelling Spells cost an additional #% of your maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1756380435", + "text": "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_2374711847", + "text": "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_429867172", + "text": "# to maximum number of Summoned Totems", + "type": "explicit" + }, + { + "id": "explicit.stat_2603051299", + "text": "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Chaos Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_300723956", + "text": "Attack Hits apply Incision", + "type": "explicit" + }, + { + "id": "explicit.stat_1731760476", + "text": "Notable Passive Skills in Radius also grant #% to Maximum Chaos Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_3503117295", + "text": "Recover #% of your maximum Life when an Enemy dies in your Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_321765853", + "text": "# Physical Damage taken from Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_2371108370", + "text": "If Map was not previously Irradiated, completing Map adds Irradiation instead", + "type": "explicit" + }, + { + "id": "explicit.stat_1800303440", + "text": "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + "type": "explicit" + }, + { + "id": "explicit.stat_3173882956", + "text": "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + "type": "explicit" + }, + { + "id": "explicit.stat_2598171606", + "text": "Cannot use Warcries", + "type": "explicit" + }, + { + "id": "explicit.stat_33298888", + "text": "Attack Hits inflict Spectral Fire for # seconds", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|64921", + "text": "Sacrifice up to 10 Vaal Orbs to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_3488640354", + "text": "Parried enemies take more Spell Damage instead of more Attack Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1195319608", + "text": "#% increased Energy Shield from Equipped Body Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_4046380260", + "text": "Minions cannot Die while affected by a Life Flask", + "type": "explicit" + }, + { + "id": "explicit.stat_232701452", + "text": "#% increased Freeze Buildup if you've consumed an Power Charge Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_332337290", + "text": "# Life Regeneration per second per Socket filled", + "type": "explicit" + }, + { + "id": "explicit.stat_3429986699", + "text": "You and Allies in your Presence have #% increased Accuracy Rating", + "type": "explicit" + }, + { + "id": "explicit.stat_1373860425", + "text": "#% increased Spell Damage with Spells that cost Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2760643568", + "text": "#% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", + "type": "explicit" + }, + { + "id": "explicit.stat_4043376133", + "text": "#% increased Magnitude of Abyssal Wasting you inflict", + "type": "explicit" + }, + { + "id": "explicit.stat_693180608", + "text": "#% increased Damage while your Companion is in your Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_1550131834", + "text": "Critical Hits with Spells apply # Stack of Critical Weakness", + "type": "explicit" + }, + { + "id": "explicit.stat_3314050176", + "text": "Life Leech is Converted to Energy Shield Leech", + "type": "explicit" + }, + { + "id": "explicit.stat_2149603090", + "text": "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|62634", + "text": "Sacrifice up to 20 Exalted Orbs to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_1846980580", + "text": "Notable Passive Skills in Radius also grant # to Maximum Rage", + "type": "explicit" + }, + { + "id": "explicit.stat_3240073117", + "text": "#% increased Life Recovery rate", + "type": "explicit" + }, + { + "id": "explicit.stat_1078309513", + "text": "Invocated Spells deal #% increased Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3583542124", + "text": "#% increased Block chance against Projectiles", + "type": "explicit" + }, + { + "id": "explicit.stat_3830953767", + "text": "#% chance to Curse Enemies with Enfeeble on Block", + "type": "explicit" + }, + { + "id": "explicit.stat_3811649872", + "text": "Increases and Reductions to Spell damage also apply to Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|33979", + "text": "Passives in Radius of Conduit can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_942519401", + "text": "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + "type": "explicit" + }, + { + "id": "explicit.stat_3171212276", + "text": "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + "type": "explicit" + }, + { + "id": "explicit.stat_1076031760", + "text": "Infinite Parry Range", + "type": "explicit" + }, + { + "id": "explicit.stat_3598729471", + "text": "You can only Socket Emerald Jewels in this item", + "type": "explicit" + }, + { + "id": "explicit.stat_3631920880", + "text": "Lightning Resistance is unaffected by Area Penalties", + "type": "explicit" + }, + { + "id": "explicit.stat_746505085", + "text": "Reflects opposite Ring", + "type": "explicit" + }, + { + "id": "explicit.stat_2468595624", + "text": "Projectiles deal #% increased Damage with Hits against Enemies within 2m", + "type": "explicit" + }, + { + "id": "explicit.stat_2534359663", + "text": "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|46742", + "text": "Passives in Radius of Elemental Equilibrium can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_3247805335", + "text": "Fire Resistance is unaffected by Area Penalties", + "type": "explicit" + }, + { + "id": "explicit.stat_2675129731", + "text": "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_4031148736", + "text": "You can only Socket Ruby Jewels in this item", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|32349", + "text": "Passives in Radius of Giant's Blood can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_331648983", + "text": "When you reload, triggers Gemini Surge to alternately\ngain # Cold Surge or # Fire Surge", + "type": "explicit" + }, + { + "id": "explicit.stat_4207433208", + "text": "Cold Resistance is unaffected by Area Penalties", + "type": "explicit" + }, + { + "id": "explicit.stat_1056492907", + "text": "Energy Shield Recharge starts on use", + "type": "explicit" + }, + { + "id": "explicit.stat_21302430", + "text": "You can only Socket Sapphire Jewels in this item", + "type": "explicit" + }, + { + "id": "explicit.stat_314741699", + "text": "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_1027889455", + "text": "Non-Channelling Spells deal #% increased Damage per 100 maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2704225257", + "text": "# to Spirit", + "type": "explicit" + }, + { + "id": "explicit.stat_1911237468", + "text": "#% increased Stun Threshold while Parrying", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|18684", + "text": "Passives in Radius of Avatar of Fire can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|37484", + "text": "Passives in Radius of Primal Hunger can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_1136768410", + "text": "#% increased Cast Speed when on Low Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1052498387", + "text": "Every second, inflicts Critical Weakness on enemies in your Presence for # second", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|19288", + "text": "Passives in Radius of Glancing Blows can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_1464727508", + "text": "Enemies in your Presence are Blinded", + "type": "explicit" + }, + { + "id": "explicit.stat_1752419596", + "text": "Gain Deflection Rating equal to #% of Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_1536107934", + "text": "You cannot Sprint", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|45202", + "text": "Passives in Radius of Ancestral Bond can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|54496", + "text": "Sacrifice up to 20 Regal Orbs to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|49977", + "text": "Sacrifice up to 10 Chaos Orbs to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_3399499561", + "text": "#% increased Damage per Minion", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|33369", + "text": "Passives in Radius of Vaal Pact can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_3709513762", + "text": "# to Level of Elemental Weakness Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2223678961", + "text": "Adds # to # Chaos damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|51749", + "text": "Passives in Radius of Blood Magic can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|56349", + "text": "Passives in Radius of Chaos Inoculation can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_1078455967", + "text": "# to Level of all Cold Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|20358", + "text": "Sacrifice up to 10 Orbs of Alchemy to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_2300185227", + "text": "# to Dexterity and Intelligence", + "type": "explicit" + }, + { + "id": "explicit.stat_3201111383", + "text": "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", + "type": "explicit" + }, + { + "id": "explicit.stat_2890355696", + "text": "Area has #% chance to contain four additional Abysses", + "type": "explicit" + }, + { + "id": "explicit.stat_2890355696", + "text": "Abysses have a #% chance to contain 4 additional Pits", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|55048", + "text": "Passives in Radius of Pain Attunement can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_3703496511", + "text": "Intimidate Enemies on Block for # second", + "type": "explicit" + }, + { + "id": "explicit.stat_3932115504", + "text": "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|56605", + "text": "Passives in Radius of Bulwark can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|39935", + "text": "Passives in Radius of Necromantic Talisman can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_3991877392", + "text": "Notable Passive Skills in Radius also grant # to Spirit", + "type": "explicit" + }, + { + "id": "explicit.stat_1266413530", + "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + "type": "explicit" + }, + { + "id": "explicit.stat_3108672983", + "text": "Rolls only the minimum or maximum Damage value for each Damage Type", + "type": "explicit" + }, + { + "id": "explicit.stat_447757144", + "text": "When you Consume a Charge Trigger Chaotic Surge to gain # Chaos Surge", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|14540", + "text": "Passives in Radius of Unwavering Stance can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_1285684287", + "text": "Enemies in your Presence count as being on Low Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1515531208", + "text": "# to # Cold Thorns damage", + "type": "explicit" + }, + { + "id": "explicit.stat_538848803", + "text": "# to Strength and Dexterity", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|14226", + "text": "Passives in Radius of Dance with Death can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_2996245527", + "text": "You cannot be Chilled or Frozen", + "type": "explicit" + }, + { + "id": "explicit.stat_1990472846", + "text": "Recover #% of Missing Life before being Hit by an Enemy", + "type": "explicit" + }, + { + "id": "explicit.stat_3226351972", + "text": "Delirium Fog in Area lasts # additional seconds before dissipating", + "type": "explicit" + }, + { + "id": "explicit.stat_3226351972", + "text": "Delirium Fog in your Maps lasts # additional seconds before dissipating", + "type": "explicit" + }, + { + "id": "explicit.stat_2809428780", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Spears", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|25100", + "text": "Passives in Radius of Oasis can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_2998305364", + "text": "Deal no Elemental Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1896726125", + "text": "# to maximum Valour", + "type": "explicit" + }, + { + "id": "explicit.stat_2907381231", + "text": "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3418580811|21", + "text": "Remembrancing # songworthy deeds by the line of Vorana\nPassives in radius are Conquered by the Kalguur", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|44017", + "text": "Passives in Radius of Resolute Technique can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_1761741119", + "text": "Banners always have maximum Valour", + "type": "explicit" + }, + { + "id": "explicit.stat_2678930256", + "text": "#% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", + "type": "explicit" + }, + { + "id": "explicit.stat_2432200638", + "text": "Damage taken Recouped as Life is also Recouped as Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_1535626285", + "text": "# to Strength and Intelligence", + "type": "explicit" + }, + { + "id": "explicit.stat_2109189637", + "text": "#% of Lightning Damage Converted to Chaos Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_83011992", + "text": "Enemies in your Presence have no Elemental Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_1138708335", + "text": "Monster Damage penetrates #% of Cold Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_666077204", + "text": "Companions have #% increased Attack Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|34497", + "text": "Passives in Radius of Heartstopper can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_3509362078", + "text": "#% increased Evasion Rating from Equipped Body Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_4246007234", + "text": "#% increased Attack Damage while on Low Life", + "type": "explicit" + }, + { + "id": "explicit.stat_3408222535", + "text": "You and Allies in your Presence have #% increased Attack Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_1310597900", + "text": "Players have #% more Recovery Rate of Life, Mana and Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2463230181", + "text": "#% Surpassing chance to fire an additional Arrow", + "type": "explicit" + }, + { + "id": "explicit.stat_76982026", + "text": "Sacrifice # Life to not consume the last bolt when firing", + "type": "explicit" + }, + { + "id": "explicit.stat_2690740379", + "text": "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_120737942", + "text": "Ritual Altars in Area allow rerolling Favours an additional time", + "type": "explicit" + }, + { + "id": "explicit.stat_120737942", + "text": "Ritual Altars allow rerolling Favours an additional time", + "type": "explicit" + }, + { + "id": "explicit.stat_3658708511", + "text": "#% of Life Leeched from targets affected by Abyssal Wasting is Instant", + "type": "explicit" + }, + { + "id": "explicit.stat_3823990000", + "text": "#% chance to load a bolt into all Crossbow skills on Kill", + "type": "explicit" + }, + { + "id": "explicit.stat_2418601510", + "text": "Chaos Damage from Hits also Contributes to Shock Chance", + "type": "explicit" + }, + { + "id": "explicit.stat_1436284579", + "text": "Cannot be Blinded", + "type": "explicit" + }, + { + "id": "explicit.stat_2480151124", + "text": "Equipment has no Attribute Requirements", + "type": "explicit" + }, + { + "id": "explicit.stat_3550545679", + "text": "Attacks consume an Endurance Charge to Critically Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_546201303", + "text": "#% of Mana Leeched from targets affected by Abyssal Wasting is Instant", + "type": "explicit" + }, + { + "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" + }, + { + "id": "explicit.stat_1150343007", + "text": "#% of Damage from Hits is taken from your Damageable Companion's Life before you", + "type": "explicit" + }, + { + "id": "explicit.stat_3749502527", + "text": "#% chance to gain Volatility on Kill", + "type": "explicit" + }, + { + "id": "explicit.stat_3084372306", + "text": "#% increased Life Regeneration rate while Surrounded", + "type": "explicit" + }, + { + "id": "explicit.stat_2326202293", + "text": "Players are Cursed with Temporal Chains", + "type": "explicit" + }, + { + "id": "explicit.stat_2836928993", + "text": "Enemies in your Presence count as having double Power", + "type": "explicit" + }, + { + "id": "explicit.stat_396200591", + "text": "Skills have # seconds to Cooldown", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|57513", + "text": "Passives in Radius of Eldritch Battery can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_2695354435", + "text": "#% increased Global Evasion Rating when on Low Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2890401248", + "text": "Enemies in your Presence are Hindered", + "type": "explicit" + }, + { + "id": "explicit.stat_3371085671", + "text": "Unique Monsters have # additional Rare Modifier", + "type": "explicit" + }, + { + "id": "explicit.stat_3371085671", + "text": "Unique Monsters in your Maps have # additional Rare Modifier", + "type": "explicit" + }, + { + "id": "explicit.stat_558910024", + "text": "Players are Cursed with Elemental Weakness", + "type": "explicit" + }, + { + "id": "explicit.stat_4103440490", + "text": "Players are Cursed with Enfeeble", + "type": "explicit" + }, + { + "id": "explicit.stat_3246948616", + "text": "Lightning Damage of Enemies Hitting you is Lucky during effect", + "type": "explicit" + }, + { + "id": "explicit.stat_1273508088", + "text": "Gain 1 Druidic Prowess for every 20 total Rage spent", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|33404", + "text": "Passives in Radius of Eternal Youth can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_3314536008", + "text": "Inflict Cold Exposure on Igniting an Enemy", + "type": "explicit" + }, + { + "id": "explicit.stat_2733960806", + "text": "This item gains bonuses from Socketed Items as though it was Boots", + "type": "explicit" + }, + { + "id": "explicit.stat_2665488635", + "text": "Inflict Lightning Exposure on Critical Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_3510648768", + "text": "Players have #% more Armour, Evasion and Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_1009412152", + "text": "#% chance to Aggravate Bleeding on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_3164544692", + "text": "Take # Chaos damage per second per Endurance Charge", + "type": "explicit" + }, + { + "id": "explicit.stat_1175213674", + "text": "#% of Elemental damage from Hits taken as Chaos damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3418580811|22", + "text": "Remembrancing # songworthy deeds by the line of Medved\nPassives in radius are Conquered by the Kalguur", + "type": "explicit" + }, + { + "id": "explicit.stat_2369495153", + "text": "#% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_1895238057", + "text": "#% increased Mana Regeneration Rate while Surrounded", + "type": "explicit" + }, + { + "id": "explicit.stat_2312741059", + "text": "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", + "type": "explicit" + }, + { + "id": "explicit.stat_1538879632", + "text": "Inflict Fire Exposure on Shocking an Enemy", + "type": "explicit" + }, + { + "id": "explicit.stat_3093465148", + "text": "Monster Damage penetrates #% of Lightning Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_281990982", + "text": "You and Allies in your Presence have #% increased Cast Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_3119282240", + "text": "Players have #% more maximum Life and Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2638756573", + "text": "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_3550168289", + "text": "Area is inhabited by # additional Rogue Exile", + "type": "explicit" + }, + { + "id": "explicit.stat_3550168289", + "text": "Your Maps are inhabited by # additional Rogue Exile", + "type": "explicit" + }, + { + "id": "explicit.stat_3588388638", + "text": "Monster Damage penetrates #% of Fire Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_1272938854", + "text": "Evasion Rating is doubled if you have not been Hit Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_1168851547", + "text": "Natural Rare Monsters in Area have # extra Abyssal Modifier", + "type": "explicit" + }, + { + "id": "explicit.stat_2677352961", + "text": "#% increased Melee Damage against Heavy Stunned enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_4250009622", + "text": "#% chance to be Poisoned", + "type": "explicit" + }, + { + "id": "explicit.stat_2295988214", + "text": "#% of Elemental Damage Converted to Chaos Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1494950893", + "text": "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|52", + "text": "Passives in Radius of Zealot's Oath can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_1888024332", + "text": "You can have two Companions of different types", + "type": "explicit" + }, + { + "id": "explicit.stat_1679776108", + "text": "Abyssal Wasting you inflict has Infinite Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_1404134612", + "text": "You and Allies in your Presence have #% to Chaos Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_1695767482", + "text": "Inflict Corrupted Blood for # second on Block, dealing #% of\nyour maximum Life as Physical damage per second", + "type": "explicit" + }, + { + "id": "explicit.stat_775597083", + "text": "Areas with Powerful Map Bosses contain an additional Azmeri Spirit", + "type": "explicit" + }, + { + "id": "explicit.stat_4245256219", + "text": "Skill Gems have no Attribute Requirements", + "type": "explicit" + }, + { + "id": "explicit.stat_806994543", + "text": "#% increased Thorns damage if you've consumed an Endurance Charge Recently", + "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" + }, + { + "id": "explicit.stat_3835522656", + "text": "Adds # to # Lightning Damage to Unarmed Melee Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_2156230257", + "text": "All Damage from Hits with this Weapon Contributes to Chill Magnitude", + "type": "explicit" + }, + { + "id": "explicit.stat_2749595652", + "text": "#% chance for Skills to retain 40% of Glory on use", + "type": "explicit" + }, + { + "id": "explicit.stat_2337295272", + "text": "Minions deal #% increased Damage if you've Hit Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_3181887481", + "text": "Take #% of Mana Costs you pay for Skills as Physical Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2107791433", + "text": "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_1404607671", + "text": "Soul Eater", + "type": "explicit" + }, + { + "id": "explicit.stat_3843204146", + "text": "#% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_3960211755", + "text": "Maximum Physical Damage Reduction is 50%", + "type": "explicit" + }, + { + "id": "explicit.stat_3620731914", + "text": "Attacks with this Weapon gain #% of Physical damage as Extra damage of each Element", + "type": "explicit" + }, + { + "id": "explicit.stat_3387008487", + "text": "Defend with 200% of Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_3561837752", + "text": "#% of Leech is Instant", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|4897", + "text": "Sacrifice up to 20 Armourer's Scraps to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_2523933828", + "text": "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_138421180", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + "type": "explicit" + }, + { + "id": "explicit.stat_3625518318", + "text": "Gain Arcane Surge when a Minion Dies", + "type": "explicit" + }, + { + "id": "explicit.stat_3613173483", + "text": "#% to Unarmed Melee Attack Critical Hit Chance", + "type": "explicit" + }, + { + "id": "explicit.stat_618665892", + "text": "Grants Onslaught during effect", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|45918", + "text": "Passives in Radius of Mind Over Matter can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_1070816711", + "text": "Area contains an additional Abyss", + "type": "explicit" + }, + { + "id": "explicit.stat_1070816711", + "text": "Your Maps contain an additional Abyss", + "type": "explicit" + }, + { + "id": "explicit.stat_1458343515", + "text": "This item gains bonuses from Socketed Items as though it was a Helmet", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|28492", + "text": "Passives in Radius of Iron Reflexes can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_3891922348", + "text": "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", + "type": "explicit" + }, + { + "id": "explicit.stat_3868746097", + "text": "Enemies have an Accuracy Penalty against you based on Distance", + "type": "explicit" + }, + { + "id": "explicit.stat_1776945532", + "text": "Enemies you kill have a #% chance to explode, dealing a quarter of their maximum Life as Chaos damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|47759", + "text": "Passives in Radius of Whispers of Doom can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_1777740627", + "text": "Life that would be lost by taking Damage is instead Reserved\nuntil you take no Damage to Life for # second", + "type": "explicit" + }, + { + "id": "explicit.stat_2706625504", + "text": "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", + "type": "explicit" + }, + { + "id": "explicit.stat_3954735777", + "text": "#% chance to Poison on Hit with Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_2158617060", + "text": "#% increased Archon Buff duration", + "type": "explicit" + }, + { + "id": "explicit.stat_679087890", + "text": "Defend against Hits as though you had #% more Armour per 1% current Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_3418580811|23", + "text": "Remembrancing # songworthy deeds by the line of Olroth\nPassives in radius are Conquered by the Kalguur", + "type": "explicit" + }, + { + "id": "explicit.stat_60826109", + "text": "Blind Targets when you Poison them", + "type": "explicit" + }, + { + "id": "explicit.stat_3917429943", + "text": "Grants effect of Guided Meteoric Shrine", + "type": "explicit" + }, + { + "id": "explicit.stat_250458861", + "text": "Only Soul Cores can be Socketed in this item", + "type": "explicit" + }, + { + "id": "explicit.stat_2157870819", + "text": "# to Level of Despair Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2825946427", + "text": "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", + "type": "explicit" + }, + { + "id": "explicit.stat_2593644209", + "text": "#% to all Elemental Resistances per Power Charge", + "type": "explicit" + }, + { + "id": "explicit.stat_3893509584", + "text": "Minions have Unholy Might", + "type": "explicit" + }, + { + "id": "explicit.stat_2694614739", + "text": "# to Spirit while you have at least 200 Dexterity", + "type": "explicit" + }, + { + "id": "explicit.stat_1367999357", + "text": "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_36954843", + "text": "You and Allies in your Presence have #% increased Cooldown Recovery Rate", + "type": "explicit" + }, + { + "id": "explicit.stat_1772929282", + "text": "Enemies you Curse have #% to Chaos Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_4255854327", + "text": "#% increased Accuracy Rating against Enemies affected by Abyssal Wasting", + "type": "explicit" + }, + { + "id": "explicit.stat_2278777540", + "text": "Abysses lead to an Abyssal Depths", + "type": "explicit" + }, + { + "id": "explicit.stat_1999910726", + "text": "Remnants you create have #% increased effect", + "type": "explicit" + }, + { + "id": "explicit.stat_324579579", + "text": "#% increased Attack Speed per 20 Spirit", + "type": "explicit" + }, + { + "id": "explicit.stat_3877264671", + "text": "Monster have #% increased Elemental Ailment Application", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|9085", + "text": "Passives in Radius of Crimson Assault can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_436406826", + "text": "Players are Marked for Death for # seconds\nafter killing a Rare or Unique monster", + "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" + }, + { + "id": "explicit.stat_1073942215", + "text": "#% increased Freeze Duration on Enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_1042153418", + "text": "# to Level of Temporal Chains Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2975078312", + "text": "Abyssal Monsters grant #% increased Experience", + "type": "explicit" + }, + { + "id": "explicit.stat_2975078312", + "text": "Abyss Monsters in your Maps grant #% increased Experience", + "type": "explicit" + }, + { + "id": "explicit.stat_3948285912", + "text": "# to Level of Enfeeble Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_34174842", + "text": "#% increased Cast Speed per 20 Spirit", + "type": "explicit" + }, + { + "id": "explicit.stat_3044685077", + "text": "# to Spirit while you have at least 200 Strength", + "type": "explicit" + }, + { + "id": "explicit.stat_4215035940", + "text": "On Corruption, Item gains two Enchantments", + "type": "explicit" + }, + { + "id": "explicit.stat_2387539034", + "text": "Attacks with this Weapon Penetrate #% Lightning Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|25520", + "text": "Passives in Radius of Resonance can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|19846", + "text": "Sacrifice up to 20 Artificer's Orbs to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_3579898587", + "text": "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + "type": "explicit" + }, + { + "id": "explicit.stat_145598447", + "text": "Everlasting Sacrifice", + "type": "explicit" + }, + { + "id": "explicit.stat_255840549", + "text": "Small Passive Skills in Radius also grant #% increased Hazard Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2800412928", + "text": "Grants effect of Guided Tempest Shrine", + "type": "explicit" + }, + { + "id": "explicit.stat_2101383955", + "text": "Damage Penetrates #% Elemental Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_2466011626", + "text": "#% chance for Lightning Damage with Hits to be Lucky", + "type": "explicit" + }, + { + "id": "explicit.stat_2890792988", + "text": "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", + "type": "explicit" + }, + { + "id": "explicit.stat_67169579", + "text": "# to Level of all Chaos Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3138344128", + "text": "Defend with 200% of Armour during effect", + "type": "explicit" + }, + { + "id": "explicit.stat_1827854662", + "text": "Area contains an additional Incubator Queen", + "type": "explicit" + }, + { + "id": "explicit.stat_1590846356", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3843734793", + "text": "Non-Channelling Spells deal #% increased Damage per 100 maximum Mana", + "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" + }, + { + "id": "explicit.stat_3552135623", + "text": "Prevent #% of Damage from Deflected Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_414821772", + "text": "Increases and Reductions to Projectile Speed also apply to Damage with Bows", + "type": "explicit" + }, + { + "id": "explicit.stat_2590797182", + "text": "#% increased Movement Speed Penalty from using Skills while moving", + "type": "explicit" + }, + { + "id": "explicit.stat_1850249186", + "text": "#% increased Spell Damage per 100 maximum Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_2879778895", + "text": "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", + "type": "explicit" + }, + { + "id": "explicit.stat_2586152168", + "text": "Archon recovery period expires #% faster", + "type": "explicit" + }, + { + "id": "explicit.stat_1087787187", + "text": "This item gains bonuses from Socketed Items as though it was a Body Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_425242359", + "text": "#% of Physical damage from Hits taken as Lightning damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1726353460", + "text": "Abyssal Wasting also applies #% to Lightning Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_299996", + "text": "#% increased Attack Speed while your Companion is in your Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_1282318918", + "text": "# to Spirit while you have at least 200 Intelligence", + "type": "explicit" + }, + { + "id": "explicit.stat_4245905059", + "text": "Non-Channelling Spells have #% increased Magnitude of Ailments per 100 maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_4157613372", + "text": "Abyss Pits have #% chance to spawn all Monsters as at least Magic", + "type": "explicit" + }, + { + "id": "explicit.stat_335885735", + "text": "Bears the Mark of the Abyssal Lord", + "type": "explicit" + }, + { + "id": "explicit.stat_2035336006", + "text": "Skills from Corrupted Gems have #% of Mana Costs Converted to Life Costs", + "type": "explicit" + }, + { + "id": "explicit.stat_2074866941", + "text": "#% increased Exposure Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_636464211", + "text": "Excess Life Recovery added as Guard for # seconds", + "type": "explicit" + }, + { + "id": "explicit.stat_3635316831", + "text": "You can wield Two-Handed Axes, Maces and Swords in one hand", + "type": "explicit" + }, + { + "id": "explicit.stat_3274422940", + "text": "#% increased Ice Crystal Life", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|32821", + "text": "Sacrifice up to 20 Blacksmith's Whetstones to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_3413635271", + "text": "#% increased Reservation Efficiency of Companion Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2469544361", + "text": "Gain #% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", + "type": "explicit" + }, + { + "id": "explicit.stat_1354656031", + "text": "Withered you inflict has infinite Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_3491815140", + "text": "#% increased Spell Damage per 100 Maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_3979226081", + "text": "Abyssal Wasting also applies #% to Cold Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_2980117882", + "text": "This Flask cannot be Used but applies its Effect constantly", + "type": "explicit" + }, + { + "id": "explicit.stat_347220474", + "text": "#% increased Spell damage for each 200 total Mana you have Spent Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_2650053239", + "text": "#% increased Cost of Skills for each 200 total Mana Spent Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_2609822974", + "text": "Curses you inflict have infinite Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_1388221282", + "text": "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", + "type": "explicit" + }, + { + "id": "explicit.stat_4007482102", + "text": "Can't use Body Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_4270096386", + "text": "Hits have #% increased Critical Hit Chance against you", + "type": "explicit" + }, + { + "id": "explicit.stat_825825364", + "text": "Life Leech recovers based on your Chaos damage instead of Physical damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1367119630", + "text": "Curses you inflict can affect Hexproof Enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_262946222", + "text": "Allies in your Presence deal # to # added Attack Chaos Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3593063598", + "text": "Mana Recovery other than Regeneration cannot Recover Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_2157692677", + "text": "Attacks cost an additional #% of your maximum Mana", + "type": "explicit" + }, + { + "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" + }, + { + "id": "explicit.stat_1007380041", + "text": "Small Passive Skills in Radius also grant #% increased Parry Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|79", + "text": "+# to Level of all Sniper's Mark Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|137", + "text": "+# to Level of all Infernal Cry Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|124", + "text": "+# to Level of all Ghost Dance Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3258071686", + "text": "Attacks have Added maximum Lightning Damage equal to #% of maximum Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_2604619892", + "text": "#% increased Duration of Elemental Ailments on Enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_1000739259", + "text": "Cannot be Light Stunned", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|138", + "text": "+# to Level of all Orb of Storms Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|53", + "text": "+# to Level of all Mana Tempest Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|14", + "text": "+# to Level of all Temporal Chains Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|131", + "text": "+# to Level of all War Banner Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1365232741", + "text": "#% increased Grenade Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_324210709", + "text": "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_3131442032", + "text": "#% increased Grenade Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|10", + "text": "+# to Level of all Sacrifice Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3040571529", + "text": "#% increased Deflection Rating", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|86", + "text": "+# to Level of all Artillery Ballista Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|104", + "text": "+# to Level of all Gas Grenade Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|67", + "text": "+# to Level of all Barrier Invocation Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1751584857", + "text": "Monsters inflict # Grasping Vine on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|29", + "text": "+# to Level of all Firestorm Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|135", + "text": "+# to Level of all Armour Breaker Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|41861", + "text": "Passives in Radius of Trusted Kinship can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_2342939473", + "text": "#% of Current Energy Shield also grants Elemental Damage reduction", + "type": "explicit" + }, + { + "id": "explicit.stat_266564538", + "text": "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + "type": "explicit" + }, + { + "id": "explicit.stat_3007552094", + "text": "You have Unholy Might", + "type": "explicit" + }, + { + "id": "explicit.stat_2991563371", + "text": "Abyssal Wasting also applies #% to Fire Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|85", + "text": "+# to Level of all Wave of Frost Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|56", + "text": "+# to Level of all Detonating Arrow Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|54", + "text": "+# to Level of all Oil Grenade Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|42", + "text": "+# to Level of all Shockchain Arrow Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|31", + "text": "+# to Level of all Bone Offering Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|151", + "text": "+# to Level of all Incendiary Shot Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|110", + "text": "+# to Level of all Electrocuting Arrow Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|148", + "text": "+# to Level of all Vine Arrow Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|9", + "text": "+# to Level of all Reaper's Invocation Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|12", + "text": "+# to Level of all Berserk Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|72", + "text": "+# to Level of all Elemental Invocation Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|44", + "text": "+# to Level of all Tornado Shot Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|43", + "text": "+# to Level of all Emergency Reload Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|68", + "text": "+# to Level of all Lingering Illusion Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|82", + "text": "+# to Level of all Conductivity Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|48", + "text": "+# to Level of all Rain of Arrows Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1953536251", + "text": "Enemies in your Presence have at least #% of Life Reserved", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|60", + "text": "+# to Level of all Mantra of Destruction Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|51", + "text": "+# to Level of all Siege Ballista Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|100", + "text": "+# to Level of all Barrage Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|22", + "text": "+# to Level of all Soul Offering Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|63", + "text": "+# to Level of all Blasphemy Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|120", + "text": "+# to Level of all Herald of Ash Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|4", + "text": "+# to Level of all Dread Banner Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|78", + "text": "+# to Level of all Detonate Dead Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2456226238", + "text": "Recover #% of your maximum Mana when an Enemy dies in your Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|7", + "text": "+# to Level of all Charge Regulation Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|88", + "text": "+# to Level of all Siphoning Strike Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|105", + "text": "+# to Level of all Pain Offering Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|102", + "text": "+# to Level of all Wind Blast Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|62", + "text": "+# to Level of all Hand of Chayula Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|143", + "text": "+# to Level of all Staggering Palm Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|71", + "text": "+# to Level of all Time of Need Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|175", + "text": "+# to Level of all Permafrost Bolts Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|112", + "text": "+# to Level of all Perfect Strike Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|59", + "text": "+# to Level of all Stormblast Bolts Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|87", + "text": "+# to Level of all Voltaic Grenade Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|52", + "text": "+# to Level of all Volcanic Fissure Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|96", + "text": "+# to Level of all Voltaic Mark Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|157", + "text": "+# to Level of all Frost Bomb Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|46", + "text": "+# to Level of all Despair Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|70", + "text": "+# to Level of all Defiance Banner Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|75", + "text": "+# to Level of all Herald of Plague Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|45", + "text": "+# to Level of all Frost Wall Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|115", + "text": "+# to Level of all Rapid Shot Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|132", + "text": "+# to Level of all Withering Presence Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|166", + "text": "+# to Level of all Glacial Cascade Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|30", + "text": "+# to Level of all Ball Lightning Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|165", + "text": "+# to Level of all Escape Shot Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|36", + "text": "+# to Level of all Supercharged Slam Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|69", + "text": "+# to Level of all Cast on Minion Death Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|95", + "text": "+# to Level of all Freezing Mark Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|159", + "text": "+# to Level of all Contagion Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2725205297", + "text": "#% increased Magnitude of Unholy Might buffs you grant", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|74", + "text": "+# to Level of all Overwhelming Presence Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|142", + "text": "+# to Level of all Flash Grenade Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|28", + "text": "+# to Level of all Gathering Storm Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|118", + "text": "+# to Level of all Freezing Salvo Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|97", + "text": "+# to Level of all Raise Zombie Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|24", + "text": "+# to Level of all Siege Cascade Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|94", + "text": "+# to Level of all Storm Wave Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3143208761", + "text": "#% increased Attributes", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|146", + "text": "+# to Level of all Stormcaller Arrow Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|33", + "text": "+# to Level of all Seismic Cry Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|147", + "text": "+# to Level of all Snipe Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|150", + "text": "+# to Level of all High Velocity Rounds Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|6", + "text": "+# to Level of all Elemental Conflux Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|18", + "text": "+# to Level of all Eye of Winter Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|76", + "text": "+# to Level of all Combat Frenzy Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|27", + "text": "+# to Level of all Magnetic Salvo Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|84", + "text": "+# to Level of all Earthshatter Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|2", + "text": "+# to Level of all Cast on Dodge Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|172", + "text": "+# to Level of all Lightning Rod Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|170", + "text": "+# to Level of all Unearth Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1261076060", + "text": "#% increased Life Regeneration rate during Effect of any Life Flask", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|35", + "text": "+# to Level of all Whirling Assault Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|40", + "text": "+# to Level of all Hailstorm Rounds Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|171", + "text": "+# to Level of all Poisonburst Arrow Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|73", + "text": "+# to Level of all Shard Scavenger Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|93", + "text": "+# to Level of all Glacial Bolt Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|163", + "text": "+# to Level of all Boneshatter Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|174", + "text": "+# to Level of all Armour Piercing Rounds Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|8", + "text": "+# to Level of all Alchemist's Boon Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|173", + "text": "+# to Level of all Fragmentation Rounds Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|116", + "text": "+# to Level of all Ice Shards Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|108", + "text": "+# to Level of all Toxic Growth Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|167", + "text": "+# to Level of all Killing Palm Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|80", + "text": "+# to Level of all Flammability Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|133", + "text": "+# to Level of all Shield Charge Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|128", + "text": "+# to Level of all Wind Dancer Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|26", + "text": "+# to Level of all Cluster Grenade Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_263495202", + "text": "#% increased Cost Efficiency", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|5", + "text": "+# to Level of all Attrition Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|155", + "text": "+# to Level of all Falling Thunder Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|125", + "text": "+# to Level of all Mana Remnants Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|83", + "text": "+# to Level of all Vulnerability Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|109", + "text": "+# to Level of all Solar Orb Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|64", + "text": "+# to Level of all Cast on Shock Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_57896763", + "text": "# metre to Dodge Roll distance if you've Dodge Rolled Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|111", + "text": "+# to Level of all Snap Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|1", + "text": "+# to Level of all Cast on Critical Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|169", + "text": "+# to Level of all Frozen Locus Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_724806967", + "text": "Enemies in your Presence have Exposure", + "type": "explicit" + }, + { + "id": "explicit.stat_2480962043", + "text": "Skills which require Glory generate # Glory every 2 seconds", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|20", + "text": "+# to Level of all Spiral Volley Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|121", + "text": "+# to Level of all Herald of Ice Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|134", + "text": "+# to Level of all Enfeeble Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|152", + "text": "+# to Level of all Vaulting Impact Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|81", + "text": "+# to Level of all Hypothermia Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|162", + "text": "+# to Level of all Flame Wall Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2306588612", + "text": "Repeatable Attacks with this Bow Repeat # time if no enemies are in your Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_3350232544", + "text": "# metre to Dodge Roll distance if you haven't Dodge Rolled Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|47", + "text": "+# to Level of all Lightning Warp Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|114", + "text": "+# to Level of all Molten Blast Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|58", + "text": "+# to Level of all Dark Effigy Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|77", + "text": "+# to Level of all Leap Slam Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|164", + "text": "+# to Level of all Rolling Slam Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|168", + "text": "+# to Level of all Explosive Grenade Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|55", + "text": "+# to Level of all Charged Staff Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|90", + "text": "+# to Level of all Profane Ritual Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3350279336", + "text": "#% increased Cost Efficiency of Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_2818518881", + "text": "#% increased Spell Damage per 10 Intelligence", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|119", + "text": "+# to Level of all Arctic Armour Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|65", + "text": "+# to Level of all Cast on Freeze Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|122", + "text": "+# to Level of all Herald of Thunder Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|49", + "text": "+# to Level of all Sunder Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|113", + "text": "+# to Level of all Resonating Shield Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|61", + "text": "+# to Level of all Ice Shot Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|17", + "text": "+# to Level of all Skeletal Cleric Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|15", + "text": "+# to Level of all Flameblast Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|66", + "text": "+# to Level of all Cast on Ignite Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|129", + "text": "+# to Level of all Grim Feast Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_4287372938", + "text": "Bear Skills Convert #% of Physical Damage to Fire Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|57", + "text": "+# to Level of all Fireball Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|130", + "text": "+# to Level of all Scavenged Plating Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|91", + "text": "+# to Level of all Shield Wall Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|127", + "text": "+# to Level of all Raging Spirits Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2252419505", + "text": "Cannot be Light Stunned by Deflected Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_2589572664", + "text": "Notable Passive Skills in Radius also grant #% increased maximum Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|38", + "text": "+# to Level of all Shattering Palm Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|89", + "text": "+# to Level of all Gas Arrow Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|123", + "text": "+# to Level of all Plague Bearer Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|11", + "text": "+# to Level of all Archmage Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|13", + "text": "+# to Level of all Flicker Strike Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|149", + "text": "+# to Level of all Ember Fusillade Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|140", + "text": "+# to Level of all Frostbolt Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|117", + "text": "+# to Level of all Galvanic Shards Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2889664727", + "text": "#% chance to Avoid Lightning Damage from Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_916833363", + "text": "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|158", + "text": "+# to Level of all Earthquake Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_4159551976", + "text": "Your Critical Hit Chance cannot be Rerolled", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|99", + "text": "+# to Level of all Incinerate Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|98", + "text": "+# to Level of all Arc Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|156", + "text": "+# to Level of all Lightning Arrow Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|41", + "text": "+# to Level of all Shockburst Rounds Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|25", + "text": "+# to Level of all Plasma Blast Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|145", + "text": "+# to Level of all Bone Cage Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|139", + "text": "+# to Level of all Essence Drain Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|107", + "text": "+# to Level of all Bonestorm Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3743375737", + "text": "#% chance to Avoid Cold Damage from Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_3418580811|27", + "text": "Glorifying the defilement of # souls in tribute to Tecrod\nPassives in radius are Conquered by the Abyssals\nDesecration makes this item unstable", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|92", + "text": "+# to Level of all Explosive Shot Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|23", + "text": "+# to Level of all Hammer of the Gods Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1509533589", + "text": "Enemies take #% increased Damage for each Elemental Ailment type among\nyour Ailments on them", + "type": "explicit" + }, + { + "id": "explicit.stat_885925163", + "text": "Copy a random Modifier from each enemy in your Presence when\nyou Shapeshift to an Animal form\nModifiers gained this way are lost after # seconds or when you next Shapeshift", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|153", + "text": "+# to Level of all Ice Nova Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|106", + "text": "+# to Level of all Tempest Flurry Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3398283493", + "text": "Attacks with this Weapon Penetrate #% Fire Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_2896115339", + "text": "#% of Elemental Damage taken Recouped as Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_1345486764", + "text": "+1 to Maximum Spirit per # Maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|103", + "text": "+# to Level of all Ice Strike Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1327522346", + "text": "#% increased Mana Regeneration Rate while moving", + "type": "explicit" + }, + { + "id": "explicit.stat_4097212302", + "text": "# to maximum number of Elemental Infusions", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|39", + "text": "+# to Level of all Stampede Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3063814459", + "text": "Pin Enemies which are Primed for Pinning", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|3", + "text": "+# to Level of all Blink Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1661347488", + "text": "Lose #% of maximum Life per second", + "type": "explicit" + }, + { + "id": "explicit.stat_42242677", + "text": "#% chance to Avoid Fire Damage from Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_3507701584", + "text": "# to Level of Vulnerability Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|144", + "text": "+# to Level of all Tempest Bell Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2103650854", + "text": "#% increased effect of Arcane Surge on you", + "type": "explicit" + }, + { + "id": "explicit.stat_1294464552", + "text": "Small Passive Skills in Radius also grant # to maximum Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|16", + "text": "+# to Level of all Skeletal Brute Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3773763721", + "text": "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|160", + "text": "+# to Level of all Skeletal Sniper Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|34", + "text": "+# to Level of all Hexblast Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1493211587", + "text": "#% chance to Poison on Hit with Spell Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|19", + "text": "+# to Level of all Lightning Conduit Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3482326075", + "text": "Remnants can be collected from #% further away", + "type": "explicit" + }, + { + "id": "explicit.stat_3605616594", + "text": "Gain Onslaught for 4 seconds when a Minion Dies", + "type": "explicit" + }, + { + "id": "explicit.stat_1416406066", + "text": "#% increased Spirit", + "type": "explicit" + }, + { + "id": "explicit.stat_2061237517", + "text": "# to Level of all Corrupted Spell Skill Gems", + "type": "explicit" + }, + { + "id": "explicit.stat_1088082880", + "text": "Spells which cost Life Gain #% of Damage as Extra Physical Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|37", + "text": "+# to Level of all Comet Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2363593824", + "text": "#% increased speed of Recoup Effects", + "type": "explicit" + }, + { + "id": "explicit.stat_3581035970", + "text": "#% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2856328513", + "text": "#% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|21", + "text": "+# to Level of all Ancestral Warrior Totem Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1705072014", + "text": "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", + "type": "explicit" + }, + { + "id": "explicit.stat_1266185101", + "text": "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_1365079333", + "text": "Players steal the Eaten Souls of Slain Rare Monsters in Area", + "type": "explicit" + }, + { + "id": "explicit.stat_668076381", + "text": "Heavy Stuns Enemies that are on Full Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1740229525", + "text": "Attacks with this Weapon Penetrate #% Cold Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_1697191405", + "text": "#% increased Reservation Efficiency of Herald Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_446027070", + "text": "#% chance to Gain Arcane Surge when you deal a Critical Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_988575597", + "text": "#% increased Energy Shield Recovery rate", + "type": "explicit" + }, + { + "id": "explicit.stat_3655769732", + "text": "#% to Quality of all Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_883169830", + "text": "Projectiles deal #% increased Damage with Hits for each time they have Pierced", + "type": "explicit" + }, + { + "id": "explicit.stat_3480095574", + "text": "Charms applied to you have #% increased Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_4106787208", + "text": "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", + "type": "explicit" + }, + { + "id": "explicit.stat_1350127730", + "text": "#% increased Reservation Efficiency of Remnant Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3915618954", + "text": "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", + "type": "explicit" + }, + { + "id": "explicit.stat_1570501432", + "text": "Leech Life #% faster", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|38303", + "text": "Sacrifice up to 20 Arcanist's Etchers to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_3742268652", + "text": "Grants effect of Dreaming Gloom Shrine", + "type": "explicit" + }, + { + "id": "explicit.stat_3407849389", + "text": "#% reduced effect of Curses on you", + "type": "explicit" + }, + { + "id": "explicit.stat_160888068", + "text": "Notable Passive Skills in Radius also grant #% increased maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|19854", + "text": "Sacrifice up to 3 Orb of Annulments to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|126", + "text": "+# to Level of all Magma Barrier Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1515657623", + "text": "# to Maximum Endurance Charges", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|50", + "text": "+# to Level of all Skeletal Reaver Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2720781168", + "text": "Attack Projectiles Return if they Pierced at least # times", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|136", + "text": "+# to Level of all Shockwave Totem Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_538981065", + "text": "Grenades have #% chance to activate a second time", + "type": "explicit" + }, + { + "id": "explicit.stat_1823942939", + "text": "# to maximum number of Summoned Ballista Totems", + "type": "explicit" + }, + { + "id": "explicit.stat_318092306", + "text": "Small Passive Skills in Radius also grant Attack Hits apply Incision", + "type": "explicit" + }, + { + "id": "explicit.stat_150590298", + "text": "This item gains bonuses from Socketed Soul Cores as though it was also Boots", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|45026", + "text": "Sacrifice up to 3 Orbs of Chance to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_311641062", + "text": "#% chance for Flasks you use to not consume Charges", + "type": "explicit" + }, + { + "id": "explicit.stat_3190283174", + "text": "Area has patches of Mana Siphoning Ground", + "type": "explicit" + }, + { + "id": "explicit.stat_2760344900", + "text": "#% chance when you Reload a Crossbow to be immediate", + "type": "explicit" + }, + { + "id": "explicit.stat_4258524206", + "text": "#% chance to build an additional Combo on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_1914226331", + "text": "#% increased Cast Speed while on Full Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_3906866585", + "text": "Monsters have #% increased Armour, Evasion and Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_1316656343", + "text": "Small Passive Skills in Radius also grant # to maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1949851472", + "text": "#% chance when a Charm is used to use another Charm without consuming Charges", + "type": "explicit" + }, + { + "id": "explicit.stat_1781372024", + "text": "Recover #% of maximum Life on Killing a Poisoned Enemy", + "type": "explicit" + }, + { + "id": "explicit.stat_1518586897", + "text": "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|141", + "text": "+# to Level of all Skeletal Arsonist Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_287294012", + "text": "# to # Fire Thorns damage per 100 maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_3685424517", + "text": "Possessed by Spirit Of The Stag for # seconds on use", + "type": "explicit" + }, + { + "id": "explicit.stat_3950000557", + "text": "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", + "type": "explicit" + }, + { + "id": "explicit.stat_2839557359", + "text": "Possessed by Spirit Of The Cat for # seconds on use", + "type": "explicit" + }, + { + "id": "explicit.stat_3711973554", + "text": "Invocated Spells have #% chance to consume half as much Energy", + "type": "explicit" + }, + { + "id": "explicit.stat_4121454694", + "text": "Recover #% of maximum Mana when a Charm is used", + "type": "explicit" + }, + { + "id": "explicit.stat_2543331226", + "text": "#% increased Damage while you have a Totem", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|64601", + "text": "Passives in Radius of Hollow Palm Technique can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_501873429", + "text": "#% chance for Charms you use to not consume Charges", + "type": "explicit" + }, + { + "id": "explicit.stat_2705185939", + "text": "#% chance to Aggravate Bleeding on targets you Hit with Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_3128077011", + "text": "#% increased Effect of Jewel Socket Passive Skills\ncontaining Corrupted Rare Jewels", + "type": "explicit" + }, + { + "id": "explicit.stat_2544540062", + "text": "Skills which create Fissures have a #% chance to create an additional Fissure", + "type": "explicit" + }, + { + "id": "explicit.stat_1133346493", + "text": "#% chance for Spell Damage with Critical Hits to be Lucky", + "type": "explicit" + }, + { + "id": "explicit.stat_2399592398", + "text": "Abysses lead to an Abyssal Boss", + "type": "explicit" + }, + { + "id": "explicit.stat_4129825612", + "text": "#% of Physical Damage from Hits taken as Chaos Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2474424958", + "text": "Spell Skills have # to maximum number of Summoned Totems", + "type": "explicit" + }, + { + "id": "explicit.stat_1514844108", + "text": "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_2408625104", + "text": "Players and their Minions deal no damage for 3 out of every 10 seconds", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|199", + "text": "+# to Level of all Herald of Blood Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|154", + "text": "+# to Level of all Spark Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_4274247770", + "text": "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|32", + "text": "+# to Level of all Skeletal Storm Mage Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_242637938", + "text": "#% increased chance to inflict Bleeding", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|136", + "text": "Sacrifice up to 20 Glassblower's Baubles to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|194", + "text": "+# to Level of all Spear of Solaris Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|161", + "text": "+# to Level of all Skeletal Sniper Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1864159246", + "text": "#% increased Magnitude of Poison you inflict on targets that are not Poisoned", + "type": "explicit" + }, + { + "id": "explicit.stat_3972229254", + "text": "#% of Armour also applies to Chaos Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1495814176", + "text": "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|42680", + "text": "Passives in Radius of Blackflame Covenant can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_1286199571", + "text": "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", + "type": "explicit" + }, + { + "id": "explicit.stat_3313255158", + "text": "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_3679418014", + "text": "#% of Cold Damage taken Recouped as Life", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|101", + "text": "+# to Level of all Skeletal Frost Mage Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3504441212", + "text": "Possessed by Spirit Of The Wolf for # seconds on use", + "type": "explicit" + }, + { + "id": "explicit.stat_1291132817", + "text": "+1 to Armour per Strength", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|53954", + "text": "Sacrifice up to 10 Gemcutter's Prisms to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_3763491818", + "text": "Possessed by Spirit Of The Primate for # seconds on use", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|11230", + "text": "Passives in Radius of Ritual Cadence can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_3403424702", + "text": "Possessed by Spirit Of The Bear for # seconds on use", + "type": "explicit" + }, + { + "id": "explicit.stat_4224832423", + "text": "#% chance for Spell Skills to fire 8 additional Projectiles in a circle", + "type": "explicit" + }, + { + "id": "explicit.stat_3481083201", + "text": "#% increased chance to Poison", + "type": "explicit" + }, + { + "id": "explicit.stat_3418580811|28", + "text": "Glorifying the defilement of # souls in tribute to Ulaman\nPassives in radius are Conquered by the Abyssals\nDesecration makes this item unstable", + "type": "explicit" + }, + { + "id": "explicit.stat_3418580811|25", + "text": "Glorifying the defilement of # souls in tribute to Kulemak\nPassives in radius are Conquered by the Abyssals\nDesecration makes this item unstable", + "type": "explicit" + }, + { + "id": "explicit.stat_2258007247", + "text": "Gain # Rage on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_3871530702", + "text": "Conquered Attribute Passive Skills also grant # to Strength", + "type": "explicit" + }, + { + "id": "explicit.stat_330530785", + "text": "#% increased Immobilisation buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_1746561819", + "text": "Enemies Hindered by you take #% increased Chaos Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2931872063", + "text": "Gain Volatility on Critical Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_300107724", + "text": "Possessed by Spirit Of The Owl for # seconds on use", + "type": "explicit" + }, + { + "id": "explicit.stat_3927679277", + "text": "#% chance when collecting an Elemental Infusion to gain an\nadditional Elemental Infusion of the same type", + "type": "explicit" + }, + { + "id": "explicit.stat_231726304", + "text": "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2552484522", + "text": "Conquered Attribute Passive Skills also grant # to all Attributes", + "type": "explicit" + }, + { + "id": "explicit.stat_3181677174", + "text": "Possessed by Spirit Of The Serpent for # seconds on use", + "type": "explicit" + }, + { + "id": "explicit.stat_212649958", + "text": "Enemies Hindered by you take #% increased Elemental Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3418580811|26", + "text": "Glorifying the defilement of # souls in tribute to Kurgal\nPassives in radius are Conquered by the Abyssals\nDesecration makes this item unstable", + "type": "explicit" + }, + { + "id": "explicit.stat_3463873033", + "text": "Possessed by Spirit Of The Ox for # seconds on use", + "type": "explicit" + }, + { + "id": "explicit.stat_3396435291", + "text": "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_3418580811|24", + "text": "Glorifying the defilement of # souls in tribute to Amanamu\nPassives in radius are Conquered by the Abyssals\nDesecration makes this item unstable", + "type": "explicit" + }, + { + "id": "explicit.stat_909236563", + "text": "#% increased Surrounded Area of Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_2853314994", + "text": "Regenerate # Rage per second", + "type": "explicit" + }, + { + "id": "explicit.stat_4163076972", + "text": "No Inherent loss of Rage", + "type": "explicit" + }, + { + "id": "explicit.stat_2479683456", + "text": "Minions Regenerate #% of maximum Life per second", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|204", + "text": "+# to Level of all Ravenous Swarm Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1685559578", + "text": "Possessed by Spirit Of The Boar for # seconds on use", + "type": "explicit" + }, + { + "id": "explicit.stat_2013356568", + "text": "Melee Attack Skills have # to maximum number of Summoned Totems", + "type": "explicit" + }, + { + "id": "explicit.stat_2146799605", + "text": "#% less Movement Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_2970621759", + "text": "#% of Lightning Damage taken Recouped as Life", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|61382", + "text": "Sacrifice up to 3 Divine Orbs to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_3116427713", + "text": "Conquered Attribute Passive Skills also grant # to Intelligence", + "type": "explicit" + }, + { + "id": "explicit.stat_1119086588", + "text": "Conquered Attribute Passive Skills also grant # to Tribute", + "type": "explicit" + }, + { + "id": "explicit.stat_2083058281", + "text": "Enemies you Mark take #% increased Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_4136346606", + "text": "#% increased Spell Damage while wielding a Melee Weapon", + "type": "explicit" + }, + { + "id": "explicit.stat_1103616075", + "text": "Break Armour equal to #% of Physical Damage dealt", + "type": "explicit" + }, + { + "id": "explicit.stat_1633735772", + "text": "#% less maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1793740180", + "text": "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_1274947822", + "text": "#% less Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1370804479", + "text": "Elemental Ailments other than Freeze you inflict are Reflected to you", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|61942", + "text": "Passives in Radius of Lord of the Wilds can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_537850431", + "text": "#% less Spirit", + "type": "explicit" + }, + { + "id": "explicit.stat_3359797958", + "text": "#% increased Projectile Speed for Spell Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3045154261", + "text": "#% less maximum Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_2221570601", + "text": "#% Global chance to Blind Enemies on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_1602191394", + "text": "#% increased Rarity of Items found\nYour other Modifiers to Rarity of Items found do not apply", + "type": "explicit" + }, + { + "id": "explicit.stat_4240116297", + "text": "Conquered Small Passive Skills also grant #% increased Elemental Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2991045011", + "text": "Recover #% of Maximum Mana when you expend at least 10 Combo", + "type": "explicit" + }, + { + "id": "explicit.stat_2250681686", + "text": "Grenade Skills have +# Cooldown Use", + "type": "explicit" + }, + { + "id": "explicit.stat_1099200124", + "text": "Gain a Power Charge every Second if you haven't lost Power Charges Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|49547", + "text": "Passives in Radius of Scarred Faith can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_1382805233", + "text": "#% increased Deflection Rating while moving", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|203", + "text": "+# to Level of all Cull The Weak Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_4225700219", + "text": "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|195", + "text": "+# to Level of all Storm Lance Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|182", + "text": "+# to Level of all Glacial Lance Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|187", + "text": "+# to Level of all Whirlwind Lance Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_4033618138", + "text": "Recover #% of Maximum Life when you expend at least 10 Combo", + "type": "explicit" + }, + { + "id": "explicit.stat_1174076861", + "text": "#% increased Cast Speed if you've dealt a Critical Hit Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_3038857426", + "text": "Conquered Small Passive Skills also grant #% increased Spell damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1045789614", + "text": "#% increased Critical Hit Chance against Marked Enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_346374719", + "text": "Recover #% of maximum Mana when you consume a Power Charge", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|177", + "text": "+# to Level of all Disengage Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_656291658", + "text": "#% increased Cast Speed when on Full Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2710292678", + "text": "#% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", + "type": "explicit" + }, + { + "id": "explicit.stat_3191479793", + "text": "Offering Skills have #% increased Buff effect", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|202", + "text": "+# to Level of all Convalescence Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|179", + "text": "+# to Level of all Whirling Slash Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|189", + "text": "+# to Level of all Fangs of Frost Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|185", + "text": "+# to Level of all Thunderous Leap Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|192", + "text": "+# to Level of all Bloodhound's Mark Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|178", + "text": "+# to Level of all Blood Hunt Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_173471035", + "text": "Meta Skills gain #% increased Energy while on Full Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_2879725899", + "text": "#% increased Attack Damage while Surrounded", + "type": "explicit" + }, + { + "id": "explicit.stat_4277795662", + "text": "#% to Cold and Lightning Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_4257790560", + "text": "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|197", + "text": "+# to Level of all Trinity Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_359357545", + "text": "Enemies Hindered by you take #% increased Physical Damage", + "type": "explicit" + }, + { + "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" + }, + { + "id": "explicit.stat_448592698|190", + "text": "+# to Level of all Wind Serpent's Fury Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1691403182", + "text": "Minions have #% increased Cooldown Recovery Rate", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|20", + "text": "Vaal Pact", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|188", + "text": "+# to Level of all Primal Strikes Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2422708892|49363", + "text": "Passives in Radius of Wildsurge Incantation can be Allocated\nwithout being connected to your tree", + "type": "explicit" + }, + { + "id": "explicit.stat_2723294374", + "text": "Attacks have added Physical damage equal to #% of maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_3452816629", + "text": "1% more Unarmed Damage per # Strength", + "type": "explicit" + }, + { + "id": "explicit.stat_3839676903", + "text": "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_627896047", + "text": "Can Attack as though using a One Handed Mace while both of your hand slots are empty\nUnarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage", + "type": "explicit" + }, + { + "id": "explicit.stat_70760090", + "text": "#% of Physical damage dealt by your Hits causes Blood Loss", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|184", + "text": "+# to Level of all Explosive Spear Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1742651309", + "text": "#% of Fire Damage taken Recouped as Life", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|198", + "text": "+# to Level of all Trail of Caltrops Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|196", + "text": "+# to Level of all Elemental Sundering Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3143918757", + "text": "#% increased Glory generation", + "type": "explicit" + }, + { + "id": "explicit.stat_23669307", + "text": "#% increased Critical Damage Bonus if you've consumed a Power Charge Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|180", + "text": "+# to Level of all Spearfield Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|176", + "text": "+# to Level of all Rapid Assault Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3024873336", + "text": "Skills have #% chance to not remove Elemental Infusions but still count as consuming them", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|191", + "text": "+# to Level of all Rake Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2915988346", + "text": "#% to Fire and Cold Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_983582600", + "text": "Ignite you inflict deals Chaos Damage instead of Fire Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3566150527", + "text": "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", + "type": "explicit" + }, + { + "id": "explicit.stat_3694078435", + "text": "You take #% of damage from Blocked Hits with a raised Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_569299859", + "text": "#% to all maximum Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|12", + "text": "Necromantic Talisman", + "type": "explicit" + }, + { + "id": "explicit.stat_85367160", + "text": "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_2135541924", + "text": "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", + "type": "explicit" + }, + { + "id": "explicit.stat_3190121041", + "text": "#% of Volatility Physical Damage Taken as Cold Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_302024054", + "text": "Regenerate #% of maximum Life per second while Ignited", + "type": "explicit" + }, + { + "id": "explicit.stat_1829333149", + "text": "Conquered Small Passive Skills also grant #% increased Physical damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2601021356", + "text": "Conquered Small Passive Skills also grant #% increased Chaos damage", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|209", + "text": "+# to Level of all Toxic Domain Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3537994888", + "text": "#% chance when you gain a Power Charge to gain an additional Power Charge", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|183", + "text": "+# to Level of all Twister Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_8816597", + "text": "Conquered Small Passive Skills also grant #% increased Attack damage", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|186", + "text": "+# to Level of all Herald of Blood Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|213", + "text": "+# to Level of all Mirage Archer Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|181", + "text": "+# to Level of all Lightning Spear Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|214", + "text": "+# to Level of all Siphon Elements Skills", + "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" + }, + { + "id": "explicit.stat_448592698|201", + "text": "+# to Level of all Tamed Companion Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|206", + "text": "+# to Level of all Fortifying Cry Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|30", + "text": "Scarred Faith", + "type": "explicit" + }, + { + "id": "explicit.stat_3593401321", + "text": "Hits have #% chance to treat Enemy Monster Elemental Resistance values as inverted", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|16", + "text": "Primal Hunger", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|19", + "text": "Oasis", + "type": "explicit" + }, + { + "id": "explicit.stat_2257118425", + "text": "Vaal Pact", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|216", + "text": "+# to Level of all Elemental Weakness Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|15", + "text": "Eternal Youth", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|212", + "text": "+# to Level of all Mortar Cannon Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|200", + "text": "+# to Level of all Summon Spectre Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2780670304", + "text": "Conquered Small Passive Skills also grant #% increased Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|210", + "text": "+# to Level of all Ice-Tipped Arrows Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|207", + "text": "+# to Level of all Forge Hammer Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1434716233", + "text": "Warcries Empower an additional Attack", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|24", + "text": "Bulwark", + "type": "explicit" + }, + { + "id": "explicit.stat_1938221597", + "text": "Conquered Attribute Passive Skills also grant # to Dexterity", + "type": "explicit" + }, + { + "id": "explicit.stat_4264952559", + "text": "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", + "type": "explicit" + }, + { + "id": "explicit.stat_3343033032", + "text": "Conquered Small Passive Skills also grant Minions deal #% increased damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|22", + "text": "Glancing Blows", + "type": "explicit" + }, + { + "id": "explicit.stat_1034611536", + "text": "Notable Passive Skills in Radius also grant Charms gain # charge per Second", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|50562", + "text": "Allocates Barbaric Strength", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|2", + "text": "Giant's Blood", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|31", + "text": "Lord of the Wilds", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|32", + "text": "Wildsurge Incantation", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|11", + "text": "Whispers of Doom", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|193", + "text": "+# to Level of all Tamed Companion Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|208", + "text": "+# to Level of all Ancestral Cry Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|18", + "text": "Heartstopper", + "type": "explicit" + }, + { + "id": "explicit.stat_2558253923", + "text": "Hits with this Weapon have Culling Strike against Bleeding Enemies", + "type": "explicit" + }, + { + "id": "explicit.stat_2839036860", + "text": "#% increased Endurance, Frenzy and Power Charge Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|1", + "text": "Ancestral Bond", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|57388", + "text": "Allocates Overwhelming Strike", + "type": "explicit" + }, + { + "id": "explicit.stat_3470876581", + "text": "# to Evasion Rating while on Low Life", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|13", + "text": "Conduit", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|29", + "text": "Ritual Cadence", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|25", + "text": "Trusted Kinship", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|6", + "text": "Resolute Technique", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|219", + "text": "+# to Level of all Volcano Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1689748350", + "text": "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|33", + "text": "Zealot's Oath", + "type": "explicit" + }, + { + "id": "explicit.stat_1803659985", + "text": "#% less Armour, Evasion and Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_1138742368", + "text": "Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value", + "type": "explicit" + }, + { + "id": "explicit.stat_3939216292", + "text": "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|23", + "text": "Elemental Equilibrium", + "type": "explicit" + }, + { + "id": "explicit.stat_1177404658", + "text": "#% increased Global Armour, Evasion and Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|27", + "text": "Hollow Palm Technique", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|27303", + "text": "Allocates Vulgar Methods", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|4", + "text": "Avatar of Fire", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|30132", + "text": "Allocates Wrapped Quiver", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7809", + "text": "Allocates Wild Storm", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|8", + "text": "Chaos Inoculation", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|28", + "text": "Blackflame Covenant", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|226", + "text": "+# to Level of all Spell Totem Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|205", + "text": "+# to Level of all Iron Ward Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|211", + "text": "+# to Level of all Frost Darts Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1148433552", + "text": "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|231", + "text": "+# to Level of all Fury of the Mountain Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|227", + "text": "+# to Level of all Wing Blast Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_4266776872", + "text": "Glancing Blows", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|225", + "text": "+# to Level of all Ferocious Roar Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2116424886", + "text": "#% increased Life Regeneration Rate while moving", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|241", + "text": "+# to Level of all Walking Calamity Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|26", + "text": "Crimson Assault", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38535", + "text": "Allocates Stormcharged", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|239", + "text": "+# to Level of all Eternal Rage Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|217", + "text": "+# to Level of all Rolling Magma Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|215", + "text": "+# to Level of all Cast on Elemental Ailment Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2942439603", + "text": "Skills have #% chance to not remove Charges but still count as consuming them", + "type": "explicit" + }, + { + "id": "explicit.stat_1586136369", + "text": "#% increased Evasion Rating while Sprinting", + "type": "explicit" + }, + { + "id": "explicit.stat_1245896889", + "text": "Life Recovery from Flasks can Overflow Maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|26107", + "text": "Allocates Kite Runner", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|234", + "text": "+# to Level of all Devour Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1980802737", + "text": "Grenade Skills Fire an additional Projectile", + "type": "explicit" + }, + { + "id": "explicit.stat_3602667353", + "text": "#% chance to inflict Exposure on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|218", + "text": "+# to Level of all Tornado Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1913583994", + "text": "#% increased Monster Attack Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|28975", + "text": "Allocates Pure Power", + "type": "explicit" + }, + { + "id": "explicit.stat_2488361432", + "text": "#% increased Monster Cast Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|10", + "text": "Mind Over Matter", + "type": "explicit" + }, + { + "id": "explicit.stat_3872306017", + "text": "#% increased Power Charge Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_2306522833", + "text": "#% increased Monster Movement Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|224", + "text": "+# to Level of all Furious Slam Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|223", + "text": "+# to Level of all Thunderstorm Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1818915622", + "text": "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|229", + "text": "+# to Level of all Flame Breath Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|5", + "text": "Blood Magic", + "type": "explicit" + }, + { + "id": "explicit.stat_1133965702", + "text": "#% increased Gold found in this Area", + "type": "explicit" + }, + { + "id": "explicit.stat_1133965702", + "text": "#% increased Gold found in your Maps", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|17", + "text": "Dance With Death", + "type": "explicit" + }, + { + "id": "explicit.stat_504210122", + "text": "#% chance to gain an additional random Charge when you gain a Charge", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|240", + "text": "+# to Level of all Savage Fury Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|236", + "text": "+# to Level of all Lunar Blessing Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_321970274", + "text": "#% of Physical Damage taken as Lightning while your Shield is raised", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|14", + "text": "Resonance", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|220", + "text": "+# to Level of all Wolf Pack Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3910614548", + "text": "#% increased Attack and Cast Speed if you've summoned a Totem Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|237", + "text": "+# to Level of all Arctic Howl Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|243", + "text": "+# to Level of all Feral Invocation Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|235", + "text": "+# to Level of all Thrashing Vines Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|62230", + "text": "Allocates Patient Barrier", + "type": "explicit" + }, + { + "id": "explicit.stat_886088880", + "text": "Your Heavy Stun buildup empties #% faster", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|221", + "text": "+# to Level of all Pounce Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|228", + "text": "+# to Level of all Oil Barrage Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|238", + "text": "+# to Level of all Briarpatch Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|233", + "text": "+# to Level of all Lunar Assault Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|27491", + "text": "Allocates Heavy Buffer", + "type": "explicit" + }, + { + "id": "explicit.stat_3302775221", + "text": "+# maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|28267", + "text": "Allocates Desensitisation", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|230", + "text": "+# to Level of all Entangle Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_1283490138", + "text": "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|242", + "text": "+# to Level of all Barkskin Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|34473", + "text": "Allocates Spaghettification", + "type": "explicit" + }, + { + "id": "explicit.stat_2357996603", + "text": "#% increased Totem Duration", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56776", + "text": "Allocates Cooked", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|55193", + "text": "Allocates Subterfuge Mask", + "type": "explicit" + }, + { + "id": "explicit.stat_468694293", + "text": "Conquered Small Passive Skills also grant #% increased Evasion Rating", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|3985", + "text": "Allocates Forces of Nature", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|7", + "text": "Pain Attunement", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|58183", + "text": "Allocates Blood Tearing", + "type": "explicit" + }, + { + "id": "explicit.stat_970480050", + "text": "Conquered Small Passive Skills also grant #% increased Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|9", + "text": "Eldritch Battery", + "type": "explicit" + }, + { + "id": "explicit.stat_1972661424", + "text": "#% more Life Flask Recovery", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|3", + "text": "Unwavering Stance", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|222", + "text": "+# to Level of all Rampage Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|58016", + "text": "Allocates All Natural", + "type": "explicit" + }, + { + "id": "explicit.stat_2260055669", + "text": "Freezes Enemies that are on Full Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|46197", + "text": "Allocates Careful Assassin", + "type": "explicit" + }, + { + "id": "explicit.stat_2475870935", + "text": "Conquered Small Passive Skills also grant #% increased Stun Threshold", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|60034", + "text": "Allocates Falcon Dive", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|28044", + "text": "Allocates Coming Calamity", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56265", + "text": "Allocates Throatseeker", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17340", + "text": "Allocates Adrenaline Rush", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|46060", + "text": "Allocates Voracious", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|244", + "text": "+# to Level of all Living Bomb Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|40990", + "text": "Allocates Exposed to the Storm", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|39881", + "text": "Allocates Staggering Palm", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43088", + "text": "Allocates Agonising Calamity", + "type": "explicit" + }, + { + "id": "explicit.stat_3831171903|21", + "text": "Iron Reflexes", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|44566", + "text": "Allocates Lightning Rod", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|5728", + "text": "Allocates Ancient Aegis", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|1546", + "text": "Allocates Spiral into Depression", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|31172", + "text": "Allocates Falcon Technique", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|50062", + "text": "Allocates Barrier of Venarius", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|29514", + "text": "Allocates Cluster Bombs", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9020", + "text": "Allocates Giantslayer", + "type": "explicit" + }, + { + "id": "explicit.stat_2639983772", + "text": "#% increased Totem Damage per Curse on you", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|52392", + "text": "Allocates Singular Purpose", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|44756", + "text": "Allocates Marked Agility", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|59208", + "text": "Allocates Frantic Fighter", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32353", + "text": "Allocates Swift Claw", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|45632", + "text": "Allocates Mind Eraser", + "type": "explicit" + }, + { + "id": "explicit.stat_448592698|232", + "text": "+# to Level of all Cross Slash Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|30874", + "text": "Sacrifice up to 10 Greater Regal Orbs to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|52618", + "text": "Allocates Boon of the Beast", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|6229", + "text": "Allocates Push the Advantage", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|5009", + "text": "Allocates Seeing Stars", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56493", + "text": "Allocates Agile Succession", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|116", + "text": "Allocates Insightfulness", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35560", + "text": "Allocates At your Command", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|45013", + "text": "Allocates Finishing Blows", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|50795", + "text": "Allocates Careful Aim", + "type": "explicit" + }, + { + "id": "explicit.stat_2462683918", + "text": "#% increased Attack Damage while not on Low Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|46499", + "text": "Allocates Guts", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43423", + "text": "Allocates Emboldened Avatar", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|16618", + "text": "Allocates Jack of all Trades", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|22864", + "text": "Allocates Tainted Strike", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|41753", + "text": "Allocates Evocational Practitioner", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|28963", + "text": "Allocates Chakra of Rhythm", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|36085", + "text": "Allocates Serrated Edges", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38053", + "text": "Allocates Deafening Cries", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|25482", + "text": "Allocates Beef", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|13724", + "text": "Allocates Deadly Force", + "type": "explicit" + }, + { + "id": "explicit.stat_2122183138", + "text": "# Mana gained when you Block", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|33216", + "text": "Allocates Deep Wounds", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|59303", + "text": "Allocates Lucky Rabbit Foot", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|57190", + "text": "Allocates Doomsayer", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|51981", + "text": "Sacrifice up to 3 Perfect Regal Orbs to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|8084", + "text": "Sacrifice up to 10 Greater Exalted Orbs to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4985", + "text": "Allocates Flip the Script", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|30408", + "text": "Allocates Efficient Contraptions", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|19955", + "text": "Allocates Endless Blizzard", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43082", + "text": "Allocates Acceleration", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|57204", + "text": "Allocates Critical Exploit", + "type": "explicit" + }, + { + "id": "explicit.stat_4007938693", + "text": "Triggers Level # Manifest Dancing Dervishes on Rampage", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|13407", + "text": "Allocates Heartbreaking", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2394", + "text": "Allocates Blade Flurry", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|60404", + "text": "Allocates Perfect Opportunity", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51707", + "text": "Allocates Enhanced Reflexes", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|60138", + "text": "Allocates Stylebender", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|21380", + "text": "Allocates Preemptive Strike", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17854", + "text": "Allocates Escape Velocity", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|37872", + "text": "Allocates Presence Present", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|24655", + "text": "Allocates Breath of Fire", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|44330", + "text": "Allocates Coated Arms", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|16816", + "text": "Allocates Pinpoint Shot", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17955", + "text": "Allocates Careful Consideration", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|25513", + "text": "Allocates Overwhelm", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|55149", + "text": "Allocates Pure Chaos", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|42106", + "text": "Sacrifice up to 5 Greater Chaos Orbs to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|20289", + "text": "Allocates Frozen Claw", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|23939", + "text": "Allocates Glazed Flesh", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17548", + "text": "Allocates Moment of Truth", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|23221", + "text": "Allocates Trick Shot", + "type": "explicit" + }, + { + "id": "explicit.stat_1949833742", + "text": "#% increased Daze Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|41811", + "text": "Allocates Shatter Palm", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|24630", + "text": "Allocates Fulmination", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56999", + "text": "Allocates Locked On", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10998", + "text": "Allocates Strong Chin", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|61338", + "text": "Allocates Breath of Lightning", + "type": "explicit" + }, + { + "id": "explicit.stat_1414945937", + "text": "Manifested Dancing Dervishes die when Rampage ends", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|30341", + "text": "Allocates Master Fletching", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|55308", + "text": "Allocates Sling Shots", + "type": "explicit" + }, + { + "id": "explicit.stat_2889807051", + "text": "Melee Hits count as Rampage Kills\nRampage", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|47560", + "text": "Allocates Multi Shot", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|20677", + "text": "Allocates For the Jugular", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2138", + "text": "Allocates Spiral into Insanity", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48006", + "text": "Allocates Devastation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42177", + "text": "Allocates Blurred Motion", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10772", + "text": "Allocates Bloodthirsty", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|19236", + "text": "Allocates Projectile Bulwark", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10398", + "text": "Allocates Sudden Escalation", + "type": "explicit" + }, + { + "id": "explicit.stat_1394184789", + "text": "Remove Bleeding when you use a Life Flask", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|15083", + "text": "Allocates Power Conduction", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|5703", + "text": "Allocates Echoing Thunder", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|65204", + "text": "Allocates Overflowing Power", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48581", + "text": "Allocates Exploit the Elements", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|11526", + "text": "Allocates Sniper", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38537", + "text": "Allocates Heartstopping", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|54814", + "text": "Allocates Profane Commander", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|19337", + "text": "Allocates Precision Salvo", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|19044", + "text": "Allocates Arcane Intensity", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7777", + "text": "Allocates Breaking Point", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|62310", + "text": "Allocates Incendiary", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|40345", + "text": "Allocates Master of Hexes", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42077", + "text": "Allocates Essence Infusion", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|65265", + "text": "Allocates Swift Interruption", + "type": "explicit" + }, + { + "id": "explicit.stat_398335579", + "text": "Cannot be used while Manifested", + "type": "explicit" + }, + { + "id": "explicit.stat_1132041585", + "text": "Virtuous", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35966", + "text": "Allocates Heart Tissue", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|55180", + "text": "Allocates Relentless Fallen", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|52191", + "text": "Allocates Event Horizon", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|64119", + "text": "Allocates Rapid Reload", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32071", + "text": "Allocates Primal Growth", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51820", + "text": "Allocates Ancestral Conduits", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|372", + "text": "Allocates Heatproof", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|27176", + "text": "Allocates The Power Within", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8810", + "text": "Allocates Multitasking", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56453", + "text": "Allocates Killer Instinct", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|54911", + "text": "Allocates Firestarter", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|61601", + "text": "Allocates True Strike", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|5802", + "text": "Allocates Stand and Deliver", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|45599", + "text": "Allocates Lay Siege", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9227", + "text": "Allocates Focused Thrust", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32507", + "text": "Allocates Cut to the Bone", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|22811", + "text": "Allocates The Wild Cat", + "type": "explicit" + }, + { + "id": "explicit.stat_1753977518", + "text": "#% of Thorns Damage Leeched as Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|59720", + "text": "Allocates Beastial Skin", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|15644", + "text": "Allocates Shedding Skin", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|24753", + "text": "Allocates Determined Precision", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|41905", + "text": "Allocates Gravedigger", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|63759", + "text": "Allocates Stacking Toxins", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38459", + "text": "Allocates Disorientation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|19715", + "text": "Allocates Cremation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51871", + "text": "Allocates Immortal Thirst", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|44299", + "text": "Allocates Enhanced Barrier", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|57379", + "text": "Allocates In Your Face", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51394", + "text": "Allocates Unimpeded", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|44952", + "text": "Allocates Made to Last", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9472", + "text": "Allocates Catapult", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8827", + "text": "Allocates Fast Metabolism", + "type": "explicit" + }, + { + "id": "explicit.stat_3841138199", + "text": "#% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|39369", + "text": "Allocates Struck Through", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|65243", + "text": "Allocates Enveloping Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4534", + "text": "Allocates Piercing Shot", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|64443", + "text": "Allocates Impact Force", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|19125", + "text": "Allocates Potent Incantation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42032", + "text": "Allocates Escalating Mayhem", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|39050", + "text": "Allocates Exploit", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|29372", + "text": "Allocates Sudden Infuriation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|3215", + "text": "Allocates Melding", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|57471", + "text": "Allocates Hunker Down", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|18505", + "text": "Allocates Crushing Verdict", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|31433", + "text": "Allocates Catalysis", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|30523", + "text": "Allocates Dead can Dance", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|6178", + "text": "Allocates Power Shots", + "type": "explicit" + }, + { + "id": "explicit.stat_267210597", + "text": "Area has #% increased chance to contain a Summoning Circle", + "type": "explicit" + }, + { + "id": "explicit.stat_267210597", + "text": "#% increased chance of Summoning Circles", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35564", + "text": "Allocates Turn the Clock Back", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32951", + "text": "Allocates Preservation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|12337", + "text": "Allocates Flash Storm", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9968", + "text": "Allocates Feel the Earth", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|62609", + "text": "Allocates Ancestral Unity", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17029", + "text": "Allocates Blade Catcher", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8273", + "text": "Allocates Endless Circuit", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|23427", + "text": "Allocates Chilled to the Bone", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38111", + "text": "Allocates Pliable Flesh", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|54805", + "text": "Allocates Hindered Capabilities", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|27761", + "text": "Allocates Counterstancing", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|36808", + "text": "Allocates Spiked Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|23738", + "text": "Allocates Madness in the Bones", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32664", + "text": "Allocates Chakra of Breathing", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|22967", + "text": "Allocates Vigilance", + "type": "explicit" + }, + { + "id": "explicit.stat_2535713562", + "text": "Recover #% of maximum Life per Poison affecting Enemies you Kill", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2511", + "text": "Allocates Sundering", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|21206", + "text": "Allocates Explosive Impact", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|49984", + "text": "Allocates Spellblade", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38614", + "text": "Allocates Psychic Fragmentation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|49618", + "text": "Allocates Deadly Flourish", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|49661", + "text": "Allocates Perfectly Placed Knife", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|31129", + "text": "Allocates Lifelong Friend", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|14294", + "text": "Allocates Sacrificial Blood", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|5284", + "text": "Allocates Shredding Force", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51867", + "text": "Allocates Finality", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|40399", + "text": "Allocates Energise", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|49088", + "text": "Allocates Splintering Force", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|21164", + "text": "Allocates Fleshcrafting", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|26356", + "text": "Allocates Primed to Explode", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|21349", + "text": "Allocates The Quick Fox", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|25711", + "text": "Allocates Thrill of Battle", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17664", + "text": "Allocates Decisive Retreat", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|18086", + "text": "Allocates Breath of Ice", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7338", + "text": "Allocates Abasement", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35849", + "text": "Allocates Thickened Arteries", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8531", + "text": "Allocates Leaping Ambush", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|39347", + "text": "Allocates Breaking Blows", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10500", + "text": "Allocates Dazing Blocks", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|29527", + "text": "Allocates First Approach", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35739", + "text": "Allocates Crushing Judgement", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|20916", + "text": "Allocates Blinding Strike", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|55131", + "text": "Allocates Light on your Feet", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|47316", + "text": "Allocates Goring", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|46972", + "text": "Allocates Arcane Mixtures", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42714", + "text": "Allocates Thousand Cuts", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|34324", + "text": "Allocates Spectral Ward", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53941", + "text": "Allocates Shimmering", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51934", + "text": "Allocates Invocated Efficiency", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|3567", + "text": "Allocates Raw Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_933768533", + "text": "#% increased Global Armour, Evasion and Energy Shield per Socket filled", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|45713", + "text": "Allocates Savouring", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|55060", + "text": "Allocates Shrapnel", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|27687", + "text": "Allocates Greatest Defence", + "type": "explicit" + }, + { + "id": "explicit.stat_2886108529", + "text": "Damage over Time cannot bypass your Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|336", + "text": "Allocates Storm Swell", + "type": "explicit" + }, + { + "id": "explicit.stat_2408276841", + "text": "#% increased Energy Shield Recharge Rate per 4 Strength", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|3894", + "text": "Allocates Eldritch Will", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|15829", + "text": "Allocates Siphon", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7604", + "text": "Allocates Rapid Strike", + "type": "explicit" + }, + { + "id": "explicit.stat_3762913035", + "text": "Unstable Breaches spawn an additional Rare Monster when Stabilised", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8831", + "text": "Allocates Tempered Mind", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17260", + "text": "Allocates Piercing Claw", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|61354", + "text": "Allocates Infernal Limit", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2486", + "text": "Allocates Stars Aligned", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|47635", + "text": "Allocates Overload", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17825", + "text": "Allocates Tactical Retreat", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4031", + "text": "Allocates Icebreaker", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35876", + "text": "Allocates Admonisher", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|41580", + "text": "Allocates Maiming Strike", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10499", + "text": "Allocates Necromantic Ward", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|63074", + "text": "Allocates Dark Entries", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4661", + "text": "Allocates Inspiring Leader", + "type": "explicit" + }, + { + "id": "explicit.stat_2104359366", + "text": "Maximum Energy Shield cannot be Converted", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|61703", + "text": "Allocates Sharpened Claw", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|13738", + "text": "Allocates Lightning Quick", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|50392", + "text": "Allocates Brute Strength", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|3492", + "text": "Allocates Void", + "type": "explicit" + }, + { + "id": "explicit.stat_1079292660", + "text": "#% increased Energy Shield Recharge Rate if you've Blocked Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7651", + "text": "Allocates Pierce the Heart", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|63830", + "text": "Allocates Marked for Sickness", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|15374", + "text": "Allocates Hale Heart", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8483", + "text": "Allocates Ruin", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32976", + "text": "Allocates Gem Enthusiast", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|23227", + "text": "Allocates Initiative", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|16256", + "text": "Allocates Ether Flow", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|52684", + "text": "Allocates Eroding Chains", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48524", + "text": "Allocates Blood Transfusion", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|34300", + "text": "Allocates Conservative Casting", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|65256", + "text": "Allocates Widespread Coverage", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|33922", + "text": "Allocates Stripped Defences", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|59214", + "text": "Allocates Fated End", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4716", + "text": "Allocates Afterimage", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|37806", + "text": "Allocates Branching Bolts", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43090", + "text": "Allocates Electrotherapy", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|25362", + "text": "Allocates Chakra of Impact", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|54990", + "text": "Allocates Bloodletting", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10423", + "text": "Allocates Exposed to the Inferno", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|25971", + "text": "Allocates Tenfold Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|19442", + "text": "Allocates Prolonged Assault", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|1104", + "text": "Allocates Lust for Power", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10265", + "text": "Allocates Javelin", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|3698", + "text": "Allocates Spike Pit", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|11838", + "text": "Allocates Dreamcatcher", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|12611", + "text": "Allocates Harness the Elements", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43944", + "text": "Allocates Instability", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|20008", + "text": "Allocates Unleash Fire", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|12906", + "text": "Allocates Sitting Duck", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|58096", + "text": "Allocates Lasting Incantations", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53150", + "text": "Allocates Sharp Sight", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9908", + "text": "Allocates Price of Freedom", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|47270", + "text": "Allocates Inescapable Cold", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|49150", + "text": "Allocates Precise Invocations", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|11366", + "text": "Allocates Volcanic Skin", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|55568", + "text": "Allocates Forthcoming", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|63585", + "text": "Allocates Thunderstruck", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|62803", + "text": "Allocates Woodland Aspect", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|34316", + "text": "Allocates One with the River", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|54937", + "text": "Allocates Vengeful Fury", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2021", + "text": "Allocates Wellspring", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|15986", + "text": "Allocates Building Toxins", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|13895", + "text": "Allocates Precise Point", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|34543", + "text": "Allocates The Frenzied Bear", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2863", + "text": "Allocates Perpetual Freeze", + "type": "explicit" + }, + { + "id": "explicit.stat_1617268696", + "text": "Burning Enemies you kill have a #% chance to Explode, dealing a\ntenth of their maximum Life as Fire Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43939", + "text": "Allocates Melting Flames", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53294", + "text": "Allocates Burn Away", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8881", + "text": "Allocates Unforgiving", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38398", + "text": "Allocates Apocalypse", + "type": "explicit" + }, + { + "id": "explicit.stat_1176947534", + "text": "Undead Minions have #% reduced Reservation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|54998", + "text": "Allocates Protraction", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32932", + "text": "Allocates Ichlotl's Inferno", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|63037", + "text": "Allocates Sigil of Fire", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48565", + "text": "Allocates Bringer of Order", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|934", + "text": "Allocates Natural Immunity", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|54031", + "text": "Allocates The Great Boar", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|59938", + "text": "Allocates Against the Elements", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|23940", + "text": "Allocates Fortified Aegis", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|50673", + "text": "Allocates Avoiding Deflection", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17254", + "text": "Allocates Spell Haste", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4238", + "text": "Allocates Versatile Arms", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|55708", + "text": "Allocates Electric Amplification", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8904", + "text": "Allocates Death from Afar", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38969", + "text": "Allocates Finesse", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|36623", + "text": "Allocates Convalescence", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42981", + "text": "Allocates Cruel Methods", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9226", + "text": "Allocates Mental Perseverance", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|20511", + "text": "Allocates Cremating Cries", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|40166", + "text": "Allocates Deep Trance", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|36341", + "text": "Allocates Cull the Hordes", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9652", + "text": "Allocates Mending Deflection", + "type": "explicit" + }, + { + "id": "explicit.stat_1546604934", + "text": "Gain #% of Evasion Rating as extra Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|30456", + "text": "Allocates High Alert", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|18308", + "text": "Allocates Bleeding Out", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10873", + "text": "Allocates Bestial Rage", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|59589", + "text": "Allocates Heavy Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48103", + "text": "Allocates Forcewave", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|60692", + "text": "Allocates Echoing Flames", + "type": "explicit" + }, + { + "id": "explicit.stat_1010703902", + "text": "The Effect of Blind on you is reversed", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|47514", + "text": "Allocates Dizzying Hits", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|63541", + "text": "Allocates Brush Off", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|47418", + "text": "Allocates Warding Potions", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|55847", + "text": "Allocates Ice Walls", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4673", + "text": "Allocates Hulking Smash", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38972", + "text": "Allocates Restless Dead", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42354", + "text": "Allocates Blinding Flash", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42036", + "text": "Allocates Off-Balancing Retort", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|16466", + "text": "Allocates Mental Alacrity", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|39567", + "text": "Allocates Ingenuity", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42245", + "text": "Allocates Efficient Inscriptions", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|44005", + "text": "Allocates Casting Cascade", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|44293", + "text": "Allocates Hastening Barrier", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|5335", + "text": "Allocates Shimmering Mirage", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|31175", + "text": "Allocates Grip of Evil", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|20397", + "text": "Allocates Authority", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7163", + "text": "Allocates Stimulants", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35792", + "text": "Allocates Blood of Rage", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38888", + "text": "Allocates Unerring Impact", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|34531", + "text": "Allocates Hallowed", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4709", + "text": "Allocates Near Sighted", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4627", + "text": "Allocates Climate Change", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17330", + "text": "Allocates Perforation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48418", + "text": "Allocates Hefty Unit", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48014", + "text": "Allocates Honourless", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|26291", + "text": "Allocates Electrifying Nature", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|31373", + "text": "Allocates Vocal Empowerment", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48617", + "text": "Allocates Hunter", + "type": "explicit" + }, + { + "id": "explicit.stat_4104094246", + "text": "Unstable Breaches take an additional second to collapse after timer is filled", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8607", + "text": "Allocates Lavianga's Brew", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|59541", + "text": "Allocates Necrotised Flesh", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|46696", + "text": "Allocates Impair", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2113", + "text": "Allocates Martial Artistry", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|33240", + "text": "Allocates Lord of Horrors", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|55", + "text": "Allocates Fast Acting Toxins", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2134", + "text": "Allocates Toxic Tolerance", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7341", + "text": "Allocates Ignore Pain", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|30562", + "text": "Allocates Inner Faith", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|5663", + "text": "Allocates Endurance", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48658", + "text": "Allocates Shattering", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51213", + "text": "Allocates Wasting", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4959", + "text": "Allocates Heavy Frost", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10681", + "text": "Allocates Defensive Stance", + "type": "explicit" + }, + { + "id": "explicit.stat_120969026", + "text": "#% increased Magnitude of Poison you inflict while Poisoned", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32543", + "text": "Allocates Unhindered", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2999", + "text": "Allocates Final Barrage", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|57047", + "text": "Allocates Polymathy", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|41394", + "text": "Allocates Invigorating Archon", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56806", + "text": "Allocates Swift Blocking", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|40270", + "text": "Allocates Frenetic", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10602", + "text": "Allocates Reaving", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|18959", + "text": "Allocates Ruinic Helm", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|62887", + "text": "Allocates Living Death", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10612", + "text": "Allocates Embodiment of Frost", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|34308", + "text": "Allocates Personal Touch", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10727", + "text": "Allocates Emboldening Casts", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|40325", + "text": "Allocates Resolution", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32151", + "text": "Allocates Crystalline Resistance", + "type": "explicit" + }, + { + "id": "explicit.stat_2201614328", + "text": "Regenerate #% of maximum Life per second if you have been Hit Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|61112", + "text": "Allocates Roll and Strike", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|40073", + "text": "Allocates Drenched", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|46296", + "text": "Allocates Short Shot", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|11392", + "text": "Allocates Molten Being", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|52257", + "text": "Allocates Conductive Embrace", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|11774", + "text": "Allocates The Spring Hare", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|27626", + "text": "Allocates Touch the Arcane", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|11578", + "text": "Allocates Spreading Shocks", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|64050", + "text": "Allocates Marathon Runner", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|13542", + "text": "Allocates Loose Flesh", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17372", + "text": "Allocates Reaching Strike", + "type": "explicit" + }, + { + "id": "explicit.stat_2163764037", + "text": "Gain Physical Thorns damage equal to #% - #% of maximum Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9421", + "text": "Allocates Snowpiercer", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|58397", + "text": "Allocates Proficiency", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|30392", + "text": "Allocates Succour", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|47782", + "text": "Allocates Steady Footing", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17600", + "text": "Allocates Thirsting Ally", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|18419", + "text": "Allocates Ancestral Mending", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|1823", + "text": "Allocates Illuminated Crown", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53527", + "text": "Allocates Shattering Blow", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|31773", + "text": "Allocates Resurging Archon", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56997", + "text": "Allocates Heavy Contact", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|20414", + "text": "Allocates Reprisal", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|55835", + "text": "Allocates Exposed to the Cosmos", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|14211", + "text": "Allocates Shredding Contraptions", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2397", + "text": "Allocates Last Stand", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2843", + "text": "Allocates Tolerant Equipment", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42347", + "text": "Allocates Chakra of Sight", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|62185", + "text": "Allocates Rattled", + "type": "explicit" + }, + { + "id": "explicit.stat_1895552497", + "text": "Every 5 Rage also grants #% of Damage taken Recouped as Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1559935218", + "text": "Causes Daze buildup equal to #% of Damage dealt", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17229", + "text": "Allocates Silent Guardian", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|19156", + "text": "Allocates Immaterial", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2745", + "text": "Allocates The Noble Wolf", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|33978", + "text": "Allocates Unstoppable Barrier", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42959", + "text": "Allocates Low Tolerance", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|6655", + "text": "Allocates Aggravation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|24438", + "text": "Allocates Hardened Wood", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|16499", + "text": "Allocates Lingering Whispers", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|6544", + "text": "Allocates Burning Strikes", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43791", + "text": "Allocates Rallying Icon", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|23078", + "text": "Allocates Holy Protector", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|27009", + "text": "Allocates Lust for Sacrifice", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35918", + "text": "Allocates One For All", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35028", + "text": "Allocates In the Thick of It", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|3688", + "text": "Allocates Dynamism", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|14945", + "text": "Allocates Growing Swarm", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|63031", + "text": "Allocates Glorious Anticipation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|22626", + "text": "Allocates Irreparable", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32721", + "text": "Allocates Distracted Target", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|26331", + "text": "Allocates Harsh Winter", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|50687", + "text": "Allocates Coursing Energy", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|27388", + "text": "Allocates Aspiring Genius", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43139", + "text": "Allocates Stormbreaker", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|45488", + "text": "Allocates Cross Strike", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|62034", + "text": "Allocates Prism Guard", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|5227", + "text": "Allocates Escape Strategy", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51606", + "text": "Allocates Freedom of Movement", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7847", + "text": "Allocates The Fabled Stag", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|58426", + "text": "Allocates Pocket Sand", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42065", + "text": "Allocates Surging Currents", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|31189", + "text": "Allocates Unexpected Finesse", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|21537", + "text": "Allocates Fervour", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|36333", + "text": "Allocates Explosive Empowerment", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56893", + "text": "Allocates Thicket Warding", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51602", + "text": "Allocates Unsight", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35369", + "text": "Allocates Investing Energies", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|27875", + "text": "Allocates General Electric", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17882", + "text": "Allocates Volatile Grenades", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53935", + "text": "Allocates Briny Carapace", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|36931", + "text": "Allocates Concussive Attack", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|65160", + "text": "Allocates Titanic", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|31364", + "text": "Allocates Primal Protection", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|50485", + "text": "Allocates Zone of Control", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|19249", + "text": "Allocates Supportive Ancestors", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|40985", + "text": "Allocates Empowering Remnants", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4331", + "text": "Allocates Guided Hand", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|15617", + "text": "Allocates Heavy Drinker", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53823", + "text": "Allocates Towering Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|34908", + "text": "Allocates Staunch Deflection", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|34553", + "text": "Allocates Emboldening Lead", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|44373", + "text": "Allocates Wither Away", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56063", + "text": "Allocates Lingering Horror", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42045", + "text": "Allocates Archon of the Blizzard", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51169", + "text": "Allocates Soul Bloom", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|54148", + "text": "Allocates Smoke Inhalation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48699", + "text": "Allocates Frostwalker", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|37514", + "text": "Allocates Whirling Assault", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38342", + "text": "Allocates Stupefy", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2335", + "text": "Allocates Turn the Clock Forward", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|26070", + "text": "Allocates Bolstering Yell", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4579", + "text": "Allocates Unbothering Cold", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|30748", + "text": "Allocates Controlled Chaos", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10295", + "text": "Allocates Overzealous", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|26518", + "text": "Allocates Cold Nature", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|41512", + "text": "Allocates Heavy Weaponry", + "type": "explicit" + }, + { + "id": "explicit.stat_451403019", + "text": "Life Recovery other than Flasks cannot Recover Life to above Low Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4931", + "text": "Allocates Dependable Ward", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|21453", + "text": "Allocates Breakage", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|50912", + "text": "Allocates Imbibed Power", + "type": "explicit" + }, + { + "id": "explicit.stat_315717203", + "text": "Remnants you create affect Allies in your Presence as well as you when collected", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|1352", + "text": "Allocates Unbending", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|29800", + "text": "Allocates Shocking Limit", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32354", + "text": "Allocates Defiance", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|24087", + "text": "Allocates Everlasting Infusions", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|15606", + "text": "Allocates Thrill of the Fight", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|15114", + "text": "Allocates Boundless Growth", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|13980", + "text": "Allocates Split the Earth", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|40803", + "text": "Allocates Sigil of Ice", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|18496", + "text": "Allocates Lasting Trauma", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|14934", + "text": "Allocates Spiral into Mania", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|16626", + "text": "Allocates Impact Area", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|22817", + "text": "Allocates Inevitable Rupture", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|14761", + "text": "Allocates Warlord Leader", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|34541", + "text": "Allocates Energising Deflection", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|5594", + "text": "Allocates Decrepifying Curse", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43584", + "text": "Allocates Flare", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|60764", + "text": "Allocates Feathered Fletching", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43396", + "text": "Allocates Ancestral Reach", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|12822", + "text": "Allocates Adaptable Assault", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|52348", + "text": "Allocates Carved Earth", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|23736", + "text": "Allocates Spray and Pray", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|50253", + "text": "Allocates Aftershocks", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|31826", + "text": "Allocates Long Distance Relationship", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35855", + "text": "Allocates Fortifying Blood", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|14383", + "text": "Allocates Suffusion", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|64543", + "text": "Allocates Unbound Forces", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|26479", + "text": "Allocates Steadfast Resolve", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|19722", + "text": "Allocates Thin Ice", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8791", + "text": "Allocates Sturdy Ally", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|64415", + "text": "Allocates Shattering Daze", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42302", + "text": "Allocates Split Shot", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|61741", + "text": "Allocates Lasting Toxins", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|58939", + "text": "Allocates Dispatch Foes", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|58714", + "text": "Allocates Grenadier", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|40480", + "text": "Allocates Harmonic Generator", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|33099", + "text": "Allocates Hunter's Talisman", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|13708", + "text": "Allocates Curved Weapon", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|16150", + "text": "Allocates Inspiring Ally", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35581", + "text": "Allocates Near at Hand", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48240", + "text": "Allocates Quick Recovery", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|46384", + "text": "Allocates Wide Barrier", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32301", + "text": "Allocates Frazzled", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|49550", + "text": "Allocates Prolonged Fury", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|58215", + "text": "Allocates Sanguimantic Rituals", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17150", + "text": "Allocates General's Bindings", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7668", + "text": "Allocates Internal Bleeding", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43677", + "text": "Allocates Crippling Toxins", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|20251", + "text": "Allocates Splitting Ground", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|62455", + "text": "Allocates Bannerman", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|25619", + "text": "Allocates Sand in the Eyes", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|12964", + "text": "Allocates Lone Warrior", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|30720", + "text": "Allocates Entropic Incarnation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35324", + "text": "Allocates Burnout", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|65193", + "text": "Allocates Viciousness", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|23630", + "text": "Allocates Self Immolation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4547", + "text": "Allocates Unnatural Resilience", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53853", + "text": "Allocates Backup Plan", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4544", + "text": "Allocates The Ancient Serpent", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|28329", + "text": "Allocates Pressure Points", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32858", + "text": "Allocates Dread Engineer's Concoction", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|40213", + "text": "Allocates Taste for Blood", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|33059", + "text": "Allocates Back in Action", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|59070", + "text": "Allocates Enduring Archon", + "type": "explicit" + }, + { + "id": "explicit.stat_3481736410", + "text": "#% increased Area of Effect if you've Killed Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2645", + "text": "Allocates Skullcrusher", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|61444", + "text": "Allocates Wasting Casts", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|61921", + "text": "Allocates Storm Surge", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|12750", + "text": "Allocates Vale Shelter", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|6514", + "text": "Allocates Cacophony", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|63739", + "text": "Allocates Vigorous Remnants", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|13823", + "text": "Allocates Controlling Magic", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|52180", + "text": "Allocates Trained Deflection", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53566", + "text": "Allocates Run and Gun", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|63579", + "text": "Allocates Momentum", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|55817", + "text": "Allocates Alchemical Oil", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51509", + "text": "Allocates Waters of Life", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43854", + "text": "Allocates All For One", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7275", + "text": "Allocates Electrocuting Exposure", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|21748", + "text": "Allocates Impending Doom", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|34340", + "text": "Allocates Mass Rejuvenation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|39083", + "text": "Allocates Blood Rush", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|28482", + "text": "Allocates Total Incineration", + "type": "explicit" + }, + { + "id": "explicit.stat_2103621252", + "text": "Eat a Soul when you Hit a Unique Enemy, no more than once every second", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|64851", + "text": "Allocates Flashy Parrying", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|750", + "text": "Allocates Tribal Fury", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|11376", + "text": "Allocates Necrotic Touch", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|64240", + "text": "Allocates Battle Fever", + "type": "explicit" + }, + { + "id": "explicit.stat_325171970", + "text": "#% increased Attack Speed while missing Runic Ward", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9736", + "text": "Allocates Insulated Treads", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53030", + "text": "Allocates Immolation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|27434", + "text": "Allocates Archon of the Storm", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42390", + "text": "Allocates Overheating Blow", + "type": "explicit" + }, + { + "id": "explicit.stat_2319832234", + "text": "#% of Damage Taken Recouped as Life, Mana and Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35477", + "text": "Allocates Far Sighted", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|65016", + "text": "Allocates Intense Flames", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|11826", + "text": "Allocates Heavy Ammunition", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|40687", + "text": "Allocates Lead by Example", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|5332", + "text": "Allocates Crystallised Immunities", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|13457", + "text": "Allocates Shadow Dancing", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|52199", + "text": "Allocates Overexposure", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8660", + "text": "Allocates Reverberation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|47363", + "text": "Allocates Colossal Weapon", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|26339", + "text": "Allocates Ancestral Artifice", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|24483", + "text": "Allocates Direct Approach", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|37742", + "text": "Allocates Manifold Method", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8554", + "text": "Allocates Burning Nature", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|16940", + "text": "Allocates Arcane Nature", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|33887", + "text": "Allocates Full Salvo", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53367", + "text": "Allocates Symbol of Defiance", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|61104", + "text": "Allocates Staggering Wounds", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|50884", + "text": "Allocates Primal Sundering", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|24120", + "text": "Allocates Mental Toughness", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|52971", + "text": "Allocates The Soul Meridian", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|45244", + "text": "Allocates Refills", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|34425", + "text": "Allocates Precise Volatility", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17762", + "text": "Allocates Vengeance", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|36976", + "text": "Allocates Marked for Death", + "type": "explicit" + }, + { + "id": "explicit.stat_1338406168", + "text": "Maximum amount of Guard is based on maximum Energy Shield instead", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|5642", + "text": "Allocates Behemoth", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2575", + "text": "Allocates Ancestral Alacrity", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|12661", + "text": "Allocates Asceticism", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|27513", + "text": "Allocates Material Solidification", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|29899", + "text": "Allocates Finish Them", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32799", + "text": "Allocates Captivating Companionship", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|14777", + "text": "Allocates Bravado", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|33093", + "text": "Allocates Effervescent", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9444", + "text": "Allocates One with the Storm", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|24766", + "text": "Allocates Paranoia", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38628", + "text": "Allocates Escalating Toxins", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|41033", + "text": "Allocates Utmost Offering", + "type": "explicit" + }, + { + "id": "explicit.stat_3923947492", + "text": "Hits against you have #% increased Critical Hit Chance while you are Chilled", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|23764", + "text": "Allocates Alternating Current", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|40117", + "text": "Allocates Spiked Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|36630", + "text": "Allocates Incision", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|57805", + "text": "Allocates Clear Space", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4447", + "text": "Allocates Pin their Motivation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10315", + "text": "Allocates Easy Going", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|46683", + "text": "Allocates Inherited Strength ", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|18397", + "text": "Allocates Savoured Blood", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|5580", + "text": "Allocates Watchtowers", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35809", + "text": "Allocates Reinvigoration", + "type": "explicit" + }, + { + "id": "explicit.stat_679019978", + "text": "#% of Damage is taken from Mana before Life while not on Low Mana", + "type": "explicit" + }, + { + "id": "explicit.stat_3423006863", + "text": "Arrows Pierce an additional Target", + "type": "explicit" + }, + { + "id": "explicit.stat_3982604001", + "text": "Skills have #% longer Perfect Timing window during effect", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9896", + "text": "Allocates Heartstopping Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|54640", + "text": "Allocates Constricting", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38532", + "text": "Allocates Thirst for Power", + "type": "explicit" + }, + { + "id": "explicit.stat_174664100", + "text": "Minions have #% increased Movement Speed", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2344", + "text": "Allocates Dimensional Weakspot", + "type": "explicit" + }, + { + "id": "explicit.stat_1243721142", + "text": "Arrows Return if they have Pierced a target which had Fully Broken Armour", + "type": "explicit" + }, + { + "id": "explicit.stat_2036307261", + "text": "Hits with this weapon have # to # Added Physical Damage per 1% Block Chance", + "type": "explicit" + }, + { + "id": "explicit.stat_2531622767", + "text": "#% increased Block chance per 100 total Item Armour on Equipped Armour Items", + "type": "explicit" + }, + { + "id": "explicit.stat_1580426064", + "text": "Cannot use Life Flasks\nNon-Unique Life Flasks apply their Effects constantly\nRecovery from Life Flasks cannot be Instant\nRecovery from your Life Flasks cannot be applied to anything other than you", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|59433", + "text": "Allocates Thirst for Endurance", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|1502", + "text": "Allocates Draiocht Cleansing", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|28408", + "text": "Allocates Invigorating Hate", + "type": "explicit" + }, + { + "id": "explicit.stat_1544773869", + "text": "#% increased Cooldown Recovery Rate for Grenade Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_2777675751", + "text": "Using a Mana Flask grants Guard equal to #% of Flask's recovery amount for 4 seconds", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|31724", + "text": "Allocates Iron Slippers", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|12245", + "text": "Allocates Arsonist", + "type": "explicit" + }, + { + "id": "explicit.stat_1016759424", + "text": "Bleeding you inflict deals Fire Damage instead of Physical Damage", + "type": "explicit" + }, + { + "id": "explicit.stat_1221641885", + "text": "Fire Damage also Contributes to Bleeding Magnitude", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|63400", + "text": "Allocates Chakra of Elements", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|16142", + "text": "Allocates Deep Freeze", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|33542", + "text": "Allocates Quick Fingers", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9328", + "text": "Allocates Spirit of the Bear", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|45874", + "text": "Allocates Proliferating Weeds", + "type": "explicit" + }, + { + "id": "explicit.stat_3742865955", + "text": "Minions deal #% increased Damage with Command Skills", + "type": "explicit" + }, + { + "id": "explicit.stat_3471443885", + "text": "#% of Damage taken from Deflected Hits Recouped as Life", + "type": "explicit" + }, + { + "id": "explicit.stat_1312381104", + "text": "Regenerate # Life per second for every 10 Intelligence", + "type": "explicit" + }, + { + "id": "explicit.stat_1315418254", + "text": "Zealot's Oath", + "type": "explicit" + }, + { + "id": "explicit.stat_758226825", + "text": "Your maximum Energy Shield is equal to #% of your Strength", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35417", + "text": "Allocates Wyvern's Breath", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42070", + "text": "Allocates Saqawal's Guidance", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|60619", + "text": "Allocates Scales of the Wyvern", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|11886", + "text": "Allocates Mauling Stuns", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|55375", + "text": "Allocates Licking Wounds", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|58198", + "text": "Allocates Well of Power", + "type": "explicit" + }, + { + "id": "explicit.stat_1955786041", + "text": "Has # to # Physical damage, # to # per Boss's Face Broken", + "type": "explicit" + }, + { + "id": "explicit.stat_3273962791", + "text": "# metres to Melee Strike Range while Unarmed", + "type": "explicit" + }, + { + "id": "explicit.stat_2783157569", + "text": "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2972244965", + "text": "#% increased Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently", + "type": "explicit" + }, + { + "id": "explicit.stat_3170380905", + "text": "Gain 1% of damage as Fire damage per #% Chance to Block", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|52764", + "text": "Allocates Mystical Rage", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|41935", + "text": "Allocates Hide of the Bear", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|39884", + "text": "Allocates Searing Heat", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|14602", + "text": "Allocates Specialised Shots", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56714", + "text": "Allocates Swift Flight", + "type": "explicit" + }, + { + "id": "explicit.stat_1867725690", + "text": "Hits with this Weapon have #% chance to Trigger Molten Shower per 25 Strength", + "type": "explicit" + }, + { + "id": "explicit.stat_4056809290", + "text": "Cannot inflict Elemental Ailments", + "type": "explicit" + }, + { + "id": "explicit.stat_4186798932", + "text": "# to # Added Attack Fire Damage per 25 Strength", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42660", + "text": "Allocates Commanding Rage", + "type": "explicit" + }, + { + "id": "explicit.stat_3336230913", + "text": "# to maximum Runic Ward", + "type": "explicit" + }, + { + "id": "explicit.stat_2424163939", + "text": "Physical Damage of Enemies Hitting you is Lucky", + "type": "explicit" + }, + { + "id": "explicit.stat_3351912431", + "text": "Convert All Armour to Evasion Rating", + "type": "explicit" + }, + { + "id": "explicit.stat_3452269808", + "text": "#% chance to avoid Projectiles", + "type": "explicit" + }, + { + "id": "explicit.stat_4123841473", + "text": "Lightning Skills Chain # times", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17303", + "text": "Allocates Utility Ordnance", + "type": "explicit" + }, + { + "id": "explicit.stat_2224139044", + "text": "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted\nEvery second Strike Skill you use while Shapeshifted is Ancestrally Boosted", + "type": "explicit" + }, + { + "id": "explicit.stat_2734787892", + "text": "Breach Hives have an additional wave of Hiveborn Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_2653231923", + "text": "#% increased Mana Cost Efficiency of Spells", + "type": "explicit" + }, + { + "id": "explicit.stat_2392260628", + "text": "#% increased Runic Ward Regeneration Rate", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|63255", + "text": "Allocates Savagery", + "type": "explicit" + }, + { + "id": "explicit.stat_664606484", + "text": "Abyssal Monsters have #% increased Effectiveness for each closed Pit, up to 100%", + "type": "explicit" + }, + { + "id": "explicit.stat_1485480327", + "text": "Minions have #% increased Immobilisation buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53187", + "text": "Allocates Warlord Berserker", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7395", + "text": "Allocates Retaliation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|24240", + "text": "Allocates Time Manipulation", + "type": "explicit" + }, + { + "id": "explicit.stat_1539671749", + "text": "Defend with #% of Armour while you have Energy Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_4128965096", + "text": "Gain 1 Explosive Rhythm every # time you use a Grenade Skill\nRemove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds", + "type": "explicit" + }, + { + "id": "explicit.stat_4274637468", + "text": "Convert #% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|31745", + "text": "Allocates Lockdown", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|26563", + "text": "Allocates Bone Chains", + "type": "explicit" + }, + { + "id": "explicit.stat_310246444", + "text": "#% increased Damage while Leeching", + "type": "explicit" + }, + { + "id": "explicit.stat_1028592286", + "text": "#% chance to Chain an additional time", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38570", + "text": "Allocates Demolitionist", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|37302", + "text": "Allocates Kept at Bay", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51891", + "text": "Allocates Lucidity", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|44765", + "text": "Allocates Distracting Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35031", + "text": "Allocates Chakra of Life", + "type": "explicit" + }, + { + "id": "explicit.stat_4273473110", + "text": "#% increased maximum Runic Ward", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|26447", + "text": "Allocates Refocus", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|52229", + "text": "Allocates Secrets of the Orb", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48215", + "text": "Allocates Headshot", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56767", + "text": "Allocates Electrifying Daze", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|47088", + "text": "Allocates Sic 'Em", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|28613", + "text": "Allocates Roaring Cries", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|60269", + "text": "Allocates Roil", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51105", + "text": "Allocates Spirit Bond", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8397", + "text": "Allocates Empowering Remains", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|20388", + "text": "Allocates Regenerative Flesh", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|37543", + "text": "Allocates Full Recovery", + "type": "explicit" + }, + { + "id": "explicit.stat_1675120891", + "text": "Chance to Deflect is Lucky while on Low Life", + "type": "explicit" + }, + { + "id": "explicit.stat_3628041050", + "text": "Enemies in your Presence gain 1 Gruelling Madness each second", + "type": "explicit" + }, + { + "id": "explicit.stat_632698321", + "text": "#% increased chance Vaal Beacons summon additional Monsters", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|3188", + "text": "Allocates Revenge", + "type": "explicit" + }, + { + "id": "explicit.stat_469006068", + "text": "Gain Guard equal to #% of missing Energy Shield for 4 seconds when you Dodge Roll", + "type": "explicit" + }, + { + "id": "explicit.stat_504054855", + "text": "#% faster Dodge Roll", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|45612", + "text": "Allocates Defensive Reflexes", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4810", + "text": "Allocates Sanguine Tolerance", + "type": "explicit" + }, + { + "id": "explicit.stat_2408983956", + "text": "#% increased Critical Damage Bonus while Shocked", + "type": "explicit" + }, + { + "id": "explicit.stat_2626360934", + "text": "Wind Skills which can be boosted by Elemental Ground Surfaces count\nas being boosted by Chilled Ground", + "type": "explicit" + }, + { + "id": "explicit.stat_3441501978", + "text": "#% to Fire and Lightning Resistances", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|14343", + "text": "Allocates Deterioration", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9323", + "text": "Allocates Craving Slaughter", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|19644", + "text": "Allocates Left Hand of Darkness", + "type": "explicit" + }, + { + "id": "explicit.stat_2538411280", + "text": "Skills which Empower an Attack have #% chance to not count that Attack", + "type": "explicit" + }, + { + "id": "explicit.stat_275498888", + "text": "Maximum Quality is #%", + "type": "explicit" + }, + { + "id": "explicit.stat_3832076641", + "text": "Used when you release a skill with Perfect Timing", + "type": "explicit" + }, + { + "id": "explicit.stat_3926910174", + "text": "# to # added Physical Thorns damage per Runic Plate", + "type": "explicit" + }, + { + "id": "explicit.stat_1237409891", + "text": "Cannot be Used manually", + "type": "explicit" + }, + { + "id": "explicit.stat_3422093970", + "text": "#% chance for Remnants you pick up to count as picking up an additional Remnant", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48974", + "text": "Allocates Altered Brain Chemistry", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|61404", + "text": "Allocates Equilibrium", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|15443", + "text": "Allocates Endured Suffering", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7302", + "text": "Allocates Echoing Pulse", + "type": "explicit" + }, + { + "id": "explicit.stat_1014398896", + "text": "#% increased Spell Damage during any Flask Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|41972", + "text": "Allocates Glaciation", + "type": "explicit" + }, + { + "id": "explicit.stat_145581225", + "text": "#% increased Cast Speed during any Flask Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53185", + "text": "Allocates The Winter Owl", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|37408", + "text": "Allocates Staunching", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7782", + "text": "Allocates Rupturing Pins", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|46024", + "text": "Allocates Sigil of Lightning", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|6133", + "text": "Allocates Core of the Guardian", + "type": "explicit" + }, + { + "id": "explicit.stat_1493485657", + "text": "Spells have #% increased Cooldown Recovery Rate", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48734", + "text": "Allocates The Howling Primate", + "type": "explicit" + }, + { + "id": "explicit.stat_953593695", + "text": "Minions have #% increased Magnitude of Damaging Ailments", + "type": "explicit" + }, + { + "id": "explicit.stat_2482970488", + "text": "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_986616727", + "text": "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", + "type": "explicit" + }, + { + "id": "explicit.stat_4015438188", + "text": "#% increased Damage with Hits against targets in your Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_589361270", + "text": "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|18157", + "text": "Allocates Tempered Defences", + "type": "explicit" + }, + { + "id": "explicit.stat_2039822488", + "text": "#% to Maximum Quality", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|46224", + "text": "Allocates Arcane Alchemy", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|1603", + "text": "Allocates Storm Driven", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|64650", + "text": "Allocates Wary Dodging", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|28542", + "text": "Allocates The Molten One's Gift", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9290", + "text": "Allocates Rusted Pins", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|63451", + "text": "Allocates Cranial Impact", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|29306", + "text": "Allocates Chakra of Thought", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|57110", + "text": "Allocates Infused Flesh", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|3921", + "text": "Allocates Fate Finding", + "type": "explicit" + }, + { + "id": "explicit.stat_1147913864", + "text": "Lose #% Life per second while you have no Runic Ward during Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_4100842845", + "text": "Mana Recovery from Flasks can Overflow maximum Mana during Effect", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8896", + "text": "Allocates Agile Sprinter", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|47420", + "text": "Allocates Expendable Army", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10029", + "text": "Allocates Repulsion", + "type": "explicit" + }, + { + "id": "explicit.stat_1058934731", + "text": "Temporary Minion Skills have # to Limit of Minions summoned", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8782", + "text": "Allocates Empowering Infusions", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48774", + "text": "Allocates Taut Flesh", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|25211", + "text": "Allocates Waning Hindrances", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|6304", + "text": "Allocates Stand Ground", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|15030", + "text": "Allocates Consistent Intake", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|27108", + "text": "Allocates Mass Hysteria", + "type": "explicit" + }, + { + "id": "explicit.stat_3774577097", + "text": "You are Blind", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51446", + "text": "Allocates Leather Bound Gauntlets", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|29762", + "text": "Allocates Guttural Roar", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|33585", + "text": "Allocates Unspoken Bond", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|63431", + "text": "Allocates Leeching Toxins", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53131", + "text": "Allocates Tukohama's Brew", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56488", + "text": "Allocates Glancing Deflection", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|14324", + "text": "Allocates Arcane Blossom", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|31326", + "text": "Allocates Slow Burn", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|46365", + "text": "Allocates Gigantic Following", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51868", + "text": "Allocates Molten Carapace", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42760", + "text": "Allocates Chakra of Stability", + "type": "explicit" + }, + { + "id": "explicit.stat_2080373320", + "text": "Enemies in your Presence are Blinded", + "type": "explicit" + }, + { + "id": "explicit.stat_3783473032", + "text": "The Bodach haunts your Presence", + "type": "explicit" + }, + { + "id": "explicit.stat_905072977", + "text": "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53607", + "text": "Allocates Fortified Location", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|57785", + "text": "Allocates Trained Turrets", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|60083", + "text": "Allocates Pin and Run", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38479", + "text": "Allocates Close Confines", + "type": "explicit" + }, + { + "id": "explicit.stat_2840930496", + "text": "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9187", + "text": "Allocates Escalation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|4295", + "text": "Allocates Adverse Growth", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|36507", + "text": "Allocates Vile Mending", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|29288", + "text": "Allocates Deadly Invocations", + "type": "explicit" + }, + { + "id": "explicit.stat_1827379101", + "text": "Enemies in your Presence have additional Power equal to their Gruelling Madness", + "type": "explicit" + }, + { + "id": "explicit.stat_2526112819", + "text": "Hits with this Weapon inflict # Gruelling Madness", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|22532", + "text": "Allocates Fearful Paralysis", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|45370", + "text": "Allocates The Raging Ox", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|23244", + "text": "Allocates Bounty Hunter", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7062", + "text": "Allocates Reusable Ammunition", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|24491", + "text": "Allocates Invocated Echoes", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|39990", + "text": "Allocates Chronomancy", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42103", + "text": "Allocates Enduring Deflection", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|5257", + "text": "Allocates Echoing Frost", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|1169", + "text": "Allocates Urgent Call", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|52245", + "text": "Allocates Distant Dreamer", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|16790", + "text": "Allocates Efficient Casting", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|46692", + "text": "Allocates Efficient Alchemy", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|37276", + "text": "Allocates Battle Trance", + "type": "explicit" + }, + { + "id": "explicit.stat_4108426433", + "text": "#% of Fire damage taken as Cold damage", + "type": "explicit" + }, + { + "id": "explicit.stat_3198708642", + "text": "#% of Lightning damage taken as Cold damage", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|20032", + "text": "Allocates Erraticism", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|20416", + "text": "Allocates Grit", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|13515", + "text": "Allocates Stormwalker", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|44917", + "text": "Allocates Self Mortification", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|27950", + "text": "Allocates Polished Iron", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|65023", + "text": "Allocates Impenetrable Shell", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|18485", + "text": "Allocates Unstable Bond", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|60464", + "text": "Allocates Fan the Flames", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|36364", + "text": "Allocates Electrocution", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53683", + "text": "Allocates Efficient Loading", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38895", + "text": "Allocates Crystal Elixir", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38965", + "text": "Allocates Infused Limits", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|51129", + "text": "Allocates Pile On", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|40292", + "text": "Allocates Nimble Strength", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|46124", + "text": "Allocates Arcane Remnants", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|33229", + "text": "Allocates Haemorrhaging Cuts", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|25620", + "text": "Allocates Meat Recycling", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|41620", + "text": "Allocates Bear's Roar", + "type": "explicit" + }, + { + "id": "explicit.stat_1416292992", + "text": "Has # Charm Slot", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|52803", + "text": "Allocates Hale Traveller", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|15991", + "text": "Allocates Embodiment of Lightning", + "type": "explicit" + }, + { + "id": "explicit.stat_3200877707", + "text": "Skills have a #% chance to not consume Glory", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|61026", + "text": "Allocates Crystalline Flesh", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|1087", + "text": "Allocates Shockwaves", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|12412", + "text": "Allocates Temporal Mastery", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|65468", + "text": "Allocates Repeating Explosives", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|13482", + "text": "Allocates Punctured Lung", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|38329", + "text": "Allocates Biting Frost", + "type": "explicit" + }, + { + "id": "explicit.stat_1314787770", + "text": "Map Boss has +#% chance to drop a Waystone of the current tier or higher", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53921", + "text": "Allocates Unbreaking", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48649", + "text": "Allocates Insulating Hide", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|25753", + "text": "Allocates Blazing Arms", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8916", + "text": "Allocates Bashing Beast", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|37266", + "text": "Allocates Nourishing Ally", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|28441", + "text": "Allocates Frantic Swings", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|45777", + "text": "Allocates Hidden Barb", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56388", + "text": "Allocates Reinforced Rallying", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|50023", + "text": "Allocates Invigorating Grandeur", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56616", + "text": "Allocates Desperate Times", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|44974", + "text": "Allocates Hail", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|33730", + "text": "Allocates Focused Channel", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|6774", + "text": "Sacrifice up to 3 Perfect Exalted Orbs to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_2625554454", + "text": "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|62963", + "text": "Allocates Flamewalker", + "type": "explicit" + }, + { + "id": "explicit.stat_1157523820", + "text": "#% chance for Slam Skills to cause an additional Aftershock", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7542", + "text": "Allocates Encompassing Domain", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|13524", + "text": "Allocates Everlasting Glory", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43829", + "text": "Allocates Advanced Munitions", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|57617", + "text": "Allocates Shifted Strikes", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|45329", + "text": "Allocates Delayed Danger", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|50715", + "text": "Allocates Frozen Limit", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|31925", + "text": "Allocates Warding Fetish", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|1506", + "text": "Allocates Remnant Attraction", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|64525", + "text": "Allocates Easy Target", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43633", + "text": "Allocates Energising Archon", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|26104", + "text": "Allocates Spirit of the Wyvern", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|29881", + "text": "Allocates Surging Beast", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|94", + "text": "Allocates Efficient Killing", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56237", + "text": "Allocates Enhancing Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_4098286334", + "text": "Area has #% chance to contain an Essence", + "type": "explicit" + }, + { + "id": "explicit.stat_4098286334", + "text": "Your Maps have #% chance to contain an Essence", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|23362", + "text": "Allocates Slippery Ice", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32655", + "text": "Allocates Hunting Companion", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|45177", + "text": "Allocates Strike True", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|10774", + "text": "Allocates Unyielding", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|261", + "text": "Allocates Toxic Sludge", + "type": "explicit" + }, + { + "id": "explicit.stat_3005701891", + "text": "Inflict Cold Exposure on Hit", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|37244", + "text": "Allocates Shield Expertise", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|19546", + "text": "Allocates Favourable Odds", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|44753", + "text": "Allocates One With Flame", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|28892", + "text": "Allocates Primal Rage", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7128", + "text": "Allocates Dangerous Blossom", + "type": "explicit" + }, + { + "id": "explicit.stat_2880019685", + "text": "#% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|21784", + "text": "Allocates Pack Encouragement", + "type": "explicit" + }, + { + "id": "explicit.stat_3076483222|56025", + "text": "Sacrifice up to 3 Perfect Chaos Orbs to receive double on Trial completion", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|64659", + "text": "Allocates Lasting Boons", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9928", + "text": "Allocates Embracing Frost", + "type": "explicit" + }, + { + "id": "explicit.stat_2971398565", + "text": "Divine Flight", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|58817", + "text": "Allocates Artillery Strike", + "type": "explicit" + }, + { + "id": "explicit.stat_279110104", + "text": "Withered does not expire on Enemies Ignited by you", + "type": "explicit" + }, + { + "id": "explicit.stat_1910297038", + "text": "Withered you inflict also increases Fire Damage taken", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|49214", + "text": "Allocates Blood of the Wolf", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|12998", + "text": "Allocates Warm the Heart", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|24062", + "text": "Allocates Immortal Infamy", + "type": "explicit" + }, + { + "id": "explicit.stat_2388936716", + "text": "Area has #% chance to contain a Strongbox", + "type": "explicit" + }, + { + "id": "explicit.stat_2388936716", + "text": "Your Maps have #% chance to contain a Strongbox", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|60992", + "text": "Allocates Nurturing Guardian", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|46182", + "text": "Allocates Intense Dose", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|20558", + "text": "Allocates Among the Hordes", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|42813", + "text": "Allocates Tides of Change", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|47441", + "text": "Allocates Stigmata", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|338", + "text": "Allocates Invocated Limit", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|5410", + "text": "Allocates Channelled Heritage", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|30395", + "text": "Allocates Howling Beast", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|17725", + "text": "Allocates Bonded Precision", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|60273", + "text": "Allocates Hindering Obstacles", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|32448", + "text": "Allocates Shockproof", + "type": "explicit" + }, + { + "id": "explicit.stat_3874491706", + "text": "All Mage's Legacies have #% increased effect per duplicate Mage's Legacy you have", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56988", + "text": "Allocates Electric Blood", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|53265", + "text": "Allocates Nature's Bite", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|8957", + "text": "Allocates Right Hand of Darkness", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56112", + "text": "Allocates Extinguishing Exhalation", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56016", + "text": "Allocates Passthrough Rounds", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|55450", + "text": "Allocates Rallying Form", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|57921", + "text": "Allocates Wolf's Howl", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|49740", + "text": "Allocates Shattered Crystal", + "type": "explicit" + }, + { + "id": "explicit.stat_2241560081", + "text": "#% increased Attack Speed per 25 Dexterity", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|48925", + "text": "Allocates Blessing of the Moon", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|7449", + "text": "Allocates Splinters", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|24764", + "text": "Allocates Infusing Power", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|3348", + "text": "Allocates Spirit of the Wolf", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|5686", + "text": "Allocates Chillproof", + "type": "explicit" + }, + { + "id": "explicit.stat_915546383", + "text": "Gain #% of Physical Damage as Extra Damage of a random Element", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|2814", + "text": "Allocates Engineered Blaze", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43711", + "text": "Allocates Thornhide", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|45751", + "text": "Allocates Frightening Shield", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|56860", + "text": "Allocates Resolute Reprisal", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|35618", + "text": "Allocates Cold Coat", + "type": "explicit" + }, + { + "id": "explicit.stat_2571125745", + "text": "Area has #% chance to contain a Shrine", + "type": "explicit" + }, + { + "id": "explicit.stat_2571125745", + "text": "Your Maps have #% chance to contain a Shrine", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|59387", + "text": "Allocates Infusion of Power", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|43250", + "text": "Allocates Adaptive Skin", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|36100", + "text": "Allocates Molten Claw", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|30546", + "text": "Allocates Electrified Claw", + "type": "explicit" + }, + { + "id": "explicit.stat_2954116742|9009", + "text": "Allocates Return to Nature", + "type": "explicit" + } + ] + }, + { + "id": "implicit", + "label": "Implicit", + "entries": [ + { + "id": "implicit.stat_3917489142", + "text": "#% increased Rarity of Items found", + "type": "implicit" + }, + { + "id": "implicit.stat_275498888", + "text": "Maximum Quality is #%", + "type": "implicit" + }, + { + "id": "implicit.stat_4041853756", + "text": "Adds Irradiated to a Map \n# use remaining", + "type": "implicit" + }, + { + "id": "implicit.stat_3981240776", + "text": "# to Spirit", + "type": "implicit" + }, + { + "id": "implicit.stat_2923486259", + "text": "#% to Chaos Resistance", + "type": "implicit" + }, + { + "id": "implicit.stat_789117908", + "text": "#% increased Mana Regeneration Rate", + "type": "implicit" + }, + { + "id": "implicit.stat_4220027924", + "text": "#% to Cold Resistance", + "type": "implicit" + }, + { + "id": "implicit.stat_2901986750", + "text": "#% to all Elemental Resistances", + "type": "implicit" + }, + { + "id": "implicit.stat_1671376347", + "text": "#% to Lightning Resistance", + "type": "implicit" + }, + { + "id": "implicit.stat_1379411836", + "text": "# to all Attributes", + "type": "implicit" + }, + { + "id": "implicit.stat_3372524247", + "text": "#% to Fire Resistance", + "type": "implicit" + }, + { + "id": "implicit.stat_3261801346", + "text": "# to Dexterity", + "type": "implicit" + }, + { + "id": "implicit.stat_3299347043", + "text": "# to maximum Life", + "type": "implicit" + }, + { + "id": "implicit.stat_3489782002", + "text": "# to maximum Energy Shield", + "type": "implicit" + }, + { + "id": "implicit.stat_328541901", + "text": "# to Intelligence", + "type": "implicit" + }, + { + "id": "implicit.stat_4080418644", + "text": "# to Strength", + "type": "implicit" + }, + { + "id": "implicit.stat_2219129443", + "text": "Adds an Otherworldy Breach to a Map \n# use remaining", + "type": "implicit" + }, + { + "id": "implicit.stat_2891184298", + "text": "#% increased Cast Speed", + "type": "implicit" + }, + { + "id": "implicit.stat_1050105434", + "text": "# to maximum Mana", + "type": "implicit" + }, + { + "id": "implicit.stat_3325883026", + "text": "# Life Regeneration per second", + "type": "implicit" + }, + { + "id": "implicit.stat_3032590688", + "text": "Adds # to # Physical Damage to Attacks", + "type": "implicit" + }, + { + "id": "implicit.stat_803737631", + "text": "# to Accuracy Rating", + "type": "implicit" + }, + { + "id": "implicit.stat_958696139", + "text": "Grants 1 additional Skill Slot", + "type": "implicit" + }, + { + "id": "implicit.stat_3376302538", + "text": "Empowers the Map Boss of a Map \n# use remaining", + "type": "implicit" + }, + { + "id": "implicit.stat_3879011313", + "text": "Adds a Mirror of Delirium to a Map \n# use remaining", + "type": "implicit" + }, + { + "id": "implicit.stat_2463230181", + "text": "#% Surpassing chance to fire an additional Arrow", + "type": "implicit" + }, + { + "id": "implicit.stat_680068163", + "text": "#% increased Stun Threshold", + "type": "implicit" + }, + { + "id": "implicit.stat_462041840", + "text": "#% of Flask Recovery applied Instantly", + "type": "implicit" + }, + { + "id": "implicit.stat_548198834", + "text": "#% increased Melee Strike Range with this weapon", + "type": "implicit" + }, + { + "id": "implicit.stat_821241191", + "text": "#% increased Life Recovery from Flasks", + "type": "implicit" + }, + { + "id": "implicit.stat_681332047", + "text": "#% increased Attack Speed", + "type": "implicit" + }, + { + "id": "implicit.stat_809229260", + "text": "# to Armour", + "type": "implicit" + }, + { + "id": "implicit.stat_1702195217", + "text": "#% to Block chance", + "type": "implicit" + }, + { + "id": "implicit.stat_1836676211", + "text": "#% increased Flask Charges gained", + "type": "implicit" + }, + { + "id": "implicit.stat_1980802737", + "text": "Grenade Skills Fire an additional Projectile", + "type": "implicit" + }, + { + "id": "implicit.stat_2222186378", + "text": "#% increased Mana Recovery from Flasks", + "type": "implicit" + }, + { + "id": "implicit.stat_2194114101", + "text": "#% increased Critical Hit Chance for Attacks", + "type": "implicit" + }, + { + "id": "implicit.stat_644456512", + "text": "#% reduced Flask Charges used", + "type": "implicit" + }, + { + "id": "implicit.stat_1714888636", + "text": "Adds a Kalguuran Expedition to a Map \n# use remaining", + "type": "implicit" + }, + { + "id": "implicit.stat_1782086450", + "text": "#% faster start of Energy Shield Recharge", + "type": "implicit" + }, + { + "id": "implicit.stat_731781020", + "text": "Flasks gain # charges per Second", + "type": "implicit" + }, + { + "id": "implicit.stat_1570770415", + "text": "#% reduced Charm Charges used", + "type": "implicit" + }, + { + "id": "implicit.stat_3585532255", + "text": "#% increased Charm Charges gained", + "type": "implicit" + }, + { + "id": "implicit.stat_1389754388", + "text": "#% increased Charm Effect Duration", + "type": "implicit" + }, + { + "id": "implicit.stat_1573130764", + "text": "Adds # to # Fire damage to Attacks", + "type": "implicit" + }, + { + "id": "implicit.stat_2250533757", + "text": "#% increased Movement Speed", + "type": "implicit" + }, + { + "id": "implicit.stat_924253255", + "text": "#% increased Slowing Potency of Debuffs on You", + "type": "implicit" + }, + { + "id": "implicit.stat_1541903247", + "text": "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", + "type": "implicit" + }, + { + "id": "implicit.stat_3166002380", + "text": "Adds Ritual Altars to a Map \n# use remaining", + "type": "implicit" + }, + { + "id": "implicit.stat_1207554355", + "text": "#% increased Arrow Speed", + "type": "implicit" + }, + { + "id": "implicit.stat_2321178454", + "text": "#% chance to Pierce an Enemy", + "type": "implicit" + }, + { + "id": "implicit.stat_2994271459", + "text": "Used when you take Cold damage from a Hit", + "type": "implicit" + }, + { + "id": "implicit.stat_1416292992", + "text": "Has # Charm Slot", + "type": "implicit" + }, + { + "id": "implicit.stat_1803308202", + "text": "#% increased Bolt Speed", + "type": "implicit" + }, + { + "id": "implicit.stat_1967051901", + "text": "Loads an additional bolt", + "type": "implicit" + }, + { + "id": "implicit.stat_3544800472", + "text": "#% increased Elemental Ailment Threshold", + "type": "implicit" + }, + { + "id": "implicit.stat_3854901951", + "text": "Used when you take Fire damage from a Hit", + "type": "implicit" + }, + { + "id": "implicit.stat_2016937536", + "text": "Used when you take Lightning damage from a Hit", + "type": "implicit" + }, + { + "id": "implicit.stat_1810482573", + "text": "Used when you become Stunned", + "type": "implicit" + }, + { + "id": "implicit.stat_3675300253", + "text": "Strikes deal Splash Damage", + "type": "implicit" + }, + { + "id": "implicit.stat_1028592286", + "text": "#% chance to Chain an additional time", + "type": "implicit" + }, + { + "id": "implicit.stat_836936635", + "text": "Regenerate #% of maximum Life per second", + "type": "implicit" + }, + { + "id": "implicit.stat_1691862754", + "text": "Used when you become Frozen", + "type": "implicit" + }, + { + "id": "implicit.stat_791928121", + "text": "Causes #% increased Stun Buildup", + "type": "implicit" + }, + { + "id": "implicit.stat_2933846633", + "text": "Dazes on Hit", + "type": "implicit" + }, + { + "id": "implicit.stat_1412682799", + "text": "Used when you become Poisoned", + "type": "implicit" + }, + { + "id": "implicit.stat_1978899297", + "text": "#% to all Maximum Elemental Resistances", + "type": "implicit" + }, + { + "id": "implicit.stat_3676540188", + "text": "Used when you start Bleeding", + "type": "implicit" + }, + { + "id": "implicit.stat_624954515", + "text": "#% increased Accuracy Rating", + "type": "implicit" + }, + { + "id": "implicit.stat_4010341289", + "text": "Used when you kill a Rare or Unique enemy", + "type": "implicit" + }, + { + "id": "implicit.stat_2778646494", + "text": "Used when you are affected by a Slow", + "type": "implicit" + }, + { + "id": "implicit.stat_585126960", + "text": "Used when you become Ignited", + "type": "implicit" + }, + { + "id": "implicit.stat_3699444296", + "text": "Used when you become Shocked", + "type": "implicit" + }, + { + "id": "implicit.stat_3954735777", + "text": "#% chance to Poison on Hit with Attacks", + "type": "implicit" + }, + { + "id": "implicit.stat_2797971005", + "text": "Gain # Life per Enemy Hit with Attacks", + "type": "implicit" + }, + { + "id": "implicit.stat_3398402065", + "text": "#% increased Projectile Range", + "type": "implicit" + }, + { + "id": "implicit.stat_2055966527", + "text": "Attacks have #% chance to cause Bleeding", + "type": "implicit" + }, + { + "id": "implicit.stat_2694482655", + "text": "#% to Critical Damage Bonus", + "type": "implicit" + }, + { + "id": "implicit.stat_239367161", + "text": "#% increased Stun Buildup", + "type": "implicit" + }, + { + "id": "implicit.stat_3310778564", + "text": "Used when you take Chaos damage from a Hit", + "type": "implicit" + }, + { + "id": "implicit.stat_1915989164", + "text": "Area contains #% increased number of Monster Markers", + "type": "implicit" + }, + { + "id": "implicit.stat_4219583418", + "text": "#% increased quantity of Artifacts dropped by Monsters", + "type": "implicit" + }, + { + "id": "implicit.stat_4219583418", + "text": "#% increased quantity of Artifacts dropped by Monsters in your Maps", + "type": "implicit" + }, + { + "id": "implicit.stat_1539368271", + "text": "#% increased Expedition Explosive Placement Range", + "type": "implicit" + }, + { + "id": "implicit.stat_1871805225", + "text": "Remnants have #% chance to have an additional Suffix Modifier", + "type": "implicit" + }, + { + "id": "implicit.stat_1871805225", + "text": "Remnants in your Maps have #% chance to have an additional Suffix Modifier", + "type": "implicit" + }, + { + "id": "implicit.stat_2991413918", + "text": "Area contains #% increased number of Remnants", + "type": "implicit" + }, + { + "id": "implicit.stat_718638445", + "text": "# Suffix Modifier allowed", + "type": "implicit" + }, + { + "id": "implicit.stat_1640965354", + "text": "Area contains #% increased number of Runic Monster Markers", + "type": "implicit" + }, + { + "id": "implicit.stat_1640965354", + "text": "#% increased number of Runic Monster Markers", + "type": "implicit" + }, + { + "id": "implicit.stat_3289828378", + "text": "#% increased Expedition Explosive Radius", + "type": "implicit" + }, + { + "id": "implicit.stat_3051490307", + "text": "#% increased number of Explosives", + "type": "implicit" + }, + { + "id": "implicit.stat_3051490307", + "text": "#% increased number of Expedition Explosives", + "type": "implicit" + }, + { + "id": "implicit.stat_4160330571", + "text": "Area contains # additional Chest Marker", + "type": "implicit" + }, + { + "id": "implicit.stat_4160330571", + "text": "Expedition encounters in your Maps contain # additional Chest Marker", + "type": "implicit" + }, + { + "id": "implicit.stat_2369421690", + "text": "Adds Abysses to a Map \n# use remaining", + "type": "implicit" + }, + { + "id": "implicit.stat_2646093132", + "text": "Inflict Abyssal Wasting on Hit", + "type": "implicit" + }, + { + "id": "implicit.stat_535217483", + "text": "#% increased Projectile Speed with this Weapon", + "type": "implicit" + }, + { + "id": "implicit.stat_3182714256", + "text": "# Prefix Modifier allowed", + "type": "implicit" + }, + { + "id": "implicit.stat_3239978999", + "text": "Excavated Chests have a #% chance to contain twice as many Items", + "type": "implicit" + }, + { + "id": "implicit.stat_2763429652", + "text": "#% chance to Maim on Hit", + "type": "implicit" + }, + { + "id": "implicit.stat_1181501418", + "text": "# to Maximum Rage", + "type": "implicit" + }, + { + "id": "implicit.stat_3362812763", + "text": "#% of Armour also applies to Elemental Damage", + "type": "implicit" + }, + { + "id": "implicit.stat_2968503605", + "text": "#% increased Flammability Magnitude", + "type": "implicit" + }, + { + "id": "implicit.stat_1503146834", + "text": "Crushes Enemies on Hit", + "type": "implicit" + }, + { + "id": "implicit.stat_2527686725", + "text": "#% increased Magnitude of Shock you inflict", + "type": "implicit" + }, + { + "id": "implicit.stat_458438597", + "text": "#% of Damage is taken from Mana before Life", + "type": "implicit" + }, + { + "id": "implicit.stat_2590797182", + "text": "#% increased Movement Speed Penalty from using Skills while moving", + "type": "implicit" + }, + { + "id": "implicit.stat_1589917703", + "text": "Minions deal #% increased Damage", + "type": "implicit" + }, + { + "id": "implicit.stat_1745952865", + "text": "#% reduced Elemental Ailment Duration on you", + "type": "implicit" + }, + { + "id": "implicit.stat_4126210832", + "text": "Always Hits", + "type": "implicit" + }, + { + "id": "implicit.stat_2251279027", + "text": "# to Level of all Corrupted Skill Gems", + "type": "implicit" + }, + { + "id": "implicit.stat_1444556985", + "text": "#% of Damage taken Recouped as Life", + "type": "implicit" + }, + { + "id": "implicit.stat_3828375170", + "text": "Bleeding you inflict deals Damage #% faster", + "type": "implicit" + }, + { + "id": "implicit.stat_1434716233", + "text": "Warcries Empower an additional Attack", + "type": "implicit" + }, + { + "id": "implicit.stat_3855016469", + "text": "Hits against you have #% reduced Critical Damage Bonus", + "type": "implicit" + }, + { + "id": "implicit.stat_3552135623", + "text": "Prevent #% of Damage from Deflected Hits", + "type": "implicit" + }, + { + "id": "implicit.stat_3035440454", + "text": "Adds Vaal Beacons to a Map \n# use remaining", + "type": "implicit" + }, + { + "id": "implicit.stat_4277795662", + "text": "#% to Cold and Lightning Resistances", + "type": "implicit" + }, + { + "id": "implicit.stat_4077843608", + "text": "Has 1 Socket", + "type": "implicit" + }, + { + "id": "implicit.stat_3885405204", + "text": "Bow Attacks fire # additional Arrows", + "type": "implicit" + }, + { + "id": "implicit.stat_1725749947", + "text": "Grants # Rage on Hit", + "type": "implicit" + }, + { + "id": "implicit.stat_1574531783", + "text": "Culling Strike (Local)", + "type": "implicit" + }, + { + "id": "implicit.stat_669069897", + "text": "Leeches #% of Physical Damage as Mana", + "type": "implicit" + }, + { + "id": "implicit.stat_3441501978", + "text": "#% to Fire and Lightning Resistances", + "type": "implicit" + }, + { + "id": "implicit.stat_1050883682", + "text": "Has no Accuracy Penalty from Range", + "type": "implicit" + }, + { + "id": "implicit.stat_1443060084", + "text": "#% reduced Enemy Stun Threshold", + "type": "implicit" + }, + { + "id": "implicit.stat_1559935218", + "text": "Causes Daze buildup equal to #% of Damage dealt", + "type": "implicit" + }, + { + "id": "implicit.stat_1879206848", + "text": "#% increased effect of Fully Broken Armour", + "type": "implicit" + }, + { + "id": "implicit.stat_1840985759", + "text": "#% increased Area of Effect for Attacks", + "type": "implicit" + }, + { + "id": "implicit.stat_1459321413", + "text": "#% increased Bleeding Duration", + "type": "implicit" + }, + { + "id": "implicit.stat_2039822488", + "text": "#% to Maximum Quality", + "type": "implicit" + }, + { + "id": "implicit.stat_2915988346", + "text": "#% to Fire and Cold Resistances", + "type": "implicit" + }, + { + "id": "implicit.stat_2339757871", + "text": "#% increased Energy Shield Recharge Rate", + "type": "implicit" + }, + { + "id": "implicit.stat_3166958180", + "text": "#% increased Magnitude of Bleeding you inflict", + "type": "implicit" + }, + { + "id": "implicit.stat_3663551379", + "text": "Cannot load or fire Ammunition", + "type": "implicit" + }, + { + "id": "implicit.stat_4270348114", + "text": "Breaks # Armour on Critical Hit", + "type": "implicit" + }, + { + "id": "implicit.stat_3695891184", + "text": "Gain # Life per enemy killed", + "type": "implicit" + }, + { + "id": "implicit.stat_1137147997", + "text": "Unblockable", + "type": "implicit" + }, + { + "id": "implicit.stat_3544050945", + "text": "#% of Spell Mana Cost Converted to Life Cost", + "type": "implicit" + }, + { + "id": "implicit.stat_1961849903", + "text": "Cannot use Projectile Attacks", + "type": "implicit" + }, + { + "id": "implicit.stat_1368271171", + "text": "Gain # Mana per enemy killed", + "type": "implicit" + }, + { + "id": "implicit.stat_1451444093", + "text": "Bifurcates Critical Hits", + "type": "implicit" + }, + { + "id": "implicit.stat_1519615863", + "text": "#% chance to cause Bleeding on Hit", + "type": "implicit" + }, + { + "id": "implicit.stat_3691641145", + "text": "#% increased Damage taken", + "type": "implicit" + } + ] + }, + { + "id": "fractured", + "label": "Fractured", + "entries": [ + { + "id": "fractured.stat_2891184298", + "text": "#% increased Cast Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_1754445556", + "text": "Adds # to # Lightning damage to Attacks", + "type": "fractured" + }, + { + "id": "fractured.stat_3917489142", + "text": "#% increased Rarity of Items found", + "type": "fractured" + }, + { + "id": "fractured.stat_518292764", + "text": "#% to Critical Hit Chance", + "type": "fractured" + }, + { + "id": "fractured.stat_3981240776", + "text": "# to Spirit", + "type": "fractured" + }, + { + "id": "fractured.stat_1050105434", + "text": "# to maximum Mana", + "type": "fractured" + }, + { + "id": "fractured.stat_1202301673", + "text": "# to Level of all Projectile Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_1509134228", + "text": "#% increased Physical Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_210067635", + "text": "#% increased Attack Speed (Local)", + "type": "fractured" + }, + { + "id": "fractured.stat_4052037485", + "text": "# to maximum Energy Shield (Local)", + "type": "fractured" + }, + { + "id": "fractured.stat_3299347043", + "text": "# to maximum Life", + "type": "fractured" + }, + { + "id": "fractured.stat_124131830", + "text": "# to Level of all Spell Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_1671376347", + "text": "#% to Lightning Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_4015621042", + "text": "#% increased Energy Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_3556824919", + "text": "#% increased Critical Damage Bonus", + "type": "fractured" + }, + { + "id": "fractured.stat_3372524247", + "text": "#% to Fire Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_4220027924", + "text": "#% to Cold Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_3032590688", + "text": "Adds # to # Physical Damage to Attacks", + "type": "fractured" + }, + { + "id": "fractured.stat_1940865751", + "text": "Adds # to # Physical Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2974417149", + "text": "#% increased Spell Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_3336890334", + "text": "Adds # to # Lightning Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2250533757", + "text": "#% increased Movement Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_2923486259", + "text": "#% to Chaos Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_587431675", + "text": "#% increased Critical Hit Chance", + "type": "fractured" + }, + { + "id": "fractured.stat_9187492", + "text": "# to Level of all Melee Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_1573130764", + "text": "Adds # to # Fire damage to Attacks", + "type": "fractured" + }, + { + "id": "fractured.stat_328541901", + "text": "# to Intelligence", + "type": "fractured" + }, + { + "id": "fractured.stat_2482852589", + "text": "#% increased maximum Energy Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_3261801346", + "text": "# to Dexterity", + "type": "fractured" + }, + { + "id": "fractured.stat_3891355829|2", + "text": "Upgrades Radius to Large", + "type": "fractured" + }, + { + "id": "fractured.stat_691932474", + "text": "# to Accuracy Rating (Local)", + "type": "fractured" + }, + { + "id": "fractured.stat_53045048", + "text": "# to Evasion Rating (Local)", + "type": "fractured" + }, + { + "id": "fractured.stat_4067062424", + "text": "Adds # to # Cold damage to Attacks", + "type": "fractured" + }, + { + "id": "fractured.stat_737908626", + "text": "#% increased Critical Hit Chance for Spells", + "type": "fractured" + }, + { + "id": "fractured.stat_3885405204", + "text": "Bow Attacks fire # additional Arrows", + "type": "fractured" + }, + { + "id": "fractured.stat_2901986750", + "text": "#% to all Elemental Resistances", + "type": "fractured" + }, + { + "id": "fractured.stat_2162097452", + "text": "# to Level of all Minion Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_1999113824", + "text": "#% increased Evasion and Energy Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_4080418644", + "text": "# to Strength", + "type": "fractured" + }, + { + "id": "fractured.stat_2081918629", + "text": "#% increased effect of Socketed Augment Items", + "type": "fractured" + }, + { + "id": "fractured.stat_387439868", + "text": "#% increased Elemental Damage with Attacks", + "type": "fractured" + }, + { + "id": "fractured.stat_789117908", + "text": "#% increased Mana Regeneration Rate", + "type": "fractured" + }, + { + "id": "fractured.stat_2231156303", + "text": "#% increased Lightning Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_681332047", + "text": "#% increased Attack Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_3325883026", + "text": "# Life Regeneration per second", + "type": "fractured" + }, + { + "id": "fractured.stat_3714003708", + "text": "#% increased Critical Damage Bonus for Attack Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_803737631", + "text": "# to Accuracy Rating", + "type": "fractured" + }, + { + "id": "fractured.stat_2466785537", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + "type": "fractured" + }, + { + "id": "fractured.stat_3141070085", + "text": "#% increased Elemental Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_1545858329", + "text": "# to Level of all Lightning Spell Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_709508406", + "text": "Adds # to # Fire Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_1368271171", + "text": "Gain # Mana per enemy killed", + "type": "fractured" + }, + { + "id": "fractured.stat_3489782002", + "text": "# to maximum Energy Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_274716455", + "text": "#% increased Critical Spell Damage Bonus", + "type": "fractured" + }, + { + "id": "fractured.stat_2194114101", + "text": "#% increased Critical Hit Chance for Attacks", + "type": "fractured" + }, + { + "id": "fractured.stat_3695891184", + "text": "Gain # Life per enemy killed", + "type": "fractured" + }, + { + "id": "fractured.stat_2694482655", + "text": "#% to Critical Damage Bonus", + "type": "fractured" + }, + { + "id": "fractured.stat_1104825894", + "text": "#% faster Curse Activation", + "type": "fractured" + }, + { + "id": "fractured.stat_1037193709", + "text": "Adds # to # Cold Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_3962278098", + "text": "#% increased Fire Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_1379411836", + "text": "# to all Attributes", + "type": "fractured" + }, + { + "id": "fractured.stat_2106365538", + "text": "#% increased Evasion Rating", + "type": "fractured" + }, + { + "id": "fractured.stat_3639275092", + "text": "#% increased Attribute Requirements", + "type": "fractured" + }, + { + "id": "fractured.stat_124859000", + "text": "#% increased Evasion Rating (Local)", + "type": "fractured" + }, + { + "id": "fractured.stat_2359002191", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + "type": "fractured" + }, + { + "id": "fractured.stat_3291658075", + "text": "#% increased Cold Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_3278136794", + "text": "Gain #% of Damage as Extra Lightning Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2505884597", + "text": "Gain #% of Damage as Extra Cold Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2866361420", + "text": "#% increased Armour", + "type": "fractured" + }, + { + "id": "fractured.stat_3033371881", + "text": "Gain Deflection Rating equal to #% of Evasion Rating", + "type": "fractured" + }, + { + "id": "fractured.stat_3035140377", + "text": "# to Level of all Attack Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_3984865854", + "text": "#% increased Spirit", + "type": "fractured" + }, + { + "id": "fractured.stat_3759663284", + "text": "#% increased Projectile Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_2144192055", + "text": "# to Evasion Rating", + "type": "fractured" + }, + { + "id": "fractured.stat_3015669065", + "text": "Gain #% of Damage as Extra Fire Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_915769802", + "text": "# to Stun Threshold", + "type": "fractured" + }, + { + "id": "fractured.stat_736967255", + "text": "#% increased Chaos Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_669069897", + "text": "Leeches #% of Physical Damage as Mana", + "type": "fractured" + }, + { + "id": "fractured.stat_2254480358", + "text": "# to Level of all Cold Spell Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_2077117738", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + "type": "fractured" + }, + { + "id": "fractured.stat_55876295", + "text": "Leeches #% of Physical Damage as Life", + "type": "fractured" + }, + { + "id": "fractured.stat_4234573345", + "text": "#% increased Effect of Notable Passive Skills in Radius", + "type": "fractured" + }, + { + "id": "fractured.stat_1241625305", + "text": "#% increased Damage with Bow Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_1062208444", + "text": "#% increased Armour (Local)", + "type": "fractured" + }, + { + "id": "fractured.stat_1263695895", + "text": "#% increased Light Radius", + "type": "fractured" + }, + { + "id": "fractured.stat_3484657501", + "text": "# to Armour (Local)", + "type": "fractured" + }, + { + "id": "fractured.stat_1200678966", + "text": "#% increased bonuses gained from Equipped Quiver", + "type": "fractured" + }, + { + "id": "fractured.stat_2557965901", + "text": "Leech #% of Physical Attack Damage as Life", + "type": "fractured" + }, + { + "id": "fractured.stat_2748665614", + "text": "#% increased maximum Mana", + "type": "fractured" + }, + { + "id": "fractured.stat_2456523742", + "text": "#% increased Critical Damage Bonus with Spears", + "type": "fractured" + }, + { + "id": "fractured.stat_3865605585", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + "type": "fractured" + }, + { + "id": "fractured.stat_707457662", + "text": "Leech #% of Physical Attack Damage as Mana", + "type": "fractured" + }, + { + "id": "fractured.stat_1352561456", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_1060572482", + "text": "#% increased Effect of Small Passive Skills in Radius", + "type": "fractured" + }, + { + "id": "fractured.stat_153777645", + "text": "#% increased Area of Effect of Curses", + "type": "fractured" + }, + { + "id": "fractured.stat_4226189338", + "text": "# to Level of all Chaos Spell Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_3321629045", + "text": "#% increased Armour and Energy Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_1589917703", + "text": "Minions deal #% increased Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_1798257884", + "text": "Allies in your Presence deal #% increased Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2339757871", + "text": "#% increased Energy Shield Recharge Rate", + "type": "fractured" + }, + { + "id": "fractured.stat_3091578504", + "text": "Minions have #% increased Attack and Cast Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_3362812763", + "text": "#% of Armour also applies to Elemental Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_1782086450", + "text": "#% faster start of Energy Shield Recharge", + "type": "fractured" + }, + { + "id": "fractured.stat_1881230714", + "text": "#% chance to gain Onslaught on Killing Hits with this Weapon", + "type": "fractured" + }, + { + "id": "fractured.stat_591105508", + "text": "# to Level of all Fire Spell Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_821021828", + "text": "Grants # Life per Enemy Hit", + "type": "fractured" + }, + { + "id": "fractured.stat_101878827", + "text": "#% increased Presence Area of Effect", + "type": "fractured" + }, + { + "id": "fractured.stat_983749596", + "text": "#% increased maximum Life", + "type": "fractured" + }, + { + "id": "fractured.stat_4180952808", + "text": "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + "type": "fractured" + }, + { + "id": "fractured.stat_1444556985", + "text": "#% of Damage taken Recouped as Life", + "type": "fractured" + }, + { + "id": "fractured.stat_280731498", + "text": "#% increased Area of Effect", + "type": "fractured" + }, + { + "id": "fractured.stat_1854213750", + "text": "Minions have #% increased Critical Damage Bonus", + "type": "fractured" + }, + { + "id": "fractured.stat_440490623", + "text": "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + "type": "fractured" + }, + { + "id": "fractured.stat_1967051901", + "text": "Loads an additional bolt", + "type": "fractured" + }, + { + "id": "fractured.stat_3665922113", + "text": "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_1600707273", + "text": "# to Level of all Physical Spell Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_1604736568", + "text": "Recover #% of maximum Mana on Kill (Jewel)", + "type": "fractured" + }, + { + "id": "fractured.stat_2843214518", + "text": "#% increased Attack Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_3669820740", + "text": "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + "type": "fractured" + }, + { + "id": "fractured.stat_2451402625", + "text": "#% increased Armour and Evasion", + "type": "fractured" + }, + { + "id": "fractured.stat_1839076647", + "text": "#% increased Projectile Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_3891355829|1", + "text": "Upgrades Radius to Medium", + "type": "fractured" + }, + { + "id": "fractured.stat_2527686725", + "text": "#% increased Magnitude of Shock you inflict", + "type": "fractured" + }, + { + "id": "fractured.stat_472520716", + "text": "#% of Damage taken Recouped as Mana", + "type": "fractured" + }, + { + "id": "fractured.stat_791928121", + "text": "Causes #% increased Stun Buildup", + "type": "fractured" + }, + { + "id": "fractured.stat_3394832998", + "text": "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + "type": "fractured" + }, + { + "id": "fractured.stat_3222402650", + "text": "Small Passive Skills in Radius also grant #% increased Elemental Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_748522257", + "text": "#% increased Stun Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_293638271", + "text": "#% increased chance to Shock", + "type": "fractured" + }, + { + "id": "fractured.stat_1653682082", + "text": "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_1574590649", + "text": "Allies in your Presence deal # to # added Attack Physical Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_138421180", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + "type": "fractured" + }, + { + "id": "fractured.stat_491450213", + "text": "Minions have #% increased Critical Hit Chance", + "type": "fractured" + }, + { + "id": "fractured.stat_2849546516", + "text": "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + "type": "fractured" + }, + { + "id": "fractured.stat_1303248024", + "text": "#% increased Magnitude of Ailments you inflict", + "type": "fractured" + }, + { + "id": "fractured.stat_1423639565", + "text": "Minions have #% to all Elemental Resistances", + "type": "fractured" + }, + { + "id": "fractured.stat_2463230181", + "text": "#% Surpassing chance to fire an additional Arrow", + "type": "fractured" + }, + { + "id": "fractured.stat_2704905000", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + "type": "fractured" + }, + { + "id": "fractured.stat_3579898587", + "text": "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + "type": "fractured" + }, + { + "id": "fractured.stat_844449513", + "text": "Notable Passive Skills in Radius also grant #% increased Movement Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_4092130601", + "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + "type": "fractured" + }, + { + "id": "fractured.stat_1137305356", + "text": "Small Passive Skills in Radius also grant #% increased Spell Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2768835289", + "text": "#% increased Spell Physical Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2696027455", + "text": "#% increased Damage with Spears", + "type": "fractured" + }, + { + "id": "fractured.stat_4236566306", + "text": "Meta Skills gain #% increased Energy", + "type": "fractured" + }, + { + "id": "fractured.stat_1998951374", + "text": "Allies in your Presence have #% increased Attack Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_3417711605", + "text": "Damage Penetrates #% Cold Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_1321104829", + "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + "type": "fractured" + }, + { + "id": "fractured.stat_4188894176", + "text": "#% increased Damage with Bows", + "type": "fractured" + }, + { + "id": "fractured.stat_455816363", + "text": "Small Passive Skills in Radius also grant #% increased Projectile Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_3759735052", + "text": "#% increased Attack Speed with Bows", + "type": "fractured" + }, + { + "id": "fractured.stat_770672621", + "text": "Minions have #% increased maximum Life", + "type": "fractured" + }, + { + "id": "fractured.stat_1022759479", + "text": "Notable Passive Skills in Radius also grant #% increased Cast Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_4019237939", + "text": "Gain #% of Damage as Extra Physical Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_3859848445", + "text": "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + "type": "fractured" + }, + { + "id": "fractured.stat_2954360902", + "text": "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2968503605", + "text": "#% increased Flammability Magnitude", + "type": "fractured" + }, + { + "id": "fractured.stat_3067892458", + "text": "Triggered Spells deal #% increased Spell Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2023107756", + "text": "Recover #% of maximum Life on Kill", + "type": "fractured" + }, + { + "id": "fractured.stat_2881298780", + "text": "# to # Physical Thorns damage", + "type": "fractured" + }, + { + "id": "fractured.stat_99927264", + "text": "#% reduced Shock duration on you", + "type": "fractured" + }, + { + "id": "fractured.stat_3850614073", + "text": "Allies in your Presence have #% to all Elemental Resistances", + "type": "fractured" + }, + { + "id": "fractured.stat_3391917254", + "text": "Notable Passive Skills in Radius also grant #% increased Area of Effect", + "type": "fractured" + }, + { + "id": "fractured.stat_289128254", + "text": "Allies in your Presence have #% increased Cast Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_2160282525", + "text": "#% reduced Freeze Duration on you", + "type": "fractured" + }, + { + "id": "fractured.stat_315791320", + "text": "Aura Skills have #% increased Magnitudes", + "type": "fractured" + }, + { + "id": "fractured.stat_2442527254", + "text": "Small Passive Skills in Radius also grant #% increased Cold Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_986397080", + "text": "#% reduced Ignite Duration on you", + "type": "fractured" + }, + { + "id": "fractured.stat_2321178454", + "text": "#% chance to Pierce an Enemy", + "type": "fractured" + }, + { + "id": "fractured.stat_3523867985", + "text": "#% increased Armour, Evasion and Energy Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_4010677958", + "text": "Allies in your Presence Regenerate # Life per second", + "type": "fractured" + }, + { + "id": "fractured.stat_1426522529", + "text": "Small Passive Skills in Radius also grant #% increased Attack Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_818778753", + "text": "Damage Penetrates #% Lightning Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_2768899959", + "text": "Small Passive Skills in Radius also grant #% increased Lightning Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_1165163804", + "text": "#% increased Attack Speed with Spears", + "type": "fractured" + }, + { + "id": "fractured.stat_624954515", + "text": "#% increased Accuracy Rating", + "type": "fractured" + }, + { + "id": "fractured.stat_2347036682", + "text": "Allies in your Presence deal # to # added Attack Cold Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_3174700878", + "text": "#% increased Energy Shield from Equipped Focus", + "type": "fractured" + }, + { + "id": "fractured.stat_473429811", + "text": "#% increased Freeze Buildup", + "type": "fractured" + }, + { + "id": "fractured.stat_2854751904", + "text": "Allies in your Presence deal # to # added Attack Lightning Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_1692879867", + "text": "#% increased Duration of Bleeding on You", + "type": "fractured" + }, + { + "id": "fractured.stat_849987426", + "text": "Allies in your Presence deal # to # added Attack Fire Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2481353198", + "text": "#% increased Block chance (Local)", + "type": "fractured" + }, + { + "id": "fractured.stat_1166140625", + "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + "type": "fractured" + }, + { + "id": "fractured.stat_234296660", + "text": "Companions deal #% increased Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_1309799717", + "text": "Small Passive Skills in Radius also grant #% increased Chaos Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_3377888098", + "text": "#% increased Skill Effect Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_525523040", + "text": "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + "type": "fractured" + }, + { + "id": "fractured.stat_2822644689", + "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_1896066427", + "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_2797971005", + "text": "Gain # Life per Enemy Hit with Attacks", + "type": "fractured" + }, + { + "id": "fractured.stat_3106718406", + "text": "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_3668351662", + "text": "#% increased Shock Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_394473632", + "text": "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + "type": "fractured" + }, + { + "id": "fractured.stat_4032352472", + "text": "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + "type": "fractured" + }, + { + "id": "fractured.stat_1852872083", + "text": "#% increased Damage with Hits against Rare and Unique Enemies", + "type": "fractured" + }, + { + "id": "fractured.stat_1874553720", + "text": "#% reduced Chill Duration on you", + "type": "fractured" + }, + { + "id": "fractured.stat_3057012405", + "text": "Allies in your Presence have #% increased Critical Damage Bonus", + "type": "fractured" + }, + { + "id": "fractured.stat_2809428780", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Spears", + "type": "fractured" + }, + { + "id": "fractured.stat_1177404658", + "text": "#% increased Global Armour, Evasion and Energy Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_2726713579", + "text": "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + "type": "fractured" + }, + { + "id": "fractured.stat_1039268420", + "text": "Small Passive Skills in Radius also grant #% increased chance to Shock", + "type": "fractured" + }, + { + "id": "fractured.stat_3824372849", + "text": "#% increased Curse Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_1250712710", + "text": "Allies in your Presence have #% increased Critical Hit Chance", + "type": "fractured" + }, + { + "id": "fractured.stat_3301100256", + "text": "#% increased Poison Duration on you", + "type": "fractured" + }, + { + "id": "fractured.stat_427684353", + "text": "#% increased Damage with Crossbows", + "type": "fractured" + }, + { + "id": "fractured.stat_533892981", + "text": "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + "type": "fractured" + }, + { + "id": "fractured.stat_1773308808", + "text": "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_945774314", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Bows", + "type": "fractured" + }, + { + "id": "fractured.stat_593241812", + "text": "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + "type": "fractured" + }, + { + "id": "fractured.stat_1829102168", + "text": "#% increased Duration of Damaging Ailments on Enemies", + "type": "fractured" + }, + { + "id": "fractured.stat_335885735", + "text": "Bears the Mark of the Abyssal Lord", + "type": "fractured" + }, + { + "id": "fractured.stat_517664839", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + "type": "fractured" + }, + { + "id": "fractured.stat_4045894391", + "text": "#% increased Damage with Quarterstaves", + "type": "fractured" + }, + { + "id": "fractured.stat_416040624", + "text": "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_3771516363", + "text": "#% additional Physical Damage Reduction", + "type": "fractured" + }, + { + "id": "fractured.stat_473917671", + "text": "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_3628935286", + "text": "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + "type": "fractured" + }, + { + "id": "fractured.stat_3225608889", + "text": "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + "type": "fractured" + }, + { + "id": "fractured.stat_21071013", + "text": "Herald Skills deal #% increased Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_1135928777", + "text": "#% increased Attack Speed with Crossbows", + "type": "fractured" + }, + { + "id": "fractured.stat_3791899485", + "text": "#% increased Ignite Magnitude", + "type": "fractured" + }, + { + "id": "fractured.stat_3787460122", + "text": "Offerings have #% increased Maximum Life", + "type": "fractured" + }, + { + "id": "fractured.stat_2440073079", + "text": "#% increased Damage while Shapeshifted", + "type": "fractured" + }, + { + "id": "fractured.stat_3169585282", + "text": "Allies in your Presence have # to Accuracy Rating", + "type": "fractured" + }, + { + "id": "fractured.stat_821241191", + "text": "#% increased Life Recovery from Flasks", + "type": "fractured" + }, + { + "id": "fractured.stat_868556494", + "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_1552666713", + "text": "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|50562", + "text": "Allocates Barbaric Strength", + "type": "fractured" + }, + { + "id": "fractured.stat_715957346", + "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + "type": "fractured" + }, + { + "id": "fractured.stat_3544800472", + "text": "#% increased Elemental Ailment Threshold", + "type": "fractured" + }, + { + "id": "fractured.stat_3398301358", + "text": "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_3780644166", + "text": "#% increased Freeze Threshold", + "type": "fractured" + }, + { + "id": "fractured.stat_3256879910", + "text": "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + "type": "fractured" + }, + { + "id": "fractured.stat_795138349", + "text": "#% chance to Poison on Hit", + "type": "fractured" + }, + { + "id": "fractured.stat_2107703111", + "text": "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + "type": "fractured" + }, + { + "id": "fractured.stat_3855016469", + "text": "Hits against you have #% reduced Critical Damage Bonus", + "type": "fractured" + }, + { + "id": "fractured.stat_1994296038", + "text": "Small Passive Skills in Radius also grant #% increased Evasion Rating", + "type": "fractured" + }, + { + "id": "fractured.stat_3419203492", + "text": "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + "type": "fractured" + }, + { + "id": "fractured.stat_3741323227", + "text": "#% increased Flask Effect Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_980177976", + "text": "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + "type": "fractured" + }, + { + "id": "fractured.stat_3409275777", + "text": "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + "type": "fractured" + }, + { + "id": "fractured.stat_3283482523", + "text": "#% increased Attack Speed with Quarterstaves", + "type": "fractured" + }, + { + "id": "fractured.stat_2374711847", + "text": "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_693237939", + "text": "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_3585532255", + "text": "#% increased Charm Charges gained", + "type": "fractured" + }, + { + "id": "fractured.stat_253641217", + "text": "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + "type": "fractured" + }, + { + "id": "fractured.stat_821948283", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + "type": "fractured" + }, + { + "id": "fractured.stat_3641543553", + "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + "type": "fractured" + }, + { + "id": "fractured.stat_1836676211", + "text": "#% increased Flask Charges gained", + "type": "fractured" + }, + { + "id": "fractured.stat_2272980012", + "text": "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + "type": "fractured" + }, + { + "id": "fractured.stat_1266413530", + "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + "type": "fractured" + }, + { + "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" + }, + { + "id": "fractured.stat_3485067555", + "text": "#% increased Chill Duration on Enemies", + "type": "fractured" + }, + { + "id": "fractured.stat_3192728503", + "text": "#% increased Crossbow Reload Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_2840989393", + "text": "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + "type": "fractured" + }, + { + "id": "fractured.stat_809229260", + "text": "# to Armour", + "type": "fractured" + }, + { + "id": "fractured.stat_1772247089", + "text": "#% increased chance to inflict Ailments", + "type": "fractured" + }, + { + "id": "fractured.stat_4095671657", + "text": "#% to Maximum Fire Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_1494950893", + "text": "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2839066308", + "text": "#% increased amount of Mana Leeched", + "type": "fractured" + }, + { + "id": "fractured.stat_3774951878", + "text": "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + "type": "fractured" + }, + { + "id": "fractured.stat_1087108135", + "text": "Small Passive Skills in Radius also grant #% increased Curse Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_1718147982", + "text": "#% increased Minion Accuracy Rating", + "type": "fractured" + }, + { + "id": "fractured.stat_3473929743", + "text": "#% increased Pin Buildup", + "type": "fractured" + }, + { + "id": "fractured.stat_2487305362", + "text": "#% increased Magnitude of Poison you inflict", + "type": "fractured" + }, + { + "id": "fractured.stat_44972811", + "text": "#% increased Life Regeneration rate", + "type": "fractured" + }, + { + "id": "fractured.stat_1805182458", + "text": "Companions have #% increased maximum Life", + "type": "fractured" + }, + { + "id": "fractured.stat_1697447343", + "text": "#% increased Freeze Buildup with Quarterstaves", + "type": "fractured" + }, + { + "id": "fractured.stat_2594634307", + "text": "Mark Skills have #% increased Skill Effect Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|28975", + "text": "Allocates Pure Power", + "type": "fractured" + }, + { + "id": "fractured.stat_3513818125", + "text": "Small Passive Skills in Radius also grant #% increased Shock Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_458438597", + "text": "#% of Damage is taken from Mana before Life", + "type": "fractured" + }, + { + "id": "fractured.stat_169946467", + "text": "#% increased Accuracy Rating with Bows", + "type": "fractured" + }, + { + "id": "fractured.stat_462424929", + "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + "type": "fractured" + }, + { + "id": "fractured.stat_1087531620", + "text": "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + "type": "fractured" + }, + { + "id": "fractured.stat_830345042", + "text": "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + "type": "fractured" + }, + { + "id": "fractured.stat_1389754388", + "text": "#% increased Charm Effect Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_2222186378", + "text": "#% increased Mana Recovery from Flasks", + "type": "fractured" + }, + { + "id": "fractured.stat_656461285", + "text": "#% increased Intelligence", + "type": "fractured" + }, + { + "id": "fractured.stat_255840549", + "text": "Small Passive Skills in Radius also grant #% increased Hazard Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_3113764475", + "text": "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_3676141501", + "text": "#% to Maximum Cold Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_1714971114", + "text": "Mark Skills have #% increased Use Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_4215035940", + "text": "On Corruption, Item gains two Enchantments", + "type": "fractured" + }, + { + "id": "fractured.stat_1777421941", + "text": "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_412709880", + "text": "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + "type": "fractured" + }, + { + "id": "fractured.stat_3700202631", + "text": "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|7809", + "text": "Allocates Wild Storm", + "type": "fractured" + }, + { + "id": "fractured.stat_3752589831", + "text": "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + "type": "fractured" + }, + { + "id": "fractured.stat_1697951953", + "text": "#% increased Hazard Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|57388", + "text": "Allocates Overwhelming Strike", + "type": "fractured" + }, + { + "id": "fractured.stat_1238227257", + "text": "Debuffs on you expire #% faster", + "type": "fractured" + }, + { + "id": "fractured.stat_2202308025", + "text": "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_538241406", + "text": "Damaging Ailments deal damage #% faster", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|55193", + "text": "Allocates Subterfuge Mask", + "type": "fractured" + }, + { + "id": "fractured.stat_627767961", + "text": "#% increased Damage while you have an active Charm", + "type": "fractured" + }, + { + "id": "fractured.stat_318953428", + "text": "#% chance to Blind Enemies on Hit with Attacks", + "type": "fractured" + }, + { + "id": "fractured.stat_2638756573", + "text": "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + "type": "fractured" + }, + { + "id": "fractured.stat_266564538", + "text": "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + "type": "fractured" + }, + { + "id": "fractured.stat_111835965", + "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + "type": "fractured" + }, + { + "id": "fractured.stat_61644361", + "text": "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + "type": "fractured" + }, + { + "id": "fractured.stat_734614379", + "text": "#% increased Strength", + "type": "fractured" + }, + { + "id": "fractured.stat_221701169", + "text": "Notable Passive Skills in Radius also grant #% increased Poison Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_793875384", + "text": "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", + "type": "fractured" + }, + { + "id": "fractured.stat_147764878", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + "type": "fractured" + }, + { + "id": "fractured.stat_2011656677", + "text": "#% increased Poison Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_2320654813", + "text": "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + "type": "fractured" + }, + { + "id": "fractured.stat_1323216174", + "text": "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|27303", + "text": "Allocates Vulgar Methods", + "type": "fractured" + }, + { + "id": "fractured.stat_3856744003", + "text": "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_918325986", + "text": "#% increased Skill Speed while Shapeshifted", + "type": "fractured" + }, + { + "id": "fractured.stat_1846980580", + "text": "Notable Passive Skills in Radius also grant # to Maximum Rage", + "type": "fractured" + }, + { + "id": "fractured.stat_3028809864", + "text": "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + "type": "fractured" + }, + { + "id": "fractured.stat_3175163625", + "text": "#% increased Quantity of Gold Dropped by Slain Enemies", + "type": "fractured" + }, + { + "id": "fractured.stat_4162678661", + "text": "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_1062710370", + "text": "#% increased Duration of Ignite, Shock and Chill on Enemies", + "type": "fractured" + }, + { + "id": "fractured.stat_1004011302", + "text": "#% increased Cooldown Recovery Rate", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|39881", + "text": "Allocates Staggering Palm", + "type": "fractured" + }, + { + "id": "fractured.stat_378796798", + "text": "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + "type": "fractured" + }, + { + "id": "fractured.stat_3173882956", + "text": "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + "type": "fractured" + }, + { + "id": "fractured.stat_127081978", + "text": "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + "type": "fractured" + }, + { + "id": "fractured.stat_2118708619", + "text": "#% increased Damage if you have Consumed a Corpse Recently", + "type": "fractured" + }, + { + "id": "fractured.stat_1337740333", + "text": "Small Passive Skills in Radius also grant #% increased Melee Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_654207792", + "text": "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + "type": "fractured" + }, + { + "id": "fractured.stat_2610562860", + "text": "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|38535", + "text": "Allocates Stormcharged", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|22864", + "text": "Allocates Tainted Strike", + "type": "fractured" + }, + { + "id": "fractured.stat_1569159338", + "text": "#% increased Parry Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_1185341308", + "text": "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + "type": "fractured" + }, + { + "id": "fractured.stat_1944020877", + "text": "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + "type": "fractured" + }, + { + "id": "fractured.stat_3749502527", + "text": "#% chance to gain Volatility on Kill", + "type": "fractured" + }, + { + "id": "fractured.stat_1011760251", + "text": "#% to Maximum Lightning Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_4081947835", + "text": "Projectiles have #% chance to Chain an additional time from terrain", + "type": "fractured" + }, + { + "id": "fractured.stat_1800303440", + "text": "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + "type": "fractured" + }, + { + "id": "fractured.stat_4258720395", + "text": "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|58016", + "text": "Allocates All Natural", + "type": "fractured" + }, + { + "id": "fractured.stat_2353576063", + "text": "#% increased Curse Magnitudes", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|31172", + "text": "Allocates Falcon Technique", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|62230", + "text": "Allocates Patient Barrier", + "type": "fractured" + }, + { + "id": "fractured.stat_4101445926", + "text": "#% increased Mana Cost Efficiency", + "type": "fractured" + }, + { + "id": "fractured.stat_3596695232", + "text": "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + "type": "fractured" + }, + { + "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" + }, + { + "id": "fractured.stat_1978899297", + "text": "#% to all Maximum Elemental Resistances", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|26107", + "text": "Allocates Kite Runner", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|56265", + "text": "Allocates Throatseeker", + "type": "fractured" + }, + { + "id": "fractured.stat_2108821127", + "text": "Small Passive Skills in Radius also grant #% increased Totem Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|56776", + "text": "Allocates Cooked", + "type": "fractured" + }, + { + "id": "fractured.stat_2969557004", + "text": "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|1546", + "text": "Allocates Spiral into Depression", + "type": "fractured" + }, + { + "id": "fractured.stat_3837707023", + "text": "Minions have #% to Chaos Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|60034", + "text": "Allocates Falcon Dive", + "type": "fractured" + }, + { + "id": "fractured.stat_2523933828", + "text": "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_3666476747", + "text": "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + "type": "fractured" + }, + { + "id": "fractured.stat_3243034867", + "text": "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", + "type": "fractured" + }, + { + "id": "fractured.stat_51994685", + "text": "#% increased Flask Life Recovery rate", + "type": "fractured" + }, + { + "id": "fractured.stat_2580617872", + "text": "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + "type": "fractured" + }, + { + "id": "fractured.stat_1417267954", + "text": "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_3146310524", + "text": "Dazes on Hit", + "type": "fractured" + }, + { + "id": "fractured.stat_2518900926", + "text": "#% increased Damage with Plant Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|30132", + "text": "Allocates Wrapped Quiver", + "type": "fractured" + }, + { + "id": "fractured.stat_1405298142", + "text": "#% increased Stun Threshold if you haven't been Stunned Recently", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|5703", + "text": "Allocates Echoing Thunder", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|12337", + "text": "Allocates Flash Storm", + "type": "fractured" + }, + { + "id": "fractured.stat_2056107438", + "text": "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + "type": "fractured" + }, + { + "id": "fractured.stat_2256120736", + "text": "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + "type": "fractured" + }, + { + "id": "fractured.stat_1590846356", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_2770044702", + "text": "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|19044", + "text": "Allocates Arcane Intensity", + "type": "fractured" + }, + { + "id": "fractured.stat_1310194496", + "text": "#% increased Global Physical Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|36085", + "text": "Allocates Serrated Edges", + "type": "fractured" + }, + { + "id": "fractured.stat_179541474", + "text": "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|57204", + "text": "Allocates Critical Exploit", + "type": "fractured" + }, + { + "id": "fractured.stat_4139681126", + "text": "#% increased Dexterity", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|44566", + "text": "Allocates Lightning Rod", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|55149", + "text": "Allocates Pure Chaos", + "type": "fractured" + }, + { + "id": "fractured.stat_391602279", + "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + "type": "fractured" + }, + { + "id": "fractured.stat_484792219", + "text": "Small Passive Skills in Radius also grant #% increased Stun Threshold", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|116", + "text": "Allocates Insightfulness", + "type": "fractured" + }, + { + "id": "fractured.stat_2957407601", + "text": "Offering Skills have #% increased Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_3088348485", + "text": "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_1892122971", + "text": "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|5802", + "text": "Allocates Stand and Deliver", + "type": "fractured" + }, + { + "id": "fractured.stat_2709367754", + "text": "Gain # Rage on Melee Hit", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|46197", + "text": "Allocates Careful Assassin", + "type": "fractured" + }, + { + "id": "fractured.stat_1181501418", + "text": "# to Maximum Rage", + "type": "fractured" + }, + { + "id": "fractured.stat_1412217137", + "text": "#% increased Flask Mana Recovery rate", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|6229", + "text": "Allocates Push the Advantage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|13724", + "text": "Allocates Deadly Force", + "type": "fractured" + }, + { + "id": "fractured.stat_3003542304", + "text": "Projectiles have #% chance for an additional Projectile when Forking", + "type": "fractured" + }, + { + "id": "fractured.stat_1594812856", + "text": "#% increased Damage with Warcries", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|34473", + "text": "Allocates Spaghettification", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|18505", + "text": "Allocates Crushing Verdict", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|2394", + "text": "Allocates Blade Flurry", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|8827", + "text": "Allocates Fast Metabolism", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|5728", + "text": "Allocates Ancient Aegis", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|15083", + "text": "Allocates Power Conduction", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|43082", + "text": "Allocates Acceleration", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|44299", + "text": "Allocates Enhanced Barrier", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|46060", + "text": "Allocates Voracious", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|28044", + "text": "Allocates Coming Calamity", + "type": "fractured" + }, + { + "id": "fractured.stat_1852184471", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Maces", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|41580", + "text": "Allocates Maiming Strike", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|40990", + "text": "Allocates Exposed to the Storm", + "type": "fractured" + }, + { + "id": "fractured.stat_442393998", + "text": "Small Passive Skills in Radius also grant #% increased Totem Life", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|21380", + "text": "Allocates Preemptive Strike", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|25513", + "text": "Allocates Overwhelm", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|19955", + "text": "Allocates Endless Blizzard", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17340", + "text": "Allocates Adrenaline Rush", + "type": "fractured" + }, + { + "id": "fractured.stat_3065378291", + "text": "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|372", + "text": "Allocates Heatproof", + "type": "fractured" + }, + { + "id": "fractured.stat_3973629633", + "text": "#% increased Withered Magnitude", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|19715", + "text": "Allocates Cremation", + "type": "fractured" + }, + { + "id": "fractured.stat_2066964205", + "text": "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + "type": "fractured" + }, + { + "id": "fractured.stat_4258000627", + "text": "Small Passive Skills in Radius also grant Dazes on Hit", + "type": "fractured" + }, + { + "id": "fractured.stat_4147897060", + "text": "#% increased Block chance", + "type": "fractured" + }, + { + "id": "fractured.stat_2907381231", + "text": "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|46972", + "text": "Allocates Arcane Mixtures", + "type": "fractured" + }, + { + "id": "fractured.stat_3851254963", + "text": "#% increased Totem Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|19125", + "text": "Allocates Potent Incantation", + "type": "fractured" + }, + { + "id": "fractured.stat_1432756708", + "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_3292710273", + "text": "Gain # Rage when Hit by an Enemy", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|58939", + "text": "Allocates Dispatch Foes", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|44756", + "text": "Allocates Marked Agility", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|11526", + "text": "Allocates Sniper", + "type": "fractured" + }, + { + "id": "fractured.stat_239367161", + "text": "#% increased Stun Buildup", + "type": "fractured" + }, + { + "id": "fractured.stat_1911237468", + "text": "#% increased Stun Threshold while Parrying", + "type": "fractured" + }, + { + "id": "fractured.stat_2392824305", + "text": "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|39369", + "text": "Allocates Struck Through", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|34324", + "text": "Allocates Spectral Ward", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|2138", + "text": "Allocates Spiral into Insanity", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|44330", + "text": "Allocates Coated Arms", + "type": "fractured" + }, + { + "id": "fractured.stat_1007380041", + "text": "Small Passive Skills in Radius also grant #% increased Parry Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|8273", + "text": "Allocates Endless Circuit", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|30562", + "text": "Allocates Inner Faith", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17548", + "text": "Allocates Moment of Truth", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|57379", + "text": "Allocates In Your Face", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|11826", + "text": "Allocates Heavy Ammunition", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|10265", + "text": "Allocates Javelin", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|52618", + "text": "Allocates Boon of the Beast", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|10681", + "text": "Allocates Defensive Stance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|51707", + "text": "Allocates Enhanced Reflexes", + "type": "fractured" + }, + { + "id": "fractured.stat_4173554949", + "text": "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|27491", + "text": "Allocates Heavy Buffer", + "type": "fractured" + }, + { + "id": "fractured.stat_680068163", + "text": "#% increased Stun Threshold", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|54814", + "text": "Allocates Profane Commander", + "type": "fractured" + }, + { + "id": "fractured.stat_1756380435", + "text": "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|28963", + "text": "Allocates Chakra of Rhythm", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|64119", + "text": "Allocates Rapid Reload", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|36341", + "text": "Allocates Cull the Hordes", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|10998", + "text": "Allocates Strong Chin", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|3688", + "text": "Allocates Dynamism", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|29527", + "text": "Allocates First Approach", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|47635", + "text": "Allocates Overload", + "type": "fractured" + }, + { + "id": "fractured.stat_2653955271", + "text": "Damage Penetrates #% Fire Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|30408", + "text": "Allocates Efficient Contraptions", + "type": "fractured" + }, + { + "id": "fractured.stat_2131720304", + "text": "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|9968", + "text": "Allocates Feel the Earth", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|4238", + "text": "Allocates Versatile Arms", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|48581", + "text": "Allocates Exploit the Elements", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|29372", + "text": "Allocates Sudden Infuriation", + "type": "fractured" + }, + { + "id": "fractured.stat_1316278494", + "text": "#% increased Warcry Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|32353", + "text": "Allocates Swift Claw", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|43944", + "text": "Allocates Instability", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|20677", + "text": "Allocates For the Jugular", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|16816", + "text": "Allocates Pinpoint Shot", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|45599", + "text": "Allocates Lay Siege", + "type": "fractured" + }, + { + "id": "fractured.stat_4089835882", + "text": "Small Passive Skills in Radius also grant Break #% increased Armour", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|13407", + "text": "Allocates Heartbreaking", + "type": "fractured" + }, + { + "id": "fractured.stat_1776411443", + "text": "Break #% increased Armour", + "type": "fractured" + }, + { + "id": "fractured.stat_644456512", + "text": "#% reduced Flask Charges used", + "type": "fractured" + }, + { + "id": "fractured.stat_1602294220", + "text": "Small Passive Skills in Radius also grant #% increased Warcry Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|9020", + "text": "Allocates Giantslayer", + "type": "fractured" + }, + { + "id": "fractured.stat_2334956771", + "text": "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|55708", + "text": "Allocates Electric Amplification", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|6178", + "text": "Allocates Power Shots", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|62034", + "text": "Allocates Prism Guard", + "type": "fractured" + }, + { + "id": "fractured.stat_712554801", + "text": "#% increased Effect of your Mark Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|9472", + "text": "Allocates Catapult", + "type": "fractured" + }, + { + "id": "fractured.stat_139889694", + "text": "Small Passive Skills in Radius also grant #% increased Fire Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|3985", + "text": "Allocates Forces of Nature", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|65265", + "text": "Allocates Swift Interruption", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|55180", + "text": "Allocates Relentless Fallen", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|36623", + "text": "Allocates Convalescence", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|62609", + "text": "Allocates Ancestral Unity", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|16499", + "text": "Allocates Lingering Whispers", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|55", + "text": "Allocates Fast Acting Toxins", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|22967", + "text": "Allocates Vigilance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|13738", + "text": "Allocates Lightning Quick", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|39050", + "text": "Allocates Exploit", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|8904", + "text": "Allocates Death from Afar", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|42077", + "text": "Allocates Essence Infusion", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|25971", + "text": "Allocates Tenfold Attacks", + "type": "fractured" + }, + { + "id": "fractured.stat_2720982137", + "text": "Banner Skills have #% increased Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|37872", + "text": "Allocates Presence Present", + "type": "fractured" + }, + { + "id": "fractured.stat_1301765461", + "text": "#% to Maximum Chaos Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|7777", + "text": "Allocates Breaking Point", + "type": "fractured" + }, + { + "id": "fractured.stat_554690751", + "text": "Players are periodically Cursed with Elemental Weakness", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|51867", + "text": "Allocates Finality", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|13980", + "text": "Allocates Split the Earth", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17330", + "text": "Allocates Perforation", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|28267", + "text": "Allocates Desensitisation", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|336", + "text": "Allocates Storm Swell", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|56999", + "text": "Allocates Locked On", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|27176", + "text": "Allocates The Power Within", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|2021", + "text": "Allocates Wellspring", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|23939", + "text": "Allocates Glazed Flesh", + "type": "fractured" + }, + { + "id": "fractured.stat_2976476845", + "text": "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|51820", + "text": "Allocates Ancestral Conduits", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|50884", + "text": "Allocates Primal Sundering", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|63759", + "text": "Allocates Stacking Toxins", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|1823", + "text": "Allocates Illuminated Crown", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|57190", + "text": "Allocates Doomsayer", + "type": "fractured" + }, + { + "id": "fractured.stat_3401186585", + "text": "#% increased Parried Debuff Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|61338", + "text": "Allocates Breath of Lightning", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|53823", + "text": "Allocates Towering Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|32976", + "text": "Allocates Gem Enthusiast", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|57471", + "text": "Allocates Hunker Down", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|59303", + "text": "Allocates Lucky Rabbit Foot", + "type": "fractured" + }, + { + "id": "fractured.stat_1285594161", + "text": "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|34531", + "text": "Allocates Hallowed", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|42065", + "text": "Allocates Surging Currents", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|32951", + "text": "Allocates Preservation", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|13895", + "text": "Allocates Precise Point", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|49984", + "text": "Allocates Spellblade", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|7338", + "text": "Allocates Abasement", + "type": "fractured" + }, + { + "id": "fractured.stat_3395186672", + "text": "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|61703", + "text": "Allocates Sharpened Claw", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|30523", + "text": "Allocates Dead can Dance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|8831", + "text": "Allocates Tempered Mind", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|16618", + "text": "Allocates Jack of all Trades", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|40166", + "text": "Allocates Deep Trance", + "type": "fractured" + }, + { + "id": "fractured.stat_4129825612", + "text": "#% of Physical Damage from Hits taken as Chaos Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|25482", + "text": "Allocates Beef", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|62803", + "text": "Allocates Woodland Aspect", + "type": "fractured" + }, + { + "id": "fractured.stat_2912416697", + "text": "Notable Passive Skills in Radius also grant #% increased Blind Effect", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|934", + "text": "Allocates Natural Immunity", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|53941", + "text": "Allocates Shimmering", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|8531", + "text": "Allocates Leaping Ambush", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17854", + "text": "Allocates Escape Velocity", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|41512", + "text": "Allocates Heavy Weaponry", + "type": "fractured" + }, + { + "id": "fractured.stat_3936121440", + "text": "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17260", + "text": "Allocates Piercing Claw", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17372", + "text": "Allocates Reaching Strike", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|38459", + "text": "Allocates Disorientation", + "type": "fractured" + }, + { + "id": "fractured.stat_1129429646", + "text": "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|33240", + "text": "Allocates Lord of Horrors", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|24630", + "text": "Allocates Fulmination", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|53030", + "text": "Allocates Immolation", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|31826", + "text": "Allocates Long Distance Relationship", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|21537", + "text": "Allocates Fervour", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|35966", + "text": "Allocates Heart Tissue", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|6133", + "text": "Allocates Core of the Guardian", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|25711", + "text": "Allocates Thrill of Battle", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|56806", + "text": "Allocates Swift Blocking", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|52392", + "text": "Allocates Singular Purpose", + "type": "fractured" + }, + { + "id": "fractured.stat_1570770415", + "text": "#% reduced Charm Charges used", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17882", + "text": "Allocates Volatile Grenades", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|53853", + "text": "Allocates Backup Plan", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|59720", + "text": "Allocates Beastial Skin", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|42177", + "text": "Allocates Blurred Motion", + "type": "fractured" + }, + { + "id": "fractured.stat_924253255", + "text": "#% increased Slowing Potency of Debuffs on You", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|32071", + "text": "Allocates Primal Growth", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|3215", + "text": "Allocates Melding", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|2511", + "text": "Allocates Sundering", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|63037", + "text": "Allocates Sigil of Fire", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|30456", + "text": "Allocates High Alert", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|5663", + "text": "Allocates Endurance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|51934", + "text": "Allocates Invocated Efficiency", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|4709", + "text": "Allocates Near Sighted", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|21349", + "text": "Allocates The Quick Fox", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|19337", + "text": "Allocates Precision Salvo", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|54911", + "text": "Allocates Firestarter", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|3894", + "text": "Allocates Eldritch Will", + "type": "fractured" + }, + { + "id": "fractured.stat_1181419800", + "text": "#% increased Damage with Maces", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|37514", + "text": "Allocates Whirling Assault", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|47316", + "text": "Allocates Goring", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|52191", + "text": "Allocates Event Horizon", + "type": "fractured" + }, + { + "id": "fractured.stat_4009879772", + "text": "#% increased Life Flask Charges gained", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|50062", + "text": "Allocates Barrier of Venarius", + "type": "fractured" + }, + { + "id": "fractured.stat_1160637284", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|47363", + "text": "Allocates Colossal Weapon", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|60764", + "text": "Allocates Feathered Fletching", + "type": "fractured" + }, + { + "id": "fractured.stat_3171212276", + "text": "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|7651", + "text": "Allocates Pierce the Heart", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|30720", + "text": "Allocates Entropic Incarnation", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17229", + "text": "Allocates Silent Guardian", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|4716", + "text": "Allocates Afterimage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|58426", + "text": "Allocates Pocket Sand", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|27009", + "text": "Allocates Lust for Sacrifice", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|46024", + "text": "Allocates Sigil of Lightning", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|52199", + "text": "Allocates Overexposure", + "type": "fractured" + }, + { + "id": "fractured.stat_2970621759", + "text": "#% of Lightning Damage taken Recouped as Life", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|64443", + "text": "Allocates Impact Force", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|56997", + "text": "Allocates Heavy Contact", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|49661", + "text": "Allocates Perfectly Placed Knife", + "type": "fractured" + }, + { + "id": "fractured.stat_2480498143", + "text": "#% of Skill Mana Costs Converted to Life Costs", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|10295", + "text": "Allocates Overzealous", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|54937", + "text": "Allocates Vengeful Fury", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|63255", + "text": "Allocates Savagery", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|19442", + "text": "Allocates Prolonged Assault", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|40480", + "text": "Allocates Harmonic Generator", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|39567", + "text": "Allocates Ingenuity", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|40399", + "text": "Allocates Energise", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|35792", + "text": "Allocates Blood of Rage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|15374", + "text": "Allocates Hale Heart", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|53367", + "text": "Allocates Symbol of Defiance", + "type": "fractured" + }, + { + "id": "fractured.stat_1320662475", + "text": "Small Passive Skills in Radius also grant #% increased Thorns damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|45488", + "text": "Allocates Cross Strike", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|11774", + "text": "Allocates The Spring Hare", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|22626", + "text": "Allocates Irreparable", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|54640", + "text": "Allocates Constricting", + "type": "fractured" + }, + { + "id": "fractured.stat_3386297724", + "text": "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|16466", + "text": "Allocates Mental Alacrity", + "type": "fractured" + }, + { + "id": "fractured.stat_1505023559", + "text": "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_2690740379", + "text": "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|27626", + "text": "Allocates Touch the Arcane", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|59208", + "text": "Allocates Frantic Fighter", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|62185", + "text": "Allocates Rattled", + "type": "fractured" + }, + { + "id": "fractured.stat_512071314", + "text": "Monsters deal #% of Damage as Extra Lightning", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|12611", + "text": "Allocates Harness the Elements", + "type": "fractured" + }, + { + "id": "fractured.stat_942519401", + "text": "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + "type": "fractured" + }, + { + "id": "fractured.stat_3477720557", + "text": "Area has patches of Shocked Ground", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|23227", + "text": "Allocates Initiative", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|62310", + "text": "Allocates Incendiary", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|46224", + "text": "Allocates Arcane Alchemy", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17150", + "text": "Allocates General's Bindings", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|8810", + "text": "Allocates Multitasking", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|38972", + "text": "Allocates Restless Dead", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|43677", + "text": "Allocates Crippling Toxins", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|6655", + "text": "Allocates Aggravation", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|58397", + "text": "Allocates Proficiency", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|64240", + "text": "Allocates Battle Fever", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|61112", + "text": "Allocates Roll and Strike", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|48565", + "text": "Allocates Bringer of Order", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|46696", + "text": "Allocates Impair", + "type": "fractured" + }, + { + "id": "fractured.stat_3793155082", + "text": "#% increased Rare Monsters", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|57805", + "text": "Allocates Clear Space", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|38969", + "text": "Allocates Finesse", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|38537", + "text": "Allocates Heartstopping", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|10398", + "text": "Allocates Sudden Escalation", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|28482", + "text": "Allocates Total Incineration", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|51891", + "text": "Allocates Lucidity", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|49550", + "text": "Allocates Prolonged Fury", + "type": "fractured" + }, + { + "id": "fractured.stat_1495814176", + "text": "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|40117", + "text": "Allocates Spiked Armour", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17762", + "text": "Allocates Vengeance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|11392", + "text": "Allocates Molten Being", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|32354", + "text": "Allocates Defiance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|64543", + "text": "Allocates Unbound Forces", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|51602", + "text": "Allocates Unsight", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|26291", + "text": "Allocates Electrifying Nature", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|9227", + "text": "Allocates Focused Thrust", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|46365", + "text": "Allocates Gigantic Following", + "type": "fractured" + }, + { + "id": "fractured.stat_944643028", + "text": "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|5284", + "text": "Allocates Shredding Force", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|38398", + "text": "Allocates Apocalypse", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|14934", + "text": "Allocates Spiral into Mania", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|38895", + "text": "Allocates Crystal Elixir", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|35477", + "text": "Allocates Far Sighted", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|1104", + "text": "Allocates Lust for Power", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|38053", + "text": "Allocates Deafening Cries", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|38342", + "text": "Allocates Stupefy", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|60404", + "text": "Allocates Perfect Opportunity", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|22817", + "text": "Allocates Inevitable Rupture", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|30392", + "text": "Allocates Succour", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|14211", + "text": "Allocates Shredding Contraptions", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|3567", + "text": "Allocates Raw Mana", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|51871", + "text": "Allocates Immortal Thirst", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|28329", + "text": "Allocates Pressure Points", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|51394", + "text": "Allocates Unimpeded", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|38628", + "text": "Allocates Escalating Toxins", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|20414", + "text": "Allocates Reprisal", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|48418", + "text": "Allocates Hefty Unit", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|7062", + "text": "Allocates Reusable Ammunition", + "type": "fractured" + }, + { + "id": "fractured.stat_3166958180", + "text": "#% increased Magnitude of Bleeding you inflict", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|40270", + "text": "Allocates Frenetic", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|35369", + "text": "Allocates Investing Energies", + "type": "fractured" + }, + { + "id": "fractured.stat_429143663", + "text": "Banner Skills have #% increased Area of Effect", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|47270", + "text": "Allocates Inescapable Cold", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|35876", + "text": "Allocates Admonisher", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|8554", + "text": "Allocates Burning Nature", + "type": "fractured" + }, + { + "id": "fractured.stat_2301718443", + "text": "#% increased Damage against Enemies with Fully Broken Armour", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|10602", + "text": "Allocates Reaving", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|4031", + "text": "Allocates Icebreaker", + "type": "fractured" + }, + { + "id": "fractured.stat_30438393", + "text": "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|65204", + "text": "Allocates Overflowing Power", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|45244", + "text": "Allocates Refills", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|15617", + "text": "Allocates Heavy Drinker", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17825", + "text": "Allocates Tactical Retreat", + "type": "fractured" + }, + { + "id": "fractured.stat_4225700219", + "text": "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", + "type": "fractured" + }, + { + "id": "fractured.stat_2174054121", + "text": "#% chance to inflict Bleeding on Hit", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|23940", + "text": "Allocates Fortified Aegis", + "type": "fractured" + }, + { + "id": "fractured.stat_565784293", + "text": "#% increased Knockback Distance", + "type": "fractured" + }, + { + "id": "fractured.stat_3590792340", + "text": "#% increased Mana Flask Charges gained", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|32664", + "text": "Allocates Chakra of Breathing", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|7341", + "text": "Allocates Ignore Pain", + "type": "fractured" + }, + { + "id": "fractured.stat_4142814612", + "text": "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17955", + "text": "Allocates Careful Consideration", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|36976", + "text": "Allocates Marked for Death", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|43139", + "text": "Allocates Stormbreaker", + "type": "fractured" + }, + { + "id": "fractured.stat_872504239", + "text": "#% increased Stun Buildup with Maces", + "type": "fractured" + }, + { + "id": "fractured.stat_1569101201", + "text": "Empowered Attacks deal #% increased Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|34308", + "text": "Allocates Personal Touch", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|31433", + "text": "Allocates Catalysis", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17664", + "text": "Allocates Decisive Retreat", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|56714", + "text": "Allocates Swift Flight", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|53294", + "text": "Allocates Burn Away", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|39347", + "text": "Allocates Breaking Blows", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|65023", + "text": "Allocates Impenetrable Shell", + "type": "fractured" + }, + { + "id": "fractured.stat_3429148113", + "text": "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|13542", + "text": "Allocates Loose Flesh", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|9226", + "text": "Allocates Mental Perseverance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|47514", + "text": "Allocates Dizzying Hits", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|46384", + "text": "Allocates Wide Barrier", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|2575", + "text": "Allocates Ancestral Alacrity", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|11838", + "text": "Allocates Dreamcatcher", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|14324", + "text": "Allocates Arcane Blossom", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|2134", + "text": "Allocates Toxic Tolerance", + "type": "fractured" + }, + { + "id": "fractured.stat_2709646369", + "text": "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|35849", + "text": "Allocates Thickened Arteries", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|16256", + "text": "Allocates Ether Flow", + "type": "fractured" + }, + { + "id": "fractured.stat_1879340377", + "text": "Monsters Break Armour equal to #% of Physical Damage dealt", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|47418", + "text": "Allocates Warding Potions", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|40073", + "text": "Allocates Drenched", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|62887", + "text": "Allocates Living Death", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|27513", + "text": "Allocates Material Solidification", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|10423", + "text": "Allocates Exposed to the Inferno", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|42959", + "text": "Allocates Low Tolerance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|53150", + "text": "Allocates Sharp Sight", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|56893", + "text": "Allocates Thicket Warding", + "type": "fractured" + }, + { + "id": "fractured.stat_1276056105", + "text": "#% increased Gold found in this Area (Gold Piles)", + "type": "fractured" + }, + { + "id": "fractured.stat_1276056105", + "text": "#% increased Gold found in your Maps (Gold Piles)", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|36630", + "text": "Allocates Incision", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|2645", + "text": "Allocates Skullcrusher", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|48699", + "text": "Allocates Frostwalker", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|64851", + "text": "Allocates Flashy Parrying", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|21164", + "text": "Allocates Fleshcrafting", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|65193", + "text": "Allocates Viciousness", + "type": "fractured" + }, + { + "id": "fractured.stat_3821543413", + "text": "Notable Passive Skills in Radius also grant #% increased Block chance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|33887", + "text": "Allocates Full Salvo", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|44005", + "text": "Allocates Casting Cascade", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|40213", + "text": "Allocates Taste for Blood", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|33059", + "text": "Allocates Back in Action", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|30341", + "text": "Allocates Master Fletching", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|46692", + "text": "Allocates Efficient Alchemy", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|50795", + "text": "Allocates Careful Aim", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|16626", + "text": "Allocates Impact Area", + "type": "fractured" + }, + { + "id": "fractured.stat_2112395885", + "text": "#% increased amount of Life Leeched", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|23736", + "text": "Allocates Spray and Pray", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|58183", + "text": "Allocates Blood Tearing", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|61601", + "text": "Allocates True Strike", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|31373", + "text": "Allocates Vocal Empowerment", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|45013", + "text": "Allocates Finishing Blows", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|50392", + "text": "Allocates Brute Strength", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|57047", + "text": "Allocates Polymathy", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|10612", + "text": "Allocates Embodiment of Frost", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|47782", + "text": "Allocates Steady Footing", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17725", + "text": "Allocates Bonded Precision", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|2999", + "text": "Allocates Final Barrage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|15644", + "text": "Allocates Shedding Skin", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|21206", + "text": "Allocates Explosive Impact", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|35855", + "text": "Allocates Fortifying Blood", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|65160", + "text": "Allocates Titanic", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|51509", + "text": "Allocates Waters of Life", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|34300", + "text": "Allocates Conservative Casting", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|42347", + "text": "Allocates Chakra of Sight", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|15030", + "text": "Allocates Consistent Intake", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|21453", + "text": "Allocates Breakage", + "type": "fractured" + }, + { + "id": "fractured.stat_3858398337", + "text": "Small Passive Skills in Radius also grant #% increased Armour", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|12750", + "text": "Allocates Vale Shelter", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|61921", + "text": "Allocates Storm Surge", + "type": "fractured" + }, + { + "id": "fractured.stat_1585769763", + "text": "#% increased Blind Effect", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|20032", + "text": "Allocates Erraticism", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|44765", + "text": "Allocates Distracting Presence", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|20397", + "text": "Allocates Authority", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|55131", + "text": "Allocates Light on your Feet", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|7604", + "text": "Allocates Rapid Strike", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|53935", + "text": "Allocates Briny Carapace", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|6544", + "text": "Allocates Burning Strikes", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|60138", + "text": "Allocates Stylebender", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|40803", + "text": "Allocates Sigil of Ice", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|49618", + "text": "Allocates Deadly Flourish", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|42354", + "text": "Allocates Blinding Flash", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|56453", + "text": "Allocates Killer Instinct", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|2486", + "text": "Allocates Stars Aligned", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|23427", + "text": "Allocates Chilled to the Bone", + "type": "fractured" + }, + { + "id": "fractured.stat_1869147066", + "text": "#% increased Glory generation for Banner Skills", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|35560", + "text": "Allocates At your Command", + "type": "fractured" + }, + { + "id": "fractured.stat_2488361432", + "text": "#% increased Monster Cast Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|8660", + "text": "Allocates Reverberation", + "type": "fractured" + }, + { + "id": "fractured.stat_337935900", + "text": "Monsters take #% reduced Extra Damage from Critical Hits", + "type": "fractured" + }, + { + "id": "fractured.stat_3998863698", + "text": "Monsters have #% increased Freeze Buildup", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|45612", + "text": "Allocates Defensive Reflexes", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|20251", + "text": "Allocates Splitting Ground", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|56493", + "text": "Allocates Agile Succession", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|2113", + "text": "Allocates Martial Artistry", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|59070", + "text": "Allocates Enduring Archon", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|18496", + "text": "Allocates Lasting Trauma", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|36364", + "text": "Allocates Electrocution", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|35581", + "text": "Allocates Near at Hand", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|13457", + "text": "Allocates Shadow Dancing", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|19722", + "text": "Allocates Thin Ice", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|14761", + "text": "Allocates Warlord Leader", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|27434", + "text": "Allocates Archon of the Storm", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|41753", + "text": "Allocates Evocational Practitioner", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|38614", + "text": "Allocates Psychic Fragmentation", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|36808", + "text": "Allocates Spiked Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|2335", + "text": "Allocates Turn the Clock Forward", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17303", + "text": "Allocates Utility Ordnance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|60269", + "text": "Allocates Roil", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|37302", + "text": "Allocates Kept at Bay", + "type": "fractured" + }, + { + "id": "fractured.stat_2539290279", + "text": "Monsters are Armoured", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|51169", + "text": "Allocates Soul Bloom", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|48215", + "text": "Allocates Headshot", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|5009", + "text": "Allocates Seeing Stars", + "type": "fractured" + }, + { + "id": "fractured.stat_1913583994", + "text": "#% increased Monster Attack Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|58096", + "text": "Allocates Lasting Incantations", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|18397", + "text": "Allocates Savoured Blood", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|13823", + "text": "Allocates Controlling Magic", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|43829", + "text": "Allocates Advanced Munitions", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|12661", + "text": "Allocates Asceticism", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|5332", + "text": "Allocates Crystallised Immunities", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|24483", + "text": "Allocates Direct Approach", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|43088", + "text": "Allocates Agonising Calamity", + "type": "fractured" + }, + { + "id": "fractured.stat_300723956", + "text": "Attack Hits apply Incision", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|42245", + "text": "Allocates Efficient Inscriptions", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|52245", + "text": "Allocates Distant Dreamer", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|54990", + "text": "Allocates Bloodletting", + "type": "fractured" + }, + { + "id": "fractured.stat_4101943684", + "text": "Monsters have #% increased Stun Threshold", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|22811", + "text": "Allocates The Wild Cat", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|33093", + "text": "Allocates Effervescent", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|7302", + "text": "Allocates Echoing Pulse", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|63074", + "text": "Allocates Dark Entries", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|8957", + "text": "Allocates Right Hand of Darkness", + "type": "fractured" + }, + { + "id": "fractured.stat_2887760183", + "text": "Monsters gain #% of maximum Life as Extra maximum Energy Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_941368244", + "text": "Players have #% more Cooldown Recovery Rate", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|2814", + "text": "Allocates Engineered Blaze", + "type": "fractured" + }, + { + "id": "fractured.stat_686254215", + "text": "#% increased Totem Life", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|48658", + "text": "Allocates Shattering", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|27875", + "text": "Allocates General Electric", + "type": "fractured" + }, + { + "id": "fractured.stat_2200661314", + "text": "Monsters deal #% of Damage as Extra Chaos", + "type": "fractured" + }, + { + "id": "fractured.stat_1459321413", + "text": "#% increased Bleeding Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_2306522833", + "text": "#% increased Monster Movement Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|12822", + "text": "Allocates Adaptable Assault", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|8881", + "text": "Allocates Unforgiving", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|35031", + "text": "Allocates Chakra of Life", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|9736", + "text": "Allocates Insulated Treads", + "type": "fractured" + }, + { + "id": "fractured.stat_4181072906", + "text": "Players have #% less Recovery Rate of Life and Energy Shield", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|5257", + "text": "Allocates Echoing Frost", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|7275", + "text": "Allocates Electrocuting Exposure", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|19156", + "text": "Allocates Immaterial", + "type": "fractured" + }, + { + "id": "fractured.stat_57326096", + "text": "Monsters have #% Critical Damage Bonus", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|16150", + "text": "Allocates Inspiring Ally", + "type": "fractured" + }, + { + "id": "fractured.stat_504915064", + "text": "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|11366", + "text": "Allocates Volcanic Skin", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|25362", + "text": "Allocates Chakra of Impact", + "type": "fractured" + }, + { + "id": "fractured.stat_1898978455", + "text": "Monster Damage Penetrates #% Elemental Resistances", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|4627", + "text": "Allocates Climate Change", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|59214", + "text": "Allocates Fated End", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|46296", + "text": "Allocates Short Shot", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|18485", + "text": "Allocates Unstable Bond", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|55060", + "text": "Allocates Shrapnel", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|38479", + "text": "Allocates Close Confines", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|51606", + "text": "Allocates Freedom of Movement", + "type": "fractured" + }, + { + "id": "fractured.stat_349586058", + "text": "Area has patches of Chilled Ground", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|24240", + "text": "Allocates Time Manipulation", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|26070", + "text": "Allocates Bolstering Yell", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|10029", + "text": "Allocates Repulsion", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|53185", + "text": "Allocates The Winter Owl", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|58215", + "text": "Allocates Sanguimantic Rituals", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|65468", + "text": "Allocates Repeating Explosives", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|15991", + "text": "Allocates Embodiment of Lightning", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|63585", + "text": "Allocates Thunderstruck", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|44952", + "text": "Allocates Made to Last", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|34543", + "text": "Allocates The Frenzied Bear", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|38111", + "text": "Allocates Pliable Flesh", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|20388", + "text": "Allocates Regenerative Flesh", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|26518", + "text": "Allocates Cold Nature", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|37806", + "text": "Allocates Branching Bolts", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|36931", + "text": "Allocates Concussive Attack", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|29514", + "text": "Allocates Cluster Bombs", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17029", + "text": "Allocates Blade Catcher", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|52180", + "text": "Allocates Trained Deflection", + "type": "fractured" + }, + { + "id": "fractured.stat_2949706590", + "text": "Area contains # additional packs of Iron Guards", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|94", + "text": "Allocates Efficient Killing", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|56616", + "text": "Allocates Desperate Times", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|65016", + "text": "Allocates Intense Flames", + "type": "fractured" + }, + { + "id": "fractured.stat_3119612865", + "text": "Minions have #% additional Physical Damage Reduction", + "type": "fractured" + }, + { + "id": "fractured.stat_4159248054", + "text": "#% increased Warcry Cooldown Recovery Rate", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|33229", + "text": "Allocates Haemorrhaging Cuts", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|35809", + "text": "Allocates Reinvigoration", + "type": "fractured" + }, + { + "id": "fractured.stat_3374165039", + "text": "#% increased Totem Placement speed", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|32721", + "text": "Allocates Distracted Target", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|61741", + "text": "Allocates Lasting Toxins", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|50715", + "text": "Allocates Frozen Limit", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|20416", + "text": "Allocates Grit", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|24753", + "text": "Allocates Determined Precision", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|37276", + "text": "Allocates Battle Trance", + "type": "fractured" + }, + { + "id": "fractured.stat_2506820610", + "text": "Monsters have #% chance to inflict Bleeding on Hit", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|41811", + "text": "Allocates Shatter Palm", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|50673", + "text": "Allocates Avoiding Deflection", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|23630", + "text": "Allocates Self Immolation", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|32151", + "text": "Allocates Crystalline Resistance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|63830", + "text": "Allocates Marked for Sickness", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|36333", + "text": "Allocates Explosive Empowerment", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|58714", + "text": "Allocates Grenadier", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|50687", + "text": "Allocates Coursing Energy", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|5410", + "text": "Allocates Channelled Heritage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|29306", + "text": "Allocates Chakra of Thought", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|64415", + "text": "Allocates Shattering Daze", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|35028", + "text": "Allocates In the Thick of It", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|41394", + "text": "Allocates Invigorating Archon", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|48734", + "text": "Allocates The Howling Primate", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|11578", + "text": "Allocates Spreading Shocks", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|38888", + "text": "Allocates Unerring Impact", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|4331", + "text": "Allocates Guided Hand", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|2397", + "text": "Allocates Last Stand", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|48617", + "text": "Allocates Hunter", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|14294", + "text": "Allocates Sacrificial Blood", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|65243", + "text": "Allocates Enveloping Presence", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|25619", + "text": "Allocates Sand in the Eyes", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|41033", + "text": "Allocates Utmost Offering", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|18308", + "text": "Allocates Bleeding Out", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|3921", + "text": "Allocates Fate Finding", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|15986", + "text": "Allocates Building Toxins", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|63431", + "text": "Allocates Leeching Toxins", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|4661", + "text": "Allocates Inspiring Leader", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|42813", + "text": "Allocates Tides of Change", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|14343", + "text": "Allocates Deterioration", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|32301", + "text": "Allocates Frazzled", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|33216", + "text": "Allocates Deep Wounds", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|19236", + "text": "Allocates Projectile Bulwark", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|48014", + "text": "Allocates Honourless", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|53187", + "text": "Allocates Warlord Berserker", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|29762", + "text": "Allocates Guttural Roar", + "type": "fractured" + }, + { + "id": "fractured.stat_2550456553", + "text": "Rare Monsters have # additional Modifier", + "type": "fractured" + }, + { + "id": "fractured.stat_2550456553", + "text": "Rare Monsters in your Maps have # additional Modifier", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|39990", + "text": "Allocates Chronomancy", + "type": "fractured" + }, + { + "id": "fractured.stat_1054098949", + "text": "+#% Monster Elemental Resistances", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|64050", + "text": "Allocates Marathon Runner", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|16790", + "text": "Allocates Efficient Casting", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|28542", + "text": "Allocates The Molten One's Gift", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|13515", + "text": "Allocates Stormwalker", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|12412", + "text": "Allocates Temporal Mastery", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|42981", + "text": "Allocates Cruel Methods", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|7163", + "text": "Allocates Stimulants", + "type": "fractured" + }, + { + "id": "fractured.stat_1315743832", + "text": "#% increased Thorns damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|8607", + "text": "Allocates Lavianga's Brew", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|7668", + "text": "Allocates Internal Bleeding", + "type": "fractured" + }, + { + "id": "fractured.stat_115425161", + "text": "Monsters have #% increased Stun Buildup", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|47420", + "text": "Allocates Expendable Army", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|11376", + "text": "Allocates Necrotic Touch", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|63400", + "text": "Allocates Chakra of Elements", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|3492", + "text": "Allocates Void", + "type": "fractured" + }, + { + "id": "fractured.stat_2570249991", + "text": "Monsters are Evasive", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|60464", + "text": "Allocates Fan the Flames", + "type": "fractured" + }, + { + "id": "fractured.stat_3222482040", + "text": "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|43423", + "text": "Allocates Emboldened Avatar", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|37543", + "text": "Allocates Full Recovery", + "type": "fractured" + }, + { + "id": "fractured.stat_318092306", + "text": "Small Passive Skills in Radius also grant Attack Hits apply Incision", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|8397", + "text": "Allocates Empowering Remains", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|43090", + "text": "Allocates Electrotherapy", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|50023", + "text": "Allocates Invigorating Grandeur", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|40325", + "text": "Allocates Resolution", + "type": "fractured" + }, + { + "id": "fractured.stat_3873704640", + "text": "#% increased Magic Monsters", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|3188", + "text": "Allocates Revenge", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|20916", + "text": "Allocates Blinding Strike", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|28613", + "text": "Allocates Roaring Cries", + "type": "fractured" + }, + { + "id": "fractured.stat_1629357380", + "text": "Players are periodically Cursed with Temporal Chains", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|42045", + "text": "Allocates Archon of the Blizzard", + "type": "fractured" + }, + { + "id": "fractured.stat_1890519597", + "text": "#% increased Monster Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|23362", + "text": "Allocates Slippery Ice", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|750", + "text": "Allocates Tribal Fury", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|15114", + "text": "Allocates Boundless Growth", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|2863", + "text": "Allocates Perpetual Freeze", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|49088", + "text": "Allocates Splintering Force", + "type": "fractured" + }, + { + "id": "fractured.stat_3679418014", + "text": "#% of Cold Damage taken Recouped as Life", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|23764", + "text": "Allocates Alternating Current", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|38532", + "text": "Allocates Thirst for Power", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|9421", + "text": "Allocates Snowpiercer", + "type": "fractured" + }, + { + "id": "fractured.stat_2549889921", + "text": "Players gain #% reduced Flask Charges", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|10315", + "text": "Allocates Easy Going", + "type": "fractured" + }, + { + "id": "fractured.stat_2534359663", + "text": "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|4959", + "text": "Allocates Heavy Frost", + "type": "fractured" + }, + { + "id": "fractured.stat_1984618452", + "text": "Monsters have #% increased Shock Chance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|17254", + "text": "Allocates Spell Haste", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|63579", + "text": "Allocates Momentum", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|61026", + "text": "Allocates Crystalline Flesh", + "type": "fractured" + }, + { + "id": "fractured.stat_95249895", + "text": "#% more Monster Life", + "type": "fractured" + }, + { + "id": "fractured.stat_211727", + "text": "Monsters deal #% of Damage as Extra Cold", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|32448", + "text": "Allocates Shockproof", + "type": "fractured" + }, + { + "id": "fractured.stat_2753083623", + "text": "Monsters have #% increased Critical Hit Chance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|9908", + "text": "Allocates Price of Freedom", + "type": "fractured" + }, + { + "id": "fractured.stat_1742651309", + "text": "#% of Fire Damage taken Recouped as Life", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|19249", + "text": "Allocates Supportive Ancestors", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|19546", + "text": "Allocates Favourable Odds", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|61404", + "text": "Allocates Equilibrium", + "type": "fractured" + }, + { + "id": "fractured.stat_1002362373", + "text": "#% increased Melee Damage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|56488", + "text": "Allocates Glancing Deflection", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|53566", + "text": "Allocates Run and Gun", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|45713", + "text": "Allocates Savouring", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|43939", + "text": "Allocates Melting Flames", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|33978", + "text": "Allocates Unstoppable Barrier", + "type": "fractured" + }, + { + "id": "fractured.stat_3233599707", + "text": "#% increased Weapon Swap Speed", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|1603", + "text": "Allocates Storm Driven", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|9444", + "text": "Allocates One with the Storm", + "type": "fractured" + }, + { + "id": "fractured.stat_1514844108", + "text": "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|23244", + "text": "Allocates Bounty Hunter", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|32507", + "text": "Allocates Cut to the Bone", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|24120", + "text": "Allocates Mental Toughness", + "type": "fractured" + }, + { + "id": "fractured.stat_2029171424", + "text": "Players are periodically Cursed with Enfeeble", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|23738", + "text": "Allocates Madness in the Bones", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|1352", + "text": "Allocates Unbending", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|24764", + "text": "Allocates Infusing Power", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|34316", + "text": "Allocates One with the River", + "type": "fractured" + }, + { + "id": "fractured.stat_2508044078", + "text": "Monsters inflict #% increased Flammability Magnitude", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|39083", + "text": "Allocates Blood Rush", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|12998", + "text": "Allocates Warm the Heart", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|5227", + "text": "Allocates Escape Strategy", + "type": "fractured" + }, + { + "id": "fractured.stat_2637470878", + "text": "#% increased Armour Break Duration", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|7847", + "text": "Allocates The Fabled Stag", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|37266", + "text": "Allocates Nourishing Ally", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|24655", + "text": "Allocates Breath of Fire", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|30546", + "text": "Allocates Electrified Claw", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|52971", + "text": "Allocates The Soul Meridian", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|18086", + "text": "Allocates Breath of Ice", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|55847", + "text": "Allocates Ice Walls", + "type": "fractured" + }, + { + "id": "fractured.stat_95221307", + "text": "Monsters have #% chance to Poison on Hit", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|56063", + "text": "Allocates Lingering Horror", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|8896", + "text": "Allocates Agile Sprinter", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|60992", + "text": "Allocates Nurturing Guardian", + "type": "fractured" + }, + { + "id": "fractured.stat_1145481685", + "text": "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|5642", + "text": "Allocates Behemoth", + "type": "fractured" + }, + { + "id": "fractured.stat_1714706956", + "text": "#% increased Magic Pack Size", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|12906", + "text": "Allocates Sitting Duck", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|60083", + "text": "Allocates Pin and Run", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|53921", + "text": "Allocates Unbreaking", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|15443", + "text": "Allocates Endured Suffering", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|7395", + "text": "Allocates Retaliation", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|4810", + "text": "Allocates Sanguine Tolerance", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|57785", + "text": "Allocates Trained Turrets", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|48524", + "text": "Allocates Blood Transfusion", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|29899", + "text": "Allocates Finish Them", + "type": "fractured" + }, + { + "id": "fractured.stat_1588049749", + "text": "Monsters have #% increased Accuracy Rating", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|16940", + "text": "Allocates Arcane Nature", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|40985", + "text": "Allocates Empowering Remnants", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|31745", + "text": "Allocates Lockdown", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|48103", + "text": "Allocates Forcewave", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|48006", + "text": "Allocates Devastation", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|21748", + "text": "Allocates Impending Doom", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|27388", + "text": "Allocates Aspiring Genius", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|37742", + "text": "Allocates Manifold Method", + "type": "fractured" + }, + { + "id": "fractured.stat_92381065", + "text": "Monsters deal #% of Damage as Extra Fire", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|35739", + "text": "Allocates Crushing Judgement", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|1169", + "text": "Allocates Urgent Call", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|27108", + "text": "Allocates Mass Hysteria", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|56112", + "text": "Allocates Extinguishing Exhalation", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|10873", + "text": "Allocates Bestial Rage", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|24438", + "text": "Allocates Hardened Wood", + "type": "fractured" + }, + { + "id": "fractured.stat_3796523155", + "text": "#% less effect of Curses on Monsters", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|41972", + "text": "Allocates Glaciation", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|4673", + "text": "Allocates Hulking Smash", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|44917", + "text": "Allocates Self Mortification", + "type": "fractured" + }, + { + "id": "fractured.stat_57434274", + "text": "#% increased Experience gain", + "type": "fractured" + }, + { + "id": "fractured.stat_57434274", + "text": "#% increased Experience gain in your Maps", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|42036", + "text": "Allocates Off-Balancing Retort", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|40687", + "text": "Allocates Lead by Example", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|31326", + "text": "Allocates Slow Burn", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|60692", + "text": "Allocates Echoing Flames", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|36507", + "text": "Allocates Vile Mending", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|29288", + "text": "Allocates Deadly Invocations", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|44293", + "text": "Allocates Hastening Barrier", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|31189", + "text": "Allocates Unexpected Finesse", + "type": "fractured" + }, + { + "id": "fractured.stat_2149603090", + "text": "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|35618", + "text": "Allocates Cold Coat", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|5335", + "text": "Allocates Shimmering Mirage", + "type": "fractured" + }, + { + "id": "fractured.stat_1994551050", + "text": "Monsters have #% increased Ailment Threshold", + "type": "fractured" + }, + { + "id": "fractured.stat_133340941", + "text": "Area has patches of Ignited Ground", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|26356", + "text": "Allocates Primed to Explode", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|14945", + "text": "Allocates Growing Swarm", + "type": "fractured" + }, + { + "id": "fractured.stat_1834658952", + "text": "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + "type": "fractured" + }, + { + "id": "fractured.stat_3811191316", + "text": "Minions have #% increased Area of Effect", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|13482", + "text": "Allocates Punctured Lung", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|28441", + "text": "Allocates Frantic Swings", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|15829", + "text": "Allocates Siphon", + "type": "fractured" + }, + { + "id": "fractured.stat_2954116742|14383", + "text": "Allocates Suffusion", + "type": "fractured" + } + ] + }, + { + "id": "crafted", + "label": "Crafted", + "entries": [ + { + "id": "crafted.stat_210067635", + "text": "#% increased Attack Speed (Local)", + "type": "crafted" + }, + { + "id": "crafted.stat_1062208444", + "text": "#% increased Armour (Local)", + "type": "crafted" + }, + { + "id": "crafted.stat_3299347043", + "text": "# to maximum Life", + "type": "crafted" + }, + { + "id": "crafted.stat_1999113824", + "text": "#% increased Evasion and Energy Shield", + "type": "crafted" + }, + { + "id": "crafted.stat_3321629045", + "text": "#% increased Armour and Energy Shield", + "type": "crafted" + }, + { + "id": "crafted.stat_2840930496", + "text": "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", + "type": "crafted" + }, + { + "id": "crafted.stat_1798257884", + "text": "Allies in your Presence deal #% increased Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_3962278098", + "text": "#% increased Fire Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_1881230714", + "text": "#% chance to gain Onslaught on Killing Hits with this Weapon", + "type": "crafted" + }, + { + "id": "crafted.stat_4273473110", + "text": "#% increased maximum Runic Ward", + "type": "crafted" + }, + { + "id": "crafted.stat_1037193709", + "text": "Adds # to # Cold Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_1604736568", + "text": "Recover #% of maximum Mana on Kill (Jewel)", + "type": "crafted" + }, + { + "id": "crafted.stat_737908626", + "text": "#% increased Critical Hit Chance for Spells", + "type": "crafted" + }, + { + "id": "crafted.stat_274716455", + "text": "#% increased Critical Spell Damage Bonus", + "type": "crafted" + }, + { + "id": "crafted.stat_124859000", + "text": "#% increased Evasion Rating (Local)", + "type": "crafted" + }, + { + "id": "crafted.stat_4015621042", + "text": "#% increased Energy Shield", + "type": "crafted" + }, + { + "id": "crafted.stat_656461285", + "text": "#% increased Intelligence", + "type": "crafted" + }, + { + "id": "crafted.stat_3714003708", + "text": "#% increased Critical Damage Bonus for Attack Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_2891184298", + "text": "#% increased Cast Speed", + "type": "crafted" + }, + { + "id": "crafted.stat_2451402625", + "text": "#% increased Armour and Evasion", + "type": "crafted" + }, + { + "id": "crafted.stat_2866361420", + "text": "#% increased Armour", + "type": "crafted" + }, + { + "id": "crafted.stat_709508406", + "text": "Adds # to # Fire Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_1303248024", + "text": "#% increased Magnitude of Ailments you inflict", + "type": "crafted" + }, + { + "id": "crafted.stat_2482852589", + "text": "#% increased maximum Energy Shield", + "type": "crafted" + }, + { + "id": "crafted.stat_3015669065", + "text": "Gain #% of Damage as Extra Fire Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_3981240776", + "text": "# to Spirit", + "type": "crafted" + }, + { + "id": "crafted.stat_3917489142", + "text": "#% increased Rarity of Items found", + "type": "crafted" + }, + { + "id": "crafted.stat_1967040409", + "text": "Spell Skills have #% increased Area of Effect", + "type": "crafted" + }, + { + "id": "crafted.stat_2023107756", + "text": "Recover #% of maximum Life on Kill", + "type": "crafted" + }, + { + "id": "crafted.stat_4019237939", + "text": "Gain #% of Damage as Extra Physical Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_1829102168", + "text": "#% increased Duration of Damaging Ailments on Enemies", + "type": "crafted" + }, + { + "id": "crafted.stat_2101383955", + "text": "Damage Penetrates #% Elemental Resistances", + "type": "crafted" + }, + { + "id": "crafted.stat_3278136794", + "text": "Gain #% of Damage as Extra Lightning Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_2505884597", + "text": "Gain #% of Damage as Extra Cold Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_953593695", + "text": "Minions have #% increased Magnitude of Damaging Ailments", + "type": "crafted" + }, + { + "id": "crafted.stat_589361270", + "text": "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", + "type": "crafted" + }, + { + "id": "crafted.stat_983749596", + "text": "#% increased maximum Life", + "type": "crafted" + }, + { + "id": "crafted.stat_2158617060", + "text": "#% increased Archon Buff duration", + "type": "crafted" + }, + { + "id": "crafted.stat_518292764", + "text": "#% to Critical Hit Chance", + "type": "crafted" + }, + { + "id": "crafted.stat_3556824919", + "text": "#% increased Critical Damage Bonus", + "type": "crafted" + }, + { + "id": "crafted.stat_1840985759", + "text": "#% increased Area of Effect for Attacks", + "type": "crafted" + }, + { + "id": "crafted.stat_3336890334", + "text": "Adds # to # Lightning Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_3261801346", + "text": "# to Dexterity", + "type": "crafted" + }, + { + "id": "crafted.stat_1940865751", + "text": "Adds # to # Physical Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_3141070085", + "text": "#% increased Elemental Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_3377888098", + "text": "#% increased Skill Effect Duration", + "type": "crafted" + }, + { + "id": "crafted.stat_2974417149", + "text": "#% increased Spell Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_1058934731", + "text": "Temporary Minion Skills have # to Limit of Minions summoned", + "type": "crafted" + }, + { + "id": "crafted.stat_1050105434", + "text": "# to maximum Mana", + "type": "crafted" + }, + { + "id": "crafted.stat_803737631", + "text": "# to Accuracy Rating", + "type": "crafted" + }, + { + "id": "crafted.stat_2392260628", + "text": "#% increased Runic Ward Regeneration Rate", + "type": "crafted" + }, + { + "id": "crafted.stat_3482326075", + "text": "Remnants can be collected from #% further away", + "type": "crafted" + }, + { + "id": "crafted.stat_335885735", + "text": "Bears the Mark of the Abyssal Lord", + "type": "crafted" + }, + { + "id": "crafted.stat_736967255", + "text": "#% increased Chaos Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_44972811", + "text": "#% increased Life Regeneration rate", + "type": "crafted" + }, + { + "id": "crafted.stat_681332047", + "text": "#% increased Attack Speed", + "type": "crafted" + }, + { + "id": "crafted.stat_2923486259", + "text": "#% to Chaos Resistance", + "type": "crafted" + }, + { + "id": "crafted.stat_4101445926", + "text": "#% increased Mana Cost Efficiency", + "type": "crafted" + }, + { + "id": "crafted.stat_124131830", + "text": "# to Level of all Spell Skills", + "type": "crafted" + }, + { + "id": "crafted.stat_3336230913", + "text": "# to maximum Runic Ward", + "type": "crafted" + }, + { + "id": "crafted.stat_2039822488", + "text": "#% to Maximum Quality", + "type": "crafted" + }, + { + "id": "crafted.stat_2748665614", + "text": "#% increased maximum Mana", + "type": "crafted" + }, + { + "id": "crafted.stat_2106365538", + "text": "#% increased Evasion Rating", + "type": "crafted" + }, + { + "id": "crafted.stat_2231156303", + "text": "#% increased Lightning Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_101878827", + "text": "#% increased Presence Area of Effect", + "type": "crafted" + }, + { + "id": "crafted.stat_1177404658", + "text": "#% increased Global Armour, Evasion and Energy Shield", + "type": "crafted" + }, + { + "id": "crafted.stat_325171970", + "text": "#% increased Attack Speed while missing Runic Ward", + "type": "crafted" + }, + { + "id": "crafted.stat_328541901", + "text": "# to Intelligence", + "type": "crafted" + }, + { + "id": "crafted.stat_1028592286", + "text": "#% chance to Chain an additional time", + "type": "crafted" + }, + { + "id": "crafted.stat_4080418644", + "text": "# to Strength", + "type": "crafted" + }, + { + "id": "crafted.stat_2250533757", + "text": "#% increased Movement Speed", + "type": "crafted" + }, + { + "id": "crafted.stat_3291658075", + "text": "#% increased Cold Damage", + "type": "crafted" + }, + { + "id": "crafted.stat_3372524247", + "text": "#% to Fire Resistance", + "type": "crafted" + }, + { + "id": "crafted.stat_3175163625", + "text": "#% increased Quantity of Gold Dropped by Slain Enemies", + "type": "crafted" + }, + { + "id": "crafted.stat_3035140377", + "text": "# to Level of all Attack Skills", + "type": "crafted" + }, + { + "id": "crafted.stat_691932474", + "text": "# to Accuracy Rating (Local)", + "type": "crafted" + }, + { + "id": "crafted.stat_4220027924", + "text": "#% to Cold Resistance", + "type": "crafted" + }, + { + "id": "crafted.stat_1671376347", + "text": "#% to Lightning Resistance", + "type": "crafted" + }, + { + "id": "crafted.stat_2194114101", + "text": "#% increased Critical Hit Chance for Attacks", + "type": "crafted" + } + ] + }, + { + "id": "enchant", + "label": "Enchant", + "entries": [ + { + "id": "enchant.stat_1715784068", + "text": "Players in Area are #% Delirious", + "type": "enchant" + }, + { + "id": "enchant.stat_3261801346", + "text": "# to Dexterity", + "type": "enchant" + }, + { + "id": "enchant.stat_4080418644", + "text": "# to Strength", + "type": "enchant" + }, + { + "id": "enchant.stat_3873704640", + "text": "#% increased Magic Monsters", + "type": "enchant" + }, + { + "id": "enchant.stat_328541901", + "text": "# to Intelligence", + "type": "enchant" + }, + { + "id": "enchant.stat_1671376347", + "text": "#% to Lightning Resistance", + "type": "enchant" + }, + { + "id": "enchant.stat_4220027924", + "text": "#% to Cold Resistance", + "type": "enchant" + }, + { + "id": "enchant.stat_3372524247", + "text": "#% to Fire Resistance", + "type": "enchant" + }, + { + "id": "enchant.stat_3793155082", + "text": "#% increased Rare Monsters", + "type": "enchant" + }, + { + "id": "enchant.stat_2923486259", + "text": "#% to Chaos Resistance", + "type": "enchant" + }, + { + "id": "enchant.stat_3138466258", + "text": "#% increased Tablets found in Area", + "type": "enchant" + }, + { + "id": "enchant.stat_3138466258", + "text": "#% increased Quantity of Tablets found", + "type": "enchant" + }, + { + "id": "enchant.stat_3732878551", + "text": "Rare Monsters have a #% Surpassing chance to have an additional Modifier", + "type": "enchant" + }, + { + "id": "enchant.stat_3732878551", + "text": "Rare Monsters in your Maps have a #% Surpassing chance to have an additional Modifier", + "type": "enchant" + }, + { + "id": "enchant.stat_3371085671", + "text": "Unique Monsters have # additional Rare Modifier", + "type": "enchant" + }, + { + "id": "enchant.stat_3371085671", + "text": "Unique Monsters in your Maps have # additional Rare Modifier", + "type": "enchant" + }, + { + "id": "enchant.stat_3836551197", + "text": "#% increased Stack size of Simulacrum Splinters found in Area", + "type": "enchant" + }, + { + "id": "enchant.stat_3836551197", + "text": "#% increased Stack size of Simulacrum Splinters found in your Maps", + "type": "enchant" + }, + { + "id": "enchant.stat_3639275092", + "text": "#% increased Attribute Requirements", + "type": "enchant" + }, + { + "id": "enchant.stat_789117908", + "text": "#% increased Mana Regeneration Rate", + "type": "enchant" + }, + { + "id": "enchant.stat_4015621042", + "text": "#% increased Energy Shield", + "type": "enchant" + }, + { + "id": "enchant.stat_3299347043", + "text": "# to maximum Life", + "type": "enchant" + }, + { + "id": "enchant.stat_3981240776", + "text": "# to Spirit", + "type": "enchant" + }, + { + "id": "enchant.stat_836936635", + "text": "Regenerate #% of maximum Life per second", + "type": "enchant" + }, + { + "id": "enchant.stat_803737631", + "text": "# to Accuracy Rating", + "type": "enchant" + }, + { + "id": "enchant.stat_1315743832", + "text": "#% increased Thorns damage", + "type": "enchant" + }, + { + "id": "enchant.stat_3336890334", + "text": "Adds # to # Lightning Damage", + "type": "enchant" + }, + { + "id": "enchant.stat_1509134228", + "text": "#% increased Physical Damage", + "type": "enchant" + }, + { + "id": "enchant.stat_1050105434", + "text": "# to maximum Mana", + "type": "enchant" + }, + { + "id": "enchant.stat_2694482655", + "text": "#% to Critical Damage Bonus", + "type": "enchant" + }, + { + "id": "enchant.stat_472520716", + "text": "#% of Damage taken Recouped as Mana", + "type": "enchant" + }, + { + "id": "enchant.stat_210067635", + "text": "#% increased Attack Speed (Local)", + "type": "enchant" + }, + { + "id": "enchant.stat_3429557654", + "text": "Immune to Maim", + "type": "enchant" + }, + { + "id": "enchant.stat_721014846", + "text": "You cannot be Hindered", + "type": "enchant" + }, + { + "id": "enchant.stat_1658498488", + "text": "Corrupted Blood cannot be inflicted on you", + "type": "enchant" + }, + { + "id": "enchant.stat_1444556985", + "text": "#% of Damage taken Recouped as Life", + "type": "enchant" + }, + { + "id": "enchant.stat_1436284579", + "text": "Cannot be Blinded", + "type": "enchant" + }, + { + "id": "enchant.stat_227523295", + "text": "# to Maximum Power Charges", + "type": "enchant" + }, + { + "id": "enchant.stat_1037193709", + "text": "Adds # to # Cold Damage", + "type": "enchant" + }, + { + "id": "enchant.stat_387439868", + "text": "#% increased Elemental Damage with Attacks", + "type": "enchant" + }, + { + "id": "enchant.stat_709508406", + "text": "Adds # to # Fire Damage", + "type": "enchant" + }, + { + "id": "enchant.stat_2154246560", + "text": "#% increased Damage", + "type": "enchant" + }, + { + "id": "enchant.stat_3417711605", + "text": "Damage Penetrates #% Cold Resistance", + "type": "enchant" + }, + { + "id": "enchant.stat_2162097452", + "text": "# to Level of all Minion Skills", + "type": "enchant" + }, + { + "id": "enchant.stat_3556824919", + "text": "#% increased Critical Damage Bonus", + "type": "enchant" + }, + { + "id": "enchant.stat_970213192", + "text": "#% increased Skill Speed", + "type": "enchant" + }, + { + "id": "enchant.stat_3771516363", + "text": "#% additional Physical Damage Reduction", + "type": "enchant" + }, + { + "id": "enchant.stat_3676141501", + "text": "#% to Maximum Cold Resistance", + "type": "enchant" + }, + { + "id": "enchant.stat_2223678961", + "text": "Adds # to # Chaos damage", + "type": "enchant" + }, + { + "id": "enchant.stat_3917489142", + "text": "#% increased Rarity of Items found", + "type": "enchant" + }, + { + "id": "enchant.stat_2901986750", + "text": "#% to all Elemental Resistances", + "type": "enchant" + }, + { + "id": "enchant.stat_818778753", + "text": "Damage Penetrates #% Lightning Resistance", + "type": "enchant" + }, + { + "id": "enchant.stat_1978899297", + "text": "#% to all Maximum Elemental Resistances", + "type": "enchant" + }, + { + "id": "enchant.stat_1999113824", + "text": "#% increased Evasion and Energy Shield", + "type": "enchant" + }, + { + "id": "enchant.stat_2974417149", + "text": "#% increased Spell Damage", + "type": "enchant" + }, + { + "id": "enchant.stat_3321629045", + "text": "#% increased Armour and Energy Shield", + "type": "enchant" + }, + { + "id": "enchant.stat_2653955271", + "text": "Damage Penetrates #% Fire Resistance", + "type": "enchant" + }, + { + "id": "enchant.stat_124859000", + "text": "#% increased Evasion Rating (Local)", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|57190", + "text": "Allocates Doomsayer", + "type": "enchant" + }, + { + "id": "enchant.stat_1776411443", + "text": "Break #% increased Armour", + "type": "enchant" + }, + { + "id": "enchant.stat_3780644166", + "text": "#% increased Freeze Threshold", + "type": "enchant" + }, + { + "id": "enchant.stat_680068163", + "text": "#% increased Stun Threshold", + "type": "enchant" + }, + { + "id": "enchant.stat_1062208444", + "text": "#% increased Armour (Local)", + "type": "enchant" + }, + { + "id": "enchant.stat_1725749947", + "text": "Grants # Rage on Hit", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|30456", + "text": "Allocates High Alert", + "type": "enchant" + }, + { + "id": "enchant.stat_548198834", + "text": "#% increased Melee Strike Range with this weapon", + "type": "enchant" + }, + { + "id": "enchant.stat_2763429652", + "text": "#% chance to Maim on Hit", + "type": "enchant" + }, + { + "id": "enchant.stat_3233599707", + "text": "#% increased Weapon Swap Speed", + "type": "enchant" + }, + { + "id": "enchant.stat_3650992555", + "text": "Debuffs you inflict have #% increased Slow Magnitude", + "type": "enchant" + }, + { + "id": "enchant.stat_4078695", + "text": "# to Maximum Frenzy Charges", + "type": "enchant" + }, + { + "id": "enchant.stat_2482852589", + "text": "#% increased maximum Energy Shield", + "type": "enchant" + }, + { + "id": "enchant.stat_791928121", + "text": "Causes #% increased Stun Buildup", + "type": "enchant" + }, + { + "id": "enchant.stat_2481353198", + "text": "#% increased Block chance (Local)", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|34473", + "text": "Allocates Spaghettification", + "type": "enchant" + }, + { + "id": "enchant.stat_9187492", + "text": "# to Level of all Melee Skills", + "type": "enchant" + }, + { + "id": "enchant.stat_924253255", + "text": "#% increased Slowing Potency of Debuffs on You", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|57388", + "text": "Allocates Overwhelming Strike", + "type": "enchant" + }, + { + "id": "enchant.stat_1368271171", + "text": "Gain # Mana per enemy killed", + "type": "enchant" + }, + { + "id": "enchant.stat_2301191210", + "text": "#% chance to Blind Enemies on hit", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38535", + "text": "Allocates Stormcharged", + "type": "enchant" + }, + { + "id": "enchant.stat_2106365538", + "text": "#% increased Evasion Rating", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42177", + "text": "Allocates Blurred Motion", + "type": "enchant" + }, + { + "id": "enchant.stat_3695891184", + "text": "Gain # Life per enemy killed", + "type": "enchant" + }, + { + "id": "enchant.stat_2866361420", + "text": "#% increased Armour", + "type": "enchant" + }, + { + "id": "enchant.stat_707457662", + "text": "Leech #% of Physical Attack Damage as Mana", + "type": "enchant" + }, + { + "id": "enchant.stat_2250533757", + "text": "#% increased Movement Speed", + "type": "enchant" + }, + { + "id": "enchant.stat_1011760251", + "text": "#% to Maximum Lightning Resistance", + "type": "enchant" + }, + { + "id": "enchant.stat_2557965901", + "text": "Leech #% of Physical Attack Damage as Life", + "type": "enchant" + }, + { + "id": "enchant.stat_2200293569", + "text": "Mana Flasks gain # charges per Second", + "type": "enchant" + }, + { + "id": "enchant.stat_185580205", + "text": "Charms gain # charge per Second", + "type": "enchant" + }, + { + "id": "enchant.stat_1102738251", + "text": "Life Flasks gain # charges per Second", + "type": "enchant" + }, + { + "id": "enchant.stat_1798257884", + "text": "Allies in your Presence deal #% increased Damage", + "type": "enchant" + }, + { + "id": "enchant.stat_3984865854", + "text": "#% increased Spirit", + "type": "enchant" + }, + { + "id": "enchant.stat_2451402625", + "text": "#% increased Armour and Evasion", + "type": "enchant" + }, + { + "id": "enchant.stat_1782086450", + "text": "#% faster start of Energy Shield Recharge", + "type": "enchant" + }, + { + "id": "enchant.stat_737908626", + "text": "#% increased Critical Hit Chance for Spells", + "type": "enchant" + }, + { + "id": "enchant.stat_3057012405", + "text": "Allies in your Presence have #% increased Critical Damage Bonus", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|116", + "text": "Allocates Insightfulness", + "type": "enchant" + }, + { + "id": "enchant.stat_2891184298", + "text": "#% increased Cast Speed", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|44566", + "text": "Allocates Lightning Rod", + "type": "enchant" + }, + { + "id": "enchant.stat_3885634897", + "text": "#% chance to Poison on Hit with this weapon", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|34300", + "text": "Allocates Conservative Casting", + "type": "enchant" + }, + { + "id": "enchant.stat_2122183138", + "text": "# Mana gained when you Block", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32301", + "text": "Allocates Frazzled", + "type": "enchant" + }, + { + "id": "enchant.stat_1545858329", + "text": "# to Level of all Lightning Spell Skills", + "type": "enchant" + }, + { + "id": "enchant.stat_762600725", + "text": "# Life gained when you Block", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4534", + "text": "Allocates Piercing Shot", + "type": "enchant" + }, + { + "id": "enchant.stat_1515657623", + "text": "# to Maximum Endurance Charges", + "type": "enchant" + }, + { + "id": "enchant.stat_4081947835", + "text": "Projectiles have #% chance to Chain an additional time from terrain", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|27303", + "text": "Allocates Vulgar Methods", + "type": "enchant" + }, + { + "id": "enchant.stat_293638271", + "text": "#% increased chance to Shock", + "type": "enchant" + }, + { + "id": "enchant.stat_4095671657", + "text": "#% to Maximum Fire Resistance", + "type": "enchant" + }, + { + "id": "enchant.stat_480796730", + "text": "#% to maximum Block chance", + "type": "enchant" + }, + { + "id": "enchant.stat_2968503605", + "text": "#% increased Flammability Magnitude", + "type": "enchant" + }, + { + "id": "enchant.stat_473429811", + "text": "#% increased Freeze Buildup", + "type": "enchant" + }, + { + "id": "enchant.stat_2321178454", + "text": "#% chance to Pierce an Enemy", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|55193", + "text": "Allocates Subterfuge Mask", + "type": "enchant" + }, + { + "id": "enchant.stat_44972811", + "text": "#% increased Life Regeneration rate", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|11826", + "text": "Allocates Heavy Ammunition", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|28975", + "text": "Allocates Pure Power", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|33099", + "text": "Allocates Hunter's Talisman", + "type": "enchant" + }, + { + "id": "enchant.stat_289128254", + "text": "Allies in your Presence have #% increased Cast Speed", + "type": "enchant" + }, + { + "id": "enchant.stat_1998951374", + "text": "Allies in your Presence have #% increased Attack Speed", + "type": "enchant" + }, + { + "id": "enchant.stat_591105508", + "text": "# to Level of all Fire Spell Skills", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|37266", + "text": "Allocates Nourishing Ally", + "type": "enchant" + }, + { + "id": "enchant.stat_2254480358", + "text": "# to Level of all Cold Spell Skills", + "type": "enchant" + }, + { + "id": "enchant.stat_1600707273", + "text": "# to Level of all Physical Spell Skills", + "type": "enchant" + }, + { + "id": "enchant.stat_4226189338", + "text": "# to Level of all Chaos Spell Skills", + "type": "enchant" + }, + { + "id": "enchant.stat_3885405204", + "text": "Bow Attacks fire # additional Arrows", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|50562", + "text": "Allocates Barbaric Strength", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4031", + "text": "Allocates Icebreaker", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|61703", + "text": "Allocates Sharpened Claw", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|15829", + "text": "Allocates Siphon", + "type": "enchant" + }, + { + "id": "enchant.stat_4236566306", + "text": "Meta Skills gain #% increased Energy", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|65160", + "text": "Allocates Titanic", + "type": "enchant" + }, + { + "id": "enchant.stat_3175163625", + "text": "#% increased Quantity of Gold Dropped by Slain Enemies", + "type": "enchant" + }, + { + "id": "enchant.stat_1519615863", + "text": "#% chance to cause Bleeding on Hit", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5728", + "text": "Allocates Ancient Aegis", + "type": "enchant" + }, + { + "id": "enchant.stat_3377888098", + "text": "#% increased Skill Effect Duration", + "type": "enchant" + }, + { + "id": "enchant.stat_280731498", + "text": "#% increased Area of Effect", + "type": "enchant" + }, + { + "id": "enchant.stat_3398787959", + "text": "Gain #% of Damage as Extra Chaos Damage", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|64851", + "text": "Allocates Flashy Parrying", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|24120", + "text": "Allocates Mental Toughness", + "type": "enchant" + }, + { + "id": "enchant.stat_1004011302", + "text": "#% increased Cooldown Recovery Rate", + "type": "enchant" + }, + { + "id": "enchant.stat_2353576063", + "text": "#% increased Curse Magnitudes", + "type": "enchant" + }, + { + "id": "enchant.stat_1316278494", + "text": "#% increased Warcry Speed", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|26291", + "text": "Allocates Electrifying Nature", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9226", + "text": "Allocates Mental Perseverance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|45599", + "text": "Allocates Lay Siege", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|23227", + "text": "Allocates Initiative", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56453", + "text": "Allocates Killer Instinct", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7809", + "text": "Allocates Wild Storm", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|21380", + "text": "Allocates Preemptive Strike", + "type": "enchant" + }, + { + "id": "enchant.stat_4283407333", + "text": "# to Level of all Skills", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|22864", + "text": "Allocates Tainted Strike", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|59720", + "text": "Allocates Beastial Skin", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|31172", + "text": "Allocates Falcon Technique", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43082", + "text": "Allocates Acceleration", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9736", + "text": "Allocates Insulated Treads", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|62230", + "text": "Allocates Patient Barrier", + "type": "enchant" + }, + { + "id": "enchant.stat_101878827", + "text": "#% increased Presence Area of Effect", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|64543", + "text": "Allocates Unbound Forces", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|40166", + "text": "Allocates Deep Trance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8827", + "text": "Allocates Fast Metabolism", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|44917", + "text": "Allocates Self Mortification", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|57204", + "text": "Allocates Critical Exploit", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|29527", + "text": "Allocates First Approach", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|36085", + "text": "Allocates Serrated Edges", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42077", + "text": "Allocates Essence Infusion", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32354", + "text": "Allocates Defiance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|45612", + "text": "Allocates Defensive Reflexes", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|40480", + "text": "Allocates Harmonic Generator", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|63074", + "text": "Allocates Dark Entries", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|58939", + "text": "Allocates Dispatch Foes", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32071", + "text": "Allocates Primal Growth", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|15374", + "text": "Allocates Hale Heart", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56776", + "text": "Allocates Cooked", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|19044", + "text": "Allocates Arcane Intensity", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|58016", + "text": "Allocates All Natural", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|372", + "text": "Allocates Heatproof", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|16618", + "text": "Allocates Jack of all Trades", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51606", + "text": "Allocates Freedom of Movement", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4295", + "text": "Allocates Adverse Growth", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|11578", + "text": "Allocates Spreading Shocks", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8531", + "text": "Allocates Leaping Ambush", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|18496", + "text": "Allocates Lasting Trauma", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56806", + "text": "Allocates Swift Blocking", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48006", + "text": "Allocates Devastation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|3215", + "text": "Allocates Melding", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|57047", + "text": "Allocates Polymathy", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|50062", + "text": "Allocates Barrier of Venarius", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10681", + "text": "Allocates Defensive Stance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|16256", + "text": "Allocates Ether Flow", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38537", + "text": "Allocates Heartstopping", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53853", + "text": "Allocates Backup Plan", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17955", + "text": "Allocates Careful Consideration", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38888", + "text": "Allocates Unerring Impact", + "type": "enchant" + }, + { + "id": "enchant.stat_1967051901", + "text": "Loads an additional bolt", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|50687", + "text": "Allocates Coursing Energy", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|61601", + "text": "Allocates True Strike", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|50795", + "text": "Allocates Careful Aim", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|49618", + "text": "Allocates Deadly Flourish", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|46060", + "text": "Allocates Voracious", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42302", + "text": "Allocates Split Shot", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|25482", + "text": "Allocates Beef", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|33059", + "text": "Allocates Back in Action", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|46224", + "text": "Allocates Arcane Alchemy", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|26107", + "text": "Allocates Kite Runner", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2511", + "text": "Allocates Sundering", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|65193", + "text": "Allocates Viciousness", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53150", + "text": "Allocates Sharp Sight", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|55060", + "text": "Allocates Shrapnel", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|1546", + "text": "Allocates Spiral into Depression", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|15617", + "text": "Allocates Heavy Drinker", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|63585", + "text": "Allocates Thunderstruck", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9472", + "text": "Allocates Catapult", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|65265", + "text": "Allocates Swift Interruption", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|57110", + "text": "Allocates Infused Flesh", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|27108", + "text": "Allocates Mass Hysteria", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48565", + "text": "Allocates Bringer of Order", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|22967", + "text": "Allocates Vigilance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|27388", + "text": "Allocates Aspiring Genius", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|25619", + "text": "Allocates Sand in the Eyes", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9908", + "text": "Allocates Price of Freedom", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4716", + "text": "Allocates Afterimage", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|37806", + "text": "Allocates Branching Bolts", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|37543", + "text": "Allocates Full Recovery", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42354", + "text": "Allocates Blinding Flash", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|34340", + "text": "Allocates Mass Rejuvenation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|19955", + "text": "Allocates Endless Blizzard", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8810", + "text": "Allocates Multitasking", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53294", + "text": "Allocates Burn Away", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|60269", + "text": "Allocates Roil", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|19125", + "text": "Allocates Potent Incantation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|58397", + "text": "Allocates Proficiency", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|16466", + "text": "Allocates Mental Alacrity", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|14761", + "text": "Allocates Warlord Leader", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53030", + "text": "Allocates Immolation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|46197", + "text": "Allocates Careful Assassin", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|34324", + "text": "Allocates Spectral Ward", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8660", + "text": "Allocates Reverberation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|37514", + "text": "Allocates Whirling Assault", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|46972", + "text": "Allocates Arcane Mixtures", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|19156", + "text": "Allocates Immaterial", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|40213", + "text": "Allocates Taste for Blood", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|18505", + "text": "Allocates Crushing Verdict", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17882", + "text": "Allocates Volatile Grenades", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|28329", + "text": "Allocates Pressure Points", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|41512", + "text": "Allocates Heavy Weaponry", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10998", + "text": "Allocates Strong Chin", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|30341", + "text": "Allocates Master Fletching", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17600", + "text": "Allocates Thirsting Ally", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4959", + "text": "Allocates Heavy Frost", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|25513", + "text": "Allocates Overwhelm", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38972", + "text": "Allocates Restless Dead", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|55149", + "text": "Allocates Pure Chaos", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4673", + "text": "Allocates Hulking Smash", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2021", + "text": "Allocates Wellspring", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|60083", + "text": "Allocates Pin and Run", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|20916", + "text": "Allocates Blinding Strike", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|15644", + "text": "Allocates Shedding Skin", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38479", + "text": "Allocates Close Confines", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17340", + "text": "Allocates Adrenaline Rush", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7341", + "text": "Allocates Ignore Pain", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|21206", + "text": "Allocates Explosive Impact", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|24483", + "text": "Allocates Direct Approach", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10873", + "text": "Allocates Bestial Rage", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5663", + "text": "Allocates Endurance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|54998", + "text": "Allocates Protraction", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|40270", + "text": "Allocates Frenetic", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53935", + "text": "Allocates Briny Carapace", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8791", + "text": "Allocates Sturdy Ally", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17260", + "text": "Allocates Piercing Claw", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|1087", + "text": "Allocates Shockwaves", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|52392", + "text": "Allocates Singular Purpose", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35966", + "text": "Allocates Heart Tissue", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|16626", + "text": "Allocates Impact Area", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|24753", + "text": "Allocates Determined Precision", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|37244", + "text": "Allocates Shield Expertise", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35369", + "text": "Allocates Investing Energies", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38398", + "text": "Allocates Apocalypse", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|31326", + "text": "Allocates Slow Burn", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48974", + "text": "Allocates Altered Brain Chemistry", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|12611", + "text": "Allocates Harness the Elements", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2394", + "text": "Allocates Blade Flurry", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|37742", + "text": "Allocates Manifold Method", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2999", + "text": "Allocates Final Barrage", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10265", + "text": "Allocates Javelin", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|18397", + "text": "Allocates Savoured Blood", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|65023", + "text": "Allocates Impenetrable Shell", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5284", + "text": "Allocates Shredding Force", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|24240", + "text": "Allocates Time Manipulation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17330", + "text": "Allocates Perforation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35855", + "text": "Allocates Fortifying Blood", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53823", + "text": "Allocates Towering Shield", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|20032", + "text": "Allocates Erraticism", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38053", + "text": "Allocates Deafening Cries", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4931", + "text": "Allocates Dependable Ward", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4709", + "text": "Allocates Near Sighted", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|20677", + "text": "Allocates For the Jugular", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|20388", + "text": "Allocates Regenerative Flesh", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|44330", + "text": "Allocates Coated Arms", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|47363", + "text": "Allocates Colossal Weapon", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|45488", + "text": "Allocates Cross Strike", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|61444", + "text": "Allocates Wasting Casts", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|39990", + "text": "Allocates Chronomancy", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|6304", + "text": "Allocates Stand Ground", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5227", + "text": "Allocates Escape Strategy", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|39083", + "text": "Allocates Blood Rush", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56997", + "text": "Allocates Heavy Contact", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|23764", + "text": "Allocates Alternating Current", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|18419", + "text": "Allocates Ancestral Mending", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7668", + "text": "Allocates Internal Bleeding", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|29762", + "text": "Allocates Guttural Roar", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|11838", + "text": "Allocates Dreamcatcher", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|25620", + "text": "Allocates Meat Recycling", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|26339", + "text": "Allocates Ancestral Artifice", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7302", + "text": "Allocates Echoing Pulse", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|3921", + "text": "Allocates Fate Finding", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|49550", + "text": "Allocates Prolonged Fury", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|26518", + "text": "Allocates Cold Nature", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|14934", + "text": "Allocates Spiral into Mania", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|13542", + "text": "Allocates Loose Flesh", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|37872", + "text": "Allocates Presence Present", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|40325", + "text": "Allocates Resolution", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|36507", + "text": "Allocates Vile Mending", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|27950", + "text": "Allocates Polished Iron", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7163", + "text": "Allocates Stimulants", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7395", + "text": "Allocates Retaliation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35849", + "text": "Allocates Thickened Arteries", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|13724", + "text": "Allocates Deadly Force", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51602", + "text": "Allocates Unsight", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|61404", + "text": "Allocates Equilibrium", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|34308", + "text": "Allocates Personal Touch", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|6133", + "text": "Allocates Core of the Guardian", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48774", + "text": "Allocates Taut Flesh", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|6229", + "text": "Allocates Push the Advantage", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7651", + "text": "Allocates Pierce the Heart", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|11526", + "text": "Allocates Sniper", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|31925", + "text": "Allocates Warding Fetish", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|31175", + "text": "Allocates Grip of Evil", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|45013", + "text": "Allocates Finishing Blows", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51105", + "text": "Allocates Spirit Bond", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|1352", + "text": "Allocates Unbending", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|55568", + "text": "Allocates Forthcoming", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|49088", + "text": "Allocates Splintering Force", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56999", + "text": "Allocates Locked On", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|39369", + "text": "Allocates Struck Through", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|46696", + "text": "Allocates Impair", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|19236", + "text": "Allocates Projectile Bulwark", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4627", + "text": "Allocates Climate Change", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|44005", + "text": "Allocates Casting Cascade", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|63830", + "text": "Allocates Marked for Sickness", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51446", + "text": "Allocates Leather Bound Gauntlets", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|57471", + "text": "Allocates Hunker Down", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38614", + "text": "Allocates Psychic Fragmentation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43711", + "text": "Allocates Thornhide", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|14945", + "text": "Allocates Growing Swarm", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2138", + "text": "Allocates Spiral into Insanity", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|39347", + "text": "Allocates Breaking Blows", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|62185", + "text": "Allocates Rattled", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|47418", + "text": "Allocates Warding Potions", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|14324", + "text": "Allocates Arcane Blossom", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2486", + "text": "Allocates Stars Aligned", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|19722", + "text": "Allocates Thin Ice", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|6514", + "text": "Allocates Cacophony", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|11376", + "text": "Allocates Necrotic Touch", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5580", + "text": "Allocates Watchtowers", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|57805", + "text": "Allocates Clear Space", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|31364", + "text": "Allocates Primal Protection", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|20416", + "text": "Allocates Grit", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35876", + "text": "Allocates Admonisher", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|58426", + "text": "Allocates Pocket Sand", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38342", + "text": "Allocates Stupefy", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|58714", + "text": "Allocates Grenadier", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|22626", + "text": "Allocates Irreparable", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|21164", + "text": "Allocates Fleshcrafting", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|57379", + "text": "Allocates In Your Face", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|13738", + "text": "Allocates Lightning Quick", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|27687", + "text": "Allocates Greatest Defence", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38895", + "text": "Allocates Crystal Elixir", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|33216", + "text": "Allocates Deep Wounds", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10423", + "text": "Allocates Exposed to the Inferno", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|31433", + "text": "Allocates Catalysis", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|61026", + "text": "Allocates Crystalline Flesh", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|62609", + "text": "Allocates Ancestral Unity", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|55", + "text": "Allocates Fast Acting Toxins", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51820", + "text": "Allocates Ancestral Conduits", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43396", + "text": "Allocates Ancestral Reach", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|14383", + "text": "Allocates Suffusion", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10772", + "text": "Allocates Bloodthirsty", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|1169", + "text": "Allocates Urgent Call", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|16816", + "text": "Allocates Pinpoint Shot", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|26331", + "text": "Allocates Harsh Winter", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|44756", + "text": "Allocates Marked Agility", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32507", + "text": "Allocates Cut to the Bone", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|29372", + "text": "Allocates Sudden Infuriation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42036", + "text": "Allocates Off-Balancing Retort", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|28963", + "text": "Allocates Chakra of Rhythm", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|27491", + "text": "Allocates Heavy Buffer", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|41972", + "text": "Allocates Glaciation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48103", + "text": "Allocates Forcewave", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|45632", + "text": "Allocates Mind Eraser", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|62887", + "text": "Allocates Living Death", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|25971", + "text": "Allocates Tenfold Attacks", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|26070", + "text": "Allocates Bolstering Yell", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|55847", + "text": "Allocates Ice Walls", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43939", + "text": "Allocates Melting Flames", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17548", + "text": "Allocates Moment of Truth", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51871", + "text": "Allocates Immortal Thirst", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|47782", + "text": "Allocates Steady Footing", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|46384", + "text": "Allocates Wide Barrier", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17029", + "text": "Allocates Blade Catcher", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|47441", + "text": "Allocates Stigmata", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51707", + "text": "Allocates Enhanced Reflexes", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|21537", + "text": "Allocates Fervour", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|24438", + "text": "Allocates Hardened Wood", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10602", + "text": "Allocates Reaving", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2575", + "text": "Allocates Ancestral Alacrity", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|29514", + "text": "Allocates Cluster Bombs", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|63451", + "text": "Allocates Cranial Impact", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48014", + "text": "Allocates Honourless", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|28482", + "text": "Allocates Total Incineration", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|49661", + "text": "Allocates Perfectly Placed Knife", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7062", + "text": "Allocates Reusable Ammunition", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|25711", + "text": "Allocates Thrill of Battle", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|49984", + "text": "Allocates Spellblade", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|46692", + "text": "Allocates Efficient Alchemy", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4985", + "text": "Allocates Flip the Script", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|47635", + "text": "Allocates Overload", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9187", + "text": "Allocates Escalation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10398", + "text": "Allocates Sudden Escalation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|44373", + "text": "Allocates Wither Away", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|11366", + "text": "Allocates Volcanic Skin", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|30523", + "text": "Allocates Dead can Dance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|52348", + "text": "Allocates Carved Earth", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43090", + "text": "Allocates Electrotherapy", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|54911", + "text": "Allocates Firestarter", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|64119", + "text": "Allocates Rapid Reload", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17854", + "text": "Allocates Escape Velocity", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53527", + "text": "Allocates Shattering Blow", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35564", + "text": "Allocates Turn the Clock Back", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8957", + "text": "Allocates Right Hand of Darkness", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|3188", + "text": "Allocates Revenge", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17229", + "text": "Allocates Silent Guardian", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|55180", + "text": "Allocates Relentless Fallen", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|61112", + "text": "Allocates Roll and Strike", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8483", + "text": "Allocates Ruin", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|40117", + "text": "Allocates Spiked Armour", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35809", + "text": "Allocates Reinvigoration", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|3985", + "text": "Allocates Forces of Nature", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38628", + "text": "Allocates Escalating Toxins", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5802", + "text": "Allocates Stand and Deliver", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|19442", + "text": "Allocates Prolonged Assault", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|40803", + "text": "Allocates Sigil of Ice", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|54148", + "text": "Allocates Smoke Inhalation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53921", + "text": "Allocates Unbreaking", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35477", + "text": "Allocates Far Sighted", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|21453", + "text": "Allocates Breakage", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|6178", + "text": "Allocates Power Shots", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|55835", + "text": "Allocates Exposed to the Cosmos", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|19249", + "text": "Allocates Supportive Ancestors", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|61741", + "text": "Allocates Lasting Toxins", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|63759", + "text": "Allocates Stacking Toxins", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|3567", + "text": "Allocates Raw Mana", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8904", + "text": "Allocates Death from Afar", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|60692", + "text": "Allocates Echoing Flames", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|20397", + "text": "Allocates Authority", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2645", + "text": "Allocates Skullcrusher", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|12750", + "text": "Allocates Vale Shelter", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|13980", + "text": "Allocates Split the Earth", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|50253", + "text": "Allocates Aftershocks", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|31373", + "text": "Allocates Vocal Empowerment", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|3698", + "text": "Allocates Spike Pit", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|52618", + "text": "Allocates Boon of the Beast", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|28267", + "text": "Allocates Desensitisation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9227", + "text": "Allocates Focused Thrust", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9968", + "text": "Allocates Feel the Earth", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51934", + "text": "Allocates Invocated Efficiency", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|23940", + "text": "Allocates Fortified Aegis", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42959", + "text": "Allocates Low Tolerance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|13407", + "text": "Allocates Heartbreaking", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10295", + "text": "Allocates Overzealous", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|63255", + "text": "Allocates Savagery", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|46296", + "text": "Allocates Short Shot", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|36808", + "text": "Allocates Spiked Shield", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42390", + "text": "Allocates Overheating Blow", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56893", + "text": "Allocates Thicket Warding", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|33093", + "text": "Allocates Effervescent", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8273", + "text": "Allocates Endless Circuit", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|23078", + "text": "Allocates Holy Protector", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|20414", + "text": "Allocates Reprisal", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|1823", + "text": "Allocates Illuminated Crown", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42981", + "text": "Allocates Cruel Methods", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5703", + "text": "Allocates Echoing Thunder", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|33887", + "text": "Allocates Full Salvo", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|37276", + "text": "Allocates Battle Trance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|24655", + "text": "Allocates Breath of Fire", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|46499", + "text": "Allocates Guts", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4238", + "text": "Allocates Versatile Arms", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|33240", + "text": "Allocates Lord of Horrors", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|59589", + "text": "Allocates Heavy Armour", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|60138", + "text": "Allocates Stylebender", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51509", + "text": "Allocates Waters of Life", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51891", + "text": "Allocates Lucidity", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|18086", + "text": "Allocates Breath of Ice", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|45713", + "text": "Allocates Savouring", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56063", + "text": "Allocates Lingering Horror", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|46024", + "text": "Allocates Sigil of Lightning", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|41905", + "text": "Allocates Gravedigger", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48658", + "text": "Allocates Shattering", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|26447", + "text": "Allocates Refocus", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|59303", + "text": "Allocates Lucky Rabbit Foot", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|23362", + "text": "Allocates Slippery Ice", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43677", + "text": "Allocates Crippling Toxins", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|36976", + "text": "Allocates Marked for Death", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|33978", + "text": "Allocates Unstoppable Barrier", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|19644", + "text": "Allocates Left Hand of Darkness", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|13457", + "text": "Allocates Shadow Dancing", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|27009", + "text": "Allocates Lust for Sacrifice", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|62803", + "text": "Allocates Woodland Aspect", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|23427", + "text": "Allocates Chilled to the Bone", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32664", + "text": "Allocates Chakra of Breathing", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8554", + "text": "Allocates Burning Nature", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|59541", + "text": "Allocates Necrotised Flesh", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|30392", + "text": "Allocates Succour", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|23221", + "text": "Allocates Trick Shot", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|23738", + "text": "Allocates Madness in the Bones", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35324", + "text": "Allocates Burnout", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42813", + "text": "Allocates Tides of Change", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|58183", + "text": "Allocates Blood Tearing", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35739", + "text": "Allocates Crushing Judgement", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|31189", + "text": "Allocates Unexpected Finesse", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7777", + "text": "Allocates Breaking Point", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|58096", + "text": "Allocates Lasting Incantations", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5257", + "text": "Allocates Echoing Frost", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|336", + "text": "Allocates Storm Swell", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|64443", + "text": "Allocates Impact Force", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|64240", + "text": "Allocates Battle Fever", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|13895", + "text": "Allocates Precise Point", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17254", + "text": "Allocates Spell Haste", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|39567", + "text": "Allocates Ingenuity", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|27626", + "text": "Allocates Touch the Arcane", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|36623", + "text": "Allocates Convalescence", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|62310", + "text": "Allocates Incendiary", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56616", + "text": "Allocates Desperate Times", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8831", + "text": "Allocates Tempered Mind", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|60464", + "text": "Allocates Fan the Flames", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|40345", + "text": "Allocates Master of Hexes", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|36364", + "text": "Allocates Electrocution", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|19715", + "text": "Allocates Cremation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53941", + "text": "Allocates Shimmering", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32353", + "text": "Allocates Swift Claw", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|14777", + "text": "Allocates Bravado", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43423", + "text": "Allocates Emboldened Avatar", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|934", + "text": "Allocates Natural Immunity", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|63431", + "text": "Allocates Leeching Toxins", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2335", + "text": "Allocates Turn the Clock Forward", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|12998", + "text": "Allocates Warm the Heart", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|24630", + "text": "Allocates Fulmination", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51213", + "text": "Allocates Wasting", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|14343", + "text": "Allocates Deterioration", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|36341", + "text": "Allocates Cull the Hordes", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8881", + "text": "Allocates Unforgiving", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35028", + "text": "Allocates In the Thick of It", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|30720", + "text": "Allocates Entropic Incarnation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7604", + "text": "Allocates Rapid Strike", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|44952", + "text": "Allocates Made to Last", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|16499", + "text": "Allocates Lingering Whispers", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|54937", + "text": "Allocates Vengeful Fury", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48581", + "text": "Allocates Exploit the Elements", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35581", + "text": "Allocates Near at Hand", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2863", + "text": "Allocates Perpetual Freeze", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9421", + "text": "Allocates Snowpiercer", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10029", + "text": "Allocates Repulsion", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17372", + "text": "Allocates Reaching Strike", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|41580", + "text": "Allocates Maiming Strike", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|23939", + "text": "Allocates Glazed Flesh", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|28044", + "text": "Allocates Coming Calamity", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|59214", + "text": "Allocates Fated End", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42065", + "text": "Allocates Surging Currents", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|24062", + "text": "Allocates Immortal Infamy", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|54990", + "text": "Allocates Bloodletting", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38969", + "text": "Allocates Finesse", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|3492", + "text": "Allocates Void", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|27176", + "text": "Allocates The Power Within", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|65468", + "text": "Allocates Repeating Explosives", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4447", + "text": "Allocates Pin their Motivation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|1104", + "text": "Allocates Lust for Power", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9444", + "text": "Allocates One with the Storm", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32951", + "text": "Allocates Preservation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|65016", + "text": "Allocates Intense Flames", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32976", + "text": "Allocates Gem Enthusiast", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9020", + "text": "Allocates Giantslayer", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|13708", + "text": "Allocates Curved Weapon", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|44765", + "text": "Allocates Distracting Presence", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17762", + "text": "Allocates Vengeance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|60764", + "text": "Allocates Feathered Fletching", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|40990", + "text": "Allocates Exposed to the Storm", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17150", + "text": "Allocates General's Bindings", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|6655", + "text": "Allocates Aggravation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48240", + "text": "Allocates Quick Recovery", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51129", + "text": "Allocates Pile On", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|45244", + "text": "Allocates Refills", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|27875", + "text": "Allocates General Electric", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|54805", + "text": "Allocates Hindered Capabilities", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|6544", + "text": "Allocates Burning Strikes", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|12337", + "text": "Allocates Flash Storm", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51394", + "text": "Allocates Unimpeded", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|37408", + "text": "Allocates Staunching", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|15986", + "text": "Allocates Building Toxins", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|30562", + "text": "Allocates Inner Faith", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|13823", + "text": "Allocates Controlling Magic", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|34531", + "text": "Allocates Hallowed", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|41811", + "text": "Allocates Shatter Palm", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43829", + "text": "Allocates Advanced Munitions", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38111", + "text": "Allocates Pliable Flesh", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|60034", + "text": "Allocates Falcon Dive", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5009", + "text": "Allocates Seeing Stars", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|39050", + "text": "Allocates Exploit", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|39881", + "text": "Allocates Staggering Palm", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|52199", + "text": "Allocates Overexposure", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|47270", + "text": "Allocates Inescapable Cold", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|61338", + "text": "Allocates Breath of Lightning", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|52191", + "text": "Allocates Event Horizon", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|44299", + "text": "Allocates Enhanced Barrier", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|62034", + "text": "Allocates Prism Guard", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|40073", + "text": "Allocates Drenched", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|12661", + "text": "Allocates Asceticism", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|15083", + "text": "Allocates Power Conduction", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56265", + "text": "Allocates Throatseeker", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|3894", + "text": "Allocates Eldritch Will", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|34316", + "text": "Allocates One with the River", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|3688", + "text": "Allocates Dynamism", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|52803", + "text": "Allocates Hale Traveller", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|47316", + "text": "Allocates Goring", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|61921", + "text": "Allocates Storm Surge", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|63037", + "text": "Allocates Sigil of Fire", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|40399", + "text": "Allocates Energise", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|60404", + "text": "Allocates Perfect Opportunity", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|18308", + "text": "Allocates Bleeding Out", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|21748", + "text": "Allocates Impending Doom", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|52971", + "text": "Allocates The Soul Meridian", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43139", + "text": "Allocates Stormbreaker", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|55708", + "text": "Allocates Electric Amplification", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|50485", + "text": "Allocates Zone of Control", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48418", + "text": "Allocates Hefty Unit", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|65204", + "text": "Allocates Overflowing Power", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2113", + "text": "Allocates Martial Artistry", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|49740", + "text": "Allocates Shattered Crystal", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51169", + "text": "Allocates Soul Bloom", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4547", + "text": "Allocates Unnatural Resilience", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|26563", + "text": "Allocates Bone Chains", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|31826", + "text": "Allocates Long Distance Relationship", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|52764", + "text": "Allocates Mystical Rage", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|30132", + "text": "Allocates Wrapped Quiver", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51867", + "text": "Allocates Finality", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48734", + "text": "Allocates The Howling Primate", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|50884", + "text": "Allocates Primal Sundering", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|31129", + "text": "Allocates Lifelong Friend", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|61104", + "text": "Allocates Staggering Wounds", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17664", + "text": "Allocates Decisive Retreat", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|62455", + "text": "Allocates Bannerman", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|65243", + "text": "Allocates Enveloping Presence", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|54814", + "text": "Allocates Profane Commander", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10315", + "text": "Allocates Easy Going", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|27761", + "text": "Allocates Counterstancing", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32655", + "text": "Allocates Hunting Companion", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|36630", + "text": "Allocates Incision", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|19337", + "text": "Allocates Precision Salvo", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|30748", + "text": "Allocates Controlled Chaos", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4661", + "text": "Allocates Inspiring Leader", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|12822", + "text": "Allocates Adaptable Assault", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|16150", + "text": "Allocates Inspiring Ally", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|15030", + "text": "Allocates Consistent Intake", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|22817", + "text": "Allocates Inevitable Rupture", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|20008", + "text": "Allocates Unleash Fire", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|21349", + "text": "Allocates The Quick Fox", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43791", + "text": "Allocates Rallying Icon", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7338", + "text": "Allocates Abasement", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|16790", + "text": "Allocates Efficient Casting", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|14294", + "text": "Allocates Sacrificial Blood", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|18485", + "text": "Allocates Unstable Bond", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53367", + "text": "Allocates Symbol of Defiance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|14211", + "text": "Allocates Shredding Contraptions", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43944", + "text": "Allocates Instability", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42714", + "text": "Allocates Thousand Cuts", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42032", + "text": "Allocates Escalating Mayhem", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|33585", + "text": "Allocates Unspoken Bond", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5335", + "text": "Allocates Shimmering Mirage", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|60992", + "text": "Allocates Nurturing Guardian", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|30408", + "text": "Allocates Efficient Contraptions", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38459", + "text": "Allocates Disorientation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|44293", + "text": "Allocates Hastening Barrier", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|94", + "text": "Allocates Efficient Killing", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32543", + "text": "Allocates Unhindered", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5332", + "text": "Allocates Crystallised Immunities", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|41753", + "text": "Allocates Evocational Practitioner", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56493", + "text": "Allocates Agile Succession", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8782", + "text": "Allocates Empowering Infusions", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56767", + "text": "Allocates Electrifying Daze", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43088", + "text": "Allocates Agonising Calamity", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|36931", + "text": "Allocates Concussive Attack", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5410", + "text": "Allocates Channelled Heritage", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|27513", + "text": "Allocates Material Solidification", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42760", + "text": "Allocates Chakra of Stability", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42103", + "text": "Allocates Enduring Deflection", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56488", + "text": "Allocates Glancing Deflection", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35031", + "text": "Allocates Chakra of Life", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56988", + "text": "Allocates Electric Blood", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|64525", + "text": "Allocates Easy Target", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38570", + "text": "Allocates Demolitionist", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|12412", + "text": "Allocates Temporal Mastery", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8896", + "text": "Allocates Agile Sprinter", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|50912", + "text": "Allocates Imbibed Power", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|750", + "text": "Allocates Tribal Fury", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|29288", + "text": "Allocates Deadly Invocations", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|36333", + "text": "Allocates Explosive Empowerment", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48215", + "text": "Allocates Headshot", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|11392", + "text": "Allocates Molten Being", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|29306", + "text": "Allocates Chakra of Thought", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|25362", + "text": "Allocates Chakra of Impact", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|63579", + "text": "Allocates Momentum", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2397", + "text": "Allocates Last Stand", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|40687", + "text": "Allocates Lead by Example", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|58215", + "text": "Allocates Sanguimantic Rituals", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35792", + "text": "Allocates Blood of Rage", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42245", + "text": "Allocates Efficient Inscriptions", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9290", + "text": "Allocates Rusted Pins", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10499", + "text": "Allocates Necromantic Ward", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|338", + "text": "Allocates Invocated Limit", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|50673", + "text": "Allocates Avoiding Deflection", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|41033", + "text": "Allocates Utmost Offering", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7275", + "text": "Allocates Electrocuting Exposure", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|59208", + "text": "Allocates Frantic Fighter", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|64650", + "text": "Allocates Wary Dodging", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|46683", + "text": "Allocates Inherited Strength ", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53187", + "text": "Allocates Warlord Berserker", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53131", + "text": "Allocates Tukohama's Brew", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35560", + "text": "Allocates At your Command", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|47514", + "text": "Allocates Dizzying Hits", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9896", + "text": "Allocates Heartstopping Presence", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7847", + "text": "Allocates The Fabled Stag", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53185", + "text": "Allocates The Winter Owl", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|47088", + "text": "Allocates Sic 'Em", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9652", + "text": "Allocates Mending Deflection", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|52245", + "text": "Allocates Distant Dreamer", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|34908", + "text": "Allocates Staunch Deflection", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|31745", + "text": "Allocates Lockdown", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38965", + "text": "Allocates Infused Limits", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|13524", + "text": "Allocates Everlasting Glory", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|49150", + "text": "Allocates Precise Invocations", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|57785", + "text": "Allocates Trained Turrets", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|24766", + "text": "Allocates Paranoia", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|1603", + "text": "Allocates Storm Driven", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|50715", + "text": "Allocates Frozen Limit", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|24087", + "text": "Allocates Everlasting Infusions", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|34553", + "text": "Allocates Emboldening Lead", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|37302", + "text": "Allocates Kept at Bay", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|55131", + "text": "Allocates Light on your Feet", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|15443", + "text": "Allocates Endured Suffering", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10774", + "text": "Allocates Unyielding", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|41394", + "text": "Allocates Invigorating Archon", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7782", + "text": "Allocates Rupturing Pins", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42347", + "text": "Allocates Chakra of Sight", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|62963", + "text": "Allocates Flamewalker", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|64415", + "text": "Allocates Shattering Daze", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|29800", + "text": "Allocates Shocking Limit", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|15991", + "text": "Allocates Embodiment of Lightning", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|23736", + "text": "Allocates Spray and Pray", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48617", + "text": "Allocates Hunter", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4544", + "text": "Allocates The Ancient Serpent", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|20511", + "text": "Allocates Cremating Cries", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|63541", + "text": "Allocates Brush Off", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53683", + "text": "Allocates Efficient Loading", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|11774", + "text": "Allocates The Spring Hare", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5594", + "text": "Allocates Decrepifying Curse", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|45751", + "text": "Allocates Frightening Shield", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|31773", + "text": "Allocates Resurging Archon", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|63400", + "text": "Allocates Chakra of Elements", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|27434", + "text": "Allocates Archon of the Storm", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|45177", + "text": "Allocates Strike True", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|40292", + "text": "Allocates Nimble Strength", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|24764", + "text": "Allocates Infusing Power", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|59070", + "text": "Allocates Enduring Archon", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|28613", + "text": "Allocates Roaring Cries", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|34425", + "text": "Allocates Precise Volatility", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43633", + "text": "Allocates Energising Archon", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8607", + "text": "Allocates Lavianga's Brew", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|12906", + "text": "Allocates Sitting Duck", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|51868", + "text": "Allocates Molten Carapace", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5642", + "text": "Allocates Behemoth", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|28542", + "text": "Allocates The Molten One's Gift", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56112", + "text": "Allocates Extinguishing Exhalation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17825", + "text": "Allocates Tactical Retreat", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53607", + "text": "Allocates Fortified Location", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|34543", + "text": "Allocates The Frenzied Bear", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4810", + "text": "Allocates Sanguine Tolerance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|58817", + "text": "Allocates Artillery Strike", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56388", + "text": "Allocates Reinforced Rallying", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|61354", + "text": "Allocates Infernal Limit", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48524", + "text": "Allocates Blood Transfusion", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5686", + "text": "Allocates Chillproof", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|63739", + "text": "Allocates Vigorous Remnants", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32799", + "text": "Allocates Captivating Companionship", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|50023", + "text": "Allocates Invigorating Grandeur", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56016", + "text": "Allocates Passthrough Rounds", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|20251", + "text": "Allocates Splitting Ground", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|41620", + "text": "Allocates Bear's Roar", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|52180", + "text": "Allocates Trained Deflection", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10612", + "text": "Allocates Embodiment of Frost", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4579", + "text": "Allocates Unbothering Cold", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|60273", + "text": "Allocates Hindering Obstacles", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17303", + "text": "Allocates Utility Ordnance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|52257", + "text": "Allocates Conductive Embrace", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|18157", + "text": "Allocates Tempered Defences", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|25211", + "text": "Allocates Waning Hindrances", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|19546", + "text": "Allocates Favourable Odds", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|26356", + "text": "Allocates Primed to Explode", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|45329", + "text": "Allocates Delayed Danger", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10500", + "text": "Allocates Dazing Blocks", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|28441", + "text": "Allocates Frantic Swings", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32721", + "text": "Allocates Distracted Target", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|34541", + "text": "Allocates Energising Deflection", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|33922", + "text": "Allocates Stripped Defences", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|23630", + "text": "Allocates Self Immolation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|64659", + "text": "Allocates Lasting Boons", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|13515", + "text": "Allocates Stormwalker", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8397", + "text": "Allocates Empowering Remains", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|65256", + "text": "Allocates Widespread Coverage", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|47420", + "text": "Allocates Expendable Army", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53566", + "text": "Allocates Run and Gun", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|23244", + "text": "Allocates Bounty Hunter", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2745", + "text": "Allocates The Noble Wolf", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9928", + "text": "Allocates Embracing Frost", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|64050", + "text": "Allocates Marathon Runner", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|46124", + "text": "Allocates Arcane Remnants", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|24491", + "text": "Allocates Invocated Echoes", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|22811", + "text": "Allocates The Wild Cat", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|52229", + "text": "Allocates Secrets of the Orb", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|4331", + "text": "Allocates Guided Hand", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|33229", + "text": "Allocates Haemorrhaging Cuts", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35918", + "text": "Allocates One For All", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56860", + "text": "Allocates Resolute Reprisal", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|46365", + "text": "Allocates Gigantic Following", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48699", + "text": "Allocates Frostwalker", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|50392", + "text": "Allocates Brute Strength", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|29899", + "text": "Allocates Finish Them", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|22532", + "text": "Allocates Fearful Paralysis", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32151", + "text": "Allocates Crystalline Resistance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|13482", + "text": "Allocates Punctured Lung", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|54031", + "text": "Allocates The Great Boar", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|63031", + "text": "Allocates Glorious Anticipation", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2134", + "text": "Allocates Toxic Tolerance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42045", + "text": "Allocates Archon of the Blizzard", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7449", + "text": "Allocates Splinters", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|40985", + "text": "Allocates Empowering Remnants", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|52684", + "text": "Allocates Eroding Chains", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32448", + "text": "Allocates Shockproof", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|12964", + "text": "Allocates Lone Warrior", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|44753", + "text": "Allocates One With Flame", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|45370", + "text": "Allocates The Raging Ox", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|15606", + "text": "Allocates Thrill of the Fight", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|26479", + "text": "Allocates Steadfast Resolve", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43854", + "text": "Allocates All For One", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2843", + "text": "Allocates Tolerant Equipment", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|21784", + "text": "Allocates Pack Encouragement", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|59387", + "text": "Allocates Infusion of Power", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7128", + "text": "Allocates Dangerous Blossom", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42660", + "text": "Allocates Commanding Rage", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|25753", + "text": "Allocates Blazing Arms", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32932", + "text": "Allocates Ichlotl's Inferno", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48925", + "text": "Allocates Blessing of the Moon", + "type": "enchant" + }, + { + "id": "enchant.stat_2017682521", + "text": "#% increased Pack Size", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|29881", + "text": "Allocates Surging Beast", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|8916", + "text": "Allocates Bashing Beast", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|30546", + "text": "Allocates Electrified Claw", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|20558", + "text": "Allocates Among the Hordes", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17725", + "text": "Allocates Bonded Precision", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|16940", + "text": "Allocates Arcane Nature", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|57921", + "text": "Allocates Wolf's Howl", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|33542", + "text": "Allocates Quick Fingers", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9328", + "text": "Allocates Spirit of the Bear", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38532", + "text": "Allocates Thirst for Power", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2814", + "text": "Allocates Engineered Blaze", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|1506", + "text": "Allocates Remnant Attraction", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|59433", + "text": "Allocates Thirst for Endurance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|28892", + "text": "Allocates Primal Rage", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43584", + "text": "Allocates Flare", + "type": "enchant" + }, + { + "id": "enchant.stat_2306002879", + "text": "#% increased Rarity of Items found", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|39884", + "text": "Allocates Searing Heat", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|31724", + "text": "Allocates Iron Slippers", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|60619", + "text": "Allocates Scales of the Wyvern", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35417", + "text": "Allocates Wyvern's Breath", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|33730", + "text": "Allocates Focused Channel", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|55375", + "text": "Allocates Licking Wounds", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|36100", + "text": "Allocates Molten Claw", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|53265", + "text": "Allocates Nature's Bite", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|42070", + "text": "Allocates Saqawal's Guidance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|49214", + "text": "Allocates Blood of the Wolf", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|55817", + "text": "Allocates Alchemical Oil", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|26104", + "text": "Allocates Spirit of the Wyvern", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|57617", + "text": "Allocates Shifted Strikes", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|48649", + "text": "Allocates Insulating Hide", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|7542", + "text": "Allocates Encompassing Domain", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|58198", + "text": "Allocates Well of Power", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|14602", + "text": "Allocates Specialised Shots", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|46182", + "text": "Allocates Intense Dose", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|59938", + "text": "Allocates Against the Elements", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|18959", + "text": "Allocates Ruinic Helm", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|20289", + "text": "Allocates Frozen Claw", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|41935", + "text": "Allocates Hide of the Bear", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|16142", + "text": "Allocates Deep Freeze", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|11886", + "text": "Allocates Mauling Stuns", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9323", + "text": "Allocates Craving Slaughter", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|12245", + "text": "Allocates Arsonist", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|10727", + "text": "Allocates Emboldening Casts", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56714", + "text": "Allocates Swift Flight", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|38329", + "text": "Allocates Biting Frost", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|1502", + "text": "Allocates Draiocht Cleansing", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56237", + "text": "Allocates Enhancing Attacks", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|55308", + "text": "Allocates Sling Shots", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|54640", + "text": "Allocates Constricting", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|44974", + "text": "Allocates Hail", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9009", + "text": "Allocates Return to Nature", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32858", + "text": "Allocates Dread Engineer's Concoction", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|2344", + "text": "Allocates Dimensional Weakspot", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35618", + "text": "Allocates Cold Coat", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|30395", + "text": "Allocates Howling Beast", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|3348", + "text": "Allocates Spirit of the Wolf", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|15114", + "text": "Allocates Boundless Growth", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|28408", + "text": "Allocates Invigorating Hate", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|55450", + "text": "Allocates Rallying Form", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|45777", + "text": "Allocates Hidden Barb", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9535", + "text": "Allocates Brinerot Ferocity", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|43250", + "text": "Allocates Adaptive Skin", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|261", + "text": "Allocates Toxic Sludge", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|47560", + "text": "Allocates Multi Shot", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|17696", + "text": "Allocates Augmented Flesh", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|45874", + "text": "Allocates Proliferating Weeds", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35743", + "text": "Allocates Saqawal's Hide", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|31955", + "text": "Allocates Voll's Protection", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|59438", + "text": "Allocates Flow of Life", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|35046", + "text": "Allocates Mystic Avalanche", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|62237", + "text": "Allocates Saqawal's Talon", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|27704", + "text": "Allocates Grace of the Ancestors", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|13844", + "text": "Allocates Growing Peril", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|34617", + "text": "Allocates Conall the Hunted", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|22726", + "text": "Allocates Storm's Rebuke", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|32128", + "text": "Allocates Flow of Time", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|20686", + "text": "Allocates Paragon", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|44573", + "text": "Allocates Disciplined Training", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|33400", + "text": "Allocates Reverberating Parry", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|37967", + "text": "Allocates Desert's Scorn", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|56666", + "text": "Allocates Thaumaturgic Generator", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|34478", + "text": "Allocates Bond of the Viper", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|5191", + "text": "Allocates Bond of the Wolf", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|26926", + "text": "Allocates Archon of Undeath", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|14258", + "text": "Allocates Puppet Master chance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|21213", + "text": "Allocates Cirel of Tarth's Light", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|58894", + "text": "Allocates Dominus' Providence", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|39911", + "text": "Allocates Frantic Reach", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|1420", + "text": "Allocates Dizzying Sweep", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|15825", + "text": "Allocates Bhatair's Storm", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|26214", + "text": "Allocates Dominion", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|59781", + "text": "Allocates Embodiment of Death", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|712", + "text": "Allocates Bond of the Ape", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|37846", + "text": "Allocates Bastion of Light", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|59657", + "text": "Allocates First Teachings of the Keeper", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|3663", + "text": "Allocates Kaom's Blessing", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|64770", + "text": "Allocates Morgana, the Storm Seer", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|39568", + "text": "Allocates Magnum Opus", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|24736", + "text": "Allocates Knight of Chitus", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|9863", + "text": "Allocates Knight of Izaro", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|1448", + "text": "Allocates Bond of the Cat", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|49356", + "text": "Allocates First Principle of the Hollow", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|21251", + "text": "Allocates Replenishing Horde", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|50239", + "text": "Allocates Mutewind Agility", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|47853", + "text": "Allocates Bond of the Mamba", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|27779", + "text": "Allocates Lord of the Squall", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|62210", + "text": "Allocates Puppet Master chance", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|11184", + "text": "Allocates Zarokh's Gift", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|25361", + "text": "Allocates Resolute Reach", + "type": "enchant" + }, + { + "id": "enchant.stat_2954116742|62431", + "text": "Allocates Anticipation", + "type": "enchant" + } + ] + }, + { + "id": "rune", + "label": "Augment", + "entries": [ + { + "id": "rune.stat_2280525771", + "text": "Bonded: # to maximum Life", + "type": "augment" + }, + { + "id": "rune.stat_2926029365", + "text": "Bonded: # to maximum Mana", + "type": "augment" + }, + { + "id": "rune.stat_3523867985", + "text": "#% increased Armour, Evasion and Energy Shield", + "type": "augment" + }, + { + "id": "rune.stat_1039491398", + "text": "Bonded: #% increased effect of Fully Broken Armour", + "type": "augment" + }, + { + "id": "rune.stat_1509134228", + "text": "#% increased Physical Damage", + "type": "augment" + }, + { + "id": "rune.stat_3372524247", + "text": "#% to Fire Resistance", + "type": "augment" + }, + { + "id": "rune.stat_1671376347", + "text": "#% to Lightning Resistance", + "type": "augment" + }, + { + "id": "rune.stat_4220027924", + "text": "#% to Cold Resistance", + "type": "augment" + }, + { + "id": "rune.stat_2923486259", + "text": "#% to Chaos Resistance", + "type": "augment" + }, + { + "id": "rune.stat_2901986750", + "text": "#% to all Elemental Resistances", + "type": "augment" + }, + { + "id": "rune.stat_2430860292", + "text": "Bonded: #% increased Magnitude of Shock you inflict", + "type": "augment" + }, + { + "id": "rune.stat_3336890334", + "text": "Adds # to # Lightning Damage", + "type": "augment" + }, + { + "id": "rune.stat_789117908", + "text": "#% increased Mana Regeneration Rate", + "type": "augment" + }, + { + "id": "rune.stat_3299347043", + "text": "# to maximum Life", + "type": "augment" + }, + { + "id": "rune.stat_1817052494", + "text": "Bonded: #% increased Freeze Buildup", + "type": "augment" + }, + { + "id": "rune.stat_1037193709", + "text": "Adds # to # Cold Damage", + "type": "augment" + }, + { + "id": "rune.stat_387439868", + "text": "#% increased Elemental Damage with Attacks", + "type": "augment" + }, + { + "id": "rune.stat_1857162058", + "text": "Bonded: #% increased Ignite Magnitude", + "type": "augment" + }, + { + "id": "rune.stat_2694482655", + "text": "#% to Critical Damage Bonus", + "type": "augment" + }, + { + "id": "rune.stat_1050105434", + "text": "# to maximum Mana", + "type": "augment" + }, + { + "id": "rune.stat_2748665614", + "text": "#% increased maximum Mana", + "type": "augment" + }, + { + "id": "rune.stat_709508406", + "text": "Adds # to # Fire Damage", + "type": "augment" + }, + { + "id": "rune.stat_210067635", + "text": "#% increased Attack Speed (Local)", + "type": "augment" + }, + { + "id": "rune.stat_2310741722", + "text": "#% increased Life and Mana Recovery from Flasks", + "type": "augment" + }, + { + "id": "rune.stat_836936635", + "text": "Regenerate #% of maximum Life per second", + "type": "augment" + }, + { + "id": "rune.stat_2974417149", + "text": "#% increased Spell Damage", + "type": "augment" + }, + { + "id": "rune.stat_4064396395", + "text": "Attacks with this Weapon Penetrate #% Elemental Resistances", + "type": "augment" + }, + { + "id": "rune.stat_3990135792", + "text": "Bonded: Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", + "type": "augment" + }, + { + "id": "rune.stat_2246411426", + "text": "Bonded: #% increased maximum Life", + "type": "augment" + }, + { + "id": "rune.stat_55876295", + "text": "Leeches #% of Physical Damage as Life", + "type": "augment" + }, + { + "id": "rune.stat_328541901", + "text": "# to Intelligence", + "type": "augment" + }, + { + "id": "rune.stat_4080418644", + "text": "# to Strength", + "type": "augment" + }, + { + "id": "rune.stat_1586906534", + "text": "Bonded: #% increased maximum Mana", + "type": "augment" + }, + { + "id": "rune.stat_983749596", + "text": "#% increased maximum Life", + "type": "augment" + }, + { + "id": "rune.stat_669069897", + "text": "Leeches #% of Physical Damage as Mana", + "type": "augment" + }, + { + "id": "rune.stat_3261801346", + "text": "# to Dexterity", + "type": "augment" + }, + { + "id": "rune.stat_731403740", + "text": "Gain #% of Damage as Extra Damage of all Elements", + "type": "augment" + }, + { + "id": "rune.stat_90012347", + "text": "Adds # to # Lightning Damage against Shocked Enemies", + "type": "augment" + }, + { + "id": "rune.stat_3823333703", + "text": "Bonded: #% increased Damage against Immobilised Enemies", + "type": "augment" + }, + { + "id": "rune.stat_791928121", + "text": "Causes #% increased Stun Buildup", + "type": "augment" + }, + { + "id": "rune.stat_859085781", + "text": "Bonded: Attacks have #% to Critical Hit Chance", + "type": "augment" + }, + { + "id": "rune.stat_691932474", + "text": "# to Accuracy Rating (Local)", + "type": "augment" + }, + { + "id": "rune.stat_3788647247", + "text": "Bonded: #% to Maximum Lightning Resistance", + "type": "augment" + }, + { + "id": "rune.stat_124131830", + "text": "# to Level of all Spell Skills", + "type": "augment" + }, + { + "id": "rune.stat_2913012734", + "text": "Convert #% of Requirements to Intelligence", + "type": "augment" + }, + { + "id": "rune.stat_915769802", + "text": "# to Stun Threshold", + "type": "augment" + }, + { + "id": "rune.stat_1981392722", + "text": "Bonded: Regenerate #% of maximum Life per second", + "type": "augment" + }, + { + "id": "rune.stat_3695891184", + "text": "Gain # Life per enemy killed", + "type": "augment" + }, + { + "id": "rune.stat_2561960218", + "text": "Bonded: #% of Skill Mana Costs Converted to Life Costs", + "type": "augment" + }, + { + "id": "rune.stat_1368271171", + "text": "Gain # Mana per enemy killed", + "type": "augment" + }, + { + "id": "rune.stat_1712188793", + "text": "Bonded: #% chance to gain an additional random Charge when you gain a Charge", + "type": "augment" + }, + { + "id": "rune.stat_3175163625", + "text": "#% increased Quantity of Gold Dropped by Slain Enemies", + "type": "augment" + }, + { + "id": "rune.stat_2250533757", + "text": "#% increased Movement Speed", + "type": "augment" + }, + { + "id": "rune.stat_3278136794", + "text": "Gain #% of Damage as Extra Lightning Damage", + "type": "augment" + }, + { + "id": "rune.stat_737908626", + "text": "#% increased Critical Hit Chance for Spells", + "type": "augment" + }, + { + "id": "rune.stat_232299587", + "text": "Bonded: #% increased Cooldown Recovery Rate", + "type": "augment" + }, + { + "id": "rune.stat_2546200564", + "text": "Bonded: #% increased Duration of Elemental Ailments on Enemies", + "type": "augment" + }, + { + "id": "rune.stat_4221147896", + "text": "Bonded: #% increased Critical Damage Bonus", + "type": "augment" + }, + { + "id": "rune.stat_681332047", + "text": "#% increased Attack Speed", + "type": "augment" + }, + { + "id": "rune.stat_165746512", + "text": "Bonded: #% increased Slowing Potency of Debuffs on You", + "type": "augment" + }, + { + "id": "rune.stat_3981240776", + "text": "# to Spirit", + "type": "augment" + }, + { + "id": "rune.stat_1482283017", + "text": "Bonded: Fissure Skills have +# to Limit", + "type": "augment" + }, + { + "id": "rune.stat_3032590688", + "text": "Adds # to # Physical Damage to Attacks", + "type": "augment" + }, + { + "id": "rune.stat_975988108", + "text": "Bonded: Archon recovery period expires #% faster", + "type": "augment" + }, + { + "id": "rune.stat_4095671657", + "text": "#% to Maximum Fire Resistance", + "type": "augment" + }, + { + "id": "rune.stat_1611856026", + "text": "Bonded: Minions have #% increased Cooldown Recovery Rate for Command Skills", + "type": "augment" + }, + { + "id": "rune.stat_3984865854", + "text": "#% increased Spirit", + "type": "augment" + }, + { + "id": "rune.stat_3412619569", + "text": "Bonded: #% increased Damage while Shapeshifted", + "type": "augment" + }, + { + "id": "rune.stat_1798257884", + "text": "Allies in your Presence deal #% increased Damage", + "type": "augment" + }, + { + "id": "rune.stat_3909696841", + "text": "Bonded: #% chance when collecting an Elemental Infusion to gain an\nadditional Elemental Infusion of the same type", + "type": "augment" + }, + { + "id": "rune.stat_293638271", + "text": "#% increased chance to Shock", + "type": "augment" + }, + { + "id": "rune.stat_3738367433", + "text": "Bonded: Adds # to # Physical Damage to Attacks", + "type": "augment" + }, + { + "id": "rune.stat_3398787959", + "text": "Gain #% of Damage as Extra Chaos Damage", + "type": "augment" + }, + { + "id": "rune.stat_532897212", + "text": "Bonded: #% increased Mana Cost Efficiency while on Low Mana", + "type": "augment" + }, + { + "id": "rune.stat_2891184298", + "text": "#% increased Cast Speed", + "type": "augment" + }, + { + "id": "rune.stat_3885405204", + "text": "Bow Attacks fire # additional Arrows", + "type": "augment" + }, + { + "id": "rune.stat_1496740334", + "text": "Convert #% of Requirements to Dexterity", + "type": "augment" + }, + { + "id": "rune.stat_243313994", + "text": "Bonded: # to Level of all Attack Skills", + "type": "augment" + }, + { + "id": "rune.stat_1631975646", + "text": "Bonded: #% increased Projectile Speed", + "type": "augment" + }, + { + "id": "rune.stat_2077615515", + "text": "#% increased Attack Damage against Rare or Unique Enemies", + "type": "augment" + }, + { + "id": "rune.stat_2505884597", + "text": "Gain #% of Damage as Extra Cold Damage", + "type": "augment" + }, + { + "id": "rune.stat_408302348", + "text": "Bonded: #% to Maximum Fire Resistance", + "type": "augment" + }, + { + "id": "rune.stat_1030153674", + "text": "Recover #% of maximum Mana on Kill", + "type": "augment" + }, + { + "id": "rune.stat_3015669065", + "text": "Gain #% of Damage as Extra Fire Damage", + "type": "augment" + }, + { + "id": "rune.stat_635535560", + "text": "Bonded: Gain #% of Damage as Extra Physical Damage", + "type": "augment" + }, + { + "id": "rune.stat_4042480703", + "text": "Bonded: #% to Maximum Cold Resistance", + "type": "augment" + }, + { + "id": "rune.stat_2910761524", + "text": "#% chance for Spell Skills to fire 2 additional Projectiles", + "type": "augment" + }, + { + "id": "rune.stat_1805633363", + "text": "#% increased Reservation Efficiency of Minion Skills", + "type": "augment" + }, + { + "id": "rune.stat_839375491", + "text": "Bonded: Minions Revive #% faster", + "type": "augment" + }, + { + "id": "rune.stat_2481353198", + "text": "#% increased Block chance (Local)", + "type": "augment" + }, + { + "id": "rune.stat_280731498", + "text": "#% increased Area of Effect", + "type": "augment" + }, + { + "id": "rune.stat_2729035954", + "text": "Bonded: #% increased Reservation Efficiency of Companion Skills", + "type": "augment" + }, + { + "id": "rune.stat_807013157", + "text": "Bonded: Every Rage also grants #% increased Spell Damage", + "type": "augment" + }, + { + "id": "rune.stat_4254029169", + "text": "Bonded: Meta Skills have #% increased Reservation Efficiency", + "type": "augment" + }, + { + "id": "rune.stat_1597408611", + "text": "Bonded: Prevent #% of Damage from Deflected Hits", + "type": "augment" + }, + { + "id": "rune.stat_3308150554", + "text": "Bonded: Adds # to # Fire damage to Attacks", + "type": "augment" + }, + { + "id": "rune.stat_1556124492", + "text": "Convert #% of Requirements to Strength", + "type": "augment" + }, + { + "id": "rune.stat_782230869", + "text": "#% increased Magnitude of Non-Damaging Ailments you inflict", + "type": "augment" + }, + { + "id": "rune.stat_1984310483", + "text": "Enemies you Curse take #% increased Damage", + "type": "augment" + }, + { + "id": "rune.stat_1519615863", + "text": "#% chance to cause Bleeding on Hit", + "type": "augment" + }, + { + "id": "rune.stat_970213192", + "text": "#% increased Skill Speed", + "type": "augment" + }, + { + "id": "rune.stat_1299166504", + "text": "Bonded: #% increased Reservation Efficiency of Herald Skills", + "type": "augment" + }, + { + "id": "rune.stat_1381474422", + "text": "#% increased Magnitude of Damaging Ailments you inflict", + "type": "augment" + }, + { + "id": "rune.stat_3855016469", + "text": "Hits against you have #% reduced Critical Damage Bonus", + "type": "augment" + }, + { + "id": "rune.stat_263495202", + "text": "#% increased Cost Efficiency", + "type": "augment" + }, + { + "id": "rune.stat_3544800472", + "text": "#% increased Elemental Ailment Threshold", + "type": "augment" + }, + { + "id": "rune.stat_2986637363", + "text": "Bonded: #% increased Duration of Damaging Ailments on Enemies", + "type": "augment" + }, + { + "id": "rune.stat_3266426611", + "text": "Bonded: #% increased Thorns damage", + "type": "augment" + }, + { + "id": "rune.stat_1382805233", + "text": "#% increased Deflection Rating while moving", + "type": "augment" + }, + { + "id": "rune.stat_1782086450", + "text": "#% faster start of Energy Shield Recharge", + "type": "augment" + }, + { + "id": "rune.stat_827242569", + "text": "Bonded: # to maximum Energy Shield", + "type": "augment" + }, + { + "id": "rune.stat_1004011302", + "text": "#% increased Cooldown Recovery Rate", + "type": "augment" + }, + { + "id": "rune.stat_2339757871", + "text": "#% increased Energy Shield Recharge Rate", + "type": "augment" + }, + { + "id": "rune.stat_542243093", + "text": "Bonded: #% increased Warcry Cooldown Recovery Rate", + "type": "augment" + }, + { + "id": "rune.stat_2709367754", + "text": "Gain # Rage on Melee Hit", + "type": "augment" + }, + { + "id": "rune.stat_3885634897", + "text": "#% chance to Poison on Hit with this weapon", + "type": "augment" + }, + { + "id": "rune.stat_3898665772", + "text": "Bonded: #% increased Quantity of Gold Dropped by Slain Enemies", + "type": "augment" + }, + { + "id": "rune.stat_3917489142", + "text": "#% increased Rarity of Items found", + "type": "augment" + }, + { + "id": "rune.stat_757050353", + "text": "# to # Lightning Thorns damage", + "type": "augment" + }, + { + "id": "rune.stat_458438597", + "text": "#% of Damage is taken from Mana before Life", + "type": "augment" + }, + { + "id": "rune.stat_310945763", + "text": "#% increased Life Cost Efficiency", + "type": "augment" + }, + { + "id": "rune.stat_2100249038", + "text": "Bonded: #% of Maximum Life Converted to Energy Shield", + "type": "augment" + }, + { + "id": "rune.stat_2023107756", + "text": "Recover #% of maximum Life on Kill", + "type": "augment" + }, + { + "id": "rune.stat_3311629379", + "text": "Bonded: #% increased Critical Hit Chance while Shapeshifted", + "type": "augment" + }, + { + "id": "rune.stat_1181501418", + "text": "# to Maximum Rage", + "type": "augment" + }, + { + "id": "rune.stat_144568384", + "text": "Bonded: #% increased Skill Speed while Shapeshifted", + "type": "augment" + }, + { + "id": "rune.stat_3144895835", + "text": "Bonded: #% increased Magnitude of Bleeding on You", + "type": "augment" + }, + { + "id": "rune.stat_3166958180", + "text": "#% increased Magnitude of Bleeding you inflict", + "type": "augment" + }, + { + "id": "rune.stat_2134854700", + "text": "Bonded: #% chance for Damage of Enemies Hitting you to be Unlucky", + "type": "augment" + }, + { + "id": "rune.stat_473429811", + "text": "#% increased Freeze Buildup", + "type": "augment" + }, + { + "id": "rune.stat_674141348", + "text": "Bonded: #% increased Attack Damage while Shapeshifted", + "type": "augment" + }, + { + "id": "rune.stat_774059442", + "text": "# to maximum Runic Ward", + "type": "augment" + }, + { + "id": "rune.stat_2336012075", + "text": "Bonded: #% increased Mana Cost Efficiency", + "type": "augment" + }, + { + "id": "rune.stat_3377888098", + "text": "#% increased Skill Effect Duration", + "type": "augment" + }, + { + "id": "rune.stat_3854332662", + "text": "Bonded: #% increased Area of Effect of Curses", + "type": "augment" + }, + { + "id": "rune.stat_763465498", + "text": "Bonded: #% increased Charm Charges gained", + "type": "augment" + }, + { + "id": "rune.stat_953010920", + "text": "Bonded: #% to all Elemental Resistances", + "type": "augment" + }, + { + "id": "rune.stat_3407849389", + "text": "#% reduced effect of Curses on you", + "type": "augment" + }, + { + "id": "rune.stat_3666934677", + "text": "#% increased Experience gain", + "type": "augment" + }, + { + "id": "rune.stat_2103650854", + "text": "#% increased effect of Arcane Surge on you", + "type": "augment" + }, + { + "id": "rune.stat_1419386315", + "text": "Bonded: Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + "type": "augment" + }, + { + "id": "rune.stat_624954515", + "text": "#% increased Accuracy Rating", + "type": "augment" + }, + { + "id": "rune.stat_924253255", + "text": "#% increased Slowing Potency of Debuffs on You", + "type": "augment" + }, + { + "id": "rune.stat_217649179", + "text": "Bonded: #% increased Curse Magnitudes", + "type": "augment" + }, + { + "id": "rune.stat_101878827", + "text": "#% increased Presence Area of Effect", + "type": "augment" + }, + { + "id": "rune.stat_3449499156", + "text": "Bonded: Minions have #% increased Area of Effect", + "type": "augment" + }, + { + "id": "rune.stat_3655769732", + "text": "#% to Quality of all Skills", + "type": "augment" + }, + { + "id": "rune.stat_1250712710", + "text": "Allies in your Presence have #% increased Critical Hit Chance", + "type": "augment" + }, + { + "id": "rune.stat_3489782002", + "text": "# to maximum Energy Shield", + "type": "augment" + }, + { + "id": "rune.stat_289128254", + "text": "Allies in your Presence have #% increased Cast Speed", + "type": "augment" + }, + { + "id": "rune.stat_1998951374", + "text": "Allies in your Presence have #% increased Attack Speed", + "type": "augment" + }, + { + "id": "rune.stat_1444556985", + "text": "#% of Damage taken Recouped as Life", + "type": "augment" + }, + { + "id": "rune.stat_2916861134", + "text": "#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", + "type": "augment" + }, + { + "id": "rune.stat_3057012405", + "text": "Allies in your Presence have #% increased Critical Damage Bonus", + "type": "augment" + }, + { + "id": "rune.stat_3973629633", + "text": "#% increased Withered Magnitude", + "type": "augment" + }, + { + "id": "rune.stat_3227486464", + "text": "Bonded: Remnants you create have #% increased effect", + "type": "augment" + }, + { + "id": "rune.stat_2353576063", + "text": "#% increased Curse Magnitudes", + "type": "augment" + }, + { + "id": "rune.stat_2011656677", + "text": "#% increased Poison Duration", + "type": "augment" + }, + { + "id": "rune.stat_1236190486", + "text": "Bonded: #% increased effect of Archon Buffs on you", + "type": "augment" + }, + { + "id": "rune.stat_2854751904", + "text": "Allies in your Presence deal # to # added Attack Lightning Damage", + "type": "augment" + }, + { + "id": "rune.stat_3286003349", + "text": "Bonded: Storm Skills have +# to Limit", + "type": "augment" + }, + { + "id": "rune.stat_554899692", + "text": "# Charm Slot (Global)", + "type": "augment" + }, + { + "id": "rune.stat_2703838669", + "text": "#% increased Movement Speed per 15 Spirit, up to a maximum of 40%\nOther Modifiers to Movement Speed except for Sprinting do not apply", + "type": "augment" + }, + { + "id": "rune.stat_3351086592", + "text": "Bonded: #% to Chaos Resistance", + "type": "augment" + }, + { + "id": "rune.stat_1574590649", + "text": "Allies in your Presence deal # to # added Attack Physical Damage", + "type": "augment" + }, + { + "id": "rune.stat_2200571612", + "text": "#% of Armour also applies to Lightning Damage", + "type": "augment" + }, + { + "id": "rune.stat_1755296234", + "text": "Targets can be affected by # of your Poisons at the same time", + "type": "augment" + }, + { + "id": "rune.stat_915264788", + "text": "#% increased Thorns Critical Hit Chance", + "type": "augment" + }, + { + "id": "rune.stat_3585532255", + "text": "#% increased Charm Charges gained", + "type": "augment" + }, + { + "id": "rune.stat_3891661462", + "text": "Bonded: #% increased Magnitude of Non-Damaging Ailments you inflict", + "type": "augment" + }, + { + "id": "rune.stat_2074866941", + "text": "#% increased Exposure Effect", + "type": "augment" + }, + { + "id": "rune.stat_3373098634", + "text": "Bonded: Remnants can be collected from #% further away", + "type": "augment" + }, + { + "id": "rune.stat_649025131", + "text": "#% increased Movement Speed when on Low Life", + "type": "augment" + }, + { + "id": "rune.stat_3759663284", + "text": "#% increased Projectile Speed", + "type": "augment" + }, + { + "id": "rune.stat_264750496", + "text": "Bonded: #% of Damage taken Recouped as Life", + "type": "augment" + }, + { + "id": "rune.stat_1011760251", + "text": "#% to Maximum Lightning Resistance", + "type": "augment" + }, + { + "id": "rune.stat_770672621", + "text": "Minions have #% increased maximum Life", + "type": "augment" + }, + { + "id": "rune.stat_826685275", + "text": "Bonded: #% of Armour also applies to Elemental Damage while Shapeshifted", + "type": "augment" + }, + { + "id": "rune.stat_3897831687", + "text": "#% of Armour also applies to Fire Damage", + "type": "augment" + }, + { + "id": "rune.stat_3676141501", + "text": "#% to Maximum Cold Resistance", + "type": "augment" + }, + { + "id": "rune.stat_3850614073", + "text": "Allies in your Presence have #% to all Elemental Resistances", + "type": "augment" + }, + { + "id": "rune.stat_2663359259", + "text": "#% increased total Power counted by Warcries", + "type": "augment" + }, + { + "id": "rune.stat_1947060170", + "text": "#% of Armour also applies to Cold Damage", + "type": "augment" + }, + { + "id": "rune.stat_2363593824", + "text": "#% increased speed of Recoup Effects", + "type": "augment" + }, + { + "id": "rune.stat_2968503605", + "text": "#% increased Flammability Magnitude", + "type": "augment" + }, + { + "id": "rune.stat_2573124363", + "text": "Bonded: # to Armour", + "type": "augment" + }, + { + "id": "rune.stat_3742865955", + "text": "Minions deal #% increased Damage with Command Skills", + "type": "augment" + }, + { + "id": "rune.stat_687156079", + "text": "# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", + "type": "augment" + }, + { + "id": "rune.stat_3678845069", + "text": "Attacks with this Weapon have #% chance to inflict Exposure", + "type": "augment" + }, + { + "id": "rune.stat_3533065815", + "text": "Bonded: # to Evasion Rating", + "type": "augment" + }, + { + "id": "rune.stat_3537994888", + "text": "#% chance when you gain a Power Charge to gain an additional Power Charge", + "type": "augment" + }, + { + "id": "rune.stat_2223678961", + "text": "Adds # to # Chaos damage", + "type": "augment" + }, + { + "id": "rune.stat_1197632982", + "text": "# to Armour per 1 Spirit", + "type": "augment" + }, + { + "id": "rune.stat_1112792773", + "text": "Bonded: #% increased Immobilisation buildup", + "type": "augment" + }, + { + "id": "rune.stat_3378643287", + "text": "Bonded: #% increased Exposure Effect", + "type": "augment" + }, + { + "id": "rune.stat_3824372849", + "text": "#% increased Curse Duration", + "type": "augment" + }, + { + "id": "rune.stat_416040624", + "text": "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + "type": "augment" + }, + { + "id": "rune.stat_1728593484", + "text": "Bonded: Minions deal #% increased Damage", + "type": "augment" + }, + { + "id": "rune.stat_1528013281", + "text": "Bonded: Projectiles have #% chance for an additional Projectile when Forking", + "type": "augment" + }, + { + "id": "rune.stat_3473409233", + "text": "Lose #% of maximum Life per second while Sprinting", + "type": "augment" + }, + { + "id": "rune.stat_1433756169", + "text": "Minions gain #% of their Physical Damage as Extra Lightning Damage", + "type": "augment" + }, + { + "id": "rune.stat_2410766865", + "text": "Bonded: #% increased Life Regeneration rate while Shapeshifted", + "type": "augment" + }, + { + "id": "rune.stat_1772929282", + "text": "Enemies you Curse have #% to Chaos Resistance", + "type": "augment" + }, + { + "id": "rune.stat_4010677958", + "text": "Allies in your Presence Regenerate # Life per second", + "type": "augment" + }, + { + "id": "rune.stat_3107707789", + "text": "#% increased Movement Speed while Sprinting", + "type": "augment" + }, + { + "id": "rune.stat_2241849004", + "text": "Energy Shield Recharge starts after spending a total of\n 2000 Mana, no more than once every 2 seconds", + "type": "augment" + }, + { + "id": "rune.stat_1228682002", + "text": "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", + "type": "augment" + }, + { + "id": "rune.stat_4236566306", + "text": "Meta Skills gain #% increased Energy", + "type": "augment" + }, + { + "id": "rune.stat_2269618934", + "text": "Bonded: Gain #% of maximum Life as Extra maximum Runic Ward", + "type": "augment" + }, + { + "id": "rune.stat_4128954176", + "text": "Bonded: #% increased Elemental Ailment Threshold", + "type": "augment" + }, + { + "id": "rune.stat_1238227257", + "text": "Debuffs on you expire #% faster", + "type": "augment" + }, + { + "id": "rune.stat_4258524206", + "text": "#% chance to build an additional Combo on Hit", + "type": "augment" + }, + { + "id": "rune.stat_831559873", + "text": "Bonded: #% increased Guard gained", + "type": "augment" + }, + { + "id": "rune.stat_4058552370", + "text": "Bonded: Invocated Spells have #% chance to consume half as much Energy", + "type": "augment" + }, + { + "id": "rune.stat_280497929", + "text": "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", + "type": "augment" + }, + { + "id": "rune.stat_2876843277", + "text": "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", + "type": "augment" + }, + { + "id": "rune.stat_155735928", + "text": "Bonded: #% increased Glory generation", + "type": "augment" + }, + { + "id": "rune.stat_1441491952", + "text": "Bonded: #% reduced Shock duration on you", + "type": "augment" + }, + { + "id": "rune.stat_3801067695", + "text": "#% reduced effect of Shock on you", + "type": "augment" + }, + { + "id": "rune.stat_901007505", + "text": "Bonded: Minions have #% to all Elemental Resistances", + "type": "augment" + }, + { + "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" + }, + { + "id": "rune.stat_234296660", + "text": "Companions deal #% increased Damage", + "type": "augment" + }, + { + "id": "rune.stat_889552744", + "text": "Minions take #% of Physical Damage as Lightning Damage", + "type": "augment" + }, + { + "id": "rune.stat_935518591", + "text": "Critical Hit chance is Lucky against Parried enemies", + "type": "augment" + }, + { + "id": "rune.stat_3570773271", + "text": "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", + "type": "augment" + }, + { + "id": "rune.stat_1374654984", + "text": "#% of Physical Damage prevented Recouped as Life", + "type": "augment" + }, + { + "id": "rune.stat_3552135623", + "text": "Prevent #% of Damage from Deflected Hits", + "type": "augment" + }, + { + "id": "rune.stat_594547430", + "text": "Remove a Damaging Ailment when you use a Command Skill", + "type": "augment" + }, + { + "id": "rune.stat_3734640451", + "text": "Adds # to # Cold Damage against Chilled Enemies", + "type": "augment" + }, + { + "id": "rune.stat_4282982513", + "text": "Increases and Reductions to Movement Speed also\n apply to Energy Shield Recharge Rate", + "type": "augment" + }, + { + "id": "rune.stat_1256853273", + "text": "Bonded: Hits against you have #% reduced Critical Damage Bonus", + "type": "augment" + }, + { + "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" + }, + { + "id": "rune.stat_1585886916", + "text": "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", + "type": "augment" + }, + { + "id": "rune.stat_3837226732", + "text": "Bonded: #% increased Attack Speed while missing Runic Ward", + "type": "augment" + }, + { + "id": "rune.stat_457982334", + "text": "Bonded: #% increased Global Armour, Evasion and Energy Shield", + "type": "augment" + }, + { + "id": "rune.stat_2191621386", + "text": "#% of Armour also applies to Chaos Damage while on full Energy Shield", + "type": "augment" + }, + { + "id": "rune.stat_162036024", + "text": "1% increased Energy Shield Recharge Rate per # maximum Runic Ward", + "type": "augment" + }, + { + "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" + }, + { + "id": "rune.stat_1911097163", + "text": "Allies in your Presence Regenerate #% of your Maximum Life per second", + "type": "augment" + }, + { + "id": "rune.stat_627339348", + "text": "Adds # to # Fire Damage to Attacks against Ignited Enemies", + "type": "augment" + }, + { + "id": "rune.stat_3134782172", + "text": "Bonded: Regenerate #% of maximum Energy Shield per second", + "type": "augment" + }, + { + "id": "rune.stat_2392260628", + "text": "#% increased Runic Ward Regeneration Rate", + "type": "augment" + }, + { + "id": "rune.stat_2420303482", + "text": "Bonded: Regenerate # Runic Ward per second", + "type": "augment" + }, + { + "id": "rune.stat_1570901920", + "text": "Bonded: Gain #% of Physical Damage as extra Chaos Damage", + "type": "augment" + }, + { + "id": "rune.stat_201058524", + "text": "Bonded: #% increased Archon Buff duration", + "type": "augment" + }, + { + "id": "rune.stat_3398301358", + "text": "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + "type": "augment" + }, + { + "id": "rune.stat_1549287843", + "text": "Projectiles have #% chance to Fork", + "type": "augment" + }, + { + "id": "rune.stat_2001460689", + "text": "Bonded: Gain additional Stun Threshold equal to #% of maximum Energy Shield", + "type": "augment" + }, + { + "id": "rune.stat_1978899297", + "text": "#% to all Maximum Elemental Resistances", + "type": "augment" + }, + { + "id": "rune.stat_282990844", + "text": "+# to Deflection Rating per 10 maximum Runic Ward", + "type": "augment" + }, + { + "id": "rune.stat_3331247603", + "text": "Bonded: #% increased amount of Life Leeched", + "type": "augment" + }, + { + "id": "rune.stat_851475033", + "text": "Bonded: #% increased Armour if you haven't Dodge Rolled Recently", + "type": "augment" + }, + { + "id": "rune.stat_258119672", + "text": "# metre to Dodge Roll distance", + "type": "augment" + }, + { + "id": "rune.stat_2586152168", + "text": "Archon recovery period expires #% faster", + "type": "augment" + }, + { + "id": "rune.stat_3414796717", + "text": "Bonded: #% increased Attack Speed", + "type": "augment" + }, + { + "id": "rune.stat_53045048", + "text": "# to Evasion Rating (Local)", + "type": "augment" + }, + { + "id": "rune.stat_1480688478", + "text": "One of your Persistent Minions revives when an Offering expires", + "type": "augment" + }, + { + "id": "rune.stat_4052037485", + "text": "# to maximum Energy Shield (Local)", + "type": "augment" + }, + { + "id": "rune.stat_3484657501", + "text": "# to Armour (Local)", + "type": "augment" + }, + { + "id": "rune.stat_3482326075", + "text": "Remnants can be collected from #% further away", + "type": "augment" + }, + { + "id": "rune.stat_1995345015", + "text": "Gain maximum Runic Ward equal to #% of this Weapon's maximum damage", + "type": "augment" + }, + { + "id": "rune.stat_1999910726", + "text": "Remnants you create have #% increased effect", + "type": "augment" + }, + { + "id": "rune.stat_2231410646", + "text": "A random Skill that requires Glory generates #% of its maximum Glory when your Marks Activate", + "type": "augment" + }, + { + "id": "rune.stat_1693515857", + "text": "Gain #% of Damage as Extra Physical Damage per ten percent missing Mana", + "type": "augment" + }, + { + "id": "rune.stat_1568578715", + "text": "Bonded: Charms gain # charge per Second", + "type": "augment" + }, + { + "id": "rune.stat_1963589548", + "text": "Every 4 seconds, gain Guard equal to #% of maximum Runic Ward for 2 seconds", + "type": "augment" + }, + { + "id": "rune.stat_2480498143", + "text": "#% of Skill Mana Costs Converted to Life Costs", + "type": "augment" + }, + { + "id": "rune.stat_3143918757", + "text": "#% increased Glory generation", + "type": "augment" + }, + { + "id": "rune.stat_1555237944", + "text": "#% chance when you gain a Charge to gain an additional Charge", + "type": "augment" + }, + { + "id": "rune.stat_1777925108", + "text": "Bonded: #% increased Attack Speed while your Companion is in your Presence", + "type": "augment" + }, + { + "id": "rune.stat_3515226849", + "text": "Recover #% of maximum Runic Ward when one of your Reviving Minions is Killed", + "type": "augment" + }, + { + "id": "rune.stat_1678831767", + "text": "Recover # Life when you Block", + "type": "augment" + }, + { + "id": "rune.stat_666077204", + "text": "Companions have #% increased Attack Speed", + "type": "augment" + }, + { + "id": "rune.stat_3903510399", + "text": "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", + "type": "augment" + }, + { + "id": "rune.stat_1937310173", + "text": "You Recoup #% of Damage taken by your Offerings as Life", + "type": "augment" + }, + { + "id": "rune.stat_3040571529", + "text": "#% increased Deflection Rating", + "type": "augment" + }, + { + "id": "rune.stat_834058335", + "text": "Bonded: Minions have #% increased Movement Speed", + "type": "augment" + }, + { + "id": "rune.stat_386720106", + "text": "Gain #% of maximum Life as Extra maximum Runic Ward", + "type": "augment" + }, + { + "id": "rune.stat_2608793552", + "text": "Break Armour equal to #% of maximum Runic Ward", + "type": "augment" + }, + { + "id": "rune.stat_1083521623", + "text": "Bonded: Break #% increased Armour", + "type": "augment" + }, + { + "id": "rune.stat_3091578504", + "text": "Minions have #% increased Attack and Cast Speed", + "type": "augment" + }, + { + "id": "rune.stat_2463230181", + "text": "#% Surpassing chance to fire an additional Arrow", + "type": "augment" + }, + { + "id": "rune.stat_267552601", + "text": "Spell damage Penetrates #% of enemy Elemental Resistances while on Low Runic Ward", + "type": "augment" + }, + { + "id": "rune.stat_51757548", + "text": "Bonded: #% increased Armour and Evasion Rating when on Low Life", + "type": "augment" + }, + { + "id": "rune.stat_330530785", + "text": "#% increased Immobilisation buildup", + "type": "augment" + }, + { + "id": "rune.stat_1134865274", + "text": "Bonded: #% to Quality of all Skills", + "type": "augment" + }, + { + "id": "rune.stat_1919509054", + "text": "Your Energy Shield Recharge starts when your Minions are Reformed", + "type": "augment" + }, + { + "id": "rune.stat_538981065", + "text": "Grenades have #% chance to activate a second time", + "type": "augment" + }, + { + "id": "rune.stat_726496846", + "text": "Idols socketed in this item gain the benefits of their Bonded modifiers", + "type": "augment" + }, + { + "id": "rune.stat_2352183092", + "text": "Bonded: #% increased Mana Recovery rate while your Companion is in your Presence", + "type": "augment" + }, + { + "id": "rune.stat_4063732952", + "text": "#% increased Spell Damage while your Companion is in your Presence", + "type": "augment" + }, + { + "id": "rune.stat_2453678274", + "text": "Bonded: #% increased Crossbow Reload Speed", + "type": "augment" + }, + { + "id": "rune.stat_3448627618", + "text": "Bonded: #% to Cold Resistance", + "type": "augment" + }, + { + "id": "rune.stat_1392112423", + "text": "#% increased Armour and Evasion Rating while on Low Runic Ward", + "type": "augment" + }, + { + "id": "rune.stat_4129869957", + "text": "Bonded: #% increased Endurance, Frenzy and Power Charge Duration", + "type": "augment" + }, + { + "id": "rune.stat_830161081", + "text": "#% increased Runic Ward", + "type": "augment" + }, + { + "id": "rune.stat_2905013875", + "text": "Bonded: Recover #% of Maximum Mana when you collect a Remnant", + "type": "augment" + }, + { + "id": "rune.stat_3037261703", + "text": "Bonded: #% increased Elemental Damage", + "type": "augment" + }, + { + "id": "rune.stat_4168500604", + "text": "Bonded: #% increased Life and Mana Recovery from Flasks", + "type": "augment" + }, + { + "id": "rune.stat_451260031", + "text": "Bonded: # to maximum number of Elemental Infusions", + "type": "augment" + }, + { + "id": "rune.stat_2328443419", + "text": "#% chance to create an additional Remnant", + "type": "augment" + }, + { + "id": "rune.stat_731781020", + "text": "Flasks gain # charges per Second", + "type": "augment" + }, + { + "id": "rune.stat_1020945697", + "text": "#% less maximum Life", + "type": "augment" + }, + { + "id": "rune.stat_1823959929", + "text": "Bonded: Recover #% of maximum Life when one of your Minions is Revived", + "type": "augment" + }, + { + "id": "rune.stat_1404850498", + "text": "Bonded: #% to all Maximum Elemental Resistances while on full Runic Ward", + "type": "augment" + }, + { + "id": "rune.stat_4012965551", + "text": "Bonded: Banner Skills have #% increased Aura Magnitudes", + "type": "augment" + }, + { + "id": "rune.stat_2797971005", + "text": "Gain # Life per Enemy Hit with Attacks", + "type": "augment" + }, + { + "id": "rune.stat_820939409", + "text": "Gain # Mana per Enemy Hit with Attacks", + "type": "augment" + }, + { + "id": "rune.stat_2590797182", + "text": "#% increased Movement Speed Penalty from using Skills while moving", + "type": "augment" + }, + { + "id": "rune.stat_540694930", + "text": "Minions in your Presence have Onslaught while you are on Low Runic Ward", + "type": "augment" + }, + { + "id": "rune.stat_2691854696", + "text": "Bonded: Damage of Enemies Hitting you is Unlucky if\nyour Runic Ward has been damaged Recently", + "type": "augment" + }, + { + "id": "rune.stat_3035971497", + "text": "Attacks spend #% of your maximum Runic Ward if possible to gain that much added Physical damage", + "type": "augment" + }, + { + "id": "rune.stat_4058681894", + "text": "You have no Critical Damage Bonus", + "type": "augment" + }, + { + "id": "rune.stat_610569665", + "text": "# to Spirit per 2 Levels", + "type": "augment" + }, + { + "id": "rune.stat_3444646646", + "text": "Gain # Druidic Prowess when you Heavy Stun a Rare or Unique Enemy", + "type": "augment" + }, + { + "id": "rune.stat_3038857346", + "text": "Bonded: #% increased Stun Buildup", + "type": "augment" + }, + { + "id": "rune.stat_103706408", + "text": "Rolls only the minimum or maximum Damage value for Physical Damage", + "type": "augment" + }, + { + "id": "rune.stat_1751756891", + "text": "Bonded: #% increased Runic Ward Cost Efficiency", + "type": "augment" + }, + { + "id": "rune.stat_3435915371", + "text": "Bonded: #% increased Spirit Reservation Efficiency", + "type": "augment" + }, + { + "id": "rune.stat_2704225257", + "text": "# to Spirit", + "type": "augment" + }, + { + "id": "rune.stat_1756854510", + "text": "Bonded: #% increased Stun Recovery", + "type": "augment" + }, + { + "id": "rune.stat_587431675", + "text": "#% increased Critical Hit Chance", + "type": "augment" + } + ] + }, + { + "id": "desecrated", + "label": "Desecrated", + "entries": [ + { + "id": "desecrated.stat_1050105434", + "text": "# to maximum Mana", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3299347043", + "text": "# to maximum Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3015669065", + "text": "Gain #% of Damage as Extra Fire Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2910761524", + "text": "#% chance for Spell Skills to fire 2 additional Projectiles", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3291658075", + "text": "#% increased Cold Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4220027924", + "text": "#% to Cold Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3372524247", + "text": "#% to Fire Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4015621042", + "text": "#% increased Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3336890334", + "text": "Adds # to # Lightning Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3917489142", + "text": "#% increased Rarity of Items found", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4052037485", + "text": "# to maximum Energy Shield (Local)", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1671376347", + "text": "#% to Lightning Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2901986750", + "text": "#% to all Elemental Resistances", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3984865854", + "text": "#% increased Spirit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1195319608", + "text": "#% increased Energy Shield from Equipped Body Armour", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1509134228", + "text": "#% increased Physical Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2974417149", + "text": "#% increased Spell Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_53045048", + "text": "# to Evasion Rating (Local)", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3325883026", + "text": "# Life Regeneration per second", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3465022881", + "text": "#% to Lightning and Chaos Resistances", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1999113824", + "text": "#% increased Evasion and Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3032590688", + "text": "Adds # to # Physical Damage to Attacks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1535626285", + "text": "# to Strength and Intelligence", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2250533757", + "text": "#% increased Movement Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2891184298", + "text": "#% increased Cast Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3981240776", + "text": "# to Spirit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3261801346", + "text": "# to Dexterity", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1754445556", + "text": "Adds # to # Lightning damage to Attacks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_124859000", + "text": "#% increased Evasion Rating (Local)", + "type": "desecrated" + }, + { + "id": "desecrated.stat_378817135", + "text": "#% to Fire and Chaos Resistances", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1573130764", + "text": "Adds # to # Fire damage to Attacks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2482852589", + "text": "#% increased maximum Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3556824919", + "text": "#% increased Critical Damage Bonus", + "type": "desecrated" + }, + { + "id": "desecrated.stat_681332047", + "text": "#% increased Attack Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_587431675", + "text": "#% increased Critical Hit Chance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_328541901", + "text": "# to Intelligence", + "type": "desecrated" + }, + { + "id": "desecrated.stat_737908626", + "text": "#% increased Critical Hit Chance for Spells", + "type": "desecrated" + }, + { + "id": "desecrated.stat_55876295", + "text": "Leeches #% of Physical Damage as Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4067062424", + "text": "Adds # to # Cold damage to Attacks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3141070085", + "text": "#% increased Elemental Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3393628375", + "text": "#% to Cold and Chaos Resistances", + "type": "desecrated" + }, + { + "id": "desecrated.stat_274716455", + "text": "#% increased Critical Spell Damage Bonus", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3278136794", + "text": "Gain #% of Damage as Extra Lightning Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2231156303", + "text": "#% increased Lightning Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_691932474", + "text": "# to Accuracy Rating (Local)", + "type": "desecrated" + }, + { + "id": "desecrated.stat_736967255", + "text": "#% increased Chaos Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_915769802", + "text": "# to Stun Threshold", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3891355829|1", + "text": "Upgrades Radius to Medium", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3714003708", + "text": "#% increased Critical Damage Bonus for Attack Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_789117908", + "text": "#% increased Mana Regeneration Rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2505884597", + "text": "Gain #% of Damage as Extra Cold Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_210067635", + "text": "#% increased Attack Speed (Local)", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3033371881", + "text": "Gain Deflection Rating equal to #% of Evasion Rating", + "type": "desecrated" + }, + { + "id": "desecrated.stat_53386210", + "text": "#% increased Spirit Reservation Efficiency", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3491815140", + "text": "#% increased Spell Damage per 100 Maximum Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2923486259", + "text": "#% to Chaos Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3484657501", + "text": "# to Armour (Local)", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1940865751", + "text": "Adds # to # Physical Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3176481473", + "text": "#% increased Spell Damage while on Full Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1782086450", + "text": "#% faster start of Energy Shield Recharge", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2194114101", + "text": "#% increased Critical Hit Chance for Attacks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1202301673", + "text": "# to Level of all Projectile Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_387439868", + "text": "#% increased Elemental Damage with Attacks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3793155082", + "text": "#% increased Rare Monsters", + "type": "desecrated" + }, + { + "id": "desecrated.stat_416040624", + "text": "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_970213192", + "text": "#% increased Skill Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_518292764", + "text": "#% to Critical Hit Chance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1241625305", + "text": "#% increased Damage with Bow Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_234296660", + "text": "Companions deal #% increased Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4080418644", + "text": "# to Strength", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2725205297", + "text": "#% increased Magnitude of Unholy Might buffs you grant", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2106365538", + "text": "#% increased Evasion Rating", + "type": "desecrated" + }, + { + "id": "desecrated.stat_709508406", + "text": "Adds # to # Fire Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2023107756", + "text": "Recover #% of maximum Life on Kill", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1062208444", + "text": "#% increased Armour (Local)", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2527686725", + "text": "#% increased Magnitude of Shock you inflict", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3759663284", + "text": "#% increased Projectile Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_693180608", + "text": "#% increased Damage while your Companion is in your Presence", + "type": "desecrated" + }, + { + "id": "desecrated.stat_153777645", + "text": "#% increased Area of Effect of Curses", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2604619892", + "text": "#% increased Duration of Elemental Ailments on Enemies", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1368271171", + "text": "Gain # Mana per enemy killed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2339757871", + "text": "#% increased Energy Shield Recharge Rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2694482655", + "text": "#% to Critical Damage Bonus", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3695891184", + "text": "Gain # Life per enemy killed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1373860425", + "text": "#% increased Spell Damage with Spells that cost Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3321629045", + "text": "#% increased Armour and Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1604736568", + "text": "Recover #% of maximum Mana on Kill (Jewel)", + "type": "desecrated" + }, + { + "id": "desecrated.stat_803737631", + "text": "# to Accuracy Rating", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3962278098", + "text": "#% increased Fire Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3490187949", + "text": "Area contains # additional Abysses", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2451402625", + "text": "#% increased Armour and Evasion", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3489782002", + "text": "# to maximum Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2144192055", + "text": "# to Evasion Rating", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1136768410", + "text": "#% increased Cast Speed when on Low Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3398787959", + "text": "Gain #% of Damage as Extra Chaos Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_986397080", + "text": "#% reduced Ignite Duration on you", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1839076647", + "text": "#% increased Projectile Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1379411836", + "text": "# to all Attributes", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3932115504", + "text": "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1037193709", + "text": "Adds # to # Cold Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2704225257", + "text": "# to Spirit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_538848803", + "text": "# to Strength and Dexterity", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1589917703", + "text": "Minions deal #% increased Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3377888098", + "text": "#% increased Skill Effect Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2300185227", + "text": "# to Dexterity and Intelligence", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3362812763", + "text": "#% of Armour also applies to Elemental Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_666077204", + "text": "Companions have #% increased Attack Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1200678966", + "text": "#% increased bonuses gained from Equipped Quiver", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3544050945", + "text": "#% of Spell Mana Cost Converted to Life Cost", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2843214518", + "text": "#% increased Attack Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1004011302", + "text": "#% increased Cooldown Recovery Rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2321178454", + "text": "#% chance to Pierce an Enemy", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3509362078", + "text": "#% increased Evasion Rating from Equipped Body Armour", + "type": "desecrated" + }, + { + "id": "desecrated.stat_707457662", + "text": "Leech #% of Physical Attack Damage as Mana", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3759735052", + "text": "#% increased Attack Speed with Bows", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4256531808", + "text": "Abyss Pits in Area are twice as likely to have Rewards", + "type": "desecrated" + }, + { + "id": "desecrated.stat_669069897", + "text": "Leeches #% of Physical Damage as Mana", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1168851547", + "text": "Natural Rare Monsters in Area have # extra Abyssal Modifier", + "type": "desecrated" + }, + { + "id": "desecrated.stat_101878827", + "text": "#% increased Presence Area of Effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_944630113", + "text": "Abysses spawn #% increased Monsters", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4246007234", + "text": "#% increased Attack Damage while on Low Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2337295272", + "text": "Minions deal #% increased Damage if you've Hit Recently", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4188894176", + "text": "#% increased Damage with Bows", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2557965901", + "text": "Leech #% of Physical Attack Damage as Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1854213750", + "text": "Minions have #% increased Critical Damage Bonus", + "type": "desecrated" + }, + { + "id": "desecrated.stat_360553763", + "text": "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2741291867", + "text": "Area is overrun by the Abyssal", + "type": "desecrated" + }, + { + "id": "desecrated.stat_918325986", + "text": "#% increased Skill Speed while Shapeshifted", + "type": "desecrated" + }, + { + "id": "desecrated.stat_656461285", + "text": "#% increased Intelligence", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3561837752", + "text": "#% of Leech is Instant", + "type": "desecrated" + }, + { + "id": "desecrated.stat_243380454", + "text": "# additional Rare Monsters are spawned from Abysses", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2866361420", + "text": "#% increased Armour", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2768835289", + "text": "#% increased Spell Physical Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4101445926", + "text": "#% increased Mana Cost Efficiency", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2706625504", + "text": "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1444556985", + "text": "#% of Damage taken Recouped as Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2162097452", + "text": "# to Level of all Minion Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3563080185", + "text": "#% increased Culling Strike Threshold", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1263695895", + "text": "#% increased Light Radius", + "type": "desecrated" + }, + { + "id": "desecrated.stat_458438597", + "text": "#% of Damage is taken from Mana before Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2158617060", + "text": "#% increased Archon Buff duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3067892458", + "text": "Triggered Spells deal #% increased Spell Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1015576579", + "text": "#% increased Armour from Equipped Body Armour", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2353576063", + "text": "#% increased Curse Magnitudes", + "type": "desecrated" + }, + { + "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" + }, + { + "id": "desecrated.stat_293638271", + "text": "#% increased chance to Shock", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3544800472", + "text": "#% increased Elemental Ailment Threshold", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3174700878", + "text": "#% increased Energy Shield from Equipped Focus", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1798257884", + "text": "Allies in your Presence deal #% increased Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2278777540", + "text": "Abysses lead to an Abyssal Depths", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1772929282", + "text": "Enemies you Curse have #% to Chaos Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1772247089", + "text": "#% increased chance to inflict Ailments", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1303248024", + "text": "#% increased Magnitude of Ailments you inflict", + "type": "desecrated" + }, + { + "id": "desecrated.stat_324210709", + "text": "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1827854662", + "text": "Area contains an additional Incubator Queen", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3639275092", + "text": "#% increased Attribute Requirements", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4019237939", + "text": "Gain #% of Damage as Extra Physical Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1999910726", + "text": "Remnants you create have #% increased effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2387539034", + "text": "Attacks with this Weapon Penetrate #% Lightning Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3398301358", + "text": "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4139681126", + "text": "#% increased Dexterity", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3091578504", + "text": "Minions have #% increased Attack and Cast Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_436406826", + "text": "Players are Marked for Death for # seconds\nafter killing a Rare or Unique monster", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2839066308", + "text": "#% increased amount of Mana Leeched", + "type": "desecrated" + }, + { + "id": "desecrated.stat_818778753", + "text": "Damage Penetrates #% Lightning Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2975078312", + "text": "Abyssal Monsters grant #% increased Experience", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2975078312", + "text": "Abyss Monsters in your Maps grant #% increased Experience", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2573406169", + "text": "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2466011626", + "text": "#% chance for Lightning Damage with Hits to be Lucky", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2174054121", + "text": "#% chance to inflict Bleeding on Hit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3873704640", + "text": "#% increased Magic Monsters", + "type": "desecrated" + }, + { + "id": "desecrated.stat_734614379", + "text": "#% increased Strength", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3417711605", + "text": "Damage Penetrates #% Cold Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2797971005", + "text": "Gain # Life per Enemy Hit with Attacks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3891355829|2", + "text": "Upgrades Radius to Large", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2825946427", + "text": "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3419203492", + "text": "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + "type": "desecrated" + }, + { + "id": "desecrated.stat_491450213", + "text": "Minions have #% increased Critical Hit Chance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_9187492", + "text": "# to Level of all Melee Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_473429811", + "text": "#% increased Freeze Buildup", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2468595624", + "text": "Projectiles deal #% increased Damage with Hits against Enemies within 2m", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4157613372", + "text": "Abyss Pits have #% chance to spawn all Monsters as at least Magic", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2586152168", + "text": "Archon recovery period expires #% faster", + "type": "desecrated" + }, + { + "id": "desecrated.stat_299996", + "text": "#% increased Attack Speed while your Companion is in your Presence", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1381474422", + "text": "#% increased Magnitude of Damaging Ailments you inflict", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4270096386", + "text": "Hits have #% increased Critical Hit Chance against you", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2074866941", + "text": "#% increased Exposure Effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3579898587", + "text": "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1994296038", + "text": "Small Passive Skills in Radius also grant #% increased Evasion Rating", + "type": "desecrated" + }, + { + "id": "desecrated.stat_212649958", + "text": "Enemies Hindered by you take #% increased Elemental Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2480498143", + "text": "#% of Skill Mana Costs Converted to Life Costs", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1978899297", + "text": "#% to all Maximum Elemental Resistances", + "type": "desecrated" + }, + { + "id": "desecrated.stat_472520716", + "text": "#% of Damage taken Recouped as Mana", + "type": "desecrated" + }, + { + "id": "desecrated.stat_44972811", + "text": "#% increased Life Regeneration rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1850249186", + "text": "#% increased Spell Damage per 100 maximum Mana", + "type": "desecrated" + }, + { + "id": "desecrated.stat_414821772", + "text": "Increases and Reductions to Projectile Speed also apply to Damage with Bows", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1365232741", + "text": "#% increased Grenade Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_821021828", + "text": "Grants # Life per Enemy Hit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1852872083", + "text": "#% increased Damage with Hits against Rare and Unique Enemies", + "type": "desecrated" + }, + { + "id": "desecrated.stat_314741699", + "text": "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2301718443", + "text": "#% increased Damage against Enemies with Fully Broken Armour", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3131442032", + "text": "#% increased Grenade Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1388221282", + "text": "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2709367754", + "text": "Gain # Rage on Melee Hit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3222402650", + "text": "Small Passive Skills in Radius also grant #% increased Elemental Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1137305356", + "text": "Small Passive Skills in Radius also grant #% increased Spell Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2822644689", + "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1751584857", + "text": "Monsters inflict # Grasping Vine on Hit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_983749596", + "text": "#% increased maximum Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_427684353", + "text": "#% increased Damage with Crossbows", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1078309513", + "text": "Invocated Spells deal #% increased Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3668351662", + "text": "#% increased Shock Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1389754388", + "text": "#% increased Charm Effect Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1135928777", + "text": "#% increased Attack Speed with Crossbows", + "type": "desecrated" + }, + { + "id": "desecrated.stat_232701452", + "text": "#% increased Freeze Buildup if you've consumed an Power Charge Recently", + "type": "desecrated" + }, + { + "id": "desecrated.stat_21071013", + "text": "Herald Skills deal #% increased Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_440490623", + "text": "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1702195217", + "text": "#% to Block chance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_924253255", + "text": "#% increased Slowing Potency of Debuffs on You", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1022759479", + "text": "Notable Passive Skills in Radius also grant #% increased Cast Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2768899959", + "text": "Small Passive Skills in Radius also grant #% increased Lightning Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_124131830", + "text": "# to Level of all Spell Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2487305362", + "text": "#% increased Magnitude of Poison you inflict", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2456523742", + "text": "#% increased Critical Damage Bonus with Spears", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3040571529", + "text": "#% increased Deflection Rating", + "type": "desecrated" + }, + { + "id": "desecrated.stat_538241406", + "text": "Damaging Ailments deal damage #% faster", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3007552094", + "text": "You have Unholy Might", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1967040409", + "text": "Spell Skills have #% increased Area of Effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1423639565", + "text": "Minions have #% to all Elemental Resistances", + "type": "desecrated" + }, + { + "id": "desecrated.stat_916833363", + "text": "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1829102168", + "text": "#% increased Duration of Damaging Ailments on Enemies", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2359002191", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2589572664", + "text": "Notable Passive Skills in Radius also grant #% increased maximum Mana", + "type": "desecrated" + }, + { + "id": "desecrated.stat_599320227", + "text": "#% chance for Trigger skills to refund half of Energy Spent", + "type": "desecrated" + }, + { + "id": "desecrated.stat_809229260", + "text": "# to Armour", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3665922113", + "text": "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2696027455", + "text": "#% increased Damage with Spears", + "type": "desecrated" + }, + { + "id": "desecrated.stat_791928121", + "text": "Causes #% increased Stun Buildup", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2704905000", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3824372849", + "text": "#% increased Curse Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1165163804", + "text": "#% increased Attack Speed with Spears", + "type": "desecrated" + }, + { + "id": "desecrated.stat_795138349", + "text": "#% chance to Poison on Hit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1692879867", + "text": "#% increased Duration of Bleeding on You", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1545858329", + "text": "# to Level of all Lightning Spell Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2112395885", + "text": "#% increased amount of Life Leeched", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2968503605", + "text": "#% increased Flammability Magnitude", + "type": "desecrated" + }, + { + "id": "desecrated.stat_945774314", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Bows", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2077117738", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3641543553", + "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3350279336", + "text": "#% increased Cost Efficiency of Attacks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2854751904", + "text": "Allies in your Presence deal # to # added Attack Lightning Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_147764878", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2896115339", + "text": "#% of Elemental Damage taken Recouped as Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3292710273", + "text": "Gain # Rage when Hit by an Enemy", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1060572482", + "text": "#% increased Effect of Small Passive Skills in Radius", + "type": "desecrated" + }, + { + "id": "desecrated.stat_455816363", + "text": "Small Passive Skills in Radius also grant #% increased Projectile Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1011760251", + "text": "#% to Maximum Lightning Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3676141501", + "text": "#% to Maximum Cold Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_280731498", + "text": "#% increased Area of Effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3398283493", + "text": "Attacks with this Weapon Penetrate #% Fire Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4081947835", + "text": "Projectiles have #% chance to Chain an additional time from terrain", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1998951374", + "text": "Allies in your Presence have #% increased Attack Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3146310524", + "text": "Dazes on Hit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3301100256", + "text": "#% increased Poison Duration on you", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4236566306", + "text": "Meta Skills gain #% increased Energy", + "type": "desecrated" + }, + { + "id": "desecrated.stat_770672621", + "text": "Minions have #% increased maximum Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_160888068", + "text": "Notable Passive Skills in Radius also grant #% increased maximum Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1426522529", + "text": "Small Passive Skills in Radius also grant #% increased Attack Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4095671657", + "text": "#% to Maximum Fire Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2466785537", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2590797182", + "text": "#% increased Movement Speed Penalty from using Skills while moving", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3787460122", + "text": "Offerings have #% increased Maximum Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1352561456", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1569101201", + "text": "Empowered Attacks deal #% increased Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1238227257", + "text": "Debuffs on you expire #% faster", + "type": "desecrated" + }, + { + "id": "desecrated.stat_289128254", + "text": "Allies in your Presence have #% increased Cast Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4234573345", + "text": "#% increased Effect of Notable Passive Skills in Radius", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1327522346", + "text": "#% increased Mana Regeneration Rate while moving", + "type": "desecrated" + }, + { + "id": "desecrated.stat_624954515", + "text": "#% increased Accuracy Rating", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4097212302", + "text": "# to maximum number of Elemental Infusions", + "type": "desecrated" + }, + { + "id": "desecrated.stat_138421180", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + "type": "desecrated" + }, + { + "id": "desecrated.stat_318953428", + "text": "#% chance to Blind Enemies on Hit with Attacks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1740229525", + "text": "Attacks with this Weapon Penetrate #% Cold Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3407849389", + "text": "#% reduced effect of Curses on you", + "type": "desecrated" + }, + { + "id": "desecrated.stat_517664839", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3482326075", + "text": "Remnants can be collected from #% further away", + "type": "desecrated" + }, + { + "id": "desecrated.stat_239367161", + "text": "#% increased Stun Buildup", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2748665614", + "text": "#% increased maximum Mana", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3865605585", + "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4045894391", + "text": "#% increased Damage with Quarterstaves", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3413635271", + "text": "#% increased Reservation Efficiency of Companion Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1374654984", + "text": "#% of Physical Damage prevented Recouped as Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3057012405", + "text": "Allies in your Presence have #% increased Critical Damage Bonus", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2363593824", + "text": "#% increased speed of Recoup Effects", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3552135623", + "text": "Prevent #% of Damage from Deflected Hits", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1177404658", + "text": "#% increased Global Armour, Evasion and Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2442527254", + "text": "Small Passive Skills in Radius also grant #% increased Cold Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1250712710", + "text": "Allies in your Presence have #% increased Critical Hit Chance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1266185101", + "text": "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1365079333", + "text": "Players steal the Eaten Souls of Slain Rare Monsters in Area", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3192728503", + "text": "#% increased Crossbow Reload Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2103650854", + "text": "#% increased effect of Arcane Surge on you", + "type": "desecrated" + }, + { + "id": "desecrated.stat_446027070", + "text": "#% chance to Gain Arcane Surge when you deal a Critical Hit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3850614073", + "text": "Allies in your Presence have #% to all Elemental Resistances", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1697191405", + "text": "#% increased Reservation Efficiency of Herald Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_849987426", + "text": "Allies in your Presence deal # to # added Attack Fire Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2881298780", + "text": "# to # Physical Thorns damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_821241191", + "text": "#% increased Life Recovery from Flasks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2481353198", + "text": "#% increased Block chance (Local)", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1836676211", + "text": "#% increased Flask Charges gained", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1914226331", + "text": "#% increased Cast Speed while on Full Mana", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3585532255", + "text": "#% increased Charm Charges gained", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3741323227", + "text": "#% increased Flask Effect Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3480095574", + "text": "Charms applied to you have #% increased Effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2594634307", + "text": "Mark Skills have #% increased Skill Effect Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1405298142", + "text": "#% increased Stun Threshold if you haven't been Stunned Recently", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3283482523", + "text": "#% increased Attack Speed with Quarterstaves", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2254480358", + "text": "# to Level of all Cold Spell Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_680068163", + "text": "#% increased Stun Threshold", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1494950893", + "text": "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2347036682", + "text": "Allies in your Presence deal # to # added Attack Cold Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1574590649", + "text": "Allies in your Presence deal # to # added Attack Physical Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3523867985", + "text": "#% increased Armour, Evasion and Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_263495202", + "text": "#% increased Cost Efficiency", + "type": "desecrated" + }, + { + "id": "desecrated.stat_830345042", + "text": "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1600707273", + "text": "# to Level of all Physical Spell Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3780644166", + "text": "#% increased Freeze Threshold", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3190283174", + "text": "Area has patches of Mana Siphoning Ground", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1310194496", + "text": "#% increased Global Physical Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4283407333", + "text": "# to Level of all Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3473929743", + "text": "#% increased Pin Buildup", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3655769732", + "text": "#% to Quality of all Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3791899485", + "text": "#% increased Ignite Magnitude", + "type": "desecrated" + }, + { + "id": "desecrated.stat_169946467", + "text": "#% increased Accuracy Rating with Bows", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2256120736", + "text": "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + "type": "desecrated" + }, + { + "id": "desecrated.stat_311641062", + "text": "#% chance for Flasks you use to not consume Charges", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1062710370", + "text": "#% increased Duration of Ignite, Shock and Chill on Enemies", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1949851472", + "text": "#% chance when a Charm is used to use another Charm without consuming Charges", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3885405204", + "text": "Bow Attacks fire # additional Arrows", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3950000557", + "text": "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1777421941", + "text": "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_538981065", + "text": "Grenades have #% chance to activate a second time", + "type": "desecrated" + }, + { + "id": "desecrated.stat_710476746", + "text": "#% increased Reload Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3088348485", + "text": "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_51994685", + "text": "#% increased Flask Life Recovery rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3711973554", + "text": "Invocated Spells have #% chance to consume half as much Energy", + "type": "desecrated" + }, + { + "id": "desecrated.stat_310945763", + "text": "#% increased Life Cost Efficiency", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2760344900", + "text": "#% chance when you Reload a Crossbow to be immediate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_943702197", + "text": "Minions gain #% of their maximum Life as Extra maximum Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2705185939", + "text": "#% chance to Aggravate Bleeding on targets you Hit with Attacks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3256879910", + "text": "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3485067555", + "text": "#% increased Chill Duration on Enemies", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1781372024", + "text": "Recover #% of maximum Life on Killing a Poisoned Enemy", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3868118796", + "text": "Attacks Chain an additional time", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1518586897", + "text": "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2222186378", + "text": "#% increased Mana Recovery from Flasks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1805182458", + "text": "Companions have #% increased maximum Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4258524206", + "text": "#% chance to build an additional Combo on Hit", + "type": "desecrated" + }, + { + "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" + }, + { + "id": "desecrated.stat_4274247770", + "text": "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1039268420", + "text": "Small Passive Skills in Radius also grant #% increased chance to Shock", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3003542304", + "text": "Projectiles have #% chance for an additional Projectile when Forking", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1840985759", + "text": "#% increased Area of Effect for Attacks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3859848445", + "text": "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4226189338", + "text": "# to Level of all Chaos Spell Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_591105508", + "text": "# to Level of all Fire Spell Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3972229254", + "text": "#% of Armour also applies to Chaos Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1823942939", + "text": "# to maximum number of Summoned Ballista Totems", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2543331226", + "text": "#% increased Damage while you have a Totem", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4010677958", + "text": "Allies in your Presence Regenerate # Life per second", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4032352472", + "text": "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3028809864", + "text": "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4121454694", + "text": "Recover #% of maximum Mana when a Charm is used", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3391917254", + "text": "Notable Passive Skills in Radius also grant #% increased Area of Effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2399592398", + "text": "Abysses lead to an Abyssal Boss", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1309799717", + "text": "Small Passive Skills in Radius also grant #% increased Chaos Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_501873429", + "text": "#% chance for Charms you use to not consume Charges", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2715190555", + "text": "#% to Thorns Critical Hit Chance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1776411443", + "text": "Break #% increased Armour", + "type": "desecrated" + }, + { + "id": "desecrated.stat_868556494", + "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1104825894", + "text": "#% faster Curse Activation", + "type": "desecrated" + }, + { + "id": "desecrated.stat_525523040", + "text": "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + "type": "desecrated" + }, + { + "id": "desecrated.stat_330530785", + "text": "#% increased Immobilisation buildup", + "type": "desecrated" + }, + { + "id": "desecrated.stat_99927264", + "text": "#% reduced Shock duration on you", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2408625104", + "text": "Players and their Minions deal no damage for 3 out of every 10 seconds", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2544540062", + "text": "Skills which create Fissures have a #% chance to create an additional Fissure", + "type": "desecrated" + }, + { + "id": "desecrated.stat_627767961", + "text": "#% increased Damage while you have an active Charm", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3700202631", + "text": "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + "type": "desecrated" + }, + { + "id": "desecrated.stat_748522257", + "text": "#% increased Stun Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_242637938", + "text": "#% increased chance to inflict Bleeding", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2474424958", + "text": "Spell Skills have # to maximum number of Summoned Totems", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3274422940", + "text": "#% increased Ice Crystal Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3394832998", + "text": "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1286199571", + "text": "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3669820740", + "text": "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3927679277", + "text": "#% chance when collecting an Elemental Infusion to gain an\nadditional Elemental Infusion of the same type", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2954360902", + "text": "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1874553720", + "text": "#% reduced Chill Duration on you", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2160282525", + "text": "#% reduced Freeze Duration on you", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1417267954", + "text": "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_715957346", + "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2726713579", + "text": "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1714971114", + "text": "Mark Skills have #% increased Use Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3396435291", + "text": "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", + "type": "desecrated" + }, + { + "id": "desecrated.stat_752930724", + "text": "Equipment and Skill Gems have #% increased Attribute Requirements", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1166140625", + "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4136346606", + "text": "#% increased Spell Damage while wielding a Melee Weapon", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1412217137", + "text": "#% increased Flask Mana Recovery rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2639966148", + "text": "Minions Revive #% faster", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3481083201", + "text": "#% increased chance to Poison", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3871530702", + "text": "Conquered Attribute Passive Skills also grant # to Strength", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1266413530", + "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3666476747", + "text": "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4092130601", + "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1793740180", + "text": "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", + "type": "desecrated" + }, + { + "id": "desecrated.stat_185580205", + "text": "Charms gain # charge per Second", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3513818125", + "text": "Small Passive Skills in Radius also grant #% increased Shock Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4159248054", + "text": "#% increased Warcry Cooldown Recovery Rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3851254963", + "text": "#% increased Totem Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1185341308", + "text": "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2013356568", + "text": "Melee Attack Skills have # to maximum number of Summoned Totems", + "type": "desecrated" + }, + { + "id": "desecrated.stat_514290151", + "text": "Gain #% of Maximum Mana as Armour", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3313255158", + "text": "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", + "type": "desecrated" + }, + { + "id": "desecrated.stat_693237939", + "text": "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_394473632", + "text": "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1552666713", + "text": "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1261076060", + "text": "#% increased Life Regeneration rate during Effect of any Life Flask", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2272980012", + "text": "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1653682082", + "text": "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4173554949", + "text": "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2552484522", + "text": "Conquered Attribute Passive Skills also grant # to all Attributes", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3106718406", + "text": "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2083058281", + "text": "Enemies you Mark take #% increased Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2849546516", + "text": "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3119612865", + "text": "Minions have #% additional Physical Damage Reduction", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3065378291", + "text": "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2749595652", + "text": "#% chance for Skills to retain 40% of Glory on use", + "type": "desecrated" + }, + { + "id": "desecrated.stat_412709880", + "text": "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1896066427", + "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3596695232", + "text": "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1002362373", + "text": "#% increased Melee Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1697951953", + "text": "#% increased Hazard Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3973629633", + "text": "#% increased Withered Magnitude", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3628935286", + "text": "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1658498488", + "text": "Corrupted Blood cannot be inflicted on you", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3116427713", + "text": "Conquered Attribute Passive Skills also grant # to Intelligence", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1323216174", + "text": "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1315743832", + "text": "#% increased Thorns damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3409275777", + "text": "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1119086588", + "text": "Conquered Attribute Passive Skills also grant # to Tribute", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3395186672", + "text": "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2479683456", + "text": "Minions Regenerate #% of maximum Life per second", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2610562860", + "text": "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1746561819", + "text": "Enemies Hindered by you take #% increased Chaos Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3374165039", + "text": "#% increased Totem Placement speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_473917671", + "text": "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1103616075", + "text": "Break Armour equal to #% of Physical Damage dealt", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3856744003", + "text": "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_315791320", + "text": "Aura Skills have #% increased Magnitudes", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3308030688", + "text": "#% increased Mana Regeneration Rate while stationary", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2463230181", + "text": "#% Surpassing chance to fire an additional Arrow", + "type": "desecrated" + }, + { + "id": "desecrated.stat_300723956", + "text": "Attack Hits apply Incision", + "type": "desecrated" + }, + { + "id": "desecrated.stat_872504239", + "text": "#% increased Stun Buildup with Maces", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2840989393", + "text": "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3113764475", + "text": "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_111835965", + "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2118708619", + "text": "#% increased Damage if you have Consumed a Corpse Recently", + "type": "desecrated" + }, + { + "id": "desecrated.stat_844449513", + "text": "Notable Passive Skills in Radius also grant #% increased Movement Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4240116297", + "text": "Conquered Small Passive Skills also grant #% increased Elemental Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1316278494", + "text": "#% increased Warcry Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2809428780", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Spears", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2131720304", + "text": "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2250681686", + "text": "Grenade Skills have +# Cooldown Use", + "type": "desecrated" + }, + { + "id": "desecrated.stat_593241812", + "text": "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4180952808", + "text": "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2518900926", + "text": "#% increased Damage with Plant Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2969557004", + "text": "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1337740333", + "text": "Small Passive Skills in Radius also grant #% increased Melee Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4033618138", + "text": "Recover #% of Maximum Life when you expend at least 10 Combo", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1321104829", + "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + "type": "desecrated" + }, + { + "id": "desecrated.stat_533892981", + "text": "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1102738251", + "text": "Life Flasks gain # charges per Second", + "type": "desecrated" + }, + { + "id": "desecrated.stat_644456512", + "text": "#% reduced Flask Charges used", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2107703111", + "text": "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3166958180", + "text": "#% increased Magnitude of Bleeding you inflict", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1697447343", + "text": "#% increased Freeze Buildup with Quarterstaves", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2202308025", + "text": "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3858398337", + "text": "Small Passive Skills in Radius also grant #% increased Armour", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4089835882", + "text": "Small Passive Skills in Radius also grant Break #% increased Armour", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1944020877", + "text": "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + "type": "desecrated" + }, + { + "id": "desecrated.stat_462424929", + "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2440073079", + "text": "#% increased Damage while Shapeshifted", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4258000627", + "text": "Small Passive Skills in Radius also grant Dazes on Hit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2011656677", + "text": "#% increased Poison Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_258119672", + "text": "# metre to Dodge Roll distance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3225608889", + "text": "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + "type": "desecrated" + }, + { + "id": "desecrated.stat_484792219", + "text": "Small Passive Skills in Radius also grant #% increased Stun Threshold", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2653955271", + "text": "Damage Penetrates #% Fire Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3771516363", + "text": "#% additional Physical Damage Reduction", + "type": "desecrated" + }, + { + "id": "desecrated.stat_287294012", + "text": "# to # Fire Thorns damage per 100 maximum Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3837707023", + "text": "Minions have #% to Chaos Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1045789614", + "text": "#% increased Critical Hit Chance against Marked Enemies", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1691403182", + "text": "Minions have #% increased Cooldown Recovery Rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3038857426", + "text": "Conquered Small Passive Skills also grant #% increased Spell damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_821948283", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2991045011", + "text": "Recover #% of Maximum Mana when you expend at least 10 Combo", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1087531620", + "text": "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2392824305", + "text": "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1602294220", + "text": "Small Passive Skills in Radius also grant #% increased Warcry Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_139889694", + "text": "Small Passive Skills in Radius also grant #% increased Fire Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3839676903", + "text": "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", + "type": "desecrated" + }, + { + "id": "desecrated.stat_656291658", + "text": "#% increased Cast Speed when on Full Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4257790560", + "text": "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", + "type": "desecrated" + }, + { + "id": "desecrated.stat_980177976", + "text": "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2200293569", + "text": "Mana Flasks gain # charges per Second", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3566150527", + "text": "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1087108135", + "text": "Small Passive Skills in Radius also grant #% increased Curse Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1570770415", + "text": "#% reduced Charm Charges used", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3191479793", + "text": "Offering Skills have #% increased Buff effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4258720395", + "text": "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1181419800", + "text": "#% increased Damage with Maces", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2957407601", + "text": "Offering Skills have #% increased Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2320654813", + "text": "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2720982137", + "text": "Banner Skills have #% increased Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4162678661", + "text": "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3821543413", + "text": "Notable Passive Skills in Radius also grant #% increased Block chance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_359357545", + "text": "Enemies Hindered by you take #% increased Physical Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3143918757", + "text": "#% increased Glory generation", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1145481685", + "text": "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1967051901", + "text": "Loads an additional bolt", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1594812856", + "text": "#% increased Damage with Warcries", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1569159338", + "text": "#% increased Parry Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2334956771", + "text": "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + "type": "desecrated" + }, + { + "id": "desecrated.stat_85367160", + "text": "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", + "type": "desecrated" + }, + { + "id": "desecrated.stat_253641217", + "text": "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1852184471", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Maces", + "type": "desecrated" + }, + { + "id": "desecrated.stat_221701169", + "text": "Notable Passive Skills in Radius also grant #% increased Poison Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3386297724", + "text": "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + "type": "desecrated" + }, + { + "id": "desecrated.stat_654207792", + "text": "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2135541924", + "text": "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2056107438", + "text": "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2108821127", + "text": "Small Passive Skills in Radius also grant #% increased Totem Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1800303440", + "text": "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1869147066", + "text": "#% increased Glory generation for Banner Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4147897060", + "text": "#% increased Block chance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2907381231", + "text": "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2580617872", + "text": "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1829333149", + "text": "Conquered Small Passive Skills also grant #% increased Physical damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_569299859", + "text": "#% to all maximum Resistances", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2601021356", + "text": "Conquered Small Passive Skills also grant #% increased Chaos damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2066964205", + "text": "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3774951878", + "text": "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + "type": "desecrated" + }, + { + "id": "desecrated.stat_8816597", + "text": "Conquered Small Passive Skills also grant #% increased Attack damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2709646369", + "text": "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2976476845", + "text": "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_61644361", + "text": "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1285594161", + "text": "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1773308808", + "text": "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4009879772", + "text": "#% increased Life Flask Charges gained", + "type": "desecrated" + }, + { + "id": "desecrated.stat_391602279", + "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3752589831", + "text": "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2780670304", + "text": "Conquered Small Passive Skills also grant #% increased Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1756380435", + "text": "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_266564538", + "text": "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1034611536", + "text": "Notable Passive Skills in Radius also grant Charms gain # charge per Second", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1834658952", + "text": "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + "type": "desecrated" + }, + { + "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" + }, + { + "id": "desecrated.stat_3590792340", + "text": "#% increased Mana Flask Charges gained", + "type": "desecrated" + }, + { + "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" + }, + { + "id": "desecrated.stat_1432756708", + "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3401186585", + "text": "#% increased Parried Debuff Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_565784293", + "text": "#% increased Knockback Distance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3343033032", + "text": "Conquered Small Passive Skills also grant Minions deal #% increased damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4264952559", + "text": "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_944643028", + "text": "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1434716233", + "text": "Warcries Empower an additional Attack", + "type": "desecrated" + }, + { + "id": "desecrated.stat_712554801", + "text": "#% increased Effect of your Mark Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2638756573", + "text": "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2690740379", + "text": "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_127081978", + "text": "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2637470878", + "text": "#% increased Armour Break Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_818877178", + "text": "#% increased Parried Debuff Magnitude", + "type": "desecrated" + }, + { + "id": "desecrated.stat_255840549", + "text": "Small Passive Skills in Radius also grant #% increased Hazard Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2912416697", + "text": "Notable Passive Skills in Radius also grant #% increased Blind Effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1689748350", + "text": "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", + "type": "desecrated" + }, + { + "id": "desecrated.stat_504915064", + "text": "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3173882956", + "text": "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + "type": "desecrated" + }, + { + "id": "desecrated.stat_686254215", + "text": "#% increased Totem Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1938221597", + "text": "Conquered Attribute Passive Skills also grant # to Dexterity", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1505023559", + "text": "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3939216292", + "text": "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2149603090", + "text": "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3877264671", + "text": "Monster have #% increased Elemental Ailment Application", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1585769763", + "text": "#% increased Blind Effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4043376133", + "text": "#% increased Magnitude of Abyssal Wasting you inflict", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1148433552", + "text": "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4101943684", + "text": "Monsters have #% increased Stun Threshold", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1459321413", + "text": "#% increased Bleeding Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1160637284", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2116424886", + "text": "#% increased Life Regeneration Rate while moving", + "type": "desecrated" + }, + { + "id": "desecrated.stat_211727", + "text": "Monsters deal #% of Damage as Extra Cold", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1911237468", + "text": "#% increased Stun Threshold while Parrying", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1846980580", + "text": "Notable Passive Skills in Radius also grant # to Maximum Rage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1181501418", + "text": "# to Maximum Rage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_554690751", + "text": "Players are periodically Cursed with Elemental Weakness", + "type": "desecrated" + }, + { + "id": "desecrated.stat_442393998", + "text": "Small Passive Skills in Radius also grant #% increased Totem Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3936121440", + "text": "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2887760183", + "text": "Monsters gain #% of maximum Life as Extra maximum Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_95249895", + "text": "#% more Monster Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_30438393", + "text": "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2770044702", + "text": "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3694078435", + "text": "You take #% of damage from Blocked Hits with a raised Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3855016469", + "text": "Hits against you have #% reduced Critical Damage Bonus", + "type": "desecrated" + }, + { + "id": "desecrated.stat_318092306", + "text": "Small Passive Skills in Radius also grant Attack Hits apply Incision", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1818915622", + "text": "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3037553757", + "text": "#% increased Warcry Buff Effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1054098949", + "text": "+#% Monster Elemental Resistances", + "type": "desecrated" + }, + { + "id": "desecrated.stat_321970274", + "text": "#% of Physical Damage taken as Lightning while your Shield is raised", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1892122971", + "text": "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3429148113", + "text": "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2539290279", + "text": "Monsters are Armoured", + "type": "desecrated" + }, + { + "id": "desecrated.stat_349586058", + "text": "Area has patches of Chilled Ground", + "type": "desecrated" + }, + { + "id": "desecrated.stat_378796798", + "text": "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + "type": "desecrated" + }, + { + "id": "desecrated.stat_480796730", + "text": "#% to maximum Block chance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_886088880", + "text": "Your Heavy Stun buildup empties #% faster", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1283490138", + "text": "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", + "type": "desecrated" + }, + { + "id": "desecrated.stat_92381065", + "text": "Monsters deal #% of Damage as Extra Fire", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1994551050", + "text": "Monsters have #% increased Ailment Threshold", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1590846356", + "text": "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_468694293", + "text": "Conquered Small Passive Skills also grant #% increased Evasion Rating", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1007380041", + "text": "Small Passive Skills in Radius also grant #% increased Parry Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2549889921", + "text": "Players gain #% reduced Flask Charges", + "type": "desecrated" + }, + { + "id": "desecrated.stat_941368244", + "text": "Players have #% more Cooldown Recovery Rate", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3998863698", + "text": "Monsters have #% increased Freeze Buildup", + "type": "desecrated" + }, + { + "id": "desecrated.stat_970480050", + "text": "Conquered Small Passive Skills also grant #% increased Armour", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1320662475", + "text": "Small Passive Skills in Radius also grant #% increased Thorns damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2029171424", + "text": "Players are periodically Cursed with Enfeeble", + "type": "desecrated" + }, + { + "id": "desecrated.stat_57326096", + "text": "Monsters have #% Critical Damage Bonus", + "type": "desecrated" + }, + { + "id": "desecrated.stat_512071314", + "text": "Monsters deal #% of Damage as Extra Lightning", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2200661314", + "text": "Monsters deal #% of Damage as Extra Chaos", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2122183138", + "text": "# Mana gained when you Block", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1495814176", + "text": "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1984618452", + "text": "Monsters have #% increased Shock Chance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_179541474", + "text": "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_115425161", + "text": "Monsters have #% increased Stun Buildup", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3909654181", + "text": "Monsters have #% increased Attack, Cast and Movement Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4181072906", + "text": "Players have #% less Recovery Rate of Life and Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2508044078", + "text": "Monsters inflict #% increased Flammability Magnitude", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4142814612", + "text": "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_337935900", + "text": "Monsters take #% reduced Extra Damage from Critical Hits", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2374711847", + "text": "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1588049749", + "text": "Monsters have #% increased Accuracy Rating", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3171212276", + "text": "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + "type": "desecrated" + }, + { + "id": "desecrated.stat_429143663", + "text": "Banner Skills have #% increased Area of Effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1301765461", + "text": "#% to Maximum Chaos Resistance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2475870935", + "text": "Conquered Small Passive Skills also grant #% increased Stun Threshold", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1879340377", + "text": "Monsters Break Armour equal to #% of Physical Damage dealt", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2570249991", + "text": "Monsters are Evasive", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3222482040", + "text": "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3477720557", + "text": "Area has patches of Shocked Ground", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1890519597", + "text": "#% increased Monster Damage", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1309819744", + "text": "Monsters fire # additional Projectiles", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3592067990", + "text": "Area contains # additional packs of Plagued Monsters", + "type": "desecrated" + }, + { + "id": "desecrated.stat_95221307", + "text": "Monsters have #% chance to Poison on Hit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2506820610", + "text": "Monsters have #% chance to inflict Bleeding on Hit", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2534359663", + "text": "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3796523155", + "text": "#% less effect of Curses on Monsters", + "type": "desecrated" + }, + { + "id": "desecrated.stat_942519401", + "text": "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + "type": "desecrated" + }, + { + "id": "desecrated.stat_133340941", + "text": "Area has patches of Ignited Ground", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2550456553", + "text": "Rare Monsters have # additional Modifier", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2550456553", + "text": "Rare Monsters in your Maps have # additional Modifier", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2753083623", + "text": "Monsters have #% increased Critical Hit Chance", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1898978455", + "text": "Monster Damage Penetrates #% Elemental Resistances", + "type": "desecrated" + }, + { + "id": "desecrated.stat_240445958", + "text": "Area contains # additional packs of Undead", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3376488707", + "text": "#% maximum Player Resistances", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1629357380", + "text": "Players are periodically Cursed with Temporal Chains", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1514844108", + "text": "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1079292660", + "text": "#% increased Energy Shield Recharge Rate if you've Blocked Recently", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3757259819", + "text": "Area contains # additional packs of Beasts", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1436812886", + "text": "Area contains # additional packs of Ezomyte Monsters", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4181857719", + "text": "Area contains # additional packs of Vaal Monsters", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2949706590", + "text": "Area contains # additional packs of Iron Guards", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2783157569", + "text": "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_4130878258", + "text": "Area contains # additional packs of Faridun Monsters", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3309089125", + "text": "Area contains # additional packs of Bramble Monsters", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3811191316", + "text": "Minions have #% increased Area of Effect", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1980802737", + "text": "Grenade Skills Fire an additional Projectile", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1689473577", + "text": "Area contains # additional packs of Transcended Monsters", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2523933828", + "text": "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1544773869", + "text": "#% increased Cooldown Recovery Rate for Grenade Skills", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2488361432", + "text": "#% increased Monster Cast Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_3200877707", + "text": "Skills have a #% chance to not consume Glory", + "type": "desecrated" + }, + { + "id": "desecrated.stat_2306522833", + "text": "#% increased Monster Movement Speed", + "type": "desecrated" + }, + { + "id": "desecrated.stat_1913583994", + "text": "#% increased Monster Attack Speed", + "type": "desecrated" + } + ] + }, + { + "id": "sanctum", + "label": "Sanctum", + "entries": [ + { + "id": "sanctum.stat_767926824", + "text": "Zarokh, the Temporal drops Blessed Bonds", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3840591093", + "text": "Zarokh, the Temporal drops Against the Darkness", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2878762585", + "text": "#% chance to Avoid Resolve loss from Enemy Hits", + "type": "sanctum" + }, + { + "id": "sanctum.stat_4057192895", + "text": "Gain # Sacred Water when you complete a Room", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3376488707", + "text": "#% to all Maximum Resistances", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1307773596", + "text": "Aureus Coins are converted to Experience upon defeating the Herald of the Scourge", + "type": "sanctum" + }, + { + "id": "sanctum.stat_315260783", + "text": "Aureus Coins are converted to Relics upon defeating the Herald of the Scourge", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1019656601", + "text": "Aureus Coins are converted to Tainted Currency upon defeating the Herald of the Scourge", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2149490821", + "text": "Zarokh, the Temporal deals #% more Damage", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2226900052", + "text": "Zarokh, the Temporal takes #% more Damage", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1175354969", + "text": "The Herald of the Scourge drops an additional Invocation", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3878191575", + "text": "Zarokh, the Temporal drops an additional Barya", + "type": "sanctum" + }, + { + "id": "sanctum.stat_502549687", + "text": "Duplicates up to # random Offer Reward upon defeating the Herald of the Scourge", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3909654181", + "text": "Monsters have #% increased Attack, Cast and Movement Speed", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3114474137", + "text": "Monsters take #% increased Damage", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1890519597", + "text": "Monsters deal #% increased Damage", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1737465970", + "text": "#% increased Armour", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3470883829", + "text": "#% additional Physical Damage Reduction", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2948404493", + "text": "Hits against you have #% reduced Critical Damage Bonus", + "type": "sanctum" + }, + { + "id": "sanctum.stat_978111083", + "text": "#% increased Slowing Potency of Debuffs on You", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1016362888", + "text": "#% increased Armour, Evasion and Energy Shield", + "type": "sanctum" + }, + { + "id": "sanctum.stat_698936647", + "text": "Your Armour, Evasion and Energy Shield are zero", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1040593638", + "text": "# metre to Dodge Roll distance", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1707887759", + "text": "#% increased maximum Energy Shield", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3882471944", + "text": "#% increased Evasion Rating", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1200789871", + "text": "#% increased maximum Life", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1416455556", + "text": "#% increased Movement Speed", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3128852541", + "text": "#% to All Resistances", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3134588943", + "text": "#% increased chance to avoid Honour loss from Enemy Melee Hits", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1798691236", + "text": "#% increased chance to Avoid Resolve Loss from Enemy Projectile Hits", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2284543592", + "text": "#% chance to Avoid Resolve loss from Enemy Hits if you've been Hit Recently", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3226329527", + "text": "Bosses take #% increased Damage", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2469854926", + "text": "Zarokh, the Temporal drops Temporalis", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2821715641", + "text": "Zarokh, the Temporal drops Sekhema's Resolve", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3059754769", + "text": "Zarokh, the Temporal drops Sandstorm Visage", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2207905451", + "text": "Bosses deal #% increased Damage", + "type": "sanctum" + }, + { + "id": "sanctum.stat_408585189", + "text": "Rare Monsters take #% increased Damage", + "type": "sanctum" + }, + { + "id": "sanctum.stat_199414195", + "text": "Rare Monsters deal #% increased Damage", + "type": "sanctum" + }, + { + "id": "sanctum.stat_729354668", + "text": "#% increased quantity of Keys dropped by Monsters", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1680962389", + "text": "#% increased quantity of Relics dropped by Monsters", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1388771661", + "text": "#% increased Resolve Aegis", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3889616543", + "text": "Resolve Aegis Recovers #% faster while not losing Resolve", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3621177126", + "text": "Resolve Mitigation from Enemy Hits is based on #% of Armour", + "type": "sanctum" + }, + { + "id": "sanctum.stat_774484840", + "text": "#% chance for Resolve Mitigation to be doubled when Hit by an Enemy", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3554921410", + "text": "Traps deal #% increased Damage", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3170238729", + "text": "When you gain a Key #% chance to gain another", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3096543632", + "text": "#% to Maximum Honour Resistance", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1960517795", + "text": "#% chance to Avoid gaining an Affliction", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2545161750", + "text": "Cannot restore Honour", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3870327403", + "text": "#% chance if you were to lose all your Honour to have 1 Honour instead", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2155917449", + "text": "#% chance for each of your Keys to upgrade on completing a Floor", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2410906123", + "text": "# Resolve Aegis", + "type": "sanctum" + }, + { + "id": "sanctum.stat_142859883", + "text": "#% Resolve Mitigation from Enemy Hits", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2363402715", + "text": "Fountains have #% chance to grant double Sacred Water", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3237367570", + "text": "Rooms are unknown on the Trial Map", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2287831219", + "text": "#% to Honour Resistance", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1583320325", + "text": "#% increased Honour restored", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2150725270", + "text": "Damage taken cannot be Absorbed", + "type": "sanctum" + }, + { + "id": "sanctum.stat_386901949", + "text": "An additional Room is revealed on the Trial Map", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3970123360", + "text": "#% increased maximum Honour", + "type": "sanctum" + }, + { + "id": "sanctum.stat_4191312223", + "text": "Maximum Honour is 1", + "type": "sanctum" + }, + { + "id": "sanctum.stat_290775436", + "text": "The Merchant has an additional Choice", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3096446459", + "text": "#% increased Merchant Prices", + "type": "sanctum" + }, + { + "id": "sanctum.stat_231205265", + "text": "Monsters have #% chance to drop double Sacred Water", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2283325632", + "text": "Cannot have Boons", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3865020351", + "text": "Restore # Honour on killing a Boss", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2492340460", + "text": "Restore # Honour on venerating a Maraketh Shrine", + "type": "sanctum" + }, + { + "id": "sanctum.stat_521869848", + "text": "Restore # Honour on picking up a Key", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2114314842", + "text": "Restore # Honour on room completion", + "type": "sanctum" + }, + { + "id": "sanctum.stat_2393318075", + "text": "Gain # Sacred Water at the start of the Trial", + "type": "sanctum" + }, + { + "id": "sanctum.stat_1512067281", + "text": "Cannot be used with Trials below level #", + "type": "sanctum" + }, + { + "id": "sanctum.stat_3182333322", + "text": "This item is destroyed when applied to a Trial", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_62326", + "text": "Has Honed Claws", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_15442", + "text": "Has Fright Mask", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_41921", + "text": "Has Deadly Snare", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_62584", + "text": "Has Dark Pit", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_21680", + "text": "Has Low Rivers", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_40008", + "text": "Has Blunt Sword", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_56047", + "text": "Has Rapid Quicksand", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_16773", + "text": "Has UNUSED", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_13820", + "text": "Has Hare Foot", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_44476", + "text": "Has Flooding Rivers", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_46242", + "text": "Has Reparations", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_61003", + "text": "Has Leaking Waterskin", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_35767", + "text": "Has Gate Toll", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_59642", + "text": "Has Death Toll", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_35912", + "text": "Has Exhausted Wells", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_13875", + "text": "Has Spiked Shell", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_359", + "text": "Has Hungry Fangs", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_19039", + "text": "Has Branded Balbalakh", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_9350", + "text": "Has Suspected Sympathiser", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_4682", + "text": "Has Honoured Challenger", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_34448", + "text": "Has Black Smoke", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_44243", + "text": "Has Scrying Crystal", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_34561", + "text": "Has Trade Tariff", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_24536", + "text": "Has Silver Tongue", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_44836", + "text": "Has Imperial Seal", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_38171", + "text": "Has Garukhan's Favour", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_20573", + "text": "Has Winter Drought", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_24603", + "text": "Has Earned Honour", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_47837", + "text": "Has Ahkeli's Guard", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_3157", + "text": "Has Glowing Orb", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_43384", + "text": "Has Veiled Sight", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_17084", + "text": "Has Red Smoke", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_1198", + "text": "Has Golden Smoke", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_28906", + "text": "Has Purple Smoke", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_32300", + "text": "Has Ghastly Scythe", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_44077", + "text": "Has Orbala's Leathers", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_34499", + "text": "Has Sekhema's Cloak", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_13598", + "text": "Has Dekhara's Necklace", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_50613", + "text": "Has Unassuming Brick", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_30866", + "text": "Has Moment's Peace", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_53929", + "text": "Has Spiked Exit", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_48875", + "text": "Has Tattered Blindfold", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_38381", + "text": "Has Unquenched Thirst", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_5501", + "text": "Has Dishonoured Tattoo", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_45401", + "text": "Has Diverted River", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_31580", + "text": "Has Raincaller", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_14131", + "text": "Has Deceptive Mirror", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_34171", + "text": "Has Haemorrhage", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_9121", + "text": "Has All-Seeing Eye", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_51140", + "text": "Has Lustrous Pearl", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_57507", + "text": "Has Viscous Ichor", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_46977", + "text": "Has Wooden Effigy", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_41741", + "text": "Has Sanguine Vial", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_29924", + "text": "Has Ornate Dagger", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_6090", + "text": "Has Assassin's Blade", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_38167", + "text": "Has Enchanted Urn", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_59406", + "text": "Has Adrenaline Vial", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_45428", + "text": "Has Mirror of Fortune", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_54204", + "text": "Has Orbala Statuette", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_28826", + "text": "Has Holy Water", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_40142", + "text": "Has Fountain of Youth", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_51458", + "text": "Has Silver Chalice", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_41498", + "text": "Has Black Pearl", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_52622", + "text": "Has Balbala's Gift", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_60796", + "text": "Has Chipped Dice", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_3716", + "text": "Has Upward Path", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_27130", + "text": "Has Sacred Mirror", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_30042", + "text": "Has Crystal Shard", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_379", + "text": "Has Lustrous Lacquer", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_18125", + "text": "Has Forgotten Traditions", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_35605", + "text": "Has Season of Famine", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_56996", + "text": "Has Myriad Aspersions", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_32085", + "text": "Has Costly Aid", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_25062", + "text": "Has Chains of Binding", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_9853", + "text": "Has Untouchable", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_30450", + "text": "Has Rusted Mallet", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_24131", + "text": "Has Weakened Flesh", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_28313", + "text": "Has Fiendish Wings", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_30473", + "text": "Has Worn Sandals", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_43834", + "text": "Has Orb of Negation", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_55120", + "text": "Has Tradition's Demand", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_6958", + "text": "Has Chiselled Stone", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_45600", + "text": "Has Glass Shard", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_35578", + "text": "Has Iron Manacles", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_48487", + "text": "Has Sharpened Arrowhead", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_16335", + "text": "Has Shattered Shield", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_55502", + "text": "Has Corrosive Concoction", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_62382", + "text": "Has Pledge to the Guileful", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_27532", + "text": "Has Pledge to the Powerful", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_60079", + "text": "Has Pledge to the Deserted", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_48548", + "text": "Has Pledge to the Afflicted", + "type": "sanctum" + }, + { + "id": "sanctum.sanctum_effect_0", + "text": "Has ", + "type": "sanctum" + } + ] + }, + { + "id": "skill", + "label": "Skill", + "entries": [ + { + "id": "skill.shield_block", + "text": "Grants Skill: Level # Raise Shield", + "type": "skill" + }, + { + "id": "skill.mana_drain", + "text": "Grants Skill: Level # Mana Drain", + "type": "skill" + }, + { + "id": "skill.power_siphon", + "text": "Grants Skill: Level # Power Siphon", + "type": "skill" + }, + { + "id": "skill.summon_skeleton_warrior", + "text": "Grants Skill: Level # Skeletal Warrior Minion", + "type": "skill" + }, + { + "id": "skill.sigil_of_power", + "text": "Grants Skill: Level # Sigil of Power", + "type": "skill" + }, + { + "id": "skill.malice", + "text": "Grants Skill: Level # Malice", + "type": "skill" + }, + { + "id": "skill.lightning_bolt", + "text": "Grants Skill: Level # Lightning Bolt", + "type": "skill" + }, + { + "id": "skill.volatile_dead", + "text": "Grants Skill: Level # Volatile Dead", + "type": "skill" + }, + { + "id": "skill.firebolt", + "text": "Grants Skill: Level # Firebolt", + "type": "skill" + }, + { + "id": "skill.chaosbolt", + "text": "Grants Skill: Level # Chaos Bolt", + "type": "skill" + }, + { + "id": "skill.bone_blast", + "text": "Grants Skill: Level # Bone Blast", + "type": "skill" + }, + { + "id": "skill.freezing_shards", + "text": "Grants Skill: Level # Freezing Shards", + "type": "skill" + }, + { + "id": "skill.discipline", + "text": "Grants Skill: Level # Discipline", + "type": "skill" + }, + { + "id": "skill.living_bomb_player", + "text": "Grants Skill: Level # Living Bomb", + "type": "skill" + }, + { + "id": "skill.spellslinger_invocation", + "text": "Grants Skill: Level # Spellslinger", + "type": "skill" + }, + { + "id": "skill.unique_dusk_vigil_triggered_blazing_cluster", + "text": "Grants Skill: Level # Ember Fusillade", + "type": "skill" + }, + { + "id": "skill.purity_of_fire", + "text": "Grants Skill: Level # Purity of Fire", + "type": "skill" + }, + { + "id": "skill.unique_earthbound_triggered_spark", + "text": "Grants Skill: Level # Spark", + "type": "skill" + }, + { + "id": "skill.purity_of_lightning", + "text": "Grants Skill: Level # Purity of Lightning", + "type": "skill" + }, + { + "id": "skill.unique_breach_lightning_bolt", + "text": "Grants Skill: Level # Lightning Bolt", + "type": "skill" + }, + { + "id": "skill.purity_of_ice", + "text": "Grants Skill: Level # Purity of Ice", + "type": "skill" + }, + { + "id": "skill.corpse_cloud_triggered", + "text": "Grants Skill: Level # Decompose", + "type": "skill" + }, + { + "id": "skill.parry", + "text": "Grants Skill: Level # Parry", + "type": "skill" + }, + { + "id": "skill.hyena_cackle", + "text": "Grants Skill: Level # Cackling Companions", + "type": "skill" + }, + { + "id": "skill.galvanic_field", + "text": "Grants Skill: Level # Galvanic Field", + "type": "skill" + }, + { + "id": "skill.corpse_cloud", + "text": "Grants Skill: Level # Decompose", + "type": "skill" + }, + { + "id": "skill.cast_on_block", + "text": "Grants Skill: Level # Cast on Block", + "type": "skill" + }, + { + "id": "skill.unleash", + "text": "Grants Skill: Level # Unleash", + "type": "skill" + }, + { + "id": "skill.enervating_nova", + "text": "Grants Skill: Level # Enervating Nova", + "type": "skill" + }, + { + "id": "skill.consecrate", + "text": "Grants Skill: Level # Consecrate", + "type": "skill" + }, + { + "id": "skill.solar_orb", + "text": "Grants Skill: Level # Solar Orb", + "type": "skill" + }, + { + "id": "skill.reap", + "text": "Grants Skill: Level # Reap", + "type": "skill" + }, + { + "id": "skill.feast_of_flesh", + "text": "Grants Skill: Level # Feast of Flesh", + "type": "skill" + }, + { + "id": "skill.fulmination", + "text": "Grants Skill: Level # Fulmination", + "type": "skill" + }, + { + "id": "skill.cast_on_charm_use", + "text": "Grants Skill: Level # Cast on Charm Use", + "type": "skill" + }, + { + "id": "skill.phantasmal_arrow", + "text": "Grants Skill: Level # Phantasmal Arrow", + "type": "skill" + }, + { + "id": "skill.gemini_surge", + "text": "Grants Skill: Level # Gemini Surge", + "type": "skill" + }, + { + "id": "skill.black_powder_blitz_reservation", + "text": "Grants Skill: Level # Black Powder Blitz", + "type": "skill" + }, + { + "id": "skill.blink", + "text": "Grants Skill: Level # Blink", + "type": "skill" + }, + { + "id": "skill.herald_of_thunder", + "text": "Grants Skill: Level # Herald of Thunder", + "type": "skill" + }, + { + "id": "skill.herald_of_ash", + "text": "Grants Skill: Level # Herald of Ash", + "type": "skill" + }, + { + "id": "skill.requiem_ammo", + "text": "Grants Skill: Level # Compose Requiem", + "type": "skill" + }, + { + "id": "skill.herald_of_ice", + "text": "Grants Skill: Level # Herald of Ice", + "type": "skill" + }, + { + "id": "skill.future_past", + "text": "Grants Skill: Level # Future-Past", + "type": "skill" + }, + { + "id": "skill.life_remnants", + "text": "Grants Skill: Level # Life Remnants", + "type": "skill" + }, + { + "id": "skill.crackling_palm", + "text": "Grants Skill: Level # Crackling Palm", + "type": "skill" + }, + { + "id": "skill.cast_lightning_spell_on_hit", + "text": "Grants Skill: Level # Thundergod's Wrath", + "type": "skill" + }, + { + "id": "skill.exploding_poison_toad", + "text": "Grants Skill: Level # Bursting Fen Toad", + "type": "skill" + }, + { + "id": "skill.scattering_calamity", + "text": "Grants Skill: Level # His Scattering Calamity", + "type": "skill" + }, + { + "id": "skill.pinnacle_of_power", + "text": "Grants Skill: Level # Pinnacle of Power", + "type": "skill" + }, + { + "id": "skill.valakos_charge", + "text": "Grants Skill: Level # Valako's Charge", + "type": "skill" + }, + { + "id": "skill.withering_presence", + "text": "Grants Skill: Level # Withering Presence", + "type": "skill" + }, + { + "id": "skill.chaos_surge", + "text": "Grants Skill: Level # Chaotic Surge", + "type": "skill" + }, + { + "id": "skill.his_foul_emergence", + "text": "Grants Skill: Level # His Foul Emergence", + "type": "skill" + }, + { + "id": "skill.molten_crash", + "text": "Grants Skill: Level # Molten Crash", + "type": "skill" + }, + { + "id": "skill.heart_of_ice", + "text": "Grants Skill: Level # Heart of Ice", + "type": "skill" + }, + { + "id": "skill.vile_disruption", + "text": "Grants Skill: Level # His Vile Intrusion", + "type": "skill" + }, + { + "id": "skill.icestorm", + "text": "Grants Skill: Level # Icestorm", + "type": "skill" + }, + { + "id": "skill.his_winnowing_flame", + "text": "Grants Skill: Level # His Winnowing Flame", + "type": "skill" + }, + { + "id": "skill.mirror_of_refraction", + "text": "Grants Skill: Level # Mirror of Refraction", + "type": "skill" + }, + { + "id": "skill.grave_command", + "text": "Grants Skill: Level # His Grave Command", + "type": "skill" + }, + { + "id": "skill.shattering_spite", + "text": "Grants Skill: Level # Shattering Spite", + "type": "skill" + }, + { + "id": "skill.impurity", + "text": "Grants Skill: Level # Impurity", + "type": "skill" + }, + { + "id": "skill.fireball", + "text": "Grants Skill: Level # Fireball", + "type": "skill" + }, + { + "id": "skill.sanguine_revelry", + "text": "Grants Skill: Level # Sanguine Revelry", + "type": "skill" + }, + { + "id": "skill.atziri_herald", + "text": "Grants Skill: Level # Herald of the Royal Queen", + "type": "skill" + }, + { + "id": "skill.ancient_gifts", + "text": "Grants Skill: Level # Wildwood's Gifts", + "type": "skill" + }, + { + "id": "skill.harbinger_of_madness", + "text": "Grants Skill: Level # Harbinger of Madness", + "type": "skill" + }, + { + "id": "skill.triggered_molten_shower", + "text": "Grants Skill: Level # Molten Shower", + "type": "skill" + }, + { + "id": "skill.runic_tempering", + "text": "Grants Skill: Level # Runic Tempering", + "type": "skill" + }, + { + "id": "skill.summon_mist_raven", + "text": "Grants Skill: Level # Mist Raven", + "type": "skill" + }, + { + "id": "skill.sigil_of_life", + "text": "Grants Skill: Level # Rite of Restoration", + "type": "skill" + }, + { + "id": "skill.nightfall_soaring_midnight", + "text": "Grants Skill: Level # Soaring Midnight", + "type": "skill" + } + ] + } + ] +} \ No newline at end of file diff --git a/src/Modules/Common.lua b/src/Modules/Common.lua index 4f7a16d4b..8f53196d6 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,6 +888,9 @@ 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 @@ -907,12 +910,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 From c27601c390552380f1a1ebd29fce6f316d162b33 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sat, 30 May 2026 17:24:22 +0300 Subject: [PATCH 02/11] Fix newlines in querymods.lua --- src/Classes/TradeQueryGenerator.lua | 6 ++ src/Data/QueryMods.lua | 131 ++++++++++++++-------------- src/Modules/Common.lua | 3 +- 3 files changed, 75 insertions(+), 65 deletions(-) diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index 9cacc7cd5..77f32e130 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -424,6 +424,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 diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index 306bb197a..8b9c0cefd 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -1,7 +1,7 @@ -- This file is automatically generated, do not edit! -- Stat data (c) Grinding Gear Games --- This file contains categories of stats, mapped from trade hash to details +-- This file contains categories of from trade hash to details -- relevant for generating search weights Note that the trade site requires a -- prefix of e.g. explicit.stat_{hash}. See -- https://www.pathofexile.com/api/trade2/data/stats for a list of all trade @@ -33036,10 +33036,10 @@ return { ["usePositiveSign"] = true, }, ["101878827"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["Sceptre"] = { + ["max"] = 30, + ["min"] = 30, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -33337,10 +33337,10 @@ return { ["usePositiveSign"] = true, }, ["1250712710"] = { - ["1HWeapon"] = { - ["max"] = 14, - ["min"] = 14, - }, + ["Sceptre"] = { + ["max"] = 14, + ["min"] = 14, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -33728,10 +33728,10 @@ return { }, }, ["1574590649"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -33872,10 +33872,10 @@ return { }, }, ["1798257884"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["Sceptre"] = { + ["max"] = 30, + ["min"] = 30, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -33938,10 +33938,10 @@ return { }, }, ["1998951374"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["Sceptre"] = { + ["max"] = 8, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -34295,11 +34295,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["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", - }, - }, + ["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", + }, + }, ["2250533757"] = { ["Boots"] = { ["max"] = 5, @@ -34511,11 +34512,12 @@ return { ["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", - }, - }, + ["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", + }, + }, ["2709367754"] = { ["Gloves"] = { ["max"] = 1, @@ -34570,10 +34572,10 @@ return { }, }, ["2854751904"] = { - ["1HWeapon"] = { - ["max"] = 20.5, - ["min"] = 20.5, - }, + ["Sceptre"] = { + ["max"] = 20.5, + ["min"] = 20.5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -34609,10 +34611,10 @@ return { }, }, ["289128254"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["Sceptre"] = { + ["max"] = 8, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -34998,10 +35000,10 @@ return { }, }, ["3057012405"] = { - ["1HWeapon"] = { - ["max"] = 14, - ["min"] = 14, - }, + ["Sceptre"] = { + ["max"] = 14, + ["min"] = 14, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -35785,10 +35787,10 @@ return { }, }, ["3742865955"] = { - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["Sceptre"] = { + ["max"] = 40, + ["min"] = 40, + }, ["Staff"] = { ["max"] = 40, ["min"] = 40, @@ -35865,10 +35867,10 @@ return { }, }, ["3850614073"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["Sceptre"] = { + ["max"] = 8, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -36123,10 +36125,10 @@ return { ["usePositiveSign"] = true, }, ["3984865854"] = { - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["Sceptre"] = { + ["max"] = 10, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -36136,10 +36138,10 @@ return { }, }, ["4010677958"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["Sceptre"] = { + ["max"] = 8, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -36426,11 +36428,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4282982513", - ["text"] = "Increases and Reductions to Movement Speed also apply to Energy Shield Recharge Rate", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_4282982513", + ["text"] = "Increases and Reductions to Movement Speed also + apply to Energy Shield Recharge Rate", + ["type"] = "augment", + }, + }, ["458438597"] = { ["Chest"] = { ["max"] = 15, diff --git a/src/Modules/Common.lua b/src/Modules/Common.lua index 8f53196d6..97a6ff373 100644 --- a/src/Modules/Common.lua +++ b/src/Modules/Common.lua @@ -893,7 +893,8 @@ end ---@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 From 8be4889fc1edd554746cd765434eccd08f98555a Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sat, 30 May 2026 18:02:02 +0300 Subject: [PATCH 03/11] Defer loading of trade stat data and fix tests --- spec/System/TestTradeQueryGenerator_spec.lua | 7 +++---- src/Classes/TradeHelpers.lua | 18 +++++++++++++----- src/Classes/TradeQuery.lua | 8 +++++--- src/Classes/TradeQueryGenerator.lua | 2 +- src/Data/QueryMods.lua | 14 ++++++++++++++ 5 files changed, 36 insertions(+), 13 deletions(-) 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 3707053c4..14454b85b 100644 --- a/src/Classes/TradeHelpers.lua +++ b/src/Classes/TradeHelpers.lua @@ -32,18 +32,25 @@ function M.modLineValue(line) return tonumber(line:match("%-?[%d]+%.?[%d]*")) end +local _tradeStats + ---@return table? tradeStats function M.getTradeStats() + if _tradeStats then return _tradeStats end local file = io.open("./Data/trade_site_stats.json") if not file then return nil end local fileContents = file:read("*a") local parsed = dkjson.decode(fileContents) - return parsed and parsed.result + _tradeStats = parsed and parsed.result + 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 @@ -62,7 +69,8 @@ local function getOptionTradeStatMap(tradeStats) end end end - return optionTradeStatMap + _optionTradeStatMap = optionTradeStatMap + return _optionTradeStatMap end -- Map source types used in OpenBuySimilarPopup to trade API category labels @@ -152,8 +160,6 @@ function M.formatDatabaseText(text) return text end -local tradeStats = M.getTradeStats() -local optionTradeStatMap = getOptionTradeStatMap(tradeStats) -- Helper: find the trade stat ID for a mod line ---@param item table @@ -191,7 +197,9 @@ function M.findTradeHash(item, modLine, modType, isDesecrated) end end - if not tradeStats then return 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 diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index f90c78ea9..d44e91a33 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 }} @@ -971,7 +971,9 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro 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) + if item.base then + self.itemsTab:CopyAnointsAndAugments(item, true, true, context.slotTbl.slotName) + end items[i].item_string = item:BuildRaw() end elseif self.tradeQueryGenerator.lastAugmentBehaviour == "Remove" then diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index 77f32e130..aab46e523 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -81,10 +81,10 @@ for type, bases in pairs(data.itemBaseLists) do end end -local tradeStats = tradeHelpers.getTradeStats() ---@return table[]? category list of entries for the mod type local function getStatEntries(modType) + local tradeStats = tradeHelpers.getTradeStats() local tradeStatCategoryIndices = { ["Explicit"] = "explicit", ["Implicit"] = "implicit", diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index 8b9c0cefd..b74300b07 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -35808,10 +35808,17 @@ return { }, }, ["3759663284"] = { +<<<<<<< HEAD ["Bow"] = { ["max"] = 20, ["min"] = 20, }, +======= + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, +>>>>>>> 44955925b (Defer loading of trade stat data and fix tests) ["specialCaseData"] = { }, ["tradeMod"] = { @@ -35951,10 +35958,17 @@ return { }, }, ["3885405204"] = { +<<<<<<< HEAD ["Bow"] = { ["max"] = 1, ["min"] = 1, }, +======= + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, +>>>>>>> 44955925b (Defer loading of trade stat data and fix tests) ["specialCaseData"] = { ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, From e96c3c31e20c155eb9a2e8d9eea2724702e63734 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sat, 30 May 2026 19:01:24 +0300 Subject: [PATCH 04/11] Check that trader result items parse base item before adding them --- src/Classes/TradeQuery.lua | 32 +++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index d44e91a33..20994f7f3 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -968,33 +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) - if item.base then + 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 - items[i].item_string = item:BuildRaw() 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, From 5fdbcbe1f05b6c32c90ea6731cd1b265b4013469 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sun, 31 May 2026 21:53:26 +0300 Subject: [PATCH 05/11] Fix weight generation for radius jewels again --- src/Classes/TradeHelpers.lua | 6 +- src/Data/ModItemExclusive.lua | 46 +- src/Data/ModJewel.lua | 738 ++++++++++--------- src/Data/ModVeiled.lua | 733 +++++++++---------- src/Data/QueryMods.lua | 1280 ++++++++++++++++++++++++++++++++- src/Export/Scripts/mods.lua | 10 + 6 files changed, 2005 insertions(+), 808 deletions(-) diff --git a/src/Classes/TradeHelpers.lua b/src/Classes/TradeHelpers.lua index 14454b85b..61591d95c 100644 --- a/src/Classes/TradeHelpers.lua +++ b/src/Classes/TradeHelpers.lua @@ -153,10 +153,6 @@ 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 @@ -230,7 +226,7 @@ function M.findTradeHash(item, modLine, modType, isDesecrated) end end -- most implicit and explicit applicable to the type - elseif modType ~= "implicit" or modType ~= "explicit" then + 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/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua index 65f64190e..c52188352 100644 --- a/src/Data/ModItemExclusive.lua +++ b/src/Data/ModItemExclusive.lua @@ -163,29 +163,29 @@ return { ["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" }, } }, + ["UniqueJewelRadiusMana"] = { affix = "", "1% increased maximum Mana", statOrder = { 872 }, 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 = { 870 }, 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 = { 869 }, 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 = { 871 }, 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 = { 996 }, 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 = { 998 }, 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 = { 999 }, 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 = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "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 = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "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 = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "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 = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "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 = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "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 = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "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 = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "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 = { 956 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "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 = { 1080 }, 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 = { 1082 }, 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 = { 1081 }, 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 = { 873 }, 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 = { 847 }, 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 = { 849 }, 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 = { 851 }, 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 = { 1602 }, 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" }, } }, ["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" }, } }, diff --git a/src/Data/ModJewel.lua b/src/Data/ModJewel.lua index be0a9674a..e4f528c69 100644 --- a/src/Data/ModJewel.lua +++ b/src/Data/ModJewel.lua @@ -2,381 +2,365 @@ -- Item data (c) Grinding Gear Games return { - ["JewelAccuracy"] = { type = "Prefix", affix = "Accurate", "(5-10)% increased Accuracy Rating", statOrder = { 1331 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(5-10)% increased Accuracy Rating" }, } }, - ["JewelAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(5-15)% increased chance to inflict Ailments", statOrder = { 4245 }, level = 1, group = "AilmentChance", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1772247089] = { "(5-15)% increased chance to inflict Ailments" }, } }, - ["JewelAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(5-15)% increased Magnitude of Ailments you inflict", statOrder = { 4249 }, level = 1, group = "AilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(5-15)% increased Magnitude of Ailments you inflict" }, } }, - ["JewelAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4256 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [3544800472] = { "(10-20)% increased Elemental Ailment Threshold" }, } }, - ["JewelAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(4-6)% increased Area of Effect", statOrder = { 1628 }, level = 1, group = "AreaOfEffect", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-6)% increased Area of Effect" }, } }, - ["JewelArmour"] = { type = "Prefix", affix = "Armoured", "(10-20)% increased Armour", statOrder = { 881 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-20)% increased Armour" }, } }, - ["JewelArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (5-15)% increased Armour", statOrder = { 4397 }, level = 1, group = "ArmourBreak", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (5-15)% increased Armour" }, } }, - ["JewelArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(10-20)% increased Armour Break Duration", statOrder = { 4399 }, level = 1, group = "ArmourBreakDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(10-20)% increased Armour Break Duration" }, } }, - ["JewelAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(6-16)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(6-16)% increased Critical Hit Chance for Attacks" }, } }, - ["JewelAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(10-20)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(10-20)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["JewelAttackDamage"] = { type = "Prefix", affix = "Combat", "(5-15)% increased Attack Damage", statOrder = { 1155 }, level = 1, group = "AttackDamage", weightKey = { "strjewel", "dexjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(5-15)% increased Attack Damage" }, } }, - ["JewelAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(2-4)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(2-4)% increased Attack Speed" }, } }, - ["JewelAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (3-7)% increased Magnitudes", statOrder = { 2572 }, level = 1, group = "AuraEffectForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "aura" }, tradeHashes = { [315791320] = { "Aura Skills have (3-7)% increased Magnitudes" }, } }, - ["JewelAxeDamage"] = { type = "Prefix", affix = "Sinister", "(5-15)% increased Damage with Axes", statOrder = { 1232 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3314142259] = { "(5-15)% increased Damage with Axes" }, } }, - ["JewelAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(2-4)% increased Attack Speed with Axes", statOrder = { 1318 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "(2-4)% increased Attack Speed with Axes" }, } }, - ["JewelBleedingChance"] = { type = "Prefix", affix = "Bleeding", "(3-7)% chance to inflict Bleeding on Hit", statOrder = { 4660 }, level = 1, group = "BaseChanceToBleed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [2174054121] = { "(3-7)% chance to inflict Bleeding on Hit" }, } }, - ["JewelBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(5-10)% increased Bleeding Duration", statOrder = { 4649 }, level = 1, group = "BleedDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(5-10)% increased Bleeding Duration" }, } }, - ["JewelBlindEffect"] = { type = "Prefix", affix = "Stifling", "(5-10)% increased Blind Effect", statOrder = { 4916 }, level = 1, group = "BlindEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(5-10)% increased Blind Effect" }, } }, - ["JewelBlindonHit"] = { type = "Suffix", affix = "of Blinding", "(3-7)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(3-7)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["JewelBlock"] = { type = "Prefix", affix = "Protecting", "(3-7)% increased Block chance", statOrder = { 1132 }, level = 1, group = "IncreasedBlockChance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(3-7)% increased Block chance" }, } }, - ["JewelDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(10-20)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2924 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1852872083] = { "(10-20)% increased Damage with Hits against Rare and Unique Enemies" }, } }, - ["JewelBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(5-15)% increased Accuracy Rating with Bows", statOrder = { 1340 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [169946467] = { "(5-15)% increased Accuracy Rating with Bows" }, } }, - ["JewelBowDamage"] = { type = "Prefix", affix = "Perforating", "(6-16)% increased Damage with Bows", statOrder = { 1252 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4188894176] = { "(6-16)% increased Damage with Bows" }, } }, - ["JewelBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(2-4)% increased Attack Speed with Bows", statOrder = { 1323 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "(2-4)% increased Attack Speed with Bows" }, } }, - ["JewelCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-4)% increased Cast Speed" }, } }, - ["JewelChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (3-5)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 1, group = "ChainFromTerrain", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (3-5)% chance to Chain an additional time from terrain" }, } }, - ["JewelCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(5-15)% increased Charm Effect Duration", statOrder = { 899 }, level = 1, group = "CharmDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(5-15)% increased Charm Effect Duration" }, } }, - ["JewelCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(5-15)% increased Charm Charges gained", statOrder = { 5591 }, level = 1, group = "CharmChargesGained", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(5-15)% increased Charm Charges gained" }, } }, - ["JewelCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(10-20)% increased Damage while you have an active Charm", statOrder = { 6009 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "damage" }, tradeHashes = { [627767961] = { "(10-20)% increased Damage while you have an active Charm" }, } }, - ["JewelChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(7-13)% increased Chaos Damage", statOrder = { 875 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(7-13)% increased Chaos Damage" }, } }, - ["JewelChillDuration"] = { type = "Suffix", affix = "of Frost", "(15-25)% increased Chill Duration on Enemies", statOrder = { 1610 }, level = 1, group = "IncreasedChillDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(15-25)% increased Chill Duration on Enemies" }, } }, - ["JewelColdDamage"] = { type = "Prefix", affix = "Chilling", "(5-15)% increased Cold Damage", statOrder = { 873 }, level = 1, group = "ColdDamagePercentage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(5-15)% increased Cold Damage" }, } }, - ["JewelColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (5-10)% Cold Resistance", statOrder = { 2723 }, level = 1, group = "ColdResistancePenetration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-10)% Cold Resistance" }, } }, - ["JewelCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(3-5)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(3-5)% increased Cooldown Recovery Rate" }, } }, - ["JewelCorpses"] = { type = "Prefix", affix = "Necromantic", "(10-20)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3899 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2118708619] = { "(10-20)% increased Damage if you have Consumed a Corpse Recently" }, } }, - ["JewelCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5804 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, - ["JewelCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(5-15)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(5-15)% increased Critical Hit Chance" }, } }, - ["JewelCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(10-20)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-20)% increased Critical Damage Bonus" }, } }, - ["JewelSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(10-20)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(10-20)% increased Critical Spell Damage Bonus" }, } }, - ["JewelCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(6-16)% increased Damage with Crossbows", statOrder = { 3946 }, level = 1, group = "CrossbowDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [427684353] = { "(6-16)% increased Damage with Crossbows" }, } }, - ["JewelCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(10-15)% increased Crossbow Reload Speed", statOrder = { 9693 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3192728503] = { "(10-15)% increased Crossbow Reload Speed" }, } }, - ["JewelCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(2-4)% increased Attack Speed with Crossbows", statOrder = { 3950 }, level = 1, group = "CrossbowSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1135928777] = { "(2-4)% increased Attack Speed with Crossbows" }, } }, - ["JewelCurseArea"] = { type = "Prefix", affix = "Expanding", "(8-12)% increased Area of Effect of Curses", statOrder = { 1948 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(8-12)% increased Area of Effect of Curses" }, } }, - ["JewelCurseDelay"] = { type = "Suffix", affix = "of Chanting", "(5-15)% faster Curse Activation", statOrder = { 5910 }, level = 1, group = "CurseDelay", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(5-15)% faster Curse Activation" }, } }, - ["JewelCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(15-25)% increased Curse Duration", statOrder = { 1538 }, level = 1, group = "BaseCurseDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3824372849] = { "(15-25)% increased Curse Duration" }, } }, - ["JewelCurseEffect"] = { type = "Prefix", affix = "Hexing", "(2-4)% increased Curse Magnitudes", statOrder = { 2374 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(2-4)% increased Curse Magnitudes" }, } }, - ["JewelDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(6-16)% increased Critical Hit Chance with Daggers", statOrder = { 1362 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [4018186542] = { "(6-16)% increased Critical Hit Chance with Daggers" }, } }, - ["JewelDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(6-16)% increased Damage with Daggers", statOrder = { 1244 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3586984690] = { "(6-16)% increased Damage with Daggers" }, } }, - ["JewelDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(2-4)% increased Attack Speed with Daggers", statOrder = { 1321 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "(2-4)% increased Attack Speed with Daggers" }, } }, - ["JewelDamagefromMana"] = { type = "Suffix", affix = "of Mind", "(2-4)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(2-4)% of Damage is taken from Mana before Life" }, } }, - ["JewelDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(15-25)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5933 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2301718443] = { "(15-25)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["JewelDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(5-10)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6051 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(5-10)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["JewelDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "(5-10)% chance to Daze on Hit", statOrder = { 4658 }, level = 1, group = "DazeBuildup", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3146310524] = { "(5-10)% chance to Daze on Hit" }, } }, - ["JewelDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (5-10)% faster", statOrder = { 6085 }, level = 1, group = "DebuffTimePassed", weightKey = { "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (5-10)% faster" }, } }, - ["JewelElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7243 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1062710370] = { "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, - ["JewelElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(5-15)% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(5-15)% increased Elemental Damage" }, } }, - ["JewelEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (10-20)% increased Damage", statOrder = { 6306 }, level = 1, group = "ExertedAttackDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (10-20)% increased Damage" }, } }, - ["JewelEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (4-8)% increased Energy", statOrder = { 6387 }, level = 1, group = "EnergyGeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (4-8)% increased Energy" }, } }, - ["JewelEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(10-20)% increased maximum Energy Shield", statOrder = { 885 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-20)% increased maximum Energy Shield" }, } }, - ["JewelEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(10-15)% faster start of Energy Shield Recharge" }, } }, - ["JewelEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(10-20)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(10-20)% increased Energy Shield Recharge Rate" }, } }, - ["JewelEvasion"] = { type = "Prefix", affix = "Evasive", "(10-20)% increased Evasion Rating", statOrder = { 883 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(10-20)% increased Evasion Rating" }, } }, - ["JewelFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (3-7)% faster", statOrder = { 6054 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (3-7)% faster" }, } }, - ["JewelFireDamage"] = { type = "Prefix", affix = "Flaming", "(5-15)% increased Fire Damage", statOrder = { 872 }, level = 1, group = "FireDamagePercentage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(5-15)% increased Fire Damage" }, } }, - ["JewelFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (5-10)% Fire Resistance", statOrder = { 2722 }, level = 1, group = "FireResistancePenetration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (5-10)% Fire Resistance" }, } }, - ["JewelFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(6-16)% increased Critical Hit Chance with Flails", statOrder = { 3940 }, level = 1, group = "FlailCriticalChance", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1484710594] = { "(6-16)% increased Critical Hit Chance with Flails" }, } }, - ["JewelFlailDamage"] = { type = "Prefix", affix = "Flailing", "(6-16)% increased Damage with Flails", statOrder = { 3935 }, level = 1, group = "FlailDamage", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1731242173] = { "(6-16)% increased Damage with Flails" }, } }, - ["JewelFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(5-10)% increased Flask Charges gained", statOrder = { 6617 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, - ["JewelFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(5-10)% increased Flask Effect Duration", statOrder = { 901 }, level = 1, group = "FlaskDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(5-10)% increased Flask Effect Duration" }, } }, - ["JewelFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(30-50)% increased Energy Shield from Equipped Focus", statOrder = { 6403 }, level = 1, group = "FocusEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3174700878] = { "(30-50)% increased Energy Shield from Equipped Focus" }, } }, - ["JewelForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (10-15)% chance for an additional Projectile when Forking", statOrder = { 5502 }, level = 1, group = "ForkingProjectiles", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (10-15)% chance for an additional Projectile when Forking" }, } }, - ["JewelFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(10-20)% increased Freeze Buildup", statOrder = { 1056 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(10-20)% increased Freeze Buildup" }, } }, - ["JewelFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(18-32)% increased Freeze Threshold", statOrder = { 2982 }, level = 1, group = "FreezeThreshold", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3780644166] = { "(18-32)% increased Freeze Threshold" }, } }, - ["JewelHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (15-25)% increased Damage", statOrder = { 6014 }, level = 1, group = "HeraldDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [21071013] = { "Herald Skills deal (15-25)% increased Damage" }, } }, - ["JewelIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(10-20)% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(10-20)% increased Flammability Magnitude" }, } }, - ["JewelIgniteEffect"] = { type = "Prefix", affix = "Burning", "(5-15)% increased Ignite Magnitude", statOrder = { 1076 }, level = 1, group = "IgniteEffect", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(5-15)% increased Ignite Magnitude" }, } }, - ["JewelIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(5-10)% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(5-10)% increased Skill Effect Duration" }, } }, - ["JewelKnockback"] = { type = "Suffix", affix = "of Fending", "(5-15)% increased Knockback Distance", statOrder = { 1742 }, level = 1, group = "KnockbackDistance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [565784293] = { "(5-15)% increased Knockback Distance" }, } }, - ["JewelLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(4-6)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4732 }, level = 1, group = "LifeCost", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "(4-6)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["JewelLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(5-15)% increased Life Recovery from Flasks", statOrder = { 1792 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(5-15)% increased Life Recovery from Flasks" }, } }, - ["JewelLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(10-20)% increased Life Flask Charges gained", statOrder = { 7409 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [4009879772] = { "(10-20)% increased Life Flask Charges gained" }, } }, - ["JewelLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(5-15)% increased amount of Life Leeched", statOrder = { 1893 }, level = 1, group = "LifeLeechAmount", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2112395885] = { "(5-15)% increased amount of Life Leeched" }, } }, - ["JewelLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of maximum Life on Kill" }, } }, - ["JewelLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "(2-3)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, - ["JewelLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(5-10)% increased Life Regeneration rate", statOrder = { 1035 }, level = 1, group = "LifeRegenerationRate", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(5-10)% increased Life Regeneration rate" }, } }, - ["JewelLightningDamage"] = { type = "Prefix", affix = "Humming", "(5-15)% increased Lightning Damage", statOrder = { 874 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(5-15)% increased Lightning Damage" }, } }, - ["JewelLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (5-10)% Lightning Resistance", statOrder = { 2724 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (5-10)% Lightning Resistance" }, } }, - ["JewelMaceDamage"] = { type = "Prefix", affix = "Beating", "(6-16)% increased Damage with Maces", statOrder = { 1248 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1181419800] = { "(6-16)% increased Damage with Maces" }, } }, - ["JewelMaceStun"] = { type = "Suffix", affix = "of Thumping", "(15-25)% increased Stun Buildup with Maces", statOrder = { 7918 }, level = 1, group = "MaceStun", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [872504239] = { "(15-25)% increased Stun Buildup with Maces" }, } }, - ["JewelManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(5-15)% increased Mana Recovery from Flasks", statOrder = { 1793 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(5-15)% increased Mana Recovery from Flasks" }, } }, - ["JewelManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(10-20)% increased Mana Flask Charges gained", statOrder = { 7951 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3590792340] = { "(10-20)% increased Mana Flask Charges gained" }, } }, - ["JewelManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(5-15)% increased amount of Mana Leeched", statOrder = { 1895 }, level = 1, group = "ManaLeechAmount", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2839066308] = { "(5-15)% increased amount of Mana Leeched" }, } }, - ["JewelManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1515 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1604736568] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, - ["JewelManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(5-15)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(5-15)% increased Mana Regeneration Rate" }, } }, - ["JewelMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (5-15)% increased Use Speed", statOrder = { 1944 }, level = 1, group = "MarkCastSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1714971114] = { "Mark Skills have (5-15)% increased Use Speed" }, } }, - ["JewelMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (18-32)% increased Skill Effect Duration", statOrder = { 8787 }, level = 1, group = "MarkDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (18-32)% increased Skill Effect Duration" }, } }, - ["JewelMarkEffect"] = { type = "Prefix", affix = "Marking", "(4-8)% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 1, group = "MarkEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [712554801] = { "(4-8)% increased Effect of your Mark Skills" }, } }, - ["JewelMaximumColdResistance"] = { type = "Suffix", affix = "of the Kraken", "+1% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["JewelMaximumFireResistance"] = { type = "Suffix", affix = "of the Phoenix", "+1% to Maximum Fire Resistance", statOrder = { 1008 }, level = 1, group = "MaximumFireResist", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, - ["JewelMaximumLightningResistance"] = { type = "Suffix", affix = "of the Leviathan", "+1% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 1, group = "MaximumLightningResistance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, - ["JewelMaximumRage"] = { type = "Prefix", affix = "Angry", "+(1-2) to Maximum Rage", statOrder = { 9568 }, level = 1, group = "MaximumRage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(1-2) to Maximum Rage" }, } }, - ["JewelMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(5-15)% increased Melee Damage", statOrder = { 1186 }, level = 1, group = "MeleeDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(5-15)% increased Melee Damage" }, } }, - ["JewelMinionAccuracy"] = { type = "Prefix", affix = "Training", "(10-20)% increased Minion Accuracy Rating", statOrder = { 8961 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(10-20)% increased Minion Accuracy Rating" }, } }, - ["JewelMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (5-8)% increased Area of Effect", statOrder = { 2757 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (5-8)% increased Area of Effect" }, } }, - ["JewelMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (2-4)% increased Attack and Cast Speed", statOrder = { 8968 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-4)% increased Attack and Cast Speed" }, } }, - ["JewelMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-13)% to Chaos Resistance", statOrder = { 2666 }, level = 1, group = "MinionChaosResistance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "minion_resistance", "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(7-13)% to Chaos Resistance" }, } }, - ["JewelMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (10-20)% increased Critical Hit Chance", statOrder = { 8995 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (10-20)% increased Critical Hit Chance" }, } }, - ["JewelMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (15-25)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (15-25)% increased Critical Damage Bonus" }, } }, - ["JewelMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (5-15)% increased Damage", statOrder = { 1718 }, level = 1, group = "MinionDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-15)% increased Damage" }, } }, - ["JewelMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (5-15)% increased maximum Life", statOrder = { 1025 }, level = 1, group = "MinionLife", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (5-15)% increased maximum Life" }, } }, - ["JewelMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (6-16)% additional Physical Damage Reduction", statOrder = { 2020 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (6-16)% additional Physical Damage Reduction" }, } }, - ["JewelMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(5-10)% to all Elemental Resistances", statOrder = { 2665 }, level = 1, group = "MinionElementalResistance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(5-10)% to all Elemental Resistances" }, } }, - ["JewelMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (5-15)% faster", statOrder = { 9050 }, level = 1, group = "MinionReviveSpeed", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-15)% faster" }, } }, - ["JewelMovementSpeed"] = { type = "Suffix", affix = "of Speed", "(1-2)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-2)% increased Movement Speed" }, } }, - ["JewelOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (15-25)% increased Duration", statOrder = { 9314 }, level = 1, group = "OfferingDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (15-25)% increased Duration" }, } }, - ["JewelOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (15-25)% increased Maximum Life", statOrder = { 9315 }, level = 1, group = "OfferingLife", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3787460122] = { "Offerings have (15-25)% increased Maximum Life" }, } }, - ["JewelPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(5-15)% increased Global Physical Damage", statOrder = { 1184 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(5-15)% increased Global Physical Damage" }, } }, - ["JewelPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(10-20)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 1, group = "ChanceToPierce", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(10-20)% chance to Pierce an Enemy" }, } }, - ["JewelPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(10-20)% increased Pin Buildup", statOrder = { 7172 }, level = 1, group = "PinBuildup", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3473929743] = { "(10-20)% increased Pin Buildup" }, } }, - ["JewelPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "(5-10)% chance to Poison on Hit", statOrder = { 2897 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, - ["JewelPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(5-15)% increased Magnitude of Poison you inflict", statOrder = { 9457 }, level = 1, group = "PoisonEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(5-15)% increased Magnitude of Poison you inflict" }, } }, - ["JewelPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(5-10)% increased Poison Duration", statOrder = { 2894 }, level = 1, group = "PoisonDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(5-10)% increased Poison Duration" }, } }, - ["JewelProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(5-15)% increased Projectile Damage", statOrder = { 1736 }, level = 1, group = "ProjectileDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(5-15)% increased Projectile Damage" }, } }, - ["JewelProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(4-8)% increased Projectile Speed", statOrder = { 896 }, level = 1, group = "ProjectileSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(4-8)% increased Projectile Speed" }, } }, - ["JewelQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(6-16)% increased Damage with Quarterstaves", statOrder = { 1237 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4045894391] = { "(6-16)% increased Damage with Quarterstaves" }, } }, - ["JewelQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(10-20)% increased Freeze Buildup with Quarterstaves", statOrder = { 9556 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1697447343] = { "(10-20)% increased Freeze Buildup with Quarterstaves" }, } }, - ["JewelQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(2-4)% increased Attack Speed with Quarterstaves", statOrder = { 1319 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3283482523] = { "(2-4)% increased Attack Speed with Quarterstaves" }, } }, - ["JewelQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(4-6)% increased bonuses gained from Equipped Quiver", statOrder = { 9564 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1200678966] = { "(4-6)% increased bonuses gained from Equipped Quiver" }, } }, - ["JewelRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6850 }, level = 1, group = "RageOnHit", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["JewelRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-3) Rage when Hit by an Enemy", statOrder = { 6852 }, level = 1, group = "GainRageWhenHit", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (1-3) Rage when Hit by an Enemy" }, } }, - ["JewelShieldDefences"] = { type = "Prefix", affix = "Shielding", "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield", statOrder = { 9797 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences" }, tradeHashes = { [2523933828] = { "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield" }, } }, - ["JewelShockChance"] = { type = "Suffix", affix = "of Shocking", "(10-20)% increased chance to Shock", statOrder = { 1058 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(10-20)% increased chance to Shock" }, } }, - ["JewelShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(15-25)% increased Shock Duration", statOrder = { 1611 }, level = 1, group = "ShockDuration", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(15-25)% increased Shock Duration" }, } }, - ["JewelShockEffect"] = { type = "Prefix", affix = "Jolting", "(10-15)% increased Magnitude of Shock you inflict", statOrder = { 9804 }, level = 1, group = "ShockEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(10-15)% increased Magnitude of Shock you inflict" }, } }, - ["JewelSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 1, group = "SlowPotency", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, - ["JewelSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(2-4)% increased Attack Speed with Spears", statOrder = { 1326 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1165163804] = { "(2-4)% increased Attack Speed with Spears" }, } }, - ["JewelSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(10-20)% increased Critical Damage Bonus with Spears", statOrder = { 1392 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2456523742] = { "(10-20)% increased Critical Damage Bonus with Spears" }, } }, - ["JewelSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(6-16)% increased Damage with Spears", statOrder = { 1266 }, level = 1, group = "SpearDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2696027455] = { "(6-16)% increased Damage with Spears" }, } }, - ["JewelSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(5-15)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(5-15)% increased Critical Hit Chance for Spells" }, } }, - ["JewelSpellDamage"] = { type = "Prefix", affix = "Mystic", "(5-15)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(5-15)% increased Spell Damage" }, } }, - ["JewelStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(10-20)% increased Stun Buildup", statOrder = { 1050 }, level = 1, group = "StunDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239367161] = { "(10-20)% increased Stun Buildup" }, } }, - ["JewelStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(6-16)% increased Stun Threshold", statOrder = { 2981 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(6-16)% increased Stun Threshold" }, } }, - ["JewelStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 10097 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield" }, } }, - ["JewelAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 4255 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [3398301358] = { "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield" }, } }, - ["JewelStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(15-25)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 10099 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1405298142] = { "(15-25)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, - ["JewelBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(5-15)% increased Magnitude of Bleeding you inflict", statOrder = { 4797 }, level = 1, group = "BleedDotMultiplier", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(5-15)% increased Magnitude of Bleeding you inflict" }, } }, - ["JewelSwordDamage"] = { type = "Prefix", affix = "Vicious", "(6-16)% increased Damage with Swords", statOrder = { 1258 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [83050999] = { "(6-16)% increased Damage with Swords" }, } }, - ["JewelSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(2-4)% increased Attack Speed with Swords", statOrder = { 1324 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "(2-4)% increased Attack Speed with Swords" }, } }, - ["JewelThorns"] = { type = "Prefix", affix = "Retaliating", "(10-20)% increased Thorns damage", statOrder = { 10213 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(10-20)% increased Thorns damage" }, } }, - ["JewelTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(10-18)% increased Totem Damage", statOrder = { 1151 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(10-18)% increased Totem Damage" }, } }, - ["JewelTotemLife"] = { type = "Prefix", affix = "Carved", "(10-20)% increased Totem Life", statOrder = { 1531 }, level = 1, group = "IncreasedTotemLife", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(10-20)% increased Totem Life" }, } }, - ["JewelTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(10-20)% increased Totem Placement speed", statOrder = { 2358 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(10-20)% increased Totem Placement speed" }, } }, - ["JewelTrapDamage"] = { type = "Prefix", affix = "Trapping", "(6-16)% increased Trap Damage", statOrder = { 871 }, level = 1, group = "TrapDamage", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(6-16)% increased Trap Damage" }, } }, - ["JewelTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(4-8)% increased Trap Throwing Speed", statOrder = { 1665 }, level = 1, group = "TrapThrowSpeed", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(4-8)% increased Trap Throwing Speed" }, } }, - ["JewelTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (10-18)% increased Spell Damage", statOrder = { 10282 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (10-18)% increased Spell Damage" }, } }, - ["JewelUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(6-16)% increased Damage with Unarmed Attacks", statOrder = { 3257 }, level = 1, group = "UnarmedDamage", weightKey = { "dexjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2037855018] = { "(6-16)% increased Damage with Unarmed Attacks" }, } }, - ["JewelWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(5-15)% increased Warcry Buff Effect", statOrder = { 10464 }, level = 1, group = "WarcryEffect", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(5-15)% increased Warcry Buff Effect" }, } }, - ["JewelWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(5-15)% increased Warcry Cooldown Recovery Rate", statOrder = { 3033 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(5-15)% increased Warcry Cooldown Recovery Rate" }, } }, - ["JewelWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(10-20)% increased Damage with Warcries", statOrder = { 10467 }, level = 1, group = "WarcryDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(10-20)% increased Damage with Warcries" }, } }, - ["JewelWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(10-20)% increased Warcry Speed", statOrder = { 2987 }, level = 1, group = "WarcrySpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(10-20)% increased Warcry Speed" }, } }, - ["JewelWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(15-25)% increased Weapon Swap Speed", statOrder = { 10493 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(15-25)% increased Weapon Swap Speed" }, } }, - ["JewelWitheredEffect"] = { type = "Prefix", affix = "Withering", "(5-10)% increased Withered Magnitude", statOrder = { 10514 }, level = 1, group = "WitheredEffect", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(5-10)% increased Withered Magnitude" }, } }, - ["JewelUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(2-4)% increased Unarmed Attack Speed", statOrder = { 10340 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [662579422] = { "(2-4)% increased Unarmed Attack Speed" }, } }, - ["JewelProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9506 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["JewelMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8879 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["JewelParryDamage"] = { type = "Prefix", affix = "Parrying", "(15-25)% increased Parry Damage", statOrder = { 9343 }, level = 1, group = "ParryDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block", "damage" }, tradeHashes = { [1569159338] = { "(15-25)% increased Parry Damage" }, } }, - ["JewelParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(10-15)% increased Parried Debuff Duration", statOrder = { 9351 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [3401186585] = { "(10-15)% increased Parried Debuff Duration" }, } }, - ["JewelStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(15-25)% increased Stun Threshold while Parrying", statOrder = { 9352 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [1911237468] = { "(15-25)% increased Stun Threshold while Parrying" }, } }, - ["JewelVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "(2-3)% chance to gain Volatility on Kill", statOrder = { 10442 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3749502527] = { "(2-3)% chance to gain Volatility on Kill" }, } }, - ["JewelCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (10-20)% increased Damage", statOrder = { 5708 }, level = 1, group = "CompanionDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [234296660] = { "Companions deal (10-20)% increased Damage" }, } }, - ["JewelCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (10-20)% increased maximum Life", statOrder = { 5712 }, level = 1, group = "CompanionLife", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1805182458] = { "Companions have (10-20)% increased maximum Life" }, } }, - ["JewelHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(10-20)% increased Hazard Damage", statOrder = { 6958 }, level = 1, group = "HazardDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1697951953] = { "(10-20)% increased Hazard Damage" }, } }, - ["JewelIncisionChance"] = { type = "Prefix", affix = "Incise", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5540 }, level = 1, group = "IncisionChance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, - ["JewelBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(15-20)% increased Glory generation for Banner Skills", statOrder = { 6892 }, level = 1, group = "BannerValourGained", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1869147066] = { "(15-20)% increased Glory generation for Banner Skills" }, } }, - ["JewelBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (6-16)% increased Area of Effect", statOrder = { 4619 }, level = 1, group = "BannerArea", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [429143663] = { "Banner Skills have (6-16)% increased Area of Effect" }, } }, - ["JewelBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (15-25)% increased Duration", statOrder = { 4621 }, level = 1, group = "BannerDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2720982137] = { "Banner Skills have (15-25)% increased Duration" }, } }, - ["JewelPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(15-25)% increased Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, - ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7733 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Medium" }, } }, - ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7733 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Large" }, } }, - ["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" }, } }, - ["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" }, } }, - ["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" }, } }, - ["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" }, } }, + ["JewelAccuracy"] = { type = "Prefix", affix = "Accurate", "(5-10)% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(5-10)% increased Accuracy Rating" }, } }, + ["JewelAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(5-15)% increased chance to inflict Ailments", statOrder = { 4136 }, level = 1, group = "AilmentChance", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1772247089] = { "(5-15)% increased chance to inflict Ailments" }, } }, + ["JewelAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(5-15)% increased Magnitude of Ailments you inflict", statOrder = { 4140 }, level = 1, group = "AilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(5-15)% increased Magnitude of Ailments you inflict" }, } }, + ["JewelAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3544800472] = { "(10-20)% increased Elemental Ailment Threshold" }, } }, + ["JewelAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(4-6)% increased Area of Effect", statOrder = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-6)% increased Area of Effect" }, } }, + ["JewelArmour"] = { type = "Prefix", affix = "Armoured", "(10-20)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(10-20)% increased Armour" }, } }, + ["JewelArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (5-15)% increased Armour", statOrder = { 4283 }, level = 1, group = "ArmourBreak", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (5-15)% increased Armour" }, } }, + ["JewelArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(10-20)% increased Armour Break Duration", statOrder = { 4285 }, level = 1, group = "ArmourBreakDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(10-20)% increased Armour Break Duration" }, } }, + ["JewelAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(6-16)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(6-16)% increased Critical Hit Chance for Attacks" }, } }, + ["JewelAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(10-20)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(10-20)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["JewelAttackDamage"] = { type = "Prefix", affix = "Combat", "(5-15)% increased Attack Damage", statOrder = { 1093 }, level = 1, group = "AttackDamage", weightKey = { "strjewel", "dexjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(5-15)% increased Attack Damage" }, } }, + ["JewelAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(2-4)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(2-4)% increased Attack Speed" }, } }, + ["JewelAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (3-7)% increased Magnitudes", statOrder = { 2472 }, level = 1, group = "AuraEffectForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "aura" }, tradeHashes = { [315791320] = { "Aura Skills have (3-7)% increased Magnitudes" }, } }, + ["JewelAxeDamage"] = { type = "Prefix", affix = "Sinister", "(5-15)% increased Damage with Axes", statOrder = { 1170 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3314142259] = { "(5-15)% increased Damage with Axes" }, } }, + ["JewelAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(2-4)% increased Attack Speed with Axes", statOrder = { 1255 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "(2-4)% increased Attack Speed with Axes" }, } }, + ["JewelBleedingChance"] = { type = "Prefix", affix = "Bleeding", "(3-7)% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "BaseChanceToBleed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2174054121] = { "(3-7)% chance to inflict Bleeding on Hit" }, } }, + ["JewelBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(5-10)% increased Bleeding Duration", statOrder = { 4522 }, level = 1, group = "BleedDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(5-10)% increased Bleeding Duration" }, } }, + ["JewelBlindEffect"] = { type = "Prefix", affix = "Stifling", "(5-10)% increased Blind Effect", statOrder = { 4781 }, level = 1, group = "BlindEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(5-10)% increased Blind Effect" }, } }, + ["JewelBlindonHit"] = { type = "Suffix", affix = "of Blinding", "(3-7)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4453 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(3-7)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["JewelBlock"] = { type = "Prefix", affix = "Protecting", "(3-7)% increased Block chance", statOrder = { 1064 }, level = 1, group = "IncreasedBlockChance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(3-7)% increased Block chance" }, } }, + ["JewelDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(10-20)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2821 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1852872083] = { "(10-20)% increased Damage with Hits against Rare and Unique Enemies" }, } }, + ["JewelBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(5-15)% increased Accuracy Rating with Bows", statOrder = { 1277 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [169946467] = { "(5-15)% increased Accuracy Rating with Bows" }, } }, + ["JewelBowDamage"] = { type = "Prefix", affix = "Perforating", "(6-16)% increased Damage with Bows", statOrder = { 1190 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4188894176] = { "(6-16)% increased Damage with Bows" }, } }, + ["JewelBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(2-4)% increased Attack Speed with Bows", statOrder = { 1260 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "(2-4)% increased Attack Speed with Bows" }, } }, + ["JewelCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-4)% increased Cast Speed" }, } }, + ["JewelChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (3-5)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 1, group = "ChainFromTerrain", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (3-5)% chance to Chain an additional time from terrain" }, } }, + ["JewelCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(5-15)% increased Charm Effect Duration", statOrder = { 878 }, level = 1, group = "CharmDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(5-15)% increased Charm Effect Duration" }, } }, + ["JewelCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(5-15)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "CharmChargesGained", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(5-15)% increased Charm Charges gained" }, } }, + ["JewelCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(10-20)% increased Damage while you have an active Charm", statOrder = { 5627 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [627767961] = { "(10-20)% increased Damage while you have an active Charm" }, } }, + ["JewelChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(6-12)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(6-12)% increased Chaos Damage" }, } }, + ["JewelChillDuration"] = { type = "Suffix", affix = "of Frost", "(15-25)% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(15-25)% increased Chill Duration on Enemies" }, } }, + ["JewelColdDamage"] = { type = "Prefix", affix = "Chilling", "(5-15)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(5-15)% increased Cold Damage" }, } }, + ["JewelColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (5-10)% Cold Resistance", statOrder = { 2614 }, level = 1, group = "ColdResistancePenetration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-10)% Cold Resistance" }, } }, + ["JewelCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(3-5)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(3-5)% increased Cooldown Recovery Rate" }, } }, + ["JewelCorpses"] = { type = "Prefix", affix = "Necromantic", "(10-20)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3802 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2118708619] = { "(10-20)% increased Damage if you have Consumed a Corpse Recently" }, } }, + ["JewelCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5424 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, + ["JewelCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(5-15)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(5-15)% increased Critical Hit Chance" }, } }, + ["JewelCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(10-20)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-20)% increased Critical Damage Bonus" }, } }, + ["JewelSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(10-20)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(10-20)% increased Critical Spell Damage Bonus" }, } }, + ["JewelCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(6-16)% increased Damage with Crossbows", statOrder = { 3849 }, level = 1, group = "CrossbowDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [427684353] = { "(6-16)% increased Damage with Crossbows" }, } }, + ["JewelCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(10-15)% increased Crossbow Reload Speed", statOrder = { 9149 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3192728503] = { "(10-15)% increased Crossbow Reload Speed" }, } }, + ["JewelCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(2-4)% increased Attack Speed with Crossbows", statOrder = { 3853 }, level = 1, group = "CrossbowSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1135928777] = { "(2-4)% increased Attack Speed with Crossbows" }, } }, + ["JewelCurseArea"] = { type = "Prefix", affix = "Expanding", "(8-12)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(8-12)% increased Area of Effect of Curses" }, } }, + ["JewelCurseDelay"] = { type = "Suffix", affix = "of Chanting", "(5-15)% faster Curse Activation", statOrder = { 5530 }, level = 1, group = "CurseDelay", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "curse" }, tradeHashes = { [1104825894] = { "(5-15)% faster Curse Activation" }, } }, + ["JewelCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(15-25)% increased Curse Duration", statOrder = { 1466 }, level = 1, group = "BaseCurseDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "curse" }, tradeHashes = { [3824372849] = { "(15-25)% increased Curse Duration" }, } }, + ["JewelCurseEffect"] = { type = "Prefix", affix = "Hexing", "(2-4)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(2-4)% increased Curse Magnitudes" }, } }, + ["JewelDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(6-16)% increased Critical Hit Chance with Daggers", statOrder = { 1299 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [4018186542] = { "(6-16)% increased Critical Hit Chance with Daggers" }, } }, + ["JewelDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(6-16)% increased Damage with Daggers", statOrder = { 1182 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3586984690] = { "(6-16)% increased Damage with Daggers" }, } }, + ["JewelDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(2-4)% increased Attack Speed with Daggers", statOrder = { 1258 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "(2-4)% increased Attack Speed with Daggers" }, } }, + ["JewelDamagefromMana"] = { type = "Suffix", affix = "of Mind", "(2-4)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(2-4)% of Damage is taken from Mana before Life" }, } }, + ["JewelDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(15-25)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5553 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2301718443] = { "(15-25)% increased Damage against Enemies with Fully Broken Armour" }, } }, + ["JewelDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(5-10)% increased Duration of Damaging Ailments on Enemies", statOrder = { 5668 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(5-10)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["JewelDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "(5-10)% chance to Daze on Hit", statOrder = { 4530 }, level = 1, group = "DazeBuildup", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3146310524] = { "(5-10)% chance to Daze on Hit" }, } }, + ["JewelDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (5-10)% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (5-10)% faster" }, } }, + ["JewelElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 6818 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1062710370] = { "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, + ["JewelElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(5-15)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(5-15)% increased Elemental Damage" }, } }, + ["JewelEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (10-20)% increased Damage", statOrder = { 5912 }, level = 1, group = "ExertedAttackDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (10-20)% increased Damage" }, } }, + ["JewelEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (4-8)% increased Energy", statOrder = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (4-8)% increased Energy" }, } }, + ["JewelEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(10-20)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(10-20)% increased maximum Energy Shield" }, } }, + ["JewelEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(10-15)% faster start of Energy Shield Recharge" }, } }, + ["JewelEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(10-20)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(10-20)% increased Energy Shield Recharge Rate" }, } }, + ["JewelEvasion"] = { type = "Prefix", affix = "Evasive", "(10-20)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(10-20)% increased Evasion Rating" }, } }, + ["JewelFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (3-7)% faster", statOrder = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (3-7)% faster" }, } }, + ["JewelFireDamage"] = { type = "Prefix", affix = "Flaming", "(5-15)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(5-15)% increased Fire Damage" }, } }, + ["JewelFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (5-10)% Fire Resistance", statOrder = { 2613 }, level = 1, group = "FireResistancePenetration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (5-10)% Fire Resistance" }, } }, + ["JewelFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(6-16)% increased Critical Hit Chance with Flails", statOrder = { 3843 }, level = 1, group = "FlailCriticalChance", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1484710594] = { "(6-16)% increased Critical Hit Chance with Flails" }, } }, + ["JewelFlailDamage"] = { type = "Prefix", affix = "Flailing", "(6-16)% increased Damage with Flails", statOrder = { 3838 }, level = 1, group = "FlailDamage", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1731242173] = { "(6-16)% increased Damage with Flails" }, } }, + ["JewelFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(5-10)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, + ["JewelFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(5-10)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "FlaskDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(5-10)% increased Flask Effect Duration" }, } }, + ["JewelFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(30-50)% increased Energy Shield from Equipped Focus", statOrder = { 6002 }, level = 1, group = "FocusEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3174700878] = { "(30-50)% increased Energy Shield from Equipped Focus" }, } }, + ["JewelForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (10-15)% chance for an additional Projectile when Forking", statOrder = { 5139 }, level = 1, group = "ForkingProjectiles", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (10-15)% chance for an additional Projectile when Forking" }, } }, + ["JewelFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(10-20)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(10-20)% increased Freeze Buildup" }, } }, + ["JewelFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(18-32)% increased Freeze Threshold", statOrder = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [3780644166] = { "(18-32)% increased Freeze Threshold" }, } }, + ["JewelHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (15-25)% increased Damage", statOrder = { 5632 }, level = 1, group = "HeraldDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [21071013] = { "Herald Skills deal (15-25)% increased Damage" }, } }, + ["JewelIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(10-20)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(10-20)% increased Flammability Magnitude" }, } }, + ["JewelIgniteEffect"] = { type = "Prefix", affix = "Burning", "(5-15)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3791899485] = { "(5-15)% increased Ignite Magnitude" }, } }, + ["JewelIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(5-10)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(5-10)% increased Skill Effect Duration" }, } }, + ["JewelKnockback"] = { type = "Suffix", affix = "of Fending", "(5-15)% increased Knockback Distance", statOrder = { 1669 }, level = 1, group = "KnockbackDistance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [565784293] = { "(5-15)% increased Knockback Distance" }, } }, + ["JewelLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(4-6)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "(4-6)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["JewelLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(5-15)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(5-15)% increased Life Recovery from Flasks" }, } }, + ["JewelLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(10-20)% increased Life Flask Charges gained", statOrder = { 6970 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4009879772] = { "(10-20)% increased Life Flask Charges gained" }, } }, + ["JewelLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(5-15)% increased amount of Life Leeched", statOrder = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2112395885] = { "(5-15)% increased amount of Life Leeched" }, } }, + ["JewelLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of maximum Life on Kill" }, } }, + ["JewelLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "(2-3)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, + ["JewelLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(5-10)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(5-10)% increased Life Regeneration rate" }, } }, + ["JewelLightningDamage"] = { type = "Prefix", affix = "Humming", "(5-15)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(5-15)% increased Lightning Damage" }, } }, + ["JewelLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (5-10)% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (5-10)% Lightning Resistance" }, } }, + ["JewelMaceDamage"] = { type = "Prefix", affix = "Beating", "(6-16)% increased Damage with Maces", statOrder = { 1186 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1181419800] = { "(6-16)% increased Damage with Maces" }, } }, + ["JewelMaceStun"] = { type = "Suffix", affix = "of Thumping", "(15-25)% increased Stun Buildup with Maces", statOrder = { 7459 }, level = 1, group = "MaceStun", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [872504239] = { "(15-25)% increased Stun Buildup with Maces" }, } }, + ["JewelManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(5-15)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(5-15)% increased Mana Recovery from Flasks" }, } }, + ["JewelManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(10-20)% increased Mana Flask Charges gained", statOrder = { 7491 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3590792340] = { "(10-20)% increased Mana Flask Charges gained" }, } }, + ["JewelManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(5-15)% increased amount of Mana Leeched", statOrder = { 1822 }, level = 1, group = "ManaLeechAmount", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2839066308] = { "(5-15)% increased amount of Mana Leeched" }, } }, + ["JewelManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1604736568] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, + ["JewelManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(5-15)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(5-15)% increased Mana Regeneration Rate" }, } }, + ["JewelMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (5-15)% increased Use Speed", statOrder = { 1871 }, level = 1, group = "MarkCastSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed", "curse" }, tradeHashes = { [1714971114] = { "Mark Skills have (5-15)% increased Use Speed" }, } }, + ["JewelMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (18-32)% increased Skill Effect Duration", statOrder = { 8276 }, level = 1, group = "MarkDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (18-32)% increased Skill Effect Duration" }, } }, + ["JewelMarkEffect"] = { type = "Prefix", affix = "Marking", "(4-8)% increased Effect of your Mark Skills", statOrder = { 2268 }, level = 1, group = "MarkEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [712554801] = { "(4-8)% increased Effect of your Mark Skills" }, } }, + ["JewelMaximumColdResistance"] = { type = "Suffix", affix = "of the Kraken", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["JewelMaximumFireResistance"] = { type = "Suffix", affix = "of the Phoenix", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, + ["JewelMaximumLightningResistance"] = { type = "Suffix", affix = "of the Leviathan", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, + ["JewelMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9032 }, level = 1, group = "MaximumRage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+1 to Maximum Rage" }, } }, + ["JewelMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(5-15)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(5-15)% increased Melee Damage" }, } }, + ["JewelMinionAccuracy"] = { type = "Prefix", affix = "Training", "(10-20)% increased Minion Accuracy Rating", statOrder = { 8446 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(10-20)% increased Minion Accuracy Rating" }, } }, + ["JewelMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (5-8)% increased Area of Effect", statOrder = { 2649 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (5-8)% increased Area of Effect" }, } }, + ["JewelMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (2-4)% increased Attack and Cast Speed", statOrder = { 8453 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-4)% increased Attack and Cast Speed" }, } }, + ["JewelMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-13)% to Chaos Resistance", statOrder = { 2559 }, level = 1, group = "MinionChaosResistance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(7-13)% to Chaos Resistance" }, } }, + ["JewelMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (10-20)% increased Critical Hit Chance", statOrder = { 8476 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (10-20)% increased Critical Hit Chance" }, } }, + ["JewelMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (15-25)% increased Critical Damage Bonus", statOrder = { 8478 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (15-25)% increased Critical Damage Bonus" }, } }, + ["JewelMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (5-15)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-15)% increased Damage" }, } }, + ["JewelMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (5-15)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (5-15)% increased maximum Life" }, } }, + ["JewelMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (6-16)% additional Physical Damage Reduction", statOrder = { 1946 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (6-16)% additional Physical Damage Reduction" }, } }, + ["JewelMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(5-10)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(5-10)% to all Elemental Resistances" }, } }, + ["JewelMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (5-15)% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-15)% faster" }, } }, + ["JewelMovementSpeed"] = { type = "Suffix", affix = "of Speed", "(1-2)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-2)% increased Movement Speed" }, } }, + ["JewelOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (15-25)% increased Duration", statOrder = { 8776 }, level = 1, group = "OfferingDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2957407601] = { "Offering Skills have (15-25)% increased Duration" }, } }, + ["JewelOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (15-25)% increased Maximum Life", statOrder = { 8777 }, level = 1, group = "OfferingLife", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3787460122] = { "Offerings have (15-25)% increased Maximum Life" }, } }, + ["JewelPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(5-15)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(5-15)% increased Global Physical Damage" }, } }, + ["JewelPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(10-20)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(10-20)% chance to Pierce an Enemy" }, } }, + ["JewelPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(10-20)% increased Pin Buildup", statOrder = { 6750 }, level = 1, group = "PinBuildup", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3473929743] = { "(10-20)% increased Pin Buildup" }, } }, + ["JewelPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "(5-10)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, + ["JewelPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(5-15)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(5-15)% increased Magnitude of Poison you inflict" }, } }, + ["JewelPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(5-10)% increased Poison Duration", statOrder = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(5-10)% increased Poison Duration" }, } }, + ["JewelProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(5-15)% increased Projectile Damage", statOrder = { 1663 }, level = 1, group = "ProjectileDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(5-15)% increased Projectile Damage" }, } }, + ["JewelProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(4-8)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(4-8)% increased Projectile Speed" }, } }, + ["JewelQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(6-16)% increased Damage with Quarterstaves", statOrder = { 1175 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4045894391] = { "(6-16)% increased Damage with Quarterstaves" }, } }, + ["JewelQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(10-20)% increased Freeze Buildup with Quarterstaves", statOrder = { 9020 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1697447343] = { "(10-20)% increased Freeze Buildup with Quarterstaves" }, } }, + ["JewelQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(2-4)% increased Attack Speed with Quarterstaves", statOrder = { 1256 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3283482523] = { "(2-4)% increased Attack Speed with Quarterstaves" }, } }, + ["JewelQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(4-6)% increased bonuses gained from Equipped Quiver", statOrder = { 9028 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1200678966] = { "(4-6)% increased bonuses gained from Equipped Quiver" }, } }, + ["JewelRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "RageOnHit", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, + ["JewelRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-3) Rage when Hit by an Enemy", statOrder = { 6433 }, level = 1, group = "GainRageWhenHit", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (1-3) Rage when Hit by an Enemy" }, } }, + ["JewelShieldDefences"] = { type = "Prefix", affix = "Shielding", "(18-32)% increased Defences from Equipped Shield", statOrder = { 9241 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences" }, tradeHashes = { [145497481] = { "(18-32)% increased Defences from Equipped Shield" }, } }, + ["JewelShockChance"] = { type = "Suffix", affix = "of Shocking", "(10-20)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(10-20)% increased chance to Shock" }, } }, + ["JewelShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(15-25)% increased Shock Duration", statOrder = { 1540 }, level = 1, group = "ShockDuration", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(15-25)% increased Shock Duration" }, } }, + ["JewelShockEffect"] = { type = "Prefix", affix = "Jolting", "(10-15)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(10-15)% increased Magnitude of Shock you inflict" }, } }, + ["JewelSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, + ["JewelSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(2-4)% increased Attack Speed with Spears", statOrder = { 1263 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1165163804] = { "(2-4)% increased Attack Speed with Spears" }, } }, + ["JewelSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(10-20)% increased Critical Damage Bonus with Spears", statOrder = { 1328 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2456523742] = { "(10-20)% increased Critical Damage Bonus with Spears" }, } }, + ["JewelSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(6-16)% increased Damage with Spears", statOrder = { 1204 }, level = 1, group = "SpearDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2696027455] = { "(6-16)% increased Damage with Spears" }, } }, + ["JewelSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(5-15)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(5-15)% increased Critical Hit Chance for Spells" }, } }, + ["JewelSpellDamage"] = { type = "Prefix", affix = "Mystic", "(5-15)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(5-15)% increased Spell Damage" }, } }, + ["JewelStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(10-20)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239367161] = { "(10-20)% increased Stun Buildup" }, } }, + ["JewelStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(6-16)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(6-16)% increased Stun Threshold" }, } }, + ["JewelStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 9531 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield" }, } }, + ["JewelAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 4146 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [3398301358] = { "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield" }, } }, + ["JewelStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(15-25)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 9533 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1405298142] = { "(15-25)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, + ["JewelBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(5-15)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(5-15)% increased Magnitude of Bleeding you inflict" }, } }, + ["JewelSwordDamage"] = { type = "Prefix", affix = "Vicious", "(6-16)% increased Damage with Swords", statOrder = { 1196 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [83050999] = { "(6-16)% increased Damage with Swords" }, } }, + ["JewelSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(2-4)% increased Attack Speed with Swords", statOrder = { 1261 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "(2-4)% increased Attack Speed with Swords" }, } }, + ["JewelThorns"] = { type = "Prefix", affix = "Retaliating", "(10-20)% increased Thorns damage", statOrder = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(10-20)% increased Thorns damage" }, } }, + ["JewelTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(10-18)% increased Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(10-18)% increased Totem Damage" }, } }, + ["JewelTotemLife"] = { type = "Prefix", affix = "Carved", "(10-20)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(10-20)% increased Totem Life" }, } }, + ["JewelTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(10-20)% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(10-20)% increased Totem Placement speed" }, } }, + ["JewelTrapDamage"] = { type = "Prefix", affix = "Trapping", "(6-16)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(6-16)% increased Trap Damage" }, } }, + ["JewelTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(4-8)% increased Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeed", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(4-8)% increased Trap Throwing Speed" }, } }, + ["JewelTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (10-18)% increased Spell Damage", statOrder = { 9712 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (10-18)% increased Spell Damage" }, } }, + ["JewelUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(6-16)% increased Damage with Unarmed Attacks", statOrder = { 3153 }, level = 1, group = "UnarmedDamage", weightKey = { "dexjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1870736574] = { "(6-16)% increased Damage with Unarmed Attacks" }, } }, + ["JewelWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(5-15)% increased Warcry Buff Effect", statOrder = { 9883 }, level = 1, group = "WarcryEffect", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(5-15)% increased Warcry Buff Effect" }, } }, + ["JewelWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(5-15)% increased Warcry Cooldown Recovery Rate", statOrder = { 2929 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(5-15)% increased Warcry Cooldown Recovery Rate" }, } }, + ["JewelWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(10-20)% increased Damage with Warcries", statOrder = { 9886 }, level = 1, group = "WarcryDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(10-20)% increased Damage with Warcries" }, } }, + ["JewelWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(10-20)% increased Warcry Speed", statOrder = { 2884 }, level = 1, group = "WarcrySpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(10-20)% increased Warcry Speed" }, } }, + ["JewelWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(15-25)% increased Weapon Swap Speed", statOrder = { 9897 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(15-25)% increased Weapon Swap Speed" }, } }, + ["JewelWitheredEffect"] = { type = "Prefix", affix = "Withering", "(5-10)% increased Withered Magnitude", statOrder = { 9915 }, level = 1, group = "WitheredEffect", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(5-10)% increased Withered Magnitude" }, } }, + ["JewelUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(2-4)% increased Unarmed Attack Speed", statOrder = { 9768 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [662579422] = { "(2-4)% increased Unarmed Attack Speed" }, } }, + ["JewelProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8973 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["JewelMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8364 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, + ["JewelParryDamage"] = { type = "Prefix", affix = "Parrying", "(15-25)% increased Parry Damage", statOrder = { 8799 }, level = 1, group = "ParryDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1569159338] = { "(15-25)% increased Parry Damage" }, } }, + ["JewelParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(10-15)% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [3401186585] = { "(10-15)% increased Parried Debuff Duration" }, } }, + ["JewelStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(15-25)% increased Stun Threshold while Parrying", statOrder = { 8809 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1911237468] = { "(15-25)% increased Stun Threshold while Parrying" }, } }, + ["JewelVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "(2-3)% chance to gain Volatility on Kill", statOrder = { 9860 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3749502527] = { "(2-3)% chance to gain Volatility on Kill" }, } }, + ["JewelCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (10-20)% increased Damage", statOrder = { 5339 }, level = 1, group = "CompanionDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [234296660] = { "Companions deal (10-20)% increased Damage" }, } }, + ["JewelCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (10-20)% increased maximum Life", statOrder = { 5342 }, level = 1, group = "CompanionLife", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1805182458] = { "Companions have (10-20)% increased maximum Life" }, } }, + ["JewelHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(10-20)% increased Hazard Damage", statOrder = { 6536 }, level = 1, group = "HazardDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1697951953] = { "(10-20)% increased Hazard Damage" }, } }, + ["JewelIncisionChance"] = { type = "Prefix", affix = "Incise", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5175 }, level = 1, group = "IncisionChance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, + ["JewelBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(15-20)% increased Glory generation for Banner Skills", statOrder = { 6474 }, level = 1, group = "BannerValourGained", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1869147066] = { "(15-20)% increased Glory generation for Banner Skills" }, } }, + ["JewelBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (10-20)% increased Area of Effect", statOrder = { 4495 }, level = 1, group = "BannerArea", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [429143663] = { "Banner Skills have (10-20)% increased Area of Effect" }, } }, + ["JewelBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (15-25)% increased Duration", statOrder = { 4497 }, level = 1, group = "BannerDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2720982137] = { "Banner Skills have (15-25)% increased Duration" }, } }, + ["JewelPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(15-25)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, + ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7285 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Medium" }, } }, + ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7285 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Large" }, } }, + ["JewelRadiusSmallNodeEffect"] = { type = "Suffix", affix = "of Potency", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7308 }, 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 = { 7308 }, 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 = { 7304 }, 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 = { 1268 }, 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 = { 4136 }, 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 = { 4140 }, 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 = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 1557 }, 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 = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, 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 = { 4283 }, 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 = { 4285 }, 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 = { 934 }, 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 = { 938 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 1093 }, 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 = { 941 }, 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 = { 2472 }, 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 = { 1170 }, 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 = { 1255 }, 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 = { 4532 }, level = 1, group = "BaseChanceToBleed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 4522 }, 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 = { 4781 }, 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 = { 4453 }, 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 = { 1064 }, 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 = { 2821 }, 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 = { 1277 }, 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 = { 1190 }, 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 = { 1260 }, 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 = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 8970 }, 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 = { 878 }, level = 1, group = "CharmDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 5227 }, level = 1, group = "CharmChargesGained", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 5627 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 858 }, 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 = { 1539 }, 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 = { 856 }, 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 = { 2614 }, 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 = { 4539 }, 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 = { 3802 }, 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 = { 5424 }, 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 = { 933 }, 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 = { 937 }, 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 = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 3849 }, 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 = { 9149 }, 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 = { 3853 }, 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 = { 1875 }, 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 = { 1466 }, level = 1, group = "BaseCurseDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 2266 }, 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 = { 1299 }, 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 = { 1182 }, 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 = { 1258 }, 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 = { 2362 }, 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 = { 5553 }, 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 = { 5668 }, 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 = { 4530 }, 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 = { 5703 }, 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 = { 6818 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "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 = { 1651 }, 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" }, 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 = { 5912 }, 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 = { 5987 }, 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 = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, 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 = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, 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 = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, 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 = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, 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 = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "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 = { 855 }, 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 = { 2613 }, 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 = { 3843 }, 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 = { 3838 }, 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 = { 6216 }, 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 = { 879 }, 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 = { 6002 }, level = 1, group = "FocusEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, 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 = { 5139 }, 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 = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, 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 = { 5632 }, level = 1, group = "HeraldDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, 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 = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, 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 = { 1572 }, 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 = { 1669 }, 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 = { 4605 }, 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 = { 1719 }, 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 = { 6970 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 1437 }, 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 = { 970 }, 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 = { 969 }, 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 = { 857 }, 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 = { 2615 }, 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 = { 1186 }, 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 = { 7459 }, 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 = { 1720 }, 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 = { 7491 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 1822 }, 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 = { 1443 }, 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 = { 976 }, 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 = { 1871 }, level = 1, group = "MarkCastSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed", "curse" }, 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 = { 8276 }, 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 = { 2268 }, level = 1, group = "MarkEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, 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 = { 9032 }, 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 = { 1124 }, 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 = { 8446 }, 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 = { 2649 }, 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 = { 8453 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 2559 }, level = 1, group = "MinionChaosResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 8476 }, 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 = { 8478 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 1646 }, level = 1, group = "MinionDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 962 }, 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 = { 1946 }, 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 = { 2558 }, level = 1, group = "MinionElementalResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "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 = { 8529 }, 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 = { 827 }, 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 = { 8776 }, level = 1, group = "OfferingDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 8777 }, level = 1, group = "OfferingLife", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 1122 }, 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 = { 1001 }, 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 = { 6750 }, 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 = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 8925 }, 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 = { 2786 }, 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 = { 1663 }, 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 = { 875 }, 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 = { 1175 }, 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 = { 9020 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, 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 = { 1256 }, 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 = { 9028 }, 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 = { 6431 }, level = 1, group = "RageOnHit", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 6433 }, 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 Defences from Equipped Shield", statOrder = { 9241 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences" }, nodeType = 2, tradeHashes = { [713216632] = { "Notable Passive Skills in Radius also grant (8-15)% increased Defences from Equipped Shield" }, } }, + ["JewelRadiusShockChance"] = { type = "Suffix", affix = "of Shocking", "(2-3)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, 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 = { 1540 }, 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 = { 9248 }, 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 = { 4608 }, 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 = { 1263 }, 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 = { 1328 }, 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 = { 1204 }, 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 = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 853 }, 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 = { 984 }, 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 = { 2878 }, 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 = { 9531 }, 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 = { 4146 }, 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 = { 9533 }, 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 = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "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 = { 1196 }, 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 = { 1261 }, 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 = { 9646 }, 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 = { 1089 }, 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 = { 1459 }, 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 = { 2250 }, 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 = { 854 }, 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 = { 1597 }, 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 = { 9712 }, 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 = { 3153 }, level = 1, group = "UnarmedDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1970067060] = { "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 = { 9883 }, 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 = { 2929 }, 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 = { 9886 }, 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 = { 2884 }, 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 = { 9897 }, 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 = { 9915 }, 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 = { 9768 }, 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 = { 8973 }, 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 = { 8364 }, 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 = { 8799 }, level = 1, group = "ParryDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 8808 }, 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 = { 8809 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 9860 }, 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 = { 5339 }, level = 1, group = "CompanionDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 5342 }, 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 = { 6536 }, 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 = { 5175 }, level = 1, group = "IncisionChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "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 = { 6474 }, 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 = { 4495 }, 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 = { 4497 }, 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 = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4032352472] = { "Notable Passive Skills in Radius also grant (8-12)% increased Presence Area of Effect" }, } }, + ["JewelRadiusShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(1-2)% increased Skill Speed while Shapeshifted", statOrder = { 9317 }, 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 = { 5567 }, 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 = { 8914 }, 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 = { 9317 }, 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 = { 5567 }, 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 = { 8914 }, 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" }, } }, } \ No newline at end of file diff --git a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua index ba3d72221..38f760b16 100644 --- a/src/Data/ModVeiled.lua +++ b/src/Data/ModVeiled.lua @@ -2,390 +2,353 @@ -- Item data (c) Grinding Gear Games return { - ["HistoricAbyssJewelAttributesGrantExtraTribute"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", statOrder = { 7687 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraTribute", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [1119086588] = { "Conquered Attribute Passive Skills also grant +(2-5) to Tribute" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraStrength"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Strength", statOrder = { 7686 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraStrength", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [3871530702] = { "Conquered Attribute Passive Skills also grant +(4-8) to Strength" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraDexterity"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity", statOrder = { 7684 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraDexterity", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [1938221597] = { "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraIntelligence"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence", statOrder = { 7685 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraIntelligence", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [3116427713] = { "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraAllAttributes"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes", statOrder = { 7683 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraAllAttributes", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [2552484522] = { "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes" }, } }, - ["HistoricAbyssJewelSmallGrantEvasionRatingIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating", statOrder = { 7694 }, level = 1, group = "HistoricAbyssJewelSmallGrantEvasionRatingIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "evasion" }, tradeHashes = { [468694293] = { "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating" }, } }, - ["HistoricAbyssJewelSmallGrantArmourIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Armour", statOrder = { 7689 }, level = 1, group = "HistoricAbyssJewelSmallGrantArmourIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "armour" }, tradeHashes = { [970480050] = { "Conquered Small Passive Skills also grant (2-4)% increased Armour" }, } }, - ["HistoricAbyssJewelSmallGrantEnergyShieldIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield", statOrder = { 7693 }, level = 1, group = "HistoricAbyssJewelSmallGrantEnergyShieldIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "energy_shield" }, tradeHashes = { [2780670304] = { "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield" }, } }, - ["HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate", statOrder = { 7696 }, level = 1, group = "HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "historic_abyss_jewel_2", "mana" }, tradeHashes = { [1818915622] = { "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate" }, } }, - ["HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate", statOrder = { 7695 }, level = 1, group = "HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "historic_abyss_jewel_2", "life" }, tradeHashes = { [4264952559] = { "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate" }, } }, - ["HistoricAbyssJewelSmallGrantSpellDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Spell damage", statOrder = { 7699 }, level = 1, group = "HistoricAbyssJewelSmallGrantSpellDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "caster" }, tradeHashes = { [3038857426] = { "Conquered Small Passive Skills also grant (3-5)% increased Spell damage" }, } }, - ["HistoricAbyssJewelSmallGrantAttackDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Attack damage", statOrder = { 7690 }, level = 1, group = "HistoricAbyssJewelSmallGrantAttackDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2", "damage", "attack" }, tradeHashes = { [8816597] = { "Conquered Small Passive Skills also grant (3-5)% increased Attack damage" }, } }, - ["HistoricAbyssJewelSmallGrantElementalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage", statOrder = { 7692 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [4240116297] = { "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage" }, } }, - ["HistoricAbyssJewelSmallGrantPhysicalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Physical damage", statOrder = { 7698 }, level = 1, group = "HistoricAbyssJewelSmallGrantPhysicalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "physical" }, tradeHashes = { [1829333149] = { "Conquered Small Passive Skills also grant (3-5)% increased Physical damage" }, } }, - ["HistoricAbyssJewelSmallGrantChaosDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage", statOrder = { 7691 }, level = 1, group = "HistoricAbyssJewelSmallGrantChaosDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "chaos" }, tradeHashes = { [2601021356] = { "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage" }, } }, - ["HistoricAbyssJewelSmallGrantMinionDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage", statOrder = { 7697 }, level = 1, group = "HistoricAbyssJewelSmallGrantMinionDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "minion" }, tradeHashes = { [3343033032] = { "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage" }, } }, - ["HistoricAbyssJewelSmallGrantStunThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold", statOrder = { 7700 }, level = 1, group = "HistoricAbyssJewelSmallGrantStunThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [2475870935] = { "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold" }, } }, - ["HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold", statOrder = { 7688 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1283490138] = { "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold" }, } }, - ["UniqueHeartPrefixDamageGainedAsFire"] = { affix = "", "Gain (9-15)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 1, group = "DamageGainedAsFire", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (9-15)% of Damage as Extra Fire Damage" }, } }, - ["UniqueHeartPrefixDamageGainedAsCold"] = { affix = "", "Gain (7-13)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 1, group = "DamageGainedAsChaos", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (7-13)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueHeartPrefixDamageGainedAsLightning"] = { affix = "", "Gain (9-15)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 1, group = "DamageGainedAsCold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (9-15)% of Damage as Extra Cold Damage" }, } }, - ["UniqueHeartPrefixDamageGainedAsChaos"] = { affix = "", "Gain (9-15)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 1, group = "DamageGainedAsLightning", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (9-15)% of Damage as Extra Lightning Damage" }, } }, - ["UniqueHeartPrefixMinionReviveSpeed"] = { affix = "", "Minions Revive (5-10)% faster", statOrder = { 9050 }, level = 1, group = "MinionReviveSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-10)% faster" }, } }, - ["UniqueHeartPrefixIncreasedSkillSpeed"] = { affix = "", "(4-8)% increased Skill Speed", statOrder = { 836 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "speed" }, tradeHashes = { [970213192] = { "(4-8)% increased Skill Speed" }, } }, - ["UniqueHeartPrefixManaCostEfficiency"] = { affix = "", "(8-16)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 1, group = "ManaCostEfficiency", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4101445926] = { "(8-16)% increased Mana Cost Efficiency" }, } }, - ["UniqueHeartPrefixGlobalCooldownRecovery"] = { affix = "", "(10-18)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1004011302] = { "(10-18)% increased Cooldown Recovery Rate" }, } }, - ["UniqueHeartPrefixChanceToPierce"] = { affix = "", "(30-50)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 1, group = "ChanceToPierce", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2321178454] = { "(30-50)% chance to Pierce an Enemy" }, } }, - ["UniqueHeartPrefixSkillEffectDuration"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, - ["UniqueHeartPrefixMinionLifeGainAsEnergyShield"] = { affix = "", "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 1436 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "energy_shield", "minion" }, tradeHashes = { [943702197] = { "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield" }, } }, - ["UniqueHeartPrefixMinionLifeRegeneration"] = { affix = "", "Minions Regenerate (1-3)% of maximum Life per second", statOrder = { 2664 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1-3)% of maximum Life per second" }, } }, - ["UniqueHeartPrefixDamageWhileInPresenceOfCompanion"] = { affix = "", "(15-25)% increased Damage while your Companion is in your Presence", statOrder = { 5947 }, level = 1, group = "DamageWhileInPresenceOfCompanion", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "minion" }, tradeHashes = { [693180608] = { "(15-25)% increased Damage while your Companion is in your Presence" }, } }, - ["UniqueHeartPrefixAggravateBleedOnAttackHitChance"] = { affix = "", "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4230 }, level = 1, group = "AggravateBleedOnAttackHitChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_prefix", "physical", "ailment" }, tradeHashes = { [2705185939] = { "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["UniqueHeartPrefixLuckyLightningDamageChancePercent"] = { affix = "", "(15-25)% chance for Lightning Damage with Hits to be Lucky", statOrder = { 5392 }, level = 1, group = "LuckyLightningDamageChancePercent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHashes = { [2466011626] = { "(15-25)% chance for Lightning Damage with Hits to be Lucky" }, } }, - ["UniqueHeartPrefixRecoverLifeOnKillingPoisonedEnemy"] = { affix = "", "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9656 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemy", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [1781372024] = { "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy" }, } }, - ["UniqueHeartPrefixPercentOfLeechIsInstant"] = { affix = "", "(8-15)% of Leech is Instant", statOrder = { 7401 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, - ["UniqueHeartPrefixEvasionRatingFromBodyArmour"] = { affix = "", "(40-60)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4946 }, level = 1, group = "EvasionRatingFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "evasion" }, tradeHashes = { [3509362078] = { "(40-60)% increased Evasion Rating from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixBodyArmourFromBodyArmour"] = { affix = "", "(40-60)% increased Armour from Equipped Body Armour", statOrder = { 4945 }, level = 1, group = "BodyArmourFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "armour" }, tradeHashes = { [1015576579] = { "(40-60)% increased Armour from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixMaximumEnergyShieldFromBodyArmour"] = { affix = "", "(40-60)% increased Energy Shield from Equipped Body Armour", statOrder = { 8828 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "energy_shield" }, tradeHashes = { [1195319608] = { "(40-60)% increased Energy Shield from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixTriggersRefundEnergySpent"] = { affix = "", "(6-12)% chance for Trigger skills to refund half of Energy Spent", statOrder = { 10279 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [599320227] = { "(6-12)% chance for Trigger skills to refund half of Energy Spent" }, } }, - ["UniqueHeartPrefixManaRegenerationRateWhileMoving"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 7994 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, - ["UniqueHeartPrefixCullingStrikeThreshold"] = { affix = "", "(15-25)% increased Culling Strike Threshold", statOrder = { 5900 }, level = 1, group = "CullingStrikeThreshold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3563080185] = { "(15-25)% increased Culling Strike Threshold" }, } }, - ["UniqueHeartPrefixPhysicalDamagePreventedRecoup"] = { affix = "", "(5-10)% of Physical Damage prevented Recouped as Life", statOrder = { 9410 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "physical" }, tradeHashes = { [1374654984] = { "(5-10)% of Physical Damage prevented Recouped as Life" }, } }, - ["UniqueHeartPrefixMaximumElementalResistance"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 1006 }, level = 1, group = "MaximumElementalResistance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["UniqueHeartPrefixIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 7215 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, - ["UniqueHeartPrefixRecoupSpeed"] = { affix = "", "(8-14)% increased speed of Recoup Effects", statOrder = { 9622 }, level = 1, group = "RecoupSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2363593824] = { "(8-14)% increased speed of Recoup Effects" }, } }, - ["UniqueHeartPrefixFlaskLifeRegenForXSeconds"] = { affix = "", "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", statOrder = { 7491 }, level = 1, group = "FlaskLifeRegenForXSeconds", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [3161573445] = { "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds" }, } }, - ["UniqueHeartPrefixCharmRecoverManaOnUse"] = { affix = "", "Recover (5-10)% of maximum Mana when a Charm is used", statOrder = { 9658 }, level = 1, group = "CharmRecoverManaOnUse", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4121454694] = { "Recover (5-10)% of maximum Mana when a Charm is used" }, } }, - ["UniqueHeartPrefixCharmChanceToUseOtherCharm"] = { affix = "", "(10-15)% chance when a Charm is used to use another Charm without consuming Charges", statOrder = { 5619 }, level = 1, group = "CharmChanceToUseOtherCharm", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1949851472] = { "(10-15)% chance when a Charm is used to use another Charm without consuming Charges" }, } }, - ["UniqueHeartPrefixCharmEffect"] = { affix = "", "Charms applied to you have (15-25)% increased Effect", statOrder = { 5598 }, level = 1, group = "CharmEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3480095574] = { "Charms applied to you have (15-25)% increased Effect" }, } }, - ["UniqueHeartPrefixThornsCriticalStrikeChance"] = { affix = "", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4746 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, - ["UniqueHeartPrefixThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour", statOrder = { 4653 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHashes = { [1793740180] = { "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour" }, } }, - ["UniqueHeartPrefixAttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { affix = "", "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence", statOrder = { 4558 }, level = 1, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "attack", "speed" }, tradeHashes = { [314741699] = { "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence" }, } }, - ["UniqueHeartPrefixElementalExposureEffect"] = { affix = "", "(15-25)% increased Exposure Effect", statOrder = { 6510 }, level = 1, group = "ElementalExposureEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(15-25)% increased Exposure Effect" }, } }, - ["UniqueHeartSuffixMaximumFireResist"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 1008 }, level = 1, group = "MaximumFireResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, - ["UniqueHeartSuffixMaximumColdResist"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["UniqueHeartSuffixMaximumLightningResist"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 1, group = "MaximumLightningResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, - ["UniqueHeartSuffixSkillEffectDuration"] = { affix = "", "(3-8)% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3377888098] = { "(3-8)% increased Skill Effect Duration" }, } }, - ["UniqueHeartSuffixLifeRegenerationRate"] = { affix = "", "(6-12)% increased Life Regeneration rate", statOrder = { 1035 }, level = 1, group = "LifeRegenerationRate", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [44972811] = { "(6-12)% increased Life Regeneration rate" }, } }, - ["UniqueHeartSuffixStunDamageIncrease"] = { affix = "", "(6-12)% increased Stun Buildup", statOrder = { 1050 }, level = 1, group = "StunDamageIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [239367161] = { "(6-12)% increased Stun Buildup" }, } }, - ["UniqueHeartSuffixIncreasedStunThreshold"] = { affix = "", "(5-10)% increased Stun Threshold", statOrder = { 2981 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [680068163] = { "(5-10)% increased Stun Threshold" }, } }, - ["UniqueHeartSuffixRageOnHit"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6850 }, level = 1, group = "RageOnHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["UniqueHeartSuffixGainRageWhenHit"] = { affix = "", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6852 }, level = 1, group = "GainRageWhenHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3292710273] = { "Gain (1-2) Rage when Hit by an Enemy" }, } }, - ["UniqueHeartSuffixLifeCost"] = { affix = "", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4732 }, level = 1, group = "LifeCost", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2480498143] = { "(2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["UniqueHeartSuffixAilmentChance"] = { affix = "", "(4-8)% increased chance to inflict Ailments", statOrder = { 4245 }, level = 1, group = "AilmentChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [1772247089] = { "(4-8)% increased chance to inflict Ailments" }, } }, - ["UniqueHeartSuffixIncreasedAilmentThreshold"] = { affix = "", "(6-12)% increased Elemental Ailment Threshold", statOrder = { 4256 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [3544800472] = { "(6-12)% increased Elemental Ailment Threshold" }, } }, - ["UniqueHeartSuffixIncreasedAttackSpeed"] = { affix = "", "(2-3)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack", "speed" }, tradeHashes = { [681332047] = { "(2-3)% increased Attack Speed" }, } }, - ["UniqueHeartSuffixGlobalCooldownRecovery"] = { affix = "", "(2-3)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1004011302] = { "(2-3)% increased Cooldown Recovery Rate" }, } }, - ["UniqueHeartSuffixDebuffTimePassed"] = { affix = "", "Debuffs on you expire (4-8)% faster", statOrder = { 6085 }, level = 1, group = "DebuffTimePassed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1238227257] = { "Debuffs on you expire (4-8)% faster" }, } }, - ["UniqueHeartSuffixFasterAilmentDamageForJewel"] = { affix = "", "Damaging Ailments deal damage (2-4)% faster", statOrder = { 6054 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (2-4)% faster" }, } }, - ["UniqueHeartSuffixMovementVelocity"] = { affix = "", "(1-2)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "speed" }, tradeHashes = { [2250533757] = { "(1-2)% increased Movement Speed" }, } }, - ["UniqueHeartSuffixSlowPotency"] = { affix = "", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 1, group = "SlowPotency", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, - ["UniqueHeartSuffixIncreasedFlaskChargesGained"] = { affix = "", "(4-8)% increased Flask Charges gained", statOrder = { 6617 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1836676211] = { "(4-8)% increased Flask Charges gained" }, } }, - ["UniqueHeartSuffixFlaskDuration"] = { affix = "", "(4-8)% increased Flask Effect Duration", statOrder = { 901 }, level = 1, group = "FlaskDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3741323227] = { "(4-8)% increased Flask Effect Duration" }, } }, - ["UniqueHeartSuffixBaseChanceToPoison"] = { affix = "", "(5-10)% chance to Poison on Hit", statOrder = { 2897 }, level = 1, group = "BaseChanceToPoison", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, - ["UniqueHeartSuffixBaseChanceToBleed"] = { affix = "", "(5-10)% chance to inflict Bleeding on Hit", statOrder = { 4660 }, level = 1, group = "BaseChanceToBleed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_suffix", "physical", "ailment" }, tradeHashes = { [2174054121] = { "(5-10)% chance to inflict Bleeding on Hit" }, } }, - ["UniqueHeartSuffixIncreasedCastSpeedForJewel"] = { affix = "", "(2-3)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "unveiled_mod", "heart_unique_jewel_suffix", "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-3)% increased Cast Speed" }, } }, - ["UniqueHeartSuffixCritChanceForJewel"] = { affix = "", "(4-8)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CritChanceForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "critical" }, tradeHashes = { [587431675] = { "(4-8)% increased Critical Hit Chance" }, } }, - ["UniqueHeartSuffixCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "critical" }, tradeHashes = { [3556824919] = { "(6-12)% increased Critical Damage Bonus" }, } }, - ["UniqueHeartSuffixSpellCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster_damage", "unveiled_mod", "heart_unique_jewel_suffix", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(6-12)% increased Critical Spell Damage Bonus" }, } }, - ["UniqueHeartSuffixSpellCriticalStrikeChance"] = { affix = "", "(4-8)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "unveiled_mod", "heart_unique_jewel_suffix", "caster", "critical" }, tradeHashes = { [737908626] = { "(4-8)% increased Critical Hit Chance for Spells" }, } }, - ["UniqueHeartSuffixDamageRemovedFromManaBeforeLife"] = { affix = "", "(2-3)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life", "mana" }, tradeHashes = { [458438597] = { "(2-3)% of Damage is taken from Mana before Life" }, } }, - ["UniqueHeartSuffixMaximumLifeOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of maximum Life on Kill" }, } }, - ["UniqueHeartSuffixManaGainedOnKillPercentage"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1515 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHashes = { [1604736568] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, - ["UniqueHeartSuffixLifeRecoupForJewel"] = { affix = "", "(2-3)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, - ["UniqueHeartSuffixManaRegeneration"] = { affix = "", "(4-8)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHashes = { [789117908] = { "(4-8)% increased Mana Regeneration Rate" }, } }, - ["UniqueHeartSuffixMinionPhysicalDamageReduction"] = { affix = "", "Minions have (3-12)% additional Physical Damage Reduction", statOrder = { 2020 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (3-12)% additional Physical Damage Reduction" }, } }, - ["UniqueHeartSuffixMinionAttackSpeedAndCastSpeed"] = { affix = "", "Minions have (2-3)% increased Attack and Cast Speed", statOrder = { 8968 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "unveiled_mod", "heart_unique_jewel_suffix", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-3)% increased Attack and Cast Speed" }, } }, - ["UniqueHeartSuffixMinionCriticalStrikeChanceIncrease"] = { affix = "", "Minions have (6-12)% increased Critical Hit Chance", statOrder = { 8995 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (6-12)% increased Critical Hit Chance" }, } }, - ["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" }, } }, - ["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" }, } }, - ["AbyssModJewelPrefixAttackDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Attack Damage", statOrder = { 881, 1155 }, level = 1, group = "HybridAbyssModJewelAttackDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixAttackDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Attack Damage", statOrder = { 883, 1155 }, level = 1, group = "HybridAbyssModJewelAttackDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage", "attack" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [2843214518] = { "(4-8)% increased Attack Damage" }, } }, - ["AbyssModJewelPrefixAttackDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Attack Damage", statOrder = { 885, 1155 }, level = 1, group = "HybridAbyssModJewelAttackDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixMinionDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "Minions deal (4-8)% increased Damage", statOrder = { 881, 1718 }, level = 1, group = "HybridAbyssModJewelMinionDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "minion_damage", "unveiled_mod", "armour", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-8)% increased Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixMinionDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "Minions deal (4-8)% increased Damage", statOrder = { 883, 1718 }, level = 1, group = "HybridAbyssModJewelMinionDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "minion_damage", "unveiled_mod", "evasion", "damage", "minion" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1589917703] = { "Minions deal (4-8)% increased Damage" }, } }, - ["AbyssModJewelPrefixMinionDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "Minions deal (4-8)% increased Damage", statOrder = { 885, 1718 }, level = 1, group = "HybridAbyssModJewelMinionDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "minion_damage", "unveiled_mod", "energy_shield", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-8)% increased Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixThornsDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Thorns damage", statOrder = { 881, 10213 }, level = 1, group = "HybridAbyssModJewelThornsDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixThornsDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Thorns damage", statOrder = { 883, 10213 }, level = 1, group = "HybridAbyssModJewelThornsDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1315743832] = { "(4-8)% increased Thorns damage" }, } }, - ["AbyssModJewelPrefixThornsDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Thorns damage", statOrder = { 885, 10213 }, level = 1, group = "HybridAbyssModJewelThornsDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixTotemDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Totem Damage", statOrder = { 881, 1151 }, level = 1, group = "HybridAbyssModJewelTotemDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage" }, tradeHashes = { [3851254963] = { "(4-8)% increased Totem Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixTotemDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Totem Damage", statOrder = { 883, 1151 }, level = 1, group = "HybridAbyssModJewelTotemDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [3851254963] = { "(4-8)% increased Totem Damage" }, } }, - ["AbyssModJewelPrefixTotemDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Totem Damage", statOrder = { 885, 1151 }, level = 1, group = "HybridAbyssModJewelTotemDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage" }, tradeHashes = { [3851254963] = { "(4-8)% increased Totem Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixFireDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Fire Damage", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 872, 2722 }, level = 1, group = "HybridAbyssModJewelFireDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(4-8)% increased Fire Damage" }, [2653955271] = { "Damage Penetrates (4-7)% Fire Resistance" }, } }, - ["AbyssModJewelPrefixLightningDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Lightning Damage", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 874, 2724 }, level = 1, group = "HybridAbyssModJewelLightningDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (4-7)% Lightning Resistance" }, [2231156303] = { "(4-8)% increased Lightning Damage" }, } }, - ["AbyssModJewelPrefixColdDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Cold Damage", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 873, 2723 }, level = 1, group = "HybridAbyssModJewelColdDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(4-8)% increased Cold Damage" }, [3417711605] = { "Damage Penetrates (4-7)% Cold Resistance" }, } }, - ["AbyssModJewelPrefixBleedChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to inflict Bleeding", "(5-10)% increased Magnitude of Bleeding you inflict", statOrder = { 4794, 4797 }, level = 1, group = "HybridAbyssModJewelBleedChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "bleed", "physical_damage", "unveiled_mod", "damage", "physical", "ailment" }, tradeHashes = { [3166958180] = { "(5-10)% increased Magnitude of Bleeding you inflict" }, [242637938] = { "15% increased chance to inflict Bleeding" }, } }, - ["AbyssModJewelPrefixPoisonChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to Poison", "(5-10)% increased Magnitude of Poison you inflict", statOrder = { 9449, 9457 }, level = 1, group = "HybridAbyssModJewelPoisonChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "poison", "unveiled_mod", "damage", "ailment" }, tradeHashes = { [3481083201] = { "15% increased chance to Poison" }, [2487305362] = { "(5-10)% increased Magnitude of Poison you inflict" }, } }, - ["AbyssModJewelPrefixWarcryBuffEffectAndDamage"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Warcry Buff Effect", "(5-10)% increased Damage with Warcries", statOrder = { 10464, 10467 }, level = 1, group = "HybridAbyssModJewelWarcryBuffEffectAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1594812856] = { "(5-10)% increased Damage with Warcries" }, [3037553757] = { "(4-8)% increased Warcry Buff Effect" }, } }, - ["AbyssModJewelPrefixCompanionLifeAndDamage"] = { type = "Prefix", affix = "Lightless", "Companions deal (5-10)% increased Damage", "Companions have (5-10)% increased maximum Life", statOrder = { 5708, 5712 }, level = 1, group = "HybridAbyssModJewelCompanionLifeAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "minion_damage", "resource", "unveiled_mod", "life", "damage", "minion" }, tradeHashes = { [1805182458] = { "Companions have (5-10)% increased maximum Life" }, [234296660] = { "Companions deal (5-10)% increased Damage" }, } }, - ["AbyssModJewelPrefixGlobalPhysicalDamageArmourBreak"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Global Physical Damage", "Break (4-8)% increased Armour", statOrder = { 1184, 4397 }, level = 1, group = "HybridAbyssModJewelGlobalPhysicalDamageArmourBreak", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "physical_damage", "unveiled_mod", "armour", "damage", "physical" }, tradeHashes = { [1776411443] = { "Break (4-8)% increased Armour" }, [1310194496] = { "(4-8)% increased Global Physical Damage" }, } }, - ["AbyssModJewelPrefixElementalDamageAilmentMagnitude"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Elemental Damage", "(4-8)% increased Magnitude of Ailments you inflict", statOrder = { 1724, 4249 }, level = 1, group = "HybridAbyssModJewelElementalDamageAilmentMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1303248024] = { "(4-8)% increased Magnitude of Ailments you inflict" }, [3141070085] = { "(4-8)% increased Elemental Damage" }, } }, - ["AbyssModJewelPrefixChaosDamageWitherEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Chaos Damage", "(3-6)% increased Withered Magnitude", statOrder = { 875, 10514 }, level = 1, group = "HybridAbyssModJewelChaosDamageWitherEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [736967255] = { "(4-8)% increased Chaos Damage" }, [3973629633] = { "(3-6)% increased Withered Magnitude" }, } }, - ["AbyssModJewelPrefixMinionAreaAndLife"] = { type = "Prefix", affix = "Lightless", "Minions have (4-8)% increased maximum Life", statOrder = { 1025 }, level = 1, group = "HybridAbyssModJewelMinionAreaAndLife", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (4-8)% increased maximum Life" }, } }, - ["AbyssModJewelPrefixAuraSkillEffectPresenceAreaOfEffect"] = { type = "Prefix", affix = "Lightless", "(8-15)% increased Presence Area of Effect", "Aura Skills have (2-4)% increased Magnitudes", statOrder = { 1068, 2572 }, level = 1, group = "HybridAbyssModJewelAuraSkillEffectPresenceAreaOfEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "aura" }, tradeHashes = { [101878827] = { "(8-15)% increased Presence Area of Effect" }, [315791320] = { "Aura Skills have (2-4)% increased Magnitudes" }, } }, - ["AbyssModJewelPrefixElementalExposureEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Exposure Effect", statOrder = { 6510 }, level = 1, group = "HybridAbyssModJewelElementalExposureEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(4-8)% increased Exposure Effect" }, } }, - ["AbyssModJewelPrefixAbyssalWastingEffect"] = { type = "Prefix", affix = "Lightless", "(10-20)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4111 }, level = 1, group = "HybridAbyssModJewelAbyssalWastingEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [4043376133] = { "(10-20)% increased Magnitude of Abyssal Wasting you inflict" }, } }, - ["AbyssModJewelSuffixIncreasedStrength"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Strength", statOrder = { 998 }, level = 1, group = "HybridAbyssModJewelIncreasedStrength", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [734614379] = { "(1-2)% increased Strength" }, } }, - ["AbyssModJewelSuffixIncreasedDexterity"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Dexterity", statOrder = { 999 }, level = 1, group = "HybridAbyssModJewelIncreasedDexterity", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [4139681126] = { "(1-2)% increased Dexterity" }, } }, - ["AbyssModJewelSuffixIncreasedIntelligence"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Intelligence", statOrder = { 1000 }, level = 1, group = "HybridAbyssModJewelIncreasedIntelligence", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [656461285] = { "(1-2)% increased Intelligence" }, } }, - ["AbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(13-17)% to Lightning and Chaos Resistances", statOrder = { 7512 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "unveiled_mod", "ulaman_mod", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(13-17)% to Lightning and Chaos Resistances" }, } }, - ["AbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "+(9-15) to Strength and Dexterity", statOrder = { 994 }, level = 65, group = "StrengthAndDexterity", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "attribute" }, tradeHashes = { [538848803] = { "+(9-15) to Strength and Dexterity" }, } }, - ["AbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(13-17)% to Fire and Chaos Resistances", statOrder = { 6530 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "unveiled_mod", "amanamu_mod", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(13-17)% to Fire and Chaos Resistances" }, } }, - ["AbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "+(9-15) to Strength and Intelligence", statOrder = { 995 }, level = 65, group = "StrengthAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attribute" }, tradeHashes = { [1535626285] = { "+(9-15) to Strength and Intelligence" }, } }, - ["AbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(13-17)% to Cold and Chaos Resistances", statOrder = { 5660 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "unveiled_mod", "kurgal_mod", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(13-17)% to Cold and Chaos Resistances" }, } }, - ["AbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "+(9-15) to Dexterity and Intelligence", statOrder = { 996 }, level = 65, group = "DexterityAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attribute" }, tradeHashes = { [2300185227] = { "+(9-15) to Dexterity and Intelligence" }, } }, - ["AbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 65, group = "ManaCostEfficiency", weightKey = { "helmet", "gloves", "focus", "quiver", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [4101445926] = { "(6-10)% increased Mana Cost Efficiency" }, } }, - ["AbyssModHelmUlamanSuffixMarkedEnemyTakeIncreasedDamage"] = { type = "Suffix", affix = "of Ulaman", "Enemies you Mark take (4-8)% increased Damage", statOrder = { 8793 }, level = 65, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2083058281] = { "Enemies you Mark take (4-8)% increased Damage" }, } }, - ["AbyssModHelmUlamanSuffixCriticalHitDamage"] = { type = "Suffix", affix = "of Ulaman", "(13-20)% increased Critical Damage Bonus", statOrder = { 979 }, level = 65, group = "CriticalStrikeMultiplier", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "(13-20)% increased Critical Damage Bonus" }, } }, - ["AbyssModHelmUlamanSuffixLifeCostEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Life Cost Efficiency", statOrder = { 4696 }, level = 65, group = "LifeCostEfficiency", weightKey = { "helmet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [310945763] = { "(8-12)% increased Life Cost Efficiency" }, } }, - ["AbyssModHelmAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(4-8)% increased Spirit Reservation Efficiency", statOrder = { 4743 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(4-8)% increased Spirit Reservation Efficiency" }, } }, - ["AbyssModHelmAmanamuSuffixGloryGeneration"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Glory generation", statOrder = { 6891 }, level = 65, group = "GloryGeneration", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3143918757] = { "(10-20)% increased Glory generation" }, } }, - ["AbyssModHelmAmanamuSuffixPresenceAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Presence Area of Effect", statOrder = { 1068 }, level = 65, group = "PresenceRadius", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "aura" }, tradeHashes = { [101878827] = { "(25-35)% increased Presence Area of Effect" }, } }, - ["AbyssModHelmKurgalSuffixArcaneSurgeEffect"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% increased effect of Arcane Surge on you", statOrder = { 2994 }, level = 65, group = "ArcaneSurgeEffect", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "helmet", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana", "caster" }, tradeHashes = { [2103650854] = { "(20-30)% increased effect of Arcane Surge on you" }, } }, - ["AbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Magnitude of Ailments you inflict", statOrder = { 4249 }, level = 65, group = "AilmentEffect", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "ailment" }, tradeHashes = { [1303248024] = { "(10-20)% increased Magnitude of Ailments you inflict" }, } }, - ["AbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to Poison", statOrder = { 9449 }, level = 65, group = "PoisonChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3481083201] = { "(20-30)% increased chance to Poison" }, } }, - ["AbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to inflict Bleeding", statOrder = { 4794 }, level = 65, group = "BleedChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [242637938] = { "(20-30)% increased chance to inflict Bleeding" }, } }, - ["AbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5540 }, level = 65, group = "IncisionChance", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, - ["AbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently", statOrder = { 9873 }, level = 65, group = "SkillSpeedIfConsumedFrenzyChargeRecently", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3313255158] = { "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently" }, } }, - ["AbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased Area of Effect of Curses", statOrder = { 1948 }, level = 65, group = "CurseAreaOfEffect", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [153777645] = { "(12-20)% increased Area of Effect of Curses" }, } }, - ["AbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% chance to Daze on Hit", statOrder = { 4658 }, level = 65, group = "DazeBuildup", weightKey = { "gloves", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3146310524] = { "(10-20)% chance to Daze on Hit" }, } }, - ["AbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "(8-15)% of Leech is Instant", statOrder = { 7401 }, level = 65, group = "PercentOfLeechIsInstant", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, - ["AbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Immobilisation buildup", statOrder = { 7170 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [330530785] = { "(10-20)% increased Immobilisation buildup" }, } }, - ["AbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit", statOrder = { 6724 }, level = 65, group = "GainArcaneSurgeOnCrit", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [446027070] = { "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit" }, } }, - ["AbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cast Speed when on Full Life", statOrder = { 1740 }, level = 65, group = "CastSpeedOnFullLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "caster_speed", "unveiled_mod", "kurgal_mod", "caster", "speed" }, tradeHashes = { [656291658] = { "(8-15)% increased Cast Speed when on Full Life" }, } }, - ["AbyssModBootsAndBeltUlamanSuffixReducedPoisonDurationSelf"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% reduced Poison Duration on you", statOrder = { 1066 }, level = 65, group = "ReducedPoisonDuration", weightKey = { "boots", "belt", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "poison", "unveiled_mod", "ulaman_mod", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(20-30)% reduced Poison Duration on you" }, } }, - ["AbyssModBootsAndBeltAmanamuSuffixReducedIgniteDuration"] = { type = "Suffix", affix = "of Amanamu", "(20-30)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 65, group = "ReducedIgniteDurationOnSelf", weightKey = { "boots", "belt", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(20-30)% reduced Ignite Duration on you" }, } }, - ["AbyssModBootsAndBeltKurgalSuffixReducedBleedDurationSelf"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 65, group = "ReducedBleedDuration", weightKey = { "boots", "belt", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "kurgal_mod", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(20-30)% reduced Duration of Bleeding on You" }, } }, - ["AbyssModBootsUlamanSuffixCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Ulaman", "Corrupted Blood cannot be inflicted on you", statOrder = { 5260 }, level = 65, group = "CorruptedBloodImmunity", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["AbyssModBootsUlamanSuffixReducedMovementPenaltyWhileSkilling"] = { type = "Suffix", affix = "of Ulaman", "(6-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9119 }, level = 65, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [2590797182] = { "(6-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, - ["AbyssModBootsAmanamuSuffixReducedPotencyOfSlows"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 65, group = "SlowPotency", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [924253255] = { "(12-20)% reduced Slowing Potency of Debuffs on You" }, } }, - ["AbyssModBootsAmanamuSuffixDodgeRollDistance"] = { type = "Suffix", affix = "of Amanamu", "+(0.1-0.2) metres to Dodge Roll distance", statOrder = { 6186 }, level = 65, group = "DodgeRollDistance", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [258119672] = { "+(0.1-0.2) metres to Dodge Roll distance" }, } }, - ["AbyssModBootsKurgalSuffixManaCostEfficiencyDodgeRolledRecently"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently", statOrder = { 7942 }, level = 65, group = "ManaCostEfficiencyIfDodgeRolledRecently", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3396435291] = { "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently" }, } }, - ["AbyssModBootsKurgalSuffixManaRegenerationStationary"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Mana Regeneration Rate while stationary", statOrder = { 3984 }, level = 65, group = "ManaRegenerationWhileStationary", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3308030688] = { "(40-50)% increased Mana Regeneration Rate while stationary" }, } }, - ["AbyssModBeltUlamanPrefixLifeFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Ulaman's", "Life Flasks gain (0.1-0.2) charges per Second", statOrder = { 6869 }, level = 65, group = "LifeFlaskChargeGeneration", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.1-0.2) charges per Second" }, } }, - ["AbyssModBeltUlamanPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Ulaman's", "(10-18)% chance for Flasks you use to not consume Charges", statOrder = { 3879 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [311641062] = { "(10-18)% chance for Flasks you use to not consume Charges" }, } }, - ["AbyssModBeltUlamanPrefixLifeRegenRateDuringLifeFlaskEffect"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Life Regeneration rate during Effect of any Life Flask", statOrder = { 7481 }, level = 65, group = "LifeRegenerationRateDuringFlaskEffect", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "life_flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1261076060] = { "(20-30)% increased Life Regeneration rate during Effect of any Life Flask" }, } }, - ["AbyssModBeltUlamanSuffixReducedSlowPotencySelfIfCharmedRecently"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", statOrder = { 9895 }, level = 65, group = "SlowEffectIfCharmedRecently", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3839676903] = { "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently" }, } }, - ["AbyssModBeltAmanamuPrefixCharmsGainChargesPerSecond"] = { type = "Prefix", affix = "Amanamu's", "Charms gain (0.1-0.2) charges per Second", statOrder = { 6866 }, level = 65, group = "CharmChargeGeneration", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.1-0.2) charges per Second" }, } }, - ["AbyssModBeltAmanamuPrefixGainFireThornsPer100MaximumLife"] = { type = "Prefix", affix = "Amanamu's", "2 to 4 Fire Thorns damage per 100 maximum Life", statOrder = { 10215 }, level = 65, group = "ThornsFirePerOneHundredLife", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire" }, tradeHashes = { [287294012] = { "2 to 4 Fire Thorns damage per 100 maximum Life" }, } }, - ["AbyssModBeltAmanamuPrefixChanceToNotConsumeCharmCharges"] = { type = "Prefix", affix = "Amanamu's", "(10-18)% chance for Charms you use to not consume Charges", statOrder = { 5620 }, level = 65, group = "CharmChanceToNotConsumeCharges", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [501873429] = { "(10-18)% chance for Charms you use to not consume Charges" }, } }, - ["AbyssModBeltAmanamuSuffixThornsBaseCriticalStrikeChance"] = { type = "Suffix", affix = "of Amanamu", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4746 }, level = 65, group = "ThornsCriticalStrikeChance", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, - ["AbyssModBeltKurgalPrefixManaFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Kurgal's", "Mana Flasks gain (0.1-0.2) charges per Second", statOrder = { 6870 }, level = 65, group = "ManaFlaskChargeGeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.2) charges per Second" }, } }, - ["AbyssModBeltKurgalPrefixGainArmourPercentOfMana"] = { type = "Prefix", affix = "Kurgal's", "Gain (6-12)% of Maximum Mana as Armour", statOrder = { 7941 }, level = 65, group = "GainPercentManaAsArmour", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "resource", "unveiled_mod", "kurgal_mod", "mana", "armour" }, tradeHashes = { [514290151] = { "Gain (6-12)% of Maximum Mana as Armour" }, } }, - ["AbyssModBeltKurgalPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Kurgal's", "(10-15)% chance for Flasks you use to not consume Charges", statOrder = { 3879 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "kurgal_mod" }, tradeHashes = { [311641062] = { "(10-15)% chance for Flasks you use to not consume Charges" }, } }, - ["AbyssModBeltKurgalSuffixManaRegenerationRate"] = { type = "Suffix", affix = "of Kurgal", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 65, group = "ManaRegeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["AbyssModBodyShieldUlamanSuffixHitsAgainstYouReducedCriticalDamage"] = { type = "Suffix", affix = "of Ulaman", "Hits have (17-25)% reduced Critical Hit Chance against you", statOrder = { 2855 }, level = 65, group = "ChanceToTakeCriticalStrikeUpdated", weightKey = { "body_armour", "shield", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "critical" }, tradeHashes = { [4270096386] = { "Hits have (17-25)% reduced Critical Hit Chance against you" }, } }, - ["AbyssModBodyShieldAmanamuSuffixLifeRecoup"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 65, group = "DamageTakenGainedAsLife", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["AbyssModBodyShieldAmanamuSuffixReducedCursedEffectSelf"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% reduced effect of Curses on you", statOrder = { 1909 }, level = 65, group = "ReducedCurseEffect", weightKey = { "body_armour", "shield", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(25-35)% reduced effect of Curses on you" }, } }, - ["AbyssModBodyShieldKurgalSuffixManaRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 65, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "shield", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["AbyssModBodyShieldKurgalSuffixElementalEnergyShieldRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Elemental Damage taken Recouped as Energy Shield", statOrder = { 9617 }, level = 65, group = "ElementalDamageTakenGoesToEnergyShield", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2896115339] = { "(10-20)% of Elemental Damage taken Recouped as Energy Shield" }, } }, - ["AbyssModBodyShieldKurgalSuffixArmourAppliesToChaosDamage"] = { type = "Suffix", affix = "of Kurgal", "+(23-31)% of Armour also applies to Chaos Damage", statOrder = { 4634 }, level = 65, group = "ArmourPercentAppliesToChaosDamage", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3972229254] = { "+(23-31)% of Armour also applies to Chaos Damage" }, } }, - ["AbyssModBodyArmourUlamanSuffixDeflectDamagePrevented"] = { type = "Suffix", affix = "of Ulaman", "Prevent +(3-5)% of Damage from Deflected Hits", statOrder = { 4667 }, level = 65, group = "DeflectDamageTaken", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3552135623] = { "Prevent +(3-5)% of Damage from Deflected Hits" }, } }, - ["AbyssModBodyArmourUlamanSuffixCompanionReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(12-18)% increased Reservation Efficiency of Companion Skills", statOrder = { 9723 }, level = 65, group = "CompanionReservationEfficiency", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3413635271] = { "(12-18)% increased Reservation Efficiency of Companion Skills" }, } }, - ["AbyssModBodyArmourAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(6-12)% increased Spirit Reservation Efficiency", statOrder = { 4743 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "body_armour", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(6-12)% increased Spirit Reservation Efficiency" }, } }, - ["AbyssModBodyArmourKurgalSuffixDamageTakenFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "body_armour", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, - ["AbyssModShieldUlamanSuffixMaximumBlockChance"] = { type = "Suffix", affix = "of Ulaman", "+(1-2)% to maximum Block chance", statOrder = { 1732 }, level = 65, group = "MaximumBlockChance", weightKey = { "shield", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [480796730] = { "+(1-2)% to maximum Block chance" }, } }, - ["AbyssModShieldUlamanSuffixParryDebuffMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased Parried Debuff Magnitude", statOrder = { 9338 }, level = 65, group = "ParryDebuffMagnitude", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [818877178] = { "(20-30)% increased Parried Debuff Magnitude" }, } }, - ["AbyssModShieldUlamanSuffixParryDebuffDuration"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% increased Parried Debuff Duration", statOrder = { 9351 }, level = 65, group = "ParryDuration", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3401186585] = { "(25-35)% increased Parried Debuff Duration" }, } }, - ["AbyssModShieldUlamanSuffixLightningTakenAsPhysAndGlancingWhileActiveBlocking"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% of Physical Damage taken as Lightning while your Shield is raised", "You take (8-15)% of damage from Blocked Hits with a raised Shield", statOrder = { 2203, 4931 }, level = 65, group = "PhysicalTakenAsLightningAndGlancingWhilActiveBlocking", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod", "physical", "elemental", "lightning" }, tradeHashes = { [321970274] = { "(30-40)% of Physical Damage taken as Lightning while your Shield is raised" }, [3694078435] = { "You take (8-15)% of damage from Blocked Hits with a raised Shield" }, } }, - ["AbyssModShieldAmanamuSuffixShieldSkillsFullyBreakArmourOnHeavyStun"] = { type = "Suffix", affix = "of Amanamu", "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", statOrder = { 6676 }, level = 65, group = "StunningHitsWithShieldSkillsFullyBreakArmour", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1689748350] = { "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour" }, } }, - ["AbyssModShieldAmanamuSuffixHeavyStunDecaySelf"] = { type = "Suffix", affix = "of Amanamu", "Your Heavy Stun buildup empties (30-40)% faster", statOrder = { 6964 }, level = 65, group = "HeavyStunDecayRate", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [886088880] = { "Your Heavy Stun buildup empties (30-40)% faster" }, } }, - ["AbyssModShieldAmanamuSuffixAllMaximumResistances"] = { type = "Suffix", affix = "of Amanamu", "+1% to all maximum Resistances", statOrder = { 1492 }, level = 65, group = "MaximumResistances", weightKey = { "shield", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, - ["AbyssModShieldKurgalSuffixFlatManaGainedOnBlock"] = { type = "Suffix", affix = "of Kurgal", "(6-12) Mana gained when you Block", statOrder = { 1518 }, level = 65, group = "GainManaOnBlock", weightKey = { "shield", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2122183138] = { "(6-12) Mana gained when you Block" }, } }, - ["AbyssModShieldKurgalSuffixEnergyShieldRechargeRateBlockedRecently"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently", statOrder = { 6422 }, level = 65, group = "EnergyShieldRechargeBlockedRecently", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "block", "defences", "unveiled_mod", "kurgal_mod", "energy_shield" }, tradeHashes = { [1079292660] = { "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently" }, } }, - ["AbyssModFocusUlamanPrefixMaximumSpellTotems"] = { type = "Prefix", affix = "Ulaman's", "Spell Skills have +1 to maximum number of Summoned Totems", statOrder = { 9991 }, level = 65, group = "AdditionalSpellTotem", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2474424958] = { "Spell Skills have +1 to maximum number of Summoned Totems" }, } }, - ["AbyssModFocusUlamanPrefixSpellDamageWhileWieldingMeleeWeapon"] = { type = "Prefix", affix = "Ulaman's", "(61-79)% increased Spell Damage while wielding a Melee Weapon", statOrder = { 9969 }, level = 65, group = "SpellDamageIfWieldingMeleeWeapon", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [4136346606] = { "(61-79)% increased Spell Damage while wielding a Melee Weapon" }, } }, - ["AbyssModFocusUlamanSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9997 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(10-20)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["AbyssModFocusUlamanSuffixChanceForTwoAdditionalSpellProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(10-16)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9993 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(10-16)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["AbyssModFocusAmanamuPrefixCurseMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(8-16)% increased Curse Magnitudes", statOrder = { 2374 }, level = 65, group = "CurseEffectiveness", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-16)% increased Curse Magnitudes" }, } }, - ["AbyssModFocusAmanamuPrefixOfferingBuffEffect"] = { type = "Prefix", affix = "Amanamu's", "Offering Skills have (12-20)% increased Buff effect", statOrder = { 3717 }, level = 65, group = "OfferingEffect", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3191479793] = { "Offering Skills have (12-20)% increased Buff effect" }, } }, - ["AbyssModFocusAmanamuSuffixGlobalMinionSkillLevels"] = { type = "Suffix", affix = "of Amanamu", "+(1-2) to Level of all Minion Skills", statOrder = { 971 }, level = 65, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, - ["AbyssModFocusAmanamuSuffixFasterCurseActivation"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% faster Curse Activation", statOrder = { 5910 }, level = 65, group = "CurseDelay", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, - ["AbyssModFocusKurgalPrefixInvocationSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (61-79)% increased Damage", statOrder = { 7365 }, level = 65, group = "InvocationSpellDamage", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (61-79)% increased Damage" }, } }, - ["AbyssModFocusKurgalPrefixSpellAreaOfEffect"] = { type = "Prefix", affix = "Kurgal's", "Spell Skills have (10-20)% increased Area of Effect", statOrder = { 9950 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-20)% increased Area of Effect" }, } }, - ["AbyssModFocusKurgalSuffixChanceForAdditionalInfusion"] = { type = "Suffix", affix = "of Kurgal", "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type", statOrder = { 4183, 4183.1 }, level = 65, group = "ChanceToGainAdditionalInfusion", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3927679277] = { "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type" }, } }, - ["AbyssModQuiverUlamanPrefixIncreasesToProjectileSpeedApplyToDamage"] = { type = "Prefix", affix = "Ulaman's", "Increases and Reductions to Projectile Speed also apply to Damage with Bows", statOrder = { 4428 }, level = 65, group = "IncreasesToProjectileDamageApplyToBowDamage", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [414821772] = { "Increases and Reductions to Projectile Speed also apply to Damage with Bows" }, } }, - ["AbyssModQuiverUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving", statOrder = { 9500 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving" }, } }, - ["AbyssModQuiverUlamanSuffixAttackCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-14)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4732 }, level = 65, group = "LifeCost", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(10-14)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["AbyssModQuiverAmanamuPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Amanamu's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m", statOrder = { 9508 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m" }, } }, - ["AbyssModQuiverAmanamuSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Amanamu", "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5803 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m" }, } }, - ["AbyssModQuiverKurgalPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m", statOrder = { 9507 }, level = 65, group = "ProjectileDamageFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m" }, } }, - ["AbyssModQuiverKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5817 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m" }, } }, - ["AbyssModRingAmuletUlamanPrefixAttackDamageWhileLowLife"] = { type = "Prefix", affix = "Ulaman's", "(15-25)% increased Attack Damage while on Low Life", statOrder = { 4520 }, level = 65, group = "AttackDamageOnLowLife", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [4246007234] = { "(15-25)% increased Attack Damage while on Low Life" }, } }, - ["AbyssModRingAmuletUlamanSuffixSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(3-6)% increased Skill Speed", statOrder = { 836 }, level = 65, group = "IncreasedSkillSpeed", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [970213192] = { "(3-6)% increased Skill Speed" }, } }, - ["AbyssModRingAmuletUlamanSuffixRecoverPercentMaxLifeOnKill"] = { type = "Suffix", affix = "of Ulaman", "Recover (2-3)% of maximum Life on Kill", statOrder = { 1509 }, level = 65, group = "RecoverPercentMaxLifeOnKill", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (2-3)% of maximum Life on Kill" }, } }, - ["AbyssModRingAmuletAmanamuPrefixRemnantEffect"] = { type = "Prefix", affix = "Amanamu's", "Remnants you create have (8-15)% increased effect", statOrder = { 9695 }, level = 65, group = "RemnantEffect", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1999910726] = { "Remnants you create have (8-15)% increased effect" }, } }, - ["AbyssModRingAmuletAmanamuPrefixMinionDamageIfYou'veHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (15-25)% increased Damage if you've Hit Recently", statOrder = { 9004 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "minion_damage", "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (15-25)% increased Damage if you've Hit Recently" }, } }, - ["AbyssModRingAmuletAmanamuSuffixSkillEffectDuration"] = { type = "Suffix", affix = "of Amanamu", "(8-12)% increased Skill Effect Duration", statOrder = { 1643 }, level = 65, group = "SkillEffectDuration", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3377888098] = { "(8-12)% increased Skill Effect Duration" }, } }, - ["AbyssModRingAmuletAmanamuSuffixRemnantCollectionRange"] = { type = "Suffix", affix = "of Amanamu", "Remnants can be collected from (20-30)% further away", statOrder = { 9697 }, level = 65, group = "RemnantPickupRadiusIncrease", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-30)% further away" }, } }, - ["AbyssModRingAmuletKurgalPrefixSpellDamageWhileEnergyShieldFull"] = { type = "Prefix", affix = "Kurgal's", "(15-25)% increased Spell Damage while on Full Energy Shield", statOrder = { 2808 }, level = 65, group = "IncreasedSpellDamageOnFullEnergyShield", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "caster_damage", "unveiled_mod", "kurgal_mod", "damage", "caster" }, tradeHashes = { [3176481473] = { "(15-25)% increased Spell Damage while on Full Energy Shield" }, } }, - ["AbyssModRingAmuletKurgalSuffixExposureEffect"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% increased Exposure Effect", statOrder = { 6510 }, level = 65, group = "ElementalExposureEffect", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(10-15)% increased Exposure Effect" }, } }, - ["AbyssModRingAmuletKurgalSuffixCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 65, group = "GlobalCooldownRecovery", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, - ["AbyssModRingAmuletKurgalSuffixRecoverPercentMaxManaOnKill"] = { type = "Suffix", affix = "of Kurgal", "Recover (2-3)% of maximum Mana on Kill", statOrder = { 1515 }, level = 65, group = "ManaGainedOnKillPercentage", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [1604736568] = { "Recover (2-3)% of maximum Mana on Kill" }, } }, - ["AbyssModRingUlamanPrefixShockMagnitudeIfConsumedFrenzyCharge"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", statOrder = { 9805 }, level = 65, group = "ShockMagnitudeIfConsumedFrenzyChargeRecently", weightKey = { "ring", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "frenzy_charge", "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [324210709] = { "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently" }, } }, - ["AbyssModRingAmanamuPrefixIgniteMagnitudeIfConsumedEnduranceCharge"] = { type = "Prefix", affix = "Amanamu's", "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", statOrder = { 7240 }, level = 65, group = "IgniteMagnitudeIfConsumedEnduranceChargeRecently", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "endurance_charge", "unveiled_mod", "amanamu_mod", "ailment" }, tradeHashes = { [916833363] = { "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently" }, } }, - ["AbyssModRingAmanamuSuffixLifeLeechAmount"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased amount of Life Leeched", statOrder = { 1893 }, level = 65, group = "LifeLeechAmount", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life" }, tradeHashes = { [2112395885] = { "(12-20)% increased amount of Life Leeched" }, } }, - ["AbyssModRingKurgalPrefixFreezeBuildupIfConsumedPowerCharge"] = { type = "Prefix", affix = "Kurgal's", "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently", statOrder = { 7169 }, level = 65, group = "FreezeBuildupIfConsumedPowerChargeRecently", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "power_charge", "unveiled_mod", "kurgal_mod", "ailment" }, tradeHashes = { [232701452] = { "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently" }, } }, - ["AbyssModRingKurgalSuffixManaLeechAmount"] = { type = "Suffix", affix = "of Kurgal", "(12-20)% increased amount of Mana Leeched", statOrder = { 1895 }, level = 65, group = "ManaLeechAmount", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2839066308] = { "(12-20)% increased amount of Mana Leeched" }, } }, - ["AbyssModAmuletUlamanPrefixEvasionRatingFromEquippedBody"] = { type = "Prefix", affix = "Ulaman's", "(35-50)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4946 }, level = 65, group = "EvasionRatingFromBodyArmour", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "ulaman_mod", "evasion" }, tradeHashes = { [3509362078] = { "(35-50)% increased Evasion Rating from Equipped Body Armour" }, } }, - ["AbyssModAmuletUlamanPrefixGlobalDeflectionRating"] = { type = "Prefix", affix = "Ulaman's", "(10-20)% increased Deflection Rating", statOrder = { 6105 }, level = 65, group = "GlobalDeflectionRating", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "ulaman_mod", "evasion" }, tradeHashes = { [3040571529] = { "(10-20)% increased Deflection Rating" }, } }, - ["AbyssModAmuletUlamanPrefixChanceToNotConsumeGlory"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% chance for Skills to retain 40% of Glory on use", statOrder = { 5556 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2749595652] = { "(20-30)% chance for Skills to retain 40% of Glory on use" }, } }, - ["AbyssModAmuletUlamanSuffixHeraldReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Reservation Efficiency of Herald Skills", statOrder = { 9724 }, level = 65, group = "HeraldReservationEfficiency", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1697191405] = { "(10-20)% increased Reservation Efficiency of Herald Skills" }, } }, - ["AbyssModAmuletUlamanSuffixGlobalLevelOfSkillGems"] = { type = "Suffix", affix = "of Ulaman", "+1 to Level of all Skills", statOrder = { 948 }, level = 65, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, - ["AbyssModAmuletAmanamuPrefixArmourFromEquippedBody"] = { type = "Prefix", affix = "Amanamu's", "(35-50)% increased Armour from Equipped Body Armour", statOrder = { 4945 }, level = 65, group = "BodyArmourFromBodyArmour", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "amanamu_mod", "armour" }, tradeHashes = { [1015576579] = { "(35-50)% increased Armour from Equipped Body Armour" }, } }, - ["AbyssModAmuletAmanamuPrefixGlobalDefences"] = { type = "Prefix", affix = "Amanamu's", "(15-25)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2586 }, level = 65, group = "AllDefences", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1177404658] = { "(15-25)% increased Global Armour, Evasion and Energy Shield" }, } }, - ["AbyssModAmuletAmanamuSuffixReducedRequirementEquipmentAndSkill"] = { type = "Suffix", affix = "of Amanamu", "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements", statOrder = { 2333 }, level = 65, group = "GlobalItemAttributeRequirements", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements" }, } }, - ["AbyssModAmuletAmanamuSuffixAuraMagnitude"] = { type = "Suffix", affix = "of Amanamu", "Aura Skills have (8-16)% increased Magnitudes", statOrder = { 2572 }, level = 65, group = "AuraMagnitude", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [315791320] = { "Aura Skills have (8-16)% increased Magnitudes" }, } }, - ["AbyssModAmuletKurgalPrefixEnergyShieldFromEquippedBody"] = { type = "Prefix", affix = "Kurgal's", "(35-50)% increased Energy Shield from Equipped Body Armour", statOrder = { 8828 }, level = 65, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "kurgal_mod", "energy_shield" }, tradeHashes = { [1195319608] = { "(35-50)% increased Energy Shield from Equipped Body Armour" }, } }, - ["AbyssModAmuletKurgalPrefixChanceInvocatedSpellsConsumeHalfEnergy"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells have (10-20)% chance to consume half as much Energy", statOrder = { 7362 }, level = 65, group = "InvocatedSpellHalfEnergyChance", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [3711973554] = { "Invocated Spells have (10-20)% chance to consume half as much Energy" }, } }, - ["AbyssModAmuletKurgalSuffixCooldownRecoveryRateCommandSkills"] = { type = "Suffix", affix = "of Kurgal", "Minions have (12-20)% increased Cooldown Recovery Rate", statOrder = { 8994 }, level = 65, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHashes = { [1691403182] = { "Minions have (12-20)% increased Cooldown Recovery Rate" }, } }, - ["AbyssModAmuletKurgalSuffixDamageFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(8-16)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(8-16)% of Damage is taken from Mana before Life" }, } }, - ["AbyssModAmuletKurgalSuffixQualityofAllSkills"] = { type = "Suffix", affix = "of Kurgal", "+(3-5)% to Quality of all Skills", statOrder = { 974 }, level = 65, group = "GlobalSkillGemQuality", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "gem" }, tradeHashes = { [3655769732] = { "+(3-5)% to Quality of all Skills" }, } }, - ["AbyssModStaffUlamanPrefixSpellDamagePer100MaximumLife"] = { type = "Prefix", affix = "Ulaman's", "(4-5)% increased Spell Damage per 100 Maximum Life", statOrder = { 9974 }, level = 65, group = "SpellDamagePer100Life", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "ulaman_mod", "life", "damage", "caster" }, tradeHashes = { [3491815140] = { "(4-5)% increased Spell Damage per 100 Maximum Life" }, } }, - ["AbyssModStaffUlamanPrefixMagnitudeOfDamagingAilments"] = { type = "Prefix", affix = "Ulaman's", "(40-64)% increased Magnitude of Damaging Ailments you inflict", statOrder = { 6053 }, level = 65, group = "DamagingAilmentEffect", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [1381474422] = { "(40-64)% increased Magnitude of Damaging Ailments you inflict" }, } }, - ["AbyssModStaffUlamanSuffixCastSpeedWhileLowLife"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% increased Cast Speed when on Low Life", statOrder = { 1739 }, level = 65, group = "CastSpeedOnLowLife", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_speed", "unveiled_mod", "ulaman_mod", "caster", "speed" }, tradeHashes = { [1136768410] = { "(30-40)% increased Cast Speed when on Low Life" }, } }, - ["AbyssModStaffUlamanSuffixChanceForSpellsToFireTwoAdditionalProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9993 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["AbyssModStaffAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(148-178)% increased Spell Damage with Spells that cost Life", statOrder = { 9970 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(148-178)% increased Spell Damage with Spells that cost Life" }, } }, - ["AbyssModStaffAmanamuPrefixFlatSpirit"] = { type = "Prefix", affix = "Amanamu's", "+(35-50) to Spirit", statOrder = { 895 }, level = 65, group = "BaseSpirit", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3981240776] = { "+(35-50) to Spirit" }, } }, - ["AbyssModStaffAmanamuSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9997 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-35)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["AbyssModStaffAmanamuSuffixArchonDuration"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Archon Buff duration", statOrder = { 4334 }, level = 65, group = "ArchonDuration", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2158617060] = { "(25-35)% increased Archon Buff duration" }, } }, - ["AbyssModStaffAmanamuSuffixBlockChance"] = { type = "Suffix", affix = "of Amanamu", "+(12-16)% to Block chance", statOrder = { 1122 }, level = 65, group = "AdditionalBlock", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1702195217] = { "+(12-16)% to Block chance" }, } }, - ["AbyssModStaffKurgalPrefixSpellDamagePer100MaximumMana"] = { type = "Prefix", affix = "Kurgal's", "(4-5)% increased Spell Damage per 100 maximum Mana", statOrder = { 9976 }, level = 65, group = "SpellDamagePer100Mana", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "kurgal_mod", "mana", "damage", "caster" }, tradeHashes = { [1850249186] = { "(4-5)% increased Spell Damage per 100 maximum Mana" }, } }, - ["AbyssModStaffKurgalPrefixMaximumInfusions"] = { type = "Prefix", affix = "Kurgal's", "+(1-2) to maximum number of Elemental Infusions", statOrder = { 8840 }, level = 65, group = "MaximumElementalInfusion", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental" }, tradeHashes = { [4097212302] = { "+(1-2) to maximum number of Elemental Infusions" }, } }, - ["AbyssModStaffKurgalSuffixArchonCooldownRecovery"] = { type = "Suffix", affix = "of Kurgal", "Archon recovery period expires (25-35)% faster", statOrder = { 4333 }, level = 65, group = "ArchonDelayRecovery", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2586152168] = { "Archon recovery period expires (25-35)% faster" }, } }, - ["AbyssModStaffKurgalSuffixCastSpeedWhileFullMana"] = { type = "Suffix", affix = "of Kurgal", "(26-36)% increased Cast Speed while on Full Mana", statOrder = { 5334 }, level = 65, group = "CastSpeedOnFullMana", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_speed", "resource", "unveiled_mod", "kurgal_mod", "mana", "caster", "speed" }, tradeHashes = { [1914226331] = { "(26-36)% increased Cast Speed while on Full Mana" }, } }, - ["AbyssModWandUlamanPrefixDamageAsExtraPhysical"] = { type = "Prefix", affix = "Ulaman's", "Gain (21-25)% of Damage as Extra Physical Damage", statOrder = { 1669 }, level = 65, group = "DamageasExtraPhysical", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (21-25)% of Damage as Extra Physical Damage" }, } }, - ["AbyssModWandUlamanPrefixBleedMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(27-38)% increased Magnitude of Bleeding you inflict", statOrder = { 4797 }, level = 65, group = "BleedDotMultiplier", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(27-38)% increased Magnitude of Bleeding you inflict" }, } }, - ["AbyssModWandUlamanSuffixArmourBreakAmount"] = { type = "Suffix", affix = "of Ulaman", "Break (31-39)% increased Armour", statOrder = { 4397 }, level = 65, group = "ArmourBreak", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1776411443] = { "Break (31-39)% increased Armour" }, } }, - ["AbyssModWandUlamanSuffixBreakArmourSpellCrits"] = { type = "Suffix", affix = "of Ulaman", "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt", statOrder = { 4401 }, level = 65, group = "ArmourBreakPercentOnSpellCrit", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_critical", "unveiled_mod", "ulaman_mod", "caster", "critical" }, tradeHashes = { [1286199571] = { "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt" }, } }, - ["AbyssModWandUlamanSuffixHinderedEnemiesTakeIncreasedPhysical"] = { type = "Suffix", affix = "of Ulaman", "Enemies Hindered by you take (4-7)% increased Physical Damage", statOrder = { 7162 }, level = 65, group = "HinderedEnemiesTakeIncreasedPhysicalDamage", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [359357545] = { "Enemies Hindered by you take (4-7)% increased Physical Damage" }, } }, - ["AbyssModWandAmanamuPrefixIncreasedElementalDamage"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Elemental Damage", statOrder = { 1724 }, level = 65, group = "CasterElementalDamagePercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(74-89)% increased Elemental Damage" }, } }, - ["AbyssModWandAmanamuPrefixHybridSpellAndMinionDamage"] = { type = "Prefix", affix = "Amanamu's", "(55-64)% increased Spell Damage", "Minions deal (55-64)% increased Damage", statOrder = { 870, 1718 }, level = 65, group = "MinionAndSpellDamageHybrid", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "minion" }, tradeHashes = { [2974417149] = { "(55-64)% increased Spell Damage" }, [1589917703] = { "Minions deal (55-64)% increased Damage" }, } }, - ["AbyssModWandAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Spell Damage with Spells that cost Life", statOrder = { 9970 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(74-89)% increased Spell Damage with Spells that cost Life" }, } }, - ["AbyssModWandAmanamuSuffixSpellAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Spell Skills have (8-16)% increased Area of Effect", statOrder = { 9950 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (8-16)% increased Area of Effect" }, } }, - ["AbyssModWandAmanamuSuffixSpellManaCostConvertedToLifeSkillEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Cost Efficiency", "(15-25)% of Spell Mana Cost Converted to Life Cost", statOrder = { 4731, 9997 }, level = 65, group = "SpellLifeCostPercentAndSkillCostEfficiency", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [263495202] = { "(5-10)% increased Cost Efficiency" }, [3544050945] = { "(15-25)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["AbyssModWandAmanamuSuffixHinderedEnemiesTakeIncreasedElemental"] = { type = "Suffix", affix = "of Amanamu", "Enemies Hindered by you take (4-7)% increased Elemental Damage", statOrder = { 7161 }, level = 65, group = "HinderedEnemiesTakeIncreasedElementalDamage", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [212649958] = { "Enemies Hindered by you take (4-7)% increased Elemental Damage" }, } }, - ["AbyssModWandKurgalPrefixInvocatedSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (75-89)% increased Damage", statOrder = { 7365 }, level = 65, group = "InvocationSpellDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (75-89)% increased Damage" }, } }, - ["AbyssModWandKurgalSuffixCastSpeedPerDifferentSpellCastRecently"] = { type = "Suffix", affix = "of Kurgal", "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 5323 }, level = 65, group = "CastSpeedPerDifferentSpellCastRecently", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1518586897] = { "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" }, } }, - ["AbyssModWandKurgalSuffixHinderedEnemiesTakeIncreasedChaos"] = { type = "Suffix", affix = "of Kurgal", "Enemies Hindered by you take (4-7)% increased Chaos Damage", statOrder = { 7160 }, level = 65, group = "HinderedEnemiesTakeIncreasedChaosDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1746561819] = { "Enemies Hindered by you take (4-7)% increased Chaos Damage" }, } }, - ["AbyssModGenWeaponUlamanPrefixLightningPenetration"] = { type = "Prefix", affix = "Ulaman's", "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance", statOrder = { 3437 }, level = 65, group = "LocalLightningPenetration", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "ulaman_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance" }, } }, - ["AbyssModGenWeaponUlamanSuffixSkillCostConvertedToLife"] = { type = "Suffix", affix = "of Ulaman", "(15-20)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4732 }, level = 65, group = "LifeCost", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(15-20)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["AbyssModGenWeaponAmanamuPrefixFirePenetration"] = { type = "Prefix", affix = "Amanamu's", "Attacks with this Weapon Penetrate (15-25)% Fire Resistance", statOrder = { 3435 }, level = 65, group = "LocalFirePenetration", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (15-25)% Fire Resistance" }, } }, - ["AbyssModGenWeaponAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Spirit Reservation Efficiency", statOrder = { 4743 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(5-10)% increased Spirit Reservation Efficiency" }, } }, - ["AbyssModGenWeaponKurgalPrefixColdPenetration"] = { type = "Prefix", affix = "Kurgal's", "Attacks with this Weapon Penetrate (15-25)% Cold Resistance", statOrder = { 3436 }, level = 65, group = "LocalColdPenetration", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "kurgal_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (15-25)% Cold Resistance" }, } }, - ["AbyssModGenWeaponKurgalSuffixAttackCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4642 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, - ["AbyssModAllMacesUlamanPrefixMaximumMeleeAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "Melee Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 8876 }, level = 65, group = "AdditionalMeleeTotem", weightKey = { "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2013356568] = { "Melee Attack Skills have +1 to maximum number of Summoned Totems" }, } }, - ["AbyssModAllMacesKurgalPrefixIncreasedPhysicalDamageReducedAttackSpeed"] = { type = "Prefix", affix = "Kurgal's", "(110-154)% increased Physical Damage", "15% reduced Attack Speed", statOrder = { 829, 945 }, level = 65, group = "LocalIncreasedPhysicalDamageAttackSpeedHybrid", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "physical", "attack", "speed" }, tradeHashes = { [210067635] = { "15% reduced Attack Speed" }, [1509134228] = { "(110-154)% increased Physical Damage" }, } }, - ["AbyssModAllMacesKurgalSuffixCostEfficiencyOfAttackSkills"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4642 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, - ["AbyssMod1HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(41-59)% increased Damage while you have a Totem", statOrder = { 2921 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHashes = { [2543331226] = { "(41-59)% increased Damage while you have a Totem" }, } }, - ["AbyssMod1HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% increased Totem Placement speed", statOrder = { 2358 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3374165039] = { "(17-25)% increased Totem Placement speed" }, } }, - ["AbyssMod1HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(41-59)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5933 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(41-59)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["AbyssMod1HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (2-4)% of Physical Damage dealt", statOrder = { 4404 }, level = 65, group = "ArmourPenetration", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (2-4)% of Physical Damage dealt" }, } }, - ["AbyssMod1HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (15-25)% chance to create an additional Fissure", statOrder = { 9853 }, level = 65, group = "AdditionalFissureChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (15-25)% chance to create an additional Fissure" }, } }, - ["AbyssMod1HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10578 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, - ["AbyssMod1HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (41-59)% increased Damage", statOrder = { 6306 }, level = 65, group = "ExertedAttackDamage", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (41-59)% increased Damage" }, } }, - ["AbyssMod1HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 3033 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4159248054] = { "(17-25)% increased Warcry Cooldown Recovery Rate" }, } }, - ["AbyssMod2HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Damage while you have a Totem", statOrder = { 2921 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHashes = { [2543331226] = { "(86-99)% increased Damage while you have a Totem" }, } }, - ["AbyssMod2HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(25-31)% increased Totem Placement speed", statOrder = { 2358 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3374165039] = { "(25-31)% increased Totem Placement speed" }, } }, - ["AbyssMod2HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5933 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(86-99)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["AbyssMod2HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (4-7)% of Physical Damage dealt", statOrder = { 4404 }, level = 65, group = "ArmourPenetration", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (4-7)% of Physical Damage dealt" }, } }, - ["AbyssMod2HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (25-31)% chance to create an additional Fissure", statOrder = { 9853 }, level = 65, group = "AdditionalFissureChance", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (25-31)% chance to create an additional Fissure" }, } }, - ["AbyssMod2HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10578 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, - ["AbyssMod2HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (86-99)% increased Damage", statOrder = { 6306 }, level = 65, group = "ExertedAttackDamage", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (86-99)% increased Damage" }, } }, - ["AbyssMod2HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(25-31)% increased Warcry Cooldown Recovery Rate", statOrder = { 3033 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4159248054] = { "(25-31)% increased Warcry Cooldown Recovery Rate" }, } }, - ["AbyssModQuarterstaffUlamanPrefixLightningDamageShockMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Lightning Damage", "(14-23)% increased Magnitude of Shock you inflict", statOrder = { 874, 9804 }, level = 65, group = "LightningDamageShockMagnitudeHybrid", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(14-23)% increased Magnitude of Shock you inflict" }, [2231156303] = { "(86-99)% increased Lightning Damage" }, } }, - ["AbyssModQuarterstaffUlamanSuffixRecoverLifeWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Ulaman", "Recover (6-12)% of Maximum Life when you expend at least 10 Combo", statOrder = { 9657 }, level = 65, group = "SkillUseRecoverPercentLifeOnExpendingTenCombo", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [4033618138] = { "Recover (6-12)% of Maximum Life when you expend at least 10 Combo" }, } }, - ["AbyssModQuarterstaffAmanamuPrefixFireDamageIgniteMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Fire Damage", "(14-23)% increased Ignite Magnitude", statOrder = { 872, 1076 }, level = 65, group = "FireDamageIgniteMagnitudeHybrid", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHashes = { [3962278098] = { "(86-99)% increased Fire Damage" }, [3791899485] = { "(14-23)% increased Ignite Magnitude" }, } }, - ["AbyssModQuarterstaffAmanamuSuffixChanceToGenerateAdditionalCombo"] = { type = "Suffix", affix = "of Amanamu", "(25-40)% chance to build an additional Combo on Hit", statOrder = { 4175 }, level = 65, group = "ChanceToGenerateAdditionalCombo", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [4258524206] = { "(25-40)% chance to build an additional Combo on Hit" }, } }, - ["AbyssModQuarterstaffKurgalPrefixColdDamageFreezeBuildup"] = { type = "Prefix", affix = "Kurgal's", "(86-99)% increased Cold Damage", "(14-23)% increased Freeze Buildup", statOrder = { 873, 1056 }, level = 65, group = "ColdDamageFreezeBuildupHybrid", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3291658075] = { "(86-99)% increased Cold Damage" }, [473429811] = { "(14-23)% increased Freeze Buildup" }, } }, - ["AbyssModQuarterstaffKurgalSuffixRecoverManaWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Kurgal", "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo", statOrder = { 9660 }, level = 65, group = "SkillUseRecoverPercentManaOnExpendingTenCombo", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2991045011] = { "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo" }, } }, - ["AbyssModCrossbowUlamanPrefixMaximumRangedAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4165 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1823942939] = { "+1 to maximum number of Summoned Ballista Totems" }, } }, - ["AbyssModCrossbowUlamanSuffixAttacksChainAdditionalTime"] = { type = "Suffix", affix = "of Ulaman", "Attacks Chain an additional time", statOrder = { 3781 }, level = 65, group = "AttacksChainAdditionalTimes", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3868118796] = { "Attacks Chain an additional time" }, } }, - ["AbyssModCrossbowUlamanSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Ulaman", "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5803 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m" }, } }, - ["AbyssModCrossbowAmanamuPrefixGrenadeAdditionalCooldown"] = { type = "Prefix", affix = "Amanamu's", "Grenade Skills have +1 Cooldown Use", statOrder = { 6918 }, level = 65, group = "GrenadeCooldownUse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, - ["AbyssModCrossbowAmanamuPrefixGrenadeDamageAndDuration"] = { type = "Prefix", affix = "Amanamu's", "(101-121)% increased Grenade Damage", "(20-30)% increased Grenade Duration", statOrder = { 6920, 6921 }, level = 65, group = "GrenadeDamageLongFuse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [1365232741] = { "(20-30)% increased Grenade Duration" }, [3131442032] = { "(101-121)% increased Grenade Damage" }, } }, - ["AbyssModCrossbowAmanamuSuffixAdditionalGrenadeTriggerChance"] = { type = "Suffix", affix = "of Amanamu", "Grenades have (15-25)% chance to activate a second time", statOrder = { 6916 }, level = 65, group = "GrenadeAdditionalTriggerChance", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [538981065] = { "Grenades have (15-25)% chance to activate a second time" }, } }, - ["AbyssModCrossbowKurgalPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m", statOrder = { 9508 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m" }, } }, - ["AbyssModCrossbowKurgalSuffixReloadSpeed"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Reload Speed", statOrder = { 946 }, level = 65, group = "LocalReloadSpeed", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack", "speed" }, tradeHashes = { [710476746] = { "(17-25)% increased Reload Speed" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraTribute"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", statOrder = { 7247 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraTribute", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [1119086588] = { "Conquered Attribute Passive Skills also grant +(2-5) to Tribute" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraStrength"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Strength", statOrder = { 7246 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraStrength", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [3871530702] = { "Conquered Attribute Passive Skills also grant +(4-8) to Strength" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraDexterity"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity", statOrder = { 7244 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraDexterity", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [1938221597] = { "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraIntelligence"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence", statOrder = { 7245 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraIntelligence", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [3116427713] = { "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraAllAttributes"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes", statOrder = { 7243 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraAllAttributes", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [2552484522] = { "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes" }, } }, + ["HistoricAbyssJewelSmallGrantEvasionRatingIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating", statOrder = { 7254 }, level = 1, group = "HistoricAbyssJewelSmallGrantEvasionRatingIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [468694293] = { "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating" }, } }, + ["HistoricAbyssJewelSmallGrantArmourIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Armour", statOrder = { 7249 }, level = 1, group = "HistoricAbyssJewelSmallGrantArmourIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [970480050] = { "Conquered Small Passive Skills also grant (2-4)% increased Armour" }, } }, + ["HistoricAbyssJewelSmallGrantEnergyShieldIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield", statOrder = { 7253 }, level = 1, group = "HistoricAbyssJewelSmallGrantEnergyShieldIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [2780670304] = { "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield" }, } }, + ["HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate", statOrder = { 7256 }, level = 1, group = "HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [1818915622] = { "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate" }, } }, + ["HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate", statOrder = { 7255 }, level = 1, group = "HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [4264952559] = { "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate" }, } }, + ["HistoricAbyssJewelSmallGrantSpellDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Spell damage", statOrder = { 7259 }, level = 1, group = "HistoricAbyssJewelSmallGrantSpellDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [3038857426] = { "Conquered Small Passive Skills also grant (3-5)% increased Spell damage" }, } }, + ["HistoricAbyssJewelSmallGrantAttackDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Attack damage", statOrder = { 7250 }, level = 1, group = "HistoricAbyssJewelSmallGrantAttackDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [8816597] = { "Conquered Small Passive Skills also grant (3-5)% increased Attack damage" }, } }, + ["HistoricAbyssJewelSmallGrantElementalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage", statOrder = { 7252 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [4240116297] = { "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage" }, } }, + ["HistoricAbyssJewelSmallGrantPhysicalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Physical damage", statOrder = { 7258 }, level = 1, group = "HistoricAbyssJewelSmallGrantPhysicalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [1829333149] = { "Conquered Small Passive Skills also grant (3-5)% increased Physical damage" }, } }, + ["HistoricAbyssJewelSmallGrantChaosDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage", statOrder = { 7251 }, level = 1, group = "HistoricAbyssJewelSmallGrantChaosDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [2601021356] = { "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage" }, } }, + ["HistoricAbyssJewelSmallGrantMinionDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage", statOrder = { 7257 }, level = 1, group = "HistoricAbyssJewelSmallGrantMinionDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [3343033032] = { "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage" }, } }, + ["HistoricAbyssJewelSmallGrantStunThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold", statOrder = { 7260 }, level = 1, group = "HistoricAbyssJewelSmallGrantStunThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [2475870935] = { "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold" }, } }, + ["HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold", statOrder = { 7248 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [1283490138] = { "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold" }, } }, + ["UniqueHeartPrefixDamageGainedAsFire"] = { affix = "", "Gain (9-15)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (9-15)% of Damage as Extra Fire Damage" }, } }, + ["UniqueHeartPrefixDamageGainedAsCold"] = { affix = "", "Gain (7-13)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (7-13)% of Damage as Extra Chaos Damage" }, } }, + ["UniqueHeartPrefixDamageGainedAsLightning"] = { affix = "", "Gain (9-15)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (9-15)% of Damage as Extra Cold Damage" }, } }, + ["UniqueHeartPrefixDamageGainedAsChaos"] = { affix = "", "Gain (9-15)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (9-15)% of Damage as Extra Lightning Damage" }, } }, + ["UniqueHeartPrefixMinionReviveSpeed"] = { affix = "", "Minions Revive (5-10)% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-10)% faster" }, } }, + ["UniqueHeartPrefixIncreasedSkillSpeed"] = { affix = "", "(4-8)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "speed" }, tradeHashes = { [970213192] = { "(4-8)% increased Skill Speed" }, } }, + ["UniqueHeartPrefixManaCostEfficiency"] = { affix = "", "(8-16)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4101445926] = { "(8-16)% increased Mana Cost Efficiency" }, } }, + ["UniqueHeartPrefixGlobalCooldownRecovery"] = { affix = "", "(10-18)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1004011302] = { "(10-18)% increased Cooldown Recovery Rate" }, } }, + ["UniqueHeartPrefixChanceToPierce"] = { affix = "", "(30-50)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2321178454] = { "(30-50)% chance to Pierce an Enemy" }, } }, + ["UniqueHeartPrefixSkillEffectDuration"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, + ["UniqueHeartPrefixMinionLifeGainAsEnergyShield"] = { affix = "", "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 8510 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "heart_unique_jewel_prefix", "defences", "minion" }, tradeHashes = { [943702197] = { "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield" }, } }, + ["UniqueHeartPrefixMinionLifeRegeneration"] = { affix = "", "Minions Regenerate (1-3)% of maximum Life per second", statOrder = { 2557 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1-3)% of maximum Life per second" }, } }, + ["UniqueHeartPrefixDamageWhileInPresenceOfCompanion"] = { affix = "", "(15-25)% increased Damage while your Companion is in your Presence", statOrder = { 5566 }, level = 1, group = "DamageWhileInPresenceOfCompanion", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHashes = { [693180608] = { "(15-25)% increased Damage while your Companion is in your Presence" }, } }, + ["UniqueHeartPrefixAggravateBleedOnAttackHitChance"] = { affix = "", "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4121 }, level = 1, group = "AggravateBleedOnAttackHitChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2705185939] = { "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["UniqueHeartPrefixLuckyLightningDamageChancePercent"] = { affix = "", "(15-25)% chance for Lightning Damage with Hits to be Lucky", statOrder = { 5029 }, level = 1, group = "LuckyLightningDamageChancePercent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "lightning" }, tradeHashes = { [2466011626] = { "(15-25)% chance for Lightning Damage with Hits to be Lucky" }, } }, + ["UniqueHeartPrefixRecoverLifeOnKillingPoisonedEnemy"] = { affix = "", "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9115 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemy", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [1781372024] = { "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy" }, } }, + ["UniqueHeartPrefixPercentOfLeechIsInstant"] = { affix = "", "(8-15)% of Leech is Instant", statOrder = { 6962 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, + ["UniqueHeartPrefixEvasionRatingFromBodyArmour"] = { affix = "", "(40-60)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4810 }, level = 1, group = "EvasionRatingFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHashes = { [3509362078] = { "(40-60)% increased Evasion Rating from Equipped Body Armour" }, } }, + ["UniqueHeartPrefixBodyArmourFromBodyArmour"] = { affix = "", "(40-60)% increased Armour from Equipped Body Armour", statOrder = { 4809 }, level = 1, group = "BodyArmourFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHashes = { [1015576579] = { "(40-60)% increased Armour from Equipped Body Armour" }, } }, + ["UniqueHeartPrefixMaximumEnergyShieldFromBodyArmour"] = { affix = "", "(40-60)% increased Energy Shield from Equipped Body Armour", statOrder = { 8313 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHashes = { [1195319608] = { "(40-60)% increased Energy Shield from Equipped Body Armour" }, } }, + ["UniqueHeartPrefixTriggersRefundEnergySpent"] = { affix = "", "(6-12)% chance for Trigger skills to refund half of Energy Spent", statOrder = { 9709 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [599320227] = { "(6-12)% chance for Trigger skills to refund half of Energy Spent" }, } }, + ["UniqueHeartPrefixManaRegenerationRateWhileMoving"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 7532 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, + ["UniqueHeartPrefixCullingStrikeThreshold"] = { affix = "", "(15-25)% increased Culling Strike Threshold", statOrder = { 5520 }, level = 1, group = "CullingStrikeThreshold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3563080185] = { "(15-25)% increased Culling Strike Threshold" }, } }, + ["UniqueHeartPrefixPhysicalDamagePreventedRecoup"] = { affix = "", "(5-10)% of Physical Damage prevented Recouped as Life", statOrder = { 8867 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "physical" }, tradeHashes = { [1374654984] = { "(5-10)% of Physical Damage prevented Recouped as Life" }, } }, + ["UniqueHeartPrefixMaximumElementalResistance"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, + ["UniqueHeartPrefixIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 6792 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, + ["UniqueHeartPrefixRecoupSpeed"] = { affix = "", "(8-14)% increased speed of Recoup Effects", statOrder = { 9084 }, level = 1, group = "RecoupSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2363593824] = { "(8-14)% increased speed of Recoup Effects" }, } }, + ["UniqueHeartPrefixFlaskLifeRegenForXSeconds"] = { affix = "", "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", statOrder = { 7049 }, level = 1, group = "FlaskLifeRegenForXSeconds", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [3161573445] = { "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds" }, } }, + ["UniqueHeartPrefixCharmRecoverManaOnUse"] = { affix = "", "Recover (5-10)% of maximum Mana when a Charm is used", statOrder = { 9117 }, level = 1, group = "CharmRecoverManaOnUse", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4121454694] = { "Recover (5-10)% of maximum Mana when a Charm is used" }, } }, + ["UniqueHeartPrefixCharmChanceToUseOtherCharm"] = { affix = "", "(10-15)% chance when a Charm is used to use another Charm without consuming Charges", statOrder = { 5255 }, level = 1, group = "CharmChanceToUseOtherCharm", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1949851472] = { "(10-15)% chance when a Charm is used to use another Charm without consuming Charges" }, } }, + ["UniqueHeartPrefixCharmEffect"] = { affix = "", "Charms applied to you have (15-25)% increased Effect", statOrder = { 5234 }, level = 1, group = "CharmEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3480095574] = { "Charms applied to you have (15-25)% increased Effect" }, } }, + ["UniqueHeartPrefixThornsCriticalStrikeChance"] = { affix = "", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4616 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, + ["UniqueHeartPrefixThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour", statOrder = { 4526 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHashes = { [1793740180] = { "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour" }, } }, + ["UniqueHeartPrefixAttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { affix = "", "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence", statOrder = { 4434 }, level = 1, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "attack", "speed" }, tradeHashes = { [314741699] = { "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence" }, } }, + ["UniqueHeartPrefixElementalExposureEffect"] = { affix = "", "(15-25)% increased Exposure Effect", statOrder = { 6106 }, level = 1, group = "ElementalExposureEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2074866941] = { "(15-25)% increased Exposure Effect" }, } }, + ["UniqueHeartSuffixMaximumFireResist"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, + ["UniqueHeartSuffixMaximumColdResist"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["UniqueHeartSuffixMaximumLightningResist"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, + ["UniqueHeartSuffixSkillEffectDuration"] = { affix = "", "(3-8)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3377888098] = { "(3-8)% increased Skill Effect Duration" }, } }, + ["UniqueHeartSuffixLifeRegenerationRate"] = { affix = "", "(6-12)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [44972811] = { "(6-12)% increased Life Regeneration rate" }, } }, + ["UniqueHeartSuffixStunDamageIncrease"] = { affix = "", "(6-12)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [239367161] = { "(6-12)% increased Stun Buildup" }, } }, + ["UniqueHeartSuffixIncreasedStunThreshold"] = { affix = "", "(5-10)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [680068163] = { "(5-10)% increased Stun Threshold" }, } }, + ["UniqueHeartSuffixRageOnHit"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "RageOnHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, + ["UniqueHeartSuffixGainRageWhenHit"] = { affix = "", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6433 }, level = 1, group = "GainRageWhenHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3292710273] = { "Gain (1-2) Rage when Hit by an Enemy" }, } }, + ["UniqueHeartSuffixLifeCost"] = { affix = "", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2480498143] = { "(2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["UniqueHeartSuffixAilmentChance"] = { affix = "", "(4-8)% increased chance to inflict Ailments", statOrder = { 4136 }, level = 1, group = "AilmentChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [1772247089] = { "(4-8)% increased chance to inflict Ailments" }, } }, + ["UniqueHeartSuffixIncreasedAilmentThreshold"] = { affix = "", "(6-12)% increased Elemental Ailment Threshold", statOrder = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3544800472] = { "(6-12)% increased Elemental Ailment Threshold" }, } }, + ["UniqueHeartSuffixIncreasedAttackSpeed"] = { affix = "", "(2-3)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack", "speed" }, tradeHashes = { [681332047] = { "(2-3)% increased Attack Speed" }, } }, + ["UniqueHeartSuffixGlobalCooldownRecovery"] = { affix = "", "(2-3)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1004011302] = { "(2-3)% increased Cooldown Recovery Rate" }, } }, + ["UniqueHeartSuffixDebuffTimePassed"] = { affix = "", "Debuffs on you expire (4-8)% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1238227257] = { "Debuffs on you expire (4-8)% faster" }, } }, + ["UniqueHeartSuffixFasterAilmentDamageForJewel"] = { affix = "", "Damaging Ailments deal damage (2-4)% faster", statOrder = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (2-4)% faster" }, } }, + ["UniqueHeartSuffixMovementVelocity"] = { affix = "", "(1-2)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "speed" }, tradeHashes = { [2250533757] = { "(1-2)% increased Movement Speed" }, } }, + ["UniqueHeartSuffixSlowPotency"] = { affix = "", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, + ["UniqueHeartSuffixIncreasedFlaskChargesGained"] = { affix = "", "(4-8)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1836676211] = { "(4-8)% increased Flask Charges gained" }, } }, + ["UniqueHeartSuffixFlaskDuration"] = { affix = "", "(4-8)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "FlaskDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3741323227] = { "(4-8)% increased Flask Effect Duration" }, } }, + ["UniqueHeartSuffixBaseChanceToPoison"] = { affix = "", "(5-10)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, + ["UniqueHeartSuffixBaseChanceToBleed"] = { affix = "", "(5-10)% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "BaseChanceToBleed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [2174054121] = { "(5-10)% chance to inflict Bleeding on Hit" }, } }, + ["UniqueHeartSuffixIncreasedCastSpeedForJewel"] = { affix = "", "(2-3)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-3)% increased Cast Speed" }, } }, + ["UniqueHeartSuffixCritChanceForJewel"] = { affix = "", "(4-8)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CritChanceForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "critical" }, tradeHashes = { [587431675] = { "(4-8)% increased Critical Hit Chance" }, } }, + ["UniqueHeartSuffixCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "critical" }, tradeHashes = { [3556824919] = { "(6-12)% increased Critical Damage Bonus" }, } }, + ["UniqueHeartSuffixSpellCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "unveiled_mod", "heart_unique_jewel_suffix", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(6-12)% increased Critical Spell Damage Bonus" }, } }, + ["UniqueHeartSuffixSpellCriticalStrikeChance"] = { affix = "", "(4-8)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "caster", "critical" }, tradeHashes = { [737908626] = { "(4-8)% increased Critical Hit Chance for Spells" }, } }, + ["UniqueHeartSuffixDamageRemovedFromManaBeforeLife"] = { affix = "", "(2-3)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life", "mana" }, tradeHashes = { [458438597] = { "(2-3)% of Damage is taken from Mana before Life" }, } }, + ["UniqueHeartSuffixMaximumLifeOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of maximum Life on Kill" }, } }, + ["UniqueHeartSuffixManaGainedOnKillPercentage"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHashes = { [1604736568] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, + ["UniqueHeartSuffixLifeRecoupForJewel"] = { affix = "", "(2-3)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, + ["UniqueHeartSuffixManaRegeneration"] = { affix = "", "(4-8)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHashes = { [789117908] = { "(4-8)% increased Mana Regeneration Rate" }, } }, + ["UniqueHeartSuffixMinionPhysicalDamageReduction"] = { affix = "", "Minions have (3-12)% additional Physical Damage Reduction", statOrder = { 1946 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (3-12)% additional Physical Damage Reduction" }, } }, + ["UniqueHeartSuffixMinionAttackSpeedAndCastSpeed"] = { affix = "", "Minions have (2-3)% increased Attack and Cast Speed", statOrder = { 8453 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-3)% increased Attack and Cast Speed" }, } }, + ["UniqueHeartSuffixMinionCriticalStrikeChanceIncrease"] = { affix = "", "Minions have (6-12)% increased Critical Hit Chance", statOrder = { 8476 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (6-12)% increased Critical Hit Chance" }, } }, + ["UniqueHeartSuffixMinionElementalResistance"] = { affix = "", "Minions have +(3-4)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "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 = { 9531 }, 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 = { 4146 }, 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 = { 970 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, 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 = { 977 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, 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 = { 872 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, 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 = { 870 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [160888068] = { "Notable Passive Skills in Radius also grant 1% increased maximum Life" }, } }, + ["AbyssModRadiusJewelPrefixGlobalDefences"] = { type = "Prefix", affix = "Lightless", "(2-3)% increased Global Defences", statOrder = { 2486 }, level = 1, group = "HybridAbyssModRadiusJewelGlobalDefences", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [3488475284] = { "Notable Passive Skills in Radius also grant (2-3)% increased Global Defences" }, } }, + ["AbyssModRadiusJewelPrefixDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenFromManaBeforeLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, 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 = { 1617 }, level = 1, group = "HybridAbyssModRadiusJewelRegeneratePercentLifePerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, 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 = { 4582 }, level = 1, group = "HybridAbyssModRadiusJewelManaCostEfficiency", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, 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 = { 2747 }, level = 1, group = "HybridAbyssModRadiusJewelReducedCriticalHitChanceAgainstYou", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, 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 = { 6452 }, level = 1, group = "HybridAbyssModRadiusJewelManaFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "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 = { 6451 }, level = 1, group = "HybridAbyssModRadiusJewelLifeFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "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 = { 6448 }, level = 1, group = "HybridAbyssModRadiusJewelCharmChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "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 = { 853, 864 }, level = 1, group = "HybridAbyssModJewelSpellDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "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 = { 853, 866 }, level = 1, group = "HybridAbyssModJewelSpellDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences", "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 = { 853, 868 }, level = 1, group = "HybridAbyssModJewelSpellDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences", "caster" }, tradeHashes = { [2974417149] = { "(4-8)% increased Spell Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, + ["AbyssModJewelPrefixAttackDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Attack Damage", statOrder = { 864, 1093 }, level = 1, group = "HybridAbyssModJewelAttackDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, + ["AbyssModJewelPrefixAttackDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Attack Damage", statOrder = { 866, 1093 }, level = 1, group = "HybridAbyssModJewelAttackDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences", "attack" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [2843214518] = { "(4-8)% increased Attack Damage" }, } }, + ["AbyssModJewelPrefixAttackDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Attack Damage", statOrder = { 868, 1093 }, level = 1, group = "HybridAbyssModJewelAttackDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, + ["AbyssModJewelPrefixMinionDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "Minions deal (4-8)% increased Damage", statOrder = { 864, 1646 }, level = 1, group = "HybridAbyssModJewelMinionDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-8)% increased Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, + ["AbyssModJewelPrefixMinionDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "Minions deal (4-8)% increased Damage", statOrder = { 866, 1646 }, level = 1, group = "HybridAbyssModJewelMinionDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences", "minion" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1589917703] = { "Minions deal (4-8)% increased Damage" }, } }, + ["AbyssModJewelPrefixMinionDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "Minions deal (4-8)% increased Damage", statOrder = { 868, 1646 }, level = 1, group = "HybridAbyssModJewelMinionDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-8)% increased Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, + ["AbyssModJewelPrefixThornsDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Thorns damage", statOrder = { 864, 9646 }, level = 1, group = "HybridAbyssModJewelThornsDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, + ["AbyssModJewelPrefixThornsDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Thorns damage", statOrder = { 866, 9646 }, level = 1, group = "HybridAbyssModJewelThornsDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1315743832] = { "(4-8)% increased Thorns damage" }, } }, + ["AbyssModJewelPrefixThornsDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Thorns damage", statOrder = { 868, 9646 }, level = 1, group = "HybridAbyssModJewelThornsDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, + ["AbyssModJewelPrefixTotemDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Totem Damage", statOrder = { 864, 1089 }, level = 1, group = "HybridAbyssModJewelTotemDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences" }, tradeHashes = { [3851254963] = { "(4-8)% increased Totem Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, + ["AbyssModJewelPrefixTotemDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Totem Damage", statOrder = { 866, 1089 }, level = 1, group = "HybridAbyssModJewelTotemDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [3851254963] = { "(4-8)% increased Totem Damage" }, } }, + ["AbyssModJewelPrefixTotemDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Totem Damage", statOrder = { 868, 1089 }, level = 1, group = "HybridAbyssModJewelTotemDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences" }, tradeHashes = { [3851254963] = { "(4-8)% increased Totem Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, + ["AbyssModJewelPrefixFireDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Fire Damage", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 855, 2613 }, level = 1, group = "HybridAbyssModJewelFireDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(4-8)% increased Fire Damage" }, [2653955271] = { "Damage Penetrates (4-7)% Fire Resistance" }, } }, + ["AbyssModJewelPrefixLightningDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Lightning Damage", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 857, 2615 }, level = 1, group = "HybridAbyssModJewelLightningDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (4-7)% Lightning Resistance" }, [2231156303] = { "(4-8)% increased Lightning Damage" }, } }, + ["AbyssModJewelPrefixColdDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Cold Damage", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 856, 2614 }, level = 1, group = "HybridAbyssModJewelColdDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(4-8)% increased Cold Damage" }, [3417711605] = { "Damage Penetrates (4-7)% Cold Resistance" }, } }, + ["AbyssModJewelPrefixBleedChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to inflict Bleeding", "(5-10)% increased Magnitude of Bleeding you inflict", statOrder = { 4660, 4662 }, level = 1, group = "HybridAbyssModJewelBleedChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "bleed", "unveiled_mod", "ailment" }, tradeHashes = { [3166958180] = { "(5-10)% increased Magnitude of Bleeding you inflict" }, [242637938] = { "15% increased chance to inflict Bleeding" }, } }, + ["AbyssModJewelPrefixPoisonChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to Poison", "(5-10)% increased Magnitude of Poison you inflict", statOrder = { 8917, 8925 }, level = 1, group = "HybridAbyssModJewelPoisonChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "poison", "unveiled_mod", "ailment" }, tradeHashes = { [3481083201] = { "15% increased chance to Poison" }, [2487305362] = { "(5-10)% increased Magnitude of Poison you inflict" }, } }, + ["AbyssModJewelPrefixWarcryBuffEffectAndDamage"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Warcry Buff Effect", "(5-10)% increased Damage with Warcries", statOrder = { 9883, 9886 }, level = 1, group = "HybridAbyssModJewelWarcryBuffEffectAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1594812856] = { "(5-10)% increased Damage with Warcries" }, [3037553757] = { "(4-8)% increased Warcry Buff Effect" }, } }, + ["AbyssModJewelPrefixCompanionLifeAndDamage"] = { type = "Prefix", affix = "Lightless", "Companions deal (5-10)% increased Damage", "Companions have (5-10)% increased maximum Life", statOrder = { 5339, 5342 }, level = 1, group = "HybridAbyssModJewelCompanionLifeAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [1805182458] = { "Companions have (5-10)% increased maximum Life" }, [234296660] = { "Companions deal (5-10)% increased Damage" }, } }, + ["AbyssModJewelPrefixGlobalPhysicalDamageArmourBreak"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Global Physical Damage", "Break (4-8)% increased Armour", statOrder = { 1122, 4283 }, level = 1, group = "HybridAbyssModJewelGlobalPhysicalDamageArmourBreak", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "physical" }, tradeHashes = { [1776411443] = { "Break (4-8)% increased Armour" }, [1310194496] = { "(4-8)% increased Global Physical Damage" }, } }, + ["AbyssModJewelPrefixElementalDamageAilmentMagnitude"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Elemental Damage", "(4-8)% increased Magnitude of Ailments you inflict", statOrder = { 1651, 4140 }, level = 1, group = "HybridAbyssModJewelElementalDamageAilmentMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "ailment" }, tradeHashes = { [1303248024] = { "(4-8)% increased Magnitude of Ailments you inflict" }, [3141070085] = { "(4-8)% increased Elemental Damage" }, } }, + ["AbyssModJewelPrefixChaosDamageWitherEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Chaos Damage", "(3-6)% increased Withered Magnitude", statOrder = { 858, 9915 }, level = 1, group = "HybridAbyssModJewelChaosDamageWitherEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "chaos" }, tradeHashes = { [736967255] = { "(4-8)% increased Chaos Damage" }, [3973629633] = { "(3-6)% increased Withered Magnitude" }, } }, + ["AbyssModJewelPrefixMinionAreaAndLife"] = { type = "Prefix", affix = "Lightless", "Minions have (4-8)% increased maximum Life", statOrder = { 962 }, level = 1, group = "HybridAbyssModJewelMinionAreaAndLife", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [770672621] = { "Minions have (4-8)% increased maximum Life" }, } }, + ["AbyssModJewelPrefixAuraSkillEffectPresenceAreaOfEffect"] = { type = "Prefix", affix = "Lightless", "(8-15)% increased Presence Area of Effect", "Aura Skills have (2-4)% increased Magnitudes", statOrder = { 1002, 2472 }, level = 1, group = "HybridAbyssModJewelAuraSkillEffectPresenceAreaOfEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "aura" }, tradeHashes = { [101878827] = { "(8-15)% increased Presence Area of Effect" }, [315791320] = { "Aura Skills have (2-4)% increased Magnitudes" }, } }, + ["AbyssModJewelPrefixElementalExposureEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Exposure Effect", statOrder = { 6106 }, level = 1, group = "HybridAbyssModJewelElementalExposureEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental" }, tradeHashes = { [2074866941] = { "(4-8)% increased Exposure Effect" }, } }, + ["AbyssModJewelPrefixAbyssalWastingEffect"] = { type = "Prefix", affix = "Lightless", "(10-20)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4004 }, level = 1, group = "HybridAbyssModJewelAbyssalWastingEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [4043376133] = { "(10-20)% increased Magnitude of Abyssal Wasting you inflict" }, } }, + ["AbyssModJewelSuffixIncreasedStrength"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Strength", statOrder = { 1080 }, level = 1, group = "HybridAbyssModJewelIncreasedStrength", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [734614379] = { "(1-2)% increased Strength" }, } }, + ["AbyssModJewelSuffixIncreasedDexterity"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "HybridAbyssModJewelIncreasedDexterity", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [4139681126] = { "(1-2)% increased Dexterity" }, } }, + ["AbyssModJewelSuffixIncreasedIntelligence"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "HybridAbyssModJewelIncreasedIntelligence", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [656461285] = { "(1-2)% increased Intelligence" }, } }, + ["AbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(13-17)% to Lightning and Chaos Resistances", statOrder = { 7070 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(13-17)% to Lightning and Chaos Resistances" }, } }, + ["AbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "+(9-15) to Strength and Dexterity", statOrder = { 1075 }, level = 65, group = "StrengthAndDexterity", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "attribute" }, tradeHashes = { [538848803] = { "+(9-15) to Strength and Dexterity" }, } }, + ["AbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(13-17)% to Fire and Chaos Resistances", statOrder = { 6127 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(13-17)% to Fire and Chaos Resistances" }, } }, + ["AbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "+(9-15) to Strength and Intelligence", statOrder = { 1076 }, level = 65, group = "StrengthAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attribute" }, tradeHashes = { [1535626285] = { "+(9-15) to Strength and Intelligence" }, } }, + ["AbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(13-17)% to Cold and Chaos Resistances", statOrder = { 5294 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(13-17)% to Cold and Chaos Resistances" }, } }, + ["AbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "+(9-15) to Dexterity and Intelligence", statOrder = { 1077 }, level = 65, group = "DexterityAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attribute" }, tradeHashes = { [2300185227] = { "+(9-15) to Dexterity and Intelligence" }, } }, + ["AbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 65, group = "ManaCostEfficiency", weightKey = { "helmet", "gloves", "focus", "quiver", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [4101445926] = { "(6-10)% increased Mana Cost Efficiency" }, } }, + ["AbyssModHelmUlamanSuffixMarkedEnemyTakeIncreasedDamage"] = { type = "Suffix", affix = "of Ulaman", "Enemies you Mark take (4-8)% increased Damage", statOrder = { 8281 }, level = 65, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2083058281] = { "Enemies you Mark take (4-8)% increased Damage" }, } }, + ["AbyssModHelmUlamanSuffixCriticalHitDamage"] = { type = "Suffix", affix = "of Ulaman", "(13-20)% increased Critical Damage Bonus", statOrder = { 937 }, level = 65, group = "CriticalStrikeMultiplier", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "(13-20)% increased Critical Damage Bonus" }, } }, + ["AbyssModHelmUlamanSuffixLifeCostEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Life Cost Efficiency", statOrder = { 4572 }, level = 65, group = "LifeCostEfficiency", weightKey = { "helmet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [310945763] = { "(8-12)% increased Life Cost Efficiency" }, } }, + ["AbyssModHelmAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(4-8)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(4-8)% increased Spirit Reservation Efficiency of Skills" }, } }, + ["AbyssModHelmAmanamuSuffixGloryGeneration"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Glory generation", statOrder = { 6473 }, level = 65, group = "GloryGeneration", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3143918757] = { "(10-20)% increased Glory generation" }, } }, + ["AbyssModHelmAmanamuSuffixPresenceAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Presence Area of Effect", statOrder = { 1002 }, level = 65, group = "PresenceRadius", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [101878827] = { "(25-35)% increased Presence Area of Effect" }, } }, + ["AbyssModHelmKurgalSuffixArcaneSurgeEffect"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% increased effect of Arcane Surge on you", statOrder = { 2891 }, level = 65, group = "ArcaneSurgeEffect", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "helmet", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2103650854] = { "(20-30)% increased effect of Arcane Surge on you" }, } }, + ["AbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Magnitude of Ailments you inflict", statOrder = { 4140 }, level = 65, group = "AilmentEffect", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "ailment" }, tradeHashes = { [1303248024] = { "(10-20)% increased Magnitude of Ailments you inflict" }, } }, + ["AbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to Poison", statOrder = { 8917 }, level = 65, group = "PoisonChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3481083201] = { "(20-30)% increased chance to Poison" }, } }, + ["AbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to inflict Bleeding", statOrder = { 4660 }, level = 65, group = "BleedChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [242637938] = { "(20-30)% increased chance to inflict Bleeding" }, } }, + ["AbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5175 }, level = 65, group = "IncisionChance", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "ulaman_mod", "damage", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, + ["AbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently", statOrder = { 9316 }, level = 65, group = "SkillSpeedIfConsumedFrenzyChargeRecently", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3313255158] = { "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently" }, } }, + ["AbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 65, group = "CurseAreaOfEffect", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [153777645] = { "(12-20)% increased Area of Effect of Curses" }, } }, + ["AbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% chance to Daze on Hit", statOrder = { 4530 }, level = 65, group = "DazeBuildup", weightKey = { "gloves", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3146310524] = { "(10-20)% chance to Daze on Hit" }, } }, + ["AbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "(8-15)% of Leech is Instant", statOrder = { 6962 }, level = 65, group = "PercentOfLeechIsInstant", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, + ["AbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Immobilisation buildup", statOrder = { 6748 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [330530785] = { "(10-20)% increased Immobilisation buildup" }, } }, + ["AbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit", statOrder = { 6320 }, level = 65, group = "GainArcaneSurgeOnCrit", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [446027070] = { "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit" }, } }, + ["AbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cast Speed when on Full Life", statOrder = { 1667 }, level = 65, group = "CastSpeedOnFullLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster", "speed" }, tradeHashes = { [656291658] = { "(8-15)% increased Cast Speed when on Full Life" }, } }, + ["AbyssModBootsAndBeltUlamanSuffixReducedPoisonDurationSelf"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% reduced Poison Duration on you", statOrder = { 1000 }, level = 65, group = "ReducedPoisonDuration", weightKey = { "boots", "belt", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "poison", "unveiled_mod", "ulaman_mod", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(20-30)% reduced Poison Duration on you" }, } }, + ["AbyssModBootsAndBeltAmanamuSuffixReducedIgniteDuration"] = { type = "Suffix", affix = "of Amanamu", "(20-30)% reduced Ignite Duration on you", statOrder = { 996 }, level = 65, group = "ReducedIgniteDurationOnSelf", weightKey = { "boots", "belt", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(20-30)% reduced Ignite Duration on you" }, } }, + ["AbyssModBootsAndBeltKurgalSuffixReducedBleedDurationSelf"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 65, group = "ReducedBleedDuration", weightKey = { "boots", "belt", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "kurgal_mod", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(20-30)% reduced Duration of Bleeding on You" }, } }, + ["AbyssModBootsUlamanSuffixCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Ulaman", "Corrupted Blood cannot be inflicted on you", statOrder = { 4906 }, level = 65, group = "CorruptedBloodImmunity", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["AbyssModBootsUlamanSuffixReducedMovementPenaltyWhileSkilling"] = { type = "Suffix", affix = "of Ulaman", "(6-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 8594 }, level = 65, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [2590797182] = { "(6-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, + ["AbyssModBootsAmanamuSuffixReducedPotencyOfSlows"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 65, group = "SlowPotency", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [924253255] = { "(12-20)% reduced Slowing Potency of Debuffs on You" }, } }, + ["AbyssModBootsAmanamuSuffixDodgeRollDistance"] = { type = "Suffix", affix = "of Amanamu", "+(0.1-0.2) metres to Dodge Roll distance", statOrder = { 5801 }, level = 65, group = "DodgeRollDistance", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [258119672] = { "+(0.1-0.2) metres to Dodge Roll distance" }, } }, + ["AbyssModBootsKurgalSuffixManaCostEfficiencyDodgeRolledRecently"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently", statOrder = { 7482 }, level = 65, group = "ManaCostEfficiencyIfDodgeRolledRecently", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3396435291] = { "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently" }, } }, + ["AbyssModBootsKurgalSuffixManaRegenerationStationary"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Mana Regeneration Rate while stationary", statOrder = { 3883 }, level = 65, group = "ManaRegenerationWhileStationary", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3308030688] = { "(40-50)% increased Mana Regeneration Rate while stationary" }, } }, + ["AbyssModBeltUlamanPrefixLifeFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Ulaman's", "Life Flasks gain (0.1-0.2) charges per Second", statOrder = { 6451 }, level = 65, group = "LifeFlaskChargeGeneration", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.1-0.2) charges per Second" }, } }, + ["AbyssModBeltUlamanPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Ulaman's", "(10-18)% chance for Flasks you use to not consume Charges", statOrder = { 3782 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [311641062] = { "(10-18)% chance for Flasks you use to not consume Charges" }, } }, + ["AbyssModBeltUlamanPrefixLifeRegenRateDuringLifeFlaskEffect"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Life Regeneration rate during Effect of any Life Flask", statOrder = { 7039 }, level = 65, group = "LifeRegenerationRateDuringFlaskEffect", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "life_flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1261076060] = { "(20-30)% increased Life Regeneration rate during Effect of any Life Flask" }, } }, + ["AbyssModBeltUlamanSuffixReducedSlowPotencySelfIfCharmedRecently"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", statOrder = { 9337 }, level = 65, group = "SlowEffectIfCharmedRecently", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3839676903] = { "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently" }, } }, + ["AbyssModBeltAmanamuPrefixCharmsGainChargesPerSecond"] = { type = "Prefix", affix = "Amanamu's", "Charms gain (0.1-0.2) charges per Second", statOrder = { 6448 }, level = 65, group = "CharmChargeGeneration", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.1-0.2) charges per Second" }, } }, + ["AbyssModBeltAmanamuPrefixGainFireThornsPer100MaximumLife"] = { type = "Prefix", affix = "Amanamu's", "2 to 4 Fire Thorns damage per 100 maximum Life", statOrder = { 9648 }, level = 65, group = "ThornsFirePerOneHundredLife", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire" }, tradeHashes = { [287294012] = { "2 to 4 Fire Thorns damage per 100 maximum Life" }, } }, + ["AbyssModBeltAmanamuPrefixChanceToNotConsumeCharmCharges"] = { type = "Prefix", affix = "Amanamu's", "(10-18)% chance for Charms you use to not consume Charges", statOrder = { 5256 }, level = 65, group = "CharmChanceToNotConsumeCharges", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [501873429] = { "(10-18)% chance for Charms you use to not consume Charges" }, } }, + ["AbyssModBeltAmanamuSuffixThornsBaseCriticalStrikeChance"] = { type = "Suffix", affix = "of Amanamu", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4616 }, level = 65, group = "ThornsCriticalStrikeChance", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, + ["AbyssModBeltKurgalPrefixManaFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Kurgal's", "Mana Flasks gain (0.1-0.2) charges per Second", statOrder = { 6452 }, level = 65, group = "ManaFlaskChargeGeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.2) charges per Second" }, } }, + ["AbyssModBeltKurgalPrefixGainArmourPercentOfMana"] = { type = "Prefix", affix = "Kurgal's", "Gain (6-12)% of Maximum Mana as Armour", statOrder = { 7481 }, level = 65, group = "GainPercentManaAsArmour", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "armour", "resource", "unveiled_mod", "kurgal_mod", "mana", "defences" }, tradeHashes = { [514290151] = { "Gain (6-12)% of Maximum Mana as Armour" }, } }, + ["AbyssModBeltKurgalPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Kurgal's", "(10-15)% chance for Flasks you use to not consume Charges", statOrder = { 3782 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "kurgal_mod" }, tradeHashes = { [311641062] = { "(10-15)% chance for Flasks you use to not consume Charges" }, } }, + ["AbyssModBeltKurgalSuffixManaRegenerationRate"] = { type = "Suffix", affix = "of Kurgal", "(30-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 65, group = "ManaRegeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, + ["AbyssModBodyShieldUlamanSuffixHitsAgainstYouReducedCriticalDamage"] = { type = "Suffix", affix = "of Ulaman", "Hits have (17-25)% reduced Critical Hit Chance against you", statOrder = { 2747 }, level = 65, group = "ChanceToTakeCriticalStrikeUpdated", weightKey = { "body_armour", "shield", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "critical" }, tradeHashes = { [4270096386] = { "Hits have (17-25)% reduced Critical Hit Chance against you" }, } }, + ["AbyssModBodyShieldAmanamuSuffixLifeRecoup"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 65, group = "DamageTakenGainedAsLife", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, + ["AbyssModBodyShieldAmanamuSuffixReducedCursedEffectSelf"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% reduced effect of Curses on you", statOrder = { 1835 }, level = 65, group = "ReducedCurseEffect", weightKey = { "body_armour", "shield", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(25-35)% reduced effect of Curses on you" }, } }, + ["AbyssModBodyShieldKurgalSuffixManaRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 65, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "shield", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, + ["AbyssModBodyShieldKurgalSuffixElementalEnergyShieldRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Elemental Damage taken Recouped as Energy Shield", statOrder = { 9080 }, level = 65, group = "ElementalDamageTakenGoesToEnergyShield", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2896115339] = { "(10-20)% of Elemental Damage taken Recouped as Energy Shield" }, } }, + ["AbyssModBodyShieldKurgalSuffixArmourAppliesToChaosDamage"] = { type = "Suffix", affix = "of Kurgal", "+(23-31)% of Armour also applies to Chaos Damage", statOrder = { 4511 }, level = 65, group = "ArmourPercentAppliesToChaosDamage", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3972229254] = { "+(23-31)% of Armour also applies to Chaos Damage" }, } }, + ["AbyssModBodyArmourUlamanSuffixDeflectDamagePrevented"] = { type = "Suffix", affix = "of Ulaman", "Prevent +(3-5)% of Damage from Deflected Hits", statOrder = { 4541 }, level = 65, group = "DeflectDamageTaken", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3552135623] = { "Prevent +(3-5)% of Damage from Deflected Hits" }, } }, + ["AbyssModBodyArmourUlamanSuffixCompanionReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(12-18)% increased Reservation Efficiency of Companion Skills", statOrder = { 9178 }, level = 65, group = "CompanionReservationEfficiency", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3413635271] = { "(12-18)% increased Reservation Efficiency of Companion Skills" }, } }, + ["AbyssModBodyArmourAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(6-12)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "body_armour", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(6-12)% increased Spirit Reservation Efficiency of Skills" }, } }, + ["AbyssModBodyArmourKurgalSuffixDamageTakenFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "body_armour", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, + ["AbyssModShieldUlamanSuffixMaximumBlockChance"] = { type = "Suffix", affix = "of Ulaman", "+(1-2)% to maximum Block chance", statOrder = { 1659 }, level = 65, group = "MaximumBlockChance", weightKey = { "shield", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [480796730] = { "+(1-2)% to maximum Block chance" }, } }, + ["AbyssModShieldUlamanSuffixParryDebuffMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased Parried Debuff Magnitude", statOrder = { 8794 }, level = 65, group = "ParryDebuffMagnitude", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [818877178] = { "(20-30)% increased Parried Debuff Magnitude" }, } }, + ["AbyssModShieldUlamanSuffixParryDebuffDuration"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% increased Parried Debuff Duration", statOrder = { 8808 }, level = 65, group = "ParryDuration", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3401186585] = { "(25-35)% increased Parried Debuff Duration" }, } }, + ["AbyssModShieldUlamanSuffixLightningTakenAsPhysAndGlancingWhileActiveBlocking"] = { type = "Suffix", affix = "of Ulaman", "You take (8-15)% of damage from Blocked Hits with a raised Shield", "(30-40)% of Physical Damage taken as Lightning while your Shield is raised", statOrder = { 4795, 8898 }, level = 65, group = "PhysicalTakenAsLightningAndGlancingWhilActiveBlocking", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod", "physical", "elemental", "lightning" }, tradeHashes = { [321970274] = { "(30-40)% of Physical Damage taken as Lightning while your Shield is raised" }, [3694078435] = { "You take (8-15)% of damage from Blocked Hits with a raised Shield" }, } }, + ["AbyssModShieldAmanamuSuffixShieldSkillsFullyBreakArmourOnHeavyStun"] = { type = "Suffix", affix = "of Amanamu", "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", statOrder = { 6275 }, level = 65, group = "StunningHitsWithShieldSkillsFullyBreakArmour", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1689748350] = { "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour" }, } }, + ["AbyssModShieldAmanamuSuffixHeavyStunDecaySelf"] = { type = "Suffix", affix = "of Amanamu", "Your Heavy Stun buildup empties (30-40)% faster", statOrder = { 6543 }, level = 65, group = "HeavyStunDecayRate", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [886088880] = { "Your Heavy Stun buildup empties (30-40)% faster" }, } }, + ["AbyssModShieldAmanamuSuffixAllMaximumResistances"] = { type = "Suffix", affix = "of Amanamu", "+1% to all maximum Resistances", statOrder = { 1420 }, level = 65, group = "MaximumResistances", weightKey = { "shield", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, + ["AbyssModShieldKurgalSuffixFlatManaGainedOnBlock"] = { type = "Suffix", affix = "of Kurgal", "(6-12) Mana gained when you Block", statOrder = { 1446 }, level = 65, group = "GainManaOnBlock", weightKey = { "shield", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2122183138] = { "(6-12) Mana gained when you Block" }, } }, + ["AbyssModShieldKurgalSuffixEnergyShieldRechargeRateBlockedRecently"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently", statOrder = { 6020 }, level = 65, group = "EnergyShieldRechargeBlockedRecently", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "energy_shield", "block", "unveiled_mod", "kurgal_mod", "defences" }, tradeHashes = { [1079292660] = { "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently" }, } }, + ["AbyssModFocusUlamanPrefixMaximumSpellTotems"] = { type = "Prefix", affix = "Ulaman's", "Spell Skills have +1 to maximum number of Summoned Totems", statOrder = { 9427 }, level = 65, group = "AdditionalSpellTotem", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2474424958] = { "Spell Skills have +1 to maximum number of Summoned Totems" }, } }, + ["AbyssModFocusUlamanPrefixSpellDamageWhileWieldingMeleeWeapon"] = { type = "Prefix", affix = "Ulaman's", "(61-79)% increased Spell Damage while wielding a Melee Weapon", statOrder = { 9406 }, level = 65, group = "SpellDamageIfWieldingMeleeWeapon", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [4136346606] = { "(61-79)% increased Spell Damage while wielding a Melee Weapon" }, } }, + ["AbyssModFocusUlamanSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(10-20)% of Spell Mana Cost Converted to Life Cost" }, } }, + ["AbyssModFocusUlamanSuffixChanceForTwoAdditionalSpellProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(10-16)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(10-16)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["AbyssModFocusAmanamuPrefixCurseMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(8-16)% increased Curse Magnitudes", statOrder = { 2266 }, level = 65, group = "CurseEffectiveness", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-16)% increased Curse Magnitudes" }, } }, + ["AbyssModFocusAmanamuPrefixOfferingBuffEffect"] = { type = "Prefix", affix = "Amanamu's", "Offering Skills have (12-20)% increased Buff effect", statOrder = { 3620 }, level = 65, group = "OfferingEffect", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3191479793] = { "Offering Skills have (12-20)% increased Buff effect" }, } }, + ["AbyssModFocusAmanamuSuffixGlobalMinionSkillLevels"] = { type = "Suffix", affix = "of Amanamu", "+(1-2) to Level of all Minion Skills", statOrder = { 931 }, level = 65, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, + ["AbyssModFocusAmanamuSuffixFasterCurseActivation"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% faster Curse Activation", statOrder = { 5530 }, level = 65, group = "CurseDelay", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, + ["AbyssModFocusKurgalPrefixInvocationSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (61-79)% increased Damage", statOrder = { 6927 }, level = 65, group = "InvocationSpellDamage", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (61-79)% increased Damage" }, } }, + ["AbyssModFocusKurgalPrefixSpellAreaOfEffect"] = { type = "Prefix", affix = "Kurgal's", "Spell Skills have (10-20)% increased Area of Effect", statOrder = { 9390 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-20)% increased Area of Effect" }, } }, + ["AbyssModFocusKurgalSuffixChanceForAdditionalInfusion"] = { type = "Suffix", affix = "of Kurgal", "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type", statOrder = { 4077, 4077.1 }, level = 65, group = "ChanceToGainAdditionalInfusion", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3927679277] = { "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type" }, } }, + ["AbyssModQuiverUlamanPrefixIncreasesToProjectileSpeedApplyToDamage"] = { type = "Prefix", affix = "Ulaman's", "Increases and Reductions to Projectile Speed also apply to Damage with Bows", statOrder = { 4312 }, level = 65, group = "IncreasesToProjectileDamageApplyToBowDamage", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [414821772] = { "Increases and Reductions to Projectile Speed also apply to Damage with Bows" }, } }, + ["AbyssModQuiverUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving", statOrder = { 8968 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving" }, } }, + ["AbyssModQuiverUlamanSuffixAttackCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-14)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 65, group = "LifeCost", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(10-14)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["AbyssModQuiverAmanamuPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Amanamu's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m", statOrder = { 8975 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m" }, } }, + ["AbyssModQuiverAmanamuSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Amanamu", "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5423 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m" }, } }, + ["AbyssModQuiverKurgalPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m", statOrder = { 8974 }, level = 65, group = "ProjectileDamageFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m" }, } }, + ["AbyssModQuiverKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5436 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m" }, } }, + ["AbyssModRingAmuletUlamanPrefixAttackDamageWhileLowLife"] = { type = "Prefix", affix = "Ulaman's", "(15-25)% increased Attack Damage while on Low Life", statOrder = { 4397 }, level = 65, group = "AttackDamageOnLowLife", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [4246007234] = { "(15-25)% increased Attack Damage while on Low Life" }, } }, + ["AbyssModRingAmuletUlamanSuffixSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(3-6)% increased Skill Speed", statOrder = { 828 }, level = 65, group = "IncreasedSkillSpeed", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [970213192] = { "(3-6)% increased Skill Speed" }, } }, + ["AbyssModRingAmuletUlamanSuffixRecoverPercentMaxLifeOnKill"] = { type = "Suffix", affix = "of Ulaman", "Recover (2-3)% of maximum Life on Kill", statOrder = { 1437 }, level = 65, group = "RecoverPercentMaxLifeOnKill", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (2-3)% of maximum Life on Kill" }, } }, + ["AbyssModRingAmuletAmanamuPrefixRemnantEffect"] = { type = "Prefix", affix = "Amanamu's", "Remnants have (8-15)% increased effect", statOrder = { 9151 }, level = 65, group = "RemnantEffect", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1999910726] = { "Remnants have (8-15)% increased effect" }, } }, + ["AbyssModRingAmuletAmanamuPrefixMinionDamageIfYou'veHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (15-25)% increased Damage if you've Hit Recently", statOrder = { 8484 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (15-25)% increased Damage if you've Hit Recently" }, } }, + ["AbyssModRingAmuletAmanamuSuffixSkillEffectDuration"] = { type = "Suffix", affix = "of Amanamu", "(8-12)% increased Skill Effect Duration", statOrder = { 1572 }, level = 65, group = "SkillEffectDuration", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3377888098] = { "(8-12)% increased Skill Effect Duration" }, } }, + ["AbyssModRingAmuletAmanamuSuffixRemnantCollectionRange"] = { type = "Suffix", affix = "of Amanamu", "Remnants can be collected from (20-30)% further away", statOrder = { 9153 }, level = 65, group = "RemnantPickupRadiusIncrease", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-30)% further away" }, } }, + ["AbyssModRingAmuletKurgalPrefixSpellDamageWhileEnergyShieldFull"] = { type = "Prefix", affix = "Kurgal's", "(15-25)% increased Spell Damage while on Full Energy Shield", statOrder = { 2700 }, level = 65, group = "IncreasedSpellDamageOnFullEnergyShield", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "caster_damage", "unveiled_mod", "kurgal_mod", "damage", "caster" }, tradeHashes = { [3176481473] = { "(15-25)% increased Spell Damage while on Full Energy Shield" }, } }, + ["AbyssModRingAmuletKurgalSuffixExposureEffect"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% increased Exposure Effect", statOrder = { 6106 }, level = 65, group = "ElementalExposureEffect", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2074866941] = { "(10-15)% increased Exposure Effect" }, } }, + ["AbyssModRingAmuletKurgalSuffixCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 65, group = "GlobalCooldownRecovery", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, + ["AbyssModRingAmuletKurgalSuffixRecoverPercentMaxManaOnKill"] = { type = "Suffix", affix = "of Kurgal", "Recover (2-3)% of maximum Mana on Kill", statOrder = { 1443 }, level = 65, group = "ManaGainedOnKillPercentage", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [1604736568] = { "Recover (2-3)% of maximum Mana on Kill" }, } }, + ["AbyssModRingUlamanPrefixShockMagnitudeIfConsumedFrenzyCharge"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", statOrder = { 9249 }, level = 65, group = "ShockMagnitudeIfConsumedFrenzyChargeRecently", weightKey = { "ring", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "frenzy_charge", "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [324210709] = { "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently" }, } }, + ["AbyssModRingAmanamuPrefixIgniteMagnitudeIfConsumedEnduranceCharge"] = { type = "Prefix", affix = "Amanamu's", "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", statOrder = { 6816 }, level = 65, group = "IgniteMagnitudeIfConsumedEnduranceChargeRecently", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "endurance_charge", "unveiled_mod", "amanamu_mod", "ailment" }, tradeHashes = { [916833363] = { "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently" }, } }, + ["AbyssModRingAmanamuSuffixLifeLeechAmount"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased amount of Life Leeched", statOrder = { 1820 }, level = 65, group = "LifeLeechAmount", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2112395885] = { "(12-20)% increased amount of Life Leeched" }, } }, + ["AbyssModRingKurgalPrefixFreezeBuildupIfConsumedPowerCharge"] = { type = "Prefix", affix = "Kurgal's", "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently", statOrder = { 6747 }, level = 65, group = "FreezeBuildupIfConsumedPowerChargeRecently", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "power_charge", "unveiled_mod", "kurgal_mod", "ailment" }, tradeHashes = { [232701452] = { "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently" }, } }, + ["AbyssModRingKurgalSuffixManaLeechAmount"] = { type = "Suffix", affix = "of Kurgal", "(12-20)% increased amount of Mana Leeched", statOrder = { 1822 }, level = 65, group = "ManaLeechAmount", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2839066308] = { "(12-20)% increased amount of Mana Leeched" }, } }, + ["AbyssModAmuletUlamanPrefixEvasionRatingFromEquippedBody"] = { type = "Prefix", affix = "Ulaman's", "(35-50)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4810 }, level = 65, group = "EvasionRatingFromBodyArmour", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "evasion", "unveiled_mod", "ulaman_mod", "defences" }, tradeHashes = { [3509362078] = { "(35-50)% increased Evasion Rating from Equipped Body Armour" }, } }, + ["AbyssModAmuletUlamanPrefixGlobalDeflectionRating"] = { type = "Prefix", affix = "Ulaman's", "(10-20)% increased Deflection Rating", statOrder = { 5721 }, level = 65, group = "GlobalDeflectionRating", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "evasion", "unveiled_mod", "ulaman_mod", "defences" }, tradeHashes = { [3040571529] = { "(10-20)% increased Deflection Rating" }, } }, + ["AbyssModAmuletUlamanPrefixChanceToNotConsumeGlory"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% chance for Skills to retain 40% of Glory on use", statOrder = { 5190 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2749595652] = { "(20-30)% chance for Skills to retain 40% of Glory on use" }, } }, + ["AbyssModAmuletUlamanSuffixHeraldReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Reservation Efficiency of Herald Skills", statOrder = { 9179 }, level = 65, group = "HeraldReservationEfficiency", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1697191405] = { "(10-20)% increased Reservation Efficiency of Herald Skills" }, } }, + ["AbyssModAmuletUlamanSuffixGlobalLevelOfSkillGems"] = { type = "Suffix", affix = "of Ulaman", "+1 to Level of all Skills", statOrder = { 4166 }, level = 65, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, + ["AbyssModAmuletAmanamuPrefixArmourFromEquippedBody"] = { type = "Prefix", affix = "Amanamu's", "(35-50)% increased Armour from Equipped Body Armour", statOrder = { 4809 }, level = 65, group = "BodyArmourFromBodyArmour", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "armour", "unveiled_mod", "amanamu_mod", "defences" }, tradeHashes = { [1015576579] = { "(35-50)% increased Armour from Equipped Body Armour" }, } }, + ["AbyssModAmuletAmanamuPrefixGlobalDefences"] = { type = "Prefix", affix = "Amanamu's", "(15-25)% increased Global Defences", statOrder = { 2486 }, level = 65, group = "AllDefences", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "defences" }, tradeHashes = { [1389153006] = { "(15-25)% increased Global Defences" }, } }, + ["AbyssModAmuletAmanamuSuffixReducedRequirementEquipmentAndSkill"] = { type = "Suffix", affix = "of Amanamu", "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements", statOrder = { 2224 }, level = 65, group = "GlobalItemAttributeRequirements", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements" }, } }, + ["AbyssModAmuletAmanamuSuffixAuraMagnitude"] = { type = "Suffix", affix = "of Amanamu", "Aura Skills have (8-16)% increased Magnitudes", statOrder = { 2472 }, level = 65, group = "AuraMagnitude", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [315791320] = { "Aura Skills have (8-16)% increased Magnitudes" }, } }, + ["AbyssModAmuletKurgalPrefixEnergyShieldFromEquippedBody"] = { type = "Prefix", affix = "Kurgal's", "(35-50)% increased Energy Shield from Equipped Body Armour", statOrder = { 8313 }, level = 65, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "energy_shield", "unveiled_mod", "kurgal_mod", "defences" }, tradeHashes = { [1195319608] = { "(35-50)% increased Energy Shield from Equipped Body Armour" }, } }, + ["AbyssModAmuletKurgalPrefixChanceInvocatedSpellsConsumeHalfEnergy"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells have (10-20)% chance to consume half as much Energy", statOrder = { 6924 }, level = 65, group = "InvocatedSpellHalfEnergyChance", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [3711973554] = { "Invocated Spells have (10-20)% chance to consume half as much Energy" }, } }, + ["AbyssModAmuletKurgalSuffixCooldownRecoveryRateCommandSkills"] = { type = "Suffix", affix = "of Kurgal", "Minions have (12-20)% increased Cooldown Recovery Rate", statOrder = { 8475 }, level = 65, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHashes = { [1691403182] = { "Minions have (12-20)% increased Cooldown Recovery Rate" }, } }, + ["AbyssModAmuletKurgalSuffixDamageFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(8-16)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(8-16)% of Damage is taken from Mana before Life" }, } }, + ["AbyssModAmuletKurgalSuffixQualityofAllSkills"] = { type = "Suffix", affix = "of Kurgal", "+(3-5)% to Quality of all Skills", statOrder = { 4167 }, level = 65, group = "GlobalSkillGemQuality", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "gem" }, tradeHashes = { [3655769732] = { "+(3-5)% to Quality of all Skills" }, } }, + ["AbyssModStaffUlamanPrefixSpellDamagePer100MaximumLife"] = { type = "Prefix", affix = "Ulaman's", "(4-5)% increased Spell Damage per 100 Maximum Life", statOrder = { 9411 }, level = 65, group = "SpellDamagePer100Life", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "ulaman_mod", "life", "damage", "caster" }, tradeHashes = { [3491815140] = { "(4-5)% increased Spell Damage per 100 Maximum Life" }, } }, + ["AbyssModStaffUlamanPrefixMagnitudeOfDamagingAilments"] = { type = "Prefix", affix = "Ulaman's", "(40-64)% increased Magnitude of Damaging Ailments you inflict", statOrder = { 5670 }, level = 65, group = "DamagingAilmentEffect", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [1381474422] = { "(40-64)% increased Magnitude of Damaging Ailments you inflict" }, } }, + ["AbyssModStaffUlamanSuffixCastSpeedWhileLowLife"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% increased Cast Speed when on Low Life", statOrder = { 1666 }, level = 65, group = "CastSpeedOnLowLife", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster", "speed" }, tradeHashes = { [1136768410] = { "(30-40)% increased Cast Speed when on Low Life" }, } }, + ["AbyssModStaffUlamanSuffixChanceForSpellsToFireTwoAdditionalProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["AbyssModStaffAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(148-178)% increased Spell Damage with Spells that cost Life", statOrder = { 9407 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(148-178)% increased Spell Damage with Spells that cost Life" }, } }, + ["AbyssModStaffAmanamuPrefixFlatSpirit"] = { type = "Prefix", affix = "Amanamu's", "+(35-50) to Spirit", statOrder = { 874 }, level = 65, group = "BaseSpirit", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3981240776] = { "+(35-50) to Spirit" }, } }, + ["AbyssModStaffAmanamuSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-35)% of Spell Mana Cost Converted to Life Cost" }, } }, + ["AbyssModStaffAmanamuSuffixArchonDuration"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Archon Buff duration", statOrder = { 4222 }, level = 65, group = "ArchonDuration", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2158617060] = { "(25-35)% increased Archon Buff duration" }, } }, + ["AbyssModStaffAmanamuSuffixBlockChance"] = { type = "Suffix", affix = "of Amanamu", "+(12-16)% to Block chance", statOrder = { 2130 }, level = 65, group = "AdditionalBlock", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1702195217] = { "+(12-16)% to Block chance" }, } }, + ["AbyssModStaffKurgalPrefixSpellDamagePer100MaximumMana"] = { type = "Prefix", affix = "Kurgal's", "(4-5)% increased Spell Damage per 100 maximum Mana", statOrder = { 9413 }, level = 65, group = "SpellDamagePer100Mana", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "kurgal_mod", "mana", "damage", "caster" }, tradeHashes = { [1850249186] = { "(4-5)% increased Spell Damage per 100 maximum Mana" }, } }, + ["AbyssModStaffKurgalPrefixMaximumInfusions"] = { type = "Prefix", affix = "Kurgal's", "+(1-2) to maximum number of Elemental Infusions", statOrder = { 8324 }, level = 65, group = "MaximumElementalInfusion", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental" }, tradeHashes = { [4097212302] = { "+(1-2) to maximum number of Elemental Infusions" }, } }, + ["AbyssModStaffKurgalSuffixArchonCooldownRecovery"] = { type = "Suffix", affix = "of Kurgal", "Archon recovery period expires (25-35)% faster", statOrder = { 4221 }, level = 65, group = "ArchonDelayRecovery", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2586152168] = { "Archon recovery period expires (25-35)% faster" }, } }, + ["AbyssModStaffKurgalSuffixCastSpeedWhileFullMana"] = { type = "Suffix", affix = "of Kurgal", "(26-36)% increased Cast Speed while on Full Mana", statOrder = { 4976 }, level = 65, group = "CastSpeedOnFullMana", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana", "caster", "speed" }, tradeHashes = { [1914226331] = { "(26-36)% increased Cast Speed while on Full Mana" }, } }, + ["AbyssModWandUlamanPrefixDamageAsExtraPhysical"] = { type = "Prefix", affix = "Ulaman's", "Gain (21-25)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 65, group = "DamageasExtraPhysical", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (21-25)% of Damage as Extra Physical Damage" }, } }, + ["AbyssModWandUlamanPrefixBleedMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(27-38)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 65, group = "BleedDotMultiplier", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "ulaman_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(27-38)% increased Magnitude of Bleeding you inflict" }, } }, + ["AbyssModWandUlamanSuffixArmourBreakAmount"] = { type = "Suffix", affix = "of Ulaman", "Break (31-39)% increased Armour", statOrder = { 4283 }, level = 65, group = "ArmourBreak", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1776411443] = { "Break (31-39)% increased Armour" }, } }, + ["AbyssModWandUlamanSuffixBreakArmourSpellCrits"] = { type = "Suffix", affix = "of Ulaman", "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt", statOrder = { 4287 }, level = 65, group = "ArmourBreakPercentOnSpellCrit", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster", "critical" }, tradeHashes = { [1286199571] = { "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt" }, } }, + ["AbyssModWandUlamanSuffixHinderedEnemiesTakeIncreasedPhysical"] = { type = "Suffix", affix = "of Ulaman", "Enemies Hindered by you take (4-7)% increased Physical Damage", statOrder = { 6741 }, level = 65, group = "HinderedEnemiesTakeIncreasedPhysicalDamage", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [359357545] = { "Enemies Hindered by you take (4-7)% increased Physical Damage" }, } }, + ["AbyssModWandAmanamuPrefixIncreasedElementalDamage"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Elemental Damage", statOrder = { 1651 }, level = 65, group = "CasterElementalDamagePercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(74-89)% increased Elemental Damage" }, } }, + ["AbyssModWandAmanamuPrefixHybridSpellAndMinionDamage"] = { type = "Prefix", affix = "Amanamu's", "(55-64)% increased Spell Damage", "Minions deal (55-64)% increased Damage", statOrder = { 853, 1646 }, level = 65, group = "MinionAndSpellDamageHybrid", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "minion" }, tradeHashes = { [2974417149] = { "(55-64)% increased Spell Damage" }, [1589917703] = { "Minions deal (55-64)% increased Damage" }, } }, + ["AbyssModWandAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Spell Damage with Spells that cost Life", statOrder = { 9407 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(74-89)% increased Spell Damage with Spells that cost Life" }, } }, + ["AbyssModWandAmanamuSuffixSpellAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Spell Skills have (8-16)% increased Area of Effect", statOrder = { 9390 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1967040409] = { "Spell Skills have (8-16)% increased Area of Effect" }, } }, + ["AbyssModWandAmanamuSuffixSpellManaCostConvertedToLifeSkillEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Cost Efficiency", "(15-25)% of Spell Mana Cost Converted to Life Cost", statOrder = { 4604, 9436 }, level = 65, group = "SpellLifeCostPercentAndSkillCostEfficiency", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [263495202] = { "(5-10)% increased Cost Efficiency" }, [3544050945] = { "(15-25)% of Spell Mana Cost Converted to Life Cost" }, } }, + ["AbyssModWandAmanamuSuffixHinderedEnemiesTakeIncreasedElemental"] = { type = "Suffix", affix = "of Amanamu", "Enemies Hindered by you take (4-7)% increased Elemental Damage", statOrder = { 6740 }, level = 65, group = "HinderedEnemiesTakeIncreasedElementalDamage", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [212649958] = { "Enemies Hindered by you take (4-7)% increased Elemental Damage" }, } }, + ["AbyssModWandKurgalPrefixInvocatedSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (75-89)% increased Damage", statOrder = { 6927 }, level = 65, group = "InvocationSpellDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (75-89)% increased Damage" }, } }, + ["AbyssModWandKurgalSuffixCastSpeedPerDifferentSpellCastRecently"] = { type = "Suffix", affix = "of Kurgal", "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 4965 }, level = 65, group = "CastSpeedPerDifferentSpellCastRecently", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1518586897] = { "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" }, } }, + ["AbyssModWandKurgalSuffixHinderedEnemiesTakeIncreasedChaos"] = { type = "Suffix", affix = "of Kurgal", "Enemies Hindered by you take (4-7)% increased Chaos Damage", statOrder = { 6739 }, level = 65, group = "HinderedEnemiesTakeIncreasedChaosDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1746561819] = { "Enemies Hindered by you take (4-7)% increased Chaos Damage" }, } }, + ["AbyssModGenWeaponUlamanPrefixLightningPenetration"] = { type = "Prefix", affix = "Ulaman's", "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance", statOrder = { 3333 }, level = 65, group = "LocalLightningPenetration", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "ulaman_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance" }, } }, + ["AbyssModGenWeaponUlamanSuffixSkillCostConvertedToLife"] = { type = "Suffix", affix = "of Ulaman", "(15-20)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 65, group = "LifeCost", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(15-20)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["AbyssModGenWeaponAmanamuPrefixFirePenetration"] = { type = "Prefix", affix = "Amanamu's", "Attacks with this Weapon Penetrate (15-25)% Fire Resistance", statOrder = { 3331 }, level = 65, group = "LocalFirePenetration", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (15-25)% Fire Resistance" }, } }, + ["AbyssModGenWeaponAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(5-10)% increased Spirit Reservation Efficiency of Skills" }, } }, + ["AbyssModGenWeaponKurgalPrefixColdPenetration"] = { type = "Prefix", affix = "Kurgal's", "Attacks with this Weapon Penetrate (15-25)% Cold Resistance", statOrder = { 3332 }, level = 65, group = "LocalColdPenetration", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "kurgal_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (15-25)% Cold Resistance" }, } }, + ["AbyssModGenWeaponKurgalSuffixAttackCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4519 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, + ["AbyssModAllMacesUlamanPrefixMaximumMeleeAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "Melee Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 8361 }, level = 65, group = "AdditionalMeleeTotem", weightKey = { "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2013356568] = { "Melee Attack Skills have +1 to maximum number of Summoned Totems" }, } }, + ["AbyssModAllMacesKurgalPrefixIncreasedPhysicalDamageReducedAttackSpeed"] = { type = "Prefix", affix = "Kurgal's", "(110-154)% increased Physical Damage", "15% reduced Attack Speed", statOrder = { 821, 919 }, level = 65, group = "LocalIncreasedPhysicalDamageAttackSpeedHybrid", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "physical", "attack", "speed" }, tradeHashes = { [210067635] = { "15% reduced Attack Speed" }, [1509134228] = { "(110-154)% increased Physical Damage" }, } }, + ["AbyssModAllMacesKurgalSuffixCostEfficiencyOfAttackSkills"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4519 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, + ["AbyssMod1HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(41-59)% increased Damage while you have a Totem", statOrder = { 2818 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHashes = { [2543331226] = { "(41-59)% increased Damage while you have a Totem" }, } }, + ["AbyssMod1HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% increased Totem Placement speed", statOrder = { 2250 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3374165039] = { "(17-25)% increased Totem Placement speed" }, } }, + ["AbyssMod1HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(41-59)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5553 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(41-59)% increased Damage against Enemies with Fully Broken Armour" }, } }, + ["AbyssMod1HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (2-4)% of Physical Damage dealt", statOrder = { 4290 }, level = 65, group = "ArmourPenetration", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (2-4)% of Physical Damage dealt" }, } }, + ["AbyssMod1HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (15-25)% chance to create an additional Fissure", statOrder = { 9296 }, level = 65, group = "AdditionalFissureChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (15-25)% chance to create an additional Fissure" }, } }, + ["AbyssMod1HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 9975 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, + ["AbyssMod1HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (41-59)% increased Damage", statOrder = { 5912 }, level = 65, group = "ExertedAttackDamage", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (41-59)% increased Damage" }, } }, + ["AbyssMod1HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 2929 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4159248054] = { "(17-25)% increased Warcry Cooldown Recovery Rate" }, } }, + ["AbyssMod2HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Damage while you have a Totem", statOrder = { 2818 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHashes = { [2543331226] = { "(86-99)% increased Damage while you have a Totem" }, } }, + ["AbyssMod2HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(25-31)% increased Totem Placement speed", statOrder = { 2250 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3374165039] = { "(25-31)% increased Totem Placement speed" }, } }, + ["AbyssMod2HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5553 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(86-99)% increased Damage against Enemies with Fully Broken Armour" }, } }, + ["AbyssMod2HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (4-7)% of Physical Damage dealt", statOrder = { 4290 }, level = 65, group = "ArmourPenetration", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (4-7)% of Physical Damage dealt" }, } }, + ["AbyssMod2HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (25-31)% chance to create an additional Fissure", statOrder = { 9296 }, level = 65, group = "AdditionalFissureChance", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (25-31)% chance to create an additional Fissure" }, } }, + ["AbyssMod2HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 9975 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, + ["AbyssMod2HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (86-99)% increased Damage", statOrder = { 5912 }, level = 65, group = "ExertedAttackDamage", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (86-99)% increased Damage" }, } }, + ["AbyssMod2HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(25-31)% increased Warcry Cooldown Recovery Rate", statOrder = { 2929 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4159248054] = { "(25-31)% increased Warcry Cooldown Recovery Rate" }, } }, + ["AbyssModQuarterstaffUlamanPrefixLightningDamageShockMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Lightning Damage", "(14-23)% increased Magnitude of Shock you inflict", statOrder = { 857, 9248 }, level = 65, group = "LightningDamageShockMagnitudeHybrid", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(14-23)% increased Magnitude of Shock you inflict" }, [2231156303] = { "(86-99)% increased Lightning Damage" }, } }, + ["AbyssModQuarterstaffUlamanSuffixRecoverLifeWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Ulaman", "Recover (6-12)% of Maximum Life when you expend at least 10 Combo", statOrder = { 9116 }, level = 65, group = "SkillUseRecoverPercentLifeOnExpendingTenCombo", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [4033618138] = { "Recover (6-12)% of Maximum Life when you expend at least 10 Combo" }, } }, + ["AbyssModQuarterstaffAmanamuPrefixFireDamageIgniteMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Fire Damage", "(14-23)% increased Ignite Magnitude", statOrder = { 855, 1009 }, level = 65, group = "FireDamageIgniteMagnitudeHybrid", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHashes = { [3962278098] = { "(86-99)% increased Fire Damage" }, [3791899485] = { "(14-23)% increased Ignite Magnitude" }, } }, + ["AbyssModQuarterstaffAmanamuSuffixChanceToGenerateAdditionalCombo"] = { type = "Suffix", affix = "of Amanamu", "(25-40)% chance to build an additional Combo on Hit", statOrder = { 4068 }, level = 65, group = "ChanceToGenerateAdditionalCombo", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [4258524206] = { "(25-40)% chance to build an additional Combo on Hit" }, } }, + ["AbyssModQuarterstaffKurgalPrefixColdDamageFreezeBuildup"] = { type = "Prefix", affix = "Kurgal's", "(86-99)% increased Cold Damage", "(14-23)% increased Freeze Buildup", statOrder = { 856, 990 }, level = 65, group = "ColdDamageFreezeBuildupHybrid", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3291658075] = { "(86-99)% increased Cold Damage" }, [473429811] = { "(14-23)% increased Freeze Buildup" }, } }, + ["AbyssModQuarterstaffKurgalSuffixRecoverManaWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Kurgal", "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo", statOrder = { 9119 }, level = 65, group = "SkillUseRecoverPercentManaOnExpendingTenCombo", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2991045011] = { "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo" }, } }, + ["AbyssModCrossbowUlamanPrefixMaximumRangedAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4058 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1823942939] = { "+1 to maximum number of Summoned Ballista Totems" }, } }, + ["AbyssModCrossbowUlamanSuffixAttacksChainAdditionalTime"] = { type = "Suffix", affix = "of Ulaman", "Attacks Chain an additional time", statOrder = { 3684 }, level = 65, group = "AttacksChainAdditionalTimes", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3868118796] = { "Attacks Chain an additional time" }, } }, + ["AbyssModCrossbowUlamanSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Ulaman", "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5423 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m" }, } }, + ["AbyssModCrossbowAmanamuPrefixGrenadeAdditionalCooldown"] = { type = "Prefix", affix = "Amanamu's", "Grenade Skills have +1 Cooldown Use", statOrder = { 6497 }, level = 65, group = "GrenadeCooldownUse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, + ["AbyssModCrossbowAmanamuPrefixGrenadeDamageAndDuration"] = { type = "Prefix", affix = "Amanamu's", "(101-121)% increased Grenade Damage", "(20-30)% increased Grenade Duration", statOrder = { 6499, 6500 }, level = 65, group = "GrenadeDamageLongFuse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [1365232741] = { "(20-30)% increased Grenade Duration" }, [3131442032] = { "(101-121)% increased Grenade Damage" }, } }, + ["AbyssModCrossbowAmanamuSuffixAdditionalGrenadeTriggerChance"] = { type = "Suffix", affix = "of Amanamu", "Grenades have (15-25)% chance to activate a second time", statOrder = { 6495 }, level = 65, group = "GrenadeAdditionalTriggerChance", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [538981065] = { "Grenades have (15-25)% chance to activate a second time" }, } }, + ["AbyssModCrossbowKurgalPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m", statOrder = { 8975 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m" }, } }, + ["AbyssModCrossbowKurgalSuffixReloadSpeed"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Reload Speed", statOrder = { 920 }, level = 65, group = "LocalReloadSpeed", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack", "speed" }, tradeHashes = { [710476746] = { "(17-25)% increased Reload Speed" }, } }, ["AbyssModCrossbowKurgalSuffixChanceForInstantReload"] = { type = "Suffix", affix = "of Kurgal", "(15-20)% chance when you Reload a Crossbow to be immediate", statOrder = { 2 }, level = 65, group = "ChanceForInstantReload", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2760344900] = { "(15-20)% chance when you Reload a Crossbow to be immediate" }, } }, - ["AbyssModBowSpearUlamanPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Ulaman's", "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m", statOrder = { 9507 }, level = 65, group = "ProjectileDamageFar", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m" }, } }, - ["AbyssModBowSpearUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving", statOrder = { 9500 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving" }, } }, - ["AbyssModBowSpearUlamanSuffixAttackSpeedLocalAndWithCompanion"] = { type = "Suffix", affix = "of Ulaman", "(8-13)% increased Attack Speed", "(8-13)% increased Attack Speed while your Companion is in your Presence", statOrder = { 945, 4546 }, level = 65, group = "LocalAttackSpeedAndAttackSpeedWithCompanion", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [210067635] = { "(8-13)% increased Attack Speed" }, [299996] = { "(8-13)% increased Attack Speed while your Companion is in your Presence" }, } }, - ["AbyssModBowSpearAmanamuPrefixCompanionDamageAndDamageWithCompanion"] = { type = "Prefix", affix = "Amanamu's", "Companions deal (40-59)% increased Damage", "(40-59)% increased Damage while your Companion is in your Presence", statOrder = { 5708, 5947 }, level = 65, group = "CompanionDamageAndDamageWithCompanion", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [693180608] = { "(40-59)% increased Damage while your Companion is in your Presence" }, [234296660] = { "Companions deal (40-59)% increased Damage" }, } }, - ["AbyssModBowSpearAmanamuPrefixAttackSkillAreaOfEffect"] = { type = "Prefix", affix = "Amanamu's", "(12-23)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 65, group = "IncreasedAttackAreaOfEffect", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [1840985759] = { "(12-23)% increased Area of Effect for Attacks" }, } }, - ["AbyssModBowSpearAmanamuSuffixCompanionAndLocalAttackSpeed"] = { type = "Suffix", affix = "of Amanamu", "(12-18)% increased Attack Speed", "Companions have (12-18)% increased Attack Speed", statOrder = { 945, 5702 }, level = 65, group = "CompanionAndLocalAttackSpeed", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [210067635] = { "(12-18)% increased Attack Speed" }, [666077204] = { "Companions have (12-18)% increased Attack Speed" }, } }, - ["AbyssModBowSpearAmanamuSuffixChancePierceAdditionalTime"] = { type = "Suffix", affix = "of Amanamu", "(40-60)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 65, group = "ChanceToPierce", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2321178454] = { "(40-60)% chance to Pierce an Enemy" }, } }, - ["AbyssModBowSpearKurgalPrefixChanceChainFromTerrain"] = { type = "Prefix", affix = "Kurgal's", "Projectiles have (25-35)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 65, group = "ChainFromTerrain", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-35)% chance to Chain an additional time from terrain" }, } }, - ["AbyssModBowSpearKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5817 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m" }, } }, - ["AbyssModBowSpearKurgalSuffixImmobilisationBuildup"] = { type = "Suffix", affix = "of Kurgal", "(25-34)% increased Immobilisation buildup", statOrder = { 7170 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [330530785] = { "(25-34)% increased Immobilisation buildup" }, } }, - ["AbyssModBowKurgalPrefixIncreasedQuiverStats"] = { type = "Prefix", affix = "Kurgal's", "(30-40)% increased bonuses gained from Equipped Quiver", statOrder = { 9564 }, level = 65, group = "QuiverModifierEffect", weightKey = { "bow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1200678966] = { "(30-40)% increased bonuses gained from Equipped Quiver" }, } }, - ["AbyssModSpearKurgalPrefixMeleeDamageIfProjectileAttackHitEightSeconds"] = { type = "Prefix", affix = "Kurgal's", "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8879 }, level = 65, group = "MeleeDamageIfProjectileAttackHitRecently", weightKey = { "spear", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3028809864] = { "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["AbyssModTalismanUlamanSuffixGainXRageOnMeleeHit"] = { type = "Suffix", affix = "of Ulaman", "Gain (3-6) Rage on Melee Hit", statOrder = { 6850 }, level = 65, group = "RageOnHit", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [2709367754] = { "Gain (3-6) Rage on Melee Hit" }, } }, - ["AbyssModTalismanAmanamuPrefixMinionsDealIncreasedDamageIfYouHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (60-79)% increased Damage if you've Hit Recently", statOrder = { 9004 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "minion_damage", "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (60-79)% increased Damage if you've Hit Recently" }, } }, - ["AbyssModTalismanKurgalPrefixWarcriesEmpowerXAdditionalAttacks"] = { type = "Prefix", affix = "Kurgal's", "Warcries Empower an additional Attack", statOrder = { 10468 }, level = 65, group = "WarcriesExertAnAdditionalAttack", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, - ["AbyssModTalismanKurgalSuffixCriticalHitChanceAgainstMarkedTargets"] = { type = "Suffix", affix = "of Kurgal", "(39-51)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5820 }, level = 65, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [1045789614] = { "(39-51)% increased Critical Hit Chance against Marked Enemies" }, } }, - ["UniqueWatcherVeiledSpiritReservationEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Spirit Reservation Efficiency", statOrder = { 4743 }, level = 1, group = "UniqueSpiritReservationEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix" }, tradeHashes = { [53386210] = { "(12-16)% increased Spirit Reservation Efficiency" }, } }, - ["UniqueWatcherVeiledManaCostEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 1, group = "UniqueManaCostEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [4101445926] = { "(12-16)% increased Mana Cost Efficiency" }, } }, - ["UniqueWatcherVeiledCurseAreaOfEffect"] = { type = "Suffix", affix = "", "(11-21)% increased Area of Effect of Curses", statOrder = { 1948 }, level = 1, group = "UniqueCurseAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHashes = { [153777645] = { "(11-21)% increased Area of Effect of Curses" }, } }, - ["UniqueWatcherVeiledEffectOfCurses"] = { type = "Suffix", affix = "", "(11-18)% increased Curse Magnitudes", statOrder = { 2374 }, level = 1, group = "UniqueEffectOfCurses", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHashes = { [2353576063] = { "(11-18)% increased Curse Magnitudes" }, } }, - ["UniqueWatcherVeiledMinionLife"] = { type = "Suffix", affix = "", "Minions have (41-50)% increased maximum Life", statOrder = { 1025 }, level = 1, group = "UniqueMinionLife", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (41-50)% increased maximum Life" }, } }, - ["UniqueWatcherVeiledPresenceAreaOfEffect"] = { type = "Suffix", affix = "", "(46-55)% increased Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "UniquePresenceAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "aura" }, tradeHashes = { [101878827] = { "(46-55)% increased Presence Area of Effect" }, } }, - ["UniqueWatcherVeiledManaRegeneration"] = { type = "Suffix", affix = "", "(68-91)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "UniqueManaRegeneration", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [789117908] = { "(68-91)% increased Mana Regeneration Rate" }, } }, - ["UniqueWatcherVeiledAlliesInPresenceCastSpeed"] = { type = "Suffix", affix = "", "Allies in your Presence have (8-15)% increased Cast Speed", statOrder = { 918 }, level = 1, group = "UniqueAlliesInPresenceCastSpeed", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "caster", "aura" }, tradeHashes = { [289128254] = { "Allies in your Presence have (8-15)% increased Cast Speed" }, } }, - ["UniqueWatcherVeiledAlliesInPresenceAllElementalResistance"] = { type = "Suffix", affix = "", "Allies in your Presence have +(11-18)% to all Elemental Resistances", statOrder = { 919 }, level = 1, group = "UniqueAlliesInPresenceAllElementalResistance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "unveiled_mod", "watcher_abyss_suffix", "elemental", "resistance", "aura" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(11-18)% to all Elemental Resistances" }, } }, - ["UniqueWatcherVeiledAlliesInPresenceFlatLifeRegen"] = { type = "Suffix", affix = "", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 920 }, level = 1, group = "UniqueAlliesInPresenceFlatLifeRegen", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "aura" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (29.1-33) Life per second" }, } }, - ["UniqueWatcherVeiledAlliesInPresenceCriticalHitChance"] = { type = "Suffix", affix = "", "Allies in your Presence have (26-41)% increased Critical Hit Chance", statOrder = { 915 }, level = 1, group = "UniqueAlliesInPresenceCriticalHitChance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "critical", "aura" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (26-41)% increased Critical Hit Chance" }, } }, - ["UniqueKulemakUnholyMightAndMagnitude_1"] = { type = "Prefix", affix = "", "(28-56)% increased Magnitude of Unholy Might buffs you grant", "You have Unholy Might", statOrder = { 4750, 6955 }, level = 1, group = "UniqueUnholyMightAndMagnitude", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2725205297] = { "(28-56)% increased Magnitude of Unholy Might buffs you grant" }, [3007552094] = { "You have Unholy Might" }, } }, - ["UniqueKulemakChaosDamageAndExplosion_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 875, 3010 }, level = 1, group = "UniqueChaosDamageAndExplosion", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-160)% increased Chaos Damage" }, [1776945532] = { "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, - ["UniqueKulemakSpellPhysicalDamageBleedChance_1"] = { type = "Prefix", affix = "", "(100-160)% increased Spell Physical Damage", "(20-30)% chance to inflict Bleeding on Hit", statOrder = { 877, 4660 }, level = 1, group = "UniqueSpellPhysicalAndBleedChance", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "physical" }, tradeHashes = { [2174054121] = { "(20-30)% chance to inflict Bleeding on Hit" }, [2768835289] = { "(100-160)% increased Spell Physical Damage" }, } }, - ["UniqueKulemakChaosDamageCurseLowersChaosRes_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you Curse have -(8-5)% to Chaos Resistance", statOrder = { 875, 3714 }, level = 1, group = "UniqueChaosDamageAndCurseLowersChaosRes", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-160)% increased Chaos Damage" }, [1772929282] = { "Enemies you Curse have -(8-5)% to Chaos Resistance" }, } }, - ["UniqueKulemakSpiritAndSpiritReservationEfficiency_1"] = { type = "Prefix", affix = "", "+(40-60) to Spirit", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 894, 4743 }, level = 1, group = "UniqueSpiritAndSpiritReservationEfficiency", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2704225257] = { "+(40-60) to Spirit" }, [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, - ["UniqueKulemakElementalDamageEleAilmentDuration_1"] = { type = "Prefix", affix = "", "(10-20)% increased Duration of Elemental Ailments on Enemies", "(100-160)% increased Elemental Damage", statOrder = { 1615, 1724 }, level = 1, group = "UniqueElementalDamageAndDurationOfEleAilments", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "elemental" }, tradeHashes = { [2604619892] = { "(10-20)% increased Duration of Elemental Ailments on Enemies" }, [3141070085] = { "(100-160)% increased Elemental Damage" }, } }, - ["AbyssModBootsUlamanSuffixLifeRegenMoving"] = { type = "Suffix", affix = "of Ulaman", "(40-50)% increased Life Regeneration Rate while moving", statOrder = { 7503 }, level = 65, group = "LifeRegenerationPlusPercentWhileMoving", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2116424886] = { "(40-50)% increased Life Regeneration Rate while moving" }, } }, - ["GenesisTreeAmuletColdDamageAsPortionOfDamage"] = { type = "Prefix", affix = "Tul's", "Gain (10-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1673 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [758893621] = { "Gain (10-20)% of Physical Damage as Extra Cold Damage" }, } }, - ["GenesisTreeAmuletAnaemiaOnHit"] = { type = "Prefix", affix = "Uul-Netol's", "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", statOrder = { 4314, 4314.1 }, level = 1, group = "AnaemiaOnHit", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical" }, tradeHashes = { [971590056] = { "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies" }, } }, - ["GenesisTreeFireSpellBaseCriticalChance"] = { type = "Suffix", affix = "of Xoph", "+(4-5)% to Fire Spell Critical Hit Chance", statOrder = { 6567 }, level = 1, group = "FireSpellBaseCriticalChance", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "caster_critical", "elemental", "fire", "caster", "critical" }, tradeHashes = { [3399401168] = { "+(4-5)% to Fire Spell Critical Hit Chance" }, } }, - ["GenesisTreeAdditionalMaximumSeals"] = { type = "Suffix", affix = "of Esh", "Sealed Skills have +1 to maximum Seals", statOrder = { 4715 }, level = 1, group = "AdditionalMaximumSeals", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4147510958] = { "Sealed Skills have +1 to maximum Seals" }, } }, - ["GenesisTreeBeltMinionAdditionalProjectileChance"] = { type = "Suffix", affix = "of Scattering", "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", statOrder = { 8984 }, level = 1, group = "MinionAdditionalProjectileChance", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1797815732] = { "Minions have +(50-100)% Surpassing chance to fire an additional Projectile" }, } }, - ["GenesisTreeRingMaximumElementalInfusion"] = { type = "Suffix", affix = "of Amplification", "+1 to maximum number of Elemental Infusions", statOrder = { 8840 }, level = 1, group = "MaximumElementalInfusion", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, - ["GenesisTreeBeltSealGainFrequency"] = { type = "Suffix", affix = "of Expectation", "Sealed Skills have (21-35)% increased Seal gain frequency", statOrder = { 9759 }, level = 1, group = "SealGainFrequency", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3384867265] = { "Sealed Skills have (21-35)% increased Seal gain frequency" }, } }, - ["GenesisTreeRingOfferingEffect"] = { type = "Prefix", affix = "Dedicated", "Offering Skills have (23-30)% increased Buff effect", statOrder = { 3717 }, level = 1, group = "OfferingEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "Offering Skills have (23-30)% increased Buff effect" }, } }, - ["GenesisTreeRingTemporaryMinionLimit"] = { type = "Suffix", affix = "of Multitudes", "Temporary Minion Skills have +1 to Limit of Minions summoned", statOrder = { 10206 }, level = 1, group = "TemporaryMinionLimit", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +1 to Limit of Minions summoned" }, } }, - ["GenesisTreeRingMinionArmourBreak"] = { type = "Prefix", affix = "Scratching", "Minions Break Armour equal to (2-4)% of Physical damage dealt", statOrder = { 8965 }, level = 1, group = "MinionArmourBreak", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [195270549] = { "Minions Break Armour equal to (2-4)% of Physical damage dealt" }, } }, - ["GenesisTreeRingMinionAilmentMagnitude"] = { type = "Prefix", affix = "Contaminating", "Minions have (35-45)% increased Magnitude of Damaging Ailments", statOrder = { 8977 }, level = 1, group = "MinionDamagingAilments", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (35-45)% increased Magnitude of Damaging Ailments" }, } }, - ["GenesisTreeRingCommandSkillSpeed"] = { type = "Suffix", affix = "of Punctuality", "Minions have (20-30)% increased Skill Speed with Command Skills", statOrder = { 8990 }, level = 1, group = "MinionCommandSkillSpeed", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [73032170] = { "Minions have (20-30)% increased Skill Speed with Command Skills" }, } }, - ["GenesisTreeRingMinionCooldownRecovery"] = { type = "Suffix", affix = "of Invigoration", "Minions have (21-29)% increased Cooldown Recovery Rate", statOrder = { 8994 }, level = 1, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have (21-29)% increased Cooldown Recovery Rate" }, } }, - ["GenesisTreeRingMinionPuppetMaster"] = { type = "Suffix", affix = "of the Cabal", "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", statOrder = { 10161 }, level = 1, group = "MinionGainPuppetMasterOnCommand", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2840930496] = { "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill" }, } }, - ["GenesisTreeRingSpellDamageAsExtraLightning"] = { type = "Prefix", affix = "Storm Chaser's", "Gain (8-12)% of Damage as Extra Lightning Damage with Spells", statOrder = { 869 }, level = 1, group = "SpellDamageGainedAsLightning", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [323800555] = { "Gain (8-12)% of Damage as Extra Lightning Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraFire"] = { type = "Prefix", affix = "Fire Breather's", "Gain (8-12)% of Damage as Extra Fire Damage with Spells", statOrder = { 863 }, level = 1, group = "SpellDamageGainedAsFire", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1321054058] = { "Gain (8-12)% of Damage as Extra Fire Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraCold"] = { type = "Prefix", affix = "Tempest Rider's", "Gain (8-12)% of Damage as Extra Cold Damage with Spells", statOrder = { 867 }, level = 1, group = "SpellDamageGainedAsCold", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [825116955] = { "Gain (8-12)% of Damage as Extra Cold Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraChaos"] = { type = "Prefix", affix = "Soul Stealer's", "Spells Gain (8-12)% of Damage as extra Chaos Damage", statOrder = { 9201 }, level = 1, group = "SpellDamageGainedAsChaos", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "chaos_warband", "damage" }, tradeHashes = { [555706343] = { "Spells Gain (8-12)% of Damage as extra Chaos Damage" }, } }, - ["GenesisTreeRingDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Burdensome", "(8-12)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(8-12)% of Damage is taken from Mana before Life" }, } }, - ["GenesisTreeRingExposureEffect"] = { type = "Suffix", affix = "of Drenching", "(25-35)% increased Exposure Effect", statOrder = { 6510 }, level = 1, group = "ElementalExposureEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(25-35)% increased Exposure Effect" }, } }, - ["GenesisTreeRingMaximumInvocationEnergy"] = { type = "Suffix", affix = "of Vastness", "Invocated skills have (25-35)% increased Maximum Energy", statOrder = { 7361 }, level = 1, group = "InvocationMaximumEnergy", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1615901249] = { "Invocated skills have (25-35)% increased Maximum Energy" }, } }, - ["GenesisTreeRingSpellImpaleEffect"] = { type = "Suffix", affix = "of Lancing", "(20-30)% increased Magnitude of Impales inflicted with Spells", statOrder = { 9986 }, level = 1, group = "SpellImpaleEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical", "caster" }, tradeHashes = { [4259875040] = { "(20-30)% increased Magnitude of Impales inflicted with Spells" }, } }, - ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Erupting", "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", statOrder = { 6538 }, level = 1, group = "FireDamageIfFireInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3858572996] = { "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Energising", "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", statOrder = { 7518 }, level = 1, group = "LightningDamageIfLightningInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [797289402] = { "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Glacial", "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", statOrder = { 5661 }, level = 1, group = "ColdDamageIfColdInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [1002535626] = { "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltArchonEffect"] = { type = "Prefix", affix = "Unshackling", "(20-39)% increased effect of Archon Buffs on you", statOrder = { 4335 }, level = 1, group = "ArchonEffect", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1180552088] = { "(20-39)% increased effect of Archon Buffs on you" }, } }, - ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6Seconds"] = { type = "Suffix", affix = "of Reverberation", "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", statOrder = { 5551 }, level = 1, group = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2150661403] = { "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds" }, } }, - ["GenesisTreeBeltSpellElementalAilmentMagnitude"] = { type = "Suffix", affix = "of Imbuing", "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", statOrder = { 9984 }, level = 1, group = "SpellElementalAilmentMagnitude", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "caster" }, tradeHashes = { [3621874554] = { "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells" }, } }, - ["GenesisTreeBeltArchonDuration"] = { type = "Suffix", affix = "of Exertion", "(40-50)% increased Archon Buff duration", statOrder = { 4334 }, level = 1, group = "ArchonDuration", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(40-50)% increased Archon Buff duration" }, } }, - ["GenesisTreeBeltArchonUndeathOnOfferingUse"] = { type = "Suffix", affix = "of Unending", "(35-50)% to gain Archon of Undeath when you create an Offering", statOrder = { 5388 }, level = 1, group = "ArchonUndeathOnOfferingUse", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [933355817] = { "(35-50)% to gain Archon of Undeath when you create an Offering" }, } }, - ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15Seconds"] = { type = "Prefix", affix = "Instructor's", "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", statOrder = { 8999 }, level = 1, group = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3526763442] = { "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds" }, } }, - ["GenesisTreeBeltMinionsGiganticRevivedRecently"] = { type = "Prefix", affix = "Monstrous", "Your Minions are Gigantic if they have Revived Recently", statOrder = { 9061 }, level = 1, group = "MinionsGiganticRevivedRecently", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1265767008] = { "Your Minions are Gigantic if they have Revived Recently" }, } }, - ["GenesisTreeBeltDamageRemovedFromSpectres"] = { type = "Prefix", affix = "Underling's", "5% of Damage from Hits is taken from your Spectres' Life before you", statOrder = { 6022 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [54812069] = { "5% of Damage from Hits is taken from your Spectres' Life before you" }, } }, - ["GenesisTreeBeltMinionReservationEfficiency"] = { type = "Suffix", affix = "of Coherence", "(7-10)% increased Reservation Efficiency of Minion Skills", statOrder = { 9726 }, level = 1, group = "MinionReservationEfficiency", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1805633363] = { "(7-10)% increased Reservation Efficiency of Minion Skills" }, } }, - ["GenesisTreeBeltMinionMeleeSplash"] = { type = "Suffix", affix = "of Ravaging", "Supported Minions' Strikes have Melee Splash", statOrder = { 9032 }, level = 1, group = "MinionMeleeSplash", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Supported Minions' Strikes have Melee Splash" }, } }, - ["GenesisTreeBeltMinionDuration"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4716 }, level = 1, group = "MinionDuration", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(35-49)% increased Minion Duration" }, } }, - ["ConvertedAbyssModQuarterstaffChaosAndAilment1"] = { type = "Prefix", affix = "Lich's", "(86-99)% increased Chaos Damage", "(14-23)% increased Magnitude of Ailments you inflict", statOrder = { 875, 4249 }, level = 65, group = "ChaosDamageAndAilmentMagnitude", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [736967255] = { "(86-99)% increased Chaos Damage" }, [1303248024] = { "(14-23)% increased Magnitude of Ailments you inflict" }, } }, + ["AbyssModBowSpearUlamanPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Ulaman's", "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m", statOrder = { 8974 }, level = 65, group = "ProjectileDamageFar", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m" }, } }, + ["AbyssModBowSpearUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving", statOrder = { 8968 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving" }, } }, + ["AbyssModBowSpearUlamanSuffixAttackSpeedLocalAndWithCompanion"] = { type = "Suffix", affix = "of Ulaman", "(8-13)% increased Attack Speed", "(8-13)% increased Attack Speed while your Companion is in your Presence", statOrder = { 919, 4422 }, level = 65, group = "LocalAttackSpeedAndAttackSpeedWithCompanion", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [210067635] = { "(8-13)% increased Attack Speed" }, [299996] = { "(8-13)% increased Attack Speed while your Companion is in your Presence" }, } }, + ["AbyssModBowSpearAmanamuPrefixCompanionDamageAndDamageWithCompanion"] = { type = "Prefix", affix = "Amanamu's", "Companions deal (40-59)% increased Damage", "(40-59)% increased Damage while your Companion is in your Presence", statOrder = { 5339, 5566 }, level = 65, group = "CompanionDamageAndDamageWithCompanion", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [693180608] = { "(40-59)% increased Damage while your Companion is in your Presence" }, [234296660] = { "Companions deal (40-59)% increased Damage" }, } }, + ["AbyssModBowSpearAmanamuPrefixAttackSkillAreaOfEffect"] = { type = "Prefix", affix = "Amanamu's", "(12-23)% increased Area of Effect for Attacks", statOrder = { 4363 }, level = 65, group = "IncreasedAttackAreaOfEffect", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [1840985759] = { "(12-23)% increased Area of Effect for Attacks" }, } }, + ["AbyssModBowSpearAmanamuSuffixCompanionAndLocalAttackSpeed"] = { type = "Suffix", affix = "of Amanamu", "(12-18)% increased Attack Speed", "Companions have (12-18)% increased Attack Speed", statOrder = { 919, 5335 }, level = 65, group = "CompanionAndLocalAttackSpeed", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [210067635] = { "(12-18)% increased Attack Speed" }, [666077204] = { "Companions have (12-18)% increased Attack Speed" }, } }, + ["AbyssModBowSpearAmanamuSuffixChancePierceAdditionalTime"] = { type = "Suffix", affix = "of Amanamu", "(40-60)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 65, group = "ChanceToPierce", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2321178454] = { "(40-60)% chance to Pierce an Enemy" }, } }, + ["AbyssModBowSpearKurgalPrefixChanceChainFromTerrain"] = { type = "Prefix", affix = "Kurgal's", "Projectiles have (25-35)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 65, group = "ChainFromTerrain", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-35)% chance to Chain an additional time from terrain" }, } }, + ["AbyssModBowSpearKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5436 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m" }, } }, + ["AbyssModBowSpearKurgalSuffixImmobilisationBuildup"] = { type = "Suffix", affix = "of Kurgal", "(25-34)% increased Immobilisation buildup", statOrder = { 6748 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [330530785] = { "(25-34)% increased Immobilisation buildup" }, } }, + ["AbyssModBowKurgalPrefixIncreasedQuiverStats"] = { type = "Prefix", affix = "Kurgal's", "(30-40)% increased bonuses gained from Equipped Quiver", statOrder = { 9028 }, level = 65, group = "QuiverModifierEffect", weightKey = { "bow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1200678966] = { "(30-40)% increased bonuses gained from Equipped Quiver" }, } }, + ["AbyssModSpearKurgalPrefixMeleeDamageIfProjectileAttackHitEightSeconds"] = { type = "Prefix", affix = "Kurgal's", "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8364 }, level = 65, group = "MeleeDamageIfProjectileAttackHitRecently", weightKey = { "spear", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3028809864] = { "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, + ["AbyssModTalismanUlamanSuffixGainXRageOnMeleeHit"] = { type = "Suffix", affix = "of Ulaman", "Gain (3-6) Rage on Melee Hit", statOrder = { 6431 }, level = 65, group = "RageOnHit", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2709367754] = { "Gain (3-6) Rage on Melee Hit" }, } }, + ["AbyssModTalismanAmanamuPrefixMinionsDealIncreasedDamageIfYouHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (60-79)% increased Damage if you've Hit Recently", statOrder = { 8484 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (60-79)% increased Damage if you've Hit Recently" }, } }, + ["AbyssModTalismanKurgalPrefixWarcriesEmpowerXAdditionalAttacks"] = { type = "Prefix", affix = "Kurgal's", "Warcries Empower an additional Attack", statOrder = { 9887 }, level = 65, group = "WarcriesExertAnAdditionalAttack", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, + ["AbyssModTalismanKurgalSuffixCriticalHitChanceAgainstMarkedTargets"] = { type = "Suffix", affix = "of Kurgal", "(39-51)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5439 }, level = 65, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [1045789614] = { "(39-51)% increased Critical Hit Chance against Marked Enemies" }, } }, + ["UniqueWatcherVeiledSpiritReservationEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 1, group = "UniqueSpiritReservationEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix" }, tradeHashes = { [53386210] = { "(12-16)% increased Spirit Reservation Efficiency of Skills" }, } }, + ["UniqueWatcherVeiledManaCostEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "UniqueManaCostEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [4101445926] = { "(12-16)% increased Mana Cost Efficiency" }, } }, + ["UniqueWatcherVeiledCurseAreaOfEffect"] = { type = "Suffix", affix = "", "(11-21)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "UniqueCurseAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHashes = { [153777645] = { "(11-21)% increased Area of Effect of Curses" }, } }, + ["UniqueWatcherVeiledEffectOfCurses"] = { type = "Suffix", affix = "", "(11-18)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "UniqueEffectOfCurses", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHashes = { [2353576063] = { "(11-18)% increased Curse Magnitudes" }, } }, + ["UniqueWatcherVeiledMinionLife"] = { type = "Suffix", affix = "", "Minions have (41-50)% increased maximum Life", statOrder = { 962 }, level = 1, group = "UniqueMinionLife", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (41-50)% increased maximum Life" }, } }, + ["UniqueWatcherVeiledPresenceAreaOfEffect"] = { type = "Suffix", affix = "", "(46-55)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "UniquePresenceAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "aura" }, tradeHashes = { [101878827] = { "(46-55)% increased Presence Area of Effect" }, } }, + ["UniqueWatcherVeiledManaRegeneration"] = { type = "Suffix", affix = "", "(68-91)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "UniqueManaRegeneration", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [789117908] = { "(68-91)% increased Mana Regeneration Rate" }, } }, + ["UniqueWatcherVeiledAlliesInPresenceCastSpeed"] = { type = "Suffix", affix = "", "Allies in your Presence have (8-15)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "UniqueAlliesInPresenceCastSpeed", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "caster", "aura" }, tradeHashes = { [289128254] = { "Allies in your Presence have (8-15)% increased Cast Speed" }, } }, + ["UniqueWatcherVeiledAlliesInPresenceAllElementalResistance"] = { type = "Suffix", affix = "", "Allies in your Presence have +(11-18)% to all Elemental Resistances", statOrder = { 895 }, level = 1, group = "UniqueAlliesInPresenceAllElementalResistance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "elemental", "resistance", "aura" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(11-18)% to all Elemental Resistances" }, } }, + ["UniqueWatcherVeiledAlliesInPresenceFlatLifeRegen"] = { type = "Suffix", affix = "", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 896 }, level = 1, group = "UniqueAlliesInPresenceFlatLifeRegen", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "aura" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (29.1-33) Life per second" }, } }, + ["UniqueWatcherVeiledAlliesInPresenceCriticalHitChance"] = { type = "Suffix", affix = "", "Allies in your Presence have (26-41)% increased Critical Hit Chance", statOrder = { 891 }, level = 1, group = "UniqueAlliesInPresenceCriticalHitChance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "critical", "aura" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (26-41)% increased Critical Hit Chance" }, } }, + ["UniqueKulemakUnholyMightAndMagnitude_1"] = { type = "Prefix", affix = "", "(28-56)% increased Magnitude of Unholy Might buffs you grant", "You have Unholy Might", statOrder = { 4620, 6533 }, level = 1, group = "UniqueUnholyMightAndMagnitude", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2725205297] = { "(28-56)% increased Magnitude of Unholy Might buffs you grant" }, [3007552094] = { "You have Unholy Might" }, } }, + ["UniqueKulemakChaosDamageAndExplosion_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 858, 2906 }, level = 1, group = "UniqueChaosDamageAndExplosion", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-160)% increased Chaos Damage" }, [1776945532] = { "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, + ["UniqueKulemakSpellPhysicalDamageBleedChance_1"] = { type = "Prefix", affix = "", "(100-160)% increased Spell Physical Damage", "(20-30)% chance to inflict Bleeding on Hit", statOrder = { 860, 4532 }, level = 1, group = "UniqueSpellPhysicalAndBleedChance", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "physical" }, tradeHashes = { [2174054121] = { "(20-30)% chance to inflict Bleeding on Hit" }, [2768835289] = { "(100-160)% increased Spell Physical Damage" }, } }, + ["UniqueKulemakChaosDamageCurseLowersChaosRes_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you Curse have -(8-5)% to Chaos Resistance", statOrder = { 858, 3617 }, level = 1, group = "UniqueChaosDamageAndCurseLowersChaosRes", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-160)% increased Chaos Damage" }, [1772929282] = { "Enemies you Curse have -(8-5)% to Chaos Resistance" }, } }, + ["UniqueKulemakSpiritAndSpiritReservationEfficiency_1"] = { type = "Prefix", affix = "", "+(40-60) to Spirit", "(6-10)% increased Spirit Reservation Efficiency of Skills", statOrder = { 873, 4613 }, level = 1, group = "UniqueSpiritAndSpiritReservationEfficiency", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2704225257] = { "+(40-60) to Spirit" }, [53386210] = { "(6-10)% increased Spirit Reservation Efficiency of Skills" }, } }, + ["UniqueKulemakElementalDamageEleAilmentDuration_1"] = { type = "Prefix", affix = "", "(10-20)% increased Duration of Elemental Ailments on Enemies", "(100-160)% increased Elemental Damage", statOrder = { 1544, 1651 }, level = 1, group = "UniqueElementalDamageAndDurationOfEleAilments", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "elemental" }, tradeHashes = { [2604619892] = { "(10-20)% increased Duration of Elemental Ailments on Enemies" }, [3141070085] = { "(100-160)% increased Elemental Damage" }, } }, + ["AbyssModBootsUlamanSuffixLifeRegenMoving"] = { type = "Suffix", affix = "of Ulaman", "(40-50)% increased Life Regeneration Rate while moving", statOrder = { 7061 }, level = 65, group = "LifeRegenerationPlusPercentWhileMoving", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2116424886] = { "(40-50)% increased Life Regeneration Rate while moving" }, } }, } \ No newline at end of file diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index b74300b07..8e9dfbed6 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -22943,6 +22943,14 @@ return { }, }, ["1007380041"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -22999,6 +23007,14 @@ return { }, }, ["1022759479"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23057,6 +23073,14 @@ return { }, }, ["1039268420"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23187,6 +23211,14 @@ return { }, }, ["1087108135"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23196,6 +23228,14 @@ return { }, }, ["1087531620"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23222,6 +23262,14 @@ return { }, }, ["111835965"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23270,6 +23318,14 @@ return { }, }, ["1137305356"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23279,6 +23335,14 @@ return { }, }, ["1145481685"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23288,6 +23352,14 @@ return { }, }, ["1160637284"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23314,6 +23386,14 @@ return { }, }, ["1166140625"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23358,6 +23438,14 @@ return { ["usePositiveSign"] = true, }, ["1185341308"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23614,6 +23702,14 @@ return { }, }, ["1266413530"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23623,6 +23719,14 @@ return { }, }, ["127081978"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23632,6 +23736,14 @@ return { }, }, ["1285594161"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23672,6 +23784,14 @@ return { }, }, ["1309799717"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23732,6 +23852,14 @@ return { }, }, ["1320662475"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23741,6 +23869,14 @@ return { }, }, ["1321104829"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23750,6 +23886,14 @@ return { }, }, ["1323216174"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23759,6 +23903,14 @@ return { }, }, ["1337740333"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23768,6 +23920,14 @@ return { }, }, ["1352561456"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23873,6 +24033,14 @@ return { ["usePositiveSign"] = true, }, ["138421180"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23916,6 +24084,14 @@ return { }, }, ["139889694"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23955,6 +24131,14 @@ return { }, }, ["1417267954"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23982,6 +24166,14 @@ return { ["usePositiveSign"] = true, }, ["1426522529"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23991,6 +24183,14 @@ return { }, }, ["1432756708"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24055,6 +24255,14 @@ return { }, }, ["147764878"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24064,6 +24272,14 @@ return { }, }, ["1494950893"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24073,6 +24289,14 @@ return { }, }, ["1495814176"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24082,6 +24306,14 @@ return { }, }, ["1505023559"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24140,6 +24372,14 @@ return { }, }, ["1514844108"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24209,6 +24449,14 @@ return { ["usePositiveSign"] = true, }, ["1552666713"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24346,6 +24594,14 @@ return { }, }, ["1590846356"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24398,6 +24654,14 @@ return { ["usePositiveSign"] = true, }, ["1602294220"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24424,6 +24688,14 @@ return { }, }, ["1653682082"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24621,6 +24893,14 @@ return { }, }, ["1756380435"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24628,6 +24908,7 @@ return { ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, ["1772247089"] = { ["AnyJewel"] = { @@ -24647,6 +24928,14 @@ return { }, }, ["1773308808"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24673,6 +24962,14 @@ return { }, }, ["1777421941"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24707,6 +25004,14 @@ return { }, }, ["179541474"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24733,6 +25038,14 @@ return { }, }, ["1800303440"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24789,6 +25102,14 @@ return { }, }, ["1834658952"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24836,6 +25157,14 @@ return { }, }, ["1846980580"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24843,8 +25172,17 @@ return { ["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"] = { @@ -24988,6 +25326,14 @@ return { }, }, ["1892122971"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24997,6 +25343,14 @@ return { }, }, ["1896066427"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25072,6 +25426,14 @@ return { }, }, ["1944020877"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25112,6 +25474,14 @@ return { ["usePositiveSign"] = true, }, ["1994296038"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25201,6 +25571,14 @@ return { }, }, ["2056107438"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25210,6 +25588,14 @@ return { }, }, ["2066964205"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25219,6 +25605,14 @@ return { }, }, ["2077117738"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25324,6 +25718,14 @@ return { }, }, ["2107703111"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25333,6 +25735,14 @@ return { }, }, ["2108821127"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25385,6 +25795,14 @@ return { }, }, ["2131720304"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25408,6 +25826,14 @@ return { ["usePositiveSign"] = true, }, ["2149603090"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25494,6 +25920,14 @@ return { }, }, ["2202308025"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25503,6 +25937,14 @@ return { }, }, ["221701169"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25626,6 +26068,14 @@ return { ["usePositiveSign"] = true, }, ["2256120736"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25635,6 +26085,14 @@ return { }, }, ["2272980012"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25661,6 +26119,14 @@ return { }, }, ["2320654813"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25691,6 +26157,14 @@ return { }, }, ["2334956771"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25788,6 +26262,14 @@ return { }, }, ["2359002191"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25810,6 +26292,14 @@ return { }, }, ["2374711847"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25819,6 +26309,14 @@ return { }, }, ["2392824305"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25856,8 +26354,16 @@ return { ["text"] = "Grants #% of Life Recovery to Minions", ["type"] = "explicit", }, - }, - ["2421151933"] = { + }, + ["2421151933"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25884,6 +26390,14 @@ return { }, }, ["2442527254"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25957,6 +26471,14 @@ return { ["usePositiveSign"] = true, }, ["2466785537"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26162,6 +26684,14 @@ return { }, }, ["2534359663"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26171,6 +26701,14 @@ return { }, }, ["253641217"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26210,6 +26748,14 @@ return { }, }, ["255840549"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26219,6 +26765,15 @@ return { }, }, ["2580617872"] = { + ["AnyJewel"] = { + ["max"] = -2, + ["min"] = -5, + }, + ["RadiusJewel"] = { + ["max"] = -2, + ["min"] = -5, + }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26256,6 +26811,14 @@ return { }, }, ["2610562860"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26282,6 +26845,14 @@ return { }, }, ["2638756573"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26317,6 +26888,14 @@ return { }, }, ["266564538"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26357,6 +26936,14 @@ return { }, }, ["2690740379"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26433,6 +27020,14 @@ return { }, }, ["2704905000"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26459,6 +27054,14 @@ return { }, }, ["2709646369"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26485,6 +27088,14 @@ return { }, }, ["2726713579"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26577,6 +27188,14 @@ return { }, }, ["2768899959"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26586,6 +27205,14 @@ return { }, }, ["2770044702"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26625,6 +27252,14 @@ return { }, }, ["2809428780"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26634,6 +27269,14 @@ return { }, }, ["2822644689"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26660,6 +27303,14 @@ return { }, }, ["2840989393"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26686,6 +27337,14 @@ return { }, }, ["2849546516"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26754,6 +27413,14 @@ return { }, }, ["288364275"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26847,6 +27514,14 @@ return { ["usePositiveSign"] = true, }, ["2907381231"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26856,6 +27531,14 @@ return { }, }, ["2912416697"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26944,6 +27627,14 @@ return { }, }, ["2954360902"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -27003,6 +27694,14 @@ return { }, }, ["2969557004"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -27066,6 +27765,14 @@ return { }, }, ["2976476845"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -27324,6 +28031,14 @@ return { }, }, ["30438393"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -27350,6 +28065,14 @@ return { }, }, ["3065378291"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -27376,6 +28099,14 @@ return { }, }, ["3088348485"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -27402,6 +28133,14 @@ return { }, }, ["3106718406"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -27411,6 +28150,14 @@ return { }, }, ["3113764475"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -27511,6 +28258,14 @@ return { ["usePositiveSign"] = true, }, ["3171212276"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -27518,8 +28273,16 @@ return { ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", ["type"] = "explicit", }, - }, - ["3173882956"] = { + }, + ["3173882956"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -27619,6 +28382,14 @@ return { }, }, ["3222402650"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -27628,6 +28399,14 @@ return { }, }, ["3225608889"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -27635,6 +28414,7 @@ return { ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, ["3233599707"] = { ["specialCaseData"] = { @@ -27655,6 +28435,14 @@ return { }, }, ["3256879910"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28255,6 +29043,14 @@ return { }, }, ["3386297724"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28264,6 +29060,14 @@ return { }, }, ["3391917254"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28273,6 +29077,14 @@ return { }, }, ["3394832998"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28282,6 +29094,14 @@ return { }, }, ["3395186672"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28325,6 +29145,14 @@ return { }, }, ["3409275777"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28351,6 +29179,14 @@ return { }, }, ["3419203492"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28438,6 +29274,14 @@ return { ["usePositiveSign"] = true, }, ["3513818125"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28514,6 +29358,14 @@ return { }, }, ["3579898587"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28578,6 +29430,14 @@ return { }, }, ["3628935286"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28673,6 +29533,14 @@ return { }, }, ["3641543553"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28682,6 +29550,14 @@ return { }, }, ["3665922113"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28691,6 +29567,14 @@ return { }, }, ["3666476747"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28717,6 +29601,14 @@ return { }, }, ["3669820740"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28830,6 +29722,14 @@ return { }, }, ["3700202631"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28886,6 +29786,14 @@ return { }, }, ["3752589831"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28946,6 +29854,14 @@ return { }, }, ["3774951878"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28989,6 +29905,14 @@ return { }, }, ["378796798"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29032,6 +29956,14 @@ return { }, }, ["3821543413"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29137,6 +30069,14 @@ return { }, }, ["3856744003"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29146,6 +30086,14 @@ return { }, }, ["3858398337"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29155,6 +30103,14 @@ return { }, }, ["3859848445"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29164,6 +30120,14 @@ return { }, }, ["3865605585"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29259,6 +30223,14 @@ return { }, }, ["391602279"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29297,6 +30269,14 @@ return { }, }, ["3936121440"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29306,6 +30286,14 @@ return { }, }, ["394473632"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29536,6 +30524,14 @@ return { }, }, ["4032352472"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29712,6 +30708,14 @@ return { }, }, ["4089835882"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29719,8 +30723,16 @@ return { ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", ["type"] = "explicit", }, - }, - ["4092130601"] = { + }, + ["4092130601"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29773,6 +30785,14 @@ return { }, }, ["412709880"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29808,6 +30828,14 @@ return { }, }, ["4142814612"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29868,6 +30896,14 @@ return { }, }, ["4162678661"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29877,6 +30913,14 @@ return { }, }, ["4173554949"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29886,6 +30930,14 @@ return { }, }, ["4180952808"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30053,6 +31105,14 @@ return { }, }, ["4258720395"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30113,6 +31173,14 @@ return { }, }, ["442393998"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30139,6 +31207,14 @@ return { }, }, ["455816363"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30165,6 +31241,14 @@ return { }, }, ["462424929"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30220,6 +31304,14 @@ return { }, }, ["473917671"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30229,6 +31321,14 @@ return { }, }, ["484792219"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30255,6 +31355,14 @@ return { }, }, ["504915064"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30264,6 +31372,14 @@ return { }, }, ["517664839"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30336,6 +31452,14 @@ return { }, }, ["525523040"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30375,6 +31499,14 @@ return { ["usePositiveSign"] = true, }, ["533892981"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30518,6 +31650,14 @@ return { ["usePositiveSign"] = true, }, ["593241812"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30527,6 +31667,14 @@ return { }, }, ["61644361"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30596,6 +31744,14 @@ return { }, }, ["654207792"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30785,6 +31941,14 @@ return { ["usePositiveSign"] = true, }, ["693237939"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -30904,6 +32068,14 @@ return { }, }, ["715957346"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -31313,6 +32485,14 @@ return { }, }, ["821948283"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -31331,6 +32511,14 @@ return { }, }, ["830345042"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -31340,6 +32528,14 @@ return { }, }, ["844449513"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -31366,6 +32562,14 @@ return { }, }, ["868556494"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -31516,6 +32720,14 @@ return { }, }, ["942519401"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -31525,6 +32737,14 @@ return { }, }, ["944643028"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -31534,6 +32754,14 @@ return { }, }, ["945774314"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -31556,6 +32784,14 @@ return { }, }, ["980177976"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -33036,7 +34272,7 @@ return { ["usePositiveSign"] = true, }, ["101878827"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 30, ["min"] = 30, }, @@ -33337,7 +34573,7 @@ return { ["usePositiveSign"] = true, }, ["1250712710"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 14, ["min"] = 14, }, @@ -33728,7 +34964,7 @@ return { }, }, ["1574590649"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 15, ["min"] = 15, }, @@ -33872,7 +35108,7 @@ return { }, }, ["1798257884"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 30, ["min"] = 30, }, @@ -33938,7 +35174,7 @@ return { }, }, ["1998951374"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 8, ["min"] = 8, }, @@ -34572,7 +35808,7 @@ return { }, }, ["2854751904"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 20.5, ["min"] = 20.5, }, @@ -34611,7 +35847,7 @@ return { }, }, ["289128254"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 8, ["min"] = 8, }, @@ -35000,7 +36236,7 @@ return { }, }, ["3057012405"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 14, ["min"] = 14, }, @@ -35787,7 +37023,7 @@ return { }, }, ["3742865955"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 40, ["min"] = 40, }, @@ -35808,6 +37044,7 @@ return { }, }, ["3759663284"] = { +<<<<<<< HEAD <<<<<<< HEAD ["Bow"] = { ["max"] = 20, @@ -35815,6 +37052,9 @@ return { }, ======= ["2HWeapon"] = { +======= + ["Bow"] = { +>>>>>>> 62bfc4a7b (Fix weight generation for radius jewels again) ["max"] = 20, ["min"] = 20, }, @@ -35874,7 +37114,7 @@ return { }, }, ["3850614073"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 8, ["min"] = 8, }, @@ -35958,6 +37198,7 @@ return { }, }, ["3885405204"] = { +<<<<<<< HEAD <<<<<<< HEAD ["Bow"] = { ["max"] = 1, @@ -35965,6 +37206,9 @@ return { }, ======= ["2HWeapon"] = { +======= + ["Bow"] = { +>>>>>>> 62bfc4a7b (Fix weight generation for radius jewels again) ["max"] = 1, ["min"] = 1, }, @@ -36139,7 +37383,7 @@ return { ["usePositiveSign"] = true, }, ["3984865854"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 10, ["min"] = 10, }, @@ -36152,7 +37396,7 @@ return { }, }, ["4010677958"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 8, ["min"] = 8, }, diff --git a/src/Export/Scripts/mods.lua b/src/Export/Scripts/mods.lua index da8f0bff6..53140c3c2 100644 --- a/src/Export/Scripts/mods.lua +++ b/src/Export/Scripts/mods.lua @@ -191,18 +191,28 @@ 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:: From 11cbb4b7188ed305b7f6b17b6e01fe602675f0b2 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 1 Jun 2026 11:30:55 +0300 Subject: [PATCH 06/11] regen data files --- src/Data/ModCharm.lua | 102 +- src/Data/ModCorrupted.lua | 254 +- src/Data/ModFlask.lua | 156 +- src/Data/ModIncursionLimb.lua | 24 +- src/Data/ModItem.lua | 4269 +++----- src/Data/QueryMods.lua | 18030 +++++++++++++++++--------------- 6 files changed, 11416 insertions(+), 11419 deletions(-) diff --git a/src/Data/ModCharm.lua b/src/Data/ModCharm.lua index c2022eb82..9d03df615 100644 --- a/src/Data/ModCharm.lua +++ b/src/Data/ModCharm.lua @@ -2,55 +2,55 @@ -- Item data (c) Grinding Gear Games return { - ["FlaskChargesAddedIncreasePercent1"] = { type = "Suffix", affix = "of the Constant", "(23-30)% increased Charges gained", statOrder = { 1071 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(23-30)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent2_"] = { type = "Suffix", affix = "of the Continuous", "(31-38)% increased Charges gained", statOrder = { 1071 }, level = 13, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-38)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent3_"] = { type = "Suffix", affix = "of the Endless", "(39-46)% increased Charges gained", statOrder = { 1071 }, level = 33, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(39-46)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent4_"] = { type = "Suffix", affix = "of the Bottomless", "(47-54)% increased Charges gained", statOrder = { 1071 }, level = 48, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(47-54)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent5__"] = { type = "Suffix", affix = "of the Perpetual", "(55-62)% increased Charges gained", statOrder = { 1071 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-62)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent6"] = { type = "Suffix", affix = "of the Eternal", "(63-70)% increased Charges gained", statOrder = { 1071 }, level = 82, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(63-70)% increased Charges gained" }, } }, - ["FlaskExtraCharges1"] = { type = "Suffix", affix = "of the Wide", "(23-30)% increased Charges", statOrder = { 1074 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(23-30)% increased Charges" }, } }, - ["FlaskExtraCharges2__"] = { type = "Suffix", affix = "of the Copious", "(31-38)% increased Charges", statOrder = { 1074 }, level = 12, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(31-38)% increased Charges" }, } }, - ["FlaskExtraCharges3_"] = { type = "Suffix", affix = "of the Plentiful", "(39-46)% increased Charges", statOrder = { 1074 }, level = 32, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(39-46)% increased Charges" }, } }, - ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1074 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, - ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1074 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, - ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1074 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, - ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1072 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, - ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1072 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, - ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1072 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, - ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1072 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, - ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1072 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, - ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1072 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, - ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 617 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.15 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 617 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.2 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 617 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.25 Charges per Second" }, } }, - ["CharmIncreasedDuration1"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 927 }, level = 1, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(16-20)% increased Duration" }, } }, - ["CharmIncreasedDuration2"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 927 }, level = 20, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(21-25)% increased Duration" }, } }, - ["CharmIncreasedDuration3"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 927 }, level = 42, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(26-30)% increased Duration" }, } }, - ["CharmIncreasedDuration4"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 927 }, level = 61, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(31-35)% increased Duration" }, } }, - ["CharmIncreasedDuration5"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 927 }, level = 78, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(36-40)% increased Duration" }, } }, - ["CharmGainLifeOnUse1"] = { type = "Prefix", affix = "Herbal", "Recover (8-12) Life when Used", statOrder = { 925 }, level = 1, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (8-12) Life when Used" }, } }, - ["CharmGainLifeOnUse2"] = { type = "Prefix", affix = "Floral", "Recover (35-52) Life when Used", statOrder = { 925 }, level = 14, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (35-52) Life when Used" }, } }, - ["CharmGainLifeOnUse3"] = { type = "Prefix", affix = "Blooming", "Recover (63-92) Life when Used", statOrder = { 925 }, level = 26, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (63-92) Life when Used" }, } }, - ["CharmGainLifeOnUse4"] = { type = "Prefix", affix = "Sprouting", "Recover (96-130) Life when Used", statOrder = { 925 }, level = 36, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (96-130) Life when Used" }, } }, - ["CharmGainLifeOnUse5"] = { type = "Prefix", affix = "Petaled", "Recover (134-180) Life when Used", statOrder = { 925 }, level = 47, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (134-180) Life when Used" }, } }, - ["CharmGainLifeOnUse6"] = { type = "Prefix", affix = "Botanic", "Recover (185-230) Life when Used", statOrder = { 925 }, level = 58, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (185-230) Life when Used" }, } }, - ["CharmGainLifeOnUse7"] = { type = "Prefix", affix = "Natural", "Recover (235-280) Life when Used", statOrder = { 925 }, level = 67, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (235-280) Life when Used" }, } }, - ["CharmGainLifeOnUse8"] = { type = "Prefix", affix = "Evergreen", "Recover (285-350) Life when Used", statOrder = { 925 }, level = 76, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (285-350) Life when Used" }, } }, - ["CharmGainManaOnUse1"] = { type = "Prefix", affix = "Drizzling", "Recover (16-24) Mana when Used", statOrder = { 926 }, level = 1, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (16-24) Mana when Used" }, } }, - ["CharmGainManaOnUse2"] = { type = "Prefix", affix = "Soaked", "Recover (33-50) Mana when Used", statOrder = { 926 }, level = 14, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (33-50) Mana when Used" }, } }, - ["CharmGainManaOnUse3"] = { type = "Prefix", affix = "Mistbound", "Recover (55-75) Mana when Used", statOrder = { 926 }, level = 26, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (55-75) Mana when Used" }, } }, - ["CharmGainManaOnUse4"] = { type = "Prefix", affix = "Tidebound", "Recover (80-110) Mana when Used", statOrder = { 926 }, level = 36, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (80-110) Mana when Used" }, } }, - ["CharmGainManaOnUse5"] = { type = "Prefix", affix = "Aqueous", "Recover (115-145) Mana when Used", statOrder = { 926 }, level = 47, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (115-145) Mana when Used" }, } }, - ["CharmGainManaOnUse6"] = { type = "Prefix", affix = "Flooded", "Recover (150-180) Mana when Used", statOrder = { 926 }, level = 58, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (150-180) Mana when Used" }, } }, - ["CharmGainManaOnUse7"] = { type = "Prefix", affix = "Oceanic", "Recover (185-225) Mana when Used", statOrder = { 926 }, level = 67, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (185-225) Mana when Used" }, } }, - ["CharmGainManaOnUse8"] = { type = "Prefix", affix = "Raindancer's", "Recover (230-300) Mana when Used", statOrder = { 926 }, level = 76, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (230-300) Mana when Used" }, } }, - ["CharmGuardWhileActive1"] = { type = "Prefix", affix = "Sunny", "Also grants (44-66) Guard", statOrder = { 924 }, level = 10, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (44-66) Guard" }, } }, - ["CharmGuardWhileActive2"] = { type = "Prefix", affix = "Dawnlit", "Also grants (85-128) Guard", statOrder = { 924 }, level = 21, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (85-128) Guard" }, } }, - ["CharmGuardWhileActive3"] = { type = "Prefix", affix = "Bright", "Also grants (148-200) Guard", statOrder = { 924 }, level = 36, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (148-200) Guard" }, } }, - ["CharmGuardWhileActive4"] = { type = "Prefix", affix = "Vibrant", "Also grants (205-260) Guard", statOrder = { 924 }, level = 48, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (205-260) Guard" }, } }, - ["CharmGuardWhileActive5"] = { type = "Prefix", affix = "Lustrous", "Also grants (265-350) Guard", statOrder = { 924 }, level = 60, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (265-350) Guard" }, } }, - ["CharmGuardWhileActive6"] = { type = "Prefix", affix = "Sunburst", "Also grants (355-500) Guard", statOrder = { 924 }, level = 75, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (355-500) Guard" }, } }, + ["FlaskChargesAddedIncreasePercent1"] = { type = "Suffix", affix = "of the Constant", "(23-30)% increased Charges gained", statOrder = { 1005 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(23-30)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent2_"] = { type = "Suffix", affix = "of the Continuous", "(31-38)% increased Charges gained", statOrder = { 1005 }, level = 13, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-38)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent3_"] = { type = "Suffix", affix = "of the Endless", "(39-46)% increased Charges gained", statOrder = { 1005 }, level = 33, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(39-46)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent4_"] = { type = "Suffix", affix = "of the Bottomless", "(47-54)% increased Charges gained", statOrder = { 1005 }, level = 48, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(47-54)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent5__"] = { type = "Suffix", affix = "of the Perpetual", "(55-62)% increased Charges gained", statOrder = { 1005 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-62)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent6"] = { type = "Suffix", affix = "of the Eternal", "(63-70)% increased Charges gained", statOrder = { 1005 }, level = 82, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(63-70)% increased Charges gained" }, } }, + ["FlaskExtraCharges1"] = { type = "Suffix", affix = "of the Wide", "(23-30)% increased Charges", statOrder = { 1008 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(23-30)% increased Charges" }, } }, + ["FlaskExtraCharges2__"] = { type = "Suffix", affix = "of the Copious", "(31-38)% increased Charges", statOrder = { 1008 }, level = 12, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(31-38)% increased Charges" }, } }, + ["FlaskExtraCharges3_"] = { type = "Suffix", affix = "of the Plentiful", "(39-46)% increased Charges", statOrder = { 1008 }, level = 32, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(39-46)% increased Charges" }, } }, + ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1008 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, + ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1008 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, + ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1008 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, + ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, + ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1006 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, + ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1006 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, + ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1006 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, + ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1006 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, + ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1006 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, + ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 610 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.15 Charges per Second" }, } }, + ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 610 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.2 Charges per Second" }, } }, + ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 610 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.25 Charges per Second" }, } }, + ["CharmIncreasedDuration1"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 903 }, level = 1, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2541588185] = { "(16-20)% increased Duration" }, } }, + ["CharmIncreasedDuration2"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 903 }, level = 20, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2541588185] = { "(21-25)% increased Duration" }, } }, + ["CharmIncreasedDuration3"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 903 }, level = 42, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2541588185] = { "(26-30)% increased Duration" }, } }, + ["CharmIncreasedDuration4"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 903 }, level = 61, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2541588185] = { "(31-35)% increased Duration" }, } }, + ["CharmIncreasedDuration5"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 903 }, level = 78, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2541588185] = { "(36-40)% increased Duration" }, } }, + ["CharmGainLifeOnUse1"] = { type = "Prefix", affix = "Herbal", "Recover (8-12) Life when Used", statOrder = { 901 }, level = 1, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (8-12) Life when Used" }, } }, + ["CharmGainLifeOnUse2"] = { type = "Prefix", affix = "Floral", "Recover (35-52) Life when Used", statOrder = { 901 }, level = 14, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (35-52) Life when Used" }, } }, + ["CharmGainLifeOnUse3"] = { type = "Prefix", affix = "Blooming", "Recover (63-92) Life when Used", statOrder = { 901 }, level = 26, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (63-92) Life when Used" }, } }, + ["CharmGainLifeOnUse4"] = { type = "Prefix", affix = "Sprouting", "Recover (96-130) Life when Used", statOrder = { 901 }, level = 36, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (96-130) Life when Used" }, } }, + ["CharmGainLifeOnUse5"] = { type = "Prefix", affix = "Petaled", "Recover (134-180) Life when Used", statOrder = { 901 }, level = 47, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (134-180) Life when Used" }, } }, + ["CharmGainLifeOnUse6"] = { type = "Prefix", affix = "Botanic", "Recover (185-230) Life when Used", statOrder = { 901 }, level = 58, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (185-230) Life when Used" }, } }, + ["CharmGainLifeOnUse7"] = { type = "Prefix", affix = "Natural", "Recover (235-280) Life when Used", statOrder = { 901 }, level = 67, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (235-280) Life when Used" }, } }, + ["CharmGainLifeOnUse8"] = { type = "Prefix", affix = "Evergreen", "Recover (285-350) Life when Used", statOrder = { 901 }, level = 76, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (285-350) Life when Used" }, } }, + ["CharmGainManaOnUse1"] = { type = "Prefix", affix = "Drizzling", "Recover (16-24) Mana when Used", statOrder = { 902 }, level = 1, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (16-24) Mana when Used" }, } }, + ["CharmGainManaOnUse2"] = { type = "Prefix", affix = "Soaked", "Recover (33-50) Mana when Used", statOrder = { 902 }, level = 14, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (33-50) Mana when Used" }, } }, + ["CharmGainManaOnUse3"] = { type = "Prefix", affix = "Mistbound", "Recover (55-75) Mana when Used", statOrder = { 902 }, level = 26, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (55-75) Mana when Used" }, } }, + ["CharmGainManaOnUse4"] = { type = "Prefix", affix = "Tidebound", "Recover (80-110) Mana when Used", statOrder = { 902 }, level = 36, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (80-110) Mana when Used" }, } }, + ["CharmGainManaOnUse5"] = { type = "Prefix", affix = "Aqueous", "Recover (115-145) Mana when Used", statOrder = { 902 }, level = 47, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (115-145) Mana when Used" }, } }, + ["CharmGainManaOnUse6"] = { type = "Prefix", affix = "Flooded", "Recover (150-180) Mana when Used", statOrder = { 902 }, level = 58, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (150-180) Mana when Used" }, } }, + ["CharmGainManaOnUse7"] = { type = "Prefix", affix = "Oceanic", "Recover (185-225) Mana when Used", statOrder = { 902 }, level = 67, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (185-225) Mana when Used" }, } }, + ["CharmGainManaOnUse8"] = { type = "Prefix", affix = "Raindancer's", "Recover (230-300) Mana when Used", statOrder = { 902 }, level = 76, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (230-300) Mana when Used" }, } }, + ["CharmGuardWhileActive1"] = { type = "Prefix", affix = "Sunny", "Also grants (44-66) Guard", statOrder = { 900 }, level = 10, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (44-66) Guard" }, } }, + ["CharmGuardWhileActive2"] = { type = "Prefix", affix = "Dawnlit", "Also grants (85-128) Guard", statOrder = { 900 }, level = 21, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (85-128) Guard" }, } }, + ["CharmGuardWhileActive3"] = { type = "Prefix", affix = "Bright", "Also grants (148-200) Guard", statOrder = { 900 }, level = 36, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (148-200) Guard" }, } }, + ["CharmGuardWhileActive4"] = { type = "Prefix", affix = "Vibrant", "Also grants (205-260) Guard", statOrder = { 900 }, level = 48, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (205-260) Guard" }, } }, + ["CharmGuardWhileActive5"] = { type = "Prefix", affix = "Lustrous", "Also grants (265-350) Guard", statOrder = { 900 }, level = 60, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (265-350) Guard" }, } }, + ["CharmGuardWhileActive6"] = { type = "Prefix", affix = "Sunburst", "Also grants (355-500) Guard", statOrder = { 900 }, level = 75, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (355-500) Guard" }, } }, } \ No newline at end of file diff --git a/src/Data/ModCorrupted.lua b/src/Data/ModCorrupted.lua index 6db67c201..315b8b25d 100644 --- a/src/Data/ModCorrupted.lua +++ b/src/Data/ModCorrupted.lua @@ -2,131 +2,131 @@ -- Item data (c) Grinding Gear Games return { - ["CorruptionLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(15-25)% increased Armour" }, } }, - ["CorruptionLocalIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(15-25)% increased Evasion Rating" }, } }, - ["CorruptionLocalIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(15-25)% increased Energy Shield" }, } }, - ["CorruptionLocalIncreasedArmourAndEvasion1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(15-25)% increased Armour and Evasion" }, } }, - ["CorruptionLocalIncreasedArmourAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(15-25)% increased Armour and Energy Shield" }, } }, - ["CorruptionLocalIncreasedEvasionAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(15-25)% increased Evasion and Energy Shield" }, } }, - ["CorruptionReducedLocalAttributeRequirements1"] = { type = "Corrupted", affix = "", "(10-20)% reduced Attribute Requirements", statOrder = { 947 }, level = 1, group = "LocalAttributeRequirements", weightKey = { "armour", "weapon", "wand", "staff", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "(10-20)% reduced Attribute Requirements" }, } }, - ["CorruptionAdditionalPhysicalDamageReduction1"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction", statOrder = { 1005 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, - ["CorruptionDamageTakenGainedAsLife1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["CorruptionDamageTakenGainedAsMana1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["CorruptionLifeLeech1"] = { type = "Corrupted", affix = "", "Leech 3% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 3% of Physical Attack Damage as Life" }, } }, - ["CorruptionManaLeech1"] = { type = "Corrupted", affix = "", "Leech 2% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech 2% of Physical Attack Damage as Mana" }, } }, - ["CorruptionMaximumElementalResistance1"] = { type = "Corrupted", affix = "", "+1% 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", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["CorruptionIncreasedLife1"] = { type = "Corrupted", affix = "", "+(30-40) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["CorruptionIncreasedMana1"] = { type = "Corrupted", affix = "", "+(20-25) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { "focus", "quiver", "ring", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } }, - ["CorruptionIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 881 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(15-25)% increased Armour" }, } }, - ["CorruptionIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 883 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-25)% increased Evasion Rating" }, } }, - ["CorruptionIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased maximum Energy Shield", statOrder = { 885 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-25)% increased maximum Energy Shield" }, } }, - ["CorruptionThornsDamageIncrease1"] = { type = "Corrupted", affix = "", "(40-50)% increased Thorns damage", statOrder = { 10213 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(40-50)% increased Thorns damage" }, } }, - ["CorruptionChaosResistance1"] = { type = "Corrupted", affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, - ["CorruptionFireResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["CorruptionColdResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, - ["CorruptionLightningResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-25)% to Lightning Resistance" }, } }, - ["CorruptionMaximumFireResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Fire Resistance", statOrder = { 1008 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(1-3)% to Maximum Fire Resistance" }, } }, - ["CorruptionMaximumColdResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(1-3)% to Maximum Cold Resistance" }, } }, - ["CorruptionMaximumLightningResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(1-3)% to Maximum Lightning Resistance" }, } }, - ["CorruptionIncreasedSpirit1"] = { type = "Corrupted", affix = "", "+(20-30) to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(20-30) to Spirit" }, } }, - ["CorruptionFirePenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Fire Resistance", statOrder = { 2722 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (10-15)% Fire Resistance" }, } }, - ["CorruptionColdPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Cold Resistance", statOrder = { 2723 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (10-15)% Cold Resistance" }, } }, - ["CorruptionLightningPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Lightning Resistance", statOrder = { 2724 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-15)% Lightning Resistance" }, } }, - ["CorruptionArmourBreak1"] = { type = "Corrupted", affix = "", "Break (10-15)% increased Armour", statOrder = { 4397 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (10-15)% increased Armour" }, } }, - ["CorruptionGoldFoundIncrease1"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["CorruptionMaximumEnduranceCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1557 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["CorruptionMaximumFrenzyCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1562 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["CorruptionMaximumPowerCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1567 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["CorruptionIncreasedAccuracy1"] = { type = "Corrupted", affix = "", "+(50-100) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { "helmet", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(50-100) to Accuracy Rating" }, } }, - ["CorruptionMovementVelocity1"] = { type = "Corrupted", affix = "", "(3-5)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-5)% increased Movement Speed" }, } }, - ["CorruptionIncreasedStunThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2981 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, - ["CorruptionIncreasedFreezeThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Threshold", statOrder = { 2982 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3780644166] = { "(20-30)% increased Freeze Threshold" }, } }, - ["CorruptionSlowPotency1"] = { type = "Corrupted", affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, - ["CorruptionLifeRegenerationPercent1"] = { type = "Corrupted", affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of maximum Life per second" }, } }, - ["CorruptionLifeRegenerationRate1"] = { type = "Corrupted", affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1035 }, level = 1, group = "LifeRegenerationRate", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } }, - ["CorruptionManaRegeneration1"] = { type = "Corrupted", affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["CorruptionLocalBlockChance1"] = { type = "Corrupted", affix = "", "(10-15)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, - ["CorruptionMaximumBlockChance1"] = { type = "Corrupted", affix = "", "+3% to maximum Block chance", statOrder = { 1732 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [480796730] = { "+3% to maximum Block chance" }, } }, - ["CorruptionGainLifeOnBlock1"] = { type = "Corrupted", affix = "", "(20-25) Life gained when you Block", statOrder = { 1517 }, level = 1, group = "GainLifeOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(20-25) Life gained when you Block" }, } }, - ["CorruptionGainManaOnBlock1"] = { type = "Corrupted", affix = "", "(10-15) Mana gained when you Block", statOrder = { 1518 }, level = 1, group = "GainManaOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(10-15) Mana gained when you Block" }, } }, - ["CorruptionAllResistances1"] = { type = "Corrupted", affix = "", "+(5-10)% 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", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["CorruptionGlobalFireSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["CorruptionGlobalColdSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["CorruptionGlobalLightningSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["CorruptionGlobalChaosSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["CorruptionGlobalPhysicalSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["CorruptionGlobalMinionSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Minion Skills", statOrder = { 971 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, - ["CorruptionGlobalMeleeSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Melee Skills", statOrder = { 965 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, - ["CorruptionGlobalTrapSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 1, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, - ["CorruptionItemFoundRarityIncrease1"] = { type = "Corrupted", affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, - ["CorruptionAllDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage", statOrder = { 1149 }, level = 1, group = "AllDamage", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(20-30)% increased Damage" }, } }, - ["CorruptionIncreasedSkillSpeed1"] = { type = "Corrupted", affix = "", "(4-6)% increased Skill Speed", statOrder = { 836 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(4-6)% increased Skill Speed" }, } }, - ["CorruptionCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "(15-20)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-20)% increased Critical Damage Bonus" }, } }, - ["CorruptionGlobalSkillGemLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Skills", statOrder = { 948 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, - ["CorruptionStrength1"] = { type = "Corrupted", affix = "", "+(10-15) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["CorruptionDexterity1"] = { type = "Corrupted", affix = "", "+(10-15) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["CorruptionIntelligence1"] = { type = "Corrupted", affix = "", "+(10-15) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, - ["CorruptionIncreasedSlowEffect1"] = { type = "Corrupted", affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4679 }, level = 1, group = "SlowEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, - ["CorruptionWeaponSwapSpeed1"] = { type = "Corrupted", affix = "", "(20-30)% increased Weapon Swap Speed", statOrder = { 10493 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(20-30)% increased Weapon Swap Speed" }, } }, - ["CorruptionLifeFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Life Flasks gain (0.08-0.17) charges per Second", statOrder = { 6869 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.08-0.17) charges per Second" }, } }, - ["CorruptionManaFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Mana Flasks gain (0.08-0.17) charges per Second", statOrder = { 6870 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.08-0.17) charges per Second" }, } }, - ["CorruptionCharmChargeGeneration1"] = { type = "Corrupted", affix = "", "Charms gain (0.08-0.17) charges per Second", statOrder = { 6866 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain (0.08-0.17) charges per Second" }, } }, - ["CorruptionLocalIncreasedPhysicalDamagePercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(15-25)% increased Physical Damage" }, } }, - ["CorruptionSpellDamageOnWeapon1"] = { type = "Corrupted", affix = "", "(20-30)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["CorruptionSpellDamageOnTwoHandWeapon1"] = { type = "Corrupted", affix = "", "(40-60)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, - ["CorruptionLocalIncreasedSpiritPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Spirit", statOrder = { 856 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(15-25)% increased Spirit" }, } }, - ["CorruptionLocalAddedFireDamage1"] = { type = "Corrupted", affix = "", "Adds (9-14) to (15-22) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (9-14) to (15-22) Fire Damage" }, } }, - ["CorruptionLocalAddedFireDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (13-20) to (21-31) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-20) to (21-31) Fire Damage" }, } }, - ["CorruptionLocalAddedColdDamage1"] = { type = "Corrupted", affix = "", "Adds (8-12) to (13-19) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-12) to (13-19) Cold Damage" }, } }, - ["CorruptionLocalAddedColdDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (11-17) to (18-26) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-17) to (18-26) Cold Damage" }, } }, - ["CorruptionLocalAddedLightningDamage1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (29-43) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (29-43) Lightning Damage" }, } }, - ["CorruptionLocalAddedLightningDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (1-3) to (41-61) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (41-61) Lightning Damage" }, } }, - ["CorruptionLocalAddedChaosDamage1"] = { type = "Corrupted", affix = "", "Adds (7-11) to (12-18) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (7-11) to (12-18) Chaos damage" }, } }, - ["CorruptionLocalAddedChaosDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (10-16) to (17-25) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (10-16) to (17-25) Chaos damage" }, } }, - ["CorruptionLocalIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "(6-8)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-8)% increased Attack Speed" }, } }, - ["CorruptionLocalCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 944 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(5-10)% to Critical Damage Bonus" }, } }, - ["CorruptionLocalStunDamageIncrease1"] = { type = "Corrupted", affix = "", "Causes (20-30)% 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 = { }, tradeHashes = { [791928121] = { "Causes (20-30)% increased Stun Buildup" }, } }, - ["CorruptionLocalWeaponRangeIncrease1"] = { type = "Corrupted", affix = "", "(10-20)% 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 = { "attack" }, tradeHashes = { [548198834] = { "(10-20)% increased Melee Strike Range with this weapon" }, } }, - ["CorruptionLocalChanceToBleed1"] = { type = "Corrupted", affix = "", "(10-15)% 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", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(10-15)% chance to cause Bleeding on Hit" }, } }, - ["CorruptionLocalChanceToPoison1"] = { type = "Corrupted", affix = "", "(10-15)% 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", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(10-15)% chance to Poison on Hit with this weapon" }, } }, - ["CorruptionLocalRageOnHit1"] = { type = "Corrupted", affix = "", "Grants 1 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 = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, - ["CorruptionLocalChanceToMaim1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Maim on Hit", statOrder = { 7772 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(10-15)% chance to Maim on Hit" }, } }, - ["CorruptionLocalChanceToBlind1"] = { type = "Corrupted", affix = "", "(5-10)% chance to Blind Enemies on hit", statOrder = { 2011 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [2301191210] = { "(5-10)% chance to Blind Enemies on hit" }, } }, - ["CorruptionWeaponElementalDamage1"] = { type = "Corrupted", affix = "", "(20-30)% 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", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attacks" }, } }, - ["CorruptionWeaponElementalDamageTwoHand1"] = { type = "Corrupted", affix = "", "(40-50)% 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", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(40-50)% increased Elemental Damage with Attacks" }, } }, - ["CorruptionAdditionalArrows1"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 989 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["CorruptionAdditionalAmmo1"] = { type = "Corrupted", affix = "", "Loads an additional bolt", statOrder = { 987 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["CorruptionIgniteChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(20-30)% increased Flammability Magnitude" }, } }, - ["CorruptionFreezeDamageIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Buildup", statOrder = { 1056 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(20-30)% increased Freeze Buildup" }, } }, - ["CorruptionShockChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased chance to Shock", statOrder = { 1058 }, level = 1, group = "ShockChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(20-30)% increased chance to Shock" }, } }, - ["CorruptionSpellCriticalStrikeChance1"] = { type = "Corrupted", affix = "", "(20-30)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(20-30)% increased Critical Hit Chance for Spells" }, } }, - ["CorruptionLifeGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (20-25) Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-25) Life per enemy killed" }, } }, - ["CorruptionManaGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-15) Mana per enemy killed" }, } }, - ["CorruptionIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "(10-15)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["CorruptionEnergyShieldDelay1"] = { type = "Corrupted", affix = "", "(20-30)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(20-30)% faster start of Energy Shield Recharge" }, } }, - ["CorruptionAlliesInPresenceAllDamage1"] = { type = "Corrupted", affix = "", "Allies in your Presence deal (20-30)% increased Damage", statOrder = { 905 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (20-30)% increased Damage" }, } }, - ["CorruptionAlliesInPresenceIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Attack Speed", statOrder = { 917 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (5-10)% increased Attack Speed" }, } }, - ["CorruptionAlliesInPresenceIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Cast Speed", statOrder = { 918 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (5-10)% increased Cast Speed" }, } }, - ["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" }, } }, - ["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" }, } }, - ["SpecialCorruptionPresenceRadius1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, - ["SpecialCorruptionCooldownRecovery1"] = { type = "SpecialCorrupted", affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, - ["SpecialCorruptionSkillEffectDuration1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(15-25)% increased Skill Effect Duration" }, } }, - ["SpecialCorruptionEnergyGeneration1"] = { type = "SpecialCorrupted", affix = "", "Meta Skills gain (20-30)% increased Energy", statOrder = { 6387 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (20-30)% increased Energy" }, } }, - ["SpecialCorruptionDamageGainedAsChaos1"] = { type = "SpecialCorrupted", affix = "", "Gain (5-8)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (5-8)% of Damage as Extra Chaos Damage" }, } }, + ["CorruptionLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(15-25)% increased Armour" }, } }, + ["CorruptionLocalIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(15-25)% increased Evasion Rating" }, } }, + ["CorruptionLocalIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(15-25)% increased Energy Shield" }, } }, + ["CorruptionLocalIncreasedArmourAndEvasion1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(15-25)% increased Armour and Evasion" }, } }, + ["CorruptionLocalIncreasedArmourAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(15-25)% increased Armour and Energy Shield" }, } }, + ["CorruptionLocalIncreasedEvasionAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(15-25)% increased Evasion and Energy Shield" }, } }, + ["CorruptionReducedLocalAttributeRequirements1"] = { type = "Corrupted", affix = "", "(10-20)% reduced Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { "armour", "weapon", "wand", "staff", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "(10-20)% reduced Attribute Requirements" }, } }, + ["CorruptionAdditionalPhysicalDamageReduction1"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction", statOrder = { 951 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, + ["CorruptionDamageTakenGainedAsLife1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, + ["CorruptionDamageTakenGainedAsMana1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, + ["CorruptionLifeLeech1"] = { type = "Corrupted", affix = "", "Leech 3% of Physical Attack Damage as Life", statOrder = { 971 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 3% of Physical Attack Damage as Life" }, } }, + ["CorruptionManaLeech1"] = { type = "Corrupted", affix = "", "Leech 2% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech 2% of Physical Attack Damage as Mana" }, } }, + ["CorruptionMaximumElementalResistance1"] = { type = "Corrupted", affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, + ["CorruptionIncreasedLife1"] = { type = "Corrupted", affix = "", "+(30-40) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, + ["CorruptionIncreasedMana1"] = { type = "Corrupted", affix = "", "+(20-25) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { "focus", "quiver", "ring", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } }, + ["CorruptionIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(15-25)% increased Armour" }, } }, + ["CorruptionIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(15-25)% increased Evasion Rating" }, } }, + ["CorruptionIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(15-25)% increased maximum Energy Shield" }, } }, + ["CorruptionThornsDamageIncrease1"] = { type = "Corrupted", affix = "", "(40-50)% increased Thorns damage", statOrder = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(40-50)% increased Thorns damage" }, } }, + ["CorruptionChaosResistance1"] = { type = "Corrupted", affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, + ["CorruptionFireResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, + ["CorruptionColdResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, + ["CorruptionLightningResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-25)% to Lightning Resistance" }, } }, + ["CorruptionMaximumFireResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(1-3)% to Maximum Fire Resistance" }, } }, + ["CorruptionMaximumColdResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(1-3)% to Maximum Cold Resistance" }, } }, + ["CorruptionMaximumLightningResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(1-3)% to Maximum Lightning Resistance" }, } }, + ["CorruptionIncreasedSpirit1"] = { type = "Corrupted", affix = "", "+(20-30) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(20-30) to Spirit" }, } }, + ["CorruptionFirePenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Fire Resistance", statOrder = { 2613 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (10-15)% Fire Resistance" }, } }, + ["CorruptionColdPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Cold Resistance", statOrder = { 2614 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (10-15)% Cold Resistance" }, } }, + ["CorruptionLightningPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-15)% Lightning Resistance" }, } }, + ["CorruptionArmourBreak1"] = { type = "Corrupted", affix = "", "Break (10-15)% increased Armour", statOrder = { 4283 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (10-15)% increased Armour" }, } }, + ["CorruptionGoldFoundIncrease1"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["CorruptionMaximumEnduranceCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1486 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["CorruptionMaximumFrenzyCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["CorruptionMaximumPowerCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["CorruptionIncreasedAccuracy1"] = { type = "Corrupted", affix = "", "+(50-100) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { "helmet", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(50-100) to Accuracy Rating" }, } }, + ["CorruptionMovementVelocity1"] = { type = "Corrupted", affix = "", "(3-5)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-5)% increased Movement Speed" }, } }, + ["CorruptionIncreasedStunThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, + ["CorruptionIncreasedFreezeThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Threshold", statOrder = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [3780644166] = { "(20-30)% increased Freeze Threshold" }, } }, + ["CorruptionSlowPotency1"] = { type = "Corrupted", affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, + ["CorruptionLifeRegenerationPercent1"] = { type = "Corrupted", affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of maximum Life per second" }, } }, + ["CorruptionLifeRegenerationRate1"] = { type = "Corrupted", affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } }, + ["CorruptionManaRegeneration1"] = { type = "Corrupted", affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["CorruptionLocalBlockChance1"] = { type = "Corrupted", affix = "", "(10-15)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, + ["CorruptionMaximumBlockChance1"] = { type = "Corrupted", affix = "", "+3% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [480796730] = { "+3% to maximum Block chance" }, } }, + ["CorruptionGainLifeOnBlock1"] = { type = "Corrupted", affix = "", "(20-25) Life gained when you Block", statOrder = { 1445 }, level = 1, group = "GainLifeOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(20-25) Life gained when you Block" }, } }, + ["CorruptionGainManaOnBlock1"] = { type = "Corrupted", affix = "", "(10-15) Mana gained when you Block", statOrder = { 1446 }, level = 1, group = "GainManaOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(10-15) Mana gained when you Block" }, } }, + ["CorruptionAllResistances1"] = { type = "Corrupted", affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, + ["CorruptionGlobalFireSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, + ["CorruptionGlobalColdSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, + ["CorruptionGlobalLightningSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, + ["CorruptionGlobalChaosSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, + ["CorruptionGlobalPhysicalSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, + ["CorruptionGlobalMinionSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Minion Skills", statOrder = { 931 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, + ["CorruptionGlobalMeleeSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Melee Skills", statOrder = { 928 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, + ["CorruptionGlobalTrapSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 1, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, + ["CorruptionItemFoundRarityIncrease1"] = { type = "Corrupted", affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, + ["CorruptionAllDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(20-30)% increased Damage" }, } }, + ["CorruptionIncreasedSkillSpeed1"] = { type = "Corrupted", affix = "", "(4-6)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(4-6)% increased Skill Speed" }, } }, + ["CorruptionCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "(15-20)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-20)% increased Critical Damage Bonus" }, } }, + ["CorruptionGlobalSkillGemLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Skills", statOrder = { 4166 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, + ["CorruptionStrength1"] = { type = "Corrupted", affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, + ["CorruptionDexterity1"] = { type = "Corrupted", affix = "", "+(10-15) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, + ["CorruptionIntelligence1"] = { type = "Corrupted", affix = "", "+(10-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, + ["CorruptionIncreasedSlowEffect1"] = { type = "Corrupted", affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4552 }, level = 1, group = "SlowEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, + ["CorruptionWeaponSwapSpeed1"] = { type = "Corrupted", affix = "", "(20-30)% increased Weapon Swap Speed", statOrder = { 9897 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(20-30)% increased Weapon Swap Speed" }, } }, + ["CorruptionLifeFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Life Flasks gain (0.08-0.17) charges per Second", statOrder = { 6451 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.08-0.17) charges per Second" }, } }, + ["CorruptionManaFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Mana Flasks gain (0.08-0.17) charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.08-0.17) charges per Second" }, } }, + ["CorruptionCharmChargeGeneration1"] = { type = "Corrupted", affix = "", "Charms gain (0.08-0.17) charges per Second", statOrder = { 6448 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [185580205] = { "Charms gain (0.08-0.17) charges per Second" }, } }, + ["CorruptionLocalIncreasedPhysicalDamagePercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(15-25)% increased Physical Damage" }, } }, + ["CorruptionSpellDamageOnWeapon1"] = { type = "Corrupted", affix = "", "(20-30)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, + ["CorruptionSpellDamageOnTwoHandWeapon1"] = { type = "Corrupted", affix = "", "(40-60)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, + ["CorruptionLocalIncreasedSpiritPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(15-25)% increased Spirit" }, } }, + ["CorruptionLocalAddedFireDamage1"] = { type = "Corrupted", affix = "", "Adds (9-14) to (15-22) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (9-14) to (15-22) Fire Damage" }, } }, + ["CorruptionLocalAddedFireDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (13-20) to (21-31) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-20) to (21-31) Fire Damage" }, } }, + ["CorruptionLocalAddedColdDamage1"] = { type = "Corrupted", affix = "", "Adds (8-12) to (13-19) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-12) to (13-19) Cold Damage" }, } }, + ["CorruptionLocalAddedColdDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (11-17) to (18-26) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-17) to (18-26) Cold Damage" }, } }, + ["CorruptionLocalAddedLightningDamage1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (29-43) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (29-43) Lightning Damage" }, } }, + ["CorruptionLocalAddedLightningDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (1-3) to (41-61) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (41-61) Lightning Damage" }, } }, + ["CorruptionLocalAddedChaosDamage1"] = { type = "Corrupted", affix = "", "Adds (7-11) to (12-18) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (7-11) to (12-18) Chaos damage" }, } }, + ["CorruptionLocalAddedChaosDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (10-16) to (17-25) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (10-16) to (17-25) Chaos damage" }, } }, + ["CorruptionLocalIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "(6-8)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-8)% increased Attack Speed" }, } }, + ["CorruptionLocalCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(5-10)% to Critical Damage Bonus" }, } }, + ["CorruptionLocalStunDamageIncrease1"] = { type = "Corrupted", affix = "", "Causes (20-30)% 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 = { }, tradeHashes = { [791928121] = { "Causes (20-30)% increased Stun Buildup" }, } }, + ["CorruptionLocalWeaponRangeIncrease1"] = { type = "Corrupted", affix = "", "(10-20)% 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 = { "attack" }, tradeHashes = { [548198834] = { "(10-20)% increased Melee Strike Range with this weapon" }, } }, + ["CorruptionLocalChanceToBleed1"] = { type = "Corrupted", affix = "", "(10-15)% 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", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(10-15)% chance to cause Bleeding on Hit" }, } }, + ["CorruptionLocalChanceToPoison1"] = { type = "Corrupted", affix = "", "(10-15)% 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", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(10-15)% chance to Poison on Hit with this weapon" }, } }, + ["CorruptionLocalRageOnHit1"] = { type = "Corrupted", affix = "", "Grants 1 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 = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, + ["CorruptionLocalChanceToMaim1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Maim on Hit", statOrder = { 7320 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(10-15)% chance to Maim on Hit" }, } }, + ["CorruptionLocalChanceToBlind1"] = { type = "Corrupted", affix = "", "(5-10)% chance to Blind Enemies on hit", statOrder = { 1937 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [2301191210] = { "(5-10)% chance to Blind Enemies on hit" }, } }, + ["CorruptionWeaponElementalDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attacks" }, } }, + ["CorruptionWeaponElementalDamageTwoHand1"] = { type = "Corrupted", affix = "", "(40-50)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(40-50)% increased Elemental Damage with Attacks" }, } }, + ["CorruptionAdditionalArrows1"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 945 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, + ["CorruptionAdditionalAmmo1"] = { type = "Corrupted", affix = "", "Loads an additional bolt", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, + ["CorruptionIgniteChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(20-30)% increased Flammability Magnitude" }, } }, + ["CorruptionFreezeDamageIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(20-30)% increased Freeze Buildup" }, } }, + ["CorruptionShockChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(20-30)% increased chance to Shock" }, } }, + ["CorruptionSpellCriticalStrikeChance1"] = { type = "Corrupted", affix = "", "(20-30)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(20-30)% increased Critical Hit Chance for Spells" }, } }, + ["CorruptionLifeGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (20-25) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-25) Life per enemy killed" }, } }, + ["CorruptionManaGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-15) Mana per enemy killed" }, } }, + ["CorruptionIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "(10-15)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, + ["CorruptionEnergyShieldDelay1"] = { type = "Corrupted", affix = "", "(20-30)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(20-30)% faster start of Energy Shield Recharge" }, } }, + ["CorruptionAlliesInPresenceAllDamage1"] = { type = "Corrupted", affix = "", "Allies in your Presence deal (20-30)% increased Damage", statOrder = { 881 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (20-30)% increased Damage" }, } }, + ["CorruptionAlliesInPresenceIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Attack Speed", statOrder = { 893 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (5-10)% increased Attack Speed" }, } }, + ["CorruptionAlliesInPresenceIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (5-10)% increased Cast Speed" }, } }, + ["CorruptionAlliesInPresenceCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (10-15)% increased Critical Damage Bonus", statOrder = { 892 }, 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 = { 1001 }, 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 = { 8970 }, 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 = { 947 }, 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 = { 948 }, 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 = { 949 }, 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 = { 958 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-10)% to Fire Resistance" }, } }, + ["CorruptionJewelColdResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-10)% to Cold Resistance" }, } }, + ["CorruptionJewelLightningResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-10)% to Lightning Resistance" }, } }, + ["CorruptionJewelChaosResist1"] = { type = "Corrupted", affix = "", "+(3-7)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(3-7)% to Chaos Resistance" }, } }, + ["CorruptionJewelMaimImmunity1"] = { type = "Corrupted", affix = "", "Immune to Maim", statOrder = { 6850 }, level = 1, group = "ImmuneToMaim", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [3429557654] = { "Immune to Maim" }, } }, + ["CorruptionJewelHinderImmunity1"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 9946 }, 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 = { 4906 }, 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 = { 2608 }, level = 1, group = "ImmunityToBlind", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, + ["SpecialCorruptionWarcrySpeed1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Warcry Speed", statOrder = { 2884 }, 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 = { 2266 }, 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 = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, + ["SpecialCorruptionPresenceRadius1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, + ["SpecialCorruptionCooldownRecovery1"] = { type = "SpecialCorrupted", affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, + ["SpecialCorruptionSkillEffectDuration1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(15-25)% increased Skill Effect Duration" }, } }, + ["SpecialCorruptionEnergyGeneration1"] = { type = "SpecialCorrupted", affix = "", "Meta Skills gain (20-30)% increased Energy", statOrder = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (20-30)% increased Energy" }, } }, + ["SpecialCorruptionDamageGainedAsChaos1"] = { type = "SpecialCorrupted", affix = "", "Gain (5-8)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (5-8)% of Damage as Extra Chaos Damage" }, } }, } \ No newline at end of file diff --git a/src/Data/ModFlask.lua b/src/Data/ModFlask.lua index 1442952a2..22a5d669c 100644 --- a/src/Data/ModFlask.lua +++ b/src/Data/ModFlask.lua @@ -2,82 +2,82 @@ -- Item data (c) Grinding Gear Games return { - ["FlaskChargesAddedIncreasePercent1"] = { type = "Suffix", affix = "of the Constant", "(23-30)% increased Charges gained", statOrder = { 1071 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(23-30)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent2_"] = { type = "Suffix", affix = "of the Continuous", "(31-38)% increased Charges gained", statOrder = { 1071 }, level = 13, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-38)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent3_"] = { type = "Suffix", affix = "of the Endless", "(39-46)% increased Charges gained", statOrder = { 1071 }, level = 33, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(39-46)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent4_"] = { type = "Suffix", affix = "of the Bottomless", "(47-54)% increased Charges gained", statOrder = { 1071 }, level = 48, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(47-54)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent5__"] = { type = "Suffix", affix = "of the Perpetual", "(55-62)% increased Charges gained", statOrder = { 1071 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-62)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent6"] = { type = "Suffix", affix = "of the Eternal", "(63-70)% increased Charges gained", statOrder = { 1071 }, level = 82, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(63-70)% increased Charges gained" }, } }, - ["FlaskExtraCharges1"] = { type = "Suffix", affix = "of the Wide", "(23-30)% increased Charges", statOrder = { 1074 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(23-30)% increased Charges" }, } }, - ["FlaskExtraCharges2__"] = { type = "Suffix", affix = "of the Copious", "(31-38)% increased Charges", statOrder = { 1074 }, level = 12, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(31-38)% increased Charges" }, } }, - ["FlaskExtraCharges3_"] = { type = "Suffix", affix = "of the Plentiful", "(39-46)% increased Charges", statOrder = { 1074 }, level = 32, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(39-46)% increased Charges" }, } }, - ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1074 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, - ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1074 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, - ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1074 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, - ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1072 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, - ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1072 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, - ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1072 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, - ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1072 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, - ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1072 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, - ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1072 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, - ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 617 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.15 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 617 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.2 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 617 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.25 Charges per Second" }, } }, - ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Dense", "(41-45)% increased Recovery rate", statOrder = { 937 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(41-45)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Undiluted", "(46-50)% increased Recovery rate", statOrder = { 937 }, level = 15, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(46-50)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Hearty", "(51-55)% increased Recovery rate", statOrder = { 937 }, level = 31, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(51-55)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Viscous", "(56-60)% increased Recovery rate", statOrder = { 937 }, level = 46, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(56-60)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Condensed", "(61-65)% increased Recovery rate", statOrder = { 937 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(61-65)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed6"] = { type = "Prefix", affix = "Catalysed", "(66-70)% increased Recovery rate", statOrder = { 937 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(66-70)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Opaque", "(41-45)% increased Amount Recovered", statOrder = { 929 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(41-45)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Compact", "(46-50)% increased Amount Recovered", statOrder = { 929 }, level = 11, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(46-50)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(51-55)% increased Amount Recovered", statOrder = { 929 }, level = 23, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(51-55)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Abundant", "(56-60)% increased Amount Recovered", statOrder = { 929 }, level = 34, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(56-60)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Substantial", "(61-65)% increased Amount Recovered", statOrder = { 929 }, level = 46, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(61-65)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount6"] = { type = "Prefix", affix = "Concentrated", "(66-70)% increased Amount Recovered", statOrder = { 929 }, level = 56, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(66-70)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount7"] = { type = "Prefix", affix = "Potent", "(71-75)% increased Amount Recovered", statOrder = { 929 }, level = 67, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(71-75)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount8"] = { type = "Prefix", affix = "Saturated", "(76-80)% increased Amount Recovered", statOrder = { 929 }, level = 83, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(76-80)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(51-60)% more Recovery if used while on Low Life", statOrder = { 930 }, level = 2, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(51-60)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(61-70)% more Recovery if used while on Low Life", statOrder = { 930 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(61-70)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(71-80)% more Recovery if used while on Low Life", statOrder = { 930 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(71-80)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(81-90)% more Recovery if used while on Low Life", statOrder = { 930 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(81-90)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(91-100)% more Recovery if used while on Low Life", statOrder = { 930 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(91-100)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowMana1"] = { type = "Prefix", affix = "Sustained", "(51-60)% more Recovery if used while on Low Mana", statOrder = { 928 }, level = 2, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(51-60)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana2"] = { type = "Prefix", affix = "Tenacious", "(61-70)% more Recovery if used while on Low Mana", statOrder = { 928 }, level = 25, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(61-70)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana3"] = { type = "Prefix", affix = "Persistent", "(71-80)% more Recovery if used while on Low Mana", statOrder = { 928 }, level = 44, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(71-80)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana4"] = { type = "Prefix", affix = "Persevering", "(81-90)% more Recovery if used while on Low Mana", statOrder = { 928 }, level = 63, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(81-90)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana5"] = { type = "Prefix", affix = "Prolonged", "(91-100)% more Recovery if used while on Low Mana", statOrder = { 928 }, level = 82, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(91-100)% more Recovery if used while on Low Mana" }, } }, - ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(61-68)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 932, 938 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(61-68)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(69-76)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 932, 938 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(69-76)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(77-84)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 932, 938 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(77-84)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(85-92)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 932, 938 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(85-92)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(93-100)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 932, 938 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(93-100)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(61-68)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 933, 939 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(61-68)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(69-76)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 933, 939 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(69-76)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(77-84)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 933, 939 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(77-84)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(85-92)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 933, 939 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(85-92)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(93-100)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 933, 939 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(93-100)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(20-23)% of Recovery applied Instantly", statOrder = { 936 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(20-23)% of Recovery applied Instantly" }, } }, - ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Effervescent", "(24-27)% of Recovery applied Instantly", statOrder = { 936 }, level = 27, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(24-27)% of Recovery applied Instantly" }, } }, - ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Bubbling", "(28-30)% of Recovery applied Instantly", statOrder = { 936 }, level = 46, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(28-30)% of Recovery applied Instantly" }, } }, - ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "50% reduced Amount Recovered", "Instant Recovery", statOrder = { 929, 935 }, level = 42, group = "FlaskFullInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "50% reduced Amount Recovered" }, } }, - ["FlaskHealsMinions1"] = { type = "Prefix", affix = "Novice's", "Grants (51-56)% of Life Recovery to Minions", statOrder = { 934 }, level = 10, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (51-56)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions2"] = { type = "Prefix", affix = "Acolyte's", "Grants (57-62)% of Life Recovery to Minions", statOrder = { 934 }, level = 28, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (57-62)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions3"] = { type = "Prefix", affix = "Summoner's", "Grants (63-68)% of Life Recovery to Minions", statOrder = { 934 }, level = 46, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (63-68)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions4____"] = { type = "Prefix", affix = "Conjurer's", "Grants (69-74)% of Life Recovery to Minions", statOrder = { 934 }, level = 64, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (69-74)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions5"] = { type = "Prefix", affix = "Necromancer's", "Grants (75-80)% of Life Recovery to Minions", statOrder = { 934 }, level = 82, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (75-80)% of Life Recovery to Minions" }, } }, - ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 664 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [3895393544] = { "Removes Curses on use" }, } }, - ["FlaskBleedCorruptingBloodImmunity1"] = { type = "Suffix", affix = "of Sealing", "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood", statOrder = { 667, 667.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood" }, } }, - ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 677 }, level = 6, group = "FlaskShockImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (6-8) seconds if used while Shocked" }, } }, - ["FlaskChillFreezeImmunity1"] = { type = "Suffix", affix = "of Convection", "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen", statOrder = { 669, 669.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen" }, } }, - ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 671, 671.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used" }, } }, - ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 675 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (6-8) seconds if used while Poisoned" }, } }, - ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 632, 751 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } }, - ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 632, 752 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, - ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 632, 750 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, - ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 632, 681, 681.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(45-49)% less Duration" }, } }, - ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 632, 748 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } }, + ["FlaskChargesAddedIncreasePercent1"] = { type = "Suffix", affix = "of the Constant", "(23-30)% increased Charges gained", statOrder = { 1005 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(23-30)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent2_"] = { type = "Suffix", affix = "of the Continuous", "(31-38)% increased Charges gained", statOrder = { 1005 }, level = 13, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-38)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent3_"] = { type = "Suffix", affix = "of the Endless", "(39-46)% increased Charges gained", statOrder = { 1005 }, level = 33, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(39-46)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent4_"] = { type = "Suffix", affix = "of the Bottomless", "(47-54)% increased Charges gained", statOrder = { 1005 }, level = 48, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(47-54)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent5__"] = { type = "Suffix", affix = "of the Perpetual", "(55-62)% increased Charges gained", statOrder = { 1005 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-62)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent6"] = { type = "Suffix", affix = "of the Eternal", "(63-70)% increased Charges gained", statOrder = { 1005 }, level = 82, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(63-70)% increased Charges gained" }, } }, + ["FlaskExtraCharges1"] = { type = "Suffix", affix = "of the Wide", "(23-30)% increased Charges", statOrder = { 1008 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(23-30)% increased Charges" }, } }, + ["FlaskExtraCharges2__"] = { type = "Suffix", affix = "of the Copious", "(31-38)% increased Charges", statOrder = { 1008 }, level = 12, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(31-38)% increased Charges" }, } }, + ["FlaskExtraCharges3_"] = { type = "Suffix", affix = "of the Plentiful", "(39-46)% increased Charges", statOrder = { 1008 }, level = 32, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(39-46)% increased Charges" }, } }, + ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1008 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, + ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1008 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, + ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1008 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, + ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, + ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1006 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, + ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1006 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, + ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1006 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, + ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1006 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, + ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1006 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, + ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 610 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.15 Charges per Second" }, } }, + ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 610 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.2 Charges per Second" }, } }, + ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 610 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.25 Charges per Second" }, } }, + ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Dense", "(41-45)% increased Recovery rate", statOrder = { 913 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(41-45)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Undiluted", "(46-50)% increased Recovery rate", statOrder = { 913 }, level = 15, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(46-50)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Hearty", "(51-55)% increased Recovery rate", statOrder = { 913 }, level = 31, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(51-55)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Viscous", "(56-60)% increased Recovery rate", statOrder = { 913 }, level = 46, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(56-60)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Condensed", "(61-65)% increased Recovery rate", statOrder = { 913 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(61-65)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed6"] = { type = "Prefix", affix = "Catalysed", "(66-70)% increased Recovery rate", statOrder = { 913 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(66-70)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Opaque", "(41-45)% increased Amount Recovered", statOrder = { 905 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(41-45)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Compact", "(46-50)% increased Amount Recovered", statOrder = { 905 }, level = 11, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(46-50)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(51-55)% increased Amount Recovered", statOrder = { 905 }, level = 23, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(51-55)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Abundant", "(56-60)% increased Amount Recovered", statOrder = { 905 }, level = 34, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(56-60)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Substantial", "(61-65)% increased Amount Recovered", statOrder = { 905 }, level = 46, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(61-65)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount6"] = { type = "Prefix", affix = "Concentrated", "(66-70)% increased Amount Recovered", statOrder = { 905 }, level = 56, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(66-70)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount7"] = { type = "Prefix", affix = "Potent", "(71-75)% increased Amount Recovered", statOrder = { 905 }, level = 67, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(71-75)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount8"] = { type = "Prefix", affix = "Saturated", "(76-80)% increased Amount Recovered", statOrder = { 905 }, level = 83, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(76-80)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(51-60)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 2, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(51-60)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(61-70)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(61-70)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(71-80)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(71-80)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(81-90)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(81-90)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(91-100)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(91-100)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowMana1"] = { type = "Prefix", affix = "Sustained", "(51-60)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 2, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(51-60)% more Recovery if used while on Low Mana" }, } }, + ["FlaskIncreasedRecoveryOnLowMana2"] = { type = "Prefix", affix = "Tenacious", "(61-70)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 25, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(61-70)% more Recovery if used while on Low Mana" }, } }, + ["FlaskIncreasedRecoveryOnLowMana3"] = { type = "Prefix", affix = "Persistent", "(71-80)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 44, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(71-80)% more Recovery if used while on Low Mana" }, } }, + ["FlaskIncreasedRecoveryOnLowMana4"] = { type = "Prefix", affix = "Persevering", "(81-90)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 63, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(81-90)% more Recovery if used while on Low Mana" }, } }, + ["FlaskIncreasedRecoveryOnLowMana5"] = { type = "Prefix", affix = "Prolonged", "(91-100)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 82, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(91-100)% more Recovery if used while on Low Mana" }, } }, + ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(61-68)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(61-68)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(69-76)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(69-76)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(77-84)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(77-84)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(85-92)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(85-92)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(93-100)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(93-100)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(61-68)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(61-68)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(69-76)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(69-76)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(77-84)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(77-84)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(85-92)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(85-92)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(93-100)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(93-100)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(20-23)% of Recovery applied Instantly", statOrder = { 912 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(20-23)% of Recovery applied Instantly" }, } }, + ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Effervescent", "(24-27)% of Recovery applied Instantly", statOrder = { 912 }, level = 27, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(24-27)% of Recovery applied Instantly" }, } }, + ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Bubbling", "(28-30)% of Recovery applied Instantly", statOrder = { 912 }, level = 46, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(28-30)% of Recovery applied Instantly" }, } }, + ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "50% reduced Amount Recovered", "Instant Recovery", statOrder = { 905, 911 }, level = 42, group = "FlaskFullInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "50% reduced Amount Recovered" }, } }, + ["FlaskHealsMinions1"] = { type = "Prefix", affix = "Novice's", "Grants (51-56)% of Life Recovery to Minions", statOrder = { 910 }, level = 10, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (51-56)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions2"] = { type = "Prefix", affix = "Acolyte's", "Grants (57-62)% of Life Recovery to Minions", statOrder = { 910 }, level = 28, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (57-62)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions3"] = { type = "Prefix", affix = "Summoner's", "Grants (63-68)% of Life Recovery to Minions", statOrder = { 910 }, level = 46, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (63-68)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions4____"] = { type = "Prefix", affix = "Conjurer's", "Grants (69-74)% of Life Recovery to Minions", statOrder = { 910 }, level = 64, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (69-74)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions5"] = { type = "Prefix", affix = "Necromancer's", "Grants (75-80)% of Life Recovery to Minions", statOrder = { 910 }, level = 82, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (75-80)% of Life Recovery to Minions" }, } }, + ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 656 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [3895393544] = { "Removes Curses on use" }, } }, + ["FlaskBleedCorruptingBloodImmunity1"] = { type = "Suffix", affix = "of Sealing", "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood", statOrder = { 659, 659.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood" }, } }, + ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 669 }, level = 6, group = "FlaskShockImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (6-8) seconds if used while Shocked" }, } }, + ["FlaskChillFreezeImmunity1"] = { type = "Suffix", affix = "of Convection", "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen", statOrder = { 661, 661.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen" }, } }, + ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 663, 663.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used" }, } }, + ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 667 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (6-8) seconds if used while Poisoned" }, } }, + ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 623, 743 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } }, + ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 623, 744 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, + ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 623, 742 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, + ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 623, 673, 673.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(45-49)% less Duration" }, } }, + ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 623, 740 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } }, } \ No newline at end of file diff --git a/src/Data/ModIncursionLimb.lua b/src/Data/ModIncursionLimb.lua index 2107ea74a..0c2a2c7d5 100644 --- a/src/Data/ModIncursionLimb.lua +++ b/src/Data/ModIncursionLimb.lua @@ -2,16 +2,16 @@ -- Item data (c) Grinding Gear Games return { - ["IncursionLeg1"] = { affix = "", "(20-30)% increased Evasion Rating", statOrder = { 883 }, level = 0, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(20-30)% increased Evasion Rating" }, } }, - ["IncursionLeg2"] = { affix = "", "(6-10)% increased Movement Speed while Sprinting", statOrder = { 10028 }, level = 0, group = "MovementVelocityWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(6-10)% increased Movement Speed while Sprinting" }, } }, - ["IncursionLeg3"] = { affix = "", "(15-25)% increased Stun Threshold", statOrder = { 2981 }, level = 0, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(15-25)% increased Stun Threshold" }, } }, - ["IncursionLeg4"] = { affix = "", "(5-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9119 }, level = 0, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, - ["IncursionLeg5"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 7994 }, level = 0, group = "ManaRegenerationRateWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, - ["IncursionLeg6"] = { affix = "", "(6-10)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 0, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(6-10)% of Damage taken Recouped as Life" }, } }, - ["IncursionArm1"] = { affix = "", "(8-12)% increased Block chance", statOrder = { 1132 }, level = 0, group = "IncreasedBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(8-12)% increased Block chance" }, } }, - ["IncursionArm2"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 984 }, level = 0, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-10)% increased Attack Speed" }, } }, - ["IncursionArm3"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 986 }, level = 0, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["IncursionArm4"] = { affix = "", "(12-16)% increased Curse Magnitudes", statOrder = { 2374 }, level = 0, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(12-16)% increased Curse Magnitudes" }, } }, - ["IncursionArm5"] = { affix = "", "(6-10)% increased Deflection Rating", statOrder = { 6105 }, level = 0, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3040571529] = { "(6-10)% increased Deflection Rating" }, } }, - ["IncursionArm6"] = { affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1068 }, level = 0, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, + ["IncursionLeg1"] = { affix = "", "(20-30)% increased Evasion Rating", statOrder = { 866 }, level = 0, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(20-30)% increased Evasion Rating" }, } }, + ["IncursionLeg2"] = { affix = "", "(6-10)% increased Movement Speed while Sprinting", statOrder = { 9465 }, level = 0, group = "MovementVelocityWhileSprinting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3107707789] = { "(6-10)% increased Movement Speed while Sprinting" }, } }, + ["IncursionLeg3"] = { affix = "", "(15-25)% increased Stun Threshold", statOrder = { 2878 }, level = 0, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(15-25)% increased Stun Threshold" }, } }, + ["IncursionLeg4"] = { affix = "", "(5-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 8594 }, level = 0, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, + ["IncursionLeg5"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 7532 }, level = 0, group = "ManaRegenerationRateWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, + ["IncursionLeg6"] = { affix = "", "(6-10)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 0, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(6-10)% of Damage taken Recouped as Life" }, } }, + ["IncursionArm1"] = { affix = "", "(8-12)% increased Block chance", statOrder = { 1064 }, level = 0, group = "IncreasedBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(8-12)% increased Block chance" }, } }, + ["IncursionArm2"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 941 }, level = 0, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-10)% increased Attack Speed" }, } }, + ["IncursionArm3"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 942 }, level = 0, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, + ["IncursionArm4"] = { affix = "", "(12-16)% increased Curse Magnitudes", statOrder = { 2266 }, level = 0, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(12-16)% increased Curse Magnitudes" }, } }, + ["IncursionArm5"] = { affix = "", "(6-10)% increased Deflection Rating", statOrder = { 5721 }, level = 0, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [3040571529] = { "(6-10)% increased Deflection Rating" }, } }, + ["IncursionArm6"] = { affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1002 }, level = 0, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, } \ No newline at end of file diff --git a/src/Data/ModItem.lua b/src/Data/ModItem.lua index 9fe332810..bf43d94a5 100644 --- a/src/Data/ModItem.lua +++ b/src/Data/ModItem.lua @@ -2,2553 +2,1724 @@ -- Item data (c) Grinding Gear Games return { - ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(5-8) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-8) to Strength" }, } }, - ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(9-12) to Strength", statOrder = { 991 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(9-12) to Strength" }, } }, - ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(13-16) to Strength", statOrder = { 991 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(13-16) to Strength" }, } }, - ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(17-20) to Strength", statOrder = { 991 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(17-20) to Strength" }, } }, - ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(21-24) to Strength", statOrder = { 991 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(21-24) to Strength" }, } }, - ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(25-27) to Strength", statOrder = { 991 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(25-27) to Strength" }, } }, - ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(28-30) to Strength", statOrder = { 991 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(28-30) to Strength" }, } }, - ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(31-33) to Strength", statOrder = { 991 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(31-33) to Strength" }, } }, - ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(34-36) to Strength", statOrder = { 991 }, level = 81, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(34-36) to Strength" }, } }, - ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(5-8) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-8) to Dexterity" }, } }, - ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(9-12) to Dexterity", statOrder = { 992 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(9-12) to Dexterity" }, } }, - ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(13-16) to Dexterity", statOrder = { 992 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(13-16) to Dexterity" }, } }, - ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(17-20) to Dexterity", statOrder = { 992 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(17-20) to Dexterity" }, } }, - ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(21-24) to Dexterity", statOrder = { 992 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(21-24) to Dexterity" }, } }, - ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(25-27) to Dexterity", statOrder = { 992 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(25-27) to Dexterity" }, } }, - ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(28-30) to Dexterity", statOrder = { 992 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(28-30) to Dexterity" }, } }, - ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(31-33) to Dexterity", statOrder = { 992 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(31-33) to Dexterity" }, } }, - ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(34-36) to Dexterity", statOrder = { 992 }, level = 81, group = "Dexterity", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(34-36) to Dexterity" }, } }, - ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(5-8) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-8) to Intelligence" }, } }, - ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(9-12) to Intelligence", statOrder = { 993 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(9-12) to Intelligence" }, } }, - ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(13-16) to Intelligence", statOrder = { 993 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(13-16) to Intelligence" }, } }, - ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(17-20) to Intelligence", statOrder = { 993 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(17-20) to Intelligence" }, } }, - ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(21-24) to Intelligence", statOrder = { 993 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(21-24) to Intelligence" }, } }, - ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(25-27) to Intelligence", statOrder = { 993 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(25-27) to Intelligence" }, } }, - ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(28-30) to Intelligence", statOrder = { 993 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(28-30) to Intelligence" }, } }, - ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(31-33) to Intelligence", statOrder = { 993 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(31-33) to Intelligence" }, } }, - ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(34-36) to Intelligence", statOrder = { 993 }, level = 81, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(34-36) to Intelligence" }, } }, - ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(2-4) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(2-4) to all Attributes" }, } }, - ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-7) to all Attributes", statOrder = { 990 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-7) to all Attributes" }, } }, - ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(8-10) to all Attributes", statOrder = { 990 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-10) to all Attributes" }, } }, - ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(11-13) to all Attributes", statOrder = { 990 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(11-13) to all Attributes" }, } }, - ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(14-16) to all Attributes", statOrder = { 990 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(14-16) to all Attributes" }, } }, - ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(17-18) to all Attributes", statOrder = { 990 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(17-18) to all Attributes" }, } }, - ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(19-20) to all Attributes", statOrder = { 990 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(19-20) to all Attributes" }, } }, - ["AllAttributes8"] = { type = "Suffix", affix = "of the Multiverse", "+(21-22) to all Attributes", statOrder = { 990 }, level = 75, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-22) to all Attributes" }, } }, - ["AllAttributes9_"] = { type = "Suffix", affix = "of the Infinite", "+(23-24) to all Attributes", statOrder = { 990 }, level = 82, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(23-24) to all Attributes" }, } }, - ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-10)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(6-10)% to Fire Resistance" }, } }, - ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(11-15)% to Fire Resistance", statOrder = { 1013 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(11-15)% to Fire Resistance" }, } }, - ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(16-20)% to Fire Resistance", statOrder = { 1013 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(16-20)% to Fire Resistance" }, } }, - ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(21-25)% to Fire Resistance", statOrder = { 1013 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, - ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(26-30)% to Fire Resistance", statOrder = { 1013 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(26-30)% to Fire Resistance" }, } }, - ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(31-35)% to Fire Resistance", statOrder = { 1013 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(31-35)% to Fire Resistance" }, } }, - ["FireResist7"] = { type = "Suffix", affix = "of Magma", "+(36-40)% to Fire Resistance", statOrder = { 1013 }, level = 71, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, - ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(41-45)% to Fire Resistance", statOrder = { 1013 }, level = 82, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(41-45)% to Fire Resistance" }, } }, - ["ColdResist1"] = { type = "Suffix", affix = "of the Seal", "+(6-10)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(6-10)% to Cold Resistance" }, } }, - ["ColdResist2"] = { type = "Suffix", affix = "of the Penguin", "+(11-15)% to Cold Resistance", statOrder = { 1019 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(11-15)% to Cold Resistance" }, } }, - ["ColdResist3"] = { type = "Suffix", affix = "of the Narwhal", "+(16-20)% to Cold Resistance", statOrder = { 1019 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(16-20)% to Cold Resistance" }, } }, - ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(21-25)% to Cold Resistance", statOrder = { 1019 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, } }, - ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(26-30)% to Cold Resistance", statOrder = { 1019 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-30)% to Cold Resistance" }, } }, - ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(31-35)% to Cold Resistance", statOrder = { 1019 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-35)% to Cold Resistance" }, } }, - ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(36-40)% to Cold Resistance", statOrder = { 1019 }, level = 71, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, } }, - ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(41-45)% to Cold Resistance", statOrder = { 1019 }, level = 82, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(41-45)% to Cold Resistance" }, } }, - ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-10)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(6-10)% to Lightning Resistance" }, } }, - ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(11-15)% to Lightning Resistance", statOrder = { 1022 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(11-15)% to Lightning Resistance" }, } }, - ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(16-20)% to Lightning Resistance", statOrder = { 1022 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(16-20)% to Lightning Resistance" }, } }, - ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(21-25)% to Lightning Resistance", statOrder = { 1022 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, - ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(26-30)% to Lightning Resistance", statOrder = { 1022 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(26-30)% to Lightning Resistance" }, } }, - ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(31-35)% to Lightning Resistance", statOrder = { 1022 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(31-35)% to Lightning Resistance" }, } }, - ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(36-40)% to Lightning Resistance", statOrder = { 1022 }, level = 71, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, - ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(41-45)% to Lightning Resistance", statOrder = { 1022 }, level = 82, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(41-45)% to Lightning Resistance" }, } }, - ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 1012 }, level = 12, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(3-5)% to all Elemental Resistances" }, } }, - ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 1012 }, level = 26, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(6-8)% to all Elemental Resistances" }, } }, - ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 1012 }, level = 40, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(9-11)% to all Elemental Resistances" }, } }, - ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 1012 }, level = 54, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(12-14)% to all Elemental Resistances" }, } }, - ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 1012 }, level = 68, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } }, - ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 1012 }, level = 80, group = "AllResistances", weightKey = { "str_int_shield", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances1"] = { type = "Suffix", affix = "of Adjustment", "Allies in your Presence have +(3-5)% to all Elemental Resistances", statOrder = { 919 }, level = 12, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(3-5)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances2"] = { type = "Suffix", affix = "of Acclimatisation", "Allies in your Presence have +(6-8)% to all Elemental Resistances", statOrder = { 919 }, level = 26, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(6-8)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances3"] = { type = "Suffix", affix = "of Adaptation", "Allies in your Presence have +(9-11)% to all Elemental Resistances", statOrder = { 919 }, level = 40, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(9-11)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances4"] = { type = "Suffix", affix = "of Evolution", "Allies in your Presence have +(12-14)% to all Elemental Resistances", statOrder = { 919 }, level = 54, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(12-14)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances5"] = { type = "Suffix", affix = "of Progression", "Allies in your Presence have +(15-16)% to all Elemental Resistances", statOrder = { 919 }, level = 68, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(15-16)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances6"] = { type = "Suffix", affix = "of Metamorphosis", "Allies in your Presence have +(17-18)% to all Elemental Resistances", statOrder = { 919 }, level = 80, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(17-18)% to all Elemental Resistances" }, } }, - ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(4-7)% to Chaos Resistance", statOrder = { 1023 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(4-7)% to Chaos Resistance" }, } }, - ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(8-11)% to Chaos Resistance", statOrder = { 1023 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-11)% to Chaos Resistance" }, } }, - ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(12-15)% to Chaos Resistance", statOrder = { 1023 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-15)% to Chaos Resistance" }, } }, - ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(16-19)% to Chaos Resistance", statOrder = { 1023 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-19)% to Chaos Resistance" }, } }, - ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(20-23)% to Chaos Resistance", statOrder = { 1023 }, level = 68, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-23)% to Chaos Resistance" }, } }, - ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(24-27)% to Chaos Resistance", statOrder = { 1023 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(24-27)% to Chaos Resistance" }, } }, - ["IncreasedLife1"] = { type = "Prefix", affix = "Hale", "+(10-19) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-19) to maximum Life" }, } }, - ["IncreasedLife2"] = { type = "Prefix", affix = "Healthy", "+(20-29) to maximum Life", statOrder = { 886 }, level = 6, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-29) to maximum Life" }, } }, - ["IncreasedLife3"] = { type = "Prefix", affix = "Sanguine", "+(30-39) to maximum Life", statOrder = { 886 }, level = 16, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-39) to maximum Life" }, } }, - ["IncreasedLife4"] = { type = "Prefix", affix = "Stalwart", "+(40-59) to maximum Life", statOrder = { 886 }, level = 24, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-59) to maximum Life" }, } }, - ["IncreasedLife5"] = { type = "Prefix", affix = "Stout", "+(60-69) to maximum Life", statOrder = { 886 }, level = 33, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-69) to maximum Life" }, } }, - ["IncreasedLife6"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 886 }, level = 38, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-84) to maximum Life" }, } }, - ["IncreasedLife7"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 886 }, level = 46, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(85-99) to maximum Life" }, } }, - ["IncreasedLife8"] = { type = "Prefix", affix = "Virile", "+(100-119) to maximum Life", statOrder = { 886 }, level = 54, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-119) to maximum Life" }, } }, - ["IncreasedLife9"] = { type = "Prefix", affix = "Athlete's", "+(120-149) to maximum Life", statOrder = { 886 }, level = 60, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-149) to maximum Life" }, } }, - ["IncreasedLife10"] = { type = "Prefix", affix = "Fecund", "+(150-174) to maximum Life", statOrder = { 886 }, level = 65, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(150-174) to maximum Life" }, } }, - ["IncreasedLife11"] = { type = "Prefix", affix = "Vigorous", "+(175-189) to maximum Life", statOrder = { 886 }, level = 70, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(175-189) to maximum Life" }, } }, - ["IncreasedLife12"] = { type = "Prefix", affix = "Rapturous", "+(190-199) to maximum Life", statOrder = { 886 }, level = 75, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(190-199) to maximum Life" }, } }, - ["IncreasedLife13"] = { type = "Prefix", affix = "Prime", "+(200-214) to maximum Life", statOrder = { 886 }, level = 80, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-214) to maximum Life" }, } }, - ["MaximumLifeIncrease1"] = { type = "Prefix", affix = "Hopeful", "(3-4)% increased maximum Life", statOrder = { 888 }, level = 33, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-4)% increased maximum Life" }, } }, - ["MaximumLifeIncrease2"] = { type = "Prefix", affix = "Optimistic", "(5-6)% increased maximum Life", statOrder = { 888 }, level = 60, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } }, - ["MaximumLifeIncrease3"] = { type = "Prefix", affix = "Confident", "(7-8)% increased maximum Life", statOrder = { 888 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-8)% increased maximum Life" }, } }, - ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(10-14) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-14) to maximum Mana" }, } }, - ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(15-24) to maximum Mana", statOrder = { 891 }, level = 6, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-24) to maximum Mana" }, } }, - ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-34) to maximum Mana", statOrder = { 891 }, level = 16, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-34) to maximum Mana" }, } }, - ["IncreasedMana4"] = { type = "Prefix", affix = "Teal", "+(35-54) to maximum Mana", statOrder = { 891 }, level = 25, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(35-54) to maximum Mana" }, } }, - ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(55-64) to maximum Mana", statOrder = { 891 }, level = 33, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-64) to maximum Mana" }, } }, - ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(65-79) to maximum Mana", statOrder = { 891 }, level = 38, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(65-79) to maximum Mana" }, } }, - ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(80-89) to maximum Mana", statOrder = { 891 }, level = 46, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-89) to maximum Mana" }, } }, - ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(90-104) to maximum Mana", statOrder = { 891 }, level = 54, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(90-104) to maximum Mana" }, } }, - ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(105-124) to maximum Mana", statOrder = { 891 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(105-124) to maximum Mana" }, } }, - ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(125-149) to maximum Mana", statOrder = { 891 }, level = 65, group = "IncreasedMana", weightKey = { "ring", "amulet", "helmet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(125-149) to maximum Mana" }, } }, - ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(150-164) to maximum Mana", statOrder = { 891 }, level = 70, group = "IncreasedMana", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-164) to maximum Mana" }, } }, - ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(165-179) to maximum Mana", statOrder = { 891 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(165-179) to maximum Mana" }, } }, - ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(180-189) to maximum Mana", statOrder = { 891 }, level = 82, group = "IncreasedMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(180-189) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(20-28) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-28) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(29-48) to maximum Mana", statOrder = { 891 }, level = 6, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(29-48) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(49-68) to maximum Mana", statOrder = { 891 }, level = 16, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(49-68) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(69-108) to maximum Mana", statOrder = { 891 }, level = 25, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-108) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(109-128) to maximum Mana", statOrder = { 891 }, level = 33, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(109-128) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(129-158) to maximum Mana", statOrder = { 891 }, level = 38, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(129-158) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(159-178) to maximum Mana", statOrder = { 891 }, level = 46, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(159-178) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(179-208) to maximum Mana", statOrder = { 891 }, level = 54, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(179-208) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(209-248) to maximum Mana", statOrder = { 891 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(209-248) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(249-298) to maximum Mana", statOrder = { 891 }, level = 65, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(249-298) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(299-328) to maximum Mana", statOrder = { 891 }, level = 70, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(299-328) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(231-251) to maximum Mana", statOrder = { 891 }, level = 75, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(231-251) to maximum Mana" }, } }, - ["MaximumManaIncrease1"] = { type = "Prefix", affix = "Cognizant", "(3-4)% increased maximum Mana", statOrder = { 893 }, level = 33, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(3-4)% increased maximum Mana" }, } }, - ["MaximumManaIncrease2"] = { type = "Prefix", affix = "Perceptive", "(5-6)% increased maximum Mana", statOrder = { 893 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(5-6)% increased maximum Mana" }, } }, - ["MaximumManaIncrease3"] = { type = "Prefix", affix = "Mnemonic", "(7-8)% increased maximum Mana", statOrder = { 893 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(7-8)% increased maximum Mana" }, } }, - ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(12-22) to Armour", statOrder = { 880 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(12-22) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(23-51) to Armour", statOrder = { 880 }, level = 11, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(23-51) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(52-68) to Armour", statOrder = { 880 }, level = 16, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(52-68) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(69-107) to Armour", statOrder = { 880 }, level = 25, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(69-107) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(108-140) to Armour", statOrder = { 880 }, level = 33, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(108-140) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(141-186) to Armour", statOrder = { 880 }, level = 46, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(141-186) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(187-225) to Armour", statOrder = { 880 }, level = 54, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(187-225) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(226-267) to Armour", statOrder = { 880 }, level = 65, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(226-267) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating9"] = { type = "Prefix", affix = "Abating", "+(268-311) to Armour", statOrder = { 880 }, level = 70, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(268-311) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(312-351) to Armour", statOrder = { 880 }, level = 80, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(312-351) to Armour" }, } }, - ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(8-17) to Evasion Rating", statOrder = { 882 }, level = 1, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(8-17) to Evasion Rating" }, } }, - ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(18-38) to Evasion Rating", statOrder = { 882 }, level = 11, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(18-38) to Evasion Rating" }, } }, - ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(39-51) to Evasion Rating", statOrder = { 882 }, level = 16, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(39-51) to Evasion Rating" }, } }, - ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(52-79) to Evasion Rating", statOrder = { 882 }, level = 25, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(52-79) to Evasion Rating" }, } }, - ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(80-107) to Evasion Rating", statOrder = { 882 }, level = 33, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-107) to Evasion Rating" }, } }, - ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(108-141) to Evasion Rating", statOrder = { 882 }, level = 46, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(108-141) to Evasion Rating" }, } }, - ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(142-174) to Evasion Rating", statOrder = { 882 }, level = 54, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(142-174) to Evasion Rating" }, } }, - ["IncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(175-202) to Evasion Rating", statOrder = { 882 }, level = 65, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(175-202) to Evasion Rating" }, } }, - ["IncreasedEvasionRating9"] = { type = "Prefix", affix = "Adroit", "+(203-233) to Evasion Rating", statOrder = { 882 }, level = 70, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(203-233) to Evasion Rating" }, } }, - ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(8-14) to maximum Energy Shield", statOrder = { 884 }, level = 1, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(8-14) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(15-20) to maximum Energy Shield", statOrder = { 884 }, level = 11, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-20) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(21-24) to maximum Energy Shield", statOrder = { 884 }, level = 16, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(21-24) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(25-33) to maximum Energy Shield", statOrder = { 884 }, level = 25, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(25-33) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(34-41) to maximum Energy Shield", statOrder = { 884 }, level = 33, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(34-41) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-51) to maximum Energy Shield", statOrder = { 884 }, level = 46, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(42-51) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(52-61) to maximum Energy Shield", statOrder = { 884 }, level = 54, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(52-61) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(62-70) to maximum Energy Shield", statOrder = { 884 }, level = 65, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(62-70) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(71-79) to maximum Energy Shield", statOrder = { 884 }, level = 70, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(71-79) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(80-89) to maximum Energy Shield", statOrder = { 884 }, level = 80, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(80-89) to maximum Energy Shield" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(10-14)% increased Armour", statOrder = { 881 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-14)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(15-20)% increased Armour", statOrder = { 881 }, level = 16, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(15-20)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(21-26)% increased Armour", statOrder = { 881 }, level = 33, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(21-26)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(27-32)% increased Armour", statOrder = { 881 }, level = 46, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(27-32)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(33-38)% increased Armour", statOrder = { 881 }, level = 54, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(33-38)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(39-44)% increased Armour", statOrder = { 881 }, level = 65, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(39-44)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(45-50)% increased Armour", statOrder = { 881 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(45-50)% increased Armour" }, } }, - ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(10-14)% increased Evasion Rating", statOrder = { 883 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(10-14)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(15-20)% increased Evasion Rating", statOrder = { 883 }, level = 16, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-20)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(21-26)% increased Evasion Rating", statOrder = { 883 }, level = 33, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(21-26)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(27-32)% increased Evasion Rating", statOrder = { 883 }, level = 46, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(27-32)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(33-38)% increased Evasion Rating", statOrder = { 883 }, level = 54, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-38)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(39-44)% increased Evasion Rating", statOrder = { 883 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(39-44)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(45-50)% increased Evasion Rating", statOrder = { 883 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(45-50)% increased Evasion Rating" }, } }, - ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(10-14)% increased maximum Energy Shield", statOrder = { 885 }, level = 2, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-14)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(15-20)% increased maximum Energy Shield", statOrder = { 885 }, level = 16, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-20)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(21-26)% increased maximum Energy Shield", statOrder = { 885 }, level = 33, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(21-26)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(27-32)% increased maximum Energy Shield", statOrder = { 885 }, level = 46, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(27-32)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(33-38)% increased maximum Energy Shield", statOrder = { 885 }, level = 54, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(33-38)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(39-44)% increased maximum Energy Shield", statOrder = { 885 }, level = 65, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(39-44)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(45-50)% increased maximum Energy Shield", statOrder = { 885 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(45-50)% increased maximum Energy Shield" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(16-27) to Armour", statOrder = { 839 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(16-27) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(28-56) to Armour", statOrder = { 839 }, level = 8, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(28-56) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(57-77) to Armour", statOrder = { 839 }, level = 16, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(57-77) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(78-98) to Armour", statOrder = { 839 }, level = 25, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(78-98) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(99-127) to Armour", statOrder = { 839 }, level = 33, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(99-127) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(128-159) to Armour", statOrder = { 839 }, level = 46, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(128-159) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(160-190) to Armour", statOrder = { 839 }, level = 54, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(160-190) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(191-221) to Armour", statOrder = { 839 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(191-221) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(222-248) to Armour", statOrder = { 839 }, level = 65, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(222-248) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(249-277) to Armour", statOrder = { 839 }, level = 75, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(249-277) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(278-310) to Armour", statOrder = { 839 }, level = 79, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(278-310) to Armour" }, } }, - ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(11-18) to Evasion Rating", statOrder = { 840 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(11-18) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(19-46) to Evasion Rating", statOrder = { 840 }, level = 8, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(19-46) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(47-66) to Evasion Rating", statOrder = { 840 }, level = 16, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(47-66) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(67-87) to Evasion Rating", statOrder = { 840 }, level = 25, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(67-87) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(88-116) to Evasion Rating", statOrder = { 840 }, level = 33, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(88-116) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(117-146) to Evasion Rating", statOrder = { 840 }, level = 46, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(117-146) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(147-176) to Evasion Rating", statOrder = { 840 }, level = 54, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(147-176) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(177-207) to Evasion Rating", statOrder = { 840 }, level = 60, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(177-207) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(208-234) to Evasion Rating", statOrder = { 840 }, level = 65, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(208-234) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(235-261) to Evasion Rating", statOrder = { 840 }, level = 75, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(235-261) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(262-300) to Evasion Rating", statOrder = { 840 }, level = 79, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(262-300) to Evasion Rating" }, } }, - ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(10-17) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-17) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(18-24) to maximum Energy Shield", statOrder = { 842 }, level = 8, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(18-24) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(25-30) to maximum Energy Shield", statOrder = { 842 }, level = 16, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(25-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(31-35) to maximum Energy Shield", statOrder = { 842 }, level = 25, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(31-35) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(36-41) to maximum Energy Shield", statOrder = { 842 }, level = 33, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(36-41) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-47) to maximum Energy Shield", statOrder = { 842 }, level = 46, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(42-47) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(48-60) to maximum Energy Shield", statOrder = { 842 }, level = 54, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(48-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(61-73) to maximum Energy Shield", statOrder = { 842 }, level = 60, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(61-73) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(74-80) to maximum Energy Shield", statOrder = { 842 }, level = 65, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(74-80) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(81-90) to maximum Energy Shield", statOrder = { 842 }, level = 70, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(81-90) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-96) to maximum Energy Shield", statOrder = { 842 }, level = 79, group = "LocalEnergyShield", weightKey = { "focus", "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(91-96) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(9-16) to Armour", "+(6-10) to Evasion Rating", statOrder = { 839, 840 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(9-16) to Armour" }, [53045048] = { "+(6-10) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(17-46) to Armour", "+(11-41) to Evasion Rating", statOrder = { 839, 840 }, level = 16, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(17-46) to Armour" }, [53045048] = { "+(11-41) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(47-71) to Armour", "+(42-64) to Evasion Rating", statOrder = { 839, 840 }, level = 33, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(47-71) to Armour" }, [53045048] = { "+(42-64) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(72-85) to Armour", "+(65-78) to Evasion Rating", statOrder = { 839, 840 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(72-85) to Armour" }, [53045048] = { "+(65-78) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(86-102) to Armour", "+(79-94) to Evasion Rating", statOrder = { 839, 840 }, level = 54, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(86-102) to Armour" }, [53045048] = { "+(79-94) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(103-127) to Armour", "+(95-119) to Evasion Rating", statOrder = { 839, 840 }, level = 60, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(103-127) to Armour" }, [53045048] = { "+(95-119) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(128-149) to Armour", "+(120-141) to Evasion Rating", statOrder = { 839, 840 }, level = 65, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(128-149) to Armour" }, [53045048] = { "+(120-141) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(150-170) to Armour", "+(142-161) to Evasion Rating", statOrder = { 839, 840 }, level = 75, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(150-170) to Armour" }, [53045048] = { "+(142-161) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(9-16) to Armour", "+(5-8) to maximum Energy Shield", statOrder = { 839, 842 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(9-16) to Armour" }, [4052037485] = { "+(5-8) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(17-46) to Armour", "+(9-15) to maximum Energy Shield", statOrder = { 839, 842 }, level = 16, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(17-46) to Armour" }, [4052037485] = { "+(9-15) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(47-71) to Armour", "+(16-21) to maximum Energy Shield", statOrder = { 839, 842 }, level = 33, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(47-71) to Armour" }, [4052037485] = { "+(16-21) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(72-85) to Armour", "+(22-25) to maximum Energy Shield", statOrder = { 839, 842 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(72-85) to Armour" }, [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(86-102) to Armour", "+(26-29) to maximum Energy Shield", statOrder = { 839, 842 }, level = 54, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(86-102) to Armour" }, [4052037485] = { "+(26-29) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(103-127) to Armour", "+(30-36) to maximum Energy Shield", statOrder = { 839, 842 }, level = 60, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(103-127) to Armour" }, [4052037485] = { "+(30-36) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(128-149) to Armour", "+(37-42) to maximum Energy Shield", statOrder = { 839, 842 }, level = 65, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(128-149) to Armour" }, [4052037485] = { "+(37-42) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(150-170) to Armour", "+(43-48) to maximum Energy Shield", statOrder = { 839, 842 }, level = 75, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(150-170) to Armour" }, [4052037485] = { "+(43-48) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(6-10) to Evasion Rating", "+(5-8) to maximum Energy Shield", statOrder = { 840, 842 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(6-10) to Evasion Rating" }, [4052037485] = { "+(5-8) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(11-41) to Evasion Rating", "+(9-15) to maximum Energy Shield", statOrder = { 840, 842 }, level = 16, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(11-41) to Evasion Rating" }, [4052037485] = { "+(9-15) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(42-64) to Evasion Rating", "+(16-21) to maximum Energy Shield", statOrder = { 840, 842 }, level = 33, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(42-64) to Evasion Rating" }, [4052037485] = { "+(16-21) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(65-78) to Evasion Rating", "+(22-25) to maximum Energy Shield", statOrder = { 840, 842 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(65-78) to Evasion Rating" }, [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(79-94) to Evasion Rating", "+(26-29) to maximum Energy Shield", statOrder = { 840, 842 }, level = 54, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(79-94) to Evasion Rating" }, [4052037485] = { "+(26-29) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(95-119) to Evasion Rating", "+(30-36) to maximum Energy Shield", statOrder = { 840, 842 }, level = 60, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(95-119) to Evasion Rating" }, [4052037485] = { "+(30-36) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(120-141) to Evasion Rating", "+(37-42) to maximum Energy Shield", statOrder = { 840, 842 }, level = 65, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(120-141) to Evasion Rating" }, [4052037485] = { "+(37-42) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Banshee's", "+(142-161) to Evasion Rating", "+(43-48) to maximum Energy Shield", statOrder = { 840, 842 }, level = 75, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(142-161) to Evasion Rating" }, [4052037485] = { "+(43-48) to maximum Energy Shield" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 845 }, level = 2, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(15-26)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 845 }, level = 16, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-42)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 845 }, level = 35, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(43-55)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 845 }, level = 46, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(56-67)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 845 }, level = 54, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(68-79)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 845 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-91)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 845 }, level = 65, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(92-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 845 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(101-110)% increased Armour" }, } }, - ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 847 }, level = 2, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(15-26)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 847 }, level = 16, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-42)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 847 }, level = 33, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(43-55)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 847 }, level = 46, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(56-67)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 847 }, level = 54, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(68-79)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 847 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-91)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 847 }, level = 65, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(92-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 847 }, level = 75, group = "LocalEvasionRatingIncreasePercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(101-110)% increased Evasion Rating" }, } }, - ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(15-26)% increased Energy Shield", statOrder = { 848 }, level = 2, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(15-26)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 848 }, level = 16, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-42)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 848 }, level = 33, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(43-55)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 848 }, level = 46, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(56-67)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 848 }, level = 54, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(68-79)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 848 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-91)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 848 }, level = 65, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(92-100)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 848 }, level = 75, group = "LocalEnergyShieldPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(101-110)% increased Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 849 }, level = 2, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(15-26)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 849 }, level = 16, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-42)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 849 }, level = 33, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(43-55)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 849 }, level = 46, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(56-67)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 849 }, level = 54, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(68-79)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 849 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-91)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 849 }, level = 65, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(92-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 849 }, level = 75, group = "LocalArmourAndEvasion", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(101-110)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 850 }, level = 2, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(15-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 850 }, level = 16, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(27-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 850 }, level = 33, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(43-55)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 850 }, level = 46, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(56-67)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 850 }, level = 54, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(68-79)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 850 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-91)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 850 }, level = 65, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(92-100)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 850 }, level = 75, group = "LocalArmourAndEnergyShield", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(101-110)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 2, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(15-26)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 16, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(27-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 33, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(43-55)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 46, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(56-67)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 54, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(68-79)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-91)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 65, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(92-100)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 75, group = "LocalEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(101-110)% increased Evasion and Energy Shield" }, } }, - ["LocalArmourAndStunThreshold1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "+(8-13) to Stun Threshold", statOrder = { 845, 1060 }, level = 10, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "+(14-24) to Stun Threshold", statOrder = { 845, 1060 }, level = 19, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "+(25-40) to Stun Threshold", statOrder = { 845, 1060 }, level = 38, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "+(41-63) to Stun Threshold", statOrder = { 845, 1060 }, level = 48, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "+(64-94) to Stun Threshold", statOrder = { 845, 1060 }, level = 63, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "+(95-136) to Stun Threshold", statOrder = { 845, 1060 }, level = 74, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "+(8-13) to Stun Threshold", statOrder = { 847, 1060 }, level = 10, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "+(14-24) to Stun Threshold", statOrder = { 847, 1060 }, level = 19, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "+(25-40) to Stun Threshold", statOrder = { 847, 1060 }, level = 38, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "+(41-63) to Stun Threshold", statOrder = { 847, 1060 }, level = 48, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "+(64-94) to Stun Threshold", statOrder = { 847, 1060 }, level = 63, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "+(95-136) to Stun Threshold", statOrder = { 847, 1060 }, level = 74, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 848, 1060 }, level = 10, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 848, 1060 }, level = 19, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 848, 1060 }, level = 38, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 848, 1060 }, level = 48, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 848, 1060 }, level = 63, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 848, 1060 }, level = 74, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Captain's", "(6-13)% increased Armour and Evasion", "+(8-13) to Stun Threshold", statOrder = { 849, 1060 }, level = 10, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Commander's", "(14-20)% increased Armour and Evasion", "+(14-24) to Stun Threshold", statOrder = { 849, 1060 }, level = 19, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Magnate's", "(21-26)% increased Armour and Evasion", "+(25-40) to Stun Threshold", statOrder = { 849, 1060 }, level = 38, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Marshal's", "(27-32)% increased Armour and Evasion", "+(41-63) to Stun Threshold", statOrder = { 849, 1060 }, level = 48, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold5"] = { type = "Prefix", affix = "General's", "(33-38)% increased Armour and Evasion", "+(64-94) to Stun Threshold", statOrder = { 849, 1060 }, level = 63, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Warlord's", "(39-42)% increased Armour and Evasion", "+(95-136) to Stun Threshold", statOrder = { 849, 1060 }, level = 74, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Defender's", "(6-13)% increased Armour and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 850, 1060 }, level = 10, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(8-13) to Stun Threshold" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Protector's", "(14-20)% increased Armour and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 850, 1060 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(14-24) to Stun Threshold" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Keeper's", "(21-26)% increased Armour and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 850, 1060 }, level = 38, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(25-40) to Stun Threshold" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Guardian's", "(27-32)% increased Armour and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 850, 1060 }, level = 48, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(41-63) to Stun Threshold" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Warden's", "(33-38)% increased Armour and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 850, 1060 }, level = 63, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(64-94) to Stun Threshold" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Sentinel's", "(39-42)% increased Armour and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 850, 1060 }, level = 74, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(95-136) to Stun Threshold" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Intuitive", "(6-13)% increased Evasion and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 851, 1060 }, level = 10, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(8-13) to Stun Threshold" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Psychic", "(14-20)% increased Evasion and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 851, 1060 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(14-24) to Stun Threshold" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Telepath's", "(21-26)% increased Evasion and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 851, 1060 }, level = 38, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(25-40) to Stun Threshold" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Illusionist's", "(27-32)% increased Evasion and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 851, 1060 }, level = 48, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(41-63) to Stun Threshold" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Mentalist's", "(33-38)% increased Evasion and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 851, 1060 }, level = 63, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(64-94) to Stun Threshold" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Trickster's", "(39-42)% increased Evasion and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 851, 1060 }, level = 74, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(95-136) to Stun Threshold" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "(6-13)% increased Armour", "+(7-10) to maximum Life", statOrder = { 845, 886 }, level = 8, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "(14-20)% increased Armour", "+(11-19) to maximum Life", statOrder = { 845, 886 }, level = 16, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "(21-26)% increased Armour", "+(20-25) to maximum Life", statOrder = { 845, 886 }, level = 33, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "(27-32)% increased Armour", "+(26-32) to maximum Life", statOrder = { 845, 886 }, level = 46, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "(33-38)% increased Armour", "+(33-41) to maximum Life", statOrder = { 845, 886 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "(39-42)% increased Armour", "+(42-49) to maximum Life", statOrder = { 845, 886 }, level = 78, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "(6-13)% increased Evasion Rating", "+(7-10) to maximum Life", statOrder = { 847, 886 }, level = 8, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "(14-20)% increased Evasion Rating", "+(11-19) to maximum Life", statOrder = { 847, 886 }, level = 16, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "(21-26)% increased Evasion Rating", "+(20-25) to maximum Life", statOrder = { 847, 886 }, level = 33, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "(27-32)% increased Evasion Rating", "+(26-32) to maximum Life", statOrder = { 847, 886 }, level = 46, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "(33-38)% increased Evasion Rating", "+(33-41) to maximum Life", statOrder = { 847, 886 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "(39-42)% increased Evasion Rating", "+(42-49) to maximum Life", statOrder = { 847, 886 }, level = 78, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "(6-13)% increased Energy Shield", "+(7-10) to maximum Life", statOrder = { 848, 886 }, level = 8, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "(14-20)% increased Energy Shield", "+(11-19) to maximum Life", statOrder = { 848, 886 }, level = 16, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "(21-26)% increased Energy Shield", "+(20-25) to maximum Life", statOrder = { 848, 886 }, level = 33, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "(27-32)% increased Energy Shield", "+(26-32) to maximum Life", statOrder = { 848, 886 }, level = 46, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "(33-38)% increased Energy Shield", "+(33-41) to maximum Life", statOrder = { 848, 886 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "(39-42)% increased Energy Shield", "+(42-49) to maximum Life", statOrder = { 848, 886 }, level = 78, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "(6-13)% increased Armour and Evasion", "+(7-10) to maximum Life", statOrder = { 849, 886 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "(14-20)% increased Armour and Evasion", "+(11-19) to maximum Life", statOrder = { 849, 886 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "(21-26)% increased Armour and Evasion", "+(20-25) to maximum Life", statOrder = { 849, 886 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "(27-32)% increased Armour and Evasion", "+(26-32) to maximum Life", statOrder = { 849, 886 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "(33-38)% increased Armour and Evasion", "+(33-41) to maximum Life", statOrder = { 849, 886 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "(39-42)% increased Armour and Evasion", "+(42-49) to maximum Life", statOrder = { 849, 886 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "(6-13)% increased Armour and Energy Shield", "+(7-10) to maximum Life", statOrder = { 850, 886 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(7-10) to maximum Life" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "(14-20)% increased Armour and Energy Shield", "+(11-19) to maximum Life", statOrder = { 850, 886 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(11-19) to maximum Life" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "(21-26)% increased Armour and Energy Shield", "+(20-25) to maximum Life", statOrder = { 850, 886 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(20-25) to maximum Life" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "(27-32)% increased Armour and Energy Shield", "+(26-32) to maximum Life", statOrder = { 850, 886 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(26-32) to maximum Life" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "(33-38)% increased Armour and Energy Shield", "+(33-41) to maximum Life", statOrder = { 850, 886 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(33-41) to maximum Life" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "(39-42)% increased Armour and Energy Shield", "+(42-49) to maximum Life", statOrder = { 850, 886 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(42-49) to maximum Life" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "(6-13)% increased Evasion and Energy Shield", "+(7-10) to maximum Life", statOrder = { 851, 886 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(7-10) to maximum Life" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "(14-20)% increased Evasion and Energy Shield", "+(11-19) to maximum Life", statOrder = { 851, 886 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(11-19) to maximum Life" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "(21-26)% increased Evasion and Energy Shield", "+(20-25) to maximum Life", statOrder = { 851, 886 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(20-25) to maximum Life" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "(27-32)% increased Evasion and Energy Shield", "+(26-32) to maximum Life", statOrder = { 851, 886 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(26-32) to maximum Life" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "(33-38)% increased Evasion and Energy Shield", "+(33-41) to maximum Life", statOrder = { 851, 886 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(33-41) to maximum Life" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "(39-42)% increased Evasion and Energy Shield", "+(42-49) to maximum Life", statOrder = { 851, 886 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(42-49) to maximum Life" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndMana1"] = { type = "Prefix", affix = "Imposing", "(6-13)% increased Armour", "+(6-8) to maximum Mana", statOrder = { 845, 891 }, level = 8, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana2"] = { type = "Prefix", affix = "Venerable", "(14-20)% increased Armour", "+(9-16) to maximum Mana", statOrder = { 845, 891 }, level = 16, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana3"] = { type = "Prefix", affix = "Regal", "(21-26)% increased Armour", "+(17-20) to maximum Mana", statOrder = { 845, 891 }, level = 33, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana4"] = { type = "Prefix", affix = "Colossal", "(27-32)% increased Armour", "+(21-26) to maximum Mana", statOrder = { 845, 891 }, level = 46, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana5"] = { type = "Prefix", affix = "Chieftain's", "(33-38)% increased Armour", "+(27-32) to maximum Mana", statOrder = { 845, 891 }, level = 60, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana6"] = { type = "Prefix", affix = "Ancestral", "(39-42)% increased Armour", "+(33-39) to maximum Mana", statOrder = { 845, 891 }, level = 78, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana1"] = { type = "Prefix", affix = "Nomad's", "(6-13)% increased Evasion Rating", "+(6-8) to maximum Mana", statOrder = { 847, 891 }, level = 8, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana2"] = { type = "Prefix", affix = "Drifter's", "(14-20)% increased Evasion Rating", "+(9-16) to maximum Mana", statOrder = { 847, 891 }, level = 16, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana3"] = { type = "Prefix", affix = "Traveller's", "(21-26)% increased Evasion Rating", "+(17-20) to maximum Mana", statOrder = { 847, 891 }, level = 33, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana4"] = { type = "Prefix", affix = "Explorer's", "(27-32)% increased Evasion Rating", "+(21-26) to maximum Mana", statOrder = { 847, 891 }, level = 46, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana5"] = { type = "Prefix", affix = "Wayfarer's", "(33-38)% increased Evasion Rating", "+(27-32) to maximum Mana", statOrder = { 847, 891 }, level = 60, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana6"] = { type = "Prefix", affix = "Wanderer's", "(39-42)% increased Evasion Rating", "+(33-39) to maximum Mana", statOrder = { 847, 891 }, level = 78, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana1"] = { type = "Prefix", affix = "Imbued", "(6-13)% increased Energy Shield", "+(6-8) to maximum Mana", statOrder = { 848, 891 }, level = 8, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana2"] = { type = "Prefix", affix = "Serene", "(14-20)% increased Energy Shield", "+(9-16) to maximum Mana", statOrder = { 848, 891 }, level = 16, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana3"] = { type = "Prefix", affix = "Sacred", "(21-26)% increased Energy Shield", "+(17-20) to maximum Mana", statOrder = { 848, 891 }, level = 33, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana4"] = { type = "Prefix", affix = "Celestial", "(27-32)% increased Energy Shield", "+(21-26) to maximum Mana", statOrder = { 848, 891 }, level = 46, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana5"] = { type = "Prefix", affix = "Heavenly", "(33-38)% increased Energy Shield", "+(27-32) to maximum Mana", statOrder = { 848, 891 }, level = 60, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana6"] = { type = "Prefix", affix = "Angel's", "(39-42)% increased Energy Shield", "+(33-39) to maximum Mana", statOrder = { 848, 891 }, level = 78, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana1"] = { type = "Prefix", affix = "Rhoa's", "(6-13)% increased Armour and Evasion", "+(6-8) to maximum Mana", statOrder = { 849, 891 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana2"] = { type = "Prefix", affix = "Rhex's", "(14-20)% increased Armour and Evasion", "+(9-16) to maximum Mana", statOrder = { 849, 891 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana3"] = { type = "Prefix", affix = "Chimeral's", "(21-26)% increased Armour and Evasion", "+(17-20) to maximum Mana", statOrder = { 849, 891 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana4"] = { type = "Prefix", affix = "Bull's", "(27-32)% increased Armour and Evasion", "+(21-26) to maximum Mana", statOrder = { 849, 891 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana5"] = { type = "Prefix", affix = "Minotaur's", "(33-38)% increased Armour and Evasion", "+(27-32) to maximum Mana", statOrder = { 849, 891 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana6"] = { type = "Prefix", affix = "Cerberus'", "(39-42)% increased Armour and Evasion", "+(33-39) to maximum Mana", statOrder = { 849, 891 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Coelacanth's", "(6-13)% increased Armour and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 850, 891 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(6-8) to maximum Mana" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Swordfish's", "(14-20)% increased Armour and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 850, 891 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(9-16) to maximum Mana" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Shark's", "(21-26)% increased Armour and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 850, 891 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Dolphin's", "(27-32)% increased Armour and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 850, 891 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(21-26) to maximum Mana" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Orca's", "(33-38)% increased Armour and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 850, 891 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(27-32) to maximum Mana" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Whale's", "(39-42)% increased Armour and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 850, 891 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(33-39) to maximum Mana" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Vulture's", "(6-13)% increased Evasion and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 851, 891 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(6-8) to maximum Mana" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Kingfisher's", "(14-20)% increased Evasion and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 851, 891 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(9-16) to maximum Mana" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Owl's", "(21-26)% increased Evasion and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 851, 891 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Hawk's", "(27-32)% increased Evasion and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 851, 891 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(21-26) to maximum Mana" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Eagle's", "(33-38)% increased Evasion and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 851, 891 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(27-32) to maximum Mana" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Falcon's", "(39-42)% increased Evasion and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 851, 891 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(33-39) to maximum Mana" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndBase1"] = { type = "Prefix", affix = "Abalone's", "+(5-9) to Armour", "(6-13)% increased Armour", statOrder = { 839, 845 }, level = 8, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [3484657501] = { "+(5-9) to Armour" }, } }, - ["LocalIncreasedArmourAndBase2"] = { type = "Prefix", affix = "Snail's", "+(10-29) to Armour", "(14-20)% increased Armour", statOrder = { 839, 845 }, level = 16, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [3484657501] = { "+(10-29) to Armour" }, } }, - ["LocalIncreasedArmourAndBase3"] = { type = "Prefix", affix = "Tortoise's", "+(30-41) to Armour", "(21-26)% increased Armour", statOrder = { 839, 845 }, level = 33, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [3484657501] = { "+(30-41) to Armour" }, } }, - ["LocalIncreasedArmourAndBase4"] = { type = "Prefix", affix = "Pangolin's", "+(42-57) to Armour", "(27-32)% increased Armour", statOrder = { 839, 845 }, level = 46, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [3484657501] = { "+(42-57) to Armour" }, } }, - ["LocalIncreasedArmourAndBase5"] = { type = "Prefix", affix = "Shelled", "+(58-75) to Armour", "(33-38)% increased Armour", statOrder = { 839, 845 }, level = 60, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [3484657501] = { "+(58-75) to Armour" }, } }, - ["LocalIncreasedArmourAndBase6"] = { type = "Prefix", affix = "Hardened", "+(76-95) to Armour", "(39-42)% increased Armour", statOrder = { 839, 845 }, level = 78, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [3484657501] = { "+(76-95) to Armour" }, } }, - ["LocalIncreasedEvasionAndBase1"] = { type = "Prefix", affix = "Impala's", "+(4-6) to Evasion Rating", "(6-13)% increased Evasion Rating", statOrder = { 840, 847 }, level = 8, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [53045048] = { "+(4-6) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase2"] = { type = "Prefix", affix = "Buck's", "+(7-26) to Evasion Rating", "(14-20)% increased Evasion Rating", statOrder = { 840, 847 }, level = 16, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [53045048] = { "+(7-26) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase3"] = { type = "Prefix", affix = "Moose's", "+(27-38) to Evasion Rating", "(21-26)% increased Evasion Rating", statOrder = { 840, 847 }, level = 33, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [53045048] = { "+(27-38) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase4"] = { type = "Prefix", affix = "Deer's", "+(39-53) to Evasion Rating", "(27-32)% increased Evasion Rating", statOrder = { 840, 847 }, level = 46, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [53045048] = { "+(39-53) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase5"] = { type = "Prefix", affix = "Caribou's", "+(54-70) to Evasion Rating", "(33-38)% increased Evasion Rating", statOrder = { 840, 847 }, level = 60, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [53045048] = { "+(54-70) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase6"] = { type = "Prefix", affix = "Antelope's", "+(71-90) to Evasion Rating", "(39-42)% increased Evasion Rating", statOrder = { 840, 847 }, level = 78, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [53045048] = { "+(71-90) to Evasion Rating" }, } }, - ["LocalIncreasedEnergyShieldAndBase1"] = { type = "Prefix", affix = "Deacon's", "+(4-7) to maximum Energy Shield", "(6-13)% increased Energy Shield", statOrder = { 842, 848 }, level = 8, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [4052037485] = { "+(4-7) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase2"] = { type = "Prefix", affix = "Cardinal's", "+(8-13) to maximum Energy Shield", "(14-20)% increased Energy Shield", statOrder = { 842, 848 }, level = 16, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [4052037485] = { "+(8-13) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase3"] = { type = "Prefix", affix = "Priest's", "+(14-16) to maximum Energy Shield", "(21-26)% increased Energy Shield", statOrder = { 842, 848 }, level = 33, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [4052037485] = { "+(14-16) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase4"] = { type = "Prefix", affix = "High Priest's", "+(17-20) to maximum Energy Shield", "(27-32)% increased Energy Shield", statOrder = { 842, 848 }, level = 46, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [4052037485] = { "+(17-20) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase5"] = { type = "Prefix", affix = "Archon's", "+(21-25) to maximum Energy Shield", "(33-38)% increased Energy Shield", statOrder = { 842, 848 }, level = 60, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [4052037485] = { "+(21-25) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase6"] = { type = "Prefix", affix = "Divine", "+(26-30) to maximum Energy Shield", "(39-42)% increased Energy Shield", statOrder = { 842, 848 }, level = 78, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [4052037485] = { "+(26-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase1"] = { type = "Prefix", affix = "Swordsman's", "+(3-5) to Armour", "+(2-3) to Evasion Rating", "(6-13)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [53045048] = { "+(2-3) to Evasion Rating" }, [3484657501] = { "+(3-5) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase2"] = { type = "Prefix", affix = "Fighter's", "+(6-16) to Armour", "+(4-14) to Evasion Rating", "(14-20)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [53045048] = { "+(4-14) to Evasion Rating" }, [3484657501] = { "+(6-16) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase3"] = { type = "Prefix", affix = "Veteran's", "+(17-23) to Armour", "+(15-21) to Evasion Rating", "(21-26)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [53045048] = { "+(15-21) to Evasion Rating" }, [3484657501] = { "+(17-23) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase4"] = { type = "Prefix", affix = "Warrior's", "+(24-32) to Armour", "+(22-29) to Evasion Rating", "(27-32)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [53045048] = { "+(22-29) to Evasion Rating" }, [3484657501] = { "+(24-32) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase5"] = { type = "Prefix", affix = "Knight's", "+(33-41) to Armour", "+(30-39) to Evasion Rating", "(33-38)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [53045048] = { "+(30-39) to Evasion Rating" }, [3484657501] = { "+(33-41) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase6"] = { type = "Prefix", affix = "Centurion's", "+(42-52) to Armour", "+(40-50) to Evasion Rating", "(39-42)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [53045048] = { "+(40-50) to Evasion Rating" }, [3484657501] = { "+(42-52) to Armour" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Faithful", "+(3-5) to Armour", "+(2-4) to maximum Energy Shield", "(6-13)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(3-5) to Armour" }, [4052037485] = { "+(2-4) to maximum Energy Shield" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Noble's", "+(6-16) to Armour", "+(5-6) to maximum Energy Shield", "(14-20)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(6-16) to Armour" }, [4052037485] = { "+(5-6) to maximum Energy Shield" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Inquisitor's", "+(17-23) to Armour", "+(7-8) to maximum Energy Shield", "(21-26)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(17-23) to Armour" }, [4052037485] = { "+(7-8) to maximum Energy Shield" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Crusader's", "+(24-32) to Armour", "+(9-10) to maximum Energy Shield", "(27-32)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(24-32) to Armour" }, [4052037485] = { "+(9-10) to maximum Energy Shield" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Paladin's", "+(33-41) to Armour", "+(11-12) to maximum Energy Shield", "(33-38)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(33-41) to Armour" }, [4052037485] = { "+(11-12) to maximum Energy Shield" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Grand", "+(42-52) to Armour", "+(13-15) to maximum Energy Shield", "(39-42)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(42-52) to Armour" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Pursuer's", "+(2-3) to Evasion Rating", "+(2-4) to maximum Energy Shield", "(6-13)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(2-3) to Evasion Rating" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, [4052037485] = { "+(2-4) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Tracker's", "+(4-14) to Evasion Rating", "+(5-6) to maximum Energy Shield", "(14-20)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(4-14) to Evasion Rating" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, [4052037485] = { "+(5-6) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Chaser's", "+(15-21) to Evasion Rating", "+(7-8) to maximum Energy Shield", "(21-26)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(15-21) to Evasion Rating" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, [4052037485] = { "+(7-8) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Phantom's", "+(22-29) to Evasion Rating", "+(9-10) to maximum Energy Shield", "(27-32)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(22-29) to Evasion Rating" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, [4052037485] = { "+(9-10) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Rogue's", "+(30-39) to Evasion Rating", "+(11-12) to maximum Energy Shield", "(33-38)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(30-39) to Evasion Rating" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, [4052037485] = { "+(11-12) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Stalker's", "+(40-50) to Evasion Rating", "+(13-15) to maximum Energy Shield", "(39-42)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(40-50) to Evasion Rating" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 2, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(15-26)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 16, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 33, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(43-55)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 46, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 54, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Incorporeal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 65, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(92-100)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Ascendant", "(101-110)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 75, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(101-110)% increased Armour, Evasion and Energy Shield" }, } }, - ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "15% reduced Attribute Requirements", statOrder = { 947 }, level = 24, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "15% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "20% reduced Attribute Requirements", statOrder = { 947 }, level = 32, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "20% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements3"] = { type = "Suffix", affix = "of the Talented", "25% reduced Attribute Requirements", statOrder = { 947 }, level = 40, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements4"] = { type = "Suffix", affix = "of the Skilled", "30% reduced Attribute Requirements", statOrder = { 947 }, level = 52, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "30% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements5"] = { type = "Suffix", affix = "of the Proficient", "35% reduced Attribute Requirements", statOrder = { 947 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "35% reduced Attribute Requirements" }, } }, - ["StunThreshold1"] = { type = "Suffix", affix = "of Thick Skin", "+(6-11) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(6-11) to Stun Threshold" }, } }, - ["StunThreshold2"] = { type = "Suffix", affix = "of Reinforced Skin", "+(12-29) to Stun Threshold", statOrder = { 1060 }, level = 8, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(12-29) to Stun Threshold" }, } }, - ["StunThreshold3"] = { type = "Suffix", affix = "of Stone Skin", "+(30-49) to Stun Threshold", statOrder = { 1060 }, level = 15, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(30-49) to Stun Threshold" }, } }, - ["StunThreshold4"] = { type = "Suffix", affix = "of Iron Skin", "+(50-72) to Stun Threshold", statOrder = { 1060 }, level = 22, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(50-72) to Stun Threshold" }, } }, - ["StunThreshold5"] = { type = "Suffix", affix = "of Steel Skin", "+(73-97) to Stun Threshold", statOrder = { 1060 }, level = 29, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(73-97) to Stun Threshold" }, } }, - ["StunThreshold6"] = { type = "Suffix", affix = "of Granite Skin", "+(98-124) to Stun Threshold", statOrder = { 1060 }, level = 36, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(98-124) to Stun Threshold" }, } }, - ["StunThreshold7"] = { type = "Suffix", affix = "of Platinum Skin", "+(125-163) to Stun Threshold", statOrder = { 1060 }, level = 45, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(125-163) to Stun Threshold" }, } }, - ["StunThreshold8"] = { type = "Suffix", affix = "of Adamantite Skin", "+(164-206) to Stun Threshold", statOrder = { 1060 }, level = 54, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(164-206) to Stun Threshold" }, } }, - ["StunThreshold9"] = { type = "Suffix", affix = "of Corundum Skin", "+(207-253) to Stun Threshold", statOrder = { 1060 }, level = 63, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(207-253) to Stun Threshold" }, } }, - ["StunThreshold10"] = { type = "Suffix", affix = "of Obsidian Skin", "+(254-304) to Stun Threshold", statOrder = { 1060 }, level = 72, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(254-304) to Stun Threshold" }, } }, - ["StunThreshold11"] = { type = "Suffix", affix = "of Titanium Skin", "+(305-352) to Stun Threshold", statOrder = { 1060 }, level = 80, group = "StunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(305-352) to Stun Threshold" }, } }, - ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 835 }, level = 16, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 835 }, level = 33, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 835 }, level = 46, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 835 }, level = 65, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 835 }, level = 82, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "35% increased Movement Speed" }, } }, - ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "(1-2) to (3-4) Physical Thorns damage", statOrder = { 10220 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(1-2) to (3-4) Physical Thorns damage" }, } }, - ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "(5-7) to (7-10) Physical Thorns damage", statOrder = { 10220 }, level = 10, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(5-7) to (7-10) Physical Thorns damage" }, } }, - ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "(11-16) to (17-23) Physical Thorns damage", statOrder = { 10220 }, level = 19, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(11-16) to (17-23) Physical Thorns damage" }, } }, - ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Pointed", "(24-35) to (36-53) Physical Thorns damage", statOrder = { 10220 }, level = 38, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (36-53) Physical Thorns damage" }, } }, - ["AttackerTakesDamage5"] = { type = "Prefix", affix = "Spiked", "(40-60) to (61-92) Physical Thorns damage", statOrder = { 10220 }, level = 48, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(40-60) to (61-92) Physical Thorns damage" }, } }, - ["AttackerTakesDamage6"] = { type = "Prefix", affix = "Edged", "(64-97) to (98-145) Physical Thorns damage", statOrder = { 10220 }, level = 63, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(64-97) to (98-145) Physical Thorns damage" }, } }, - ["AttackerTakesDamage7"] = { type = "Prefix", affix = "Jagged", "(101-151) to (152-220) Physical Thorns damage", statOrder = { 10220 }, level = 74, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(101-151) to (152-220) Physical Thorns damage" }, } }, - ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 857 }, level = 1, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (1-2) to 3 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-6) Physical Damage to Attacks", statOrder = { 857 }, level = 8, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (4-6) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (2-4) to (5-8) Physical Damage to Attacks", statOrder = { 857 }, level = 16, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-4) to (5-8) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (8-11) Physical Damage to Attacks", statOrder = { 857 }, level = 33, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (8-11) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 857 }, level = 46, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (9-13) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-10) to (12-17) Physical Damage to Attacks", statOrder = { 857 }, level = 54, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (12-17) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 857 }, level = 60, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-11) to (14-20) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (10-15) to (18-26) Physical Damage to Attacks", statOrder = { 857 }, level = 65, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (10-15) to (18-26) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (12-19) to (22-32) Physical Damage to Attacks", statOrder = { 857 }, level = 75, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (12-19) to (22-32) Physical Damage to Attacks" }, } }, - ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire damage to Attacks", statOrder = { 858 }, level = 1, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (1-2) to 3 Fire damage to Attacks" }, } }, - ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 858 }, level = 8, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (3-5) to (6-9) Fire damage to Attacks" }, } }, - ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (6-8) to (10-13) Fire damage to Attacks", statOrder = { 858 }, level = 16, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (10-13) Fire damage to Attacks" }, } }, - ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (9-11) to (14-17) Fire damage to Attacks", statOrder = { 858 }, level = 33, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-11) to (14-17) Fire damage to Attacks" }, } }, - ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (12-13) to (18-20) Fire damage to Attacks", statOrder = { 858 }, level = 46, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (12-13) to (18-20) Fire damage to Attacks" }, } }, - ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-16) to (21-26) Fire damage to Attacks", statOrder = { 858 }, level = 54, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (11-16) to (21-26) Fire damage to Attacks" }, } }, - ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-19) to (27-32) Fire damage to Attacks", statOrder = { 858 }, level = 60, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-19) to (27-32) Fire damage to Attacks" }, } }, - ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (20-24) to (33-36) Fire damage to Attacks", statOrder = { 858 }, level = 65, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (20-24) to (33-36) Fire damage to Attacks" }, } }, - ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (25-29) to (37-45) Fire damage to Attacks", statOrder = { 858 }, level = 75, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (25-29) to (37-45) Fire damage to Attacks" }, } }, - ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold damage to Attacks", statOrder = { 859 }, level = 1, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 1 to (2-3) Cold damage to Attacks" }, } }, - ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 859 }, level = 8, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-4) to (5-8) Cold damage to Attacks" }, } }, - ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-6) to (9-11) Cold damage to Attacks", statOrder = { 859 }, level = 16, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (5-6) to (9-11) Cold damage to Attacks" }, } }, - ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (7-8) to (12-14) Cold damage to Attacks", statOrder = { 859 }, level = 33, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-8) to (12-14) Cold damage to Attacks" }, } }, - ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (9-10) to (15-17) Cold damage to Attacks", statOrder = { 859 }, level = 46, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (9-10) to (15-17) Cold damage to Attacks" }, } }, - ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (11-13) to (18-21) Cold damage to Attacks", statOrder = { 859 }, level = 54, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (11-13) to (18-21) Cold damage to Attacks" }, } }, - ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (14-15) to (22-24) Cold damage to Attacks", statOrder = { 859 }, level = 60, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (14-15) to (22-24) Cold damage to Attacks" }, } }, - ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (16-20) to (25-31) Cold damage to Attacks", statOrder = { 859 }, level = 65, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (16-20) to (25-31) Cold damage to Attacks" }, } }, - ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (21-24) to (32-37) Cold damage to Attacks", statOrder = { 859 }, level = 75, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (21-24) to (32-37) Cold damage to Attacks" }, } }, - ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning damage to Attacks", statOrder = { 860 }, level = 1, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (4-6) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (10-15) Lightning damage to Attacks", statOrder = { 860 }, level = 8, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (10-15) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 1 to (16-22) Lightning damage to Attacks", statOrder = { 860 }, level = 16, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (16-22) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 1 to (23-27) Lightning damage to Attacks", statOrder = { 860 }, level = 33, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (23-27) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds 1 to (28-32) Lightning damage to Attacks", statOrder = { 860 }, level = 46, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (28-32) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-2) to (33-40) Lightning damage to Attacks", statOrder = { 860 }, level = 54, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (33-40) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-2) to (41-47) Lightning damage to Attacks", statOrder = { 860 }, level = 60, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (41-47) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-3) to (48-59) Lightning damage to Attacks", statOrder = { 860 }, level = 65, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (48-59) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-4) to (60-71) Lightning damage to Attacks", statOrder = { 860 }, level = 75, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (60-71) Lightning damage to Attacks" }, } }, - ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (4-5) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (1-2) to (4-5) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-6) to (7-11) Physical Damage", statOrder = { 830 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-6) to (7-11) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (11-16) Physical Damage", statOrder = { 830 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-9) to (11-16) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (14-21) Physical Damage", statOrder = { 830 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (14-21) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (10-15) to (18-26) Physical Damage", statOrder = { 830 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-15) to (18-26) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-20) to (23-35) Physical Damage", statOrder = { 830 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-20) to (23-35) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-24) to (28-42) Physical Damage", statOrder = { 830 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-24) to (28-42) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (21-31) to (36-53) Physical Damage", statOrder = { 830 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (21-31) to (36-53) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (26-39) to (44-66) Physical Damage", statOrder = { 830 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (26-39) to (44-66) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds (2-3) to (5-7) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-3) to (5-7) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (5-8) to (10-15) Physical Damage", statOrder = { 830 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (10-15) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (8-12) to (15-22) Physical Damage", statOrder = { 830 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (15-22) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (11-17) to (20-30) Physical Damage", statOrder = { 830 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-17) to (20-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (14-21) to (25-37) Physical Damage", statOrder = { 830 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-21) to (25-37) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (19-29) to (33-49) Physical Damage", statOrder = { 830 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (19-29) to (33-49) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (23-35) to (39-59) Physical Damage", statOrder = { 830 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (23-35) to (39-59) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (29-44) to (50-75) Physical Damage", statOrder = { 830 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (29-44) to (50-75) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (37-55) to (63-94) Physical Damage", statOrder = { 830 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (37-55) to (63-94) Physical Damage" }, } }, - ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-5) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (1-2) to (3-5) Fire Damage" }, } }, - ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (4-6) to (7-10) Fire Damage", statOrder = { 831 }, level = 8, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (4-6) to (7-10) Fire Damage" }, } }, - ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (7-11) to (13-19) Fire Damage", statOrder = { 831 }, level = 16, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (7-11) to (13-19) Fire Damage" }, } }, - ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-19) to (21-29) Fire Damage", statOrder = { 831 }, level = 33, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-19) to (21-29) Fire Damage" }, } }, - ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (20-24) to (32-37) Fire Damage", statOrder = { 831 }, level = 46, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (20-24) to (32-37) Fire Damage" }, } }, - ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (25-33) to (38-54) Fire Damage", statOrder = { 831 }, level = 54, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (25-33) to (38-54) Fire Damage" }, } }, - ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (35-44) to (56-71) Fire Damage", statOrder = { 831 }, level = 60, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (35-44) to (56-71) Fire Damage" }, } }, - ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (47-59) to (74-97) Fire Damage", statOrder = { 831 }, level = 65, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (47-59) to (74-97) Fire Damage" }, } }, - ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (62-85) to (101-129) Fire Damage", statOrder = { 831 }, level = 75, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (62-85) to (101-129) Fire Damage" }, } }, - ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (88-101) to (133-154) Fire Damage", statOrder = { 831 }, level = 81, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (88-101) to (133-154) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (2-4) to (5-7) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (6-9) to (10-16) Fire Damage", statOrder = { 831 }, level = 8, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (6-9) to (10-16) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (11-17) to (19-28) Fire Damage", statOrder = { 831 }, level = 16, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (11-17) to (19-28) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (19-27) to (30-42) Fire Damage", statOrder = { 831 }, level = 33, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (19-27) to (30-42) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (30-37) to (45-56) Fire Damage", statOrder = { 831 }, level = 46, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (30-37) to (45-56) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (39-53) to (59-80) Fire Damage", statOrder = { 831 }, level = 54, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (39-53) to (59-80) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (56-70) to (84-107) Fire Damage", statOrder = { 831 }, level = 60, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (56-70) to (84-107) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (73-97) to (112-149) Fire Damage", statOrder = { 831 }, level = 65, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (73-97) to (112-149) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (102-130) to (155-198) Fire Damage", statOrder = { 831 }, level = 75, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (102-130) to (155-198) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (135-156) to (205-236) Fire Damage", statOrder = { 831 }, level = 81, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (135-156) to (205-236) Fire Damage" }, } }, - ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (1-2) to (3-4) Cold Damage" }, } }, - ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-5) to (6-9) Cold Damage", statOrder = { 832 }, level = 8, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (3-5) to (6-9) Cold Damage" }, } }, - ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (6-9) to (10-16) Cold Damage", statOrder = { 832 }, level = 16, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-9) to (10-16) Cold Damage" }, } }, - ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (17-24) Cold Damage", statOrder = { 832 }, level = 33, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (17-24) Cold Damage" }, } }, - ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (17-20) to (26-32) Cold Damage", statOrder = { 832 }, level = 46, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (17-20) to (26-32) Cold Damage" }, } }, - ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (22-29) to (34-44) Cold Damage", statOrder = { 832 }, level = 54, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (22-29) to (34-44) Cold Damage" }, } }, - ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (31-38) to (47-59) Cold Damage", statOrder = { 832 }, level = 60, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (31-38) to (47-59) Cold Damage" }, } }, - ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (40-53) to (62-80) Cold Damage", statOrder = { 832 }, level = 65, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (40-53) to (62-80) Cold Damage" }, } }, - ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (55-69) to (83-106) Cold Damage", statOrder = { 832 }, level = 75, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (55-69) to (83-106) Cold Damage" }, } }, - ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (72-81) to (110-123) Cold Damage", statOrder = { 832 }, level = 81, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (72-81) to (110-123) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (4-6) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (2-3) to (4-6) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (5-8) to (9-14) Cold Damage", statOrder = { 832 }, level = 8, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (5-8) to (9-14) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (10-14) to (15-23) Cold Damage", statOrder = { 832 }, level = 16, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-14) to (15-23) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-23) to (25-35) Cold Damage", statOrder = { 832 }, level = 33, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-23) to (25-35) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (25-30) to (38-46) Cold Damage", statOrder = { 832 }, level = 46, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (25-30) to (38-46) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-43) to (49-66) Cold Damage", statOrder = { 832 }, level = 54, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (32-43) to (49-66) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (46-57) to (70-88) Cold Damage", statOrder = { 832 }, level = 60, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (46-57) to (70-88) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (60-80) to (92-121) Cold Damage", statOrder = { 832 }, level = 65, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (60-80) to (92-121) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (84-107) to (126-161) Cold Damage", statOrder = { 832 }, level = 75, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (84-107) to (126-161) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (112-124) to (168-189) Cold Damage", statOrder = { 832 }, level = 81, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (112-124) to (168-189) Cold Damage" }, } }, - ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (4-6) Lightning Damage" }, } }, - ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (13-19) Lightning Damage", statOrder = { 833 }, level = 8, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (13-19) Lightning Damage" }, } }, - ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (20-30) Lightning Damage", statOrder = { 833 }, level = 16, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (20-30) Lightning Damage" }, } }, - ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (36-52) Lightning Damage", statOrder = { 833 }, level = 33, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (36-52) Lightning Damage" }, } }, - ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (55-60) Lightning Damage", statOrder = { 833 }, level = 46, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (55-60) Lightning Damage" }, } }, - ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (63-82) Lightning Damage", statOrder = { 833 }, level = 54, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (63-82) Lightning Damage" }, } }, - ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-6) to (85-107) Lightning Damage", statOrder = { 833 }, level = 60, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-6) to (85-107) Lightning Damage" }, } }, - ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-8) to (111-152) Lightning Damage", statOrder = { 833 }, level = 65, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (111-152) Lightning Damage" }, } }, - ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-10) to (157-196) Lightning Damage", statOrder = { 833 }, level = 75, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-10) to (157-196) Lightning Damage" }, } }, - ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-12) to (202-234) Lightning Damage", statOrder = { 833 }, level = 81, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-12) to (202-234) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 1 to (7-10) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (7-10) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (19-27) Lightning Damage", statOrder = { 833 }, level = 8, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (19-27) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (31-43) Lightning Damage", statOrder = { 833 }, level = 16, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (31-43) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (53-76) Lightning Damage", statOrder = { 833 }, level = 33, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (53-76) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (1-4) to (80-88) Lightning Damage", statOrder = { 833 }, level = 46, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (80-88) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (1-6) to (93-122) Lightning Damage", statOrder = { 833 }, level = 54, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-6) to (93-122) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (1-8) to (128-162) Lightning Damage", statOrder = { 833 }, level = 60, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (128-162) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (1-13) to (168-231) Lightning Damage", statOrder = { 833 }, level = 65, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-13) to (168-231) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-16) to (239-300) Lightning Damage", statOrder = { 833 }, level = 75, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-16) to (239-300) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-19) to (310-358) Lightning Damage", statOrder = { 833 }, level = 81, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-19) to (310-358) Lightning Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage", statOrder = { 906 }, level = 1, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage", statOrder = { 906 }, level = 8, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage", statOrder = { 906 }, level = 16, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage", statOrder = { 906 }, level = 33, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage", statOrder = { 906 }, level = 46, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage", statOrder = { 906 }, level = 54, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage", statOrder = { 906 }, level = 60, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage", statOrder = { 906 }, level = 65, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage", statOrder = { 906 }, level = 75, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage", statOrder = { 907 }, level = 1, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage", statOrder = { 907 }, level = 8, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage", statOrder = { 907 }, level = 16, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage", statOrder = { 907 }, level = 33, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage", statOrder = { 907 }, level = 46, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage", statOrder = { 907 }, level = 54, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage", statOrder = { 907 }, level = 60, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage", statOrder = { 907 }, level = 65, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage", statOrder = { 907 }, level = 75, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage", statOrder = { 908 }, level = 1, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage", statOrder = { 908 }, level = 8, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage", statOrder = { 908 }, level = 16, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage", statOrder = { 908 }, level = 33, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage", statOrder = { 908 }, level = 46, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage", statOrder = { 908 }, level = 54, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage", statOrder = { 908 }, level = 60, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage", statOrder = { 908 }, level = 65, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage", statOrder = { 908 }, level = 75, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage", statOrder = { 909 }, level = 1, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage", statOrder = { 909 }, level = 8, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage", statOrder = { 909 }, level = 16, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage", statOrder = { 909 }, level = 33, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage", statOrder = { 909 }, level = 46, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage", statOrder = { 909 }, level = 54, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage", statOrder = { 909 }, level = 60, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage", statOrder = { 909 }, level = 65, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage", statOrder = { 909 }, level = 75, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-49)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 829 }, level = 8, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(50-64)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 829 }, level = 16, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(65-84)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 829 }, level = 33, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(85-109)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 829 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(110-134)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 829 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(135-154)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 829 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(155-169)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 829 }, level = 82, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(170-179)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 829, 834 }, level = 8, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(16-20) to Accuracy Rating" }, [1509134228] = { "(15-19)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 829, 834 }, level = 14, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(21-46) to Accuracy Rating" }, [1509134228] = { "(20-24)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 829, 834 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(47-72) to Accuracy Rating" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 829, 834 }, level = 38, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(73-97) to Accuracy Rating" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 829, 834 }, level = 54, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(98-123) to Accuracy Rating" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 829, 834 }, level = 65, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(124-149) to Accuracy Rating" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 829, 834 }, level = 70, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(150-174) to Accuracy Rating" }, [1509134228] = { "(65-74)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 829, 834 }, level = 81, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(175-200) to Accuracy Rating" }, [1509134228] = { "(75-79)% increased Physical Damage" }, } }, - ["NearbyAlliesAllDamage1"] = { type = "Prefix", affix = "Coercive", "Allies in your Presence deal (25-34)% increased Damage", statOrder = { 905 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (25-34)% increased Damage" }, } }, - ["NearbyAlliesAllDamage2"] = { type = "Prefix", affix = "Agitative", "Allies in your Presence deal (35-44)% increased Damage", statOrder = { 905 }, level = 8, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (35-44)% increased Damage" }, } }, - ["NearbyAlliesAllDamage3"] = { type = "Prefix", affix = "Instigative", "Allies in your Presence deal (45-54)% increased Damage", statOrder = { 905 }, level = 16, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (45-54)% increased Damage" }, } }, - ["NearbyAlliesAllDamage4"] = { type = "Prefix", affix = "Provocative", "Allies in your Presence deal (55-64)% increased Damage", statOrder = { 905 }, level = 33, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (55-64)% increased Damage" }, } }, - ["NearbyAlliesAllDamage5"] = { type = "Prefix", affix = "Persuasive", "Allies in your Presence deal (65-74)% increased Damage", statOrder = { 905 }, level = 46, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (65-74)% increased Damage" }, } }, - ["NearbyAlliesAllDamage6"] = { type = "Prefix", affix = "Motivating", "Allies in your Presence deal (75-89)% increased Damage", statOrder = { 905 }, level = 60, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (75-89)% increased Damage" }, } }, - ["NearbyAlliesAllDamage7"] = { type = "Prefix", affix = "Inspirational", "Allies in your Presence deal (90-104)% increased Damage", statOrder = { 905 }, level = 70, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (90-104)% increased Damage" }, } }, - ["NearbyAlliesAllDamage8"] = { type = "Prefix", affix = "Empowering", "Allies in your Presence deal (105-119)% increased Damage", statOrder = { 905 }, level = 82, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (105-119)% increased Damage" }, } }, - ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(25-34)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-34)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(35-44)% increased Spell Damage", statOrder = { 870 }, level = 8, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-44)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-54)% increased Spell Damage", statOrder = { 870 }, level = 16, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-54)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(55-64)% increased Spell Damage", statOrder = { 870 }, level = 33, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(55-64)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(65-74)% increased Spell Damage", statOrder = { 870 }, level = 46, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(65-74)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(75-89)% increased Spell Damage", statOrder = { 870 }, level = 60, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(75-89)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(90-104)% increased Spell Damage", statOrder = { 870 }, level = 70, group = "WeaponSpellDamage", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(90-104)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(105-119)% increased Spell Damage", statOrder = { 870 }, level = 80, group = "WeaponSpellDamage", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(105-119)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(50-68)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-68)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(69-88)% increased Spell Damage", statOrder = { 870 }, level = 8, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-88)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(89-108)% increased Spell Damage", statOrder = { 870 }, level = 16, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(89-108)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(109-128)% increased Spell Damage", statOrder = { 870 }, level = 33, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(109-128)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(129-148)% increased Spell Damage", statOrder = { 870 }, level = 46, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(129-148)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(149-188)% increased Spell Damage", statOrder = { 870 }, level = 60, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(149-188)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(189-208)% increased Spell Damage", statOrder = { 870 }, level = 70, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(189-208)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(209-238)% increased Spell Damage", statOrder = { 870 }, level = 80, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(209-238)% increased Spell Damage" }, } }, - ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(15-19)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 870, 891 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(20-24)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 870, 891 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, [1050105434] = { "+(21-24) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(25-29)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 870, 891 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-29)% increased Spell Damage" }, [1050105434] = { "+(25-28) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-34)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 870, 891 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, [1050105434] = { "+(29-33) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(35-39)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 870, 891 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, [1050105434] = { "+(34-37) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(40-44)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 870, 891 }, level = 60, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-44)% increased Spell Damage" }, [1050105434] = { "+(38-41) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(45-49)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 870, 891 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-49)% increased Spell Damage" }, [1050105434] = { "+(42-45) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(30-38)% increased Spell Damage", "+(34-40) to maximum Mana", statOrder = { 870, 891 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-38)% increased Spell Damage" }, [1050105434] = { "+(34-40) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(39-48)% increased Spell Damage", "+(41-48) to maximum Mana", statOrder = { 870, 891 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(39-48)% increased Spell Damage" }, [1050105434] = { "+(41-48) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(49-58)% increased Spell Damage", "+(49-56) to maximum Mana", statOrder = { 870, 891 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(49-58)% increased Spell Damage" }, [1050105434] = { "+(49-56) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(59-68)% increased Spell Damage", "+(57-66) to maximum Mana", statOrder = { 870, 891 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(59-68)% increased Spell Damage" }, [1050105434] = { "+(57-66) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(69-78)% increased Spell Damage", "+(67-74) to maximum Mana", statOrder = { 870, 891 }, level = 48, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-78)% increased Spell Damage" }, [1050105434] = { "+(67-74) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(79-88)% increased Spell Damage", "+(75-82) to maximum Mana", statOrder = { 870, 891 }, level = 63, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(79-88)% increased Spell Damage" }, [1050105434] = { "+(75-82) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(89-98)% increased Spell Damage", "+(83-90) to maximum Mana", statOrder = { 870, 891 }, level = 79, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(89-98)% increased Spell Damage" }, [1050105434] = { "+(83-90) to maximum Mana" }, } }, - ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(25-34)% increased Fire Damage", statOrder = { 872 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-34)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(35-44)% increased Fire Damage", statOrder = { 872 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-44)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-54)% increased Fire Damage", statOrder = { 872 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(45-54)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(55-64)% increased Fire Damage", statOrder = { 872 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(55-64)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Smoldering", "(65-74)% increased Fire Damage", statOrder = { 872 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(65-74)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(75-89)% increased Fire Damage", statOrder = { 872 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(75-89)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Volcanic", "(90-104)% increased Fire Damage", statOrder = { 872 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(90-104)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(105-119)% increased Fire Damage", statOrder = { 872 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(105-119)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(50-68)% increased Fire Damage", statOrder = { 872 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(50-68)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(69-88)% increased Fire Damage", statOrder = { 872 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(69-88)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(89-108)% increased Fire Damage", statOrder = { 872 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(89-108)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(109-128)% increased Fire Damage", statOrder = { 872 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(109-128)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Smoldering", "(129-148)% increased Fire Damage", statOrder = { 872 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(129-148)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(149-188)% increased Fire Damage", statOrder = { 872 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(149-188)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Volcanic", "(189-208)% increased Fire Damage", statOrder = { 872 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(189-208)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(209-238)% increased Fire Damage", statOrder = { 872 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(209-238)% increased Fire Damage" }, } }, - ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(25-34)% increased Cold Damage", statOrder = { 873 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(25-34)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(35-44)% increased Cold Damage", statOrder = { 873 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-44)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(45-54)% increased Cold Damage", statOrder = { 873 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(45-54)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(55-64)% increased Cold Damage", statOrder = { 873 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(55-64)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(65-74)% increased Cold Damage", statOrder = { 873 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(65-74)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Arctic", "(75-89)% increased Cold Damage", statOrder = { 873 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(75-89)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Crystalline", "(90-104)% increased Cold Damage", statOrder = { 873 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(90-104)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(105-119)% increased Cold Damage", statOrder = { 873 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(105-119)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(50-68)% increased Cold Damage", statOrder = { 873 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(50-68)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(69-88)% increased Cold Damage", statOrder = { 873 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(69-88)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(89-108)% increased Cold Damage", statOrder = { 873 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(89-108)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(109-128)% increased Cold Damage", statOrder = { 873 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(109-128)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(129-148)% increased Cold Damage", statOrder = { 873 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(129-148)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Arctic", "(149-188)% increased Cold Damage", statOrder = { 873 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(149-188)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Crystalline", "(189-208)% increased Cold Damage", statOrder = { 873 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(189-208)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(209-238)% increased Cold Damage", statOrder = { 873 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(209-238)% increased Cold Damage" }, } }, - ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(25-34)% increased Lightning Damage", statOrder = { 874 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(25-34)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(35-44)% increased Lightning Damage", statOrder = { 874 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(35-44)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-54)% increased Lightning Damage", statOrder = { 874 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(45-54)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(55-64)% increased Lightning Damage", statOrder = { 874 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(55-64)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(65-74)% increased Lightning Damage", statOrder = { 874 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(65-74)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(75-89)% increased Lightning Damage", statOrder = { 874 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(75-89)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(90-104)% increased Lightning Damage", statOrder = { 874 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(90-104)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(105-119)% increased Lightning Damage", statOrder = { 874 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(105-119)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(50-68)% increased Lightning Damage", statOrder = { 874 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(50-68)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(69-88)% increased Lightning Damage", statOrder = { 874 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(69-88)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(89-108)% increased Lightning Damage", statOrder = { 874 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(89-108)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(109-128)% increased Lightning Damage", statOrder = { 874 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(109-128)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(129-148)% increased Lightning Damage", statOrder = { 874 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(129-148)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(149-188)% increased Lightning Damage", statOrder = { 874 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(149-188)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(189-208)% increased Lightning Damage", statOrder = { 874 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(189-208)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(209-238)% increased Lightning Damage", statOrder = { 874 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(209-238)% increased Lightning Damage" }, } }, - ["ChaosDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Impure", "(25-34)% increased Chaos Damage", statOrder = { 875 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(25-34)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Tainted", "(35-44)% increased Chaos Damage", statOrder = { 875 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(35-44)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Clouded", "(45-54)% increased Chaos Damage", statOrder = { 875 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(45-54)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Darkened", "(55-64)% increased Chaos Damage", statOrder = { 875 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(55-64)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Malignant", "(65-74)% increased Chaos Damage", statOrder = { 875 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(65-74)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Vile", "(75-89)% increased Chaos Damage", statOrder = { 875 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(75-89)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Twisted", "(90-104)% increased Chaos Damage", statOrder = { 875 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(90-104)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Malevolent", "(105-119)% increased Chaos Damage", statOrder = { 875 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(105-119)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Impure", "(50-68)% increased Chaos Damage", statOrder = { 875 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-68)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Tainted", "(69-88)% increased Chaos Damage", statOrder = { 875 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(69-88)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Clouded", "(89-108)% increased Chaos Damage", statOrder = { 875 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(89-108)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Darkened", "(109-128)% increased Chaos Damage", statOrder = { 875 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(109-128)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Malignant", "(129-148)% increased Chaos Damage", statOrder = { 875 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(129-148)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Vile", "(149-188)% increased Chaos Damage", statOrder = { 875 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(149-188)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Twisted", "(189-208)% increased Chaos Damage", statOrder = { 875 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(189-208)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Malevolent", "(209-238)% increased Chaos Damage", statOrder = { 875 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(209-238)% increased Chaos Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Punishing", "(25-34)% increased Spell Physical Damage", statOrder = { 877 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(25-34)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(35-44)% increased Spell Physical Damage", statOrder = { 877 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(35-44)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Vengeful", "(45-54)% increased Spell Physical Damage", statOrder = { 877 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(45-54)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Sadistic", "(55-64)% increased Spell Physical Damage", statOrder = { 877 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(55-64)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Pitiless", "(65-74)% increased Spell Physical Damage", statOrder = { 877 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(65-74)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Agonising", "(75-89)% increased Spell Physical Damage", statOrder = { 877 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(75-89)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(90-104)% increased Spell Physical Damage", statOrder = { 877 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(90-104)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Torturer's", "(105-119)% increased Spell Physical Damage", statOrder = { 877 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(105-119)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Punishing", "(50-68)% increased Spell Physical Damage", statOrder = { 877 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(50-68)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(69-88)% increased Spell Physical Damage", statOrder = { 877 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(69-88)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Vengeful", "(89-108)% increased Spell Physical Damage", statOrder = { 877 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(89-108)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Sadistic", "(109-128)% increased Spell Physical Damage", statOrder = { 877 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(109-128)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Pitiless", "(129-148)% increased Spell Physical Damage", statOrder = { 877 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(129-148)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Agonising", "(149-188)% increased Spell Physical Damage", statOrder = { 877 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(149-188)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(189-208)% increased Spell Physical Damage", statOrder = { 877 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(189-208)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Torturer's", "(209-238)% increased Spell Physical Damage", statOrder = { 877 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(209-238)% increased Spell Physical Damage" }, } }, - ["TrapDamageOnWeapon1"] = { type = "Prefix", affix = "Explosive", "(25-34)% increased Trap Damage", statOrder = { 871 }, level = 2, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(25-34)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon2"] = { type = "Prefix", affix = "Eviscerating", "(35-44)% increased Trap Damage", statOrder = { 871 }, level = 8, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(35-44)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon3"] = { type = "Prefix", affix = "Crippling", "(45-54)% increased Trap Damage", statOrder = { 871 }, level = 16, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(45-54)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon4"] = { type = "Prefix", affix = "Disabling", "(55-64)% increased Trap Damage", statOrder = { 871 }, level = 33, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(55-64)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon5"] = { type = "Prefix", affix = "Decimating", "(65-74)% increased Trap Damage", statOrder = { 871 }, level = 46, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(65-74)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon6"] = { type = "Prefix", affix = "Demolishing", "(75-89)% increased Trap Damage", statOrder = { 871 }, level = 60, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(75-89)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon7"] = { type = "Prefix", affix = "Obliterating", "(90-104)% increased Trap Damage", statOrder = { 871 }, level = 70, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(90-104)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon8"] = { type = "Prefix", affix = "Shattering", "(105-119)% increased Trap Damage", statOrder = { 871 }, level = 81, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(105-119)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Sapper's", "(15-19)% increased Trap Damage", "+(17-20) to maximum Mana", statOrder = { 871, 891 }, level = 2, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [2941585404] = { "(15-19)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Saboteur's", "(20-24)% increased Trap Damage", "+(21-24) to maximum Mana", statOrder = { 871, 891 }, level = 11, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [2941585404] = { "(20-24)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Tinkerer's", "(25-29)% increased Trap Damage", "+(25-28) to maximum Mana", statOrder = { 871, 891 }, level = 23, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [2941585404] = { "(25-29)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Mechanic's", "(30-34)% increased Trap Damage", "+(29-33) to maximum Mana", statOrder = { 871, 891 }, level = 35, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [2941585404] = { "(30-34)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Engineer's", "(35-39)% increased Trap Damage", "+(34-37) to maximum Mana", statOrder = { 871, 891 }, level = 48, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [2941585404] = { "(35-39)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Inventor's", "(40-44)% increased Trap Damage", "+(38-41) to maximum Mana", statOrder = { 871, 891 }, level = 63, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [2941585404] = { "(40-44)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Artificer's", "(45-49)% increased Trap Damage", "+(42-45) to maximum Mana", statOrder = { 871, 891 }, level = 78, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [2941585404] = { "(45-49)% increased Trap Damage" }, } }, - ["GlobalSpellGemsLevel1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 949 }, level = 10, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevel2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 949 }, level = 41, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevel3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 949 }, level = 75, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 949 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 949 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 949 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of the Wizard", "+4 to Level of all Spell Skills", statOrder = { 949 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+4 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Mage", "+2 to Level of all Spell Skills", statOrder = { 949 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+3 to Level of all Spell Skills", statOrder = { 949 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Evoker", "+4 to Level of all Spell Skills", statOrder = { 949 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+4 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Sorcerer", "+(5-6) to Level of all Spell Skills", statOrder = { 949 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(5-6) to Level of all Spell Skills" }, } }, - ["GlobalFireSpellGemsLevel1_"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 5, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevel2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 41, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevel3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 75, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Immolation", "+4 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+4 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Inferno", "+5 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+5 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Flames", "+(3-4) to Level of all Fire Spell Skills", statOrder = { 958 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(3-4) to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Immolation", "+(5-6) to Level of all Fire Spell Skills", statOrder = { 958 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(5-6) to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Inferno", "+7 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+7 to Level of all Fire Spell Skills" }, } }, - ["GlobalColdSpellGemsLevel1_"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 5, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevel2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 41, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevel3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 75, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Rime", "+4 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+4 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+5 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+5 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ice", "+(3-4) to Level of all Cold Spell Skills", statOrder = { 960 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(3-4) to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Rime", "+(5-6) to Level of all Cold Spell Skills", statOrder = { 960 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(5-6) to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+7 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+7 to Level of all Cold Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevel1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 5, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevel2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 41, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevel3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 75, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Voltage", "+4 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+4 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Thunder", "+5 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+5 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Electricity", "+(3-4) to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(3-4) to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Voltage", "+(5-6) to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(5-6) to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Thunder", "+7 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+7 to Level of all Lightning Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevel1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 5, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevel2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 41, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevel3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 75, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Havoc", "+4 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+4 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+5 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+5 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ruin", "+(3-4) to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(3-4) to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Havoc", "+(5-6) to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(5-6) to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+7 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+7 to Level of all Chaos Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevel1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 5, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevel2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 41, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevel3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 75, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Desolation", "+4 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+4 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Grief", "+5 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+5 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Torment", "+(3-4) to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(3-4) to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Desolation", "+(5-6) to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(5-6) to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Grief", "+7 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+7 to Level of all Physical Spell Skills" }, } }, - ["GlobalMinionSpellSkillGemLevel1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 971 }, level = 5, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevel2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 971 }, level = 41, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevel3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 971 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+3 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 971 }, level = 2, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 971 }, level = 25, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 971 }, level = 55, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+3 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Slavedriver", "+4 to Level of all Minion Skills", statOrder = { 971 }, level = 78, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+4 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Tyrant", "+5 to Level of all Minion Skills", statOrder = { 971 }, level = 81, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+5 to Level of all Minion Skills" }, } }, - ["GlobalTrapSkillGemLevel1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 5, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevel2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 41, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+2 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevel3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 75, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+3 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 2, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 18, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+2 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 36, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+3 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Detonation", "+4 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 55, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+4 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of Pyrotechnics", "+5 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 81, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+5 to Level of all Trap Skill Gems" }, } }, - ["GlobalMeleeSkillGemLevel1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 965 }, level = 5, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevel2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 965 }, level = 41, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevel3"] = { type = "Suffix", affix = "of Battle", "+3 to Level of all Melee Skills", statOrder = { 965 }, level = 75, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 965 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Dueling", "+1 to Level of all Melee Skills", statOrder = { 965 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Conflict", "+2 to Level of all Melee Skills", statOrder = { 965 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Battle", "+3 to Level of all Melee Skills", statOrder = { 965 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of War", "+4 to Level of all Melee Skills", statOrder = { 965 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+4 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Combat", "+2 to Level of all Melee Skills", statOrder = { 965 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 965 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Conflict", "+3 to Level of all Melee Skills", statOrder = { 965 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Battle", "+4 to Level of all Melee Skills", statOrder = { 965 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+4 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of War", "+5 to Level of all Melee Skills", statOrder = { 965 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+5 to Level of all Melee Skills" }, } }, - ["GlobalProjectileSkillGemLevel1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 967 }, level = 5, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevel2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 967 }, level = 41, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevel3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 967 }, level = 75, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 967 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+1 to Level of all Projectile Skills", statOrder = { 967 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+2 to Level of all Projectile Skills", statOrder = { 967 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+3 to Level of all Projectile Skills", statOrder = { 967 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+4 to Level of all Projectile Skills", statOrder = { 967 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+4 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Archer", "+2 to Level of all Projectile Skills", statOrder = { 967 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 967 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 967 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+4 to Level of all Projectile Skills", statOrder = { 967 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+4 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+5 to Level of all Projectile Skills", statOrder = { 967 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+5 to Level of all Projectile Skills" }, } }, - ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "(1-2) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(1-2) Life Regeneration per second" }, } }, - ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "(2.1-3) Life Regeneration per second", statOrder = { 1033 }, level = 5, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(2.1-3) Life Regeneration per second" }, } }, - ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "(3.1-4) Life Regeneration per second", statOrder = { 1033 }, level = 11, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3.1-4) Life Regeneration per second" }, } }, - ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "(4.1-6) Life Regeneration per second", statOrder = { 1033 }, level = 17, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(4.1-6) Life Regeneration per second" }, } }, - ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "(6.1-9) Life Regeneration per second", statOrder = { 1033 }, level = 26, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(6.1-9) Life Regeneration per second" }, } }, - ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "(9.1-13) Life Regeneration per second", statOrder = { 1033 }, level = 35, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(9.1-13) Life Regeneration per second" }, } }, - ["LifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "(13.1-18) Life Regeneration per second", statOrder = { 1033 }, level = 47, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(13.1-18) Life Regeneration per second" }, } }, - ["LifeRegeneration8_"] = { type = "Suffix", affix = "of Recuperation", "(18.1-23) Life Regeneration per second", statOrder = { 1033 }, level = 58, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(18.1-23) Life Regeneration per second" }, } }, - ["LifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "(23.1-29) Life Regeneration per second", statOrder = { 1033 }, level = 68, group = "LifeRegeneration", weightKey = { "body_armour", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(23.1-29) Life Regeneration per second" }, } }, - ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Immortality", "(29.1-33) Life Regeneration per second", statOrder = { 1033 }, level = 75, group = "LifeRegeneration", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(29.1-33) Life Regeneration per second" }, } }, - ["LifeRegeneration11____"] = { type = "Suffix", affix = "of the Phoenix", "(33.1-36) Life Regeneration per second", statOrder = { 1033 }, level = 81, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(33.1-36) Life Regeneration per second" }, } }, - ["NearbyAlliesLifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Allies in your Presence Regenerate (1-2) Life per second", statOrder = { 920 }, level = 1, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (1-2) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Allies in your Presence Regenerate (2.1-3) Life per second", statOrder = { 920 }, level = 5, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (2.1-3) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Allies in your Presence Regenerate (3.1-4) Life per second", statOrder = { 920 }, level = 11, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (3.1-4) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Allies in your Presence Regenerate (4.1-6) Life per second", statOrder = { 920 }, level = 17, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (4.1-6) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Allies in your Presence Regenerate (6.1-9) Life per second", statOrder = { 920 }, level = 26, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (6.1-9) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Allies in your Presence Regenerate (9.1-13) Life per second", statOrder = { 920 }, level = 35, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (9.1-13) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "Allies in your Presence Regenerate (13.1-18) Life per second", statOrder = { 920 }, level = 47, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (13.1-18) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration8"] = { type = "Suffix", affix = "of Recuperation", "Allies in your Presence Regenerate (18.1-23) Life per second", statOrder = { 920 }, level = 58, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (18.1-23) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "Allies in your Presence Regenerate (23.1-29) Life per second", statOrder = { 920 }, level = 68, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (23.1-29) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration10"] = { type = "Suffix", affix = "of Immortality", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 920 }, level = 75, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (29.1-33) Life per second" }, } }, - ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(10-19)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-29)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-39)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-49)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(50-59)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-69)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(15-29)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-29)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(30-44)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-44)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(45-59)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(45-59)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(60-74)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-74)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(75-89)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(75-89)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(90-104)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(90-104)% increased Mana Regeneration Rate" }, } }, - ["LifeLeech1"] = { type = "Suffix", affix = "of the Parasite", "Leech (5-5.9)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (5-5.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech2"] = { type = "Suffix", affix = "of the Locust", "Leech (6-6.9)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 21, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (6-6.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech3"] = { type = "Suffix", affix = "of the Remora", "Leech (7-7.9)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 38, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (7-7.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech4"] = { type = "Suffix", affix = "of the Lamprey", "Leech (8-8.9)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 54, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (8-8.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech5"] = { type = "Suffix", affix = "of the Vampire", "Leech (9-9.9)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 65, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (9-9.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeechLocal1"] = { type = "Suffix", affix = "of the Parasite", "Leeches (5-5.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-5.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal2"] = { type = "Suffix", affix = "of the Locust", "Leeches (6-6.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 21, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (6-6.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal3"] = { type = "Suffix", affix = "of the Remora", "Leeches (7-7.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 38, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (7-7.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal4"] = { type = "Suffix", affix = "of the Lamprey", "Leeches (8-8.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 54, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (8-8.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal5"] = { type = "Suffix", affix = "of the Vampire", "Leeches (9-9.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 65, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (9-9.9)% of Physical Damage as Life" }, } }, - ["ManaLeech1"] = { type = "Suffix", affix = "of the Thirsty", "Leech (4-4.9)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (4-4.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech2"] = { type = "Suffix", affix = "of the Parched", "Leech (5-5.9)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 21, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (5-5.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech3"] = { type = "Suffix", affix = "of the Arid", "Leech (6-6.9)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 38, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (6-6.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech4"] = { type = "Suffix", affix = "of the Drought", "Leech (7-7.9)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 54, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (7-7.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech5"] = { type = "Suffix", affix = "of the Desperate", "Leech (8-8.9)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 65, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (8-8.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeechLocal1"] = { type = "Suffix", affix = "of the Thirsty", "Leeches (4-4.9)% of Physical Damage as Mana", statOrder = { 1044 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (4-4.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal2"] = { type = "Suffix", affix = "of the Parched", "Leeches (5-5.9)% of Physical Damage as Mana", statOrder = { 1044 }, level = 21, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (5-5.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal3"] = { type = "Suffix", affix = "of the Arid", "Leeches (6-6.9)% of Physical Damage as Mana", statOrder = { 1044 }, level = 38, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (6-6.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal4"] = { type = "Suffix", affix = "of the Drought", "Leeches (7-7.9)% of Physical Damage as Mana", statOrder = { 1044 }, level = 54, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (7-7.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal5"] = { type = "Suffix", affix = "of the Desperate", "Leeches (8-8.9)% of Physical Damage as Mana", statOrder = { 1044 }, level = 65, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (8-8.9)% of Physical Damage as Mana" }, } }, - ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (4-6) Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (4-6) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (7-9) Life per enemy killed", statOrder = { 1041 }, level = 11, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (7-9) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (10-18) Life per enemy killed", statOrder = { 1041 }, level = 22, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-18) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (19-28) Life per enemy killed", statOrder = { 1041 }, level = 33, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (19-28) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Vanquishing", "Gain (29-40) Life per enemy killed", statOrder = { 1041 }, level = 44, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (29-40) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Valour", "Gain (41-53) Life per enemy killed", statOrder = { 1041 }, level = 55, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (41-53) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Glory", "Gain (54-68) Life per enemy killed", statOrder = { 1041 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (54-68) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Legend", "Gain (69-84) Life per enemy killed", statOrder = { 1041 }, level = 77, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (69-84) Life per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (2-3) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (2-3) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (4-5) Mana per enemy killed", statOrder = { 1046 }, level = 12, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (4-5) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Infusion", "Gain (6-9) Mana per enemy killed", statOrder = { 1046 }, level = 23, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (6-9) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Enveloping", "Gain (10-14) Mana per enemy killed", statOrder = { 1046 }, level = 34, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-14) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Consumption", "Gain (15-20) Mana per enemy killed", statOrder = { 1046 }, level = 45, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (15-20) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Gain (21-27) Mana per enemy killed", statOrder = { 1046 }, level = 56, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (21-27) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Devouring", "Gain (28-35) Mana per enemy killed", statOrder = { 1046 }, level = 67, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (28-35) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Assimilation", "Gain (36-45) Mana per enemy killed", statOrder = { 1046 }, level = 78, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (36-45) Mana per enemy killed" }, } }, - ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 8, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 2 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 20, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 3 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 30, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 4 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 40, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 5 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants 2 Life per Enemy Hit", statOrder = { 1040 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 2 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants 3 Life per Enemy Hit", statOrder = { 1040 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants 4 Life per Enemy Hit", statOrder = { 1040 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 4 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants 5 Life per Enemy Hit", statOrder = { 1040 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 5 Life per Enemy Hit" }, } }, - ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-7)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 984 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 984 }, level = 37, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(11-13)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 984 }, level = 60, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(14-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 945 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 945 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-13)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 945 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 945 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 945 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 945 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(23-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-28)% increased Attack Speed", statOrder = { 945 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(26-28)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "Allies in your Presence have (5-7)% increased Attack Speed", statOrder = { 917 }, level = 5, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (5-7)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "Allies in your Presence have (8-10)% increased Attack Speed", statOrder = { 917 }, level = 20, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (8-10)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "Allies in your Presence have (11-13)% increased Attack Speed", statOrder = { 917 }, level = 35, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (11-13)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "Allies in your Presence have (14-16)% increased Attack Speed", statOrder = { 917 }, level = 55, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (14-16)% increased Attack Speed" }, } }, - ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(9-12)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(13-16)% increased Cast Speed", statOrder = { 986 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-16)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(17-20)% increased Cast Speed", statOrder = { 986 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(17-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "(21-24)% increased Cast Speed", statOrder = { 986 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(21-24)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Legerdemain", "(25-28)% increased Cast Speed", statOrder = { 986 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-28)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Prestidigitation", "(29-32)% increased Cast Speed", statOrder = { 986 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(29-32)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(33-35)% increased Cast Speed", statOrder = { 986 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(33-35)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(14-19)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-19)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(20-25)% increased Cast Speed", statOrder = { 986 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-25)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(26-31)% increased Cast Speed", statOrder = { 986 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(26-31)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Sortilege", "(32-37)% increased Cast Speed", statOrder = { 986 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(32-37)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Legerdemain", "(38-43)% increased Cast Speed", statOrder = { 986 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(38-43)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Prestidigitation", "(44-49)% increased Cast Speed", statOrder = { 986 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(44-49)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(50-52)% increased Cast Speed", statOrder = { 986 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(50-52)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "Allies in your Presence have (5-8)% increased Cast Speed", statOrder = { 918 }, level = 6, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (5-8)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Allies in your Presence have (9-12)% increased Cast Speed", statOrder = { 918 }, level = 21, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (9-12)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "Allies in your Presence have (13-16)% increased Cast Speed", statOrder = { 918 }, level = 36, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (13-16)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "Allies in your Presence have (17-20)% increased Cast Speed", statOrder = { 918 }, level = 56, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (17-20)% increased Cast Speed" }, } }, - ["IncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(11-32) to Accuracy Rating" }, } }, - ["IncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 879 }, level = 11, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(33-60) to Accuracy Rating" }, } }, - ["IncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 879 }, level = 18, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(61-84) to Accuracy Rating" }, } }, - ["IncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 879 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(85-123) to Accuracy Rating" }, } }, - ["IncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 879 }, level = 36, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(124-167) to Accuracy Rating" }, } }, - ["IncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 879 }, level = 48, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(168-236) to Accuracy Rating" }, } }, - ["IncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 879 }, level = 58, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(237-346) to Accuracy Rating" }, } }, - ["IncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 879 }, level = 67, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(347-450) to Accuracy Rating" }, } }, - ["IncreasedAccuracy9"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 879 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(451-550) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 834 }, level = 8, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(11-32) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 834 }, level = 13, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(33-60) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 834 }, level = 18, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(61-84) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 834 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(85-123) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 834 }, level = 36, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(124-167) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 834 }, level = 48, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(168-236) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 834 }, level = 58, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(237-346) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 834 }, level = 67, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(347-450) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy9_"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 834 }, level = 76, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(451-550) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy10"] = { type = "Prefix", affix = "Valkyrie's", "+(551-650) to Accuracy Rating", statOrder = { 834 }, level = 82, group = "LocalAccuracyRating", weightKey = { "ranged", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(551-650) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "Allies in your Presence have +(11-32) to Accuracy Rating", statOrder = { 914 }, level = 1, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(11-32) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "Allies in your Presence have +(33-60) to Accuracy Rating", statOrder = { 914 }, level = 11, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(33-60) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "Allies in your Presence have +(61-84) to Accuracy Rating", statOrder = { 914 }, level = 18, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(61-84) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "Allies in your Presence have +(85-123) to Accuracy Rating", statOrder = { 914 }, level = 26, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(85-123) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "Allies in your Presence have +(124-167) to Accuracy Rating", statOrder = { 914 }, level = 36, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(124-167) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "Allies in your Presence have +(168-236) to Accuracy Rating", statOrder = { 914 }, level = 48, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(168-236) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "Allies in your Presence have +(237-346) to Accuracy Rating", statOrder = { 914 }, level = 58, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(237-346) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "Allies in your Presence have +(347-450) to Accuracy Rating", statOrder = { 914 }, level = 67, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(347-450) to Accuracy Rating" }, } }, - ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance", statOrder = { 975 }, level = 5, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(10-14)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance", statOrder = { 975 }, level = 20, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-19)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance", statOrder = { 975 }, level = 30, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-24)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance", statOrder = { 975 }, level = 44, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-29)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance", statOrder = { 975 }, level = 58, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-34)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance", statOrder = { 975 }, level = 72, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(35-38)% increased Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "+(1.01-1.5)% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(1.01-1.5)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "+(1.51-2.1)% to Critical Hit Chance", statOrder = { 943 }, level = 20, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(1.51-2.1)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "+(2.11-2.7)% to Critical Hit Chance", statOrder = { 943 }, level = 30, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(2.11-2.7)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "+(3.11-3.8)% to Critical Hit Chance", statOrder = { 943 }, level = 44, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3.11-3.8)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "+(3.81-4.4)% to Critical Hit Chance", statOrder = { 943 }, level = 59, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3.81-4.4)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "+(4.41-5)% to Critical Hit Chance", statOrder = { 943 }, level = 73, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(4.41-5)% to Critical Hit Chance" }, } }, - ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(27-33)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(27-33)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(34-39)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(34-39)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-46)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(40-46)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(47-53)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(47-53)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(54-59)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(54-59)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(60-73)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(60-73)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand1"] = { type = "Suffix", affix = "of Menace", "(40-49)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(40-49)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand2"] = { type = "Suffix", affix = "of Havoc", "(50-59)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(50-59)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand3"] = { type = "Suffix", affix = "of Disaster", "(60-69)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(60-69)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand4"] = { type = "Suffix", affix = "of Calamity", "(70-79)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(70-79)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand5"] = { type = "Suffix", affix = "of Ruin", "(80-89)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(80-89)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand6"] = { type = "Suffix", affix = "of Unmaking", "(90-109)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(90-109)% increased Critical Hit Chance for Spells" }, } }, - ["AttackCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 5, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(10-14)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 20, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(15-19)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 30, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(20-24)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 44, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(25-29)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 58, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(30-34)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 72, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(35-38)% increased Critical Hit Chance for Attacks" }, } }, - ["TrapCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 11, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(10-19)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 21, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(20-39)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 28, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(40-59)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 41, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(60-79)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 59, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(80-99)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 76, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(100-109)% increased Critical Hit Chance with Traps" }, } }, - ["NearbyAlliesCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "Allies in your Presence have (10-14)% increased Critical Hit Chance", statOrder = { 915 }, level = 11, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (10-14)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "Allies in your Presence have (15-19)% increased Critical Hit Chance", statOrder = { 915 }, level = 21, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (15-19)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "Allies in your Presence have (20-24)% increased Critical Hit Chance", statOrder = { 915 }, level = 28, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (20-24)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "Allies in your Presence have (25-29)% increased Critical Hit Chance", statOrder = { 915 }, level = 41, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (25-29)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "Allies in your Presence have (30-34)% increased Critical Hit Chance", statOrder = { 915 }, level = 59, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (30-34)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "Allies in your Presence have (35-38)% increased Critical Hit Chance", statOrder = { 915 }, level = 76, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (35-38)% increased Critical Hit Chance" }, } }, - ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus", statOrder = { 979 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-14)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus", statOrder = { 979 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-19)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus", statOrder = { 979 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-24)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus", statOrder = { 979 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(25-29)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus", statOrder = { 979 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(30-34)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus", statOrder = { 979 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(35-39)% increased Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-11)% to Critical Damage Bonus", statOrder = { 944 }, level = 8, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(10-11)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(12-13)% to Critical Damage Bonus", statOrder = { 944 }, level = 21, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(12-13)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(14-16)% to Critical Damage Bonus", statOrder = { 944 }, level = 30, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(14-16)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(17-19)% to Critical Damage Bonus", statOrder = { 944 }, level = 44, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(17-19)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(20-22)% to Critical Damage Bonus", statOrder = { 944 }, level = 59, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(20-22)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(23-25)% to Critical Damage Bonus", statOrder = { 944 }, level = 73, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(23-25)% to Critical Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(10-14)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(15-19)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(20-24)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(25-29)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(30-34)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(35-39)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Ire", "(15-21)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(15-21)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Anger", "(23-29)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(23-29)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Rage", "(30-36)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(30-36)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Fury", "(38-44)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(38-44)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Ferocity", "(45-51)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(45-51)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand6"] = { type = "Suffix", affix = "of Destruction", "(53-59)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(53-59)% increased Critical Spell Damage Bonus" }, } }, - ["AttackCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 8, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(10-14)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 21, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(15-19)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 31, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(20-24)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 45, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(25-29)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 59, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(30-34)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 74, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(35-39)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["TrapCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 8, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(10-14)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 21, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(15-19)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 30, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(20-24)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 44, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(25-29)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 59, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(30-34)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-39)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 73, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(35-39)% to Critical Damage Bonus with Traps" }, } }, - ["NearbyAlliesCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "Allies in your Presence have (10-14)% increased Critical Damage Bonus", statOrder = { 916 }, level = 8, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (10-14)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "Allies in your Presence have (15-19)% increased Critical Damage Bonus", statOrder = { 916 }, level = 21, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (15-19)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "Allies in your Presence have (20-24)% increased Critical Damage Bonus", statOrder = { 916 }, level = 30, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (20-24)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "Allies in your Presence have (25-29)% increased Critical Damage Bonus", statOrder = { 916 }, level = 44, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (25-29)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "Allies in your Presence have (30-34)% increased Critical Damage Bonus", statOrder = { 916 }, level = 59, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-34)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "Allies in your Presence have (35-39)% increased Critical Damage Bonus", statOrder = { 916 }, level = 73, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (35-39)% increased Critical Damage Bonus" }, } }, - ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 940 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-10)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 940 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(11-14)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-18)% increased Rarity of Items found", statOrder = { 940 }, level = 40, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-18)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(19-21)% increased Rarity of Items found", statOrder = { 940 }, level = 63, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(19-21)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease5"] = { type = "Suffix", affix = "of Windfall", "(22-25)% increased Rarity of Items found", statOrder = { 940 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(22-25)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-11)% increased Rarity of Items found", statOrder = { 940 }, level = 10, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(8-11)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Collector's", "(12-15)% increased Rarity of Items found", statOrder = { 940 }, level = 29, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-15)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Hoarder's", "(16-19)% increased Rarity of Items found", statOrder = { 940 }, level = 47, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(16-19)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Pirate's", "(20-22)% increased Rarity of Items found", statOrder = { 940 }, level = 65, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-22)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix5"] = { type = "Prefix", affix = "Dragon's", "(23-25)% increased Rarity of Items found", statOrder = { 940 }, level = 81, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(23-25)% increased Rarity of Items found" }, } }, - ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 879, 1069 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [803737631] = { "+(10-20) to Accuracy Rating" }, } }, - ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 879, 1069 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [803737631] = { "+(21-40) to Accuracy Rating" }, } }, - ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 879, 1069 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [803737631] = { "+(41-60) to Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 834, 1069 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [691932474] = { "+(10-20) to Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 834, 1069 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [691932474] = { "+(21-40) to Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 834, 1069 }, level = 30, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [691932474] = { "+(41-60) to Accuracy Rating" }, } }, - ["LightRadiusAndManaRegeneration1"] = { type = "Suffix", affix = "of Warmth", "(8-12)% increased Mana Regeneration Rate", "5% increased Light Radius", statOrder = { 1042, 1069 }, level = 8, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [789117908] = { "(8-12)% increased Mana Regeneration Rate" }, } }, - ["LightRadiusAndManaRegeneration2"] = { type = "Suffix", affix = "of Kindling", "(13-17)% increased Mana Regeneration Rate", "10% increased Light Radius", statOrder = { 1042, 1069 }, level = 15, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [789117908] = { "(13-17)% increased Mana Regeneration Rate" }, } }, - ["LightRadiusAndManaRegeneration3"] = { type = "Suffix", affix = "of the Hearth", "(18-22)% increased Mana Regeneration Rate", "15% increased Light Radius", statOrder = { 1042, 1069 }, level = 30, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [789117908] = { "(18-22)% increased Mana Regeneration Rate" }, } }, - ["LocalBlockChance1"] = { type = "Prefix", affix = "Steadfast", "(15-19)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(15-19)% increased Block chance" }, } }, - ["LocalBlockChance2"] = { type = "Prefix", affix = "Unrelenting", "(20-24)% increased Block chance", statOrder = { 838 }, level = 33, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-24)% increased Block chance" }, } }, - ["LocalBlockChance3"] = { type = "Prefix", affix = "Adamant", "(25-30)% increased Block chance", statOrder = { 838 }, level = 65, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(25-30)% increased Block chance" }, } }, - ["LocalBlockChance4_"] = { type = "Prefix", affix = "Warded", "(58-63)% increased Block chance", statOrder = { 838 }, level = 46, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(58-63)% increased Block chance" }, } }, - ["LocalBlockChance5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Block chance", statOrder = { 838 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(64-69)% increased Block chance" }, } }, - ["LocalBlockChance6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Block chance", statOrder = { 838 }, level = 74, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(70-75)% increased Block chance" }, } }, - ["LocalBlockChance7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Block chance", statOrder = { 838 }, level = 82, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(76-81)% increased Block chance" }, } }, - ["IncreasedSpirit1"] = { type = "Prefix", affix = "Lady's", "+(30-33) to Spirit", statOrder = { 895 }, level = 16, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(30-33) to Spirit" }, } }, - ["IncreasedSpirit2"] = { type = "Prefix", affix = "Baronness'", "+(34-37) to Spirit", statOrder = { 895 }, level = 25, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(34-37) to Spirit" }, } }, - ["IncreasedSpirit3"] = { type = "Prefix", affix = "Viscountess'", "+(38-42) to Spirit", statOrder = { 895 }, level = 33, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(38-42) to Spirit" }, } }, - ["IncreasedSpirit4"] = { type = "Prefix", affix = "Marchioness'", "+(43-46) to Spirit", statOrder = { 895 }, level = 46, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(43-46) to Spirit" }, } }, - ["IncreasedSpirit5"] = { type = "Prefix", affix = "Countess'", "+(47-50) to Spirit", statOrder = { 895 }, level = 54, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(47-50) to Spirit" }, } }, - ["IncreasedSpirit6"] = { type = "Prefix", affix = "Duchess'", "+(51-53) to Spirit", statOrder = { 895 }, level = 60, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(51-53) to Spirit" }, } }, - ["IncreasedSpirit7"] = { type = "Prefix", affix = "Princess'", "+(54-56) to Spirit", statOrder = { 895 }, level = 65, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(54-56) to Spirit" }, } }, - ["IncreasedSpirit8"] = { type = "Prefix", affix = "Queen's", "+(57-61) to Spirit", statOrder = { 895 }, level = 78, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(57-61) to Spirit" }, } }, - ["LocalIncreasedSpiritPercent1"] = { type = "Prefix", affix = "Lord's", "(20-26)% increased Spirit", statOrder = { 856 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(20-26)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent2"] = { type = "Prefix", affix = "Baron's", "(27-32)% increased Spirit", statOrder = { 856 }, level = 8, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(27-32)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent3"] = { type = "Prefix", affix = "Viscount's", "(33-38)% increased Spirit", statOrder = { 856 }, level = 16, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(33-38)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent4"] = { type = "Prefix", affix = "Marquess'", "(39-44)% increased Spirit", statOrder = { 856 }, level = 33, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(39-44)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent5"] = { type = "Prefix", affix = "Count's", "(45-50)% increased Spirit", statOrder = { 856 }, level = 46, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(45-50)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent6"] = { type = "Prefix", affix = "Duke's", "(51-55)% increased Spirit", statOrder = { 856 }, level = 60, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(51-55)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent7"] = { type = "Prefix", affix = "Prince's", "(56-60)% increased Spirit", statOrder = { 856 }, level = 75, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(56-60)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent8"] = { type = "Prefix", affix = "King's", "(61-65)% increased Spirit", statOrder = { 856 }, level = 82, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(61-65)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana1"] = { type = "Prefix", affix = "Advisor's", "(10-14)% increased Spirit", "+(17-20) to maximum Mana", statOrder = { 856, 891 }, level = 2, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [3984865854] = { "(10-14)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana2"] = { type = "Prefix", affix = "Counselor's", "(15-18)% increased Spirit", "+(21-24) to maximum Mana", statOrder = { 856, 891 }, level = 11, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [3984865854] = { "(15-18)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana3"] = { type = "Prefix", affix = "Emissary's", "(19-22)% increased Spirit", "+(25-28) to maximum Mana", statOrder = { 856, 891 }, level = 26, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [3984865854] = { "(19-22)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana4"] = { type = "Prefix", affix = "Minister's", "(23-26)% increased Spirit", "+(29-33) to maximum Mana", statOrder = { 856, 891 }, level = 36, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [3984865854] = { "(23-26)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana5"] = { type = "Prefix", affix = "Envoy's", "(27-30)% increased Spirit", "+(34-37) to maximum Mana", statOrder = { 856, 891 }, level = 48, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [3984865854] = { "(27-30)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana6"] = { type = "Prefix", affix = "Diplomat's", "(31-34)% increased Spirit", "+(38-41) to maximum Mana", statOrder = { 856, 891 }, level = 58, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [3984865854] = { "(31-34)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana7"] = { type = "Prefix", affix = "Chancellor's", "(35-38)% increased Spirit", "+(42-45) to maximum Mana", statOrder = { 856, 891 }, level = 70, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [3984865854] = { "(35-38)% increased Spirit" }, } }, - ["ReducedBleedDuration1"] = { type = "Suffix", affix = "of Sealing", "(36-40)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 21, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(36-40)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration2"] = { type = "Suffix", affix = "of Alleviation", "(41-45)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 37, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(41-45)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration3"] = { type = "Suffix", affix = "of Allaying", "(46-50)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 50, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(46-50)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration4"] = { type = "Suffix", affix = "of Assuaging", "(51-55)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 64, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(51-55)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration5"] = { type = "Suffix", affix = "of Staunching", "(56-60)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 76, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(56-60)% reduced Duration of Bleeding on You" }, } }, - ["ReducedPoisonDuration1"] = { type = "Suffix", affix = "of the Antitoxin", "(36-40)% reduced Poison Duration on you", statOrder = { 1066 }, level = 21, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(36-40)% reduced Poison Duration on you" }, } }, - ["ReducedPoisonDuration2"] = { type = "Suffix", affix = "of the Remedy", "(41-45)% reduced Poison Duration on you", statOrder = { 1066 }, level = 37, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(41-45)% reduced Poison Duration on you" }, } }, - ["ReducedPoisonDuration3"] = { type = "Suffix", affix = "of the Cure", "(46-50)% reduced Poison Duration on you", statOrder = { 1066 }, level = 50, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(46-50)% reduced Poison Duration on you" }, } }, - ["ReducedPoisonDuration4"] = { type = "Suffix", affix = "of the Panacea", "(51-55)% reduced Poison Duration on you", statOrder = { 1066 }, level = 64, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(51-55)% reduced Poison Duration on you" }, } }, - ["ReducedPoisonDuration5"] = { type = "Suffix", affix = "of the Antidote", "(56-60)% reduced Poison Duration on you", statOrder = { 1066 }, level = 76, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(56-60)% reduced Poison Duration on you" }, } }, - ["ReducedBurnDuration1"] = { type = "Suffix", affix = "of Damping", "(36-40)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 21, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-40)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration2"] = { type = "Suffix", affix = "of Quashing", "(41-45)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 37, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(41-45)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration3"] = { type = "Suffix", affix = "of Quelling", "(46-50)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 50, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(46-50)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration4"] = { type = "Suffix", affix = "of Quenching", "(51-55)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 64, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(51-55)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration5"] = { type = "Suffix", affix = "of Dousing", "(56-60)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 76, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(56-60)% reduced Ignite Duration on you" }, } }, - ["ReducedShockDuration1"] = { type = "Suffix", affix = "of Earthing", "(36-40)% reduced Shock duration on you", statOrder = { 1065 }, level = 20, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(36-40)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration2"] = { type = "Suffix", affix = "of Insulation", "(41-45)% reduced Shock duration on you", statOrder = { 1065 }, level = 36, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(41-45)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration3"] = { type = "Suffix", affix = "of the Impedance", "(46-50)% reduced Shock duration on you", statOrder = { 1065 }, level = 49, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(46-50)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration4"] = { type = "Suffix", affix = "of the Dielectric", "(51-55)% reduced Shock duration on you", statOrder = { 1065 }, level = 63, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(51-55)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration5"] = { type = "Suffix", affix = "of Grounding", "(56-60)% reduced Shock duration on you", statOrder = { 1065 }, level = 75, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(56-60)% reduced Shock duration on you" }, } }, - ["ReducedChillDuration1"] = { type = "Suffix", affix = "of Convection", "(36-40)% reduced Chill Duration on you", statOrder = { 1063 }, level = 20, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(36-40)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration2"] = { type = "Suffix", affix = "of Fluidity", "(41-45)% reduced Chill Duration on you", statOrder = { 1063 }, level = 36, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(41-45)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration3"] = { type = "Suffix", affix = "of Entropy", "(46-50)% reduced Chill Duration on you", statOrder = { 1063 }, level = 49, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(46-50)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration4"] = { type = "Suffix", affix = "of Dissipation", "(51-55)% reduced Chill Duration on you", statOrder = { 1063 }, level = 63, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(51-55)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration5"] = { type = "Suffix", affix = "of the Reversal", "(56-60)% reduced Chill Duration on you", statOrder = { 1063 }, level = 75, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(56-60)% reduced Chill Duration on you" }, } }, - ["ReducedFreezeDuration1"] = { type = "Suffix", affix = "of Heating", "(36-40)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 20, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-40)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration2"] = { type = "Suffix", affix = "of Unfreezing", "(41-45)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 36, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(41-45)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration3"] = { type = "Suffix", affix = "of Defrosting", "(46-50)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 49, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(46-50)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration4"] = { type = "Suffix", affix = "of the Temperate", "(51-55)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 63, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-55)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration5"] = { type = "Suffix", affix = "of Thawing", "(56-60)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(56-60)% reduced Freeze Duration on you" }, } }, - ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "Hits against you have (21-27)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (21-27)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "Hits against you have (28-34)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (28-34)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "Hits against you have (35-41)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 58, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (35-41)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "Hits against you have (42-47)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 69, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (42-47)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits5"] = { type = "Suffix", affix = "of the Bastion", "Hits against you have (48-54)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 81, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (48-54)% reduced Critical Damage Bonus" }, } }, - ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 1005 }, level = 32, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "4% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Custodian", "5% additional Physical Damage Reduction", statOrder = { 1005 }, level = 41, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "5% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Sentry", "6% additional Physical Damage Reduction", statOrder = { 1005 }, level = 53, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "6% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 1005 }, level = 66, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "7% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 1005 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "8% additional Physical Damage Reduction" }, } }, - ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to Maximum Fire Resistance", statOrder = { 1008 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, - ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to Maximum Fire Resistance", statOrder = { 1008 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, } }, - ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to Maximum Fire Resistance", statOrder = { 1008 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to Maximum Fire Resistance" }, } }, - ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to Maximum Cold Resistance", statOrder = { 1009 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to Maximum Cold Resistance", statOrder = { 1009 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to Maximum Cold Resistance", statOrder = { 1009 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, - ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, - ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, } }, - ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, } }, - ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to Maximum Chaos Resistance", statOrder = { 1011 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, } }, - ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to Maximum Chaos Resistance", statOrder = { 1011 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, } }, - ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to Maximum Chaos Resistance", statOrder = { 1011 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to Maximum Chaos Resistance" }, } }, - ["MaximumElementalResistance1"] = { type = "Suffix", affix = "of the Deathless", "+1% to all Maximum Elemental Resistances", statOrder = { 1006 }, level = 75, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["MaximumElementalResistance2"] = { type = "Suffix", affix = "of the Everlasting", "+2% to all Maximum Elemental Resistances", statOrder = { 1006 }, level = 81, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+2% to all Maximum Elemental Resistances" }, } }, - ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Enlivening", "(5-8)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(5-8)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(9-11)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 16, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(9-11)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(12-15)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 36, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(12-15)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(16-19)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 48, group = "EnergyShieldRegeneration", weightKey = { "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(16-19)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(20-23)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 66, group = "EnergyShieldRegeneration", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(20-23)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate6"] = { type = "Suffix", affix = "of Suffusion", "(24-27)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(24-27)% increased Energy Shield Recharge Rate" }, } }, - ["FasterStartOfEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Impatience", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Restlessness", "(31-35)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 16, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(31-35)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge3"] = { type = "Suffix", affix = "of Fretfulness", "(36-40)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 36, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(36-40)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Motivation", "(41-45)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 48, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(41-45)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge5"] = { type = "Suffix", affix = "of Excitement", "(46-50)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 66, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(46-50)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge6"] = { type = "Suffix", affix = "of Anticipation", "(51-55)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 81, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(51-55)% faster start of Energy Shield Recharge" }, } }, - ["ArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of Covering", "+(14-19)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(14-19)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of Sheathing", "+(20-25)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 16, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(20-25)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage3"] = { type = "Suffix", affix = "of Lining", "+(26-31)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 36, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(26-31)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage4"] = { type = "Suffix", affix = "of Padding", "+(32-37)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 48, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(32-37)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage5"] = { type = "Suffix", affix = "of Furring", "+(38-43)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 66, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(38-43)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage6"] = { type = "Suffix", affix = "of Thermokryptance", "+(44-50)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 81, group = "ArmourAppliesToElementalDamage", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(44-50)% of Armour also applies to Elemental Damage" }, } }, - ["EvasionGrantsDeflection1"] = { type = "Suffix", affix = "of Deflecting", "Gain Deflection Rating equal to (8-11)% of Evasion Rating", statOrder = { 1027 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (8-11)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection2"] = { type = "Suffix", affix = "of Bending", "Gain Deflection Rating equal to (12-14)% of Evasion Rating", statOrder = { 1027 }, level = 16, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (12-14)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection3"] = { type = "Suffix", affix = "of Curvation", "Gain Deflection Rating equal to (15-17)% of Evasion Rating", statOrder = { 1027 }, level = 36, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (15-17)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection4"] = { type = "Suffix", affix = "of Diversion", "Gain Deflection Rating equal to (18-20)% of Evasion Rating", statOrder = { 1027 }, level = 48, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (18-20)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection5"] = { type = "Suffix", affix = "of Flexure", "Gain Deflection Rating equal to (21-23)% of Evasion Rating", statOrder = { 1027 }, level = 66, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (21-23)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection6"] = { type = "Suffix", affix = "of Warping", "Gain Deflection Rating equal to (24-26)% of Evasion Rating", statOrder = { 1027 }, level = 81, group = "EvasionAppliesToDeflection", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (24-26)% of Evasion Rating" }, } }, - ["ArrowPierceChance1"] = { type = "Suffix", affix = "of Piercing", "(12-14)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 11, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(12-14)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance2"] = { type = "Suffix", affix = "of Drilling", "(15-17)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 26, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(15-17)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance3"] = { type = "Suffix", affix = "of Puncturing", "(18-20)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 44, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(18-20)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance4"] = { type = "Suffix", affix = "of Skewering", "(21-23)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 61, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(21-23)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance5"] = { type = "Suffix", affix = "of Penetrating", "(24-26)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 77, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(24-26)% chance to Pierce an Enemy" }, } }, - ["AdditionalArrow1"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 989 }, level = 55, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["AdditionalArrow2"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 989 }, level = 82, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["AdditionalArrowChance1"] = { type = "Suffix", affix = "of Surplus", "+(25-50)% Surpassing chance to fire an additional Arrow", statOrder = { 5500 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-50)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChance2"] = { type = "Suffix", affix = "of Splintering", "+(75-100)% Surpassing chance to fire an additional Arrow", statOrder = { 5500 }, level = 55, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(75-100)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChance3"] = { type = "Suffix", affix = "of Shards", "+(125-150)% Surpassing chance to fire an additional Arrow", statOrder = { 5500 }, level = 66, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(125-150)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChance4"] = { type = "Suffix", affix = "of Many", "+(175-200)% Surpassing chance to fire an additional Arrow", statOrder = { 5500 }, level = 82, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(175-200)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChanceQuiver1"] = { type = "Suffix", affix = "of Surplus", "+(25-40)% Surpassing chance to fire an additional Arrow", statOrder = { 5500 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-40)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChanceQuiver2"] = { type = "Suffix", affix = "of Splintering", "+(41-60)% Surpassing chance to fire an additional Arrow", statOrder = { 5500 }, level = 80, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(41-60)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalAmmo1"] = { type = "Suffix", affix = "of Shelling", "Loads an additional bolt", statOrder = { 987 }, level = 55, group = "AdditionalAmmo", weightKey = { "cannon", "crossbow", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["AdditionalAmmo2"] = { type = "Suffix", affix = "of Bursting", "Loads 2 additional bolts", statOrder = { 987 }, level = 82, group = "AdditionalAmmo", weightKey = { "cannon", "crossbow", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads 2 additional bolts" }, } }, - ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(5-10)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 16, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(11-16)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 33, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(17-22)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 46, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(23-28)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 60, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(29-34)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 75, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(35-40)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(5-10)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 11, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-16)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 26, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(17-22)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 36, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(23-28)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 54, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(29-34)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(35-40)% increased Flask Mana Recovery rate" }, } }, - ["BeltIncreasedCharmDuration1"] = { type = "Prefix", affix = "Conservative", "(4-9)% increased Charm Effect Duration", statOrder = { 899 }, level = 8, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(4-9)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration2"] = { type = "Prefix", affix = "Transformative", "(10-15)% increased Charm Effect Duration", statOrder = { 899 }, level = 33, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(10-15)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration3"] = { type = "Prefix", affix = "Progressive", "(16-21)% increased Charm Effect Duration", statOrder = { 899 }, level = 46, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(16-21)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration4"] = { type = "Prefix", affix = "Innovative", "(22-27)% increased Charm Effect Duration", statOrder = { 899 }, level = 60, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(22-27)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration5"] = { type = "Prefix", affix = "Revolutionary", "(28-33)% increased Charm Effect Duration", statOrder = { 899 }, level = 75, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(28-33)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 6617 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 6617 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(11-16)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 6617 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(17-22)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 6617 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(23-28)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 6617 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(29-34)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 6617 }, level = 81, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(35-40)% increased Flask Charges gained" }, } }, - ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(8-10)% reduced Flask Charges used", statOrder = { 1048 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(8-10)% reduced Flask Charges used" }, } }, - ["BeltReducedFlaskChargesUsed2"] = { type = "Suffix", affix = "of Imbibing", "(11-13)% reduced Flask Charges used", statOrder = { 1048 }, level = 18, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(11-13)% reduced Flask Charges used" }, } }, - ["BeltReducedFlaskChargesUsed3"] = { type = "Suffix", affix = "of Relishing", "(14-16)% reduced Flask Charges used", statOrder = { 1048 }, level = 33, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(14-16)% reduced Flask Charges used" }, } }, - ["BeltReducedFlaskChargesUsed4"] = { type = "Suffix", affix = "of Savouring", "(17-19)% reduced Flask Charges used", statOrder = { 1048 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(17-19)% reduced Flask Charges used" }, } }, - ["BeltReducedFlaskChargesUsed5"] = { type = "Suffix", affix = "of Reveling", "(20-22)% reduced Flask Charges used", statOrder = { 1048 }, level = 72, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(20-22)% reduced Flask Charges used" }, } }, - ["BeltReducedFlaskChargesUsed6"] = { type = "Suffix", affix = "of Nourishing", "(23-25)% reduced Flask Charges used", statOrder = { 1048 }, level = 81, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(23-25)% reduced Flask Charges used" }, } }, - ["BeltIncreasedCharmChargesGained1"] = { type = "Suffix", affix = "of Plenty", "(5-10)% increased Charm Charges gained", statOrder = { 5591 }, level = 2, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(5-10)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained2"] = { type = "Suffix", affix = "of Surplus", "(11-16)% increased Charm Charges gained", statOrder = { 5591 }, level = 16, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(11-16)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained3"] = { type = "Suffix", affix = "of Fertility", "(17-22)% increased Charm Charges gained", statOrder = { 5591 }, level = 32, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(17-22)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained4"] = { type = "Suffix", affix = "of Bounty", "(23-28)% increased Charm Charges gained", statOrder = { 5591 }, level = 48, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(23-28)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained5"] = { type = "Suffix", affix = "of the Harvest", "(29-34)% increased Charm Charges gained", statOrder = { 5591 }, level = 70, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(29-34)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained6"] = { type = "Suffix", affix = "of Abundance", "(35-40)% increased Charm Charges gained", statOrder = { 5591 }, level = 81, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(35-40)% increased Charm Charges gained" }, } }, - ["BeltReducedCharmChargesUsed1"] = { type = "Suffix", affix = "of Austerity", "(8-10)% reduced Charm Charges used", statOrder = { 5592 }, level = 3, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(8-10)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed2"] = { type = "Suffix", affix = "of Frugality", "(11-13)% reduced Charm Charges used", statOrder = { 5592 }, level = 18, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(11-13)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed3"] = { type = "Suffix", affix = "of Temperance", "(14-16)% reduced Charm Charges used", statOrder = { 5592 }, level = 33, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(14-16)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed4"] = { type = "Suffix", affix = "of Restraint", "(17-19)% reduced Charm Charges used", statOrder = { 5592 }, level = 50, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(17-19)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed5"] = { type = "Suffix", affix = "of Economy", "(20-22)% reduced Charm Charges used", statOrder = { 5592 }, level = 72, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(20-22)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed6"] = { type = "Suffix", affix = "of Scarcity", "(23-25)% reduced Charm Charges used", statOrder = { 5592 }, level = 81, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(23-25)% reduced Charm Charges used" }, } }, - ["AdditionalCharm1"] = { type = "Suffix", affix = "of Symbolism", "+1 Charm Slot", statOrder = { 988 }, level = 23, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+1 Charm Slot" }, } }, - ["AdditionalCharm2"] = { type = "Suffix", affix = "of Inscription", "+2 Charm Slots", statOrder = { 988 }, level = 64, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+2 Charm Slots" }, } }, - ["IgniteChanceIncrease1"] = { type = "Suffix", affix = "of Ignition", "(51-60)% increased Flammability Magnitude", statOrder = { 1054 }, level = 15, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(51-60)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease2"] = { type = "Suffix", affix = "of Scorching", "(61-70)% increased Flammability Magnitude", statOrder = { 1054 }, level = 30, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(61-70)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease3"] = { type = "Suffix", affix = "of Incineration", "(71-80)% increased Flammability Magnitude", statOrder = { 1054 }, level = 45, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(71-80)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease4"] = { type = "Suffix", affix = "of Combustion", "(81-90)% increased Flammability Magnitude", statOrder = { 1054 }, level = 60, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(81-90)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease5"] = { type = "Suffix", affix = "of Conflagration", "(91-100)% increased Flammability Magnitude", statOrder = { 1054 }, level = 75, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(91-100)% increased Flammability Magnitude" }, } }, - ["FreezeDamageIncrease1"] = { type = "Suffix", affix = "of Freezing", "(31-40)% increased Freeze Buildup", statOrder = { 1056 }, level = 15, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(31-40)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease2"] = { type = "Suffix", affix = "of Bleakness", "(41-50)% increased Freeze Buildup", statOrder = { 1056 }, level = 30, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(41-50)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease3"] = { type = "Suffix", affix = "of the Glacier", "(51-60)% increased Freeze Buildup", statOrder = { 1056 }, level = 45, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(51-60)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease4"] = { type = "Suffix", affix = "of the Hyperboreal", "(61-70)% increased Freeze Buildup", statOrder = { 1056 }, level = 60, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(61-70)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease5"] = { type = "Suffix", affix = "of the Arctic", "(71-80)% increased Freeze Buildup", statOrder = { 1056 }, level = 75, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(71-80)% increased Freeze Buildup" }, } }, - ["ShockChanceIncrease1"] = { type = "Suffix", affix = "of Shocking", "(51-60)% increased chance to Shock", statOrder = { 1058 }, level = 15, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(51-60)% increased chance to Shock" }, } }, - ["ShockChanceIncrease2"] = { type = "Suffix", affix = "of Zapping", "(61-70)% increased chance to Shock", statOrder = { 1058 }, level = 30, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(61-70)% increased chance to Shock" }, } }, - ["ShockChanceIncrease3"] = { type = "Suffix", affix = "of Electrocution", "(71-80)% increased chance to Shock", statOrder = { 1058 }, level = 45, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(71-80)% increased chance to Shock" }, } }, - ["ShockChanceIncrease4"] = { type = "Suffix", affix = "of Voltages", "(81-90)% increased chance to Shock", statOrder = { 1058 }, level = 60, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(81-90)% increased chance to Shock" }, } }, - ["ShockChanceIncrease5"] = { type = "Suffix", affix = "of the Thunderbolt", "(91-100)% increased chance to Shock", statOrder = { 1058 }, level = 75, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(91-100)% increased chance to Shock" }, } }, - ["ProjectileSpeed1"] = { type = "Prefix", affix = "Darting", "(10-17)% increased Projectile Speed", statOrder = { 896 }, level = 14, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(10-17)% increased Projectile Speed" }, } }, - ["ProjectileSpeed2"] = { type = "Prefix", affix = "Brisk", "(18-25)% increased Projectile Speed", statOrder = { 896 }, level = 27, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(18-25)% increased Projectile Speed" }, } }, - ["ProjectileSpeed3"] = { type = "Prefix", affix = "Quick", "(26-33)% increased Projectile Speed", statOrder = { 896 }, level = 41, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(26-33)% increased Projectile Speed" }, } }, - ["ProjectileSpeed4"] = { type = "Prefix", affix = "Rapid", "(34-41)% increased Projectile Speed", statOrder = { 896 }, level = 55, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(34-41)% increased Projectile Speed" }, } }, - ["ProjectileSpeed5"] = { type = "Prefix", affix = "Nimble", "(42-46)% increased Projectile Speed", statOrder = { 896 }, level = 82, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(42-46)% increased Projectile Speed" }, } }, - ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Mending", "(10-12)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 30, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-12)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Bandaging", "(13-15)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(13-15)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Stitching", "(16-18)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-18)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Suturing", "(19-21)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(19-21)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife5"] = { type = "Suffix", affix = "of Fleshbinding", "(22-24)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-24)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of Reprieve", "(10-12)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 31, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-12)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana2"] = { type = "Suffix", affix = "of Solace", "(13-15)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(13-15)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana3"] = { type = "Suffix", affix = "of Tranquility", "(16-18)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 57, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(16-18)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana4"] = { type = "Suffix", affix = "of Serenity", "(19-21)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 69, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(19-21)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana5"] = { type = "Suffix", affix = "of Zen", "(22-24)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 80, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(22-24)% of Damage taken Recouped as Mana" }, } }, - ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-13)% increased Stun Duration", statOrder = { 1053 }, level = 5, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(11-13)% increased Stun Duration" }, } }, - ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(14-16)% increased Stun Duration", statOrder = { 1053 }, level = 18, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(14-16)% increased Stun Duration" }, } }, - ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(17-19)% increased Stun Duration", statOrder = { 1053 }, level = 30, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(17-19)% increased Stun Duration" }, } }, - ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(20-22)% increased Stun Duration", statOrder = { 1053 }, level = 44, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(20-22)% increased Stun Duration" }, } }, - ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(23-26)% increased Stun Duration", statOrder = { 1053 }, level = 58, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(23-26)% increased Stun Duration" }, } }, - ["StunDuration6"] = { type = "Suffix", affix = "of the Concussion", "(27-30)% increased Stun Duration", statOrder = { 1053 }, level = 71, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(27-30)% increased Stun Duration" }, } }, - ["StunDamageIncrease1"] = { type = "Suffix", affix = "of the Pugilist", "Causes (21-30)% increased Stun Buildup", statOrder = { 1051 }, level = 5, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (21-30)% increased Stun Buildup" }, } }, - ["StunDamageIncrease2"] = { type = "Suffix", affix = "of the Brawler", "Causes (31-40)% increased Stun Buildup", statOrder = { 1051 }, level = 20, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (31-40)% increased Stun Buildup" }, } }, - ["StunDamageIncrease3"] = { type = "Suffix", affix = "of the Boxer", "Causes (41-50)% increased Stun Buildup", statOrder = { 1051 }, level = 30, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (41-50)% increased Stun Buildup" }, } }, - ["StunDamageIncrease4"] = { type = "Suffix", affix = "of the Combatant", "Causes (51-60)% increased Stun Buildup", statOrder = { 1051 }, level = 44, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (51-60)% increased Stun Buildup" }, } }, - ["StunDamageIncrease5"] = { type = "Suffix", affix = "of the Gladiator", "Causes (61-70)% increased Stun Buildup", statOrder = { 1051 }, level = 58, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (61-70)% increased Stun Buildup" }, } }, - ["StunDamageIncrease6"] = { type = "Suffix", affix = "of the Champion", "Causes (71-80)% increased Stun Buildup", statOrder = { 1051 }, level = 74, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (71-80)% increased Stun Buildup" }, } }, - ["SpellDamage1"] = { type = "Prefix", affix = "Apprentice's", "(3-7)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(3-7)% increased Spell Damage" }, } }, - ["SpellDamage2"] = { type = "Prefix", affix = "Adept's", "(8-12)% increased Spell Damage", statOrder = { 870 }, level = 16, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, } }, - ["SpellDamage3"] = { type = "Prefix", affix = "Scholar's", "(13-17)% increased Spell Damage", statOrder = { 870 }, level = 33, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-17)% increased Spell Damage" }, } }, - ["SpellDamage4"] = { type = "Prefix", affix = "Professor's", "(18-22)% increased Spell Damage", statOrder = { 870 }, level = 46, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } }, - ["SpellDamage5"] = { type = "Prefix", affix = "Occultist's", "(23-26)% increased Spell Damage", statOrder = { 870 }, level = 60, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } }, - ["SpellDamage6"] = { type = "Prefix", affix = "Incanter's", "(27-30)% increased Spell Damage", statOrder = { 870 }, level = 75, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-30)% increased Spell Damage" }, } }, - ["FireDamagePercent1"] = { type = "Prefix", affix = "Searing", "(3-7)% increased Fire Damage", statOrder = { 872 }, level = 8, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(3-7)% increased Fire Damage" }, } }, - ["FireDamagePercent2"] = { type = "Prefix", affix = "Sizzling", "(8-12)% increased Fire Damage", statOrder = { 872 }, level = 16, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(8-12)% increased Fire Damage" }, } }, - ["FireDamagePercent3"] = { type = "Prefix", affix = "Blistering", "(13-17)% increased Fire Damage", statOrder = { 872 }, level = 33, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(13-17)% increased Fire Damage" }, } }, - ["FireDamagePercent4"] = { type = "Prefix", affix = "Cauterising", "(18-22)% increased Fire Damage", statOrder = { 872 }, level = 46, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-22)% increased Fire Damage" }, } }, - ["FireDamagePercent5"] = { type = "Prefix", affix = "Volcanic", "(23-26)% increased Fire Damage", statOrder = { 872 }, level = 65, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-26)% increased Fire Damage" }, } }, - ["FireDamagePercent6"] = { type = "Prefix", affix = "Magmatic", "(27-30)% increased Fire Damage", statOrder = { 872 }, level = 75, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } }, - ["ColdDamagePercent1"] = { type = "Prefix", affix = "Bitter", "(3-7)% increased Cold Damage", statOrder = { 873 }, level = 8, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(3-7)% increased Cold Damage" }, } }, - ["ColdDamagePercent2"] = { type = "Prefix", affix = "Biting", "(8-12)% increased Cold Damage", statOrder = { 873 }, level = 16, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(8-12)% increased Cold Damage" }, } }, - ["ColdDamagePercent3"] = { type = "Prefix", affix = "Alpine", "(13-17)% increased Cold Damage", statOrder = { 873 }, level = 33, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(13-17)% increased Cold Damage" }, } }, - ["ColdDamagePercent4"] = { type = "Prefix", affix = "Snowy", "(18-22)% increased Cold Damage", statOrder = { 873 }, level = 46, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-22)% increased Cold Damage" }, } }, - ["ColdDamagePercent5"] = { type = "Prefix", affix = "Hailing", "(23-26)% increased Cold Damage", statOrder = { 873 }, level = 65, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-26)% increased Cold Damage" }, } }, - ["ColdDamagePercent6"] = { type = "Prefix", affix = "Crystalline", "(27-30)% increased Cold Damage", statOrder = { 873 }, level = 75, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } }, - ["LightningDamagePercent1"] = { type = "Prefix", affix = "Charged", "(3-7)% increased Lightning Damage", statOrder = { 874 }, level = 8, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(3-7)% increased Lightning Damage" }, } }, - ["LightningDamagePercent2"] = { type = "Prefix", affix = "Hissing", "(8-12)% increased Lightning Damage", statOrder = { 874 }, level = 16, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(8-12)% increased Lightning Damage" }, } }, - ["LightningDamagePercent3"] = { type = "Prefix", affix = "Bolting", "(13-17)% increased Lightning Damage", statOrder = { 874 }, level = 33, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(13-17)% increased Lightning Damage" }, } }, - ["LightningDamagePercent4"] = { type = "Prefix", affix = "Coursing", "(18-22)% increased Lightning Damage", statOrder = { 874 }, level = 46, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-22)% increased Lightning Damage" }, } }, - ["LightningDamagePercent5"] = { type = "Prefix", affix = "Striking", "(23-26)% increased Lightning Damage", statOrder = { 874 }, level = 65, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-26)% increased Lightning Damage" }, } }, - ["LightningDamagePercent6"] = { type = "Prefix", affix = "Smiting", "(27-30)% increased Lightning Damage", statOrder = { 874 }, level = 75, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-30)% increased Lightning Damage" }, } }, - ["ChaosDamagePercent1"] = { type = "Prefix", affix = "Impure", "(3-7)% increased Chaos Damage", statOrder = { 875 }, level = 8, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(3-7)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent2"] = { type = "Prefix", affix = "Tainted", "(8-12)% increased Chaos Damage", statOrder = { 875 }, level = 16, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(8-12)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent3"] = { type = "Prefix", affix = "Clouded", "(13-17)% increased Chaos Damage", statOrder = { 875 }, level = 33, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-17)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent4"] = { type = "Prefix", affix = "Darkened", "(18-22)% increased Chaos Damage", statOrder = { 875 }, level = 46, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(18-22)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent5"] = { type = "Prefix", affix = "Malignant", "(23-26)% increased Chaos Damage", statOrder = { 875 }, level = 65, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent6"] = { type = "Prefix", affix = "Vile", "(27-30)% increased Chaos Damage", statOrder = { 875 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } }, - ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(19-35)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(19-35)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(36-52)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 16, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(36-52)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(53-62)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 33, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(53-62)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(63-72)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 46, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(63-72)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(73-86)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(73-86)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(87-100)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(34-47)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(34-47)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(48-71)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 16, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(48-71)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(72-85)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 33, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(72-85)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(86-99)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 46, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(86-99)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(100-119)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(100-119)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(120-139)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(120-139)% increased Elemental Damage with Attacks" }, } }, - ["SpellDamageGainedAsFire1"] = { type = "Prefix", affix = "Fervent", "Gain (13-15)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 5, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (13-15)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire2"] = { type = "Prefix", affix = "Ardent", "Gain (16-18)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 16, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (16-18)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire3"] = { type = "Prefix", affix = "Fanatic's", "Gain (19-21)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 33, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (19-21)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire4"] = { type = "Prefix", affix = "Zealot's", "Gain (22-24)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 46, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (22-24)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire5"] = { type = "Prefix", affix = "Infernal", "Gain (25-27)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 60, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-27)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire6"] = { type = "Prefix", affix = "Flamebound", "Gain (28-30)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 80, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (28-30)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand1"] = { type = "Prefix", affix = "Fervent", "Gain (26-30)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 5, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (26-30)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand2"] = { type = "Prefix", affix = "Ardent", "Gain (31-36)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 16, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (31-36)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand3"] = { type = "Prefix", affix = "Fanatic's", "Gain (37-42)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 33, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (37-42)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand4"] = { type = "Prefix", affix = "Zealot's", "Gain (43-48)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 46, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (43-48)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand5"] = { type = "Prefix", affix = "Infernal", "Gain (49-54)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 60, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (49-54)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand6"] = { type = "Prefix", affix = "Flamebound", "Gain (55-60)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 80, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (55-60)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsCold1"] = { type = "Prefix", affix = "Malignant", "Gain (13-15)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 5, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (13-15)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold2"] = { type = "Prefix", affix = "Pernicious", "Gain (16-18)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 16, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (16-18)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold3"] = { type = "Prefix", affix = "Destructive", "Gain (19-21)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 33, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (19-21)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold4"] = { type = "Prefix", affix = "Malicious", "Gain (22-24)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 46, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (22-24)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold5"] = { type = "Prefix", affix = "Ruthless", "Gain (25-27)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 60, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (25-27)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold6"] = { type = "Prefix", affix = "Frostbound", "Gain (28-30)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 80, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (28-30)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand1"] = { type = "Prefix", affix = "Malignant", "Gain (26-30)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 5, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (26-30)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand2"] = { type = "Prefix", affix = "Pernicious", "Gain (31-36)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 16, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (31-36)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand3"] = { type = "Prefix", affix = "Destructive", "Gain (37-42)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 33, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (37-42)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand4"] = { type = "Prefix", affix = "Malicious", "Gain (43-48)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 46, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (43-48)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand5"] = { type = "Prefix", affix = "Ruthless", "Gain (49-54)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 60, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (49-54)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand6"] = { type = "Prefix", affix = "Frostbound", "Gain (55-60)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 80, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (55-60)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsLightning1"] = { type = "Prefix", affix = "Deadly", "Gain (13-15)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (13-15)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning2"] = { type = "Prefix", affix = "Lethal", "Gain (16-18)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (16-18)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning3"] = { type = "Prefix", affix = "Fatal", "Gain (19-21)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (19-21)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning4"] = { type = "Prefix", affix = "Vorpal", "Gain (22-24)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (22-24)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning5"] = { type = "Prefix", affix = "Electrifying", "Gain (25-27)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (25-27)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning6"] = { type = "Prefix", affix = "Stormbound", "Gain (28-30)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (28-30)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand1"] = { type = "Prefix", affix = "Deadly", "Gain (26-30)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (26-30)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand2"] = { type = "Prefix", affix = "Lethal", "Gain (31-36)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (31-36)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand3"] = { type = "Prefix", affix = "Fatal", "Gain (37-42)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (37-42)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand4"] = { type = "Prefix", affix = "Vorpal", "Gain (43-48)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (43-48)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand5"] = { type = "Prefix", affix = "Electrifying", "Gain (49-54)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (49-54)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand6"] = { type = "Prefix", affix = "Stormbound", "Gain (55-60)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (55-60)% of Damage as Extra Lightning Damage" }, } }, - ["DamageWithBows1"] = { type = "Prefix", affix = "Acute", "(11-20)% increased Damage with Bow Skills", statOrder = { 878 }, level = 1, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(11-20)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows2"] = { type = "Prefix", affix = "Trenchant", "(21-30)% increased Damage with Bow Skills", statOrder = { 878 }, level = 16, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(21-30)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows3"] = { type = "Prefix", affix = "Perforating", "(31-36)% increased Damage with Bow Skills", statOrder = { 878 }, level = 33, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(31-36)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows4"] = { type = "Prefix", affix = "Incisive", "(37-42)% increased Damage with Bow Skills", statOrder = { 878 }, level = 46, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(37-42)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows5"] = { type = "Prefix", affix = "Lacerating", "(43-50)% increased Damage with Bow Skills", statOrder = { 878 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(43-50)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows6"] = { type = "Prefix", affix = "Impaling", "(51-59)% increased Damage with Bow Skills", statOrder = { 878 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(51-59)% increased Damage with Bow Skills" }, } }, - ["PresenceRadius1"] = { type = "Suffix", affix = "of Direction", "(36-45)% increased Presence Area of Effect", statOrder = { 1068 }, level = 23, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(36-45)% increased Presence Area of Effect" }, } }, - ["PresenceRadius2"] = { type = "Suffix", affix = "of Outreach", "(46-55)% increased Presence Area of Effect", statOrder = { 1068 }, level = 40, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(46-55)% increased Presence Area of Effect" }, } }, - ["PresenceRadius3"] = { type = "Suffix", affix = "of Guidance", "(56-65)% increased Presence Area of Effect", statOrder = { 1068 }, level = 56, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(56-65)% increased Presence Area of Effect" }, } }, - ["PresenceRadius4"] = { type = "Suffix", affix = "of Influence", "(66-80)% increased Presence Area of Effect", statOrder = { 1068 }, level = 72, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(66-80)% increased Presence Area of Effect" }, } }, - ["MinionLife1"] = { type = "Suffix", affix = "of the Mentor", "Minions have (21-25)% increased maximum Life", statOrder = { 1025 }, level = 2, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (21-25)% increased maximum Life" }, } }, - ["MinionLife2"] = { type = "Suffix", affix = "of the Tutor", "Minions have (26-30)% increased maximum Life", statOrder = { 1025 }, level = 16, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (26-30)% increased maximum Life" }, } }, - ["MinionLife3"] = { type = "Suffix", affix = "of the Director", "Minions have (31-35)% increased maximum Life", statOrder = { 1025 }, level = 32, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (31-35)% increased maximum Life" }, } }, - ["MinionLife4"] = { type = "Suffix", affix = "of the Headmaster", "Minions have (36-40)% increased maximum Life", statOrder = { 1025 }, level = 48, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (36-40)% increased maximum Life" }, } }, - ["MinionLife5"] = { type = "Suffix", affix = "of the Administrator", "Minions have (41-45)% increased maximum Life", statOrder = { 1025 }, level = 64, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (41-45)% increased maximum Life" }, } }, - ["MinionLife6"] = { type = "Suffix", affix = "of the Rector", "Minions have (46-50)% increased maximum Life", statOrder = { 1025 }, level = 80, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (46-50)% increased maximum Life" }, } }, - ["GrenadeSkillAdditionalCooldownUse1"] = { type = "Suffix", affix = "of Stockpiling", "Grenade Skills have +1 Cooldown Use", statOrder = { 6918 }, level = 72, group = "GrenadeCooldownUse", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, - ["GrenadeSkillAdditionalCooldownUse2"] = { type = "Suffix", affix = "of Ordnance", "Grenade Skills have +2 Cooldown Uses", statOrder = { 6918 }, level = 81, group = "GrenadeCooldownUse", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2250681686] = { "Grenade Skills have +2 Cooldown Uses" }, } }, - ["GrenadeSkillAdditionalProjectile1"] = { type = "Suffix", affix = "of Blasting", "Grenade Skills Fire an additional Projectile", statOrder = { 6922 }, level = 72, group = "GrenadeProjectiles", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire an additional Projectile" }, } }, - ["GrenadeSkillAdditionalProjectile2"] = { type = "Suffix", affix = "of Bombarding", "Grenade Skills Fire 2 additional Projectiles", statOrder = { 6922 }, level = 81, group = "GrenadeProjectiles", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire 2 additional Projectiles" }, } }, - ["GrenadeSkillCooldownRecovery1"] = { type = "Suffix", affix = "of Speed", "(4-8)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6919 }, level = 4, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(4-8)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery2"] = { type = "Suffix", affix = "of Brevity", "(9-14)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6919 }, level = 16, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(9-14)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery3"] = { type = "Suffix", affix = "of Rapidity", "(15-21)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6919 }, level = 33, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(15-21)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery4"] = { type = "Suffix", affix = "of Swiftness", "(22-26)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6919 }, level = 46, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(22-26)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery5"] = { type = "Suffix", affix = "of Fleetness", "(27-32)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6919 }, level = 60, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(27-32)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["GrenadeSkillCooldownRecovery6"] = { type = "Suffix", affix = "of Alacrity", "(33-40)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6919 }, level = 81, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(33-40)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, - ["EssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "60% increased effect of Socketed Augment Items", statOrder = { 177 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2081918629] = { "60% increased effect of Socketed Augment Items" }, } }, - ["EssenceCorruptForTwoEnchantments1"] = { type = "Suffix", affix = "of the Essence", "On Corruption, Item gains two Enchantments", statOrder = { 7677 }, level = 1, group = "CorruptForTwoEnchantments", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4215035940] = { "On Corruption, Item gains two Enchantments" }, } }, - ["EssenceAbyssPrefix"] = { type = "Prefix", affix = "Abyssal", "Bears the Mark of the Abyssal Lord", statOrder = { 6450 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, - ["EssenceAbyssSuffix"] = { type = "Suffix", affix = "of the Abyss", "Bears the Mark of the Abyssal Lord", statOrder = { 6450 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, - ["EssenceBreach"] = { type = "Prefix", affix = "Breachlord's", "+20% to Maximum Quality", statOrder = { 614 }, level = 1, group = "LocalMaximumQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2039822488] = { "+20% to Maximum Quality" }, } }, - ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(8-11)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(12-15)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(16-19)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-23)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(24-27)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(28-31)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(32-35)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-15)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(16-20)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(21-25)% increased Flask Mana Recovery rate" }, } }, - ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(35-38)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(39-42)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(43-46)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(47-50)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-55)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(56-60)% chance to Avoid being Shocked" }, } }, - ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (51-100) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (101-150) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (151-200) Physical Damage to Melee Attackers" }, } }, - ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(39-42)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(43-46)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(47-50)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(51-55)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(56-60)% chance to Avoid being Frozen" }, } }, - ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 837 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-2)% Chance to Block" }, } }, - ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 837 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } }, - ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 837 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(5-6)% Chance to Block" }, } }, - ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 837 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(7-8)% Chance to Block" }, } }, - ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2195 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1600 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(43-46)% chance to Avoid being Ignited" }, } }, - ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1600 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(47-50)% chance to Avoid being Ignited" }, } }, - ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1600 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-55)% chance to Avoid being Ignited" }, } }, - ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1600 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(56-60)% chance to Avoid being Ignited" }, } }, - ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 8, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(1-2)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 19, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(3-4)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 30, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(5-6)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 55, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(7-8)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 70, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(9-10)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 81, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(11-12)% chance to Block Projectile Attack Damage" }, } }, - ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1955 }, level = 42, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 1955 }, level = 58, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "6% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 1955 }, level = 74, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "8% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1955 }, level = 82, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 1951 }, level = 42, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(3-4)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 1951 }, level = 58, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(5-6)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 1951 }, level = 74, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(7-8)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1951 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(9-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+1 to Weapon Range", statOrder = { 2505 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+1 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+2 to Weapon Range", statOrder = { 2505 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+3 to Weapon Range", statOrder = { 2505 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+3 to Weapon Range" }, } }, - ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1517 }, level = 11, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(5-15) Life gained when you Block" }, } }, - ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1517 }, level = 22, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(16-25) Life gained when you Block" }, } }, - ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1517 }, level = 36, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(26-40) Life gained when you Block" }, } }, - ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1517 }, level = 48, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(41-60) Life gained when you Block" }, } }, - ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1517 }, level = 60, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(61-85) Life gained when you Block" }, } }, - ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1517 }, level = 75, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(86-100) Life gained when you Block" }, } }, - ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1518 }, level = 15, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(4-12) Mana gained when you Block" }, } }, - ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1518 }, level = 32, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(13-21) Mana gained when you Block" }, } }, - ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1518 }, level = 58, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(22-30) Mana gained when you Block" }, } }, - ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1518 }, level = 75, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(31-39) Mana gained when you Block" }, } }, - ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2598 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1842038569] = { "(20-40)% increased Fishing Line Strength" }, } }, - ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2599 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1550221644] = { "(15-30)% reduced Fishing Pool Consumption" }, } }, - ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2600 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3360430812] = { "Rhoa Feather Lure" }, } }, - ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2601 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2054162825] = { "Karui Stone Hook" }, } }, - ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2602 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [170497091] = { "(30-50)% increased Fishing Range" }, } }, - ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2603 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3802667447] = { "(15-20)% increased Quantity of Fish Caught" }, } }, - ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2604 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3310914132] = { "(25-40)% increased Rarity of Fish Caught" }, } }, - ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3006 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, - ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 875 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 875 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 875 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(31-34)% increased Chaos Damage" }, } }, - ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "Leech Life 150% faster", statOrder = { 1894 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life 150% faster" }, } }, - ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2724 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (6-10)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2724 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2724 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2724 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2724 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 2724 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (9-10)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 2724 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (11-12)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 2724 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (13-14)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 2724 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (15-16)% Lightning Resistance" }, } }, - ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2722 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (6-10)% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 2722 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 2722 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 2722 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 2722 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 2722 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 2722 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (7-8)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 2722 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (9-10)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 2722 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (11-12)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 2722 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (13-14)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 2722 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (15-16)% Fire Resistance" }, } }, - ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2723 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (6-10)% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 2723 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 3% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 2723 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 2723 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 2723 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 2723 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 2723 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 2723 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-6)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 2723 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (7-8)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 2723 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (9-10)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 2723 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (11-12)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 2723 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (13-14)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 2723 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (15-16)% Cold Resistance" }, } }, - ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, - ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 15, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(3-4)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 45, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-6)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 70, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-8)% increased Attack and Cast Speed" }, } }, - ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "Leeches (0.5-0.7)% of Physical Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.5-0.7)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "Leeches (0.6-0.8)% of Physical Damage as Life", statOrder = { 1038 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.6-0.8)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "Leeches (0.7-0.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.7-0.9)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "Leeches (0.8-1)% of Physical Damage as Life", statOrder = { 1038 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.8-1)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "Leeches (0.9-1.1)% of Physical Damage as Life", statOrder = { 1038 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.9-1.1)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "Leeches (1-1.2)% of Physical Damage as Life", statOrder = { 1038 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (1-1.2)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "Leeches (1.1-1.3)% of Physical Damage as Life", statOrder = { 1038 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (1.1-1.3)% of Physical Damage as Life" }, } }, - ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1155 }, level = 4, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, } }, - ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1155 }, level = 15, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(9-16)% increased Attack Damage" }, } }, - ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1155 }, level = 30, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-24)% increased Attack Damage" }, } }, - ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1155 }, level = 60, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(25-29)% increased Attack Damage" }, } }, - ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1155 }, level = 81, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(30-34)% increased Attack Damage" }, } }, - ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2358 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(21-25)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2358 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(26-30)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2358 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(31-35)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2358 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(36-45)% increased Totem Placement speed" }, } }, - ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(11-13)% chance to Avoid being Stunned" }, } }, - ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(14-16)% chance to Avoid being Stunned" }, } }, - ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(17-19)% chance to Avoid being Stunned" }, } }, - ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-22)% chance to Avoid being Stunned" }, } }, - ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 58, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(23-26)% chance to Avoid being Stunned" }, } }, - ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 74, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-30)% chance to Avoid being Stunned" }, } }, - ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 82, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(31-44)% chance to Avoid being Stunned" }, } }, - ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 2981 }, level = 58, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(31-39)% increased Stun Threshold" }, } }, - ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 2981 }, level = 74, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(40-45)% increased Stun Threshold" }, } }, - ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 2981 }, level = 82, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(46-60)% increased Stun Threshold" }, } }, - ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1304 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (3-4) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrder = { 1304 }, level = 11, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (6-8) to (12-14) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-12) to (19-23) Fire Damage to Spells", statOrder = { 1304 }, level = 18, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-12) to (19-23) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrder = { 1304 }, level = 26, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-18) to (27-31) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (19-25) to (37-44) Fire Damage to Spells", statOrder = { 1304 }, level = 33, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-25) to (37-44) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (26-33) to (48-57) Fire Damage to Spells", statOrder = { 1304 }, level = 42, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (26-33) to (48-57) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (34-42) to (64-73) Fire Damage to Spells", statOrder = { 1304 }, level = 51, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (34-42) to (64-73) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (43-52) to (79-91) Fire Damage to Spells", statOrder = { 1304 }, level = 62, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (43-52) to (79-91) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (53-66) to (98-115) Fire Damage to Spells", statOrder = { 1304 }, level = 74, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (53-66) to (98-115) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds 67 to (80-90) Fire Damage to Spells", statOrder = { 1304 }, level = 82, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds 67 to (80-90) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 1 to (2-3) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrder = { 1305 }, level = 11, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (5-7) to (10-12) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrder = { 1305 }, level = 18, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (16-18) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrder = { 1305 }, level = 26, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-15) to (22-25) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (16-20) to (30-36) Cold Damage to Spells", statOrder = { 1305 }, level = 33, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-20) to (30-36) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (21-26) to (40-46) Cold Damage to Spells", statOrder = { 1305 }, level = 42, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-26) to (40-46) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (27-35) to (51-60) Cold Damage to Spells", statOrder = { 1305 }, level = 51, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (27-35) to (51-60) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (36-43) to (64-75) Cold Damage to Spells", statOrder = { 1305 }, level = 62, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (36-43) to (64-75) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (44-54) to (81-93) Cold Damage to Spells", statOrder = { 1305 }, level = 74, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (44-54) to (81-93) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1305 }, level = 82, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (35-45) to (66-74) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1306 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (4-5) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrder = { 1306 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (21-22) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (33-35) Lightning Damage to Spells", statOrder = { 1306 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (33-35) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-48) Lightning Damage to Spells", statOrder = { 1306 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (46-48) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (49-68) Lightning Damage to Spells", statOrder = { 1306 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (49-68) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (69-88) Lightning Damage to Spells", statOrder = { 1306 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (69-88) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (89-115) Lightning Damage to Spells", statOrder = { 1306 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-9) to (89-115) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (116-144) Lightning Damage to Spells", statOrder = { 1306 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (116-144) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (145-179) Lightning Damage to Spells", statOrder = { 1306 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-14) to (145-179) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1306 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (134-144) Lightning Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrder = { 1304 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (4-5) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrder = { 1304 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (8-11) to (17-19) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-29) Fire Damage to Spells", statOrder = { 1304 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-17) to (26-29) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-23) to (36-42) Fire Damage to Spells", statOrder = { 1304 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-23) to (36-42) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1304 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-33) to (50-59) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (34-44) to (65-76) Fire Damage to Spells", statOrder = { 1304 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (34-44) to (65-76) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (45-56) to (85-99) Fire Damage to Spells", statOrder = { 1304 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (45-56) to (85-99) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (57-70) to (107-123) Fire Damage to Spells", statOrder = { 1304 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (57-70) to (107-123) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (71-88) to (132-155) Fire Damage to Spells", statOrder = { 1304 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (71-88) to (132-155) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1304 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (67-81) to (120-135) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (1-2) to (3-4) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrder = { 1305 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (15-18) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-15) to (23-28) Cold Damage to Spells", statOrder = { 1305 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (12-15) to (23-28) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrder = { 1305 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-22) to (33-38) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (24-30) to (45-53) Cold Damage to Spells", statOrder = { 1305 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (24-30) to (45-53) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-40) to (59-69) Cold Damage to Spells", statOrder = { 1305 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (32-40) to (59-69) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (42-52) to (77-90) Cold Damage to Spells", statOrder = { 1305 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (42-52) to (77-90) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (54-64) to (96-113) Cold Damage to Spells", statOrder = { 1305 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (54-64) to (96-113) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (66-82) to (120-140) Cold Damage to Spells", statOrder = { 1305 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (66-82) to (120-140) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1305 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (57-66) to (100-111) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrder = { 1306 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (6-7) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrder = { 1306 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (32-34) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrder = { 1306 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (49-52) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (69-73) Lightning Damage to Spells", statOrder = { 1306 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (69-73) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-8) to (97-102) Lightning Damage to Spells", statOrder = { 1306 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (97-102) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrder = { 1306 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-10) to (126-133) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-12) to (164-173) Lightning Damage to Spells", statOrder = { 1306 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-12) to (164-173) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-17) to (204-216) Lightning Damage to Spells", statOrder = { 1306 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-17) to (204-216) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-20) to (255-270) Lightning Damage to Spells", statOrder = { 1306 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (7-20) to (255-270) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrder = { 1306 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (6-16) to (201-216) Lightning Damage to Spells" }, } }, - ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos damage", statOrder = { 1290 }, level = 83, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (56-87) to (105-160) Chaos damage" }, } }, - ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos damage", statOrder = { 1290 }, level = 62, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (37-59) to (79-103) Chaos damage" }, } }, - ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos damage", statOrder = { 1290 }, level = 74, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-67) to (89-113) Chaos damage" }, } }, - ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos damage", statOrder = { 1290 }, level = 82, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (53-79) to (101-131) Chaos damage" }, } }, - ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos damage", statOrder = { 1290 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (98-149) to (183-280) Chaos damage" }, } }, - ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos damage", statOrder = { 1290 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (61-103) to (149-193) Chaos damage" }, } }, - ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos damage", statOrder = { 1290 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (73-113) to (163-205) Chaos damage" }, } }, - ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos damage", statOrder = { 1290 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (89-131) to (181-229) Chaos damage" }, } }, - ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 3071 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1287 }, level = 62, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (11-15) to (27-33) Chaos Damage to Attacks" }, } }, - ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1287 }, level = 74, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (17-21) to (37-43) Chaos Damage to Attacks" }, } }, - ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1287 }, level = 82, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (23-37) to (49-61) Chaos Damage to Attacks" }, } }, - ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 2894 }, level = 30, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, } }, - ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 2894 }, level = 60, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, } }, - ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 875, 2894 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } }, - ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 413 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "skill", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1289910726] = { "Socketed Gems deal 175 to 225 Added Fire Damage" }, } }, - ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 407 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 20% more Attack and Cast Speed" }, } }, - ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 407 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 16% more Attack and Cast Speed" }, } }, - ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 410 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "skill", "damage", "elemental", "gem" }, tradeHashes = { [3835899275] = { "Socketed Gems deal 30% more Elemental Damage" }, } }, - ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 3980 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [3859593448] = { "5% reduced Elemental Damage Taken while stationary" }, } }, - ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2204 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1672 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, - ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1672 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 15% of Physical Damage as Extra Fire Damage" }, } }, - ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1693 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [3762784591] = { "25% reduced Chaos Damage taken over time" }, } }, - ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Hit Chance", statOrder = { 399 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1681904129] = { "Socketed Gems have +3.5% Critical Hit Chance" }, } }, - ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 3917 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "flask", "attack", "caster", "speed" }, tradeHashes = { [614350381] = { "10% increased Attack and Cast Speed during any Flask Effect" }, } }, - ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 2903 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "10% increased Movement Speed during any Flask Effect" }, } }, - ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 3916 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "4 to 7 Added Cold Damage per Frenzy Charge" }, } }, - ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 3916 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "8 to 12 Added Cold Damage per Frenzy Charge" }, } }, - ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 3918 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3623716321] = { "Adds 60 to 100 Fire Damage if you've Blocked Recently" }, } }, - ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 409 }, level = 63, group = "DisplaySupportedSkillsDealDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1235873320] = { "Socketed Gems deal 30% more Damage while on Low Life" }, } }, - ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrder = { 3910 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "flask", "damage", "elemental" }, tradeHashes = { [3392890360] = { "Damage Penetrates 5% Elemental Resistances during any Flask Effect" }, } }, - ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 3911 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "physical" }, tradeHashes = { [2693266036] = { "5% additional Physical Damage Reduction during any Flask Effect" }, } }, - ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 9673 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 40% reduced Reflected Damage" }, } }, - ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 3913 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "power_charge" }, tradeHashes = { [3945147290] = { "25% chance to gain a Power Charge when you Block" }, } }, - ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrder = { 3914 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [583277599] = { "Chill Nearby Enemies when you Block" }, } }, - ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of maximum Mana when you use a Skill", statOrder = { 3162 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [308309328] = { "10% chance to Recover 10% of maximum Mana when you use a Skill" }, } }, - ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 8800 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335507772] = { "+3 to maximum Fortification" }, } }, - ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5483 }, level = 63, group = "CrushOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2228892313] = { "(15-25)% chance to Crush on Hit" }, } }, - ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6719 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2989883253] = { "Gain Alchemist's Genius when you use a Flask" }, } }, - ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3291 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "16% chance to gain a Power, Frenzy, or Endurance Charge on kill" }, } }, - ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrder = { 443 }, level = 63, group = "SocketedGemsNonCurseAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "aura", "gem" }, tradeHashes = { [223595318] = { "Socketed Non-Curse Aura Gems have 20% increased Aura Effect" }, } }, - ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrder = { 140 }, level = 63, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Cast Level 20 Fire Burst on Hit", statOrder = { 563 }, level = 63, group = "FireBurstOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack" }, tradeHashes = { [1621470436] = { "Cast Level 20 Fire Burst on Hit" }, } }, - ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits", statOrder = { 544, 544.1 }, level = 63, group = "GrantsEssenceMinion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [470688636] = { "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits" }, } }, - ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Area of Effect", statOrder = { 1628 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [280731498] = { "25% increased Area of Effect" }, } }, - ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6800 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3049760680] = { "Gain Onslaught for 3 seconds when Hit" }, } }, - ["OnslaughtWhenHitNewEssence1"] = { type = "Suffix", affix = "of the Essence", "You gain Onslaught for 6 seconds when Hit", statOrder = { 2581 }, level = 63, group = "OnslaughtWhenHitForDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2764164760] = { "You gain Onslaught for 6 seconds when Hit" }, } }, - ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrder = { 441 }, level = 63, group = "SupportDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "damage", "gem" }, tradeHashes = { [3846088475] = { "Socketed Gems deal 30% more Damage over Time" }, } }, - ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Curse Magnitudes", statOrder = { 2374 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "5% increased Curse Magnitudes" }, } }, - ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Curse Magnitudes", statOrder = { 2374 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Curse Magnitudes" }, } }, - ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [712554801] = { "25% increased Effect of your Mark Skills" }, } }, - ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 6070 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3322709337] = { "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds" }, } }, - ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 9137 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1521863824] = { "12% increased Movement speed while on Burning, Chilled or Shocked ground" }, } }, - ["ManaRegenerationWhileShockedEssence1"] = { type = "Suffix", affix = "of the Essence", "70% increased Mana Regeneration Rate while Shocked", statOrder = { 2286 }, level = 63, group = "ManaRegenerationWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2076519255] = { "70% increased Mana Regeneration Rate while Shocked" }, } }, - ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 7964 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [3041288981] = { "Recover 5% of your maximum Mana when you Block" }, } }, - ["BleedDuration1"] = { type = "Suffix", affix = "", "(8-12)% increased Bleeding Duration", statOrder = { 4649 }, level = 30, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(8-12)% increased Bleeding Duration" }, } }, - ["BleedDuration2"] = { type = "Suffix", affix = "", "(13-18)% increased Bleeding Duration", statOrder = { 4649 }, level = 60, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(13-18)% increased Bleeding Duration" }, } }, - ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 511 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } }, - ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 507 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } }, - ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 530 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, - ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 512 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1204 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "dot_multi", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-15)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1204 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "dot_multi", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-20)% to Chaos Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1201 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-15)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1201 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-20)% to Cold Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1198 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-15)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1198 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-20)% to Fire Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1196 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-15)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1196 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-20)% to Physical Damage over Time Multiplier" }, } }, - ["EssenceIncreasedLifePercent1"] = { type = "Prefix", affix = "Essences", "(8-10)% increased maximum Life", statOrder = { 888 }, level = 72, group = "MaximumLifeIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } }, - ["EssenceIncreasedManaPercent1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Mana", statOrder = { 893 }, level = 72, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, } }, - ["EssenceGlobalDefences1"] = { type = "Prefix", affix = "Essences", "(20-30)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2586 }, level = 72, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1177404658] = { "(20-30)% increased Global Armour, Evasion and Energy Shield" }, } }, - ["EssenceDamageasExtraPhysical1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Physical Damage", statOrder = { 1669 }, level = 72, group = "DamageasExtraPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (15-20)% of Damage as Extra Physical Damage" }, } }, - ["EssenceDamageasExtraPhysical2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Physical Damage", statOrder = { 1669 }, level = 72, group = "DamageasExtraPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (25-33)% of Damage as Extra Physical Damage" }, } }, - ["EssenceDamageasExtraFire1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 72, group = "DamageasExtraFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (15-20)% of Damage as Extra Fire Damage" }, } }, - ["EssenceDamageasExtraFire2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 72, group = "DamageasExtraFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-33)% of Damage as Extra Fire Damage" }, } }, - ["EssenceDamageasExtraCold1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 72, group = "DamageasExtraCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (15-20)% of Damage as Extra Cold Damage" }, } }, - ["EssenceDamageasExtraCold2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 72, group = "DamageasExtraCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (25-33)% of Damage as Extra Cold Damage" }, } }, - ["EssenceDamageasExtraLightning1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 72, group = "DamageasExtraLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (15-20)% of Damage as Extra Lightning Damage" }, } }, - ["EssenceDamageasExtraLightning2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 72, group = "DamageasExtraLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (25-33)% of Damage as Extra Lightning Damage" }, } }, - ["EssenceFireRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Fire Damage taken Recouped as Life", statOrder = { 6552 }, level = 72, group = "EssenceFireRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(26-30)% of Fire Damage taken Recouped as Life" }, } }, - ["EssenceColdRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Cold Damage taken Recouped as Life", statOrder = { 5675 }, level = 72, group = "EssenceColdRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(26-30)% of Cold Damage taken Recouped as Life" }, } }, - ["EssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7526 }, level = 72, group = "EssenceLightningRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(26-30)% of Lightning Damage taken Recouped as Life" }, } }, - ["EssencePhysicalDamageTakenAsChaos1"] = { type = "Prefix", affix = "Essences", "(10-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2210 }, level = 72, group = "PhysicalDamageTakenAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(10-15)% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["EssenceAttackSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of all Attack Skills", statOrder = { 966 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+2 to Level of all Attack Skills" }, } }, - ["EssenceAttackSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Attack Skills", statOrder = { 966 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+3 to Level of all Attack Skills" }, } }, - ["EssenceSpellSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Spell Skills", statOrder = { 949 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["EssenceSpellSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+5 to Level of all Spell Skills", statOrder = { 949 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+5 to Level of all Spell Skills" }, } }, - ["EssenceOnslaughtonKill1"] = { type = "Suffix", affix = "of the Essence", "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon", statOrder = { 7614 }, level = 72, group = "EssenceOnslaughtonKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1881230714] = { "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon" }, } }, - ["EssenceManaCostReduction"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-20)% increased Mana Cost Efficiency" }, } }, - ["EssenceManaCostReduction2H"] = { type = "Suffix", affix = "of the Essence", "(28-32)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(28-32)% increased Mana Cost Efficiency" }, } }, - ["EssencePercentStrength1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Strength", statOrder = { 998 }, level = 72, group = "PercentageStrength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(7-10)% increased Strength" }, } }, - ["EssencePercentDexterity1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Dexterity", statOrder = { 999 }, level = 72, group = "PercentageDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(7-10)% increased Dexterity" }, } }, - ["EssencePercentIntelligence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Intelligence", statOrder = { 1000 }, level = 72, group = "PercentageIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(7-10)% increased Intelligence" }, } }, - ["EssenceReducedCriticalDamageAgainstYou1"] = { type = "Suffix", affix = "of the Essence", "Hits against you have (40-50)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 72, group = "EssenceReducedCriticalDamageAgainstYou", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3855016469] = { "Hits against you have (40-50)% reduced Critical Damage Bonus" }, } }, - ["EssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 72, group = "EssenceGoldDropped", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["EssenceAuraEffect1"] = { type = "Suffix", affix = "of the Essence", "Aura Skills have (15-20)% increased Magnitudes", statOrder = { 2572 }, level = 72, group = "EssenceAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [315791320] = { "Aura Skills have (15-20)% increased Magnitudes" }, } }, - ["GenesisTreeAmuletColdDamageAsPortionOfDamageCrafted"] = { type = "Prefix", affix = "Tul's", "Gain (10-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1673 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [758893621] = { "Gain (10-20)% of Physical Damage as Extra Cold Damage" }, } }, - ["GenesisTreeAmuletAnaemiaOnHitCrafted"] = { type = "Prefix", affix = "Uul-Netol's", "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", statOrder = { 4314, 4314.1 }, level = 1, group = "AnaemiaOnHit", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "physical" }, tradeHashes = { [971590056] = { "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies" }, } }, - ["GenesisTreeFireSpellBaseCriticalChanceCrafted"] = { type = "Suffix", affix = "of Xoph", "+(4-5)% to Fire Spell Critical Hit Chance", statOrder = { 6567 }, level = 1, group = "FireSpellBaseCriticalChance", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "caster_critical", "elemental", "fire", "caster", "critical" }, tradeHashes = { [3399401168] = { "+(4-5)% to Fire Spell Critical Hit Chance" }, } }, - ["GenesisTreeAdditionalMaximumSealsCrafted"] = { type = "Suffix", affix = "of Esh", "Sealed Skills have +1 to maximum Seals", statOrder = { 4715 }, level = 1, group = "AdditionalMaximumSeals", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4147510958] = { "Sealed Skills have +1 to maximum Seals" }, } }, - ["GenesisTreeBeltMinionAdditionalProjectileChanceCrafted"] = { type = "Suffix", affix = "of Scattering", "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", statOrder = { 8984 }, level = 1, group = "MinionAdditionalProjectileChance", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1797815732] = { "Minions have +(50-100)% Surpassing chance to fire an additional Projectile" }, } }, - ["GenesisTreeRingMaximumElementalInfusionCrafted"] = { type = "Suffix", affix = "of Amplification", "+1 to maximum number of Elemental Infusions", statOrder = { 8840 }, level = 1, group = "MaximumElementalInfusion", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, - ["GenesisTreeBeltSealGainFrequencyCrafted"] = { type = "Suffix", affix = "of Expectation", "Sealed Skills have (21-35)% increased Seal gain frequency", statOrder = { 9759 }, level = 1, group = "SealGainFrequency", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3384867265] = { "Sealed Skills have (21-35)% increased Seal gain frequency" }, } }, - ["GenesisTreeRingOfferingEffectCrafted"] = { type = "Prefix", affix = "Sacrificial", "Offering Skills have (16-23)% increased Buff effect", statOrder = { 3717 }, level = 1, group = "OfferingEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "Offering Skills have (16-23)% increased Buff effect" }, } }, - ["GenesisTreeRingTemporaryMinionLimitCrafted"] = { type = "Suffix", affix = "of Multitudes", "Temporary Minion Skills have +1 to Limit of Minions summoned", statOrder = { 10206 }, level = 1, group = "TemporaryMinionLimit", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +1 to Limit of Minions summoned" }, } }, - ["GenesisTreeRingMinionArmourBreakCrafted"] = { type = "Prefix", affix = "Scratching", "Minions Break Armour equal to (2-4)% of Physical damage dealt", statOrder = { 8965 }, level = 1, group = "MinionArmourBreak", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [195270549] = { "Minions Break Armour equal to (2-4)% of Physical damage dealt" }, } }, - ["GenesisTreeRingMinionAilmentMagnitudeCrafted"] = { type = "Prefix", affix = "Contaminating", "Minions have (35-45)% increased Magnitude of Damaging Ailments", statOrder = { 8977 }, level = 1, group = "MinionDamagingAilments", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (35-45)% increased Magnitude of Damaging Ailments" }, } }, - ["GenesisTreeRingCommandSkillSpeedCrafted"] = { type = "Suffix", affix = "of Punctuality", "Minions have (20-30)% increased Skill Speed with Command Skills", statOrder = { 8990 }, level = 1, group = "MinionCommandSkillSpeed", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [73032170] = { "Minions have (20-30)% increased Skill Speed with Command Skills" }, } }, - ["GenesisTreeRingMinionCooldownRecoveryCrafted"] = { type = "Suffix", affix = "of Invigoration", "Minions have (21-29)% increased Cooldown Recovery Rate", statOrder = { 8994 }, level = 1, group = "MinionCooldownRecoveryRate", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have (21-29)% increased Cooldown Recovery Rate" }, } }, - ["GenesisTreeRingSpellDamageAsExtraLightningCrafted"] = { type = "Prefix", affix = "Storm Chaser's", "Gain (8-12)% of Damage as Extra Lightning Damage with Spells", statOrder = { 869 }, level = 1, group = "SpellDamageGainedAsLightning", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [323800555] = { "Gain (8-12)% of Damage as Extra Lightning Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraFireCrafted"] = { type = "Prefix", affix = "Fire Breather's", "Gain (8-12)% of Damage as Extra Fire Damage with Spells", statOrder = { 863 }, level = 1, group = "SpellDamageGainedAsFire", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1321054058] = { "Gain (8-12)% of Damage as Extra Fire Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraColdCrafted"] = { type = "Prefix", affix = "Tempest Rider's", "Gain (8-12)% of Damage as Extra Cold Damage with Spells", statOrder = { 867 }, level = 1, group = "SpellDamageGainedAsCold", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [825116955] = { "Gain (8-12)% of Damage as Extra Cold Damage with Spells" }, } }, - ["GenesisTreeRingSpellDamageAsExtraChaosCrafted"] = { type = "Prefix", affix = "Soul Stealer's", "Spells Gain (8-12)% of Damage as extra Chaos Damage", statOrder = { 9201 }, level = 1, group = "SpellDamageGainedAsChaos", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "chaos_warband", "damage" }, tradeHashes = { [555706343] = { "Spells Gain (8-12)% of Damage as extra Chaos Damage" }, } }, - ["GenesisTreeRingDamageTakenFromManaBeforeLifeCrafted"] = { type = "Prefix", affix = "Burdensome", "(8-12)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(8-12)% of Damage is taken from Mana before Life" }, } }, - ["GenesisTreeRingExposureEffectCrafted"] = { type = "Suffix", affix = "of Drenching", "(25-35)% increased Exposure Effect", statOrder = { 6510 }, level = 1, group = "ElementalExposureEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(25-35)% increased Exposure Effect" }, } }, - ["GenesisTreeRingMaximumInvocationEnergyCrafted"] = { type = "Suffix", affix = "of Vastness", "Invocated skills have (25-35)% increased Maximum Energy", statOrder = { 7361 }, level = 1, group = "InvocationMaximumEnergy", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1615901249] = { "Invocated skills have (25-35)% increased Maximum Energy" }, } }, - ["GenesisTreeRingSpellImpaleEffectCrafted"] = { type = "Suffix", affix = "of Lancing", "(20-30)% increased Magnitude of Impales inflicted with Spells", statOrder = { 9986 }, level = 1, group = "SpellImpaleEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "physical", "caster" }, tradeHashes = { [4259875040] = { "(20-30)% increased Magnitude of Impales inflicted with Spells" }, } }, - ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Erupting", "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", statOrder = { 6538 }, level = 1, group = "FireDamageIfFireInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3858572996] = { "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Energising", "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", statOrder = { 7518 }, level = 1, group = "LightningDamageIfLightningInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [797289402] = { "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Glacial", "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", statOrder = { 5661 }, level = 1, group = "ColdDamageIfColdInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [1002535626] = { "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds" }, } }, - ["GenesisTreeBeltArchonEffectCrafted"] = { type = "Prefix", affix = "Unshackling", "(20-39)% increased effect of Archon Buffs on you", statOrder = { 4335 }, level = 1, group = "ArchonEffect", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1180552088] = { "(20-39)% increased effect of Archon Buffs on you" }, } }, - ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6SecondsCrafted"] = { type = "Suffix", affix = "of Reverberation", "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", statOrder = { 5551 }, level = 1, group = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2150661403] = { "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds" }, } }, - ["GenesisTreeBeltSpellElementalAilmentMagnitudeCrafted"] = { type = "Suffix", affix = "of Imbuing", "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", statOrder = { 9984 }, level = 1, group = "SpellElementalAilmentMagnitude", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "caster" }, tradeHashes = { [3621874554] = { "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells" }, } }, - ["GenesisTreeBeltArchonDurationCrafted"] = { type = "Suffix", affix = "of Exertion", "(40-50)% increased Archon Buff duration", statOrder = { 4334 }, level = 1, group = "ArchonDuration", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(40-50)% increased Archon Buff duration" }, } }, - ["GenesisTreeBeltArchonUndeathOnOfferingUseCrafted"] = { type = "Suffix", affix = "of Unending", "(35-50)% to gain Archon of Undeath when you create an Offering", statOrder = { 5388 }, level = 1, group = "ArchonUndeathOnOfferingUse", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [933355817] = { "(35-50)% to gain Archon of Undeath when you create an Offering" }, } }, - ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15SecondsCrafted"] = { type = "Prefix", affix = "Instructor's", "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", statOrder = { 8999 }, level = 1, group = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3526763442] = { "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds" }, } }, - ["GenesisTreeBeltMinionsGiganticRevivedRecentlyCrafted"] = { type = "Prefix", affix = "Monstrous", "Your Minions are Gigantic if they have Revived Recently", statOrder = { 9061 }, level = 1, group = "MinionsGiganticRevivedRecently", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1265767008] = { "Your Minions are Gigantic if they have Revived Recently" }, } }, - ["GenesisTreeBeltDamageRemovedFromSpectresCrafted"] = { type = "Prefix", affix = "Underling's", "5% of Damage from Hits is taken from your Spectres' Life before you", statOrder = { 6022 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [54812069] = { "5% of Damage from Hits is taken from your Spectres' Life before you" }, } }, - ["GenesisTreeBeltMinionReservationEfficiencyCrafted"] = { type = "Suffix", affix = "of Coherence", "(7-10)% increased Reservation Efficiency of Minion Skills", statOrder = { 9726 }, level = 1, group = "MinionReservationEfficiency", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1805633363] = { "(7-10)% increased Reservation Efficiency of Minion Skills" }, } }, - ["GenesisTreeBeltMinionMeleeSplashCrafted"] = { type = "Suffix", affix = "of Ravaging", "Supported Minions' Strikes have Melee Splash", statOrder = { 9032 }, level = 1, group = "MinionMeleeSplash", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Supported Minions' Strikes have Melee Splash" }, } }, - ["GenesisTreeBeltMinionDurationCrafted"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4716 }, level = 1, group = "MinionDuration", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(35-49)% increased Minion Duration" }, } }, - ["AlloyMaximumRunicWard1"] = { type = "Prefix", affix = "Verisium", "+(37-49) to maximum Runic Ward", statOrder = { 889 }, level = 13, group = "GlobalMaximumRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(37-49) to maximum Runic Ward" }, } }, - ["AlloyRunicWardRechargeRate1"] = { type = "Prefix", affix = "Verisium", "(15-20)% increased Runic Ward Regeneration Rate", statOrder = { 10478 }, level = 13, group = "WardRegenerationRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(15-20)% increased Runic Ward Regeneration Rate" }, } }, - ["AlloyMaximumRunicWardPercent1"] = { type = "Prefix", affix = "Verisium", "(6-10)% increased maximum Runic Ward", statOrder = { 890 }, level = 13, group = "GlobalRunicWardPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [4273473110] = { "(6-10)% increased maximum Runic Ward" }, } }, - ["AlloyRunicWardOnBlock1"] = { type = "Suffix", affix = "of the Stars", "Recover (10-15) Runic Ward when you Block", statOrder = { 9641 }, level = 13, group = "WardOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1568848828] = { "Recover (10-15) Runic Ward when you Block" }, } }, - ["AlloyDamageAsExtraFireWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward", statOrder = { 9210 }, level = 25, group = "DamageGainedAsFireWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [589361270] = { "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward" }, } }, - ["AlloyDamageAsExtraFireTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward", statOrder = { 9210 }, level = 25, group = "DamageGainedAsFireWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [589361270] = { "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward" }, } }, - ["AlloyAttackSpeedIfMissingWardRecently1"] = { type = "Suffix", affix = "of the Stars", "(10-15)% increased Attack Speed while missing Runic Ward", statOrder = { 4548 }, level = 25, group = "AttackSpeedWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [325171970] = { "(10-15)% increased Attack Speed while missing Runic Ward" }, } }, - ["AlloyRecoverRunicWardOnCharmUse1"] = { type = "Prefix", affix = "Verisium", "Recover (32-45) Runic Ward when a Charm is used", statOrder = { 9642 }, level = 25, group = "RecoverRunicWardOnCharmUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [554145967] = { "Recover (32-45) Runic Ward when a Charm is used" }, } }, - ["AlloyLocalWardIncreasePercent1"] = { type = "Prefix", affix = "Verisium", "(24-30)% increased Runic Ward", statOrder = { 854 }, level = 25, group = "LocalRunicWardIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [830161081] = { "(24-30)% increased Runic Ward" }, } }, - ["AlloyLocalWardIncreasePercent2"] = { type = "Prefix", affix = "Verisium", "(31-40)% increased Runic Ward", statOrder = { 854 }, level = 65, group = "LocalRunicWardIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [830161081] = { "(31-40)% increased Runic Ward" }, } }, - ["AlloyMaximumRunicWardWeapon1"] = { type = "Suffix", affix = "of the Stars", "+(51-74) to maximum Runic Ward", statOrder = { 889 }, level = 25, group = "GlobalMaximumRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(51-74) to maximum Runic Ward" }, } }, - ["AlloyRemnantPickupRange1"] = { type = "Suffix", affix = "of the Stars", "Remnants can be collected from (35-50)% further away", statOrder = { 9697 }, level = 25, group = "RemnantPickupRadiusIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (35-50)% further away" }, } }, - ["AlloyPresenceAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "(35-50)% increased Presence Area of Effect", statOrder = { 1068 }, level = 25, group = "PresenceRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(35-50)% increased Presence Area of Effect" }, } }, - ["AlloyManaCostEfficiency1"] = { type = "Prefix", affix = "Verisium", "(18-29)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 25, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-29)% increased Mana Cost Efficiency" }, } }, - ["AlloyTemporaryMinionSkillLimit1"] = { type = "Suffix", affix = "of the Stars", "Temporary Minion Skills have +(1-2) to Limit of Minions summoned", statOrder = { 10206 }, level = 25, group = "TemporaryMinionLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +(1-2) to Limit of Minions summoned" }, } }, - ["AlloyCastSpeedGloves1"] = { type = "Suffix", affix = "of the Stars", "(9-12)% increased Cast Speed", statOrder = { 986 }, level = 45, group = "IncreasedCastSpeedNoAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, - ["AlloyAttackSpeedRing1"] = { type = "Suffix", affix = "of the Stars", "(7-9)% increased Attack Speed", statOrder = { 984 }, level = 45, group = "IncreasedAttackSpeedNoCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-9)% increased Attack Speed" }, } }, - ["AlloyFlaskChargesPerSecond1"] = { type = "Suffix", affix = "of the Stars", "Flasks gain (0.75-1) charges per Second", statOrder = { 6865 }, level = 45, group = "AllFlaskChargeGeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain (0.75-1) charges per Second" }, } }, - ["AlloyTotemPlacementSpeed1"] = { type = "Suffix", affix = "of the Stars", "(30-49)% increased Totem Placement speed", statOrder = { 2358 }, level = 45, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(30-49)% increased Totem Placement speed" }, } }, - ["AlloyReducedSlowPotency1"] = { type = "Suffix", affix = "of the Stars", "(15-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 45, group = "SlowPotency", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [924253255] = { "(15-30)% reduced Slowing Potency of Debuffs on You" }, } }, - ["AlloySkillEffectDuration1"] = { type = "Suffix", affix = "of the Stars", "(15-19)% increased Skill Effect Duration", statOrder = { 1643 }, level = 45, group = "SkillEffectDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-19)% increased Skill Effect Duration" }, } }, - ["AlloyDamagingAilmentDuration1"] = { type = "Suffix", affix = "of the Stars", "(20-25)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6051 }, level = 45, group = "DamagingAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(20-25)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["AlloyArchonDuration1"] = { type = "Suffix", affix = "of the Stars", "(35-42)% increased Archon Buff duration", statOrder = { 4334 }, level = 45, group = "ArchonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(35-42)% increased Archon Buff duration" }, } }, - ["AlloyElementalPenetration1"] = { type = "Prefix", affix = "of the Stars", "Damage Penetrates (9-15)% Elemental Resistances", statOrder = { 2721 }, level = 45, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-15)% Elemental Resistances" }, } }, - ["AlloyAilmentMagnitude1"] = { type = "Suffix", affix = "of the Stars", "(20-30)% increased Magnitude of Ailments you inflict", statOrder = { 4249 }, level = 45, group = "AilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(20-30)% increased Magnitude of Ailments you inflict" }, } }, - ["AlloyExposureEffect1"] = { type = "Suffix", affix = "of the Stars", "(40-50)% increased Exposure Effect", statOrder = { 6510 }, level = 45, group = "ElementalExposureEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(40-50)% increased Exposure Effect" }, } }, - ["AlloyMinionDamagingAilmentMagnitude1"] = { type = "Suffix", affix = "of the Stars", "Minions have (40-49)% increased Magnitude of Damaging Ailments", statOrder = { 8977 }, level = 45, group = "MinionDamagingAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (40-49)% increased Magnitude of Damaging Ailments" }, } }, - ["AlloySpellAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "Spell Skills have (10-15)% increased Area of Effect", statOrder = { 9950 }, level = 45, group = "SpellAreaOfEffectPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-15)% increased Area of Effect" }, } }, - ["AlloyAttackAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "(10-15)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 45, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(10-15)% increased Area of Effect for Attacks" }, } }, - ["AlloySpiritOnBoots1"] = { type = "Suffix", affix = "of the Stars", "+(10-15) to Spirit", statOrder = { 895 }, level = 45, group = "BaseSpirit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(10-15) to Spirit" }, } }, - ["AlloyChanceToChain1"] = { type = "Suffix", affix = "of the Stars", "(25-35)% chance to Chain an additional time", statOrder = { 7578 }, level = 45, group = "LocalAdditionalChainChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1028592286] = { "(25-35)% chance to Chain an additional time" }, } }, - ["AlloyMaximumElementalInfusions1"] = { type = "Suffix", affix = "of the Stars", "+1 to maximum number of Elemental Infusions", statOrder = { 8840 }, level = 45, group = "MaximumElementalInfusion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, - ["AlloyEffectOfSocketedAugments1"] = { type = "Suffix", affix = "of the Stars", "(20-30)% increased effect of Socketed Augment Items", statOrder = { 177 }, level = 65, group = "LocalSocketItemsEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2081918629] = { "(20-30)% increased effect of Socketed Augment Items" }, } }, - ["AlloyEffectOfResistanceMods1"] = { type = "Prefix", affix = "Verisium", "(20-30)% increased Explicit Resistance Modifier magnitudes", statOrder = { 44 }, level = 65, group = "ArmourEnchantmentHeistResistanceModifierEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1972391381] = { "(20-30)% increased Explicit Resistance Modifier magnitudes" }, } }, - ["AlloySpellLevelManaHybrid1"] = { type = "Prefix", affix = "Verisium", "+(142-188) to maximum Mana", "+1 to Level of all Spell Skills", statOrder = { 891, 949 }, level = 65, group = "ManaSpellLevelHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(142-188) to maximum Mana" }, [124131830] = { "+1 to Level of all Spell Skills" }, } }, - ["AlloyAccuracyAttackSpeedHybrid1"] = { type = "Prefix", affix = "Verisium", "+(327-427) to Accuracy Rating", "(5-8)% increased Attack Speed", statOrder = { 879, 945 }, level = 65, group = "AccuracyAttackSpeedHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [210067635] = { "(5-8)% increased Attack Speed" }, [803737631] = { "+(327-427) to Accuracy Rating" }, } }, - ["AlloyManaNearbyAllyAttackSpeedHybrid1"] = { type = "Prefix", affix = "Verisium", "+(110-114) to maximum Mana", "Allies in your Presence have (4-8)% increased Attack Speed", statOrder = { 891, 917 }, level = 65, group = "ManaNearbyAllyAttackSpeedHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(110-114) to maximum Mana" }, [1998951374] = { "Allies in your Presence have (4-8)% increased Attack Speed" }, } }, - ["AlloyCastSpeedDamageAsExtraColdHybrid1"] = { type = "Suffix", affix = "of the Stars", "(39-47)% increased Cast Speed", "Gain (11-16)% of Elemental Damage as Extra Cold Damage", statOrder = { 986, 9225 }, level = 65, group = "CastSpeedDamageAsExtraColdHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1158842087] = { "Gain (11-16)% of Elemental Damage as Extra Cold Damage" }, [2891184298] = { "(39-47)% increased Cast Speed" }, } }, - ["AlloyAttributeIncreasedLocalPhysicalDamageHybrid1"] = { type = "Suffix", affix = "of the Stars", "(15-20)% increased Physical Damage", "+(7-10) to all Attributes", statOrder = { 829, 1144 }, level = 65, group = "AttributeIncreasedLocalPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2897413282] = { "+(7-10) to all Attributes" }, [1509134228] = { "(15-20)% increased Physical Damage" }, } }, - ["AlloySpiritPresenceAreaOfEffectHybrid1"] = { type = "Suffix", affix = "of the Stars", "(8-12)% increased Spirit", "(50-60)% increased Presence Area of Effect", statOrder = { 856, 1068 }, level = 65, group = "SpiritPresenceAreaOfEffectHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [101878827] = { "(50-60)% increased Presence Area of Effect" }, [3984865854] = { "(8-12)% increased Spirit" }, } }, - ["AlloyNaturesArchon1"] = { type = "Suffix", affix = "of the Stars", "(25-50)% chance to gain Nature's Archon when your Plants Overgrow", statOrder = { 5386 }, level = 65, group = "ChanceToGainNaturesArchon", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3518449420] = { "(25-50)% chance to gain Nature's Archon when your Plants Overgrow" }, } }, - ["AlloyElementalSkillLimit1"] = { type = "Suffix", affix = "of the Stars", "+1 to Limit for Elemental Skills", statOrder = { 6293 }, level = 65, group = "ElementalSkillLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [1713927892] = { "+1 to Limit for Elemental Skills" }, } }, - ["AlloyRetainGlory1"] = { type = "Suffix", affix = "of the Stars", "(60-75)% chance for Skills to retain 40% of Glory on use", statOrder = { 5556 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2749595652] = { "(60-75)% chance for Skills to retain 40% of Glory on use" }, } }, - ["AlloyBellLimit1"] = { type = "Suffix", affix = "of the Stars", "Tempest Bells are destroyed after an additional (4-5) Hits", statOrder = { 4761 }, level = 65, group = "BellHitLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3984146263] = { "Tempest Bells are destroyed after an additional (4-5) Hits" }, } }, - ["AlloyPuppeteerStacks1"] = { type = "Suffix", affix = "of the Stars", "+(4-5) maximum stacks of Puppet Master", statOrder = { 8804 }, level = 65, group = "MaximumPuppeteerStacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1484026495] = { "+(4-5) maximum stacks of Puppet Master" }, } }, - ["AlloyMeleeStrikeRange1"] = { type = "Suffix", affix = "of the Stars", "+(8-10) to Weapon Range", statOrder = { 2505 }, level = 65, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+(8-10) to Weapon Range" }, } }, - ["AlloyBallistaLimit1"] = { type = "Suffix", affix = "of the Stars", "+2 to maximum number of Summoned Ballista Totems", statOrder = { 4165 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1823942939] = { "+2 to maximum number of Summoned Ballista Totems" }, } }, - ["AlloyLightningDamageIgnites1"] = { type = "Suffix", affix = "of the Stars", "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", statOrder = { 7521 }, level = 65, group = "LightningDamageCanIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3121133045] = { "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes" }, } }, - ["AlloyMarkEffect"] = { type = "Suffix", affix = "of the Stars", "(40-50)% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 65, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [712554801] = { "(40-50)% increased Effect of your Mark Skills" }, } }, - ["HandWrapsStrength1"] = { type = "Suffix", affix = "of the Brute", "(7-10)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(7-10)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength2"] = { type = "Suffix", affix = "of the Wrestler", "(11-13)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(11-13)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength3"] = { type = "Suffix", affix = "of the Bear", "(14-16)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(14-16)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength4"] = { type = "Suffix", affix = "of the Lion", "(17-19)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(17-19)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength5"] = { type = "Suffix", affix = "of the Gorilla", "(20-22)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(20-22)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength6"] = { type = "Suffix", affix = "of the Goliath", "(23-25)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(23-25)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength7"] = { type = "Suffix", affix = "of the Leviathan", "(26-28)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(26-28)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsStrength8"] = { type = "Suffix", affix = "of the Titan", "(29-32)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(29-32)% increased Area of Effect for Attacks" }, } }, - ["HandWrapsDexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(15-18)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(15-18)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(19-22)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(19-22)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity3"] = { type = "Suffix", affix = "of the Fox", "+(23-26)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(23-26)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(27-30)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(27-30)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity5"] = { type = "Suffix", affix = "of the Panther", "+(31-35)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(31-35)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(36-40)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(36-40)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(41-45)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(41-45)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(46-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(46-50)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsDexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-60)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(51-60)% Surpassing chance to fire an additional Projectile" }, } }, - ["HandWrapsIntelligence1"] = { type = "Suffix", affix = "of the Pupil", "(5-8)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(5-8)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence2"] = { type = "Suffix", affix = "of the Student", "(9-12)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(9-12)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence3"] = { type = "Suffix", affix = "of the Prodigy", "(13-16)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(13-16)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence4"] = { type = "Suffix", affix = "of the Augur", "(17-20)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(17-20)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence5"] = { type = "Suffix", affix = "of the Philosopher", "(21-24)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(21-24)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence6"] = { type = "Suffix", affix = "of the Sage", "(25-28)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(25-28)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence7"] = { type = "Suffix", affix = "of the Savant", "(29-32)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(29-32)% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsIntelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "10% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "10% increased Cooldown Recovery Rate" }, } }, - ["HandWrapsFireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+1% to Maximum Fire Resistance", "+(11-15)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(11-15)% to Fire Resistance" }, } }, - ["HandWrapsFireResist2"] = { type = "Suffix", affix = "of the Salamander", "+1% to Maximum Fire Resistance", "+(16-20)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(16-20)% to Fire Resistance" }, } }, - ["HandWrapsFireResist3"] = { type = "Suffix", affix = "of the Drake", "+1% to Maximum Fire Resistance", "+(21-25)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, - ["HandWrapsFireResist4"] = { type = "Suffix", affix = "of the Kiln", "+2% to Maximum Fire Resistance", "+(21-25)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, - ["HandWrapsFireResist5"] = { type = "Suffix", affix = "of the Furnace", "+2% to Maximum Fire Resistance", "+(26-30)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(26-30)% to Fire Resistance" }, } }, - ["HandWrapsFireResist6"] = { type = "Suffix", affix = "of the Volcano", "+2% to Maximum Fire Resistance", "+(31-35)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(31-35)% to Fire Resistance" }, } }, - ["HandWrapsFireResist7"] = { type = "Suffix", affix = "of Magma", "+2% to Maximum Fire Resistance", "+(36-40)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, - ["HandWrapsFireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+3% to Maximum Fire Resistance", "+(36-40)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to Maximum Fire Resistance" }, [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, - ["HandWrapsColdResist1"] = { type = "Suffix", affix = "of the Seal", "+1% to Maximum Cold Resistance", "+(11-15)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(11-15)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist2"] = { type = "Suffix", affix = "of the Penguin", "+1% to Maximum Cold Resistance", "+(16-20)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(16-20)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist3"] = { type = "Suffix", affix = "of the Narwhal", "+1% to Maximum Cold Resistance", "+(21-25)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+2% to Maximum Cold Resistance", "+(21-25)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+2% to Maximum Cold Resistance", "+(26-30)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-30)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+2% to Maximum Cold Resistance", "+(31-35)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-35)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist7"] = { type = "Suffix", affix = "of the Ice", "+2% to Maximum Cold Resistance", "+(36-40)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["HandWrapsColdResist8"] = { type = "Suffix", affix = "of Haast", "+3% to Maximum Cold Resistance", "+(36-40)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, - ["HandWrapsLightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+1% to Maximum Lightning Resistance", "+(11-15)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(11-15)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist2"] = { type = "Suffix", affix = "of the Squall", "+1% to Maximum Lightning Resistance", "+(16-20)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(16-20)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist3"] = { type = "Suffix", affix = "of the Storm", "+1% to Maximum Lightning Resistance", "+(21-25)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+2% to Maximum Lightning Resistance", "+(21-25)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+2% to Maximum Lightning Resistance", "+(26-30)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(26-30)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+2% to Maximum Lightning Resistance", "+(31-35)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(31-35)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+2% to Maximum Lightning Resistance", "+(36-40)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, - ["HandWrapsLightningResist8"] = { type = "Suffix", affix = "of Ephij", "+3% to Maximum Lightning Resistance", "+(36-40)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, - ["HandWrapsChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+1% to Maximum Chaos Resistance", "+(6-9)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(6-9)% to Chaos Resistance" }, } }, - ["HandWrapsChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+1% to Maximum Chaos Resistance", "+(10-13)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(10-13)% to Chaos Resistance" }, } }, - ["HandWrapsChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+1% to Maximum Chaos Resistance", "+(14-17)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(14-17)% to Chaos Resistance" }, } }, - ["HandWrapsChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+1% to Maximum Chaos Resistance", "+(18-21)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(18-21)% to Chaos Resistance" }, } }, - ["HandWrapsChaosResist5"] = { type = "Suffix", affix = "of Exile", "+1% to Maximum Chaos Resistance", "+(22-25)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(22-25)% to Chaos Resistance" }, } }, - ["HandWrapsChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+2% to Maximum Chaos Resistance", "+(22-25)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, [2923486259] = { "+(22-25)% to Chaos Resistance" }, } }, - ["HandWrapsIncreasedLife1"] = { type = "Prefix", affix = "Hale", "5% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "5% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife2"] = { type = "Prefix", affix = "Healthy", "6% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "6% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife3"] = { type = "Prefix", affix = "Sanguine", "7% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "7% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife4"] = { type = "Prefix", affix = "Stalwart", "8% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "8% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife5"] = { type = "Prefix", affix = "Stout", "9% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "9% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife6"] = { type = "Prefix", affix = "Robust", "10% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "10% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife7"] = { type = "Prefix", affix = "Rotund", "11% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "11% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife8"] = { type = "Prefix", affix = "Virile", "12% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "12% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife9"] = { type = "Prefix", affix = "Athlete's", "13% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "13% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife10"] = { type = "Prefix", affix = "Fecund", "14% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "14% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife11"] = { type = "Prefix", affix = "Vigorous", "15% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "15% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife12"] = { type = "Prefix", affix = "Rapturous", "16% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "16% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedLife13"] = { type = "Prefix", affix = "Prime", "17% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "17% less damage taken while on Low Life" }, } }, - ["HandWrapsIncreasedMana1"] = { type = "Prefix", affix = "Beryl", "(10-11)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(10-11)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "(12-13)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(12-13)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana3"] = { type = "Prefix", affix = "Azure", "(14-15)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(14-15)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana4"] = { type = "Prefix", affix = "Teal", "(16-17)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(16-17)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "(18-19)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(18-19)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana6"] = { type = "Prefix", affix = "Aqua", "(20-21)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(20-21)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "(22-23)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(22-23)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana8"] = { type = "Prefix", affix = "Gentian", "(24-25)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(24-25)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsIncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "(26-27)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(26-27)% more Attack damage while on Low Mana" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEnergyShield2"] = { type = "Prefix", affix = "Anointed", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Incorporeal", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Ascendant", "(21-22)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(21-22)% more Global Evasion Rating and Energy Shield" }, } }, - ["HandWrapsReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "+(5-10) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, - ["HandWrapsReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "+(11-15) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(11-15) to all Attributes" }, } }, - ["HandWrapsReducedLocalAttributeRequirements3"] = { type = "Suffix", affix = "of the Talented", "+(16-20) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-20) to all Attributes" }, } }, - ["HandWrapsReducedLocalAttributeRequirements4"] = { type = "Suffix", affix = "of the Skilled", "+(21-25) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-25) to all Attributes" }, } }, - ["HandWrapsReducedLocalAttributeRequirements5"] = { type = "Suffix", affix = "of the Proficient", "+(26-30) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(26-30) to all Attributes" }, } }, - ["HandWrapsAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Attacks Gain 10% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 10% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Attacks Gain 11% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 11% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Attacks Gain 12% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 12% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Attacks Gain 13% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 13% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Attacks Gain 14% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 14% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Attacks Gain (15-16)% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (15-16)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Attacks Gain (17-18)% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (17-18)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Attacks Gain (19-20)% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (19-20)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Attacks Gain (21-23)% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (21-23)% of Damage as Extra Physical Damage" }, } }, - ["HandWrapsAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Attacks Gain 10% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 10% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Attacks Gain 11% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 11% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Attacks Gain 12% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 12% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Attacks Gain 13% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 13% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Attacks Gain 14% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 14% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Attacks Gain (15-16)% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (15-16)% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Attacks Gain (17-18)% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (17-18)% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Attacks Gain (19-20)% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (19-20)% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Attacks Gain (21-23)% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (21-23)% of Damage as Extra Fire Damage" }, } }, - ["HandWrapsAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Attacks Gain 10% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 10% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Attacks Gain 11% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 11% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Attacks Gain 12% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 12% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Attacks Gain 13% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 13% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Attacks Gain 14% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 14% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Attacks Gain (15-16)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (15-16)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Attacks Gain (17-18)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (17-18)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Attacks Gain (19-20)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (19-20)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Attacks Gain (21-23)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (21-23)% of Damage as Extra Cold Damage" }, } }, - ["HandWrapsAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Attacks Gain 10% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 10% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Attacks Gain 11% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 11% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Attacks Gain 12% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 12% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Attacks Gain 13% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 13% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Attacks Gain 14% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 14% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Attacks Gain (15-16)% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (15-16)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Attacks Gain (17-18)% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (17-18)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Attacks Gain (19-20)% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (19-20)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Attacks Gain (21-23)% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (21-23)% of Damage as Extra Lightning Damage" }, } }, - ["HandWrapsGlobalMeleeSkillGemLevel1"] = { type = "Suffix", affix = "of Combat", "+(10-12)% to Quality of all Skills", statOrder = { 974 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(10-12)% to Quality of all Skills" }, } }, - ["HandWrapsGlobalMeleeSkillGemLevel2"] = { type = "Suffix", affix = "of Dueling", "+1 to Level of all Melee Skills", "+(10-12)% to Quality of all Skills", statOrder = { 965, 974 }, level = 1, group = "GlobalSkillGemQualityMeleeLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "gem" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, [3655769732] = { "+(10-12)% to Quality of all Skills" }, } }, - ["HandWrapsLifeLeech1"] = { type = "Suffix", affix = "of the Parasite", "Leech (8-8.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1037, 1894 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-8.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsLifeLeech2"] = { type = "Suffix", affix = "of the Locust", "Leech (9-10.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1037, 1894 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (9-10.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsLifeLeech3"] = { type = "Suffix", affix = "of the Remora", "Leech (11-11.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1037, 1894 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (11-11.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsLifeLeech4"] = { type = "Suffix", affix = "of the Lamprey", "Leech (12-13.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1037, 1894 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (12-13.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsLifeLeech5"] = { type = "Suffix", affix = "of the Vampire", "Leech (14-15)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1037, 1894 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (14-15)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, - ["HandWrapsManaLeech1"] = { type = "Suffix", affix = "of the Thirsty", "Leech (6-7.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1045, 1896 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (6-7.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, - ["HandWrapsManaLeech2"] = { type = "Suffix", affix = "of the Parched", "Leech (8-8.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1045, 1896 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (8-8.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, - ["HandWrapsManaLeech3"] = { type = "Suffix", affix = "of the Arid", "Leech (9-10.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1045, 1896 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (9-10.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, - ["HandWrapsManaLeech4"] = { type = "Suffix", affix = "of the Drought", "Leech (11-11.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1045, 1896 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (11-11.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, - ["HandWrapsManaLeech5"] = { type = "Suffix", affix = "of the Desperate", "Leech (12-13)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1045, 1896 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (12-13)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Recover 1% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Recover 1% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Recover 2% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Vanquishing", "Recover 2% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Valour", "Recover 2% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Glory", "Recover 2% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, - ["HandWrapsLifeGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Legend", "Recover 3% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Recover 1% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Infusion", "Recover 1% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Enveloping", "Recover 2% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Consumption", "Recover 2% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Recover 2% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Devouring", "Recover 2% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, - ["HandWrapsManaGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Assimilation", "Recover 3% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, - ["HandWrapsLifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7421 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsLifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7421 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsLifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7421 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsLifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7421 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(8-12)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(8-12)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(14-18)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(14-18)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(20-24)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(20-24)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(26-30)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(26-30)% chance to gain Onslaught for 4 seconds on Hit" }, } }, - ["HandWrapsIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "(12-14)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(12-14)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "(15-17)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(15-17)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "(18-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(18-20)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "(21-23)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(21-23)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "(24-26)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(24-26)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "(27-29)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(27-29)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "(30-32)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(30-32)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "(33-35)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(33-35)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsIncreasedAccuracy9"] = { type = "Prefix", affix = "Amazon's", "(36-38)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(36-38)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["HandWrapsCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(0.5-1)% to Critical Hit Chance", statOrder = { 1354 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(0.5-1)% to Critical Hit Chance" }, } }, - ["HandWrapsCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(1.1-1.5)% to Critical Hit Chance", statOrder = { 1354 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.1-1.5)% to Critical Hit Chance" }, } }, - ["HandWrapsCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(1.6-2)% to Critical Hit Chance", statOrder = { 1354 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.6-2)% to Critical Hit Chance" }, } }, - ["HandWrapsCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(2.1-2.5)% to Critical Hit Chance", statOrder = { 1354 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(2.1-2.5)% to Critical Hit Chance" }, } }, - ["HandWrapsCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(2.5-3)% to Critical Hit Chance", statOrder = { 1354 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(2.5-3)% to Critical Hit Chance" }, } }, - ["HandWrapsItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(15-20)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(15-20)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(21-25)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(21-25)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(26-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(26-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["HandWrapsEnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Enlivening", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsEnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(31-35)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(31-35)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsEnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(36-40)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(36-40)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsEnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(41-45)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(41-45)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsEnergyShieldRechargeRate5"] = { type = "Suffix", affix = "of Ardour", "(46-50)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(46-50)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsEnergyShieldRechargeRate6"] = { type = "Suffix", affix = "of Suffusion", "(51-55)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(51-55)% faster start of Energy Shield Recharge" }, } }, - ["HandWrapsArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of Covering", "+(10-12)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-12)% to all Elemental Resistances" }, } }, - ["HandWrapsArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of Sheathing", "+(13-15)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(13-15)% to all Elemental Resistances" }, } }, - ["HandWrapsArmourAppliesToElementalDamage3"] = { type = "Suffix", affix = "of Lining", "+(16-18)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(16-18)% to all Elemental Resistances" }, } }, - ["HandWrapsArmourAppliesToElementalDamage4"] = { type = "Suffix", affix = "of Padding", "+(19-21)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(19-21)% to all Elemental Resistances" }, } }, - ["HandWrapsArmourAppliesToElementalDamage5"] = { type = "Suffix", affix = "of Furring", "+(22-24)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(22-24)% to all Elemental Resistances" }, } }, - ["HandWrapsEvasionGrantsDeflection1"] = { type = "Suffix", affix = "of Deflecting", "Prevent +3% of Damage from Deflected Hits", statOrder = { 4667 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +3% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection2"] = { type = "Suffix", affix = "of Bending", "Prevent +4% of Damage from Deflected Hits", statOrder = { 4667 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +4% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection3"] = { type = "Suffix", affix = "of Curvation", "Prevent +5% of Damage from Deflected Hits", statOrder = { 4667 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +5% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection4"] = { type = "Suffix", affix = "of Diversion", "Prevent +6% of Damage from Deflected Hits", statOrder = { 4667 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +6% of Damage from Deflected Hits" }, } }, - ["HandWrapsEvasionGrantsDeflection5"] = { type = "Suffix", affix = "of Flexure", "Prevent +7% of Damage from Deflected Hits", statOrder = { 4667 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +7% of Damage from Deflected Hits" }, } }, - ["HandWrapsAbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(2-3)% to Maximum Lightning Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1010, 1023 }, level = 1, group = "ChaosAndMaxLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [1011760251] = { "+(2-3)% to Maximum Lightning Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["HandWrapsAbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "(7-9)% increased Strength and Dexterity", statOrder = { 1001 }, level = 1, group = "IncreasedStrengthAndDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dexterity", "strength", "attribute" }, tradeHashes = { [4248928173] = { "(7-9)% increased Strength and Dexterity" }, } }, - ["HandWrapsAbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(2-3)% to Maximum Fire Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1008, 1023 }, level = 1, group = "ChaosAndMaxFireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [4095671657] = { "+(2-3)% to Maximum Fire Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["HandWrapsAbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "(7-9)% increased Strength and Intelligence", statOrder = { 1002 }, level = 1, group = "IncreasedStrengthAndIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "intelligence", "strength", "attribute" }, tradeHashes = { [517666337] = { "(7-9)% increased Strength and Intelligence" }, } }, - ["HandWrapsAbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(2-3)% to Maximum Cold Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1009, 1023 }, level = 1, group = "ChaosAndMaxColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, - ["HandWrapsAbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "(7-9)% increased Dexterity and Intelligence", statOrder = { 1003 }, level = 1, group = "IncreasedDexterityAndIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dexterity", "intelligence", "attribute" }, tradeHashes = { [3300318172] = { "(7-9)% increased Dexterity and Intelligence" }, } }, - ["HandWrapsAbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Reservation Efficiency of Skills", statOrder = { 1953 }, level = 1, group = "ReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2587176568] = { "(6-10)% increased Reservation Efficiency of Skills" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5804 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "Chance to Poison is calculated from your base chance to inflict Bleeding instead", statOrder = { 4725 }, level = 1, group = "BaseBleedChanceAppliesToPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "poison", "physical", "chaos", "ailment" }, tradeHashes = { [1670828838] = { "Chance to Poison is calculated from your base chance to inflict Bleeding instead" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "Chance to inflict Bleeding is calculated from your base chance to Poison instead", statOrder = { 4648 }, level = 1, group = "BasePoisonChanceAppliesToBleed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "poison", "physical", "chaos", "ailment" }, tradeHashes = { [1710906986] = { "Chance to inflict Bleeding is calculated from your base chance to Poison instead" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "Attack Hits Aggravate any Bleeding on targets which is older than (3-4) seconds", statOrder = { 4228 }, level = 1, group = "AggravateOldBleedOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [521615509] = { "Attack Hits Aggravate any Bleeding on targets which is older than (3-4) seconds" }, } }, - ["HandWrapsAbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(13-17)% increased Attack Speed if you haven't been Hit Recently", statOrder = { 4541 }, level = 1, group = "AttackSpeedIfNotHitRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3842707164] = { "(13-17)% increased Attack Speed if you haven't been Hit Recently" }, } }, - ["HandWrapsAbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Mark Skills have (15-25)% increased Use Speed", statOrder = { 1944 }, level = 1, group = "MarkCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1714971114] = { "Mark Skills have (15-25)% increased Use Speed" }, } }, - ["HandWrapsAbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies", statOrder = { 9237 }, level = 1, group = "DamageGainedAsColdVsDazed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4212675042] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies" }, } }, - ["HandWrapsAbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "Life Leech can Overflow Maximum Life", statOrder = { 7430 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2714890129] = { "Life Leech can Overflow Maximum Life" }, } }, - ["HandWrapsAbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(26-35)% increased Damage against Immobilised Enemies", statOrder = { 5945 }, level = 1, group = "ImmobiliseIncreasedDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3120508478] = { "(26-35)% increased Damage against Immobilised Enemies" }, } }, - ["HandWrapsAbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(5-10)% chance to gain a Power Charge on Critical Hit", statOrder = { 1583 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "(5-10)% chance to gain a Power Charge on Critical Hit" }, } }, - ["HandWrapsAbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(17-23)% increased Attack Speed when on Full Life", statOrder = { 1177 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "(17-23)% increased Attack Speed when on Full Life" }, } }, - ["HandWrapsDecayInfluenceIgniteMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies killed by your Hits are destroyed", "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6326, 6498, 6498.1 }, level = 1, group = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, - ["HandWrapsDecayInfluenceIgniteMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies killed by your Hits are destroyed", "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6326, 6498, 6498.1 }, level = 1, group = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, - ["HandWrapsDecayInfluenceBleedMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (10-30)% chance to explode, dealing a tenth of their maximum Life as Physical damage", statOrder = { 3009 }, level = 1, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you kill have a (10-30)% chance to explode, dealing a tenth of their maximum Life as Physical damage" }, } }, - ["HandWrapsDecayInfluenceBleedMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (31-50)% chance to explode, dealing a tenth of their maximum Life as Physical damage", statOrder = { 3009 }, level = 1, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you kill have a (31-50)% chance to explode, dealing a tenth of their maximum Life as Physical damage" }, } }, - ["HandWrapsDecayInfluencePoisonMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (9-14)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 3010 }, level = 1, group = "ExplodeOnKillChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1776945532] = { "Enemies you kill have a (9-14)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, - ["HandWrapsDecayInfluencePoisonMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (15-20)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 3010 }, level = 1, group = "ExplodeOnKillChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1776945532] = { "Enemies you kill have a (15-20)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, - ["HandWrapsDecayInfluenceAilmentMagnitude1"] = { type = "Prefix", affix = "Katla's", "+(10-25) to Ailment Threshold", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4254, 4256 }, level = 1, group = "AilmentThresholdAndIncreasedAilmentThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1488650448] = { "+(10-25) to Ailment Threshold" }, [3544800472] = { "(10-20)% increased Elemental Ailment Threshold" }, } }, - ["HandWrapsDecayInfluenceAilmentMagnitude2"] = { type = "Prefix", affix = "Katla's", "+(26-40) to Ailment Threshold", "(21-35)% increased Elemental Ailment Threshold", statOrder = { 4254, 4256 }, level = 1, group = "AilmentThresholdAndIncreasedAilmentThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1488650448] = { "+(26-40) to Ailment Threshold" }, [3544800472] = { "(21-35)% increased Elemental Ailment Threshold" }, } }, - ["HandWrapsDecayInfluenceFasterDamagingAilments1"] = { type = "Prefix", affix = "Katla's", "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6244, 6244.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, - ["HandWrapsDecayInfluenceFasterDamagingAilments2"] = { type = "Prefix", affix = "Katla's", "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6244, 6244.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, - ["HandWrapsDecayInfluenceAilmentDuration1"] = { type = "Suffix", affix = "of Decay", "(10-22)% increased Duration of Ailments on Enemies", statOrder = { 1614 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-22)% increased Duration of Ailments on Enemies" }, } }, - ["HandWrapsDecayInfluenceAilmentDuration2"] = { type = "Suffix", affix = "of Decay", "(23-37)% increased Duration of Ailments on Enemies", statOrder = { 1614 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(23-37)% increased Duration of Ailments on Enemies" }, } }, - ["HandWrapsDecayInfluenceFasterLeech1"] = { type = "Suffix", affix = "of Decay", "(15-35)% increased Damage while Leeching", statOrder = { 2793 }, level = 1, group = "DamageWhileLeeching", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(15-35)% increased Damage while Leeching" }, } }, - ["HandWrapsDecayInfluenceSlowerLeech1"] = { type = "Suffix", affix = "of Decay", "(15-35)% increased Evasion while Leeching", statOrder = { 6487 }, level = 1, group = "IncreasedEvasionRatingWhileLeeching", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3854334101] = { "(15-35)% increased Evasion while Leeching" }, } }, - ["HandWrapsDecayInfluenceLeechAmount1"] = { type = "Suffix", affix = "of Decay", "Leech (7-12)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (7-12)% of Physical Attack Damage as Life" }, } }, - ["HandWrapsDecayInfluenceWitherMagnitude1"] = { type = "Suffix", affix = "of Decay", "Damage with Weapons Penetrates (5-9)% Chaos Resistance", statOrder = { 3271 }, level = 1, group = "ChaosPenetrationWithAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2237902788] = { "Damage with Weapons Penetrates (5-9)% Chaos Resistance" }, } }, - ["HandWrapsDecayInfluenceWitherMagnitude2"] = { type = "Suffix", affix = "of Decay", "Damage with Weapons Penetrates (10-17)% Chaos Resistance", statOrder = { 3271 }, level = 1, group = "ChaosPenetrationWithAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2237902788] = { "Damage with Weapons Penetrates (10-17)% Chaos Resistance" }, } }, - ["HandWrapsDecayInfluenceCurseMagnitude1"] = { type = "Suffix", affix = "of Decay", "You can apply an additional Curse", statOrder = { 1907 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, - ["HandWrapsDecayInfluenceCurseMagnitude2"] = { type = "Suffix", affix = "of Decay", "You can apply an additional Curse", "(5-15)% increased Curse Magnitudes", statOrder = { 1907, 2374 }, level = 1, group = "AdditionalCurseOnEnemiesAndCurseMagnitude", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, [2353576063] = { "(5-15)% increased Curse Magnitudes" }, } }, - ["HandWrapsDecayInfluenceExposureEffect1"] = { type = "Suffix", affix = "of Decay", "Damage Penetrates (4-8)% Elemental Resistances", statOrder = { 2721 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (4-8)% Elemental Resistances" }, } }, - ["HandWrapsDecayInfluenceExposureEffect2"] = { type = "Suffix", affix = "of Decay", "Damage Penetrates (9-15)% Elemental Resistances", statOrder = { 2721 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-15)% Elemental Resistances" }, } }, - ["HandWrapsDecayInfluenceIncreasedCurseDuration1"] = { type = "Suffix", affix = "of Decay", "Gain (1-10) Life per Cursed Enemy Hit with Attacks", statOrder = { 7422 }, level = 1, group = "LifeGainOnHitCursedEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3072303874] = { "Gain (1-10) Life per Cursed Enemy Hit with Attacks" }, } }, - ["HandWrapsDecayInfluenceFasterCurseActivation1"] = { type = "Suffix", affix = "of Decay", "Gain (1-10) Mana per Cursed Enemy Hit with Attacks", statOrder = { 7956 }, level = 1, group = "ManaGainOnHitCursedEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2087996552] = { "Gain (1-10) Mana per Cursed Enemy Hit with Attacks" }, } }, - ["HandWrapsMarksmanInfluenceProjectileDamage1"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire an additional Projectile", statOrder = { 3847 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire an additional Projectile" }, } }, - ["HandWrapsMarksmanInfluenceProjectileDamage2"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire 2 additional Projectiles", statOrder = { 3847 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire 2 additional Projectiles" }, } }, - ["HandWrapsMarksmanInfluenceProjectileDamage3"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire 3 additional Projectiles", statOrder = { 3847 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire 3 additional Projectiles" }, } }, - ["HandWrapsMarksmanInfluenceMarkEffect1"] = { type = "Prefix", affix = "Kolr's", "(32-46)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5820 }, level = 1, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1045789614] = { "(32-46)% increased Critical Hit Chance against Marked Enemies" }, } }, - ["HandWrapsMarksmanInfluenceMarkEffect2"] = { type = "Prefix", affix = "Kolr's", "(47-61)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5820 }, level = 1, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1045789614] = { "(47-61)% increased Critical Hit Chance against Marked Enemies" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSpeed1"] = { type = "Prefix", affix = "Kolr's", "(1-2)% increased Projectile Damage per Power Charge", statOrder = { 2413 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(1-2)% increased Projectile Damage per Power Charge" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSpeed2"] = { type = "Prefix", affix = "Kolr's", "(3-4)% increased Projectile Damage per Power Charge", statOrder = { 2413 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(3-4)% increased Projectile Damage per Power Charge" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSpeed3"] = { type = "Prefix", affix = "Kolr's", "(5-6)% increased Projectile Damage per Power Charge", statOrder = { 2413 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(5-6)% increased Projectile Damage per Power Charge" }, } }, - ["HandWrapsMarksmanInfluenceCriticalHitChance1"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (30-39)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (30-39)% reduced Critical Damage Bonus" }, } }, - ["HandWrapsMarksmanInfluenceCriticalHitChance2"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (40-49)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (40-49)% reduced Critical Damage Bonus" }, } }, - ["HandWrapsMarksmanInfluenceCriticalHitChance3"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (50-60)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (50-60)% reduced Critical Damage Bonus" }, } }, - ["HandWrapsMarksmanInfluenceChanceToPierce1"] = { type = "Prefix", affix = "of the Hunt", "Projectiles Pierce an additional Target", statOrder = { 1547 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, - ["HandWrapsMarksmanInfluenceChanceToPierce2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles Pierce 2 additional Targets", statOrder = { 1547 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, - ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (15-20)% chance to Shock", statOrder = { 2474 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (15-20)% chance to Shock" }, } }, - ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (21-25)% chance to Shock", statOrder = { 2474 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (21-25)% chance to Shock" }, } }, - ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (26-30)% chance to Shock", statOrder = { 2474 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (26-30)% chance to Shock" }, } }, - ["HandWrapsMarksmanInfluenceChainToChainOffTerrain1"] = { type = "Suffix", affix = "of the Hunt", "Attacks Chain an additional time", statOrder = { 3781 }, level = 1, group = "AttacksChainAdditionalTimes", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain an additional time" }, } }, - ["HandWrapsMarksmanInfluenceChainToChainOffTerrain2"] = { type = "Suffix", affix = "of the Hunt", "Attacks Chain 2 additional times", statOrder = { 3781 }, level = 1, group = "AttacksChainAdditionalTimes", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain 2 additional times" }, } }, - ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9524 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2189073790] = { "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9524 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2189073790] = { "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["HandWrapsMarksmanInfluenceIncreasedMarkDuration1"] = { type = "Suffix", affix = "of the Hunt", "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres", statOrder = { 10580 }, level = 1, group = "SpreadMarkOnConsume", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4031619030] = { "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres" }, } }, - ["HandWrapsMarksmanInfluenceIncreasedMarkDuration2"] = { type = "Suffix", affix = "of the Hunt", "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres", statOrder = { 10580 }, level = 1, group = "SpreadMarkOnConsume", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4031619030] = { "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed1"] = { type = "Suffix", affix = "of the Hunt", "(10-19)% increased Damage with Hits against Marked Enemy", statOrder = { 5965 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(10-19)% increased Damage with Hits against Marked Enemy" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed2"] = { type = "Suffix", affix = "of the Hunt", "(20-29)% increased Damage with Hits against Marked Enemy", statOrder = { 5965 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(20-29)% increased Damage with Hits against Marked Enemy" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillLevels1"] = { type = "Suffix", affix = "of the Hunt", "Enemies you Mark take (1-5)% increased Damage", statOrder = { 8793 }, level = 1, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2083058281] = { "Enemies you Mark take (1-5)% increased Damage" }, } }, - ["HandWrapsMarksmanInfluenceMarkSkillLevels2"] = { type = "Suffix", affix = "of the Hunt", "Enemies you Mark take (6-10)% increased Damage", statOrder = { 8793 }, level = 1, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2083058281] = { "Enemies you Mark take (6-10)% increased Damage" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSkills1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (25-44)% chance to Fork", statOrder = { 9503 }, level = 1, group = "ProjectileChanceToFork", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1549287843] = { "Projectiles have (25-44)% chance to Fork" }, } }, - ["HandWrapsMarksmanInfluenceProjectileSkills2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (45-65)% chance to Fork", statOrder = { 9503 }, level = 1, group = "ProjectileChanceToFork", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1549287843] = { "Projectiles have (45-65)% chance to Fork" }, } }, - ["HandWrapsAlloyRemnantPickupRange1"] = { type = "Suffix", affix = "of the Stars", "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5790 }, level = 1, group = "RemnantGrantEffectTwiceChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["HandWrapsAlloyCastSpeedGloves1"] = { type = "Suffix", affix = "of the Stars", "(10-30)% chance to gain a Power Charge when you Stun", statOrder = { 2529 }, level = 1, group = "PowerChargeOnStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "(10-30)% chance to gain a Power Charge when you Stun" }, } }, - ["HandWrapsAlloyDamagingAilmentDuration1"] = { type = "Suffix", affix = "of the Stars", "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5804 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, - ["HandWrapsAlloyElementalPenetration1"] = { type = "Suffix", affix = "of the Stars", "+(20-30)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, - ["HandWrapsAlloyAttackAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4484 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "1% increased Area of Effect for Attacks per 10 Intelligence" }, } }, - ["HandWrapsEssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(12-23)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6102 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3471443885] = { "(12-23)% of Damage taken from Deflected Hits Recouped as Life" }, } }, - ["HandWrapsEssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "Charms gain (0.13-0.27) charges per Second", statOrder = { 6866 }, level = 1, group = "CharmChargeGeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain (0.13-0.27) charges per Second" }, } }, - ["HandWrapsEssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "Life Flasks gain (0.13-0.27) charges per Second", "Mana Flasks gain (0.13-0.27) charges per Second", statOrder = { 6869, 6870 }, level = 1, group = "GenerateLifeAndManaFlasksChargesPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.13-0.27) charges per Second" }, [2200293569] = { "Mana Flasks gain (0.13-0.27) charges per Second" }, } }, - ["HandWrapsUniqueMutatedVaalMaximumManaIncreasePercent"] = { type = "Prefix", affix = "", "+(36-42) to maximum Mana", "(15-35)% increased Attack Damage", statOrder = { 891, 1155 }, level = 1, group = "AttackDamageAndBaseMaximumMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "damage", "attack" }, tradeHashes = { [1050105434] = { "+(36-42) to maximum Mana" }, [2843214518] = { "(15-35)% increased Attack Damage" }, } }, - ["HandWrapsUniqueMutatedVaalManaLeechPermyriad"] = { type = "Prefix", affix = "", "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9647 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence" }, } }, - ["HandWrapsUniqueMutatedVaalEnergyOnFullMana"] = { type = "Prefix", affix = "", "(25-45)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(25-45)% of Damage taken Recouped as Mana" }, } }, - ["HandWrapsUniqueMutatedVaalManaCostEfficiency"] = { type = "Prefix", affix = "", "(15-40)% reduced Mana Cost of Attacks", statOrder = { 4528 }, level = 1, group = "ReducedAttackManaCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(15-40)% reduced Mana Cost of Attacks" }, } }, - ["HandWrapsUniqueMutatedVaalSkillCostEfficiency"] = { type = "Prefix", affix = "", "Non-Channelling Skills Cost -(8-3) Mana", statOrder = { 9869 }, level = 1, group = "ManaCostBaseNonChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [407482587] = { "Non-Channelling Skills Cost -(8-3) Mana" }, } }, - ["HandWrapsUniqueMutatedVaalSpellLifeCostPercent"] = { type = "Prefix", affix = "", "Attacks have added Physical damage equal to (1-3)% of maximum Life", statOrder = { 4454 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to (1-3)% of maximum Life" }, } }, - ["HandWrapsUniqueMutatedVaalArcaneSurgeEffect"] = { type = "Prefix", affix = "", "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7421 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, - ["HandWrapsUniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { type = "Prefix", affix = "", "(20-30)% increased Attack Damage while on Low Life", statOrder = { 4520 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4246007234] = { "(20-30)% increased Attack Damage while on Low Life" }, } }, - ["HandWrapsUniqueMutatedVaalGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "", "Dazes on Hit", statOrder = { 4658 }, level = 1, group = "DazeBuildup", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3146310524] = { "Dazes on Hit" }, } }, - ["HandWrapsUniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { type = "Suffix", affix = "", "(10-60)% reduced Poison Duration on you", statOrder = { 1066 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(10-60)% reduced Poison Duration on you" }, } }, - ["HandWrapsUniqueMutatedVaalGlobalChaosGemLevel"] = { type = "Suffix", affix = "", "Attacks have added Chaos damage equal to (1-3)% of maximum Life", statOrder = { 4453 }, level = 1, group = "ChaosDamageMaximumLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1141563002] = { "Attacks have added Chaos damage equal to (1-3)% of maximum Life" }, } }, - ["HandWrapsUniqueMutatedVaalPoisonEffect"] = { type = "Suffix", affix = "", "Critical Hits Poison the enemy", statOrder = { 9461 }, level = 1, group = "PoisonOnCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, - ["HandWrapsUniqueMutatedVaalIncreasedLifePercent"] = { type = "Suffix", affix = "", "+(205-221) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(205-221) to maximum Life" }, } }, - ["HandWrapsUniqueMutatedVaalAddedMaximumEnergyShield"] = { type = "Suffix", affix = "", "(7-16)% increased maximum Energy Shield", statOrder = { 885 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-16)% increased maximum Energy Shield" }, } }, - ["HandWrapsUniqueMutatedVaalLifeLeechAmount"] = { type = "Suffix", affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 2926 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [4224337800] = { "Life Leech effects are not removed when Unreserved Life is Filled" }, } }, - ["HandWrapsUniqueMutatedVaalChanceToBleed"] = { type = "Suffix", affix = "", "Attacks have (35-80)% chance to cause Bleeding", statOrder = { 2268 }, level = 1, group = "ChanceToBleed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (35-80)% chance to cause Bleeding" }, } }, - ["HandWrapsUniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { type = "Suffix", affix = "", "+(12-23)% to Chaos Resistance per Poison on you", "Poison you inflict is Reflected to you", statOrder = { 5577, 9462 }, level = 1, group = "ChaosResistancePerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "poison", "chaos", "resistance", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, [175362265] = { "+(12-23)% to Chaos Resistance per Poison on you" }, } }, - ["HandWrapsUniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { type = "Suffix", affix = "", "(20-35)% increased Damage for each Poison on you up to a maximum of 75%", "Poison you inflict is Reflected to you", statOrder = { 5994, 9462 }, level = 1, group = "DamageIncreasePerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1034580601] = { "(20-35)% increased Damage for each Poison on you up to a maximum of 75%" }, [2374357674] = { "Poison you inflict is Reflected to you" }, } }, - ["HandWrapsUniqueMutatedVaalReducedPoisonDuration"] = { type = "Suffix", affix = "", "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%", "Poison you inflict is Reflected to you", statOrder = { 9129, 9462 }, level = 1, group = "MovementSpeedPerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "speed", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, [1360723495] = { "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%" }, } }, - ["HandWrapsUniqueMutatedVaalIgniteEffect1"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Ignited", statOrder = { 1600 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(20-50)% chance to Avoid being Ignited" }, } }, - ["HandWrapsUniqueMutatedVaalChillEffect"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Chilled", statOrder = { 1598 }, level = 1, group = "AvoidChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(20-50)% chance to Avoid being Chilled" }, } }, - ["HandWrapsUniqueMutatedVaalFreezeDuration"] = { type = "Suffix", affix = "", "Regenerate (5-15)% of maximum Life per second while Frozen", statOrder = { 3417 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2656696317] = { "Regenerate (5-15)% of maximum Life per second while Frozen" }, } }, - ["HandWrapsUniqueMutatedVaalShockEffect"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 1, group = "AvoidShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(20-50)% chance to Avoid being Shocked" }, } }, - ["HandWrapsUniqueMutatedVaalCurseEffectiveness"] = { type = "Suffix", affix = "", "(20-30)% reduced effect of Curses on you", statOrder = { 1909 }, level = 1, group = "ReducedCurseEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "(20-30)% reduced effect of Curses on you" }, } }, - ["HandWrapsUniqueMutatedVaalDamagePerCurse"] = { type = "Suffix", affix = "", "(10-20)% increased Damage with Hits per Curse on Enemy", statOrder = { 2747 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(10-20)% increased Damage with Hits per Curse on Enemy" }, } }, - ["HandWrapsUniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { type = "Suffix", affix = "", "Gain (1-3) Rage on Melee Hit", statOrder = { 6850 }, level = 1, group = "RageOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain (1-3) Rage on Melee Hit" }, } }, - ["HandWrapsUniqueMutatedVaalMaxRageFromRageOnHitChance"] = { type = "Suffix", affix = "", "Gain 1% of Physical Damage as Extra Fire Damage per Rage", statOrder = { 9260 }, level = 1, group = "PhysicalAddedAsFirePerRage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1336175820] = { "Gain 1% of Physical Damage as Extra Fire Damage per Rage" }, } }, - ["HandWrapsUniqueMutatedVaalIncreasedAttackSpeed"] = { type = "Suffix", affix = "", "Attack Skills have Added Lightning Damage equal to (1-5)% of maximum Mana", statOrder = { 4540 }, level = 1, group = "AttackLightningDamageMaximumMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2778228111] = { "Attack Skills have Added Lightning Damage equal to (1-5)% of maximum Mana" }, } }, - ["MinionDamage1"] = { type = "Prefix", affix = "Hustler's", "Minions deal (7-9)% increased Damage", statOrder = { 1718 }, level = 13, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (7-9)% increased Damage" }, } }, - ["MinionDamage2"] = { type = "Prefix", affix = "Conniver's", "Minions deal (10-12)% increased Damage", statOrder = { 1718 }, level = 26, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-12)% increased Damage" }, } }, - ["MinionDamage3"] = { type = "Prefix", affix = "Schemer's", "Minions deal (13-15)% increased Damage", statOrder = { 1718 }, level = 33, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (13-15)% increased Damage" }, } }, - ["MinionDamage4"] = { type = "Prefix", affix = "Plotter's", "Minions deal (16-18)% increased Damage", statOrder = { 1718 }, level = 46, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (16-18)% increased Damage" }, } }, - ["MinionDamage5"] = { type = "Prefix", affix = "Conspirator's", "Minions deal (19-21)% increased Damage", statOrder = { 1718 }, level = 54, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (19-21)% increased Damage" }, } }, - ["MinionDamage6"] = { type = "Prefix", affix = "Exploiter's", "Minions deal (22-24)% increased Damage", statOrder = { 1718 }, level = 65, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-24)% increased Damage" }, } }, - ["MinionDamage7"] = { type = "Prefix", affix = "Manipulator's", "Minions deal (25-27)% increased Damage", statOrder = { 1718 }, level = 70, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (25-27)% increased Damage" }, } }, - ["MinionDamage8"] = { type = "Prefix", affix = "Puppeteer's", "Minions deal (28-31)% increased Damage", statOrder = { 1718 }, level = 82, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-31)% increased Damage" }, } }, - ["MinionMovementSpeed1"] = { type = "Suffix", affix = "of Persuasion", "Minions have (5-7)% increased Movement Speed", statOrder = { 1526 }, level = 27, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (5-7)% increased Movement Speed" }, } }, - ["MinionMovementSpeed2"] = { type = "Suffix", affix = "of Pressure", "Minions have (8-10)% increased Movement Speed", statOrder = { 1526 }, level = 48, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (8-10)% increased Movement Speed" }, } }, - ["MinionMovementSpeed3"] = { type = "Suffix", affix = "of Coercion", "Minions have (11-13)% increased Movement Speed", statOrder = { 1526 }, level = 68, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (11-13)% increased Movement Speed" }, } }, - ["MinionMovementSpeed4"] = { type = "Suffix", affix = "of Compulsion", "Minions have (14-16)% increased Movement Speed", statOrder = { 1526 }, level = 77, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (14-16)% increased Movement Speed" }, } }, - ["MinionElementalResistance1"] = { type = "Suffix", affix = "of Numbness", "Minions have +(7-9)% to all Elemental Resistances", statOrder = { 2665 }, level = 22, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(7-9)% to all Elemental Resistances" }, } }, - ["MinionElementalResistance2"] = { type = "Suffix", affix = "of Dullness", "Minions have +(10-12)% to all Elemental Resistances", statOrder = { 2665 }, level = 38, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(10-12)% to all Elemental Resistances" }, } }, - ["MinionElementalResistance3"] = { type = "Suffix", affix = "of Desensitisation", "Minions have +(14-16)% to all Elemental Resistances", statOrder = { 2665 }, level = 49, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(14-16)% to all Elemental Resistances" }, } }, - ["MinionElementalResistance4"] = { type = "Suffix", affix = "of Conditioning", "Minions have +(17-19)% to all Elemental Resistances", statOrder = { 2665 }, level = 57, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(17-19)% to all Elemental Resistances" }, } }, - ["MinionElementalResistance5"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(20-22)% to all Elemental Resistances", statOrder = { 2665 }, level = 66, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(20-22)% to all Elemental Resistances" }, } }, - ["MinionElementalResistance6"] = { type = "Suffix", affix = "of Adaptation", "Minions have +(23-25)% to all Elemental Resistances", statOrder = { 2665 }, level = 73, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(23-25)% to all Elemental Resistances" }, } }, - ["MinionAttackSpeedAndCastSpeed1"] = { type = "Suffix", affix = "of Guidance", "Minions have (3-4)% increased Attack and Cast Speed", statOrder = { 8968 }, level = 31, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (3-4)% increased Attack and Cast Speed" }, } }, - ["MinionAttackSpeedAndCastSpeed2"] = { type = "Suffix", affix = "of Direction", "Minions have (5-6)% increased Attack and Cast Speed", statOrder = { 8968 }, level = 53, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (5-6)% increased Attack and Cast Speed" }, } }, - ["MinionAttackSpeedAndCastSpeed3"] = { type = "Suffix", affix = "of Management", "Minions have (7-8)% increased Attack and Cast Speed", statOrder = { 8968 }, level = 69, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (7-8)% increased Attack and Cast Speed" }, } }, - ["MinionAttackSpeedAndCastSpeed4"] = { type = "Suffix", affix = "of Control", "Minions have (9-10)% increased Attack and Cast Speed", statOrder = { 8968 }, level = 80, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (9-10)% increased Attack and Cast Speed" }, } }, - ["MinionCriticalStrikeChanceRing1"] = { type = "Suffix", affix = "of Pricking", "Minions have (5-12)% increased Critical Hit Chance", statOrder = { 8995 }, level = 18, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (5-12)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing2"] = { type = "Suffix", affix = "of Stinging", "Minions have (13-20)% increased Critical Hit Chance", statOrder = { 8995 }, level = 32, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (13-20)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing3"] = { type = "Suffix", affix = "of Gouging", "Minions have (21-28)% increased Critical Hit Chance", statOrder = { 8995 }, level = 45, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (21-28)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing4"] = { type = "Suffix", affix = "of Puncturing", "Minions have (29-36)% increased Critical Hit Chance", statOrder = { 8995 }, level = 58, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (29-36)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing5"] = { type = "Suffix", affix = "of Lacinating", "Minions have (37-44)% increased Critical Hit Chance", statOrder = { 8995 }, level = 70, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (37-44)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeChanceRing6"] = { type = "Suffix", affix = "of Piercing", "Minions have (45-52)% increased Critical Hit Chance", statOrder = { 8995 }, level = 81, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (45-52)% increased Critical Hit Chance" }, } }, - ["MinionCriticalStrikeMultiplierRing1"] = { type = "Suffix", affix = "of Quashing", "Minions have (6-10)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 17, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (6-10)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing2"] = { type = "Suffix", affix = "of Purging", "Minions have (11-15)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 30, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (11-15)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing3"] = { type = "Suffix", affix = "of Elimination", "Minions have (16-20)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 44, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (16-20)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing4"] = { type = "Suffix", affix = "of Devastation", "Minions have (21-25)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 57, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (21-25)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing5"] = { type = "Suffix", affix = "of Eradication", "Minions have (26-30)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 69, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (26-30)% increased Critical Damage Bonus" }, } }, - ["MinionCriticalStrikeMultiplierRing6"] = { type = "Suffix", affix = "of Extinction", "Minions have (31-35)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 80, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (31-35)% increased Critical Damage Bonus" }, } }, - ["MinionLifeRing1"] = { type = "Prefix", affix = "Bearing", "Minions have (7-10)% increased maximum Life", statOrder = { 1025 }, level = 18, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (7-10)% increased maximum Life" }, } }, - ["MinionLifeRing2"] = { type = "Prefix", affix = "Bracing", "Minions have (11-14)% increased maximum Life", statOrder = { 1025 }, level = 29, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (11-14)% increased maximum Life" }, } }, - ["MinionLifeRing3"] = { type = "Prefix", affix = "Toughening", "Minions have (15-18)% increased maximum Life", statOrder = { 1025 }, level = 41, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (15-18)% increased maximum Life" }, } }, - ["MinionLifeRing4"] = { type = "Prefix", affix = "Reinforcing", "Minions have (19-22)% increased maximum Life", statOrder = { 1025 }, level = 52, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (19-22)% increased maximum Life" }, } }, - ["MinionLifeRing5"] = { type = "Prefix", affix = "Bolstering", "Minions have (23-26)% increased maximum Life", statOrder = { 1025 }, level = 67, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (23-26)% increased maximum Life" }, } }, - ["MinionLifeRing6"] = { type = "Prefix", affix = "Fortifying", "Minions have (27-30)% increased maximum Life", statOrder = { 1025 }, level = 75, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (27-30)% increased maximum Life" }, } }, - ["MinionReviveSpeed1"] = { type = "Prefix", affix = "Stirring", "Minions Revive (1-2)% faster", statOrder = { 9050 }, level = 24, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (1-2)% faster" }, } }, - ["MinionReviveSpeed2"] = { type = "Prefix", affix = "Rousing", "Minions Revive (3-5)% faster", statOrder = { 9050 }, level = 45, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (3-5)% faster" }, } }, - ["MinionReviveSpeed3"] = { type = "Prefix", affix = "Waking", "Minions Revive (7-9)% faster", statOrder = { 9050 }, level = 63, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (7-9)% faster" }, } }, - ["MinionReviveSpeed4"] = { type = "Prefix", affix = "Restless", "Minions Revive (10-12)% faster", statOrder = { 9050 }, level = 76, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-12)% faster" }, } }, - ["MinionCommandSkillDamage1"] = { type = "Prefix", affix = "Guide's", "Minions deal (13-20)% increased Damage with Command Skills", statOrder = { 8992 }, level = 18, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (13-20)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage2"] = { type = "Prefix", affix = "Lookout's", "Minions deal (21-28)% increased Damage with Command Skills", statOrder = { 8992 }, level = 35, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (21-28)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage3"] = { type = "Prefix", affix = "Watcher's", "Minions deal (29-36)% increased Damage with Command Skills", statOrder = { 8992 }, level = 44, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (29-36)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage4"] = { type = "Prefix", affix = "Sentry's", "Minions deal (37-44)% increased Damage with Command Skills", statOrder = { 8992 }, level = 52, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (37-44)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage5"] = { type = "Prefix", affix = "Shepherd's", "Minions deal (45-52)% increased Damage with Command Skills", statOrder = { 8992 }, level = 63, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (45-52)% increased Damage with Command Skills" }, } }, - ["MinionCommandSkillDamage6"] = { type = "Prefix", affix = "Custodian's", "Minions deal (53-61)% increased Damage with Command Skills", statOrder = { 8992 }, level = 81, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (53-61)% increased Damage with Command Skills" }, } }, - ["MinionGemLevelBelt1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 971 }, level = 36, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, - ["MinionGemLevelBelt2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 971 }, level = 64, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, - ["MinionImmobilisationBuildup1"] = { type = "Suffix", affix = "of Clutching", "Minions have (20-25)% increased Immobilisation buildup", statOrder = { 9023 }, level = 16, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (20-25)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup2"] = { type = "Suffix", affix = "of Grasping", "Minions have (26-31)% increased Immobilisation buildup", statOrder = { 9023 }, level = 34, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (26-31)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup3"] = { type = "Suffix", affix = "of Gripping", "Minions have (32-37)% increased Immobilisation buildup", statOrder = { 9023 }, level = 48, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (32-37)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup4"] = { type = "Suffix", affix = "of Snaring", "Minions have (38-43)% increased Immobilisation buildup", statOrder = { 9023 }, level = 56, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (38-43)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup5"] = { type = "Suffix", affix = "of Grappling", "Minions have (44-49)% increased Immobilisation buildup", statOrder = { 9023 }, level = 65, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (44-49)% increased Immobilisation buildup" }, } }, - ["MinionImmobilisationBuildup6"] = { type = "Suffix", affix = "of Seizing", "Minions have (50-55)% increased Immobilisation buildup", statOrder = { 9023 }, level = 74, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (50-55)% increased Immobilisation buildup" }, } }, - ["OfferingDuration1"] = { type = "Suffix", affix = "of Tradition", "Offering Skills have (6-15)% increased Duration", statOrder = { 9314 }, level = 15, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (6-15)% increased Duration" }, } }, - ["OfferingDuration2"] = { type = "Suffix", affix = "of Observance", "Offering Skills have (16-25)% increased Duration", statOrder = { 9314 }, level = 29, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (16-25)% increased Duration" }, } }, - ["OfferingDuration3"] = { type = "Suffix", affix = "of the Rite", "Offering Skills have (26-35)% increased Duration", statOrder = { 9314 }, level = 47, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (26-35)% increased Duration" }, } }, - ["OfferingDuration4"] = { type = "Suffix", affix = "of Ceremony", "Offering Skills have (36-45)% increased Duration", statOrder = { 9314 }, level = 68, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (36-45)% increased Duration" }, } }, - ["OfferingDuration5"] = { type = "Suffix", affix = "of Liturgy", "Offering Skills have (46-55)% increased Duration", statOrder = { 9314 }, level = 79, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (46-55)% increased Duration" }, } }, - ["MinionAreaOfEffect1"] = { type = "Suffix", affix = "of Scurrying", "Minions have (5-8)% increased Area of Effect", statOrder = { 2757 }, level = 23, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (5-8)% increased Area of Effect" }, } }, - ["MinionAreaOfEffect2"] = { type = "Suffix", affix = "of Bustling", "Minions have (9-12)% increased Area of Effect", statOrder = { 2757 }, level = 36, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (9-12)% increased Area of Effect" }, } }, - ["MinionAreaOfEffect3"] = { type = "Suffix", affix = "of Trampling", "Minions have (13-16)% increased Area of Effect", statOrder = { 2757 }, level = 49, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (13-16)% increased Area of Effect" }, } }, - ["MinionAreaOfEffect4"] = { type = "Suffix", affix = "of Storming", "Minions have (17-20)% increased Area of Effect", statOrder = { 2757 }, level = 61, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (17-20)% increased Area of Effect" }, } }, - ["MinionAreaOfEffect5"] = { type = "Suffix", affix = "of Stampeding", "Minions have (21-24)% increased Area of Effect", statOrder = { 2757 }, level = 73, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (21-24)% increased Area of Effect" }, } }, - ["SpellDamageRing1"] = { type = "Prefix", affix = "Apprentice's", "(6-9)% increased Spell Damage", statOrder = { 870 }, level = 9, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(6-9)% increased Spell Damage" }, } }, - ["SpellDamageRing2"] = { type = "Prefix", affix = "Adept's", "(10-13)% increased Spell Damage", statOrder = { 870 }, level = 20, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-13)% increased Spell Damage" }, } }, - ["SpellDamageRing3"] = { type = "Prefix", affix = "Scholar's", "(14-17)% increased Spell Damage", statOrder = { 870 }, level = 31, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(14-17)% increased Spell Damage" }, } }, - ["SpellDamageRing4"] = { type = "Prefix", affix = "Professor's", "(18-21)% increased Spell Damage", statOrder = { 870 }, level = 46, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-21)% increased Spell Damage" }, } }, - ["SpellDamageRing5"] = { type = "Prefix", affix = "Occultist's", "(22-25)% increased Spell Damage", statOrder = { 870 }, level = 55, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(22-25)% increased Spell Damage" }, } }, - ["SpellDamageRing6"] = { type = "Prefix", affix = "Incanter's", "(26-29)% increased Spell Damage", statOrder = { 870 }, level = 63, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-29)% increased Spell Damage" }, } }, - ["SpellDamageRing7"] = { type = "Prefix", affix = "Glyphic", "(30-34)% increased Spell Damage", statOrder = { 870 }, level = 71, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, } }, - ["SpellDamageRing8"] = { type = "Prefix", affix = "Runic", "(35-39)% increased Spell Damage", statOrder = { 870 }, level = 82, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, } }, - ["SpellCostEfficiency1"] = { type = "Prefix", affix = "Thoughtful", "(7-9)% increased Mana Cost Efficiency of Spells", statOrder = { 4739 }, level = 12, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(7-9)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency2"] = { type = "Prefix", affix = "Considerate", "(10-12)% increased Mana Cost Efficiency of Spells", statOrder = { 4739 }, level = 29, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(10-12)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency3"] = { type = "Prefix", affix = "Prudent", "(13-15)% increased Mana Cost Efficiency of Spells", statOrder = { 4739 }, level = 42, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(13-15)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency4"] = { type = "Prefix", affix = "Astute", "(16-18)% increased Mana Cost Efficiency of Spells", statOrder = { 4739 }, level = 53, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(16-18)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency5"] = { type = "Prefix", affix = "Sagacious", "(19-22)% increased Mana Cost Efficiency of Spells", statOrder = { 4739 }, level = 64, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(19-22)% increased Mana Cost Efficiency of Spells" }, } }, - ["SpellCostEfficiency6"] = { type = "Prefix", affix = "Calculating", "(23-26)% increased Mana Cost Efficiency of Spells", statOrder = { 4739 }, level = 77, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(23-26)% increased Mana Cost Efficiency of Spells" }, } }, - ["ArcaneSurgeEffect1"] = { type = "Prefix", affix = "Eager", "(12-18)% increased effect of Arcane Surge on you", statOrder = { 2994 }, level = 24, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(12-18)% increased effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffect2"] = { type = "Prefix", affix = "Enthusiastic", "(19-25)% increased effect of Arcane Surge on you", statOrder = { 2994 }, level = 47, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(19-25)% increased effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffect3"] = { type = "Prefix", affix = "Spirited", "(26-32)% increased effect of Arcane Surge on you", statOrder = { 2994 }, level = 61, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(26-32)% increased effect of Arcane Surge on you" }, } }, - ["ArcaneSurgeEffect4"] = { type = "Prefix", affix = "Passionate", "(33-39)% increased effect of Arcane Surge on you", statOrder = { 2994 }, level = 79, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(33-39)% increased effect of Arcane Surge on you" }, } }, - ["SpellCriticalStrikeChanceRing1"] = { type = "Suffix", affix = "of Menace", "(7-9)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 18, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(7-9)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceRing2"] = { type = "Suffix", affix = "of Havoc", "(10-12)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 32, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(10-12)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceRing3"] = { type = "Suffix", affix = "of Disaster", "(13-15)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 45, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(13-15)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceRing4"] = { type = "Suffix", affix = "of Calamity", "(16-18)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 58, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(16-18)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceRing5"] = { type = "Suffix", affix = "of Ruin", "(19-21)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 70, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(19-21)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceRing6"] = { type = "Suffix", affix = "of Unmaking", "(22-25)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 81, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(22-25)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeMultiplierRing1"] = { type = "Suffix", affix = "of Ire", "(8-10)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 17, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(8-10)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierRing2"] = { type = "Suffix", affix = "of Anger", "(11-13)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(11-13)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierRing3"] = { type = "Suffix", affix = "of Rage", "(14-17)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(14-17)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierRing4"] = { type = "Suffix", affix = "of Fury", "(18-21)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 57, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(18-21)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierRing5"] = { type = "Suffix", affix = "of Ferocity", "(22-25)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 69, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(22-25)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierRing6"] = { type = "Suffix", affix = "of Destruction", "(26-29)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 80, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(26-29)% increased Critical Spell Damage Bonus" }, } }, - ["SpellDamageDuringManaFlaskEffect1"] = { type = "Prefix", affix = "Activating", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 9958 }, level = 12, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(20-25)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect2"] = { type = "Prefix", affix = "Stimulating", "(26-31)% increased Spell Damage during any Flask Effect", statOrder = { 9958 }, level = 26, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(26-31)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect3"] = { type = "Prefix", affix = "Awakening", "(32-37)% increased Spell Damage during any Flask Effect", statOrder = { 9958 }, level = 39, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(32-37)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect4"] = { type = "Prefix", affix = "Elevating", "(38-43)% increased Spell Damage during any Flask Effect", statOrder = { 9958 }, level = 53, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(38-43)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect5"] = { type = "Prefix", affix = "Energising", "(44-49)% increased Spell Damage during any Flask Effect", statOrder = { 9958 }, level = 67, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(44-49)% increased Spell Damage during any Flask Effect" }, } }, - ["SpellDamageDuringManaFlaskEffect6"] = { type = "Prefix", affix = "Exhilarating", "(50-55)% increased Spell Damage during any Flask Effect", statOrder = { 9958 }, level = 80, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(50-55)% increased Spell Damage during any Flask Effect" }, } }, - ["DamageRemovedFromManaBeforeLife1"] = { type = "Prefix", affix = "Taxing", "(4-6)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 23, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(4-6)% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLife2"] = { type = "Prefix", affix = "Draining", "(7-9)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 39, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(7-9)% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLife3"] = { type = "Prefix", affix = "Exhausting", "(10-12)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 52, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(10-12)% of Damage is taken from Mana before Life" }, } }, - ["DamageRemovedFromManaBeforeLife4"] = { type = "Prefix", affix = "Enervating", "(13-15)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 77, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(13-15)% of Damage is taken from Mana before Life" }, } }, - ["RemnantGrantEffectTwiceChance1"] = { type = "Suffix", affix = "of Accumulation", "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5790 }, level = 24, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance2"] = { type = "Suffix", affix = "of Proliferation", "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5790 }, level = 37, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance3"] = { type = "Suffix", affix = "of Expansion", "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5790 }, level = 49, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance4"] = { type = "Suffix", affix = "of Magnification", "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5790 }, level = 61, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["RemnantGrantEffectTwiceChance5"] = { type = "Suffix", affix = "of Multiplication", "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5790 }, level = 73, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, - ["CastSpeedDuringManaFlaskEffect1"] = { type = "Suffix", affix = "of Hurrying", "(8-10)% increased Cast Speed during any Flask Effect", statOrder = { 5320 }, level = 22, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(8-10)% increased Cast Speed during any Flask Effect" }, } }, - ["CastSpeedDuringManaFlaskEffect2"] = { type = "Suffix", affix = "of Quickening", "(11-13)% increased Cast Speed during any Flask Effect", statOrder = { 5320 }, level = 41, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(11-13)% increased Cast Speed during any Flask Effect" }, } }, - ["CastSpeedDuringManaFlaskEffect3"] = { type = "Suffix", affix = "of Hastening", "(14-16)% increased Cast Speed during any Flask Effect", statOrder = { 5320 }, level = 59, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(14-16)% increased Cast Speed during any Flask Effect" }, } }, - ["CastSpeedDuringManaFlaskEffect4"] = { type = "Suffix", affix = "of Accelerating", "(17-19)% increased Cast Speed during any Flask Effect", statOrder = { 5320 }, level = 76, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(17-19)% increased Cast Speed during any Flask Effect" }, } }, - ["CurseEffectiveness1"] = { type = "Prefix", affix = "Hexing", "(2-3)% increased Curse Magnitudes", statOrder = { 2374 }, level = 31, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(2-3)% increased Curse Magnitudes" }, } }, - ["CurseEffectiveness2"] = { type = "Prefix", affix = "Condemning", "(4-6)% increased Curse Magnitudes", statOrder = { 2374 }, level = 47, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(4-6)% increased Curse Magnitudes" }, } }, - ["CurseEffectiveness3"] = { type = "Prefix", affix = "Maledicting", "(7-9)% increased Curse Magnitudes", statOrder = { 2374 }, level = 61, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(7-9)% increased Curse Magnitudes" }, } }, - ["CurseEffectiveness4"] = { type = "Prefix", affix = "Dooming", "(10-12)% increased Curse Magnitudes", statOrder = { 2374 }, level = 77, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-12)% increased Curse Magnitudes" }, } }, - ["GlobalIncreaseSpellSkillGemLevel1"] = { type = "Suffix", affix = "of Jordan", "+1 to Level of all Spell Skills", statOrder = { 949 }, level = 45, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, - ["SpellAreaOfEffectPercent1"] = { type = "Suffix", affix = "of Analysis", "Spell Skills have (6-8)% increased Area of Effect", statOrder = { 9950 }, level = 23, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (6-8)% increased Area of Effect" }, } }, - ["SpellAreaOfEffectPercent2"] = { type = "Suffix", affix = "of Experimentation", "Spell Skills have (9-11)% increased Area of Effect", statOrder = { 9950 }, level = 48, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (9-11)% increased Area of Effect" }, } }, - ["SpellAreaOfEffectPercent3"] = { type = "Suffix", affix = "of Understanding", "Spell Skills have (12-14)% increased Area of Effect", statOrder = { 9950 }, level = 69, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (12-14)% increased Area of Effect" }, } }, - ["RemnantPickupRadiusIncrease1"] = { type = "Suffix", affix = "of Receiving", "Remnants can be collected from (12-19)% further away", statOrder = { 9697 }, level = 26, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (12-19)% further away" }, } }, - ["RemnantPickupRadiusIncrease2"] = { type = "Suffix", affix = "of Collecting", "Remnants can be collected from (20-27)% further away", statOrder = { 9697 }, level = 38, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-27)% further away" }, } }, - ["RemnantPickupRadiusIncrease3"] = { type = "Suffix", affix = "of Amassing", "Remnants can be collected from (28-35)% further away", statOrder = { 9697 }, level = 51, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (28-35)% further away" }, } }, - ["RemnantPickupRadiusIncrease4"] = { type = "Suffix", affix = "of Absorbing", "Remnants can be collected from (36-43)% further away", statOrder = { 9697 }, level = 64, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (36-43)% further away" }, } }, - ["RemnantPickupRadiusIncrease5"] = { type = "Suffix", affix = "of Engulfing", "Remnants can be collected from (44-51)% further away", statOrder = { 9697 }, level = 76, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (44-51)% further away" }, } }, - ["SpellCooldownRecovery1"] = { type = "Prefix", affix = "Imagninative", "Spells have (2-4)% increased Cooldown Recovery Rate", statOrder = { 4736 }, level = 12, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (2-4)% increased Cooldown Recovery Rate" }, } }, - ["SpellCooldownRecovery2"] = { type = "Prefix", affix = "Inventive", "Spells have (6-10)% increased Cooldown Recovery Rate", statOrder = { 4736 }, level = 28, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (6-10)% increased Cooldown Recovery Rate" }, } }, - ["SpellCooldownRecovery3"] = { type = "Prefix", affix = "Pioneering", "Spells have (11-15)% increased Cooldown Recovery Rate", statOrder = { 4736 }, level = 41, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (11-15)% increased Cooldown Recovery Rate" }, } }, - ["SpellCooldownRecovery4"] = { type = "Prefix", affix = "Trailblazing", "Spells have (16-20)% increased Cooldown Recovery Rate", statOrder = { 4736 }, level = 59, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (16-20)% increased Cooldown Recovery Rate" }, } }, - ["SpellCooldownRecovery5"] = { type = "Prefix", affix = "Ingenious", "Spells have (21-25)% increased Cooldown Recovery Rate", statOrder = { 4736 }, level = 74, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (21-25)% increased Cooldown Recovery Rate" }, } }, - ["CastSpeedJewellery1"] = { type = "Suffix", affix = "of Talent", "(9-12)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, - ["CastSpeedJewellery2"] = { type = "Suffix", affix = "of Nimbleness", "(13-15)% increased Cast Speed", statOrder = { 986 }, level = 18, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-15)% increased Cast Speed" }, } }, - ["CastSpeedJewellery3"] = { type = "Suffix", affix = "of Expertise", "(16-18)% increased Cast Speed", statOrder = { 986 }, level = 35, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(16-18)% increased Cast Speed" }, } }, - ["CastSpeedJewellery4"] = { type = "Suffix", affix = "of Sortilege", "(19-21)% increased Cast Speed", statOrder = { 986 }, level = 51, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(19-21)% increased Cast Speed" }, } }, - ["CastSpeedJewellery5"] = { type = "Suffix", affix = "of Legerdemain", "(22-24)% increased Cast Speed", statOrder = { 986 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(22-24)% increased Cast Speed" }, } }, - ["CastSpeedJewellery6"] = { type = "Suffix", affix = "of Prestidigitation", "(25-28)% increased Cast Speed", statOrder = { 986 }, level = 66, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-28)% increased Cast Speed" }, } }, - ["ConvertedSpellDamageGainedAsChaos1"] = { type = "Prefix", affix = "Impure", "Gain (13-15)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 5, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (13-15)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaos2"] = { type = "Prefix", affix = "Tainted", "Gain (16-18)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 16, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (16-18)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaos3"] = { type = "Prefix", affix = "Clouded", "Gain (19-21)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 33, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (19-21)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaos4"] = { type = "Prefix", affix = "Darkened", "Gain (22-24)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 46, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (22-24)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaos5"] = { type = "Prefix", affix = "Malignant", "Gain (25-27)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 60, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (25-27)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaos6"] = { type = "Prefix", affix = "Vile", "Gain (28-30)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 80, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (28-30)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaosTwoHand1"] = { type = "Prefix", affix = "Impure", "Gain (26-30)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 5, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (26-30)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaosTwoHand2"] = { type = "Prefix", affix = "Tainted", "Gain (31-36)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 16, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (31-36)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaosTwoHand3"] = { type = "Prefix", affix = "Clouded", "Gain (37-42)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 33, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (37-42)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaosTwoHand4"] = { type = "Prefix", affix = "Darkened", "Gain (43-48)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 46, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (43-48)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaosTwoHand5"] = { type = "Prefix", affix = "Malignant", "Gain (49-54)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 60, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (49-54)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedSpellDamageGainedAsChaosTwoHand6"] = { type = "Prefix", affix = "Vile", "Gain (55-60)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 80, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (55-60)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedEssenceDamageasExtraChaos1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 72, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (15-20)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedEssenceDamageasExtraChaos2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 72, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (25-33)% of Damage as Extra Chaos Damage" }, } }, - ["ConvertedLocalAddedChaosDamage1"] = { type = "Prefix", affix = "Impure", "Adds (1-3) to (3-5) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (1-3) to (3-5) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage2"] = { type = "Prefix", affix = "Tainted", "Adds (3-5) to (7-11) Chaos damage", statOrder = { 1290 }, level = 8, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (3-5) to (7-11) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage3"] = { type = "Prefix", affix = "Clouded", "Adds (5-11) to (13-19) Chaos damage", statOrder = { 1290 }, level = 16, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (5-11) to (13-19) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage4"] = { type = "Prefix", affix = "Darkened", "Adds (11-19) to (23-29) Chaos damage", statOrder = { 1290 }, level = 33, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (11-19) to (23-29) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage5"] = { type = "Prefix", affix = "Malignant", "Adds (19-23) to (31-37) Chaos damage", statOrder = { 1290 }, level = 46, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (19-23) to (31-37) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage6"] = { type = "Prefix", affix = "Vile", "Adds (23-31) to (41-53) Chaos damage", statOrder = { 1290 }, level = 54, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (23-31) to (41-53) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage7"] = { type = "Prefix", affix = "Twisted", "Adds (31-43) to (59-71) Chaos damage", statOrder = { 1290 }, level = 60, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (31-43) to (59-71) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage8"] = { type = "Prefix", affix = "Malevolent", "Adds (43-59) to (73-97) Chaos damage", statOrder = { 1290 }, level = 65, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-59) to (73-97) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage9"] = { type = "Prefix", affix = "Baleful", "Adds (59-83) to (101-131) Chaos damage", statOrder = { 1290 }, level = 75, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (59-83) to (101-131) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamage10"] = { type = "Prefix", affix = "Pestilent", "Adds (83-101) to (137-157) Chaos damage", statOrder = { 1290 }, level = 81, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (83-101) to (137-157) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Impure", "Adds (2-3) to (5-7) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (2-3) to (5-7) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand2"] = { type = "Prefix", affix = "Tainted", "Adds (5-9) to (11-17) Chaos damage", statOrder = { 1290 }, level = 8, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (5-9) to (11-17) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand3"] = { type = "Prefix", affix = "Clouded", "Adds (11-17) to (19-29) Chaos damage", statOrder = { 1290 }, level = 16, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (11-17) to (19-29) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand4"] = { type = "Prefix", affix = "Darkened", "Adds (19-29) to (31-41) Chaos damage", statOrder = { 1290 }, level = 33, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (19-29) to (31-41) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand5"] = { type = "Prefix", affix = "Malignant", "Adds (31-37) to (43-53) Chaos damage", statOrder = { 1290 }, level = 46, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (31-37) to (43-53) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand6"] = { type = "Prefix", affix = "Vile", "Adds (41-53) to (59-79) Chaos damage", statOrder = { 1290 }, level = 54, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (41-53) to (59-79) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand7"] = { type = "Prefix", affix = "Twisted", "Adds (59-71) to (83-107) Chaos damage", statOrder = { 1290 }, level = 60, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (59-71) to (83-107) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand8"] = { type = "Prefix", affix = "Malevolent", "Adds (73-97) to (113-149) Chaos damage", statOrder = { 1290 }, level = 65, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (73-97) to (113-149) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand9"] = { type = "Prefix", affix = "Baleful", "Adds (101-131) to (151-197) Chaos damage", statOrder = { 1290 }, level = 75, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (101-131) to (151-197) Chaos damage" }, } }, - ["ConvertedLocalAddedChaosDamageTwoHand10"] = { type = "Prefix", affix = "Pestilent", "Adds (137-157) to (199-239) Chaos damage", statOrder = { 1290 }, level = 81, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (137-157) to (199-239) Chaos damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage1"] = { type = "Prefix", affix = "Impure", "Allies in your Presence deal (1-2) to (3-5) added Attack Chaos Damage", statOrder = { 910 }, level = 1, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (1-2) to (3-5) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage2"] = { type = "Prefix", affix = "Tainted", "Allies in your Presence deal (3-5) to (6-7) added Attack Chaos Damage", statOrder = { 910 }, level = 8, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (3-5) to (6-7) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage3"] = { type = "Prefix", affix = "Clouded", "Allies in your Presence deal (6-7) to (11-13) added Attack Chaos Damage", statOrder = { 910 }, level = 16, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (6-7) to (11-13) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage4"] = { type = "Prefix", affix = "Darkened", "Allies in your Presence deal (8-11) to (14-17) added Attack Chaos Damage", statOrder = { 910 }, level = 33, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (8-11) to (14-17) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage5"] = { type = "Prefix", affix = "Malignant", "Allies in your Presence deal (12-13) to (19-23) added Attack Chaos Damage", statOrder = { 910 }, level = 46, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (12-13) to (19-23) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage6"] = { type = "Prefix", affix = "Vile", "Allies in your Presence deal (14-17) to (21-29) added Attack Chaos Damage", statOrder = { 910 }, level = 54, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (14-17) to (21-29) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage7"] = { type = "Prefix", affix = "Twisted", "Allies in your Presence deal (17-19) to (30-31) added Attack Chaos Damage", statOrder = { 910 }, level = 60, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (17-19) to (30-31) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage8"] = { type = "Prefix", affix = "Malevolent", "Allies in your Presence deal (20-23) to (32-37) added Attack Chaos Damage", statOrder = { 910 }, level = 65, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (20-23) to (32-37) added Attack Chaos Damage" }, } }, - ["ConvertedNearbyAlliesAddedChaosDamage9"] = { type = "Prefix", affix = "Baleful", "Allies in your Presence deal (24-29) to (38-47) added Attack Chaos Damage", statOrder = { 910 }, level = 75, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (24-29) to (38-47) added Attack Chaos Damage" }, } }, - ["ConvertedAbyssChaosPenetration"] = { type = "Prefix", affix = "Abyssal", "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance", statOrder = { 7616 }, level = 65, group = "LocalChaosPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance" }, } }, - ["ConvertedSoulHybridResistance1"] = { type = "Suffix", affix = "of the Soul", "+(3-41)% to Chaos Resistance", statOrder = { 1023 }, level = 65, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(3-41)% to Chaos Resistance" }, } }, - ["ConvertedAlloyDamageAsExtraColdWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward", statOrder = { 9203 }, level = 25, group = "DamageGainedAsColdWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2888350852] = { "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraColdTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward", statOrder = { 9203 }, level = 25, group = "DamageGainedAsColdWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2888350852] = { "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraLightningWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward", statOrder = { 9215 }, level = 25, group = "DamageGainedAsLightningWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [457920946] = { "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraLightningTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward", statOrder = { 9215 }, level = 25, group = "DamageGainedAsLightningWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [457920946] = { "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraChaosWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward", statOrder = { 9199 }, level = 25, group = "DamageGainedAsChaosWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4011431182] = { "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward" }, } }, - ["ConvertedAlloyDamageAsExtraChaosTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward", statOrder = { 9199 }, level = 25, group = "DamageGainedAsChaosWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4011431182] = { "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward" }, } }, - ["TimeInfluenceIncreasedDuration1"] = { type = "Suffix", affix = "of Chronomancy", "(15-19)% increased Skill Effect Duration", statOrder = { 1643 }, level = 45, group = "SkillEffectDuration", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-19)% increased Skill Effect Duration" }, } }, - ["TimeInfluenceIncreasedDuration2"] = { type = "Suffix", affix = "of Chronomancy", "(20-29)% increased Skill Effect Duration", statOrder = { 1643 }, level = 55, group = "SkillEffectDuration", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(20-29)% increased Skill Effect Duration" }, } }, - ["TimeInfluenceIncreasedDuration3"] = { type = "Suffix", affix = "of Chronomancy", "(30-40)% increased Skill Effect Duration", statOrder = { 1643 }, level = 78, group = "SkillEffectDuration", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(30-40)% increased Skill Effect Duration" }, } }, - ["TimeInfluenceCooldownRecovery1"] = { type = "Suffix", affix = "of Chronomancy", "(12-17)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 45, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(12-17)% increased Cooldown Recovery Rate" }, } }, - ["TimeInfluenceCooldownRecovery2"] = { type = "Suffix", affix = "of Chronomancy", "(18-23)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 55, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(18-23)% increased Cooldown Recovery Rate" }, } }, - ["TimeInfluenceCooldownRecovery3"] = { type = "Suffix", affix = "of Chronomancy", "(24-30)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 78, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(24-30)% increased Cooldown Recovery Rate" }, } }, - ["TimeInfluenceMovementSpeed1"] = { type = "Prefix", affix = "Uhtred's", "(24-26)% increased Movement Speed", "(10-15)% increased Slowing Potency of Debuffs on You", statOrder = { 835, 4735 }, level = 65, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(10-15)% increased Slowing Potency of Debuffs on You" }, [2250533757] = { "(24-26)% increased Movement Speed" }, } }, - ["TimeInfluenceMovementSpeed2"] = { type = "Prefix", affix = "Uhtred's", "(27-29)% increased Movement Speed", "(16-20)% increased Slowing Potency of Debuffs on You", statOrder = { 835, 4735 }, level = 70, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(16-20)% increased Slowing Potency of Debuffs on You" }, [2250533757] = { "(27-29)% increased Movement Speed" }, } }, - ["TimeInfluenceMovementSpeed3"] = { type = "Prefix", affix = "Uhtred's", "(30-32)% increased Movement Speed", "(21-25)% increased Slowing Potency of Debuffs on You", statOrder = { 835, 4735 }, level = 78, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(21-25)% increased Slowing Potency of Debuffs on You" }, [2250533757] = { "(30-32)% increased Movement Speed" }, } }, - ["TimeInfluenceSprintSpeed1"] = { type = "Prefix", affix = "Uhtred's", "(10-14)% increased Movement Speed while Sprinting", statOrder = { 10028 }, level = 45, group = "MovementVelocityWhileSprinting", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(10-14)% increased Movement Speed while Sprinting" }, } }, - ["TimeInfluenceSprintSpeed2"] = { type = "Prefix", affix = "Uhtred's", "(17-23)% increased Movement Speed while Sprinting", statOrder = { 10028 }, level = 78, group = "MovementVelocityWhileSprinting", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(17-23)% increased Movement Speed while Sprinting" }, } }, - ["TimeInfluenceDodgeRoll1"] = { type = "Prefix", affix = "Uhtred's", "+(0.3-0.4) metres to Dodge Roll distance", statOrder = { 6186 }, level = 45, group = "DodgeRollDistance", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [258119672] = { "+(0.3-0.4) metres to Dodge Roll distance" }, } }, - ["TimeInfluenceDodgeRoll2"] = { type = "Prefix", affix = "Uhtred's", "+(0.4-0.5) metres to Dodge Roll distance", statOrder = { 6186 }, level = 78, group = "DodgeRollDistance", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [258119672] = { "+(0.4-0.5) metres to Dodge Roll distance" }, } }, - ["TimeInfluenceCharges1"] = { type = "Suffix", affix = "of Chronomancy", "Skills have (7-10)% chance to not remove Charges but still count as consuming them", statOrder = { 5589 }, level = 45, group = "ChargeChanceToNotConsume", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2942439603] = { "Skills have (7-10)% chance to not remove Charges but still count as consuming them" }, } }, - ["TimeInfluenceCharges2"] = { type = "Suffix", affix = "of Chronomancy", "Skills have (11-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5589 }, level = 78, group = "ChargeChanceToNotConsume", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2942439603] = { "Skills have (11-15)% chance to not remove Charges but still count as consuming them" }, } }, - ["TimeInfluenceDebuffExpiry1"] = { type = "Suffix", affix = "of Chronomancy", "Debuffs on you expire (50-69)% faster", statOrder = { 6085 }, level = 45, group = "DebuffTimePassed", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (50-69)% faster" }, } }, - ["TimeInfluenceDebuffExpiry2"] = { type = "Suffix", affix = "of Chronomancy", "Debuffs on you expire (70-89)% faster", statOrder = { 6085 }, level = 78, group = "DebuffTimePassed", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (70-89)% faster" }, } }, - ["SoulInfluenceIncreasedLifePercent"] = { type = "Prefix", affix = "Medved's", "(1-20)% increased maximum Life", statOrder = { 888 }, level = 65, group = "MaximumLifeIncreasePercent", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(1-20)% increased maximum Life" }, } }, - ["SoulInfluenceIncreasedManaPercent"] = { type = "Prefix", affix = "Medved's", "(1-20)% increased maximum Mana", statOrder = { 893 }, level = 65, group = "MaximumManaIncreasePercent", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(1-20)% increased maximum Mana" }, } }, - ["SoulInfluenceIncreasedSpiritPercent"] = { type = "Prefix", affix = "Medved's", "(1-20)% increased Spirit", statOrder = { 1416 }, level = 65, group = "MaximumSpiritPercentageAllowBaseSpirit", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1416406066] = { "(1-20)% increased Spirit" }, } }, - ["SoulInfluenceReducedAilmentDurationAgainstYou"] = { type = "Suffix", affix = "of the Soul", "(5-50)% reduced Duration of Ailments on You", statOrder = { 4633 }, level = 65, group = "AilmentDurationOnYou", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "poison", "physical", "elemental", "fire", "cold", "lightning", "chaos", "ailment" }, tradeHashes = { [548070846] = { "(5-50)% reduced Duration of Ailments on You" }, } }, - ["SoulInfluenceReducedCriticalDamageAgainstYou"] = { type = "Suffix", affix = "of the Soul", "Hits against you have (10-99)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 65, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (10-99)% reduced Critical Damage Bonus" }, } }, - ["SoulInfluenceFireAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Fire and Chaos Resistances", statOrder = { 6530 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(3-31)% to Fire and Chaos Resistances" }, } }, - ["SoulInfluenceColdAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Cold and Chaos Resistances", statOrder = { 5660 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(3-31)% to Cold and Chaos Resistances" }, } }, - ["SoulInfluenceLightningAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Lightning and Chaos Resistances", statOrder = { 7512 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(3-31)% to Lightning and Chaos Resistances" }, } }, - ["SoulInfluenceConvertedChaosAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(5-47)% to Chaos Resistance", statOrder = { 1023 }, level = 65, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(5-47)% to Chaos Resistance" }, } }, - ["SoulInfluenceIncreasedLifeAndMana"] = { type = "Prefix", affix = "Medved's", "+(19-189) to maximum Life", "+(19-189) to maximum Mana", statOrder = { 886, 891 }, level = 65, group = "BaseLifeAndMana", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1050105434] = { "+(19-189) to maximum Mana" }, [3299347043] = { "+(19-189) to maximum Life" }, } }, - ["SoulInfluenceSpiritDefencesHybridArmourEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Evasion", "+(1-24) to Spirit", statOrder = { 849, 894 }, level = 65, group = "LocalIncreasedArmourAndEvasionAndSpiritNoLife", weightKey = { "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-52)% increased Armour and Evasion" }, [2704225257] = { "+(1-24) to Spirit" }, } }, - ["SoulInfluenceSpiritDefencesHybridArmourEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Energy Shield", "+(1-24) to Spirit", statOrder = { 850, 894 }, level = 65, group = "LocalIncreasedArmourAndEnergyShieldAndSpiritNoLife", weightKey = { "str_dex_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2704225257] = { "+(1-24) to Spirit" }, [3321629045] = { "(6-52)% increased Armour and Energy Shield" }, } }, - ["SoulInfluenceSpiritDefencesHybridEvasionEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion and Energy Shield", "+(1-24) to Spirit", statOrder = { 851, 894 }, level = 65, group = "LocalIncreasedEvasionAndEnergyShieldAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2704225257] = { "+(1-24) to Spirit" }, [1999113824] = { "(6-52)% increased Evasion and Energy Shield" }, } }, - ["SoulInfluenceSpiritDefencesHybridArmour"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour", "+(1-24) to Spirit", statOrder = { 845, 894 }, level = 65, group = "LocalIncreasedArmourAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(6-52)% increased Armour" }, [2704225257] = { "+(1-24) to Spirit" }, } }, - ["SoulInfluenceSpiritDefencesHybridEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion Rating", "+(1-24) to Spirit", statOrder = { 847, 894 }, level = 65, group = "LocalIncreasedEvasionAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(6-52)% increased Evasion Rating" }, [2704225257] = { "+(1-24) to Spirit" }, } }, - ["SoulInfluenceSpiritDefencesHybridEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Energy Shield", "+(1-24) to Spirit", statOrder = { 848, 894 }, level = 65, group = "LocalIncreasedEnergyShieldAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-52)% increased Energy Shield" }, [2704225257] = { "+(1-24) to Spirit" }, } }, - ["SoulInfluenceManaDefencesHybridArmourEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Evasion", "+(7-57) to maximum Mana", statOrder = { 849, 891 }, level = 65, group = "LocalIncreasedArmourAndEvasionAndManaNoLife", weightKey = { "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-52)% increased Armour and Evasion" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, - ["SoulInfluenceManaDefencesHybridArmourEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Energy Shield", "+(7-57) to maximum Mana", statOrder = { 850, 891 }, level = 65, group = "LocalIncreasedArmourAndEnergyShieldAndManaNoLife", weightKey = { "str_dex_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(7-57) to maximum Mana" }, [3321629045] = { "(6-52)% increased Armour and Energy Shield" }, } }, - ["SoulInfluenceManaDefencesHybridEvasionEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion and Energy Shield", "+(7-57) to maximum Mana", statOrder = { 851, 891 }, level = 65, group = "LocalIncreasedEvasionAndEnergyShieldAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(7-57) to maximum Mana" }, [1999113824] = { "(6-52)% increased Evasion and Energy Shield" }, } }, - ["SoulInfluenceManaDefencesHybridArmour"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour", "+(7-57) to maximum Mana", statOrder = { 845, 891 }, level = 65, group = "LocalIncreasedArmourAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(6-52)% increased Armour" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, - ["SoulInfluenceManaDefencesHybridEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion Rating", "+(7-57) to maximum Mana", statOrder = { 847, 891 }, level = 65, group = "LocalIncreasedEvasionAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(6-52)% increased Evasion Rating" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, - ["SoulInfluenceManaDefencesHybridEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Energy Shield", "+(7-57) to maximum Mana", statOrder = { 848, 891 }, level = 65, group = "LocalIncreasedEnergyShieldAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-52)% increased Energy Shield" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, - ["BerserkInfluenceMaximumRage1"] = { type = "Prefix", affix = "Vorana's", "+(4-7) to Maximum Rage", statOrder = { 9568 }, level = 45, group = "MaximumRage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(4-7) to Maximum Rage" }, } }, - ["BerserkInfluenceMaximumRage2"] = { type = "Prefix", affix = "Vorana's", "+(8-12) to Maximum Rage", statOrder = { 9568 }, level = 75, group = "MaximumRage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(8-12) to Maximum Rage" }, } }, - ["BerserkInfluenceDamageWithWarcries1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased Damage with Warcries", statOrder = { 10467 }, level = 45, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(20-34)% increased Damage with Warcries" }, } }, - ["BerserkInfluenceDamageWithWarcries2"] = { type = "Prefix", affix = "Vorana's", "(35-49)% increased Damage with Warcries", statOrder = { 10467 }, level = 65, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(35-49)% increased Damage with Warcries" }, } }, - ["BerserkInfluenceDamageWithWarcries3"] = { type = "Prefix", affix = "Vorana's", "(50-75)% increased Damage with Warcries", statOrder = { 10467 }, level = 75, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(50-75)% increased Damage with Warcries" }, } }, - ["BerserkInfluencePowerWithWarcries1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased total Power counted by Warcries", statOrder = { 10470 }, level = 45, group = "WarcryPower", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2663359259] = { "(20-34)% increased total Power counted by Warcries" }, } }, - ["BerserkInfluencePowerWithWarcries2"] = { type = "Prefix", affix = "Vorana's", "(35-55)% increased total Power counted by Warcries", statOrder = { 10470 }, level = 75, group = "WarcryPower", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2663359259] = { "(35-55)% increased total Power counted by Warcries" }, } }, - ["BerserkInfluenceArmourBreakMagnitude1"] = { type = "Prefix", affix = "Vorana's", "(15-24)% increased effect of Fully Broken Armour", statOrder = { 5224 }, level = 45, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(15-24)% increased effect of Fully Broken Armour" }, } }, - ["BerserkInfluenceArmourBreakMagnitude2"] = { type = "Prefix", affix = "Vorana's", "(25-39)% increased effect of Fully Broken Armour", statOrder = { 5224 }, level = 65, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(25-39)% increased effect of Fully Broken Armour" }, } }, - ["BerserkInfluenceArmourBreakMagnitude3"] = { type = "Prefix", affix = "Vorana's", "(40-60)% increased effect of Fully Broken Armour", statOrder = { 5224 }, level = 75, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(40-60)% increased effect of Fully Broken Armour" }, } }, - ["BerserkInfluenceGloryGeneration1"] = { type = "Prefix", affix = "Vorana's", "(20-49)% increased Glory generation", statOrder = { 6891 }, level = 45, group = "GloryGeneration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3143918757] = { "(20-49)% increased Glory generation" }, } }, - ["BerserkInfluenceGloryGeneration2"] = { type = "Prefix", affix = "Vorana's", "(50-85)% increased Glory generation", statOrder = { 6891 }, level = 75, group = "GloryGeneration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3143918757] = { "(50-85)% increased Glory generation" }, } }, - ["BerserkInfluenceRageCostEfficiency1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased Rage Cost Efficiency", statOrder = { 4728 }, level = 45, group = "RageCostEfficiency", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2416650879] = { "(20-34)% increased Rage Cost Efficiency" }, } }, - ["BerserkInfluenceRageCostEfficiency2"] = { type = "Prefix", affix = "Vorana's", "(35-60)% increased Rage Cost Efficiency", statOrder = { 4728 }, level = 75, group = "RageCostEfficiency", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2416650879] = { "(35-60)% increased Rage Cost Efficiency" }, } }, - ["BerserkInfluenceRageLossDelay1"] = { type = "Suffix", affix = "of the Berserker", "Inherent Rage loss starts 1 second later", statOrder = { 9581 }, level = 45, group = "RageLossDelay", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3987691524] = { "Inherent Rage loss starts 1 second later" }, } }, - ["BerserkInfluenceRageLossDelay2"] = { type = "Suffix", affix = "of the Berserker", "Inherent Rage loss starts (3-5) seconds later", statOrder = { 9581 }, level = 75, group = "RageLossDelay", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3987691524] = { "Inherent Rage loss starts (3-5) seconds later" }, } }, - ["BerserkInfluenceRageWhenHit1"] = { type = "Suffix", affix = "of the Berserker", "Gain (4-5) Rage when Hit by an Enemy", statOrder = { 6852 }, level = 45, group = "GainRageWhenHit", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (4-5) Rage when Hit by an Enemy" }, } }, - ["BerserkInfluenceRageWhenHit2"] = { type = "Suffix", affix = "of the Berserker", "Gain (6-10) Rage when Hit by an Enemy", statOrder = { 6852 }, level = 75, group = "GainRageWhenHit", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (6-10) Rage when Hit by an Enemy" }, } }, - ["BerserkInfluenceWarcrySpeed1"] = { type = "Suffix", affix = "of the Berserker", "(23-36)% increased Warcry Speed", statOrder = { 2987 }, level = 45, group = "WarcrySpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(23-36)% increased Warcry Speed" }, } }, - ["BerserkInfluenceWarcrySpeed2"] = { type = "Suffix", affix = "of the Berserker", "(37-50)% increased Warcry Speed", statOrder = { 2987 }, level = 75, group = "WarcrySpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(37-50)% increased Warcry Speed" }, } }, - ["BerserkInfluenceWarcryCooldown1"] = { type = "Suffix", affix = "of the Berserker", "(23-36)% increased Warcry Cooldown Recovery Rate", statOrder = { 3033 }, level = 45, group = "WarcryCooldownSpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(23-36)% increased Warcry Cooldown Recovery Rate" }, } }, - ["BerserkInfluenceWarcryCooldown2"] = { type = "Suffix", affix = "of the Berserker", "(37-50)% increased Warcry Cooldown Recovery Rate", statOrder = { 3033 }, level = 75, group = "WarcryCooldownSpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(37-50)% increased Warcry Cooldown Recovery Rate" }, } }, - ["BerserkInfluenceWarcryArea1"] = { type = "Suffix", affix = "of the Berserker", "Warcry Skills have (15-29)% increased Area of Effect", statOrder = { 10472 }, level = 45, group = "WarcryAreaOfEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (15-29)% increased Area of Effect" }, } }, - ["BerserkInfluenceWarcryArea2"] = { type = "Suffix", affix = "of the Berserker", "Warcry Skills have (30-50)% increased Area of Effect", statOrder = { 10472 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (30-50)% increased Area of Effect" }, } }, - ["BerserkInfluenceWarcryLifeRecovery1"] = { type = "Suffix", affix = "of the Berserker", "Recover (2-3)% of maximum Life when you use a Warcry", statOrder = { 2917 }, level = 45, group = "RecoverLifeOnWarcry", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1040141381] = { "Recover (2-3)% of maximum Life when you use a Warcry" }, } }, - ["BerserkInfluenceWarcryLifeRecovery2"] = { type = "Suffix", affix = "of the Berserker", "Recover (4-5)% of maximum Life when you use a Warcry", statOrder = { 2917 }, level = 75, group = "RecoverLifeOnWarcry", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1040141381] = { "Recover (4-5)% of maximum Life when you use a Warcry" }, } }, - ["BerserkInfluenceArmourBreakDuration1"] = { type = "Suffix", affix = "of the Berserker", "(50-99)% increased Armour Break Duration", statOrder = { 4399 }, level = 45, group = "ArmourBreakDuration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(50-99)% increased Armour Break Duration" }, } }, - ["BerserkInfluenceArmourBreakDuration2"] = { type = "Suffix", affix = "of the Berserker", "(100-150)% increased Armour Break Duration", statOrder = { 4399 }, level = 75, group = "ArmourBreakDuration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(100-150)% increased Armour Break Duration" }, } }, - ["BerserkInfluenceAdditionalCombo1"] = { type = "Suffix", affix = "of the Berserker", "(20-39)% chance to build an additional Combo on Hit", statOrder = { 4175 }, level = 45, group = "ChanceToGenerateAdditionalCombo", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4258524206] = { "(20-39)% chance to build an additional Combo on Hit" }, } }, - ["BerserkInfluenceAdditionalCombo2"] = { type = "Suffix", affix = "of the Berserker", "(40-60)% chance to build an additional Combo on Hit", statOrder = { 4175 }, level = 75, group = "ChanceToGenerateAdditionalCombo", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4258524206] = { "(40-60)% chance to build an additional Combo on Hit" }, } }, - ["DestructionInfluencePhysicalModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(10-15)% increased Explicit Physical Modifier magnitudes", statOrder = { 43 }, level = 65, group = "DestructionInfluencePhysicalModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1335369947] = { "(10-15)% increased Explicit Physical Modifier magnitudes" }, } }, - ["DestructionInfluenceFireModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Fire Modifier magnitudes", statOrder = { 39 }, level = 65, group = "DestructionInfluenceFireModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3574578302] = { "(15-20)% increased Explicit Fire Modifier magnitudes" }, } }, - ["DestructionInfluenceLightningModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Lightning Modifier magnitudes", statOrder = { 41 }, level = 65, group = "DestructionInfluenceLightningModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [3624940721] = { "(15-20)% increased Explicit Lightning Modifier magnitudes" }, } }, - ["DestructionInfluenceColdModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Cold Modifier magnitudes", statOrder = { 35 }, level = 65, group = "DestructionInfluenceColdModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3206904707] = { "(15-20)% increased Explicit Cold Modifier magnitudes" }, } }, - ["DestructionInfluenceElementalModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Elemental Damage Modifier magnitudes", statOrder = { 46 }, level = 65, group = "DestructionInfluenceElementalModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental" }, tradeHashes = { [231689132] = { "(15-20)% increased Explicit Elemental Damage Modifier magnitudes" }, } }, - ["DestructionInfluenceChaosModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Chaos Modifier magnitudes", statOrder = { 34 }, level = 65, group = "DestructionInfluenceChaosModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3196512240] = { "(15-20)% increased Explicit Chaos Modifier magnitudes" }, } }, - ["DestructionInfluenceManaModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(25-30)% increased Explicit Mana Modifier magnitudes", statOrder = { 42 }, level = 65, group = "DestructionInfluenceManaModifierEffect", weightKey = { "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "crossbow", "warstaff", "talisman", "destruction", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3514984677] = { "(25-30)% increased Explicit Mana Modifier magnitudes" }, } }, - ["DestructionInfluenceSpeedModifierEffect"] = { type = "Prefix", affix = "Thrud's", "(25-30)% increased Explicit Speed Modifier magnitudes", statOrder = { 45 }, level = 65, group = "DestructionInfluenceSpeedModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [363924732] = { "(25-30)% increased Explicit Speed Modifier magnitudes" }, } }, - ["DestructionInfluenceCriticalModifierEffect"] = { type = "Prefix", affix = "Thrud's", "(20-30)% increased Explicit Critical Modifier magnitudes", statOrder = { 36 }, level = 65, group = "DestructionInfluenceCriticalModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [2393315299] = { "(20-30)% increased Explicit Critical Modifier magnitudes" }, } }, - ["DecayInfluenceIgniteMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-34)% increased Ignite Magnitude", statOrder = { 1076 }, level = 45, group = "IgniteEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(20-34)% increased Ignite Magnitude" }, } }, - ["DecayInfluenceIgniteMagnitude2"] = { type = "Prefix", affix = "Katla's", "(35-50)% increased Ignite Magnitude", statOrder = { 1076 }, level = 75, group = "IgniteEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(35-50)% increased Ignite Magnitude" }, } }, - ["DecayInfluenceBleedMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-29)% increased Magnitude of Bleeding you inflict", statOrder = { 4797 }, level = 45, group = "BleedDotMultiplier", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(20-29)% increased Magnitude of Bleeding you inflict" }, } }, - ["DecayInfluenceBleedMagnitude2"] = { type = "Prefix", affix = "Katla's", "(30-42)% increased Magnitude of Bleeding you inflict", statOrder = { 4797 }, level = 75, group = "BleedDotMultiplier", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(30-42)% increased Magnitude of Bleeding you inflict" }, } }, - ["DecayInfluencePoisonMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-29)% increased Magnitude of Poison you inflict", statOrder = { 9457 }, level = 45, group = "PoisonEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(20-29)% increased Magnitude of Poison you inflict" }, } }, - ["DecayInfluencePoisonMagnitude2"] = { type = "Prefix", affix = "Katla's", "(30-42)% increased Magnitude of Poison you inflict", statOrder = { 9457 }, level = 75, group = "PoisonEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(30-42)% increased Magnitude of Poison you inflict" }, } }, - ["DecayInfluenceAilmentMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-25)% increased Magnitude of Ailments you inflict", statOrder = { 4249 }, level = 45, group = "AilmentEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(20-25)% increased Magnitude of Ailments you inflict" }, } }, - ["DecayInfluenceAilmentMagnitude2"] = { type = "Prefix", affix = "Katla's", "(26-32)% increased Magnitude of Ailments you inflict", statOrder = { 4249 }, level = 75, group = "AilmentEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(26-32)% increased Magnitude of Ailments you inflict" }, } }, - ["DecayInfluenceFasterDamagingAilments1"] = { type = "Prefix", affix = "Katla's", "Damaging Ailments deal damage (8-13)% faster", statOrder = { 6054 }, level = 45, group = "FasterAilmentDamage", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (8-13)% faster" }, } }, - ["DecayInfluenceFasterDamagingAilments2"] = { type = "Prefix", affix = "Katla's", "Damaging Ailments deal damage (14-20)% faster", statOrder = { 6054 }, level = 75, group = "FasterAilmentDamage", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (14-20)% faster" }, } }, - ["DecayInfluenceAilmentDuration1"] = { type = "Suffix", affix = "of Decay", "(10-19)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6051 }, level = 45, group = "DamagingAilmentDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(10-19)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["DecayInfluenceAilmentDuration2"] = { type = "Suffix", affix = "of Decay", "(20-30)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6051 }, level = 75, group = "DamagingAilmentDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(20-30)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["DecayInfluenceFasterLeech1"] = { type = "Suffix", affix = "of Decay", "Leech (8-12)% of Physical Attack Damage as Life", "Leech Life (15-25)% faster", statOrder = { 1037, 1894 }, level = 45, group = "LeechAndLeechSpeed", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-12)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (15-25)% faster" }, } }, - ["DecayInfluenceSlowerLeech1"] = { type = "Suffix", affix = "of Decay", "Leech (8-12)% of Physical Attack Damage as Life", "Leech Life (15-25)% slower", statOrder = { 1037, 1894 }, level = 45, group = "LeechAndLeechSpeed", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-12)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (15-25)% slower" }, } }, - ["DecayInfluenceLeechAmount1"] = { type = "Suffix", affix = "of Decay", "(30-40)% increased amount of Life Leeched", statOrder = { 1893 }, level = 45, group = "IncreasedLifeLeechAmountGloves", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2112395885] = { "(30-40)% increased amount of Life Leeched" }, } }, - ["DecayInfluenceWitherMagnitude1"] = { type = "Suffix", affix = "of Decay", "(15-24)% increased Withered Magnitude", statOrder = { 10514 }, level = 45, group = "WitheredEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(15-24)% increased Withered Magnitude" }, } }, - ["DecayInfluenceWitherMagnitude2"] = { type = "Suffix", affix = "of Decay", "(25-35)% increased Withered Magnitude", statOrder = { 10514 }, level = 75, group = "WitheredEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(25-35)% increased Withered Magnitude" }, } }, - ["DecayInfluenceCurseMagnitude1"] = { type = "Suffix", affix = "of Decay", "(15-21)% increased Curse Magnitudes", statOrder = { 2374 }, level = 45, group = "CurseEffectiveness", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(15-21)% increased Curse Magnitudes" }, } }, - ["DecayInfluenceCurseMagnitude2"] = { type = "Suffix", affix = "of Decay", "(22-29)% increased Curse Magnitudes", statOrder = { 2374 }, level = 75, group = "CurseEffectiveness", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(22-29)% increased Curse Magnitudes" }, } }, - ["DecayInfluenceExposureEffect1"] = { type = "Suffix", affix = "of Decay", "(20-34)% increased Exposure Effect", statOrder = { 6510 }, level = 45, group = "ElementalExposureEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(20-34)% increased Exposure Effect" }, } }, - ["DecayInfluenceExposureEffect2"] = { type = "Suffix", affix = "of Decay", "(35-50)% increased Exposure Effect", statOrder = { 6510 }, level = 75, group = "ElementalExposureEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(35-50)% increased Exposure Effect" }, } }, - ["DecayInfluenceIncreasedCurseDuration1"] = { type = "Suffix", affix = "of Decay", "(50-99)% increased Curse Duration", statOrder = { 1538 }, level = 75, group = "BaseCurseDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3824372849] = { "(50-99)% increased Curse Duration" }, } }, - ["DecayInfluenceFasterCurseActivation1"] = { type = "Suffix", affix = "of Decay", "(20-30)% faster Curse Activation", statOrder = { 5910 }, level = 75, group = "CurseDelay", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(20-30)% faster Curse Activation" }, } }, - ["MarksmanInfluenceProjectileDamage1"] = { type = "Prefix", affix = "Kolr's", "(11-20)% increased Projectile Damage", statOrder = { 1736 }, level = 45, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(11-20)% increased Projectile Damage" }, } }, - ["MarksmanInfluenceProjectileDamage2"] = { type = "Prefix", affix = "Kolr's", "(21-30)% increased Projectile Damage", statOrder = { 1736 }, level = 65, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(21-30)% increased Projectile Damage" }, } }, - ["MarksmanInfluenceProjectileDamage3"] = { type = "Prefix", affix = "Kolr's", "(31-40)% increased Projectile Damage", statOrder = { 1736 }, level = 75, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(31-40)% increased Projectile Damage" }, } }, - ["MarksmanInfluenceMarkEffect1"] = { type = "Prefix", affix = "Kolr's", "(15-24)% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 45, group = "MarkEffect", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [712554801] = { "(15-24)% increased Effect of your Mark Skills" }, } }, - ["MarksmanInfluenceMarkEffect2"] = { type = "Prefix", affix = "Kolr's", "(25-39)% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 65, group = "MarkEffect", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [712554801] = { "(25-39)% increased Effect of your Mark Skills" }, } }, - ["MarksmanInfluenceProjectileSpeed1"] = { type = "Prefix", affix = "Kolr's", "(11-20)% increased Projectile Speed", statOrder = { 896 }, level = 45, group = "ProjectileSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(11-20)% increased Projectile Speed" }, } }, - ["MarksmanInfluenceProjectileSpeed2"] = { type = "Prefix", affix = "Kolr's", "(21-30)% increased Projectile Speed", statOrder = { 896 }, level = 65, group = "ProjectileSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(21-30)% increased Projectile Speed" }, } }, - ["MarksmanInfluenceProjectileSpeed3"] = { type = "Prefix", affix = "Kolr's", "(31-40)% increased Projectile Speed", statOrder = { 896 }, level = 75, group = "ProjectileSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(31-40)% increased Projectile Speed" }, } }, - ["MarksmanInfluenceCriticalHitChance1"] = { type = "Suffix", affix = "of the Hunt", "(16-21)% increased Critical Hit Chance", statOrder = { 975 }, level = 45, group = "CriticalStrikeChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(16-21)% increased Critical Hit Chance" }, } }, - ["MarksmanInfluenceCriticalHitChance2"] = { type = "Suffix", affix = "of the Hunt", "(22-27)% increased Critical Hit Chance", statOrder = { 975 }, level = 65, group = "CriticalStrikeChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(22-27)% increased Critical Hit Chance" }, } }, - ["MarksmanInfluenceCriticalHitChance3"] = { type = "Suffix", affix = "of the Hunt", "(28-34)% increased Critical Hit Chance", statOrder = { 975 }, level = 75, group = "CriticalStrikeChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(28-34)% increased Critical Hit Chance" }, } }, - ["MarksmanInfluenceChanceToPierce1"] = { type = "Suffix", affix = "of the Hunt", "(25-50)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 45, group = "ChanceToPierce", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(25-50)% chance to Pierce an Enemy" }, } }, - ["MarksmanInfluenceChanceToPierce2"] = { type = "Suffix", affix = "of the Hunt", "(51-100)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 75, group = "ChanceToPierce", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(51-100)% chance to Pierce an Enemy" }, } }, - ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = { type = "Suffix", affix = "of the Hunt", "+(23-36)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 45, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(23-36)% Surpassing chance to fire an additional Projectile" }, } }, - ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = { type = "Suffix", affix = "of the Hunt", "+(37-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 65, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(37-50)% Surpassing chance to fire an additional Projectile" }, } }, - ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { type = "Suffix", affix = "of the Hunt", "+(51-66)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 75, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(51-66)% Surpassing chance to fire an additional Projectile" }, } }, - ["MarksmanInfluenceChainToChainOffTerrain1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (10-19)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 45, group = "ChainFromTerrain", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-19)% chance to Chain an additional time from terrain" }, } }, - ["MarksmanInfluenceChainToChainOffTerrain2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (20-32)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 75, group = "ChainFromTerrain", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (20-32)% chance to Chain an additional time from terrain" }, } }, - ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (25-50)% chance for an additional Projectile when Forking", statOrder = { 5502 }, level = 45, group = "ForkingProjectiles", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (25-50)% chance for an additional Projectile when Forking" }, } }, - ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (51-100)% chance for an additional Projectile when Forking", statOrder = { 5502 }, level = 75, group = "ForkingProjectiles", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (51-100)% chance for an additional Projectile when Forking" }, } }, - ["MarksmanInfluenceIncreasedMarkDuration1"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (50-74)% increased Skill Effect Duration", statOrder = { 8787 }, level = 45, group = "MarkDuration", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (50-74)% increased Skill Effect Duration" }, } }, - ["MarksmanInfluenceIncreasedMarkDuration2"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (75-100)% increased Skill Effect Duration", statOrder = { 8787 }, level = 75, group = "MarkDuration", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (75-100)% increased Skill Effect Duration" }, } }, - ["MarksmanInfluenceMarkSkillUseSpeed1"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (13-23)% increased Use Speed", statOrder = { 1944 }, level = 45, group = "MarkUseSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1714971114] = { "Mark Skills have (13-23)% increased Use Speed" }, } }, - ["MarksmanInfluenceMarkSkillUseSpeed2"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (24-39)% increased Use Speed", statOrder = { 1944 }, level = 75, group = "MarkUseSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1714971114] = { "Mark Skills have (24-39)% increased Use Speed" }, } }, - ["MarksmanInfluenceMarkSkillLevels1"] = { type = "Suffix", affix = "of the Hunt", "+(1-2) to Level of all Mark Skills", statOrder = { 8788 }, level = 45, group = "MarkSkillGemLevels", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1992191903] = { "+(1-2) to Level of all Mark Skills" }, } }, - ["MarksmanInfluenceMarkSkillLevels2"] = { type = "Suffix", affix = "of the Hunt", "+(3-4) to Level of all Mark Skills", statOrder = { 8788 }, level = 65, group = "MarkSkillGemLevels", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1992191903] = { "+(3-4) to Level of all Mark Skills" }, } }, - ["MarksmanInfluenceProjectileSkills1"] = { type = "Suffix", affix = "of the Hunt", "+1 to Level of all Projectile Skills", statOrder = { 967 }, level = 45, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, - ["MarksmanInfluenceProjectileSkills2"] = { type = "Suffix", affix = "of the Hunt", "+2 to Level of all Projectile Skills", statOrder = { 967 }, level = 65, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, + ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(5-8) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-8) to Strength" }, } }, + ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(9-12) to Strength", statOrder = { 947 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(9-12) to Strength" }, } }, + ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(13-16) to Strength", statOrder = { 947 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(13-16) to Strength" }, } }, + ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(17-20) to Strength", statOrder = { 947 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(17-20) to Strength" }, } }, + ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(21-24) to Strength", statOrder = { 947 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(21-24) to Strength" }, } }, + ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(25-27) to Strength", statOrder = { 947 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(25-27) to Strength" }, } }, + ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(28-30) to Strength", statOrder = { 947 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(28-30) to Strength" }, } }, + ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(31-33) to Strength", statOrder = { 947 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(31-33) to Strength" }, } }, + ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(34-36) to Strength", statOrder = { 947 }, level = 81, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(34-36) to Strength" }, } }, + ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(5-8) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-8) to Dexterity" }, } }, + ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(9-12) to Dexterity", statOrder = { 948 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(9-12) to Dexterity" }, } }, + ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(13-16) to Dexterity", statOrder = { 948 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(13-16) to Dexterity" }, } }, + ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(17-20) to Dexterity", statOrder = { 948 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(17-20) to Dexterity" }, } }, + ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(21-24) to Dexterity", statOrder = { 948 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(21-24) to Dexterity" }, } }, + ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(25-27) to Dexterity", statOrder = { 948 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(25-27) to Dexterity" }, } }, + ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(28-30) to Dexterity", statOrder = { 948 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(28-30) to Dexterity" }, } }, + ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(31-33) to Dexterity", statOrder = { 948 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(31-33) to Dexterity" }, } }, + ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(34-36) to Dexterity", statOrder = { 948 }, level = 81, group = "Dexterity", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(34-36) to Dexterity" }, } }, + ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(5-8) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-8) to Intelligence" }, } }, + ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(9-12) to Intelligence", statOrder = { 949 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(9-12) to Intelligence" }, } }, + ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(13-16) to Intelligence", statOrder = { 949 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(13-16) to Intelligence" }, } }, + ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(17-20) to Intelligence", statOrder = { 949 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(17-20) to Intelligence" }, } }, + ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(21-24) to Intelligence", statOrder = { 949 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(21-24) to Intelligence" }, } }, + ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(25-27) to Intelligence", statOrder = { 949 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(25-27) to Intelligence" }, } }, + ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(28-30) to Intelligence", statOrder = { 949 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(28-30) to Intelligence" }, } }, + ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(31-33) to Intelligence", statOrder = { 949 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(31-33) to Intelligence" }, } }, + ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(34-36) to Intelligence", statOrder = { 949 }, level = 81, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(34-36) to Intelligence" }, } }, + ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(2-4) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(2-4) to all Attributes" }, } }, + ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-7) to all Attributes", statOrder = { 946 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-7) to all Attributes" }, } }, + ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(8-10) to all Attributes", statOrder = { 946 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-10) to all Attributes" }, } }, + ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(11-13) to all Attributes", statOrder = { 946 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(11-13) to all Attributes" }, } }, + ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(14-16) to all Attributes", statOrder = { 946 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(14-16) to all Attributes" }, } }, + ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(17-18) to all Attributes", statOrder = { 946 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(17-18) to all Attributes" }, } }, + ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(19-20) to all Attributes", statOrder = { 946 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(19-20) to all Attributes" }, } }, + ["AllAttributes8"] = { type = "Suffix", affix = "of the Multiverse", "+(21-22) to all Attributes", statOrder = { 946 }, level = 75, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-22) to all Attributes" }, } }, + ["AllAttributes9_"] = { type = "Suffix", affix = "of the Infinite", "+(23-24) to all Attributes", statOrder = { 946 }, level = 82, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(23-24) to all Attributes" }, } }, + ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(6-10)% to Fire Resistance" }, } }, + ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(11-15)% to Fire Resistance", statOrder = { 958 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(11-15)% to Fire Resistance" }, } }, + ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(16-20)% to Fire Resistance", statOrder = { 958 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(16-20)% to Fire Resistance" }, } }, + ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(21-25)% to Fire Resistance", statOrder = { 958 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, + ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(26-30)% to Fire Resistance", statOrder = { 958 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(26-30)% to Fire Resistance" }, } }, + ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(31-35)% to Fire Resistance", statOrder = { 958 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(31-35)% to Fire Resistance" }, } }, + ["FireResist7"] = { type = "Suffix", affix = "of Magma", "+(36-40)% to Fire Resistance", statOrder = { 958 }, level = 71, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, + ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(41-45)% to Fire Resistance", statOrder = { 958 }, level = 82, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(41-45)% to Fire Resistance" }, } }, + ["ColdResist1"] = { type = "Suffix", affix = "of the Seal", "+(6-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(6-10)% to Cold Resistance" }, } }, + ["ColdResist2"] = { type = "Suffix", affix = "of the Penguin", "+(11-15)% to Cold Resistance", statOrder = { 959 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(11-15)% to Cold Resistance" }, } }, + ["ColdResist3"] = { type = "Suffix", affix = "of the Narwhal", "+(16-20)% to Cold Resistance", statOrder = { 959 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(16-20)% to Cold Resistance" }, } }, + ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(21-25)% to Cold Resistance", statOrder = { 959 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, } }, + ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(26-30)% to Cold Resistance", statOrder = { 959 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-30)% to Cold Resistance" }, } }, + ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(31-35)% to Cold Resistance", statOrder = { 959 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-35)% to Cold Resistance" }, } }, + ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(36-40)% to Cold Resistance", statOrder = { 959 }, level = 71, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, } }, + ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(41-45)% to Cold Resistance", statOrder = { 959 }, level = 82, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(41-45)% to Cold Resistance" }, } }, + ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-10)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(6-10)% to Lightning Resistance" }, } }, + ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(11-15)% to Lightning Resistance", statOrder = { 960 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(11-15)% to Lightning Resistance" }, } }, + ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(16-20)% to Lightning Resistance", statOrder = { 960 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(16-20)% to Lightning Resistance" }, } }, + ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(21-25)% to Lightning Resistance", statOrder = { 960 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, + ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(26-30)% to Lightning Resistance", statOrder = { 960 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(26-30)% to Lightning Resistance" }, } }, + ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(31-35)% to Lightning Resistance", statOrder = { 960 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(31-35)% to Lightning Resistance" }, } }, + ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(36-40)% to Lightning Resistance", statOrder = { 960 }, level = 71, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, + ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(41-45)% to Lightning Resistance", statOrder = { 960 }, level = 82, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(41-45)% to Lightning Resistance" }, } }, + ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 957 }, level = 12, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(3-5)% to all Elemental Resistances" }, } }, + ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 957 }, level = 26, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(6-8)% to all Elemental Resistances" }, } }, + ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 957 }, level = 40, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(9-11)% to all Elemental Resistances" }, } }, + ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 957 }, level = 54, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(12-14)% to all Elemental Resistances" }, } }, + ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 957 }, level = 68, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } }, + ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 957 }, level = 80, group = "AllResistances", weightKey = { "str_int_shield", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances1"] = { type = "Suffix", affix = "of Adjustment", "Allies in your Presence have +(3-5)% to all Elemental Resistances", statOrder = { 895 }, level = 12, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(3-5)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances2"] = { type = "Suffix", affix = "of Acclimatisation", "Allies in your Presence have +(6-8)% to all Elemental Resistances", statOrder = { 895 }, level = 26, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(6-8)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances3"] = { type = "Suffix", affix = "of Adaptation", "Allies in your Presence have +(9-11)% to all Elemental Resistances", statOrder = { 895 }, level = 40, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(9-11)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances4"] = { type = "Suffix", affix = "of Evolution", "Allies in your Presence have +(12-14)% to all Elemental Resistances", statOrder = { 895 }, level = 54, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(12-14)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances5"] = { type = "Suffix", affix = "of Progression", "Allies in your Presence have +(15-16)% to all Elemental Resistances", statOrder = { 895 }, level = 68, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(15-16)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances6"] = { type = "Suffix", affix = "of Metamorphosis", "Allies in your Presence have +(17-18)% to all Elemental Resistances", statOrder = { 895 }, level = 80, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(17-18)% to all Elemental Resistances" }, } }, + ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(4-7)% to Chaos Resistance", statOrder = { 961 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(4-7)% to Chaos Resistance" }, } }, + ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(8-11)% to Chaos Resistance", statOrder = { 961 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-11)% to Chaos Resistance" }, } }, + ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(12-15)% to Chaos Resistance", statOrder = { 961 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-15)% to Chaos Resistance" }, } }, + ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(16-19)% to Chaos Resistance", statOrder = { 961 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-19)% to Chaos Resistance" }, } }, + ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(20-23)% to Chaos Resistance", statOrder = { 961 }, level = 68, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-23)% to Chaos Resistance" }, } }, + ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(24-27)% to Chaos Resistance", statOrder = { 961 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(24-27)% to Chaos Resistance" }, } }, + ["IncreasedLife1"] = { type = "Prefix", affix = "Hale", "+(10-19) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-19) to maximum Life" }, } }, + ["IncreasedLife2"] = { type = "Prefix", affix = "Healthy", "+(20-29) to maximum Life", statOrder = { 869 }, level = 6, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-29) to maximum Life" }, } }, + ["IncreasedLife3"] = { type = "Prefix", affix = "Sanguine", "+(30-39) to maximum Life", statOrder = { 869 }, level = 16, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-39) to maximum Life" }, } }, + ["IncreasedLife4"] = { type = "Prefix", affix = "Stalwart", "+(40-59) to maximum Life", statOrder = { 869 }, level = 24, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-59) to maximum Life" }, } }, + ["IncreasedLife5"] = { type = "Prefix", affix = "Stout", "+(60-69) to maximum Life", statOrder = { 869 }, level = 33, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-69) to maximum Life" }, } }, + ["IncreasedLife6"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 869 }, level = 38, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-84) to maximum Life" }, } }, + ["IncreasedLife7"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 869 }, level = 46, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(85-99) to maximum Life" }, } }, + ["IncreasedLife8"] = { type = "Prefix", affix = "Virile", "+(100-119) to maximum Life", statOrder = { 869 }, level = 54, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-119) to maximum Life" }, } }, + ["IncreasedLife9"] = { type = "Prefix", affix = "Athlete's", "+(120-149) to maximum Life", statOrder = { 869 }, level = 60, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-149) to maximum Life" }, } }, + ["IncreasedLife10"] = { type = "Prefix", affix = "Fecund", "+(150-174) to maximum Life", statOrder = { 869 }, level = 65, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(150-174) to maximum Life" }, } }, + ["IncreasedLife11"] = { type = "Prefix", affix = "Vigorous", "+(175-189) to maximum Life", statOrder = { 869 }, level = 70, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(175-189) to maximum Life" }, } }, + ["IncreasedLife12"] = { type = "Prefix", affix = "Rapturous", "+(190-199) to maximum Life", statOrder = { 869 }, level = 75, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(190-199) to maximum Life" }, } }, + ["IncreasedLife13"] = { type = "Prefix", affix = "Prime", "+(200-214) to maximum Life", statOrder = { 869 }, level = 80, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-214) to maximum Life" }, } }, + ["MaximumLifeIncrease1"] = { type = "Prefix", affix = "Hopeful", "(3-4)% increased maximum Life", statOrder = { 870 }, level = 33, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-4)% increased maximum Life" }, } }, + ["MaximumLifeIncrease2"] = { type = "Prefix", affix = "Optimistic", "(5-6)% increased maximum Life", statOrder = { 870 }, level = 60, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } }, + ["MaximumLifeIncrease3"] = { type = "Prefix", affix = "Confident", "(7-8)% increased maximum Life", statOrder = { 870 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-8)% increased maximum Life" }, } }, + ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(10-14) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-14) to maximum Mana" }, } }, + ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(15-24) to maximum Mana", statOrder = { 871 }, level = 6, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-24) to maximum Mana" }, } }, + ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-34) to maximum Mana", statOrder = { 871 }, level = 16, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-34) to maximum Mana" }, } }, + ["IncreasedMana4"] = { type = "Prefix", affix = "Teal", "+(35-54) to maximum Mana", statOrder = { 871 }, level = 25, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(35-54) to maximum Mana" }, } }, + ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(55-64) to maximum Mana", statOrder = { 871 }, level = 33, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-64) to maximum Mana" }, } }, + ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(65-79) to maximum Mana", statOrder = { 871 }, level = 38, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(65-79) to maximum Mana" }, } }, + ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(80-89) to maximum Mana", statOrder = { 871 }, level = 46, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-89) to maximum Mana" }, } }, + ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(90-104) to maximum Mana", statOrder = { 871 }, level = 54, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(90-104) to maximum Mana" }, } }, + ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(105-124) to maximum Mana", statOrder = { 871 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(105-124) to maximum Mana" }, } }, + ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(125-149) to maximum Mana", statOrder = { 871 }, level = 65, group = "IncreasedMana", weightKey = { "ring", "amulet", "helmet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(125-149) to maximum Mana" }, } }, + ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(150-164) to maximum Mana", statOrder = { 871 }, level = 70, group = "IncreasedMana", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-164) to maximum Mana" }, } }, + ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(165-179) to maximum Mana", statOrder = { 871 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(165-179) to maximum Mana" }, } }, + ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(180-189) to maximum Mana", statOrder = { 871 }, level = 82, group = "IncreasedMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(180-189) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(20-28) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-28) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(29-48) to maximum Mana", statOrder = { 871 }, level = 6, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(29-48) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(49-68) to maximum Mana", statOrder = { 871 }, level = 16, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(49-68) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(69-108) to maximum Mana", statOrder = { 871 }, level = 25, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-108) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(109-128) to maximum Mana", statOrder = { 871 }, level = 33, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(109-128) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(129-158) to maximum Mana", statOrder = { 871 }, level = 38, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(129-158) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(159-178) to maximum Mana", statOrder = { 871 }, level = 46, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(159-178) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(179-208) to maximum Mana", statOrder = { 871 }, level = 54, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(179-208) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(209-248) to maximum Mana", statOrder = { 871 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(209-248) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(249-298) to maximum Mana", statOrder = { 871 }, level = 65, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(249-298) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(299-328) to maximum Mana", statOrder = { 871 }, level = 70, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(299-328) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(231-251) to maximum Mana", statOrder = { 871 }, level = 75, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(231-251) to maximum Mana" }, } }, + ["MaximumManaIncrease1"] = { type = "Prefix", affix = "Cognizant", "(3-4)% increased maximum Mana", statOrder = { 872 }, level = 33, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(3-4)% increased maximum Mana" }, } }, + ["MaximumManaIncrease2"] = { type = "Prefix", affix = "Perceptive", "(5-6)% increased maximum Mana", statOrder = { 872 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(5-6)% increased maximum Mana" }, } }, + ["MaximumManaIncrease3"] = { type = "Prefix", affix = "Mnemonic", "(7-8)% increased maximum Mana", statOrder = { 872 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(7-8)% increased maximum Mana" }, } }, + ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(12-22) to Armour", statOrder = { 863 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(12-22) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(23-42) to Armour", statOrder = { 863 }, level = 11, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(23-42) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(43-54) to Armour", statOrder = { 863 }, level = 16, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(43-54) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(55-81) to Armour", statOrder = { 863 }, level = 25, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(55-81) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(82-106) to Armour", statOrder = { 863 }, level = 33, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(82-106) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(107-138) to Armour", statOrder = { 863 }, level = 46, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(107-138) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(139-168) to Armour", statOrder = { 863 }, level = 54, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(139-168) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(169-195) to Armour", statOrder = { 863 }, level = 65, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(169-195) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating9"] = { type = "Prefix", affix = "Abating", "+(196-224) to Armour", statOrder = { 863 }, level = 70, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(196-224) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(225-255) to Armour", statOrder = { 863 }, level = 80, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(225-255) to Armour" }, } }, + ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(8-15) to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(8-15) to Evasion Rating" }, } }, + ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(16-33) to Evasion Rating", statOrder = { 865 }, level = 11, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(16-33) to Evasion Rating" }, } }, + ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(34-44) to Evasion Rating", statOrder = { 865 }, level = 16, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(34-44) to Evasion Rating" }, } }, + ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(45-69) to Evasion Rating", statOrder = { 865 }, level = 25, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(45-69) to Evasion Rating" }, } }, + ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(70-93) to Evasion Rating", statOrder = { 865 }, level = 33, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(70-93) to Evasion Rating" }, } }, + ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(94-123) to Evasion Rating", statOrder = { 865 }, level = 46, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(94-123) to Evasion Rating" }, } }, + ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(124-151) to Evasion Rating", statOrder = { 865 }, level = 54, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(124-151) to Evasion Rating" }, } }, + ["IncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(152-176) to Evasion Rating", statOrder = { 865 }, level = 65, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(152-176) to Evasion Rating" }, } }, + ["IncreasedEvasionRating9"] = { type = "Prefix", affix = "Adroit", "+(177-203) to Evasion Rating", statOrder = { 865 }, level = 70, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(177-203) to Evasion Rating" }, } }, + ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(8-14) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(8-14) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(15-20) to maximum Energy Shield", statOrder = { 867 }, level = 11, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(15-20) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(21-24) to maximum Energy Shield", statOrder = { 867 }, level = 16, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(21-24) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(25-33) to maximum Energy Shield", statOrder = { 867 }, level = 25, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(25-33) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(34-41) to maximum Energy Shield", statOrder = { 867 }, level = 33, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(34-41) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-51) to maximum Energy Shield", statOrder = { 867 }, level = 46, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(42-51) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(52-61) to maximum Energy Shield", statOrder = { 867 }, level = 54, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(52-61) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(62-70) to maximum Energy Shield", statOrder = { 867 }, level = 65, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(62-70) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(71-79) to maximum Energy Shield", statOrder = { 867 }, level = 70, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(71-79) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(80-89) to maximum Energy Shield", statOrder = { 867 }, level = 80, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(80-89) to maximum Energy Shield" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(10-14)% increased Armour", statOrder = { 864 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(10-14)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(15-20)% increased Armour", statOrder = { 864 }, level = 16, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(15-20)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(21-26)% increased Armour", statOrder = { 864 }, level = 33, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(21-26)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(27-32)% increased Armour", statOrder = { 864 }, level = 46, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(27-32)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(33-38)% increased Armour", statOrder = { 864 }, level = 54, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(33-38)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(39-44)% increased Armour", statOrder = { 864 }, level = 65, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(39-44)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(45-50)% increased Armour", statOrder = { 864 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(45-50)% increased Armour" }, } }, + ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(10-14)% increased Evasion Rating", statOrder = { 866 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(10-14)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(15-20)% increased Evasion Rating", statOrder = { 866 }, level = 16, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(15-20)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(21-26)% increased Evasion Rating", statOrder = { 866 }, level = 33, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(21-26)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(27-32)% increased Evasion Rating", statOrder = { 866 }, level = 46, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(27-32)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(33-38)% increased Evasion Rating", statOrder = { 866 }, level = 54, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(33-38)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(39-44)% increased Evasion Rating", statOrder = { 866 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(39-44)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(45-50)% increased Evasion Rating", statOrder = { 866 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(45-50)% increased Evasion Rating" }, } }, + ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(10-14)% increased maximum Energy Shield", statOrder = { 868 }, level = 2, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(10-14)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(15-20)% increased maximum Energy Shield", statOrder = { 868 }, level = 16, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(15-20)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(21-26)% increased maximum Energy Shield", statOrder = { 868 }, level = 33, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(21-26)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(27-32)% increased maximum Energy Shield", statOrder = { 868 }, level = 46, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(27-32)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(33-38)% increased maximum Energy Shield", statOrder = { 868 }, level = 54, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(33-38)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(39-44)% increased maximum Energy Shield", statOrder = { 868 }, level = 65, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(39-44)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(45-50)% increased maximum Energy Shield", statOrder = { 868 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(45-50)% increased maximum Energy Shield" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(16-27) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(16-27) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(28-50) to Armour", statOrder = { 831 }, level = 8, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(28-50) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(51-68) to Armour", statOrder = { 831 }, level = 16, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(51-68) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(69-82) to Armour", statOrder = { 831 }, level = 25, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(69-82) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(83-102) to Armour", statOrder = { 831 }, level = 33, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(83-102) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(103-122) to Armour", statOrder = { 831 }, level = 46, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(103-122) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(123-160) to Armour", statOrder = { 831 }, level = 54, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(123-160) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(161-202) to Armour", statOrder = { 831 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(161-202) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(203-225) to Armour", statOrder = { 831 }, level = 65, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(203-225) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(226-256) to Armour", statOrder = { 831 }, level = 75, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(226-256) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(257-276) to Armour", statOrder = { 831 }, level = 79, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(257-276) to Armour" }, } }, + ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(11-18) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(11-18) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(19-39) to Evasion Rating", statOrder = { 832 }, level = 8, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(19-39) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(40-56) to Evasion Rating", statOrder = { 832 }, level = 16, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(40-56) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(57-70) to Evasion Rating", statOrder = { 832 }, level = 25, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(57-70) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(71-88) to Evasion Rating", statOrder = { 832 }, level = 33, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(71-88) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(89-107) to Evasion Rating", statOrder = { 832 }, level = 46, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(89-107) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(108-142) to Evasion Rating", statOrder = { 832 }, level = 54, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(108-142) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(143-181) to Evasion Rating", statOrder = { 832 }, level = 60, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(143-181) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(182-204) to Evasion Rating", statOrder = { 832 }, level = 65, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(182-204) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(205-232) to Evasion Rating", statOrder = { 832 }, level = 75, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(205-232) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(233-251) to Evasion Rating", statOrder = { 832 }, level = 79, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(233-251) to Evasion Rating" }, } }, + ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(10-17) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(10-17) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(18-24) to maximum Energy Shield", statOrder = { 833 }, level = 8, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(18-24) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(25-30) to maximum Energy Shield", statOrder = { 833 }, level = 16, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(25-30) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(31-35) to maximum Energy Shield", statOrder = { 833 }, level = 25, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(31-35) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(36-41) to maximum Energy Shield", statOrder = { 833 }, level = 33, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(36-41) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-47) to maximum Energy Shield", statOrder = { 833 }, level = 46, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(42-47) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(48-60) to maximum Energy Shield", statOrder = { 833 }, level = 54, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(48-60) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(61-73) to maximum Energy Shield", statOrder = { 833 }, level = 60, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(61-73) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(74-80) to maximum Energy Shield", statOrder = { 833 }, level = 65, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(74-80) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(81-90) to maximum Energy Shield", statOrder = { 833 }, level = 70, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(81-90) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-96) to maximum Energy Shield", statOrder = { 833 }, level = 79, group = "LocalEnergyShield", weightKey = { "focus", "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(91-96) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(8-14) to Armour", "+(6-9) to Evasion Rating", statOrder = { 831, 832 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(8-14) to Armour" }, [53045048] = { "+(6-9) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(15-35) to Armour", "+(10-30) to Evasion Rating", statOrder = { 831, 832 }, level = 16, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(15-35) to Armour" }, [53045048] = { "+(10-30) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(36-53) to Armour", "+(31-46) to Evasion Rating", statOrder = { 831, 832 }, level = 33, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(36-53) to Armour" }, [53045048] = { "+(31-46) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(54-65) to Armour", "+(47-57) to Evasion Rating", statOrder = { 831, 832 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(54-65) to Armour" }, [53045048] = { "+(47-57) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(66-78) to Armour", "+(58-69) to Evasion Rating", statOrder = { 831, 832 }, level = 54, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(66-78) to Armour" }, [53045048] = { "+(58-69) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(79-98) to Armour", "+(70-88) to Evasion Rating", statOrder = { 831, 832 }, level = 60, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(79-98) to Armour" }, [53045048] = { "+(70-88) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(99-117) to Armour", "+(89-107) to Evasion Rating", statOrder = { 831, 832 }, level = 65, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(99-117) to Armour" }, [53045048] = { "+(89-107) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(118-138) to Armour", "+(108-126) to Evasion Rating", statOrder = { 831, 832 }, level = 75, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(118-138) to Armour" }, [53045048] = { "+(108-126) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(8-14) to Armour", "+(5-8) to maximum Energy Shield", statOrder = { 831, 833 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(8-14) to Armour" }, [4052037485] = { "+(5-8) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(15-35) to Armour", "+(9-15) to maximum Energy Shield", statOrder = { 831, 833 }, level = 16, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(15-35) to Armour" }, [4052037485] = { "+(9-15) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(36-53) to Armour", "+(16-21) to maximum Energy Shield", statOrder = { 831, 833 }, level = 33, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(36-53) to Armour" }, [4052037485] = { "+(16-21) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(54-65) to Armour", "+(22-25) to maximum Energy Shield", statOrder = { 831, 833 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(54-65) to Armour" }, [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(66-78) to Armour", "+(26-29) to maximum Energy Shield", statOrder = { 831, 833 }, level = 54, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(66-78) to Armour" }, [4052037485] = { "+(26-29) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(79-98) to Armour", "+(30-36) to maximum Energy Shield", statOrder = { 831, 833 }, level = 60, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(79-98) to Armour" }, [4052037485] = { "+(30-36) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(99-117) to Armour", "+(37-42) to maximum Energy Shield", statOrder = { 831, 833 }, level = 65, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(99-117) to Armour" }, [4052037485] = { "+(37-42) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(118-138) to Armour", "+(43-48) to maximum Energy Shield", statOrder = { 831, 833 }, level = 75, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(118-138) to Armour" }, [4052037485] = { "+(43-48) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(6-9) to Evasion Rating", "+(5-8) to maximum Energy Shield", statOrder = { 832, 833 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(6-9) to Evasion Rating" }, [4052037485] = { "+(5-8) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(10-30) to Evasion Rating", "+(9-15) to maximum Energy Shield", statOrder = { 832, 833 }, level = 16, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(10-30) to Evasion Rating" }, [4052037485] = { "+(9-15) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(31-46) to Evasion Rating", "+(16-21) to maximum Energy Shield", statOrder = { 832, 833 }, level = 33, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(31-46) to Evasion Rating" }, [4052037485] = { "+(16-21) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(47-57) to Evasion Rating", "+(22-25) to maximum Energy Shield", statOrder = { 832, 833 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(47-57) to Evasion Rating" }, [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(58-69) to Evasion Rating", "+(26-29) to maximum Energy Shield", statOrder = { 832, 833 }, level = 54, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(58-69) to Evasion Rating" }, [4052037485] = { "+(26-29) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(70-88) to Evasion Rating", "+(30-36) to maximum Energy Shield", statOrder = { 832, 833 }, level = 60, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(70-88) to Evasion Rating" }, [4052037485] = { "+(30-36) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(89-107) to Evasion Rating", "+(37-42) to maximum Energy Shield", statOrder = { 832, 833 }, level = 65, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(89-107) to Evasion Rating" }, [4052037485] = { "+(37-42) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Banshee's", "+(108-126) to Evasion Rating", "+(43-48) to maximum Energy Shield", statOrder = { 832, 833 }, level = 75, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(108-126) to Evasion Rating" }, [4052037485] = { "+(43-48) to maximum Energy Shield" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 834 }, level = 2, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(15-26)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 834 }, level = 16, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(27-42)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 834 }, level = 35, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(43-55)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 834 }, level = 46, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(56-67)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 834 }, level = 54, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(68-79)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 834 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(80-91)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 834 }, level = 65, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(92-100)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 834 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(101-110)% increased Armour" }, } }, + ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 835 }, level = 2, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(15-26)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 835 }, level = 16, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(27-42)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 835 }, level = 33, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(43-55)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 835 }, level = 46, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(56-67)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 835 }, level = 54, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(68-79)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 835 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(80-91)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 835 }, level = 65, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(92-100)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 835 }, level = 75, group = "LocalEvasionRatingIncreasePercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(101-110)% increased Evasion Rating" }, } }, + ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(15-26)% increased Energy Shield", statOrder = { 836 }, level = 2, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(15-26)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 836 }, level = 16, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(27-42)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 836 }, level = 33, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(43-55)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 836 }, level = 46, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(56-67)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 836 }, level = 54, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(68-79)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 836 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(80-91)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 836 }, level = 65, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(92-100)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 836 }, level = 75, group = "LocalEnergyShieldPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(101-110)% increased Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 837 }, level = 2, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(15-26)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 837 }, level = 16, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(27-42)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 837 }, level = 33, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(43-55)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 837 }, level = 46, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(56-67)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 837 }, level = 54, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(68-79)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 837 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(80-91)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 837 }, level = 65, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(92-100)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 837 }, level = 75, group = "LocalArmourAndEvasion", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(101-110)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 838 }, level = 2, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(15-26)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 838 }, level = 16, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(27-42)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 838 }, level = 33, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(43-55)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 838 }, level = 46, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(56-67)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 838 }, level = 54, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(68-79)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 838 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(80-91)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 65, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(92-100)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 838 }, level = 75, group = "LocalArmourAndEnergyShield", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(101-110)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 2, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(15-26)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 16, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(27-42)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 33, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(43-55)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 46, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(56-67)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 54, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(68-79)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(80-91)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 65, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(92-100)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 75, group = "LocalEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(101-110)% increased Evasion and Energy Shield" }, } }, + ["LocalArmourAndStunThreshold1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "+(8-13) to Stun Threshold", statOrder = { 834, 994 }, level = 10, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, + ["LocalArmourAndStunThreshold2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "+(14-24) to Stun Threshold", statOrder = { 834, 994 }, level = 19, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, + ["LocalArmourAndStunThreshold3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "+(25-40) to Stun Threshold", statOrder = { 834, 994 }, level = 38, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, + ["LocalArmourAndStunThreshold4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "+(41-63) to Stun Threshold", statOrder = { 834, 994 }, level = 48, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, + ["LocalArmourAndStunThreshold5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "+(64-94) to Stun Threshold", statOrder = { 834, 994 }, level = 63, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, + ["LocalArmourAndStunThreshold6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "+(95-136) to Stun Threshold", statOrder = { 834, 994 }, level = 74, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "+(8-13) to Stun Threshold", statOrder = { 835, 994 }, level = 10, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "+(14-24) to Stun Threshold", statOrder = { 835, 994 }, level = 19, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "+(25-40) to Stun Threshold", statOrder = { 835, 994 }, level = 38, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "+(41-63) to Stun Threshold", statOrder = { 835, 994 }, level = 48, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "+(64-94) to Stun Threshold", statOrder = { 835, 994 }, level = 63, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "+(95-136) to Stun Threshold", statOrder = { 835, 994 }, level = 74, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 836, 994 }, level = 10, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 836, 994 }, level = 19, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 836, 994 }, level = 38, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 836, 994 }, level = 48, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 836, 994 }, level = 63, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 836, 994 }, level = 74, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Captain's", "(6-13)% increased Armour and Evasion", "+(8-13) to Stun Threshold", statOrder = { 837, 994 }, level = 10, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Commander's", "(14-20)% increased Armour and Evasion", "+(14-24) to Stun Threshold", statOrder = { 837, 994 }, level = 19, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Magnate's", "(21-26)% increased Armour and Evasion", "+(25-40) to Stun Threshold", statOrder = { 837, 994 }, level = 38, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Marshal's", "(27-32)% increased Armour and Evasion", "+(41-63) to Stun Threshold", statOrder = { 837, 994 }, level = 48, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold5"] = { type = "Prefix", affix = "General's", "(33-38)% increased Armour and Evasion", "+(64-94) to Stun Threshold", statOrder = { 837, 994 }, level = 63, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Warlord's", "(39-42)% increased Armour and Evasion", "+(95-136) to Stun Threshold", statOrder = { 837, 994 }, level = 74, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Defender's", "(6-13)% increased Armour and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 838, 994 }, level = 10, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(8-13) to Stun Threshold" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Protector's", "(14-20)% increased Armour and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 838, 994 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(14-24) to Stun Threshold" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Keeper's", "(21-26)% increased Armour and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 838, 994 }, level = 38, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(25-40) to Stun Threshold" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Guardian's", "(27-32)% increased Armour and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 838, 994 }, level = 48, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(41-63) to Stun Threshold" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Warden's", "(33-38)% increased Armour and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 838, 994 }, level = 63, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(64-94) to Stun Threshold" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Sentinel's", "(39-42)% increased Armour and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 838, 994 }, level = 74, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(95-136) to Stun Threshold" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Intuitive", "(6-13)% increased Evasion and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 839, 994 }, level = 10, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(8-13) to Stun Threshold" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Psychic", "(14-20)% increased Evasion and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 839, 994 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(14-24) to Stun Threshold" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Telepath's", "(21-26)% increased Evasion and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 839, 994 }, level = 38, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(25-40) to Stun Threshold" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Illusionist's", "(27-32)% increased Evasion and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 839, 994 }, level = 48, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(41-63) to Stun Threshold" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Mentalist's", "(33-38)% increased Evasion and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 839, 994 }, level = 63, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(64-94) to Stun Threshold" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Trickster's", "(39-42)% increased Evasion and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 839, 994 }, level = 74, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(95-136) to Stun Threshold" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "(6-13)% increased Armour", "+(7-10) to maximum Life", statOrder = { 834, 869 }, level = 8, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, + ["LocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "(14-20)% increased Armour", "+(11-19) to maximum Life", statOrder = { 834, 869 }, level = 16, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, + ["LocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "(21-26)% increased Armour", "+(20-25) to maximum Life", statOrder = { 834, 869 }, level = 33, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, + ["LocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "(27-32)% increased Armour", "+(26-32) to maximum Life", statOrder = { 834, 869 }, level = 46, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, + ["LocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "(33-38)% increased Armour", "+(33-41) to maximum Life", statOrder = { 834, 869 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, + ["LocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "(39-42)% increased Armour", "+(42-49) to maximum Life", statOrder = { 834, 869 }, level = 78, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "(6-13)% increased Evasion Rating", "+(7-10) to maximum Life", statOrder = { 835, 869 }, level = 8, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "(14-20)% increased Evasion Rating", "+(11-19) to maximum Life", statOrder = { 835, 869 }, level = 16, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "(21-26)% increased Evasion Rating", "+(20-25) to maximum Life", statOrder = { 835, 869 }, level = 33, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "(27-32)% increased Evasion Rating", "+(26-32) to maximum Life", statOrder = { 835, 869 }, level = 46, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "(33-38)% increased Evasion Rating", "+(33-41) to maximum Life", statOrder = { 835, 869 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "(39-42)% increased Evasion Rating", "+(42-49) to maximum Life", statOrder = { 835, 869 }, level = 78, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "(6-13)% increased Energy Shield", "+(7-10) to maximum Life", statOrder = { 836, 869 }, level = 8, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "(14-20)% increased Energy Shield", "+(11-19) to maximum Life", statOrder = { 836, 869 }, level = 16, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "(21-26)% increased Energy Shield", "+(20-25) to maximum Life", statOrder = { 836, 869 }, level = 33, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "(27-32)% increased Energy Shield", "+(26-32) to maximum Life", statOrder = { 836, 869 }, level = 46, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "(33-38)% increased Energy Shield", "+(33-41) to maximum Life", statOrder = { 836, 869 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "(39-42)% increased Energy Shield", "+(42-49) to maximum Life", statOrder = { 836, 869 }, level = 78, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "(6-13)% increased Armour and Evasion", "+(7-10) to maximum Life", statOrder = { 837, 869 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "(14-20)% increased Armour and Evasion", "+(11-19) to maximum Life", statOrder = { 837, 869 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "(21-26)% increased Armour and Evasion", "+(20-25) to maximum Life", statOrder = { 837, 869 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "(27-32)% increased Armour and Evasion", "+(26-32) to maximum Life", statOrder = { 837, 869 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "(33-38)% increased Armour and Evasion", "+(33-41) to maximum Life", statOrder = { 837, 869 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "(39-42)% increased Armour and Evasion", "+(42-49) to maximum Life", statOrder = { 837, 869 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "(6-13)% increased Armour and Energy Shield", "+(7-10) to maximum Life", statOrder = { 838, 869 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(7-10) to maximum Life" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "(14-20)% increased Armour and Energy Shield", "+(11-19) to maximum Life", statOrder = { 838, 869 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(11-19) to maximum Life" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "(21-26)% increased Armour and Energy Shield", "+(20-25) to maximum Life", statOrder = { 838, 869 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(20-25) to maximum Life" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "(27-32)% increased Armour and Energy Shield", "+(26-32) to maximum Life", statOrder = { 838, 869 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(26-32) to maximum Life" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "(33-38)% increased Armour and Energy Shield", "+(33-41) to maximum Life", statOrder = { 838, 869 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(33-41) to maximum Life" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "(39-42)% increased Armour and Energy Shield", "+(42-49) to maximum Life", statOrder = { 838, 869 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(42-49) to maximum Life" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "(6-13)% increased Evasion and Energy Shield", "+(7-10) to maximum Life", statOrder = { 839, 869 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(7-10) to maximum Life" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "(14-20)% increased Evasion and Energy Shield", "+(11-19) to maximum Life", statOrder = { 839, 869 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(11-19) to maximum Life" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "(21-26)% increased Evasion and Energy Shield", "+(20-25) to maximum Life", statOrder = { 839, 869 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(20-25) to maximum Life" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "(27-32)% increased Evasion and Energy Shield", "+(26-32) to maximum Life", statOrder = { 839, 869 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(26-32) to maximum Life" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "(33-38)% increased Evasion and Energy Shield", "+(33-41) to maximum Life", statOrder = { 839, 869 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(33-41) to maximum Life" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "(39-42)% increased Evasion and Energy Shield", "+(42-49) to maximum Life", statOrder = { 839, 869 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(42-49) to maximum Life" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndMana1"] = { type = "Prefix", affix = "Imposing", "(6-13)% increased Armour", "+(6-8) to maximum Mana", statOrder = { 834, 871 }, level = 8, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndMana2"] = { type = "Prefix", affix = "Venerable", "(14-20)% increased Armour", "+(9-16) to maximum Mana", statOrder = { 834, 871 }, level = 16, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndMana3"] = { type = "Prefix", affix = "Regal", "(21-26)% increased Armour", "+(17-20) to maximum Mana", statOrder = { 834, 871 }, level = 33, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndMana4"] = { type = "Prefix", affix = "Colossal", "(27-32)% increased Armour", "+(21-26) to maximum Mana", statOrder = { 834, 871 }, level = 46, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndMana5"] = { type = "Prefix", affix = "Chieftain's", "(33-38)% increased Armour", "+(27-32) to maximum Mana", statOrder = { 834, 871 }, level = 60, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndMana6"] = { type = "Prefix", affix = "Ancestral", "(39-42)% increased Armour", "+(33-39) to maximum Mana", statOrder = { 834, 871 }, level = 78, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana1"] = { type = "Prefix", affix = "Nomad's", "(6-13)% increased Evasion Rating", "+(6-8) to maximum Mana", statOrder = { 835, 871 }, level = 8, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana2"] = { type = "Prefix", affix = "Drifter's", "(14-20)% increased Evasion Rating", "+(9-16) to maximum Mana", statOrder = { 835, 871 }, level = 16, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana3"] = { type = "Prefix", affix = "Traveller's", "(21-26)% increased Evasion Rating", "+(17-20) to maximum Mana", statOrder = { 835, 871 }, level = 33, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana4"] = { type = "Prefix", affix = "Explorer's", "(27-32)% increased Evasion Rating", "+(21-26) to maximum Mana", statOrder = { 835, 871 }, level = 46, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana5"] = { type = "Prefix", affix = "Wayfarer's", "(33-38)% increased Evasion Rating", "+(27-32) to maximum Mana", statOrder = { 835, 871 }, level = 60, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana6"] = { type = "Prefix", affix = "Wanderer's", "(39-42)% increased Evasion Rating", "+(33-39) to maximum Mana", statOrder = { 835, 871 }, level = 78, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana1"] = { type = "Prefix", affix = "Imbued", "(6-13)% increased Energy Shield", "+(6-8) to maximum Mana", statOrder = { 836, 871 }, level = 8, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana2"] = { type = "Prefix", affix = "Serene", "(14-20)% increased Energy Shield", "+(9-16) to maximum Mana", statOrder = { 836, 871 }, level = 16, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana3"] = { type = "Prefix", affix = "Sacred", "(21-26)% increased Energy Shield", "+(17-20) to maximum Mana", statOrder = { 836, 871 }, level = 33, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana4"] = { type = "Prefix", affix = "Celestial", "(27-32)% increased Energy Shield", "+(21-26) to maximum Mana", statOrder = { 836, 871 }, level = 46, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana5"] = { type = "Prefix", affix = "Heavenly", "(33-38)% increased Energy Shield", "+(27-32) to maximum Mana", statOrder = { 836, 871 }, level = 60, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana6"] = { type = "Prefix", affix = "Angel's", "(39-42)% increased Energy Shield", "+(33-39) to maximum Mana", statOrder = { 836, 871 }, level = 78, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana1"] = { type = "Prefix", affix = "Rhoa's", "(6-13)% increased Armour and Evasion", "+(6-8) to maximum Mana", statOrder = { 837, 871 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana2"] = { type = "Prefix", affix = "Rhex's", "(14-20)% increased Armour and Evasion", "+(9-16) to maximum Mana", statOrder = { 837, 871 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana3"] = { type = "Prefix", affix = "Chimeral's", "(21-26)% increased Armour and Evasion", "+(17-20) to maximum Mana", statOrder = { 837, 871 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana4"] = { type = "Prefix", affix = "Bull's", "(27-32)% increased Armour and Evasion", "+(21-26) to maximum Mana", statOrder = { 837, 871 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana5"] = { type = "Prefix", affix = "Minotaur's", "(33-38)% increased Armour and Evasion", "+(27-32) to maximum Mana", statOrder = { 837, 871 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana6"] = { type = "Prefix", affix = "Cerberus'", "(39-42)% increased Armour and Evasion", "+(33-39) to maximum Mana", statOrder = { 837, 871 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Coelacanth's", "(6-13)% increased Armour and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 838, 871 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(6-8) to maximum Mana" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Swordfish's", "(14-20)% increased Armour and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 838, 871 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(9-16) to maximum Mana" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Shark's", "(21-26)% increased Armour and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 838, 871 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Dolphin's", "(27-32)% increased Armour and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 838, 871 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(21-26) to maximum Mana" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Orca's", "(33-38)% increased Armour and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 838, 871 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(27-32) to maximum Mana" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Whale's", "(39-42)% increased Armour and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 838, 871 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(33-39) to maximum Mana" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Vulture's", "(6-13)% increased Evasion and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 839, 871 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(6-8) to maximum Mana" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Kingfisher's", "(14-20)% increased Evasion and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 839, 871 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(9-16) to maximum Mana" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Owl's", "(21-26)% increased Evasion and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 839, 871 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Hawk's", "(27-32)% increased Evasion and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 839, 871 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(21-26) to maximum Mana" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Eagle's", "(33-38)% increased Evasion and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 839, 871 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(27-32) to maximum Mana" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Falcon's", "(39-42)% increased Evasion and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 839, 871 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(33-39) to maximum Mana" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndBase1"] = { type = "Prefix", affix = "Abalone's", "+(7-11) to Armour", "(6-13)% increased Armour", statOrder = { 831, 834 }, level = 8, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [3484657501] = { "+(7-11) to Armour" }, } }, + ["LocalIncreasedArmourAndBase2"] = { type = "Prefix", affix = "Snail's", "+(12-29) to Armour", "(14-20)% increased Armour", statOrder = { 831, 834 }, level = 16, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [3484657501] = { "+(12-29) to Armour" }, } }, + ["LocalIncreasedArmourAndBase3"] = { type = "Prefix", affix = "Tortoise's", "+(30-39) to Armour", "(21-26)% increased Armour", statOrder = { 831, 834 }, level = 33, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [3484657501] = { "+(30-39) to Armour" }, } }, + ["LocalIncreasedArmourAndBase4"] = { type = "Prefix", affix = "Pangolin's", "+(40-53) to Armour", "(27-32)% increased Armour", statOrder = { 831, 834 }, level = 46, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [3484657501] = { "+(40-53) to Armour" }, } }, + ["LocalIncreasedArmourAndBase5"] = { type = "Prefix", affix = "Shelled", "+(54-69) to Armour", "(33-38)% increased Armour", statOrder = { 831, 834 }, level = 60, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [3484657501] = { "+(54-69) to Armour" }, } }, + ["LocalIncreasedArmourAndBase6"] = { type = "Prefix", affix = "Hardened", "+(70-86) to Armour", "(39-42)% increased Armour", statOrder = { 831, 834 }, level = 78, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [3484657501] = { "+(70-86) to Armour" }, } }, + ["LocalIncreasedEvasionAndBase1"] = { type = "Prefix", affix = "Impala's", "+(5-8) to Evasion Rating", "(6-13)% increased Evasion Rating", statOrder = { 832, 835 }, level = 8, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [53045048] = { "+(5-8) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndBase2"] = { type = "Prefix", affix = "Buck's", "+(9-24) to Evasion Rating", "(14-20)% increased Evasion Rating", statOrder = { 832, 835 }, level = 16, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [53045048] = { "+(9-24) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndBase3"] = { type = "Prefix", affix = "Moose's", "+(25-34) to Evasion Rating", "(21-26)% increased Evasion Rating", statOrder = { 832, 835 }, level = 33, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [53045048] = { "+(25-34) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndBase4"] = { type = "Prefix", affix = "Deer's", "+(35-47) to Evasion Rating", "(27-32)% increased Evasion Rating", statOrder = { 832, 835 }, level = 46, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [53045048] = { "+(35-47) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndBase5"] = { type = "Prefix", affix = "Caribou's", "+(48-62) to Evasion Rating", "(33-38)% increased Evasion Rating", statOrder = { 832, 835 }, level = 60, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [53045048] = { "+(48-62) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndBase6"] = { type = "Prefix", affix = "Antelope's", "+(63-79) to Evasion Rating", "(39-42)% increased Evasion Rating", statOrder = { 832, 835 }, level = 78, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [53045048] = { "+(63-79) to Evasion Rating" }, } }, + ["LocalIncreasedEnergyShieldAndBase1"] = { type = "Prefix", affix = "Deacon's", "+(4-7) to maximum Energy Shield", "(6-13)% increased Energy Shield", statOrder = { 833, 836 }, level = 8, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [4052037485] = { "+(4-7) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldAndBase2"] = { type = "Prefix", affix = "Cardinal's", "+(8-13) to maximum Energy Shield", "(14-20)% increased Energy Shield", statOrder = { 833, 836 }, level = 16, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [4052037485] = { "+(8-13) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldAndBase3"] = { type = "Prefix", affix = "Priest's", "+(14-16) to maximum Energy Shield", "(21-26)% increased Energy Shield", statOrder = { 833, 836 }, level = 33, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [4052037485] = { "+(14-16) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldAndBase4"] = { type = "Prefix", affix = "High Priest's", "+(17-20) to maximum Energy Shield", "(27-32)% increased Energy Shield", statOrder = { 833, 836 }, level = 46, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [4052037485] = { "+(17-20) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldAndBase5"] = { type = "Prefix", affix = "Archon's", "+(21-25) to maximum Energy Shield", "(33-38)% increased Energy Shield", statOrder = { 833, 836 }, level = 60, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [4052037485] = { "+(21-25) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldAndBase6"] = { type = "Prefix", affix = "Divine", "+(26-30) to maximum Energy Shield", "(39-42)% increased Energy Shield", statOrder = { 833, 836 }, level = 78, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [4052037485] = { "+(26-30) to maximum Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase1"] = { type = "Prefix", affix = "Swordsman's", "+(4-6) to Armour", "+(3-5) to Evasion Rating", "(6-13)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [53045048] = { "+(3-5) to Evasion Rating" }, [3484657501] = { "+(4-6) to Armour" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase2"] = { type = "Prefix", affix = "Fighter's", "+(7-15) to Armour", "+(6-12) to Evasion Rating", "(14-20)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [53045048] = { "+(6-12) to Evasion Rating" }, [3484657501] = { "+(7-15) to Armour" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase3"] = { type = "Prefix", affix = "Veteran's", "+(16-20) to Armour", "+(13-17) to Evasion Rating", "(21-26)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [53045048] = { "+(13-17) to Evasion Rating" }, [3484657501] = { "+(16-20) to Armour" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase4"] = { type = "Prefix", affix = "Warrior's", "+(21-27) to Armour", "+(18-24) to Evasion Rating", "(27-32)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [53045048] = { "+(18-24) to Evasion Rating" }, [3484657501] = { "+(21-27) to Armour" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase5"] = { type = "Prefix", affix = "Knight's", "+(28-34) to Armour", "+(25-31) to Evasion Rating", "(33-38)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [53045048] = { "+(25-31) to Evasion Rating" }, [3484657501] = { "+(28-34) to Armour" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase6"] = { type = "Prefix", affix = "Centurion's", "+(35-43) to Armour", "+(32-39) to Evasion Rating", "(39-42)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [53045048] = { "+(32-39) to Evasion Rating" }, [3484657501] = { "+(35-43) to Armour" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Faithful", "+(4-6) to Armour", "+(2-4) to maximum Energy Shield", "(6-13)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(4-6) to Armour" }, [4052037485] = { "+(2-4) to maximum Energy Shield" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Noble's", "+(7-15) to Armour", "+(5-6) to maximum Energy Shield", "(14-20)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(7-15) to Armour" }, [4052037485] = { "+(5-6) to maximum Energy Shield" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Inquisitor's", "+(16-20) to Armour", "+(7-8) to maximum Energy Shield", "(21-26)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(16-20) to Armour" }, [4052037485] = { "+(7-8) to maximum Energy Shield" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Crusader's", "+(21-27) to Armour", "+(9-10) to maximum Energy Shield", "(27-32)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(21-27) to Armour" }, [4052037485] = { "+(9-10) to maximum Energy Shield" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Paladin's", "+(28-34) to Armour", "+(11-12) to maximum Energy Shield", "(33-38)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(28-34) to Armour" }, [4052037485] = { "+(11-12) to maximum Energy Shield" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Grand", "+(35-43) to Armour", "+(13-15) to maximum Energy Shield", "(39-42)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(35-43) to Armour" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Pursuer's", "+(3-5) to Evasion Rating", "+(2-4) to maximum Energy Shield", "(6-13)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(3-5) to Evasion Rating" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, [4052037485] = { "+(2-4) to maximum Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Tracker's", "+(6-12) to Evasion Rating", "+(5-6) to maximum Energy Shield", "(14-20)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(6-12) to Evasion Rating" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, [4052037485] = { "+(5-6) to maximum Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Chaser's", "+(13-17) to Evasion Rating", "+(7-8) to maximum Energy Shield", "(21-26)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(13-17) to Evasion Rating" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, [4052037485] = { "+(7-8) to maximum Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Phantom's", "+(18-24) to Evasion Rating", "+(9-10) to maximum Energy Shield", "(27-32)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(18-24) to Evasion Rating" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, [4052037485] = { "+(9-10) to maximum Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Rogue's", "+(25-31) to Evasion Rating", "+(11-12) to maximum Energy Shield", "(33-38)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(25-31) to Evasion Rating" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, [4052037485] = { "+(11-12) to maximum Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Stalker's", "+(32-39) to Evasion Rating", "+(13-15) to maximum Energy Shield", "(39-42)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(32-39) to Evasion Rating" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 2, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(15-26)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 16, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 33, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(43-55)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 46, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 54, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Incorporeal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 65, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(92-100)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Ascendant", "(101-110)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 75, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(101-110)% increased Armour, Evasion and Energy Shield" }, } }, + ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "15% reduced Attribute Requirements", statOrder = { 921 }, level = 24, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "15% reduced Attribute Requirements" }, } }, + ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "20% reduced Attribute Requirements", statOrder = { 921 }, level = 32, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "20% reduced Attribute Requirements" }, } }, + ["ReducedLocalAttributeRequirements3"] = { type = "Suffix", affix = "of the Talented", "25% reduced Attribute Requirements", statOrder = { 921 }, level = 40, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, } }, + ["ReducedLocalAttributeRequirements4"] = { type = "Suffix", affix = "of the Skilled", "30% reduced Attribute Requirements", statOrder = { 921 }, level = 52, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "30% reduced Attribute Requirements" }, } }, + ["ReducedLocalAttributeRequirements5"] = { type = "Suffix", affix = "of the Proficient", "35% reduced Attribute Requirements", statOrder = { 921 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "35% reduced Attribute Requirements" }, } }, + ["StunThreshold1"] = { type = "Suffix", affix = "of Thick Skin", "+(6-11) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(6-11) to Stun Threshold" }, } }, + ["StunThreshold2"] = { type = "Suffix", affix = "of Reinforced Skin", "+(12-29) to Stun Threshold", statOrder = { 994 }, level = 8, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(12-29) to Stun Threshold" }, } }, + ["StunThreshold3"] = { type = "Suffix", affix = "of Stone Skin", "+(30-49) to Stun Threshold", statOrder = { 994 }, level = 15, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(30-49) to Stun Threshold" }, } }, + ["StunThreshold4"] = { type = "Suffix", affix = "of Iron Skin", "+(50-72) to Stun Threshold", statOrder = { 994 }, level = 22, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(50-72) to Stun Threshold" }, } }, + ["StunThreshold5"] = { type = "Suffix", affix = "of Steel Skin", "+(73-97) to Stun Threshold", statOrder = { 994 }, level = 29, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(73-97) to Stun Threshold" }, } }, + ["StunThreshold6"] = { type = "Suffix", affix = "of Granite Skin", "+(98-124) to Stun Threshold", statOrder = { 994 }, level = 36, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(98-124) to Stun Threshold" }, } }, + ["StunThreshold7"] = { type = "Suffix", affix = "of Platinum Skin", "+(125-163) to Stun Threshold", statOrder = { 994 }, level = 45, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(125-163) to Stun Threshold" }, } }, + ["StunThreshold8"] = { type = "Suffix", affix = "of Adamantite Skin", "+(164-206) to Stun Threshold", statOrder = { 994 }, level = 54, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(164-206) to Stun Threshold" }, } }, + ["StunThreshold9"] = { type = "Suffix", affix = "of Corundum Skin", "+(207-253) to Stun Threshold", statOrder = { 994 }, level = 63, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(207-253) to Stun Threshold" }, } }, + ["StunThreshold10"] = { type = "Suffix", affix = "of Obsidian Skin", "+(254-304) to Stun Threshold", statOrder = { 994 }, level = 72, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(254-304) to Stun Threshold" }, } }, + ["StunThreshold11"] = { type = "Suffix", affix = "of Titanium Skin", "+(305-352) to Stun Threshold", statOrder = { 994 }, level = 80, group = "StunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(305-352) to Stun Threshold" }, } }, + ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 827 }, level = 16, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 827 }, level = 33, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 827 }, level = 46, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 827 }, level = 65, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 827 }, level = 82, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "35% increased Movement Speed" }, } }, + ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "(1-2) to (3-4) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(1-2) to (3-4) Physical Thorns damage" }, } }, + ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "(5-7) to (7-10) Physical Thorns damage", statOrder = { 9653 }, level = 10, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(5-7) to (7-10) Physical Thorns damage" }, } }, + ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "(11-16) to (15-23) Physical Thorns damage", statOrder = { 9653 }, level = 19, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(11-16) to (15-23) Physical Thorns damage" }, } }, + ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Pointed", "(24-35) to (35-53) Physical Thorns damage", statOrder = { 9653 }, level = 38, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (35-53) Physical Thorns damage" }, } }, + ["AttackerTakesDamage5"] = { type = "Prefix", affix = "Spiked", "(40-60) to (61-92) Physical Thorns damage", statOrder = { 9653 }, level = 48, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(40-60) to (61-92) Physical Thorns damage" }, } }, + ["AttackerTakesDamage6"] = { type = "Prefix", affix = "Edged", "(64-97) to (97-145) Physical Thorns damage", statOrder = { 9653 }, level = 63, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(64-97) to (97-145) Physical Thorns damage" }, } }, + ["AttackerTakesDamage7"] = { type = "Prefix", affix = "Jagged", "(101-151) to (146-220) Physical Thorns damage", statOrder = { 9653 }, level = 74, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(101-151) to (146-220) Physical Thorns damage" }, } }, + ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (1-2) to 3 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-6) Physical Damage to Attacks", statOrder = { 843 }, level = 8, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (4-6) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (2-4) to (5-8) Physical Damage to Attacks", statOrder = { 843 }, level = 16, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-4) to (5-8) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (8-11) Physical Damage to Attacks", statOrder = { 843 }, level = 33, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (8-11) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 843 }, level = 46, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (9-13) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-10) to (12-17) Physical Damage to Attacks", statOrder = { 843 }, level = 54, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (12-17) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 843 }, level = 60, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-11) to (14-20) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (10-15) to (18-26) Physical Damage to Attacks", statOrder = { 843 }, level = 65, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (10-15) to (18-26) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (12-19) to (22-32) Physical Damage to Attacks", statOrder = { 843 }, level = 75, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (12-19) to (22-32) Physical Damage to Attacks" }, } }, + ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire damage to Attacks", statOrder = { 844 }, level = 1, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (1-2) to 3 Fire damage to Attacks" }, } }, + ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 844 }, level = 8, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (3-5) to (6-9) Fire damage to Attacks" }, } }, + ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (6-8) to (10-13) Fire damage to Attacks", statOrder = { 844 }, level = 16, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (10-13) Fire damage to Attacks" }, } }, + ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (9-11) to (14-17) Fire damage to Attacks", statOrder = { 844 }, level = 33, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-11) to (14-17) Fire damage to Attacks" }, } }, + ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (12-13) to (18-20) Fire damage to Attacks", statOrder = { 844 }, level = 46, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (12-13) to (18-20) Fire damage to Attacks" }, } }, + ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-16) to (21-26) Fire damage to Attacks", statOrder = { 844 }, level = 54, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (11-16) to (21-26) Fire damage to Attacks" }, } }, + ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-19) to (27-32) Fire damage to Attacks", statOrder = { 844 }, level = 60, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-19) to (27-32) Fire damage to Attacks" }, } }, + ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (20-24) to (33-36) Fire damage to Attacks", statOrder = { 844 }, level = 65, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (20-24) to (33-36) Fire damage to Attacks" }, } }, + ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (25-29) to (37-45) Fire damage to Attacks", statOrder = { 844 }, level = 75, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (25-29) to (37-45) Fire damage to Attacks" }, } }, + ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold damage to Attacks", statOrder = { 845 }, level = 1, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 1 to (2-3) Cold damage to Attacks" }, } }, + ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 845 }, level = 8, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-4) to (5-8) Cold damage to Attacks" }, } }, + ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-6) to (9-11) Cold damage to Attacks", statOrder = { 845 }, level = 16, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (5-6) to (9-11) Cold damage to Attacks" }, } }, + ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (7-8) to (12-14) Cold damage to Attacks", statOrder = { 845 }, level = 33, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-8) to (12-14) Cold damage to Attacks" }, } }, + ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (9-10) to (15-17) Cold damage to Attacks", statOrder = { 845 }, level = 46, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (9-10) to (15-17) Cold damage to Attacks" }, } }, + ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (11-13) to (18-21) Cold damage to Attacks", statOrder = { 845 }, level = 54, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (11-13) to (18-21) Cold damage to Attacks" }, } }, + ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (14-15) to (22-24) Cold damage to Attacks", statOrder = { 845 }, level = 60, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (14-15) to (22-24) Cold damage to Attacks" }, } }, + ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (16-20) to (25-31) Cold damage to Attacks", statOrder = { 845 }, level = 65, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (16-20) to (25-31) Cold damage to Attacks" }, } }, + ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (21-24) to (32-37) Cold damage to Attacks", statOrder = { 845 }, level = 75, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (21-24) to (32-37) Cold damage to Attacks" }, } }, + ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning damage to Attacks", statOrder = { 846 }, level = 1, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (4-6) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (10-15) Lightning damage to Attacks", statOrder = { 846 }, level = 8, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (10-15) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 1 to (16-22) Lightning damage to Attacks", statOrder = { 846 }, level = 16, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (16-22) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 1 to (23-27) Lightning damage to Attacks", statOrder = { 846 }, level = 33, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (23-27) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds 1 to (28-32) Lightning damage to Attacks", statOrder = { 846 }, level = 46, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (28-32) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-2) to (33-40) Lightning damage to Attacks", statOrder = { 846 }, level = 54, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (33-40) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-2) to (41-47) Lightning damage to Attacks", statOrder = { 846 }, level = 60, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (41-47) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-3) to (48-59) Lightning damage to Attacks", statOrder = { 846 }, level = 65, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (48-59) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-4) to (60-71) Lightning damage to Attacks", statOrder = { 846 }, level = 75, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (60-71) Lightning damage to Attacks" }, } }, + ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (4-5) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (1-2) to (4-5) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-6) to (7-11) Physical Damage", statOrder = { 822 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-6) to (7-11) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (11-16) Physical Damage", statOrder = { 822 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-9) to (11-16) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (14-21) Physical Damage", statOrder = { 822 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (14-21) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (10-15) to (18-26) Physical Damage", statOrder = { 822 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-15) to (18-26) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-20) to (23-35) Physical Damage", statOrder = { 822 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-20) to (23-35) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-24) to (28-42) Physical Damage", statOrder = { 822 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-24) to (28-42) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (21-31) to (36-53) Physical Damage", statOrder = { 822 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (21-31) to (36-53) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (26-39) to (44-66) Physical Damage", statOrder = { 822 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (26-39) to (44-66) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds (2-3) to (5-7) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-3) to (5-7) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (5-8) to (10-15) Physical Damage", statOrder = { 822 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (10-15) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (8-12) to (15-22) Physical Damage", statOrder = { 822 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (15-22) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (11-17) to (20-30) Physical Damage", statOrder = { 822 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-17) to (20-30) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (14-21) to (25-37) Physical Damage", statOrder = { 822 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-21) to (25-37) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (19-29) to (33-49) Physical Damage", statOrder = { 822 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (19-29) to (33-49) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (23-35) to (39-59) Physical Damage", statOrder = { 822 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (23-35) to (39-59) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (29-44) to (50-75) Physical Damage", statOrder = { 822 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (29-44) to (50-75) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (37-55) to (63-94) Physical Damage", statOrder = { 822 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (37-55) to (63-94) Physical Damage" }, } }, + ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-5) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (1-2) to (3-5) Fire Damage" }, } }, + ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (4-6) to (7-10) Fire Damage", statOrder = { 823 }, level = 8, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (4-6) to (7-10) Fire Damage" }, } }, + ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (7-11) to (13-19) Fire Damage", statOrder = { 823 }, level = 16, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (7-11) to (13-19) Fire Damage" }, } }, + ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-19) to (21-29) Fire Damage", statOrder = { 823 }, level = 33, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-19) to (21-29) Fire Damage" }, } }, + ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (20-24) to (32-37) Fire Damage", statOrder = { 823 }, level = 46, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (20-24) to (32-37) Fire Damage" }, } }, + ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (25-33) to (38-54) Fire Damage", statOrder = { 823 }, level = 54, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (25-33) to (38-54) Fire Damage" }, } }, + ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (35-44) to (56-71) Fire Damage", statOrder = { 823 }, level = 60, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (35-44) to (56-71) Fire Damage" }, } }, + ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (47-59) to (74-97) Fire Damage", statOrder = { 823 }, level = 65, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (47-59) to (74-97) Fire Damage" }, } }, + ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (62-85) to (101-129) Fire Damage", statOrder = { 823 }, level = 75, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (62-85) to (101-129) Fire Damage" }, } }, + ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (88-101) to (133-154) Fire Damage", statOrder = { 823 }, level = 81, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (88-101) to (133-154) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (2-4) to (5-7) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (6-9) to (10-16) Fire Damage", statOrder = { 823 }, level = 8, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (6-9) to (10-16) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (11-17) to (19-28) Fire Damage", statOrder = { 823 }, level = 16, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (11-17) to (19-28) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (19-27) to (30-42) Fire Damage", statOrder = { 823 }, level = 33, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (19-27) to (30-42) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (30-37) to (45-56) Fire Damage", statOrder = { 823 }, level = 46, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (30-37) to (45-56) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (39-53) to (59-80) Fire Damage", statOrder = { 823 }, level = 54, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (39-53) to (59-80) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (56-70) to (84-107) Fire Damage", statOrder = { 823 }, level = 60, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (56-70) to (84-107) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (73-97) to (112-149) Fire Damage", statOrder = { 823 }, level = 65, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (73-97) to (112-149) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (102-130) to (155-198) Fire Damage", statOrder = { 823 }, level = 75, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (102-130) to (155-198) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (135-156) to (205-236) Fire Damage", statOrder = { 823 }, level = 81, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (135-156) to (205-236) Fire Damage" }, } }, + ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (1-2) to (3-4) Cold Damage" }, } }, + ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-5) to (6-9) Cold Damage", statOrder = { 824 }, level = 8, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (3-5) to (6-9) Cold Damage" }, } }, + ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (6-9) to (10-16) Cold Damage", statOrder = { 824 }, level = 16, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-9) to (10-16) Cold Damage" }, } }, + ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (17-24) Cold Damage", statOrder = { 824 }, level = 33, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (17-24) Cold Damage" }, } }, + ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (17-20) to (26-32) Cold Damage", statOrder = { 824 }, level = 46, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (17-20) to (26-32) Cold Damage" }, } }, + ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (22-29) to (34-44) Cold Damage", statOrder = { 824 }, level = 54, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (22-29) to (34-44) Cold Damage" }, } }, + ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (31-38) to (47-59) Cold Damage", statOrder = { 824 }, level = 60, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (31-38) to (47-59) Cold Damage" }, } }, + ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (40-53) to (62-80) Cold Damage", statOrder = { 824 }, level = 65, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (40-53) to (62-80) Cold Damage" }, } }, + ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (55-69) to (83-106) Cold Damage", statOrder = { 824 }, level = 75, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (55-69) to (83-106) Cold Damage" }, } }, + ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (72-81) to (110-123) Cold Damage", statOrder = { 824 }, level = 81, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (72-81) to (110-123) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (4-6) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (2-3) to (4-6) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (5-8) to (9-14) Cold Damage", statOrder = { 824 }, level = 8, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (5-8) to (9-14) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (10-14) to (15-23) Cold Damage", statOrder = { 824 }, level = 16, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-14) to (15-23) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-23) to (25-35) Cold Damage", statOrder = { 824 }, level = 33, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-23) to (25-35) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (25-30) to (38-46) Cold Damage", statOrder = { 824 }, level = 46, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (25-30) to (38-46) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-43) to (49-66) Cold Damage", statOrder = { 824 }, level = 54, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (32-43) to (49-66) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (46-57) to (70-88) Cold Damage", statOrder = { 824 }, level = 60, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (46-57) to (70-88) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (60-80) to (92-121) Cold Damage", statOrder = { 824 }, level = 65, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (60-80) to (92-121) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (84-107) to (126-161) Cold Damage", statOrder = { 824 }, level = 75, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (84-107) to (126-161) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (112-124) to (168-189) Cold Damage", statOrder = { 824 }, level = 81, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (112-124) to (168-189) Cold Damage" }, } }, + ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (4-6) Lightning Damage" }, } }, + ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (13-19) Lightning Damage", statOrder = { 825 }, level = 8, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (13-19) Lightning Damage" }, } }, + ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (20-30) Lightning Damage", statOrder = { 825 }, level = 16, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (20-30) Lightning Damage" }, } }, + ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (36-52) Lightning Damage", statOrder = { 825 }, level = 33, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (36-52) Lightning Damage" }, } }, + ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (55-60) Lightning Damage", statOrder = { 825 }, level = 46, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (55-60) Lightning Damage" }, } }, + ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (63-82) Lightning Damage", statOrder = { 825 }, level = 54, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (63-82) Lightning Damage" }, } }, + ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-6) to (85-107) Lightning Damage", statOrder = { 825 }, level = 60, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-6) to (85-107) Lightning Damage" }, } }, + ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-8) to (111-152) Lightning Damage", statOrder = { 825 }, level = 65, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (111-152) Lightning Damage" }, } }, + ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-10) to (157-196) Lightning Damage", statOrder = { 825 }, level = 75, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-10) to (157-196) Lightning Damage" }, } }, + ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-12) to (202-234) Lightning Damage", statOrder = { 825 }, level = 81, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-12) to (202-234) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 1 to (7-10) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (7-10) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (19-27) Lightning Damage", statOrder = { 825 }, level = 8, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (19-27) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (31-43) Lightning Damage", statOrder = { 825 }, level = 16, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (31-43) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (53-76) Lightning Damage", statOrder = { 825 }, level = 33, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (53-76) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (1-4) to (80-88) Lightning Damage", statOrder = { 825 }, level = 46, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (80-88) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (1-6) to (93-122) Lightning Damage", statOrder = { 825 }, level = 54, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-6) to (93-122) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (1-8) to (128-162) Lightning Damage", statOrder = { 825 }, level = 60, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (128-162) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (1-13) to (168-231) Lightning Damage", statOrder = { 825 }, level = 65, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-13) to (168-231) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-16) to (239-300) Lightning Damage", statOrder = { 825 }, level = 75, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-16) to (239-300) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-19) to (310-358) Lightning Damage", statOrder = { 825 }, level = 81, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-19) to (310-358) Lightning Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage", statOrder = { 882 }, level = 1, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage", statOrder = { 882 }, level = 8, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage", statOrder = { 882 }, level = 16, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage", statOrder = { 882 }, level = 33, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage", statOrder = { 882 }, level = 46, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage", statOrder = { 882 }, level = 54, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage", statOrder = { 882 }, level = 60, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage", statOrder = { 882 }, level = 65, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage", statOrder = { 882 }, level = 75, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage", statOrder = { 883 }, level = 1, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage", statOrder = { 883 }, level = 8, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage", statOrder = { 883 }, level = 16, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage", statOrder = { 883 }, level = 33, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage", statOrder = { 883 }, level = 46, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage", statOrder = { 883 }, level = 54, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage", statOrder = { 883 }, level = 60, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage", statOrder = { 883 }, level = 65, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage", statOrder = { 883 }, level = 75, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage", statOrder = { 884 }, level = 1, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage", statOrder = { 884 }, level = 8, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage", statOrder = { 884 }, level = 16, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage", statOrder = { 884 }, level = 33, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage", statOrder = { 884 }, level = 46, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage", statOrder = { 884 }, level = 54, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage", statOrder = { 884 }, level = 60, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage", statOrder = { 884 }, level = 65, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage", statOrder = { 884 }, level = 75, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage", statOrder = { 885 }, level = 1, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage", statOrder = { 885 }, level = 8, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage", statOrder = { 885 }, level = 16, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage", statOrder = { 885 }, level = 33, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage", statOrder = { 885 }, level = 46, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage", statOrder = { 885 }, level = 54, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage", statOrder = { 885 }, level = 60, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage", statOrder = { 885 }, level = 65, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage", statOrder = { 885 }, level = 75, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-49)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 821 }, level = 8, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(50-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 821 }, level = 16, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(65-84)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 821 }, level = 33, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(85-109)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 821 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(110-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 821 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(135-154)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 821 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(155-169)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 821 }, level = 82, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(170-179)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 821, 826 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(16-20) to Accuracy Rating" }, [1509134228] = { "(15-19)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 821, 826 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(21-46) to Accuracy Rating" }, [1509134228] = { "(20-24)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 821, 826 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(47-72) to Accuracy Rating" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 821, 826 }, level = 38, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(73-97) to Accuracy Rating" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 821, 826 }, level = 54, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(98-123) to Accuracy Rating" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 821, 826 }, level = 65, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(124-149) to Accuracy Rating" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 821, 826 }, level = 70, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(150-174) to Accuracy Rating" }, [1509134228] = { "(65-74)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 821, 826 }, level = 81, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(175-200) to Accuracy Rating" }, [1509134228] = { "(75-79)% increased Physical Damage" }, } }, + ["NearbyAlliesAllDamage1"] = { type = "Prefix", affix = "Coercive", "Allies in your Presence deal (25-34)% increased Damage", statOrder = { 881 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (25-34)% increased Damage" }, } }, + ["NearbyAlliesAllDamage2"] = { type = "Prefix", affix = "Agitative", "Allies in your Presence deal (35-44)% increased Damage", statOrder = { 881 }, level = 8, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (35-44)% increased Damage" }, } }, + ["NearbyAlliesAllDamage3"] = { type = "Prefix", affix = "Instigative", "Allies in your Presence deal (45-54)% increased Damage", statOrder = { 881 }, level = 16, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (45-54)% increased Damage" }, } }, + ["NearbyAlliesAllDamage4"] = { type = "Prefix", affix = "Provocative", "Allies in your Presence deal (55-64)% increased Damage", statOrder = { 881 }, level = 33, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (55-64)% increased Damage" }, } }, + ["NearbyAlliesAllDamage5"] = { type = "Prefix", affix = "Persuasive", "Allies in your Presence deal (65-74)% increased Damage", statOrder = { 881 }, level = 46, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (65-74)% increased Damage" }, } }, + ["NearbyAlliesAllDamage6"] = { type = "Prefix", affix = "Motivating", "Allies in your Presence deal (75-89)% increased Damage", statOrder = { 881 }, level = 60, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (75-89)% increased Damage" }, } }, + ["NearbyAlliesAllDamage7"] = { type = "Prefix", affix = "Inspirational", "Allies in your Presence deal (90-104)% increased Damage", statOrder = { 881 }, level = 70, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (90-104)% increased Damage" }, } }, + ["NearbyAlliesAllDamage8"] = { type = "Prefix", affix = "Empowering", "Allies in your Presence deal (105-119)% increased Damage", statOrder = { 881 }, level = 82, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (105-119)% increased Damage" }, } }, + ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(25-34)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-34)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(35-44)% increased Spell Damage", statOrder = { 853 }, level = 8, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-44)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-54)% increased Spell Damage", statOrder = { 853 }, level = 16, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-54)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(55-64)% increased Spell Damage", statOrder = { 853 }, level = 33, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(55-64)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(65-74)% increased Spell Damage", statOrder = { 853 }, level = 46, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(65-74)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(75-89)% increased Spell Damage", statOrder = { 853 }, level = 60, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(75-89)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(90-104)% increased Spell Damage", statOrder = { 853 }, level = 70, group = "WeaponSpellDamage", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(90-104)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(105-119)% increased Spell Damage", statOrder = { 853 }, level = 80, group = "WeaponSpellDamage", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(105-119)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(50-68)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-68)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(69-88)% increased Spell Damage", statOrder = { 853 }, level = 8, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-88)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(89-108)% increased Spell Damage", statOrder = { 853 }, level = 16, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(89-108)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(109-128)% increased Spell Damage", statOrder = { 853 }, level = 33, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(109-128)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(129-148)% increased Spell Damage", statOrder = { 853 }, level = 46, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(129-148)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(149-188)% increased Spell Damage", statOrder = { 853 }, level = 60, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(149-188)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(189-208)% increased Spell Damage", statOrder = { 853 }, level = 70, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(189-208)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(209-238)% increased Spell Damage", statOrder = { 853 }, level = 80, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(209-238)% increased Spell Damage" }, } }, + ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(15-19)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 853, 871 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(20-24)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 853, 871 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, [1050105434] = { "+(21-24) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(25-29)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 853, 871 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-29)% increased Spell Damage" }, [1050105434] = { "+(25-28) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-34)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 853, 871 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, [1050105434] = { "+(29-33) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(35-39)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 853, 871 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, [1050105434] = { "+(34-37) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(40-44)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 853, 871 }, level = 60, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-44)% increased Spell Damage" }, [1050105434] = { "+(38-41) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(45-49)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 853, 871 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-49)% increased Spell Damage" }, [1050105434] = { "+(42-45) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(30-38)% increased Spell Damage", "+(34-40) to maximum Mana", statOrder = { 853, 871 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-38)% increased Spell Damage" }, [1050105434] = { "+(34-40) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(39-48)% increased Spell Damage", "+(41-48) to maximum Mana", statOrder = { 853, 871 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(39-48)% increased Spell Damage" }, [1050105434] = { "+(41-48) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(49-58)% increased Spell Damage", "+(49-56) to maximum Mana", statOrder = { 853, 871 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(49-58)% increased Spell Damage" }, [1050105434] = { "+(49-56) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(59-68)% increased Spell Damage", "+(57-66) to maximum Mana", statOrder = { 853, 871 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(59-68)% increased Spell Damage" }, [1050105434] = { "+(57-66) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(69-78)% increased Spell Damage", "+(67-74) to maximum Mana", statOrder = { 853, 871 }, level = 48, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-78)% increased Spell Damage" }, [1050105434] = { "+(67-74) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(79-88)% increased Spell Damage", "+(75-82) to maximum Mana", statOrder = { 853, 871 }, level = 63, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(79-88)% increased Spell Damage" }, [1050105434] = { "+(75-82) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(89-98)% increased Spell Damage", "+(83-90) to maximum Mana", statOrder = { 853, 871 }, level = 79, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(89-98)% increased Spell Damage" }, [1050105434] = { "+(83-90) to maximum Mana" }, } }, + ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(25-34)% increased Fire Damage", statOrder = { 855 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-34)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(35-44)% increased Fire Damage", statOrder = { 855 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-44)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-54)% increased Fire Damage", statOrder = { 855 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(45-54)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(55-64)% increased Fire Damage", statOrder = { 855 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(55-64)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Smoldering", "(65-74)% increased Fire Damage", statOrder = { 855 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(65-74)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(75-89)% increased Fire Damage", statOrder = { 855 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(75-89)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Volcanic", "(90-104)% increased Fire Damage", statOrder = { 855 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(90-104)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(105-119)% increased Fire Damage", statOrder = { 855 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(105-119)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(50-68)% increased Fire Damage", statOrder = { 855 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(50-68)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(69-88)% increased Fire Damage", statOrder = { 855 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(69-88)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(89-108)% increased Fire Damage", statOrder = { 855 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(89-108)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(109-128)% increased Fire Damage", statOrder = { 855 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(109-128)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Smoldering", "(129-148)% increased Fire Damage", statOrder = { 855 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(129-148)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(149-188)% increased Fire Damage", statOrder = { 855 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(149-188)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Volcanic", "(189-208)% increased Fire Damage", statOrder = { 855 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(189-208)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(209-238)% increased Fire Damage", statOrder = { 855 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(209-238)% increased Fire Damage" }, } }, + ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(25-34)% increased Cold Damage", statOrder = { 856 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(25-34)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(35-44)% increased Cold Damage", statOrder = { 856 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-44)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(45-54)% increased Cold Damage", statOrder = { 856 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(45-54)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(55-64)% increased Cold Damage", statOrder = { 856 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(55-64)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(65-74)% increased Cold Damage", statOrder = { 856 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(65-74)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Arctic", "(75-89)% increased Cold Damage", statOrder = { 856 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(75-89)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Crystalline", "(90-104)% increased Cold Damage", statOrder = { 856 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(90-104)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(105-119)% increased Cold Damage", statOrder = { 856 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(105-119)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(50-68)% increased Cold Damage", statOrder = { 856 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(50-68)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(69-88)% increased Cold Damage", statOrder = { 856 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(69-88)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(89-108)% increased Cold Damage", statOrder = { 856 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(89-108)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(109-128)% increased Cold Damage", statOrder = { 856 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(109-128)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(129-148)% increased Cold Damage", statOrder = { 856 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(129-148)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Arctic", "(149-188)% increased Cold Damage", statOrder = { 856 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(149-188)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Crystalline", "(189-208)% increased Cold Damage", statOrder = { 856 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(189-208)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(209-238)% increased Cold Damage", statOrder = { 856 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(209-238)% increased Cold Damage" }, } }, + ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(25-34)% increased Lightning Damage", statOrder = { 857 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(25-34)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(35-44)% increased Lightning Damage", statOrder = { 857 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(35-44)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-54)% increased Lightning Damage", statOrder = { 857 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(45-54)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(55-64)% increased Lightning Damage", statOrder = { 857 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(55-64)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(65-74)% increased Lightning Damage", statOrder = { 857 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(65-74)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(75-89)% increased Lightning Damage", statOrder = { 857 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(75-89)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(90-104)% increased Lightning Damage", statOrder = { 857 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(90-104)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(105-119)% increased Lightning Damage", statOrder = { 857 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(105-119)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(50-68)% increased Lightning Damage", statOrder = { 857 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(50-68)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(69-88)% increased Lightning Damage", statOrder = { 857 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(69-88)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(89-108)% increased Lightning Damage", statOrder = { 857 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(89-108)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(109-128)% increased Lightning Damage", statOrder = { 857 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(109-128)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(129-148)% increased Lightning Damage", statOrder = { 857 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(129-148)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(149-188)% increased Lightning Damage", statOrder = { 857 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(149-188)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(189-208)% increased Lightning Damage", statOrder = { 857 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(189-208)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(209-238)% increased Lightning Damage", statOrder = { 857 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(209-238)% increased Lightning Damage" }, } }, + ["ChaosDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Impure", "(25-34)% increased Chaos Damage", statOrder = { 858 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(25-34)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Tainted", "(35-44)% increased Chaos Damage", statOrder = { 858 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(35-44)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Clouded", "(45-54)% increased Chaos Damage", statOrder = { 858 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(45-54)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Darkened", "(55-64)% increased Chaos Damage", statOrder = { 858 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(55-64)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Malignant", "(65-74)% increased Chaos Damage", statOrder = { 858 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(65-74)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Vile", "(75-89)% increased Chaos Damage", statOrder = { 858 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(75-89)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Twisted", "(90-104)% increased Chaos Damage", statOrder = { 858 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(90-104)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Malevolent", "(105-119)% increased Chaos Damage", statOrder = { 858 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(105-119)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Impure", "(50-68)% increased Chaos Damage", statOrder = { 858 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-68)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Tainted", "(69-88)% increased Chaos Damage", statOrder = { 858 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(69-88)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Clouded", "(89-108)% increased Chaos Damage", statOrder = { 858 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(89-108)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Darkened", "(109-128)% increased Chaos Damage", statOrder = { 858 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(109-128)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Malignant", "(129-148)% increased Chaos Damage", statOrder = { 858 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(129-148)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Vile", "(149-188)% increased Chaos Damage", statOrder = { 858 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(149-188)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Twisted", "(189-208)% increased Chaos Damage", statOrder = { 858 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(189-208)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Malevolent", "(209-238)% increased Chaos Damage", statOrder = { 858 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(209-238)% increased Chaos Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Punishing", "(25-34)% increased Spell Physical Damage", statOrder = { 860 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(25-34)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(35-44)% increased Spell Physical Damage", statOrder = { 860 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(35-44)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Vengeful", "(45-54)% increased Spell Physical Damage", statOrder = { 860 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(45-54)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Sadistic", "(55-64)% increased Spell Physical Damage", statOrder = { 860 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(55-64)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Pitiless", "(65-74)% increased Spell Physical Damage", statOrder = { 860 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(65-74)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Agonising", "(75-89)% increased Spell Physical Damage", statOrder = { 860 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(75-89)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(90-104)% increased Spell Physical Damage", statOrder = { 860 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(90-104)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Torturer's", "(105-119)% increased Spell Physical Damage", statOrder = { 860 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(105-119)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Punishing", "(50-68)% increased Spell Physical Damage", statOrder = { 860 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(50-68)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(69-88)% increased Spell Physical Damage", statOrder = { 860 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(69-88)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Vengeful", "(89-108)% increased Spell Physical Damage", statOrder = { 860 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(89-108)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Sadistic", "(109-128)% increased Spell Physical Damage", statOrder = { 860 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(109-128)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Pitiless", "(129-148)% increased Spell Physical Damage", statOrder = { 860 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(129-148)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Agonising", "(149-188)% increased Spell Physical Damage", statOrder = { 860 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(149-188)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(189-208)% increased Spell Physical Damage", statOrder = { 860 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(189-208)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Torturer's", "(209-238)% increased Spell Physical Damage", statOrder = { 860 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(209-238)% increased Spell Physical Damage" }, } }, + ["TrapDamageOnWeapon1"] = { type = "Prefix", affix = "Explosive", "(25-34)% increased Trap Damage", statOrder = { 854 }, level = 2, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(25-34)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon2"] = { type = "Prefix", affix = "Eviscerating", "(35-44)% increased Trap Damage", statOrder = { 854 }, level = 8, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(35-44)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon3"] = { type = "Prefix", affix = "Crippling", "(45-54)% increased Trap Damage", statOrder = { 854 }, level = 16, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(45-54)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon4"] = { type = "Prefix", affix = "Disabling", "(55-64)% increased Trap Damage", statOrder = { 854 }, level = 33, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(55-64)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon5"] = { type = "Prefix", affix = "Decimating", "(65-74)% increased Trap Damage", statOrder = { 854 }, level = 46, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(65-74)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon6"] = { type = "Prefix", affix = "Demolishing", "(75-89)% increased Trap Damage", statOrder = { 854 }, level = 60, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(75-89)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon7"] = { type = "Prefix", affix = "Obliterating", "(90-104)% increased Trap Damage", statOrder = { 854 }, level = 70, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(90-104)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon8"] = { type = "Prefix", affix = "Shattering", "(105-119)% increased Trap Damage", statOrder = { 854 }, level = 81, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(105-119)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Sapper's", "(15-19)% increased Trap Damage", "+(17-20) to maximum Mana", statOrder = { 854, 871 }, level = 2, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [2941585404] = { "(15-19)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Saboteur's", "(20-24)% increased Trap Damage", "+(21-24) to maximum Mana", statOrder = { 854, 871 }, level = 11, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [2941585404] = { "(20-24)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Tinkerer's", "(25-29)% increased Trap Damage", "+(25-28) to maximum Mana", statOrder = { 854, 871 }, level = 23, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [2941585404] = { "(25-29)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Mechanic's", "(30-34)% increased Trap Damage", "+(29-33) to maximum Mana", statOrder = { 854, 871 }, level = 35, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [2941585404] = { "(30-34)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Engineer's", "(35-39)% increased Trap Damage", "+(34-37) to maximum Mana", statOrder = { 854, 871 }, level = 48, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [2941585404] = { "(35-39)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Inventor's", "(40-44)% increased Trap Damage", "+(38-41) to maximum Mana", statOrder = { 854, 871 }, level = 63, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [2941585404] = { "(40-44)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Artificer's", "(45-49)% increased Trap Damage", "+(42-45) to maximum Mana", statOrder = { 854, 871 }, level = 78, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [2941585404] = { "(45-49)% increased Trap Damage" }, } }, + ["GlobalSpellGemsLevel1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 922 }, level = 10, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevel2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 922 }, level = 41, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevel3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 75, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 922 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 922 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of the Wizard", "+4 to Level of all Spell Skills", statOrder = { 922 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+4 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Mage", "+2 to Level of all Spell Skills", statOrder = { 922 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Evoker", "+4 to Level of all Spell Skills", statOrder = { 922 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+4 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Sorcerer", "+(5-6) to Level of all Spell Skills", statOrder = { 922 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(5-6) to Level of all Spell Skills" }, } }, + ["GlobalFireSpellGemsLevel1_"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 5, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevel2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 41, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevel3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 75, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Immolation", "+4 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+4 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Inferno", "+5 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+5 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Flames", "+(3-4) to Level of all Fire Spell Skills", statOrder = { 924 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(3-4) to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Immolation", "+(5-6) to Level of all Fire Spell Skills", statOrder = { 924 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(5-6) to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Inferno", "+7 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+7 to Level of all Fire Spell Skills" }, } }, + ["GlobalColdSpellGemsLevel1_"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 5, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevel2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 41, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevel3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 75, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Rime", "+4 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+4 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+5 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+5 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ice", "+(3-4) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(3-4) to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Rime", "+(5-6) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(5-6) to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+7 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+7 to Level of all Cold Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevel1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 5, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevel2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 41, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevel3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 75, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Voltage", "+4 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+4 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Thunder", "+5 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+5 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Electricity", "+(3-4) to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(3-4) to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Voltage", "+(5-6) to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(5-6) to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Thunder", "+7 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+7 to Level of all Lightning Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevel1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 5, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevel2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 41, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevel3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 75, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Havoc", "+4 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+4 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+5 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+5 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ruin", "+(3-4) to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(3-4) to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Havoc", "+(5-6) to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(5-6) to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+7 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+7 to Level of all Chaos Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevel1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 5, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevel2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 41, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevel3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 75, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Desolation", "+4 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+4 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Grief", "+5 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+5 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Torment", "+(3-4) to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(3-4) to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Desolation", "+(5-6) to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(5-6) to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Grief", "+7 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+7 to Level of all Physical Spell Skills" }, } }, + ["GlobalMinionSpellSkillGemLevel1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 931 }, level = 5, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevel2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 931 }, level = 41, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevel3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 931 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+3 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 931 }, level = 2, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 931 }, level = 25, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 931 }, level = 55, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+3 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Slavedriver", "+4 to Level of all Minion Skills", statOrder = { 931 }, level = 78, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+4 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Tyrant", "+5 to Level of all Minion Skills", statOrder = { 931 }, level = 81, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+5 to Level of all Minion Skills" }, } }, + ["GlobalTrapSkillGemLevel1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 5, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevel2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 41, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+2 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevel3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 75, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+3 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 2, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 18, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+2 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 36, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+3 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Detonation", "+4 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 55, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+4 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of Pyrotechnics", "+5 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 81, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+5 to Level of all Trap Skill Gems" }, } }, + ["GlobalMeleeSkillGemLevel1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 928 }, level = 5, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevel2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 928 }, level = 41, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevel3"] = { type = "Suffix", affix = "of Battle", "+3 to Level of all Melee Skills", statOrder = { 928 }, level = 75, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 928 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 928 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Conflict", "+3 to Level of all Melee Skills", statOrder = { 928 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Battle", "+4 to Level of all Melee Skills", statOrder = { 928 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+4 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of War", "+5 to Level of all Melee Skills", statOrder = { 928 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+5 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Combat", "+2 to Level of all Melee Skills", statOrder = { 928 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Dueling", "+3 to Level of all Melee Skills", statOrder = { 928 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Conflict", "+4 to Level of all Melee Skills", statOrder = { 928 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+4 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Battle", "+(5-6) to Level of all Melee Skills", statOrder = { 928 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+(5-6) to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of War", "+7 to Level of all Melee Skills", statOrder = { 928 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+7 to Level of all Melee Skills" }, } }, + ["GlobalProjectileSkillGemLevel1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 930 }, level = 5, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevel2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 930 }, level = 41, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevel3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 930 }, level = 75, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 930 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 930 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 930 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+4 to Level of all Projectile Skills", statOrder = { 930 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+4 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+5 to Level of all Projectile Skills", statOrder = { 930 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+5 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Archer", "+2 to Level of all Projectile Skills", statOrder = { 930 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+3 to Level of all Projectile Skills", statOrder = { 930 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+4 to Level of all Projectile Skills", statOrder = { 930 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+4 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+(5-6) to Level of all Projectile Skills", statOrder = { 930 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+(5-6) to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+7 to Level of all Projectile Skills", statOrder = { 930 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+7 to Level of all Projectile Skills" }, } }, + ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "(1-2) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(1-2) Life Regeneration per second" }, } }, + ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "(2.1-3) Life Regeneration per second", statOrder = { 968 }, level = 5, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(2.1-3) Life Regeneration per second" }, } }, + ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "(3.1-4) Life Regeneration per second", statOrder = { 968 }, level = 11, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3.1-4) Life Regeneration per second" }, } }, + ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "(4.1-6) Life Regeneration per second", statOrder = { 968 }, level = 17, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(4.1-6) Life Regeneration per second" }, } }, + ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "(6.1-9) Life Regeneration per second", statOrder = { 968 }, level = 26, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(6.1-9) Life Regeneration per second" }, } }, + ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "(9.1-13) Life Regeneration per second", statOrder = { 968 }, level = 35, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(9.1-13) Life Regeneration per second" }, } }, + ["LifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "(13.1-18) Life Regeneration per second", statOrder = { 968 }, level = 47, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(13.1-18) Life Regeneration per second" }, } }, + ["LifeRegeneration8_"] = { type = "Suffix", affix = "of Recuperation", "(18.1-23) Life Regeneration per second", statOrder = { 968 }, level = 58, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(18.1-23) Life Regeneration per second" }, } }, + ["LifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "(23.1-29) Life Regeneration per second", statOrder = { 968 }, level = 68, group = "LifeRegeneration", weightKey = { "body_armour", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(23.1-29) Life Regeneration per second" }, } }, + ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Immortality", "(29.1-33) Life Regeneration per second", statOrder = { 968 }, level = 75, group = "LifeRegeneration", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(29.1-33) Life Regeneration per second" }, } }, + ["LifeRegeneration11____"] = { type = "Suffix", affix = "of the Phoenix", "(33.1-36) Life Regeneration per second", statOrder = { 968 }, level = 81, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(33.1-36) Life Regeneration per second" }, } }, + ["NearbyAlliesLifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Allies in your Presence Regenerate (1-2) Life per second", statOrder = { 896 }, level = 1, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (1-2) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Allies in your Presence Regenerate (2.1-3) Life per second", statOrder = { 896 }, level = 5, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (2.1-3) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Allies in your Presence Regenerate (3.1-4) Life per second", statOrder = { 896 }, level = 11, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (3.1-4) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Allies in your Presence Regenerate (4.1-6) Life per second", statOrder = { 896 }, level = 17, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (4.1-6) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Allies in your Presence Regenerate (6.1-9) Life per second", statOrder = { 896 }, level = 26, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (6.1-9) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Allies in your Presence Regenerate (9.1-13) Life per second", statOrder = { 896 }, level = 35, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (9.1-13) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "Allies in your Presence Regenerate (13.1-18) Life per second", statOrder = { 896 }, level = 47, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (13.1-18) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration8"] = { type = "Suffix", affix = "of Recuperation", "Allies in your Presence Regenerate (18.1-23) Life per second", statOrder = { 896 }, level = 58, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (18.1-23) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "Allies in your Presence Regenerate (23.1-29) Life per second", statOrder = { 896 }, level = 68, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (23.1-29) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration10"] = { type = "Suffix", affix = "of Immortality", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 896 }, level = 75, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (29.1-33) Life per second" }, } }, + ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(10-19)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-29)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-39)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-49)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(50-59)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-69)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(15-29)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-29)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(30-44)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-44)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(45-59)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(45-59)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(60-74)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-74)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(75-89)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(75-89)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(90-104)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(90-104)% increased Mana Regeneration Rate" }, } }, + ["LifeLeech1"] = { type = "Suffix", affix = "of the Parasite", "Leech (5-5.9)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 21, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (5-5.9)% of Physical Attack Damage as Life" }, } }, + ["LifeLeech2"] = { type = "Suffix", affix = "of the Locust", "Leech (6-6.9)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 38, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (6-6.9)% of Physical Attack Damage as Life" }, } }, + ["LifeLeech3"] = { type = "Suffix", affix = "of the Remora", "Leech (7-7.9)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 54, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (7-7.9)% of Physical Attack Damage as Life" }, } }, + ["LifeLeech4"] = { type = "Suffix", affix = "of the Lamprey", "Leech (8-8.9)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (8-8.9)% of Physical Attack Damage as Life" }, } }, + ["LifeLeech5"] = { type = "Suffix", affix = "of the Vampire", "Leech (9-9.9)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 81, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (9-9.9)% of Physical Attack Damage as Life" }, } }, + ["LifeLeechLocal1"] = { type = "Suffix", affix = "of the Parasite", "Leeches (5-5.9)% of Physical Damage as Life", statOrder = { 972 }, level = 21, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-5.9)% of Physical Damage as Life" }, } }, + ["LifeLeechLocal2"] = { type = "Suffix", affix = "of the Locust", "Leeches (6-6.9)% of Physical Damage as Life", statOrder = { 972 }, level = 38, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (6-6.9)% of Physical Damage as Life" }, } }, + ["LifeLeechLocal3"] = { type = "Suffix", affix = "of the Remora", "Leeches (7-7.9)% of Physical Damage as Life", statOrder = { 972 }, level = 54, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (7-7.9)% of Physical Damage as Life" }, } }, + ["LifeLeechLocal4"] = { type = "Suffix", affix = "of the Lamprey", "Leeches (8-8.9)% of Physical Damage as Life", statOrder = { 972 }, level = 68, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (8-8.9)% of Physical Damage as Life" }, } }, + ["LifeLeechLocal5"] = { type = "Suffix", affix = "of the Vampire", "Leeches (9-9.9)% of Physical Damage as Life", statOrder = { 972 }, level = 81, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (9-9.9)% of Physical Damage as Life" }, } }, + ["ManaLeech1"] = { type = "Suffix", affix = "of the Thirsty", "Leech (4-4.9)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 21, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (4-4.9)% of Physical Attack Damage as Mana" }, } }, + ["ManaLeech2"] = { type = "Suffix", affix = "of the Parched", "Leech (5-5.9)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 38, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (5-5.9)% of Physical Attack Damage as Mana" }, } }, + ["ManaLeech3"] = { type = "Suffix", affix = "of the Arid", "Leech (6-6.9)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 54, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (6-6.9)% of Physical Attack Damage as Mana" }, } }, + ["ManaLeech4"] = { type = "Suffix", affix = "of the Drought", "Leech (7-7.9)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (7-7.9)% of Physical Attack Damage as Mana" }, } }, + ["ManaLeech5"] = { type = "Suffix", affix = "of the Desperate", "Leech (8-8.9)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 81, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (8-8.9)% of Physical Attack Damage as Mana" }, } }, + ["ManaLeechLocal1"] = { type = "Suffix", affix = "of the Thirsty", "Leeches (4-4.9)% of Physical Damage as Mana", statOrder = { 978 }, level = 21, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (4-4.9)% of Physical Damage as Mana" }, } }, + ["ManaLeechLocal2"] = { type = "Suffix", affix = "of the Parched", "Leeches (5-5.9)% of Physical Damage as Mana", statOrder = { 978 }, level = 38, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (5-5.9)% of Physical Damage as Mana" }, } }, + ["ManaLeechLocal3"] = { type = "Suffix", affix = "of the Arid", "Leeches (6-6.9)% of Physical Damage as Mana", statOrder = { 978 }, level = 54, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (6-6.9)% of Physical Damage as Mana" }, } }, + ["ManaLeechLocal4"] = { type = "Suffix", affix = "of the Drought", "Leeches (7-7.9)% of Physical Damage as Mana", statOrder = { 978 }, level = 68, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (7-7.9)% of Physical Damage as Mana" }, } }, + ["ManaLeechLocal5"] = { type = "Suffix", affix = "of the Desperate", "Leeches (8-8.9)% of Physical Damage as Mana", statOrder = { 978 }, level = 81, group = "ManaLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (8-8.9)% of Physical Damage as Mana" }, } }, + ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (4-6) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (4-6) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (7-9) Life per enemy killed", statOrder = { 975 }, level = 11, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (7-9) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (10-18) Life per enemy killed", statOrder = { 975 }, level = 22, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-18) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (19-28) Life per enemy killed", statOrder = { 975 }, level = 33, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (19-28) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Vanquishing", "Gain (29-40) Life per enemy killed", statOrder = { 975 }, level = 44, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (29-40) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Valour", "Gain (41-53) Life per enemy killed", statOrder = { 975 }, level = 55, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (41-53) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Glory", "Gain (54-68) Life per enemy killed", statOrder = { 975 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (54-68) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Legend", "Gain (69-84) Life per enemy killed", statOrder = { 975 }, level = 77, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (69-84) Life per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (2-3) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (2-3) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (4-5) Mana per enemy killed", statOrder = { 980 }, level = 12, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (4-5) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Infusion", "Gain (6-9) Mana per enemy killed", statOrder = { 980 }, level = 23, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (6-9) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Enveloping", "Gain (10-14) Mana per enemy killed", statOrder = { 980 }, level = 34, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-14) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Consumption", "Gain (15-20) Mana per enemy killed", statOrder = { 980 }, level = 45, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (15-20) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Gain (21-27) Mana per enemy killed", statOrder = { 980 }, level = 56, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (21-27) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Devouring", "Gain (28-35) Mana per enemy killed", statOrder = { 980 }, level = 67, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (28-35) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Assimilation", "Gain (36-45) Mana per enemy killed", statOrder = { 980 }, level = 78, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (36-45) Mana per enemy killed" }, } }, + ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 8, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 2 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 20, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 3 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 30, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 4 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 40, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 5 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants 2 Life per Enemy Hit", statOrder = { 974 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 2 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants 3 Life per Enemy Hit", statOrder = { 974 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants 4 Life per Enemy Hit", statOrder = { 974 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 4 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants 5 Life per Enemy Hit", statOrder = { 974 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 5 Life per Enemy Hit" }, } }, + ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-7)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 941 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 941 }, level = 37, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(11-13)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 941 }, level = 60, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(14-16)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 919 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 919 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-13)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 919 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 919 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 919 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 919 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(23-25)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-28)% increased Attack Speed", statOrder = { 919 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(26-28)% increased Attack Speed" }, } }, + ["NearbyAlliesIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "Allies in your Presence have (5-7)% increased Attack Speed", statOrder = { 893 }, level = 5, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (5-7)% increased Attack Speed" }, } }, + ["NearbyAlliesIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "Allies in your Presence have (8-10)% increased Attack Speed", statOrder = { 893 }, level = 20, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (8-10)% increased Attack Speed" }, } }, + ["NearbyAlliesIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "Allies in your Presence have (11-13)% increased Attack Speed", statOrder = { 893 }, level = 35, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (11-13)% increased Attack Speed" }, } }, + ["NearbyAlliesIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "Allies in your Presence have (14-16)% increased Attack Speed", statOrder = { 893 }, level = 55, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (14-16)% increased Attack Speed" }, } }, + ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(9-12)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(13-16)% increased Cast Speed", statOrder = { 942 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-16)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(17-20)% increased Cast Speed", statOrder = { 942 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(17-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "(21-24)% increased Cast Speed", statOrder = { 942 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(21-24)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Legerdemain", "(25-28)% increased Cast Speed", statOrder = { 942 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-28)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Prestidigitation", "(29-32)% increased Cast Speed", statOrder = { 942 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(29-32)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(33-35)% increased Cast Speed", statOrder = { 942 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(33-35)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(14-19)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-19)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(20-25)% increased Cast Speed", statOrder = { 942 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-25)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(26-31)% increased Cast Speed", statOrder = { 942 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(26-31)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Sortilege", "(32-37)% increased Cast Speed", statOrder = { 942 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(32-37)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Legerdemain", "(38-43)% increased Cast Speed", statOrder = { 942 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(38-43)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Prestidigitation", "(44-49)% increased Cast Speed", statOrder = { 942 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(44-49)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(50-52)% increased Cast Speed", statOrder = { 942 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(50-52)% increased Cast Speed" }, } }, + ["NearbyAlliesIncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "Allies in your Presence have (5-8)% increased Cast Speed", statOrder = { 894 }, level = 6, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (5-8)% increased Cast Speed" }, } }, + ["NearbyAlliesIncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Allies in your Presence have (9-12)% increased Cast Speed", statOrder = { 894 }, level = 21, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (9-12)% increased Cast Speed" }, } }, + ["NearbyAlliesIncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "Allies in your Presence have (13-16)% increased Cast Speed", statOrder = { 894 }, level = 36, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (13-16)% increased Cast Speed" }, } }, + ["NearbyAlliesIncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "Allies in your Presence have (17-20)% increased Cast Speed", statOrder = { 894 }, level = 56, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (17-20)% increased Cast Speed" }, } }, + ["IncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(11-32) to Accuracy Rating" }, } }, + ["IncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 862 }, level = 11, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(33-60) to Accuracy Rating" }, } }, + ["IncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 862 }, level = 18, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(61-84) to Accuracy Rating" }, } }, + ["IncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 862 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(85-123) to Accuracy Rating" }, } }, + ["IncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 862 }, level = 36, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(124-167) to Accuracy Rating" }, } }, + ["IncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 862 }, level = 48, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(168-236) to Accuracy Rating" }, } }, + ["IncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 862 }, level = 58, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(237-346) to Accuracy Rating" }, } }, + ["IncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 862 }, level = 67, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(347-450) to Accuracy Rating" }, } }, + ["IncreasedAccuracy9"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 862 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(451-550) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(11-32) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 826 }, level = 11, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(33-60) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 826 }, level = 18, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(61-84) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 826 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(85-123) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 826 }, level = 36, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(124-167) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 826 }, level = 48, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(168-236) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 826 }, level = 58, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(237-346) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 826 }, level = 67, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(347-450) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy9_"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 826 }, level = 76, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(451-550) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy10"] = { type = "Prefix", affix = "Valkyrie's", "+(551-650) to Accuracy Rating", statOrder = { 826 }, level = 82, group = "LocalAccuracyRating", weightKey = { "ranged", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(551-650) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "Allies in your Presence have +(11-32) to Accuracy Rating", statOrder = { 890 }, level = 1, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(11-32) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "Allies in your Presence have +(33-60) to Accuracy Rating", statOrder = { 890 }, level = 11, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(33-60) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "Allies in your Presence have +(61-84) to Accuracy Rating", statOrder = { 890 }, level = 18, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(61-84) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "Allies in your Presence have +(85-123) to Accuracy Rating", statOrder = { 890 }, level = 26, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(85-123) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "Allies in your Presence have +(124-167) to Accuracy Rating", statOrder = { 890 }, level = 36, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(124-167) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "Allies in your Presence have +(168-236) to Accuracy Rating", statOrder = { 890 }, level = 48, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(168-236) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "Allies in your Presence have +(237-346) to Accuracy Rating", statOrder = { 890 }, level = 58, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(237-346) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "Allies in your Presence have +(347-450) to Accuracy Rating", statOrder = { 890 }, level = 67, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(347-450) to Accuracy Rating" }, } }, + ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance", statOrder = { 933 }, level = 5, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(10-14)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance", statOrder = { 933 }, level = 20, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-19)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance", statOrder = { 933 }, level = 30, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-24)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance", statOrder = { 933 }, level = 44, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-29)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance", statOrder = { 933 }, level = 58, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-34)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance", statOrder = { 933 }, level = 72, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(35-38)% increased Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "+(1.01-1.5)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(1.01-1.5)% to Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "+(1.51-2.1)% to Critical Hit Chance", statOrder = { 917 }, level = 20, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(1.51-2.1)% to Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "+(2.11-2.7)% to Critical Hit Chance", statOrder = { 917 }, level = 30, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(2.11-2.7)% to Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "+(3.11-3.8)% to Critical Hit Chance", statOrder = { 917 }, level = 44, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3.11-3.8)% to Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "+(3.81-4.4)% to Critical Hit Chance", statOrder = { 917 }, level = 59, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3.81-4.4)% to Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "+(4.41-5)% to Critical Hit Chance", statOrder = { 917 }, level = 73, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(4.41-5)% to Critical Hit Chance" }, } }, + ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(27-33)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(27-33)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(34-39)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(34-39)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-46)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-46)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(47-53)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(47-53)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(54-59)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(54-59)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(60-73)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-73)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand1"] = { type = "Suffix", affix = "of Menace", "(40-49)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-49)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand2"] = { type = "Suffix", affix = "of Havoc", "(50-59)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(50-59)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand3"] = { type = "Suffix", affix = "of Disaster", "(60-69)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-69)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand4"] = { type = "Suffix", affix = "of Calamity", "(70-79)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(70-79)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand5"] = { type = "Suffix", affix = "of Ruin", "(80-89)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(80-89)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand6"] = { type = "Suffix", affix = "of Unmaking", "(90-109)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(90-109)% increased Critical Hit Chance for Spells" }, } }, + ["AttackCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 5, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(10-14)% increased Critical Hit Chance for Attacks" }, } }, + ["AttackCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 20, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(15-19)% increased Critical Hit Chance for Attacks" }, } }, + ["AttackCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 30, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(20-24)% increased Critical Hit Chance for Attacks" }, } }, + ["AttackCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 44, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(25-29)% increased Critical Hit Chance for Attacks" }, } }, + ["AttackCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 58, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(30-34)% increased Critical Hit Chance for Attacks" }, } }, + ["AttackCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 72, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(35-38)% increased Critical Hit Chance for Attacks" }, } }, + ["TrapCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 11, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(10-19)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 21, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(20-39)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 28, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(40-59)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 41, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(60-79)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 59, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(80-99)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 76, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(100-109)% increased Critical Hit Chance with Traps" }, } }, + ["NearbyAlliesCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "Allies in your Presence have (10-14)% increased Critical Hit Chance", statOrder = { 891 }, level = 11, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (10-14)% increased Critical Hit Chance" }, } }, + ["NearbyAlliesCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "Allies in your Presence have (15-19)% increased Critical Hit Chance", statOrder = { 891 }, level = 21, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (15-19)% increased Critical Hit Chance" }, } }, + ["NearbyAlliesCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "Allies in your Presence have (20-24)% increased Critical Hit Chance", statOrder = { 891 }, level = 28, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (20-24)% increased Critical Hit Chance" }, } }, + ["NearbyAlliesCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "Allies in your Presence have (25-29)% increased Critical Hit Chance", statOrder = { 891 }, level = 41, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (25-29)% increased Critical Hit Chance" }, } }, + ["NearbyAlliesCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "Allies in your Presence have (30-34)% increased Critical Hit Chance", statOrder = { 891 }, level = 59, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (30-34)% increased Critical Hit Chance" }, } }, + ["NearbyAlliesCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "Allies in your Presence have (35-38)% increased Critical Hit Chance", statOrder = { 891 }, level = 76, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (35-38)% increased Critical Hit Chance" }, } }, + ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus", statOrder = { 937 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-14)% increased Critical Damage Bonus" }, } }, + ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus", statOrder = { 937 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-19)% increased Critical Damage Bonus" }, } }, + ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus", statOrder = { 937 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-24)% increased Critical Damage Bonus" }, } }, + ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus", statOrder = { 937 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(25-29)% increased Critical Damage Bonus" }, } }, + ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus", statOrder = { 937 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(30-34)% increased Critical Damage Bonus" }, } }, + ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus", statOrder = { 937 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(35-39)% increased Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-11)% to Critical Damage Bonus", statOrder = { 918 }, level = 8, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(10-11)% to Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(12-13)% to Critical Damage Bonus", statOrder = { 918 }, level = 21, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(12-13)% to Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(14-16)% to Critical Damage Bonus", statOrder = { 918 }, level = 30, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(14-16)% to Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(17-19)% to Critical Damage Bonus", statOrder = { 918 }, level = 44, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(17-19)% to Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(20-22)% to Critical Damage Bonus", statOrder = { 918 }, level = 59, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(20-22)% to Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(23-25)% to Critical Damage Bonus", statOrder = { 918 }, level = 73, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(23-25)% to Critical Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(10-14)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(15-19)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(20-24)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(25-29)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(30-34)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(35-39)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Ire", "(15-21)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(15-21)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Anger", "(23-29)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(23-29)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Rage", "(30-36)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(30-36)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Fury", "(38-44)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(38-44)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Ferocity", "(45-51)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(45-51)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand6"] = { type = "Suffix", affix = "of Destruction", "(53-59)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(53-59)% increased Critical Spell Damage Bonus" }, } }, + ["AttackCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 8, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(10-14)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 21, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(15-19)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 31, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(20-24)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 45, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(25-29)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 59, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(30-34)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 74, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(35-39)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["TrapCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 8, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(10-14)% to Critical Damage Bonus with Traps" }, } }, + ["TrapCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 21, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(15-19)% to Critical Damage Bonus with Traps" }, } }, + ["TrapCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 30, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(20-24)% to Critical Damage Bonus with Traps" }, } }, + ["TrapCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 44, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(25-29)% to Critical Damage Bonus with Traps" }, } }, + ["TrapCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 59, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(30-34)% to Critical Damage Bonus with Traps" }, } }, + ["TrapCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-39)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 73, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(35-39)% to Critical Damage Bonus with Traps" }, } }, + ["NearbyAlliesCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "Allies in your Presence have (10-14)% increased Critical Damage Bonus", statOrder = { 892 }, level = 8, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (10-14)% increased Critical Damage Bonus" }, } }, + ["NearbyAlliesCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "Allies in your Presence have (15-19)% increased Critical Damage Bonus", statOrder = { 892 }, level = 21, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (15-19)% increased Critical Damage Bonus" }, } }, + ["NearbyAlliesCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "Allies in your Presence have (20-24)% increased Critical Damage Bonus", statOrder = { 892 }, level = 30, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (20-24)% increased Critical Damage Bonus" }, } }, + ["NearbyAlliesCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "Allies in your Presence have (25-29)% increased Critical Damage Bonus", statOrder = { 892 }, level = 44, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (25-29)% increased Critical Damage Bonus" }, } }, + ["NearbyAlliesCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "Allies in your Presence have (30-34)% increased Critical Damage Bonus", statOrder = { 892 }, level = 59, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-34)% increased Critical Damage Bonus" }, } }, + ["NearbyAlliesCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "Allies in your Presence have (35-39)% increased Critical Damage Bonus", statOrder = { 892 }, level = 73, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (35-39)% increased Critical Damage Bonus" }, } }, + ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 916 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-10)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 916 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(11-14)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-18)% increased Rarity of Items found", statOrder = { 916 }, level = 40, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-18)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(19-21)% increased Rarity of Items found", statOrder = { 916 }, level = 63, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(19-21)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncrease5"] = { type = "Suffix", affix = "of Windfall", "(22-25)% increased Rarity of Items found", statOrder = { 916 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(22-25)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-11)% increased Rarity of Items found", statOrder = { 916 }, level = 10, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(8-11)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Collector's", "(12-15)% increased Rarity of Items found", statOrder = { 916 }, level = 29, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-15)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Hoarder's", "(16-19)% increased Rarity of Items found", statOrder = { 916 }, level = 47, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(16-19)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Pirate's", "(20-22)% increased Rarity of Items found", statOrder = { 916 }, level = 65, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-22)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix5"] = { type = "Prefix", affix = "Dragon's", "(23-25)% increased Rarity of Items found", statOrder = { 916 }, level = 81, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(23-25)% increased Rarity of Items found" }, } }, + ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 862, 1003 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [803737631] = { "+(10-20) to Accuracy Rating" }, } }, + ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 862, 1003 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [803737631] = { "+(21-40) to Accuracy Rating" }, } }, + ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 862, 1003 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [803737631] = { "+(41-60) to Accuracy Rating" }, } }, + ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 826, 1003 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [691932474] = { "+(10-20) to Accuracy Rating" }, } }, + ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 826, 1003 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [691932474] = { "+(21-40) to Accuracy Rating" }, } }, + ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 826, 1003 }, level = 30, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [691932474] = { "+(41-60) to Accuracy Rating" }, } }, + ["LightRadiusAndManaRegeneration1"] = { type = "Suffix", affix = "of Warmth", "(8-12)% increased Mana Regeneration Rate", "5% increased Light Radius", statOrder = { 976, 1003 }, level = 8, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [789117908] = { "(8-12)% increased Mana Regeneration Rate" }, } }, + ["LightRadiusAndManaRegeneration2"] = { type = "Suffix", affix = "of Kindling", "(13-17)% increased Mana Regeneration Rate", "10% increased Light Radius", statOrder = { 976, 1003 }, level = 15, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [789117908] = { "(13-17)% increased Mana Regeneration Rate" }, } }, + ["LightRadiusAndManaRegeneration3"] = { type = "Suffix", affix = "of the Hearth", "(18-22)% increased Mana Regeneration Rate", "15% increased Light Radius", statOrder = { 976, 1003 }, level = 30, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [789117908] = { "(18-22)% increased Mana Regeneration Rate" }, } }, + ["LocalBlockChance1"] = { type = "Prefix", affix = "Steadfast", "(15-19)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(15-19)% increased Block chance" }, } }, + ["LocalBlockChance2"] = { type = "Prefix", affix = "Unrelenting", "(20-24)% increased Block chance", statOrder = { 830 }, level = 33, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-24)% increased Block chance" }, } }, + ["LocalBlockChance3"] = { type = "Prefix", affix = "Adamant", "(25-30)% increased Block chance", statOrder = { 830 }, level = 65, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(25-30)% increased Block chance" }, } }, + ["LocalBlockChance4_"] = { type = "Prefix", affix = "Warded", "(58-63)% increased Block chance", statOrder = { 830 }, level = 46, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(58-63)% increased Block chance" }, } }, + ["LocalBlockChance5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Block chance", statOrder = { 830 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(64-69)% increased Block chance" }, } }, + ["LocalBlockChance6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Block chance", statOrder = { 830 }, level = 74, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(70-75)% increased Block chance" }, } }, + ["LocalBlockChance7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Block chance", statOrder = { 830 }, level = 82, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(76-81)% increased Block chance" }, } }, + ["IncreasedSpirit1"] = { type = "Prefix", affix = "Lady's", "+(30-33) to Spirit", statOrder = { 874 }, level = 16, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(30-33) to Spirit" }, } }, + ["IncreasedSpirit2"] = { type = "Prefix", affix = "Baronness'", "+(34-37) to Spirit", statOrder = { 874 }, level = 25, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(34-37) to Spirit" }, } }, + ["IncreasedSpirit3"] = { type = "Prefix", affix = "Viscountess'", "+(38-42) to Spirit", statOrder = { 874 }, level = 33, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(38-42) to Spirit" }, } }, + ["IncreasedSpirit4"] = { type = "Prefix", affix = "Marchioness'", "+(43-46) to Spirit", statOrder = { 874 }, level = 46, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(43-46) to Spirit" }, } }, + ["IncreasedSpirit5"] = { type = "Prefix", affix = "Countess'", "+(47-50) to Spirit", statOrder = { 874 }, level = 54, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(47-50) to Spirit" }, } }, + ["IncreasedSpirit6"] = { type = "Prefix", affix = "Duchess'", "+(51-53) to Spirit", statOrder = { 874 }, level = 60, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(51-53) to Spirit" }, } }, + ["IncreasedSpirit7"] = { type = "Prefix", affix = "Princess'", "+(54-56) to Spirit", statOrder = { 874 }, level = 65, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(54-56) to Spirit" }, } }, + ["IncreasedSpirit8"] = { type = "Prefix", affix = "Queen's", "+(57-61) to Spirit", statOrder = { 874 }, level = 78, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(57-61) to Spirit" }, } }, + ["LocalIncreasedSpiritPercent1"] = { type = "Prefix", affix = "Lord's", "(30-36)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(30-36)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent2"] = { type = "Prefix", affix = "Baron's", "(27-32)% increased Spirit", statOrder = { 842 }, level = 8, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(27-32)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent3"] = { type = "Prefix", affix = "Viscount's", "(33-38)% increased Spirit", statOrder = { 842 }, level = 16, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(33-38)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent4"] = { type = "Prefix", affix = "Marquess'", "(39-44)% increased Spirit", statOrder = { 842 }, level = 33, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(39-44)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent5"] = { type = "Prefix", affix = "Count's", "(45-50)% increased Spirit", statOrder = { 842 }, level = 46, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(45-50)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent6"] = { type = "Prefix", affix = "Duke's", "(51-55)% increased Spirit", statOrder = { 842 }, level = 60, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(51-55)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent7"] = { type = "Prefix", affix = "Prince's", "(56-60)% increased Spirit", statOrder = { 842 }, level = 75, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(56-60)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent8"] = { type = "Prefix", affix = "King's", "(61-65)% increased Spirit", statOrder = { 842 }, level = 82, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(61-65)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana1"] = { type = "Prefix", affix = "Advisor's", "(10-14)% increased Spirit", "+(17-20) to maximum Mana", statOrder = { 842, 871 }, level = 2, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [3984865854] = { "(10-14)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana2"] = { type = "Prefix", affix = "Counselor's", "(15-18)% increased Spirit", "+(21-24) to maximum Mana", statOrder = { 842, 871 }, level = 11, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [3984865854] = { "(15-18)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana3"] = { type = "Prefix", affix = "Emissary's", "(19-22)% increased Spirit", "+(25-28) to maximum Mana", statOrder = { 842, 871 }, level = 26, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [3984865854] = { "(19-22)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana4"] = { type = "Prefix", affix = "Minister's", "(23-26)% increased Spirit", "+(29-33) to maximum Mana", statOrder = { 842, 871 }, level = 36, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [3984865854] = { "(23-26)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana5"] = { type = "Prefix", affix = "Envoy's", "(27-30)% increased Spirit", "+(34-37) to maximum Mana", statOrder = { 842, 871 }, level = 48, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [3984865854] = { "(27-30)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana6"] = { type = "Prefix", affix = "Diplomat's", "(31-34)% increased Spirit", "+(38-41) to maximum Mana", statOrder = { 842, 871 }, level = 58, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [3984865854] = { "(31-34)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana7"] = { type = "Prefix", affix = "Chancellor's", "(35-38)% increased Spirit", "+(42-45) to maximum Mana", statOrder = { 842, 871 }, level = 70, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [3984865854] = { "(35-38)% increased Spirit" }, } }, + ["ReducedBleedDuration1"] = { type = "Suffix", affix = "of Sealing", "(36-40)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 21, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(36-40)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration2"] = { type = "Suffix", affix = "of Alleviation", "(41-45)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 37, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(41-45)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration3"] = { type = "Suffix", affix = "of Allaying", "(46-50)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 50, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(46-50)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration4"] = { type = "Suffix", affix = "of Assuaging", "(51-55)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 64, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(51-55)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration5"] = { type = "Suffix", affix = "of Staunching", "(56-60)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 76, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(56-60)% reduced Duration of Bleeding on You" }, } }, + ["ReducedPoisonDuration1"] = { type = "Suffix", affix = "of the Antitoxin", "(36-40)% reduced Poison Duration on you", statOrder = { 1000 }, level = 21, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(36-40)% reduced Poison Duration on you" }, } }, + ["ReducedPoisonDuration2"] = { type = "Suffix", affix = "of the Remedy", "(41-45)% reduced Poison Duration on you", statOrder = { 1000 }, level = 37, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(41-45)% reduced Poison Duration on you" }, } }, + ["ReducedPoisonDuration3"] = { type = "Suffix", affix = "of the Cure", "(46-50)% reduced Poison Duration on you", statOrder = { 1000 }, level = 50, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(46-50)% reduced Poison Duration on you" }, } }, + ["ReducedPoisonDuration4"] = { type = "Suffix", affix = "of the Panacea", "(51-55)% reduced Poison Duration on you", statOrder = { 1000 }, level = 64, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(51-55)% reduced Poison Duration on you" }, } }, + ["ReducedPoisonDuration5"] = { type = "Suffix", affix = "of the Antidote", "(56-60)% reduced Poison Duration on you", statOrder = { 1000 }, level = 76, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(56-60)% reduced Poison Duration on you" }, } }, + ["ReducedBurnDuration1"] = { type = "Suffix", affix = "of Damping", "(36-40)% reduced Ignite Duration on you", statOrder = { 996 }, level = 21, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-40)% reduced Ignite Duration on you" }, } }, + ["ReducedBurnDuration2"] = { type = "Suffix", affix = "of Quashing", "(41-45)% reduced Ignite Duration on you", statOrder = { 996 }, level = 37, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(41-45)% reduced Ignite Duration on you" }, } }, + ["ReducedBurnDuration3"] = { type = "Suffix", affix = "of Quelling", "(46-50)% reduced Ignite Duration on you", statOrder = { 996 }, level = 50, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(46-50)% reduced Ignite Duration on you" }, } }, + ["ReducedBurnDuration4"] = { type = "Suffix", affix = "of Quenching", "(51-55)% reduced Ignite Duration on you", statOrder = { 996 }, level = 64, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(51-55)% reduced Ignite Duration on you" }, } }, + ["ReducedBurnDuration5"] = { type = "Suffix", affix = "of Dousing", "(56-60)% reduced Ignite Duration on you", statOrder = { 996 }, level = 76, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(56-60)% reduced Ignite Duration on you" }, } }, + ["ReducedShockDuration1"] = { type = "Suffix", affix = "of Earthing", "(36-40)% reduced Shock duration on you", statOrder = { 999 }, level = 20, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(36-40)% reduced Shock duration on you" }, } }, + ["ReducedShockDuration2"] = { type = "Suffix", affix = "of Insulation", "(41-45)% reduced Shock duration on you", statOrder = { 999 }, level = 36, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(41-45)% reduced Shock duration on you" }, } }, + ["ReducedShockDuration3"] = { type = "Suffix", affix = "of the Impedance", "(46-50)% reduced Shock duration on you", statOrder = { 999 }, level = 49, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(46-50)% reduced Shock duration on you" }, } }, + ["ReducedShockDuration4"] = { type = "Suffix", affix = "of the Dielectric", "(51-55)% reduced Shock duration on you", statOrder = { 999 }, level = 63, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(51-55)% reduced Shock duration on you" }, } }, + ["ReducedShockDuration5"] = { type = "Suffix", affix = "of Grounding", "(56-60)% reduced Shock duration on you", statOrder = { 999 }, level = 75, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(56-60)% reduced Shock duration on you" }, } }, + ["ReducedChillDuration1"] = { type = "Suffix", affix = "of Convection", "(36-40)% reduced Chill Duration on you", statOrder = { 997 }, level = 20, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(36-40)% reduced Chill Duration on you" }, } }, + ["ReducedChillDuration2"] = { type = "Suffix", affix = "of Fluidity", "(41-45)% reduced Chill Duration on you", statOrder = { 997 }, level = 36, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(41-45)% reduced Chill Duration on you" }, } }, + ["ReducedChillDuration3"] = { type = "Suffix", affix = "of Entropy", "(46-50)% reduced Chill Duration on you", statOrder = { 997 }, level = 49, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(46-50)% reduced Chill Duration on you" }, } }, + ["ReducedChillDuration4"] = { type = "Suffix", affix = "of Dissipation", "(51-55)% reduced Chill Duration on you", statOrder = { 997 }, level = 63, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(51-55)% reduced Chill Duration on you" }, } }, + ["ReducedChillDuration5"] = { type = "Suffix", affix = "of the Reversal", "(56-60)% reduced Chill Duration on you", statOrder = { 997 }, level = 75, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(56-60)% reduced Chill Duration on you" }, } }, + ["ReducedFreezeDuration1"] = { type = "Suffix", affix = "of Heating", "(36-40)% reduced Freeze Duration on you", statOrder = { 998 }, level = 20, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-40)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDuration2"] = { type = "Suffix", affix = "of Unfreezing", "(41-45)% reduced Freeze Duration on you", statOrder = { 998 }, level = 36, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(41-45)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDuration3"] = { type = "Suffix", affix = "of Defrosting", "(46-50)% reduced Freeze Duration on you", statOrder = { 998 }, level = 49, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(46-50)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDuration4"] = { type = "Suffix", affix = "of the Temperate", "(51-55)% reduced Freeze Duration on you", statOrder = { 998 }, level = 63, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-55)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDuration5"] = { type = "Suffix", affix = "of Thawing", "(56-60)% reduced Freeze Duration on you", statOrder = { 998 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(56-60)% reduced Freeze Duration on you" }, } }, + ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "Hits against you have (21-27)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (21-27)% reduced Critical Damage Bonus" }, } }, + ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "Hits against you have (28-34)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (28-34)% reduced Critical Damage Bonus" }, } }, + ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "Hits against you have (35-41)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 58, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (35-41)% reduced Critical Damage Bonus" }, } }, + ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "Hits against you have (42-47)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 69, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (42-47)% reduced Critical Damage Bonus" }, } }, + ["ReducedExtraDamageFromCrits5"] = { type = "Suffix", affix = "of the Bastion", "Hits against you have (48-54)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 81, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (48-54)% reduced Critical Damage Bonus" }, } }, + ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 951 }, level = 32, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "4% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Custodian", "5% additional Physical Damage Reduction", statOrder = { 951 }, level = 41, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "5% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Sentry", "6% additional Physical Damage Reduction", statOrder = { 951 }, level = 53, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "6% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 951 }, level = 66, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "7% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 951 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "8% additional Physical Damage Reduction" }, } }, + ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, + ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to Maximum Fire Resistance", statOrder = { 953 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, } }, + ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to Maximum Fire Resistance", statOrder = { 953 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to Maximum Fire Resistance" }, } }, + ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to Maximum Cold Resistance", statOrder = { 954 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to Maximum Cold Resistance", statOrder = { 954 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, + ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, + ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to Maximum Lightning Resistance", statOrder = { 955 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, } }, + ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to Maximum Lightning Resistance", statOrder = { 955 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, } }, + ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to Maximum Chaos Resistance", statOrder = { 956 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, } }, + ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to Maximum Chaos Resistance", statOrder = { 956 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, } }, + ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to Maximum Chaos Resistance", statOrder = { 956 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to Maximum Chaos Resistance" }, } }, + ["MaximumElementalResistance1"] = { type = "Suffix", affix = "of the Deathless", "+1% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 75, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, + ["MaximumElementalResistance2"] = { type = "Suffix", affix = "of the Everlasting", "+2% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 81, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+2% to all Maximum Elemental Resistances" }, } }, + ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Enlivening", "(26-30)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(26-30)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(31-35)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 16, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(31-35)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(36-40)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 36, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(36-40)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(41-45)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 48, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(41-45)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(46-50)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 66, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(46-50)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate6"] = { type = "Suffix", affix = "of Suffusion", "(51-55)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(51-55)% increased Energy Shield Recharge Rate" }, } }, + ["FasterStartOfEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Impatience", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartOfEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Restlessness", "(31-35)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 16, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(31-35)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartOfEnergyShieldRecharge3"] = { type = "Suffix", affix = "of Fretfulness", "(36-40)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 36, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(36-40)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartOfEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Motivation", "(41-45)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 48, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(41-45)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartOfEnergyShieldRecharge5"] = { type = "Suffix", affix = "of Excitement", "(46-50)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 66, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(46-50)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartOfEnergyShieldRecharge6"] = { type = "Suffix", affix = "of Anticipation", "(51-55)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 81, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(51-55)% faster start of Energy Shield Recharge" }, } }, + ["ArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of Covering", "+(14-19)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(14-19)% of Armour also applies to Elemental Damage" }, } }, + ["ArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of Sheathing", "+(20-25)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 16, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(20-25)% of Armour also applies to Elemental Damage" }, } }, + ["ArmourAppliesToElementalDamage3"] = { type = "Suffix", affix = "of Lining", "+(26-31)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 36, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(26-31)% of Armour also applies to Elemental Damage" }, } }, + ["ArmourAppliesToElementalDamage4"] = { type = "Suffix", affix = "of Padding", "+(32-37)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 48, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(32-37)% of Armour also applies to Elemental Damage" }, } }, + ["ArmourAppliesToElementalDamage5"] = { type = "Suffix", affix = "of Furring", "+(38-43)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 66, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(38-43)% of Armour also applies to Elemental Damage" }, } }, + ["ArmourAppliesToElementalDamage6"] = { type = "Suffix", affix = "of Thermokryptance", "+(44-50)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 81, group = "ArmourAppliesToElementalDamage", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(44-50)% of Armour also applies to Elemental Damage" }, } }, + ["EvasionGrantsDeflection1"] = { type = "Suffix", affix = "of Deflecting", "Gain Deflection Rating equal to (8-11)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (8-11)% of Evasion Rating" }, } }, + ["EvasionGrantsDeflection2"] = { type = "Suffix", affix = "of Bending", "Gain Deflection Rating equal to (12-14)% of Evasion Rating", statOrder = { 964 }, level = 16, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (12-14)% of Evasion Rating" }, } }, + ["EvasionGrantsDeflection3"] = { type = "Suffix", affix = "of Curvation", "Gain Deflection Rating equal to (15-17)% of Evasion Rating", statOrder = { 964 }, level = 36, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (15-17)% of Evasion Rating" }, } }, + ["EvasionGrantsDeflection4"] = { type = "Suffix", affix = "of Diversion", "Gain Deflection Rating equal to (18-20)% of Evasion Rating", statOrder = { 964 }, level = 48, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (18-20)% of Evasion Rating" }, } }, + ["EvasionGrantsDeflection5"] = { type = "Suffix", affix = "of Flexure", "Gain Deflection Rating equal to (21-23)% of Evasion Rating", statOrder = { 964 }, level = 66, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (21-23)% of Evasion Rating" }, } }, + ["EvasionGrantsDeflection6"] = { type = "Suffix", affix = "of Warping", "Gain Deflection Rating equal to (24-26)% of Evasion Rating", statOrder = { 964 }, level = 81, group = "EvasionAppliesToDeflection", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (24-26)% of Evasion Rating" }, } }, + ["ArrowPierceChance1"] = { type = "Suffix", affix = "of Piercing", "(12-14)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 11, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(12-14)% chance to Pierce an Enemy" }, } }, + ["ArrowPierceChance2"] = { type = "Suffix", affix = "of Drilling", "(15-17)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 26, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(15-17)% chance to Pierce an Enemy" }, } }, + ["ArrowPierceChance3"] = { type = "Suffix", affix = "of Puncturing", "(18-20)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 44, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(18-20)% chance to Pierce an Enemy" }, } }, + ["ArrowPierceChance4"] = { type = "Suffix", affix = "of Skewering", "(21-23)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 61, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(21-23)% chance to Pierce an Enemy" }, } }, + ["ArrowPierceChance5"] = { type = "Suffix", affix = "of Penetrating", "(24-26)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 77, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(24-26)% chance to Pierce an Enemy" }, } }, + ["AdditionalArrow1"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 945 }, level = 55, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, + ["AdditionalArrow2"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 945 }, level = 82, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, + ["AdditionalArrowChance1"] = { type = "Suffix", affix = "of Surplus", "+(25-50)% Surpassing chance to fire an additional Arrow", statOrder = { 5137 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-50)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChance2"] = { type = "Suffix", affix = "of Splintering", "+(75-100)% Surpassing chance to fire an additional Arrow", statOrder = { 5137 }, level = 55, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(75-100)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChance3"] = { type = "Suffix", affix = "of Shards", "+(125-150)% Surpassing chance to fire an additional Arrow", statOrder = { 5137 }, level = 66, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(125-150)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChance4"] = { type = "Suffix", affix = "of Many", "+(175-200)% Surpassing chance to fire an additional Arrow", statOrder = { 5137 }, level = 82, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(175-200)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalAmmo1"] = { type = "Suffix", affix = "of Shelling", "Loads an additional bolt", statOrder = { 943 }, level = 55, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, + ["AdditionalAmmo2"] = { type = "Suffix", affix = "of Bursting", "Loads 2 additional bolts", statOrder = { 943 }, level = 82, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads 2 additional bolts" }, } }, + ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(5-10)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 16, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(11-16)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 33, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(17-22)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 46, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(23-28)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 60, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(29-34)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 75, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(35-40)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(5-10)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 11, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-16)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 26, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(17-22)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 36, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(23-28)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 54, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(29-34)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(35-40)% increased Flask Mana Recovery rate" }, } }, + ["BeltIncreasedCharmDuration1"] = { type = "Prefix", affix = "Conservative", "(4-9)% increased Charm Effect Duration", statOrder = { 878 }, level = 8, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(4-9)% increased Charm Effect Duration" }, } }, + ["BeltIncreasedCharmDuration2"] = { type = "Prefix", affix = "Transformative", "(10-15)% increased Charm Effect Duration", statOrder = { 878 }, level = 33, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(10-15)% increased Charm Effect Duration" }, } }, + ["BeltIncreasedCharmDuration3"] = { type = "Prefix", affix = "Progressive", "(16-21)% increased Charm Effect Duration", statOrder = { 878 }, level = 46, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(16-21)% increased Charm Effect Duration" }, } }, + ["BeltIncreasedCharmDuration4"] = { type = "Prefix", affix = "Innovative", "(22-27)% increased Charm Effect Duration", statOrder = { 878 }, level = 60, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(22-27)% increased Charm Effect Duration" }, } }, + ["BeltIncreasedCharmDuration5"] = { type = "Prefix", affix = "Revolutionary", "(28-33)% increased Charm Effect Duration", statOrder = { 878 }, level = 75, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(28-33)% increased Charm Effect Duration" }, } }, + ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 6216 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 6216 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(11-16)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 6216 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(17-22)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 6216 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(23-28)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 6216 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(29-34)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 6216 }, level = 81, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(35-40)% increased Flask Charges gained" }, } }, + ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(8-10)% reduced Flask Charges used", statOrder = { 982 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(8-10)% reduced Flask Charges used" }, } }, + ["BeltReducedFlaskChargesUsed2"] = { type = "Suffix", affix = "of Imbibing", "(11-13)% reduced Flask Charges used", statOrder = { 982 }, level = 18, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(11-13)% reduced Flask Charges used" }, } }, + ["BeltReducedFlaskChargesUsed3"] = { type = "Suffix", affix = "of Relishing", "(14-16)% reduced Flask Charges used", statOrder = { 982 }, level = 33, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(14-16)% reduced Flask Charges used" }, } }, + ["BeltReducedFlaskChargesUsed4"] = { type = "Suffix", affix = "of Savouring", "(17-19)% reduced Flask Charges used", statOrder = { 982 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(17-19)% reduced Flask Charges used" }, } }, + ["BeltReducedFlaskChargesUsed5"] = { type = "Suffix", affix = "of Reveling", "(20-22)% reduced Flask Charges used", statOrder = { 982 }, level = 72, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(20-22)% reduced Flask Charges used" }, } }, + ["BeltReducedFlaskChargesUsed6"] = { type = "Suffix", affix = "of Nourishing", "(23-25)% reduced Flask Charges used", statOrder = { 982 }, level = 81, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(23-25)% reduced Flask Charges used" }, } }, + ["BeltIncreasedCharmChargesGained1"] = { type = "Suffix", affix = "of Plenty", "(5-10)% increased Charm Charges gained", statOrder = { 5227 }, level = 2, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(5-10)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained2"] = { type = "Suffix", affix = "of Surplus", "(11-16)% increased Charm Charges gained", statOrder = { 5227 }, level = 16, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(11-16)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained3"] = { type = "Suffix", affix = "of Fertility", "(17-22)% increased Charm Charges gained", statOrder = { 5227 }, level = 32, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(17-22)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained4"] = { type = "Suffix", affix = "of Bounty", "(23-28)% increased Charm Charges gained", statOrder = { 5227 }, level = 48, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(23-28)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained5"] = { type = "Suffix", affix = "of the Harvest", "(29-34)% increased Charm Charges gained", statOrder = { 5227 }, level = 70, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(29-34)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained6"] = { type = "Suffix", affix = "of Abundance", "(35-40)% increased Charm Charges gained", statOrder = { 5227 }, level = 81, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(35-40)% increased Charm Charges gained" }, } }, + ["BeltReducedCharmChargesUsed1"] = { type = "Suffix", affix = "of Austerity", "(8-10)% reduced Charm Charges used", statOrder = { 5229 }, level = 3, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(8-10)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed2"] = { type = "Suffix", affix = "of Frugality", "(11-13)% reduced Charm Charges used", statOrder = { 5229 }, level = 18, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(11-13)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed3"] = { type = "Suffix", affix = "of Temperance", "(14-16)% reduced Charm Charges used", statOrder = { 5229 }, level = 33, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(14-16)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed4"] = { type = "Suffix", affix = "of Restraint", "(17-19)% reduced Charm Charges used", statOrder = { 5229 }, level = 50, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(17-19)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed5"] = { type = "Suffix", affix = "of Economy", "(20-22)% reduced Charm Charges used", statOrder = { 5229 }, level = 72, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(20-22)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed6"] = { type = "Suffix", affix = "of Scarcity", "(23-25)% reduced Charm Charges used", statOrder = { 5229 }, level = 81, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(23-25)% reduced Charm Charges used" }, } }, + ["AdditionalCharm1"] = { type = "Suffix", affix = "of Symbolism", "+1 Charm Slot", statOrder = { 944 }, level = 23, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2582079000] = { "+1 Charm Slot" }, } }, + ["AdditionalCharm2"] = { type = "Suffix", affix = "of Inscription", "+2 Charm Slots", statOrder = { 944 }, level = 64, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2582079000] = { "+2 Charm Slots" }, } }, + ["IgniteChanceIncrease1"] = { type = "Suffix", affix = "of Ignition", "(51-60)% increased Flammability Magnitude", statOrder = { 988 }, level = 15, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(51-60)% increased Flammability Magnitude" }, } }, + ["IgniteChanceIncrease2"] = { type = "Suffix", affix = "of Scorching", "(61-70)% increased Flammability Magnitude", statOrder = { 988 }, level = 30, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(61-70)% increased Flammability Magnitude" }, } }, + ["IgniteChanceIncrease3"] = { type = "Suffix", affix = "of Incineration", "(71-80)% increased Flammability Magnitude", statOrder = { 988 }, level = 45, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(71-80)% increased Flammability Magnitude" }, } }, + ["IgniteChanceIncrease4"] = { type = "Suffix", affix = "of Combustion", "(81-90)% increased Flammability Magnitude", statOrder = { 988 }, level = 60, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(81-90)% increased Flammability Magnitude" }, } }, + ["IgniteChanceIncrease5"] = { type = "Suffix", affix = "of Conflagration", "(91-100)% increased Flammability Magnitude", statOrder = { 988 }, level = 75, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(91-100)% increased Flammability Magnitude" }, } }, + ["FreezeDamageIncrease1"] = { type = "Suffix", affix = "of Freezing", "(31-40)% increased Freeze Buildup", statOrder = { 990 }, level = 15, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(31-40)% increased Freeze Buildup" }, } }, + ["FreezeDamageIncrease2"] = { type = "Suffix", affix = "of Bleakness", "(41-50)% increased Freeze Buildup", statOrder = { 990 }, level = 30, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(41-50)% increased Freeze Buildup" }, } }, + ["FreezeDamageIncrease3"] = { type = "Suffix", affix = "of the Glacier", "(51-60)% increased Freeze Buildup", statOrder = { 990 }, level = 45, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(51-60)% increased Freeze Buildup" }, } }, + ["FreezeDamageIncrease4"] = { type = "Suffix", affix = "of the Hyperboreal", "(61-70)% increased Freeze Buildup", statOrder = { 990 }, level = 60, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(61-70)% increased Freeze Buildup" }, } }, + ["FreezeDamageIncrease5"] = { type = "Suffix", affix = "of the Arctic", "(71-80)% increased Freeze Buildup", statOrder = { 990 }, level = 75, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(71-80)% increased Freeze Buildup" }, } }, + ["ShockChanceIncrease1"] = { type = "Suffix", affix = "of Shocking", "(51-60)% increased chance to Shock", statOrder = { 992 }, level = 15, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(51-60)% increased chance to Shock" }, } }, + ["ShockChanceIncrease2"] = { type = "Suffix", affix = "of Zapping", "(61-70)% increased chance to Shock", statOrder = { 992 }, level = 30, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(61-70)% increased chance to Shock" }, } }, + ["ShockChanceIncrease3"] = { type = "Suffix", affix = "of Electrocution", "(71-80)% increased chance to Shock", statOrder = { 992 }, level = 45, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(71-80)% increased chance to Shock" }, } }, + ["ShockChanceIncrease4"] = { type = "Suffix", affix = "of Voltages", "(81-90)% increased chance to Shock", statOrder = { 992 }, level = 60, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(81-90)% increased chance to Shock" }, } }, + ["ShockChanceIncrease5"] = { type = "Suffix", affix = "of the Thunderbolt", "(91-100)% increased chance to Shock", statOrder = { 992 }, level = 75, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(91-100)% increased chance to Shock" }, } }, + ["ProjectileSpeed1"] = { type = "Prefix", affix = "Darting", "(10-17)% increased Projectile Speed", statOrder = { 875 }, level = 14, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(10-17)% increased Projectile Speed" }, } }, + ["ProjectileSpeed2"] = { type = "Prefix", affix = "Brisk", "(18-25)% increased Projectile Speed", statOrder = { 875 }, level = 27, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(18-25)% increased Projectile Speed" }, } }, + ["ProjectileSpeed3"] = { type = "Prefix", affix = "Quick", "(26-33)% increased Projectile Speed", statOrder = { 875 }, level = 41, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(26-33)% increased Projectile Speed" }, } }, + ["ProjectileSpeed4"] = { type = "Prefix", affix = "Rapid", "(34-41)% increased Projectile Speed", statOrder = { 875 }, level = 55, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(34-41)% increased Projectile Speed" }, } }, + ["ProjectileSpeed5"] = { type = "Prefix", affix = "Nimble", "(42-46)% increased Projectile Speed", statOrder = { 875 }, level = 82, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(42-46)% increased Projectile Speed" }, } }, + ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Mending", "(10-12)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 30, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-12)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Bandaging", "(13-15)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(13-15)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Stitching", "(16-18)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-18)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Suturing", "(19-21)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(19-21)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLife5"] = { type = "Suffix", affix = "of Fleshbinding", "(22-24)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-24)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of Reprieve", "(10-12)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 31, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-12)% of Damage taken Recouped as Mana" }, } }, + ["DamageTakenGainedAsMana2"] = { type = "Suffix", affix = "of Solace", "(13-15)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(13-15)% of Damage taken Recouped as Mana" }, } }, + ["DamageTakenGainedAsMana3"] = { type = "Suffix", affix = "of Tranquility", "(16-18)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 57, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(16-18)% of Damage taken Recouped as Mana" }, } }, + ["DamageTakenGainedAsMana4"] = { type = "Suffix", affix = "of Serenity", "(19-21)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 69, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(19-21)% of Damage taken Recouped as Mana" }, } }, + ["DamageTakenGainedAsMana5"] = { type = "Suffix", affix = "of Zen", "(22-24)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 80, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(22-24)% of Damage taken Recouped as Mana" }, } }, + ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-13)% increased Stun Duration", statOrder = { 987 }, level = 5, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(11-13)% increased Stun Duration" }, } }, + ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(14-16)% increased Stun Duration", statOrder = { 987 }, level = 18, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(14-16)% increased Stun Duration" }, } }, + ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(17-19)% increased Stun Duration", statOrder = { 987 }, level = 30, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(17-19)% increased Stun Duration" }, } }, + ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(20-22)% increased Stun Duration", statOrder = { 987 }, level = 44, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(20-22)% increased Stun Duration" }, } }, + ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(23-26)% increased Stun Duration", statOrder = { 987 }, level = 58, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(23-26)% increased Stun Duration" }, } }, + ["StunDuration6"] = { type = "Suffix", affix = "of the Concussion", "(27-30)% increased Stun Duration", statOrder = { 987 }, level = 71, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(27-30)% increased Stun Duration" }, } }, + ["StunDamageIncrease1"] = { type = "Suffix", affix = "of the Pugilist", "Causes (21-30)% increased Stun Buildup", statOrder = { 985 }, level = 5, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (21-30)% increased Stun Buildup" }, } }, + ["StunDamageIncrease2"] = { type = "Suffix", affix = "of the Brawler", "Causes (31-40)% increased Stun Buildup", statOrder = { 985 }, level = 20, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (31-40)% increased Stun Buildup" }, } }, + ["StunDamageIncrease3"] = { type = "Suffix", affix = "of the Boxer", "Causes (41-50)% increased Stun Buildup", statOrder = { 985 }, level = 30, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (41-50)% increased Stun Buildup" }, } }, + ["StunDamageIncrease4"] = { type = "Suffix", affix = "of the Combatant", "Causes (51-60)% increased Stun Buildup", statOrder = { 985 }, level = 44, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (51-60)% increased Stun Buildup" }, } }, + ["StunDamageIncrease5"] = { type = "Suffix", affix = "of the Gladiator", "Causes (61-70)% increased Stun Buildup", statOrder = { 985 }, level = 58, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (61-70)% increased Stun Buildup" }, } }, + ["StunDamageIncrease6"] = { type = "Suffix", affix = "of the Champion", "Causes (71-80)% increased Stun Buildup", statOrder = { 985 }, level = 74, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (71-80)% increased Stun Buildup" }, } }, + ["SpellDamage1"] = { type = "Prefix", affix = "Apprentice's", "(3-7)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(3-7)% increased Spell Damage" }, } }, + ["SpellDamage2"] = { type = "Prefix", affix = "Adept's", "(8-12)% increased Spell Damage", statOrder = { 853 }, level = 16, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, } }, + ["SpellDamage3"] = { type = "Prefix", affix = "Scholar's", "(13-17)% increased Spell Damage", statOrder = { 853 }, level = 33, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-17)% increased Spell Damage" }, } }, + ["SpellDamage4"] = { type = "Prefix", affix = "Professor's", "(18-22)% increased Spell Damage", statOrder = { 853 }, level = 46, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } }, + ["SpellDamage5"] = { type = "Prefix", affix = "Occultist's", "(23-26)% increased Spell Damage", statOrder = { 853 }, level = 60, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } }, + ["SpellDamage6"] = { type = "Prefix", affix = "Incanter's", "(27-30)% increased Spell Damage", statOrder = { 853 }, level = 75, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-30)% increased Spell Damage" }, } }, + ["FireDamagePercent1"] = { type = "Prefix", affix = "Searing", "(3-7)% increased Fire Damage", statOrder = { 855 }, level = 8, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(3-7)% increased Fire Damage" }, } }, + ["FireDamagePercent2"] = { type = "Prefix", affix = "Sizzling", "(8-12)% increased Fire Damage", statOrder = { 855 }, level = 16, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(8-12)% increased Fire Damage" }, } }, + ["FireDamagePercent3"] = { type = "Prefix", affix = "Blistering", "(13-17)% increased Fire Damage", statOrder = { 855 }, level = 33, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(13-17)% increased Fire Damage" }, } }, + ["FireDamagePercent4"] = { type = "Prefix", affix = "Cauterising", "(18-22)% increased Fire Damage", statOrder = { 855 }, level = 46, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-22)% increased Fire Damage" }, } }, + ["FireDamagePercent5"] = { type = "Prefix", affix = "Volcanic", "(23-26)% increased Fire Damage", statOrder = { 855 }, level = 65, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-26)% increased Fire Damage" }, } }, + ["FireDamagePercent6"] = { type = "Prefix", affix = "Magmatic", "(27-30)% increased Fire Damage", statOrder = { 855 }, level = 75, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } }, + ["ColdDamagePercent1"] = { type = "Prefix", affix = "Bitter", "(3-7)% increased Cold Damage", statOrder = { 856 }, level = 8, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(3-7)% increased Cold Damage" }, } }, + ["ColdDamagePercent2"] = { type = "Prefix", affix = "Biting", "(8-12)% increased Cold Damage", statOrder = { 856 }, level = 16, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(8-12)% increased Cold Damage" }, } }, + ["ColdDamagePercent3"] = { type = "Prefix", affix = "Alpine", "(13-17)% increased Cold Damage", statOrder = { 856 }, level = 33, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(13-17)% increased Cold Damage" }, } }, + ["ColdDamagePercent4"] = { type = "Prefix", affix = "Snowy", "(18-22)% increased Cold Damage", statOrder = { 856 }, level = 46, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-22)% increased Cold Damage" }, } }, + ["ColdDamagePercent5"] = { type = "Prefix", affix = "Hailing", "(23-26)% increased Cold Damage", statOrder = { 856 }, level = 65, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-26)% increased Cold Damage" }, } }, + ["ColdDamagePercent6"] = { type = "Prefix", affix = "Crystalline", "(27-30)% increased Cold Damage", statOrder = { 856 }, level = 75, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } }, + ["LightningDamagePercent1"] = { type = "Prefix", affix = "Charged", "(3-7)% increased Lightning Damage", statOrder = { 857 }, level = 8, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(3-7)% increased Lightning Damage" }, } }, + ["LightningDamagePercent2"] = { type = "Prefix", affix = "Hissing", "(8-12)% increased Lightning Damage", statOrder = { 857 }, level = 16, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(8-12)% increased Lightning Damage" }, } }, + ["LightningDamagePercent3"] = { type = "Prefix", affix = "Bolting", "(13-17)% increased Lightning Damage", statOrder = { 857 }, level = 33, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(13-17)% increased Lightning Damage" }, } }, + ["LightningDamagePercent4"] = { type = "Prefix", affix = "Coursing", "(18-22)% increased Lightning Damage", statOrder = { 857 }, level = 46, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-22)% increased Lightning Damage" }, } }, + ["LightningDamagePercent5"] = { type = "Prefix", affix = "Striking", "(23-26)% increased Lightning Damage", statOrder = { 857 }, level = 65, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-26)% increased Lightning Damage" }, } }, + ["LightningDamagePercent6"] = { type = "Prefix", affix = "Smiting", "(27-30)% increased Lightning Damage", statOrder = { 857 }, level = 75, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-30)% increased Lightning Damage" }, } }, + ["ChaosDamagePercent1"] = { type = "Prefix", affix = "Impure", "(3-7)% increased Chaos Damage", statOrder = { 858 }, level = 8, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(3-7)% increased Chaos Damage" }, } }, + ["ChaosDamagePercent2"] = { type = "Prefix", affix = "Tainted", "(8-12)% increased Chaos Damage", statOrder = { 858 }, level = 16, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(8-12)% increased Chaos Damage" }, } }, + ["ChaosDamagePercent3"] = { type = "Prefix", affix = "Clouded", "(13-17)% increased Chaos Damage", statOrder = { 858 }, level = 33, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-17)% increased Chaos Damage" }, } }, + ["ChaosDamagePercent4"] = { type = "Prefix", affix = "Darkened", "(18-22)% increased Chaos Damage", statOrder = { 858 }, level = 46, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(18-22)% increased Chaos Damage" }, } }, + ["ChaosDamagePercent5"] = { type = "Prefix", affix = "Malignant", "(23-26)% increased Chaos Damage", statOrder = { 858 }, level = 65, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } }, + ["ChaosDamagePercent6"] = { type = "Prefix", affix = "Vile", "(27-30)% increased Chaos Damage", statOrder = { 858 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } }, + ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(19-35)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(19-35)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(36-52)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 16, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(36-52)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(53-62)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 33, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(53-62)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(63-72)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 46, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(63-72)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(73-86)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(73-86)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(87-100)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(34-47)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(34-47)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(48-71)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 16, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(48-71)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(72-85)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 33, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(72-85)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(86-99)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 46, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(86-99)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(100-119)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(100-119)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(120-139)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(120-139)% increased Elemental Damage with Attacks" }, } }, + ["SpellDamageGainedAsFire1"] = { type = "Prefix", affix = "Fervent", "Gain (13-15)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 5, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (13-15)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFire2"] = { type = "Prefix", affix = "Ardent", "Gain (16-18)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 16, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (16-18)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFire3"] = { type = "Prefix", affix = "Fanatic's", "Gain (19-21)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 33, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (19-21)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFire4"] = { type = "Prefix", affix = "Zealot's", "Gain (22-24)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 46, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (22-24)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFire5"] = { type = "Prefix", affix = "Infernal", "Gain (25-27)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 60, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-27)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFire6"] = { type = "Prefix", affix = "Flamebound", "Gain (28-30)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 80, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (28-30)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand1"] = { type = "Prefix", affix = "Fervent", "Gain (26-30)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 5, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (26-30)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand2"] = { type = "Prefix", affix = "Ardent", "Gain (31-36)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 16, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (31-36)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand3"] = { type = "Prefix", affix = "Fanatic's", "Gain (37-42)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 33, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (37-42)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand4"] = { type = "Prefix", affix = "Zealot's", "Gain (43-48)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 46, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (43-48)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand5"] = { type = "Prefix", affix = "Infernal", "Gain (49-54)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 60, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (49-54)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand6"] = { type = "Prefix", affix = "Flamebound", "Gain (55-60)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 80, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (55-60)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsCold1"] = { type = "Prefix", affix = "Malignant", "Gain (13-15)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 5, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (13-15)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsCold2"] = { type = "Prefix", affix = "Pernicious", "Gain (16-18)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 16, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (16-18)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsCold3"] = { type = "Prefix", affix = "Destructive", "Gain (19-21)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 33, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (19-21)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsCold4"] = { type = "Prefix", affix = "Malicious", "Gain (22-24)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 46, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (22-24)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsCold5"] = { type = "Prefix", affix = "Ruthless", "Gain (25-27)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 60, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (25-27)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsCold6"] = { type = "Prefix", affix = "Frostbound", "Gain (28-30)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 80, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (28-30)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand1"] = { type = "Prefix", affix = "Malignant", "Gain (26-30)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 5, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (26-30)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand2"] = { type = "Prefix", affix = "Pernicious", "Gain (31-36)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 16, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (31-36)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand3"] = { type = "Prefix", affix = "Destructive", "Gain (37-42)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 33, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (37-42)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand4"] = { type = "Prefix", affix = "Malicious", "Gain (43-48)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 46, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (43-48)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand5"] = { type = "Prefix", affix = "Ruthless", "Gain (49-54)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 60, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (49-54)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand6"] = { type = "Prefix", affix = "Frostbound", "Gain (55-60)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 80, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (55-60)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsLightning1"] = { type = "Prefix", affix = "Deadly", "Gain (13-15)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (13-15)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightning2"] = { type = "Prefix", affix = "Lethal", "Gain (16-18)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (16-18)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightning3"] = { type = "Prefix", affix = "Fatal", "Gain (19-21)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (19-21)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightning4"] = { type = "Prefix", affix = "Vorpal", "Gain (22-24)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (22-24)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightning5"] = { type = "Prefix", affix = "Electrifying", "Gain (25-27)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (25-27)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightning6"] = { type = "Prefix", affix = "Stormbound", "Gain (28-30)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (28-30)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand1"] = { type = "Prefix", affix = "Deadly", "Gain (26-30)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (26-30)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand2"] = { type = "Prefix", affix = "Lethal", "Gain (31-36)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (31-36)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand3"] = { type = "Prefix", affix = "Fatal", "Gain (37-42)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (37-42)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand4"] = { type = "Prefix", affix = "Vorpal", "Gain (43-48)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (43-48)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand5"] = { type = "Prefix", affix = "Electrifying", "Gain (49-54)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (49-54)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand6"] = { type = "Prefix", affix = "Stormbound", "Gain (55-60)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (55-60)% of Damage as Extra Lightning Damage" }, } }, + ["DamageWithBows1"] = { type = "Prefix", affix = "Acute", "(11-20)% increased Damage with Bow Skills", statOrder = { 861 }, level = 1, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(11-20)% increased Damage with Bow Skills" }, } }, + ["DamageWithBows2"] = { type = "Prefix", affix = "Trenchant", "(21-30)% increased Damage with Bow Skills", statOrder = { 861 }, level = 16, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(21-30)% increased Damage with Bow Skills" }, } }, + ["DamageWithBows3"] = { type = "Prefix", affix = "Perforating", "(31-36)% increased Damage with Bow Skills", statOrder = { 861 }, level = 33, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(31-36)% increased Damage with Bow Skills" }, } }, + ["DamageWithBows4"] = { type = "Prefix", affix = "Incisive", "(37-42)% increased Damage with Bow Skills", statOrder = { 861 }, level = 46, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(37-42)% increased Damage with Bow Skills" }, } }, + ["DamageWithBows5"] = { type = "Prefix", affix = "Lacerating", "(43-50)% increased Damage with Bow Skills", statOrder = { 861 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(43-50)% increased Damage with Bow Skills" }, } }, + ["DamageWithBows6"] = { type = "Prefix", affix = "Impaling", "(51-59)% increased Damage with Bow Skills", statOrder = { 861 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(51-59)% increased Damage with Bow Skills" }, } }, + ["PresenceRadius1"] = { type = "Suffix", affix = "of Direction", "(36-45)% increased Presence Area of Effect", statOrder = { 1002 }, level = 23, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(36-45)% increased Presence Area of Effect" }, } }, + ["PresenceRadius2"] = { type = "Suffix", affix = "of Outreach", "(46-55)% increased Presence Area of Effect", statOrder = { 1002 }, level = 40, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(46-55)% increased Presence Area of Effect" }, } }, + ["PresenceRadius3"] = { type = "Suffix", affix = "of Guidance", "(56-65)% increased Presence Area of Effect", statOrder = { 1002 }, level = 56, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(56-65)% increased Presence Area of Effect" }, } }, + ["PresenceRadius4"] = { type = "Suffix", affix = "of Influence", "(66-80)% increased Presence Area of Effect", statOrder = { 1002 }, level = 72, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(66-80)% increased Presence Area of Effect" }, } }, + ["MinionLife1"] = { type = "Suffix", affix = "of the Mentor", "Minions have (21-25)% increased maximum Life", statOrder = { 962 }, level = 2, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (21-25)% increased maximum Life" }, } }, + ["MinionLife2"] = { type = "Suffix", affix = "of the Tutor", "Minions have (26-30)% increased maximum Life", statOrder = { 962 }, level = 16, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (26-30)% increased maximum Life" }, } }, + ["MinionLife3"] = { type = "Suffix", affix = "of the Director", "Minions have (31-35)% increased maximum Life", statOrder = { 962 }, level = 32, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (31-35)% increased maximum Life" }, } }, + ["MinionLife4"] = { type = "Suffix", affix = "of the Headmaster", "Minions have (36-40)% increased maximum Life", statOrder = { 962 }, level = 48, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (36-40)% increased maximum Life" }, } }, + ["MinionLife5"] = { type = "Suffix", affix = "of the Administrator", "Minions have (41-45)% increased maximum Life", statOrder = { 962 }, level = 64, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (41-45)% increased maximum Life" }, } }, + ["MinionLife6"] = { type = "Suffix", affix = "of the Rector", "Minions have (46-50)% increased maximum Life", statOrder = { 962 }, level = 80, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (46-50)% increased maximum Life" }, } }, + ["EssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "60% increased effect of Socketed Items", statOrder = { 7351 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2081918629] = { "60% increased effect of Socketed Items" }, } }, + ["EssenceCorruptForTwoEnchantments1"] = { type = "Suffix", affix = "of the Essence", "On Corruption, Item gains two Enchantments", statOrder = { 7237 }, level = 1, group = "CorruptForTwoEnchantments", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4215035940] = { "On Corruption, Item gains two Enchantments" }, } }, + ["EssenceAbyssPrefix"] = { type = "Prefix", affix = "Abyssal", "Bears the Mark of the Abyssal Lord", statOrder = { 6048 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, + ["EssenceAbyssSuffix"] = { type = "Suffix", affix = "of the Abyss", "Bears the Mark of the Abyssal Lord", statOrder = { 6048 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, + ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(8-11)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(12-15)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(16-19)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-23)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(24-27)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(28-31)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(32-35)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-15)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(16-20)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(21-25)% increased Flask Mana Recovery rate" }, } }, + ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(35-38)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(39-42)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(43-46)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(47-50)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-55)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(56-60)% chance to Avoid being Shocked" }, } }, + ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (51-100) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (101-150) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (151-200) Physical Damage to Melee Attackers" }, } }, + ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(39-42)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(43-46)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(47-50)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(51-55)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(56-60)% chance to Avoid being Frozen" }, } }, + ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 829 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-2)% Chance to Block" }, } }, + ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 829 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } }, + ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 829 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(5-6)% Chance to Block" }, } }, + ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 829 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(7-8)% Chance to Block" }, } }, + ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2119 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1529 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(43-46)% chance to Avoid being Ignited" }, } }, + ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1529 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(47-50)% chance to Avoid being Ignited" }, } }, + ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1529 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-55)% chance to Avoid being Ignited" }, } }, + ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1529 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(56-60)% chance to Avoid being Ignited" }, } }, + ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 8, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(1-2)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 19, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(3-4)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 30, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(5-6)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 55, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(7-8)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 70, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(9-10)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 81, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(11-12)% chance to Block Projectile Attack Damage" }, } }, + ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 42, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 58, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "6% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 74, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "8% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 82, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 42, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(3-4)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 58, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(5-6)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 74, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(7-8)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(9-10)% increased Mana Reservation Efficiency of Skills" }, } }, + ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+1 to Weapon Range", statOrder = { 2401 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+1 to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+2 to Weapon Range", statOrder = { 2401 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+3 to Weapon Range", statOrder = { 2401 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+3 to Weapon Range" }, } }, + ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1445 }, level = 11, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(5-15) Life gained when you Block" }, } }, + ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1445 }, level = 22, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(16-25) Life gained when you Block" }, } }, + ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1445 }, level = 36, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(26-40) Life gained when you Block" }, } }, + ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1445 }, level = 48, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(41-60) Life gained when you Block" }, } }, + ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1445 }, level = 60, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(61-85) Life gained when you Block" }, } }, + ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1445 }, level = 75, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(86-100) Life gained when you Block" }, } }, + ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1446 }, level = 15, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(4-12) Mana gained when you Block" }, } }, + ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1446 }, level = 32, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(13-21) Mana gained when you Block" }, } }, + ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1446 }, level = 58, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(22-30) Mana gained when you Block" }, } }, + ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1446 }, level = 75, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(31-39) Mana gained when you Block" }, } }, + ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2498 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1842038569] = { "(20-40)% increased Fishing Line Strength" }, } }, + ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2499 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1550221644] = { "(15-30)% reduced Fishing Pool Consumption" }, } }, + ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2500 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3360430812] = { "Rhoa Feather Lure" }, } }, + ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2501 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2054162825] = { "Karui Stone Hook" }, } }, + ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2502 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [170497091] = { "(30-50)% increased Fishing Range" }, } }, + ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2503 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3802667447] = { "(15-20)% increased Quantity of Fish Caught" }, } }, + ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2504 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3310914132] = { "(25-40)% increased Rarity of Fish Caught" }, } }, + ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 2902 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, + ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 858 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 858 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 858 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(31-34)% increased Chaos Damage" }, } }, + ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "Leech Life 150% faster", statOrder = { 1821 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life 150% faster" }, } }, + ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2615 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (6-10)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2615 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2615 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2615 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2615 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 2615 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (9-10)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 2615 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (11-12)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 2615 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (13-14)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 2615 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (15-16)% Lightning Resistance" }, } }, + ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2613 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (6-10)% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 2613 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 2613 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 2613 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 2613 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 2613 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 2613 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (7-8)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 2613 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (9-10)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 2613 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (11-12)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 2613 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (13-14)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 2613 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (15-16)% Fire Resistance" }, } }, + ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2614 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (6-10)% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 2614 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 3% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 2614 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 2614 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 2614 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 2614 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 2614 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 2614 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-6)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 2614 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (7-8)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 2614 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (9-10)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 2614 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (11-12)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 2614 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (13-14)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 2614 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (15-16)% Cold Resistance" }, } }, + ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, + ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 15, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(3-4)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 45, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-6)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 70, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-8)% increased Attack and Cast Speed" }, } }, + ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "Leeches (0.5-0.7)% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.5-0.7)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "Leeches (0.6-0.8)% of Physical Damage as Life", statOrder = { 972 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.6-0.8)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "Leeches (0.7-0.9)% of Physical Damage as Life", statOrder = { 972 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.7-0.9)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "Leeches (0.8-1)% of Physical Damage as Life", statOrder = { 972 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.8-1)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "Leeches (0.9-1.1)% of Physical Damage as Life", statOrder = { 972 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.9-1.1)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "Leeches (1-1.2)% of Physical Damage as Life", statOrder = { 972 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (1-1.2)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "Leeches (1.1-1.3)% of Physical Damage as Life", statOrder = { 972 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (1.1-1.3)% of Physical Damage as Life" }, } }, + ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1093 }, level = 4, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, } }, + ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1093 }, level = 15, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(9-16)% increased Attack Damage" }, } }, + ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1093 }, level = 30, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-24)% increased Attack Damage" }, } }, + ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1093 }, level = 60, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(25-29)% increased Attack Damage" }, } }, + ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1093 }, level = 81, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(30-34)% increased Attack Damage" }, } }, + ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2250 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(21-25)% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2250 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(26-30)% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2250 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(31-35)% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2250 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(36-45)% increased Totem Placement speed" }, } }, + ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(11-13)% chance to Avoid being Stunned" }, } }, + ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(14-16)% chance to Avoid being Stunned" }, } }, + ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(17-19)% chance to Avoid being Stunned" }, } }, + ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-22)% chance to Avoid being Stunned" }, } }, + ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 58, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(23-26)% chance to Avoid being Stunned" }, } }, + ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 74, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-30)% chance to Avoid being Stunned" }, } }, + ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 82, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(31-44)% chance to Avoid being Stunned" }, } }, + ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 2878 }, level = 58, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(31-39)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 2878 }, level = 74, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(40-45)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 2878 }, level = 82, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(46-60)% increased Stun Threshold" }, } }, + ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (3-4) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrder = { 1241 }, level = 11, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (6-8) to (12-14) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-12) to (19-23) Fire Damage to Spells", statOrder = { 1241 }, level = 18, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-12) to (19-23) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrder = { 1241 }, level = 26, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-18) to (27-31) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (19-25) to (37-44) Fire Damage to Spells", statOrder = { 1241 }, level = 33, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-25) to (37-44) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (26-33) to (48-57) Fire Damage to Spells", statOrder = { 1241 }, level = 42, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (26-33) to (48-57) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (34-42) to (64-73) Fire Damage to Spells", statOrder = { 1241 }, level = 51, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (34-42) to (64-73) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (43-52) to (79-91) Fire Damage to Spells", statOrder = { 1241 }, level = 62, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (43-52) to (79-91) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (53-66) to (98-115) Fire Damage to Spells", statOrder = { 1241 }, level = 74, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (53-66) to (98-115) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds 67 to (80-90) Fire Damage to Spells", statOrder = { 1241 }, level = 82, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds 67 to (80-90) Fire Damage to Spells" }, } }, + ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 1 to (2-3) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrder = { 1242 }, level = 11, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (5-7) to (10-12) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrder = { 1242 }, level = 18, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (16-18) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrder = { 1242 }, level = 26, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-15) to (22-25) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (16-20) to (30-36) Cold Damage to Spells", statOrder = { 1242 }, level = 33, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-20) to (30-36) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (21-26) to (40-46) Cold Damage to Spells", statOrder = { 1242 }, level = 42, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-26) to (40-46) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (27-35) to (51-60) Cold Damage to Spells", statOrder = { 1242 }, level = 51, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (27-35) to (51-60) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (36-43) to (64-75) Cold Damage to Spells", statOrder = { 1242 }, level = 62, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (36-43) to (64-75) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (44-54) to (81-93) Cold Damage to Spells", statOrder = { 1242 }, level = 74, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (44-54) to (81-93) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1242 }, level = 82, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (35-45) to (66-74) Cold Damage to Spells" }, } }, + ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (4-5) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrder = { 1243 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (21-22) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (33-35) Lightning Damage to Spells", statOrder = { 1243 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (33-35) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-48) Lightning Damage to Spells", statOrder = { 1243 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (46-48) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (49-68) Lightning Damage to Spells", statOrder = { 1243 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (49-68) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (69-88) Lightning Damage to Spells", statOrder = { 1243 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (69-88) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (89-115) Lightning Damage to Spells", statOrder = { 1243 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-9) to (89-115) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (116-144) Lightning Damage to Spells", statOrder = { 1243 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (116-144) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (145-179) Lightning Damage to Spells", statOrder = { 1243 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-14) to (145-179) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1243 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (134-144) Lightning Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (4-5) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrder = { 1241 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (8-11) to (17-19) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-29) Fire Damage to Spells", statOrder = { 1241 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-17) to (26-29) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-23) to (36-42) Fire Damage to Spells", statOrder = { 1241 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-23) to (36-42) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1241 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-33) to (50-59) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (34-44) to (65-76) Fire Damage to Spells", statOrder = { 1241 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (34-44) to (65-76) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (45-56) to (85-99) Fire Damage to Spells", statOrder = { 1241 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (45-56) to (85-99) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (57-70) to (107-123) Fire Damage to Spells", statOrder = { 1241 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (57-70) to (107-123) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (71-88) to (132-155) Fire Damage to Spells", statOrder = { 1241 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (71-88) to (132-155) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1241 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (67-81) to (120-135) Fire Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (1-2) to (3-4) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrder = { 1242 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (15-18) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-15) to (23-28) Cold Damage to Spells", statOrder = { 1242 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (12-15) to (23-28) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrder = { 1242 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-22) to (33-38) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (24-30) to (45-53) Cold Damage to Spells", statOrder = { 1242 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (24-30) to (45-53) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-40) to (59-69) Cold Damage to Spells", statOrder = { 1242 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (32-40) to (59-69) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (42-52) to (77-90) Cold Damage to Spells", statOrder = { 1242 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (42-52) to (77-90) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (54-64) to (96-113) Cold Damage to Spells", statOrder = { 1242 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (54-64) to (96-113) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (66-82) to (120-140) Cold Damage to Spells", statOrder = { 1242 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (66-82) to (120-140) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1242 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (57-66) to (100-111) Cold Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (6-7) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrder = { 1243 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (32-34) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrder = { 1243 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (49-52) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (69-73) Lightning Damage to Spells", statOrder = { 1243 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (69-73) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-8) to (97-102) Lightning Damage to Spells", statOrder = { 1243 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (97-102) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrder = { 1243 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-10) to (126-133) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-12) to (164-173) Lightning Damage to Spells", statOrder = { 1243 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-12) to (164-173) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-17) to (204-216) Lightning Damage to Spells", statOrder = { 1243 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-17) to (204-216) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-20) to (255-270) Lightning Damage to Spells", statOrder = { 1243 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (7-20) to (255-270) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrder = { 1243 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (6-16) to (201-216) Lightning Damage to Spells" }, } }, + ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos damage", statOrder = { 1227 }, level = 83, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (56-87) to (105-160) Chaos damage" }, } }, + ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos damage", statOrder = { 1227 }, level = 62, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (37-59) to (79-103) Chaos damage" }, } }, + ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos damage", statOrder = { 1227 }, level = 74, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-67) to (89-113) Chaos damage" }, } }, + ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos damage", statOrder = { 1227 }, level = 82, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (53-79) to (101-131) Chaos damage" }, } }, + ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos damage", statOrder = { 1227 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (98-149) to (183-280) Chaos damage" }, } }, + ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos damage", statOrder = { 1227 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (61-103) to (149-193) Chaos damage" }, } }, + ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos damage", statOrder = { 1227 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (73-113) to (163-205) Chaos damage" }, } }, + ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos damage", statOrder = { 1227 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (89-131) to (181-229) Chaos damage" }, } }, + ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 2967 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, + ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1225 }, level = 62, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (11-15) to (27-33) Chaos Damage to Attacks" }, } }, + ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1225 }, level = 74, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (17-21) to (37-43) Chaos Damage to Attacks" }, } }, + ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1225 }, level = 82, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (23-37) to (49-61) Chaos Damage to Attacks" }, } }, + ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 2786 }, level = 30, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, } }, + ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 2786 }, level = 60, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, } }, + ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 858, 2786 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } }, + ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 402 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1289910726] = { "Socketed Gems deal 175 to 225 Added Fire Damage" }, } }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 396 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 20% more Attack and Cast Speed" }, } }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 396 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 16% more Attack and Cast Speed" }, } }, + ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 399 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [3835899275] = { "Socketed Gems deal 30% more Elemental Damage" }, } }, + ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 3879 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [3859593448] = { "5% reduced Elemental Damage Taken while stationary" }, } }, + ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2120 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1604 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, + ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1604 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 15% of Physical Damage as Extra Fire Damage" }, } }, + ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1621 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [3762784591] = { "25% reduced Chaos Damage taken over time" }, } }, + ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Hit Chance", statOrder = { 388 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1681904129] = { "Socketed Gems have +3.5% Critical Hit Chance" }, } }, + ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 3820 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "caster", "speed" }, tradeHashes = { [614350381] = { "10% increased Attack and Cast Speed during any Flask Effect" }, } }, + ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 2800 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "10% increased Movement Speed during any Flask Effect" }, } }, + ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 3819 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "4 to 7 Added Cold Damage per Frenzy Charge" }, } }, + ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 3819 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "8 to 12 Added Cold Damage per Frenzy Charge" }, } }, + ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 3821 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3623716321] = { "Adds 60 to 100 Fire Damage if you've Blocked Recently" }, } }, + ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 398 }, level = 63, group = "DisplaySupportedSkillsDealDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1235873320] = { "Socketed Gems deal 30% more Damage while on Low Life" }, } }, + ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrder = { 3813 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHashes = { [3392890360] = { "Damage Penetrates 5% Elemental Resistances during any Flask Effect" }, } }, + ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 3814 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "physical" }, tradeHashes = { [2693266036] = { "5% additional Physical Damage Reduction during any Flask Effect" }, } }, + ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 9130 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 40% reduced Reflected Damage" }, } }, + ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 3816 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "power_charge" }, tradeHashes = { [3945147290] = { "25% chance to gain a Power Charge when you Block" }, } }, + ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrder = { 3817 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [583277599] = { "Chill Nearby Enemies when you Block" }, } }, + ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of maximum Mana when you use a Skill", statOrder = { 3058 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [308309328] = { "10% chance to Recover 10% of maximum Mana when you use a Skill" }, } }, + ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 8287 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335507772] = { "+3 to maximum Fortification" }, } }, + ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5120 }, level = 63, group = "CrushOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2228892313] = { "(15-25)% chance to Crush on Hit" }, } }, + ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6315 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2989883253] = { "Gain Alchemist's Genius when you use a Flask" }, } }, + ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3187 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "16% chance to gain a Power, Frenzy, or Endurance Charge on kill" }, } }, + ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrder = { 432 }, level = 63, group = "SocketedGemsNonCurseAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "aura", "gem" }, tradeHashes = { [223595318] = { "Socketed Non-Curse Aura Gems have 20% increased Aura Effect" }, } }, + ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrder = { 132 }, level = 63, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, + ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Cast Level 20 Fire Burst on Hit", statOrder = { 556 }, level = 63, group = "FireBurstOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack" }, tradeHashes = { [1621470436] = { "Cast Level 20 Fire Burst on Hit" }, } }, + ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits", statOrder = { 533, 533.1 }, level = 63, group = "GrantsEssenceMinion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [470688636] = { "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits" }, } }, + ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Area of Effect", statOrder = { 1557 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [280731498] = { "25% increased Area of Effect" }, } }, + ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6384 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3049760680] = { "Gain Onslaught for 3 seconds when Hit" }, } }, + ["OnslaughtWhenHitNewEssence1"] = { type = "Suffix", affix = "of the Essence", "You gain Onslaught for 6 seconds when Hit", statOrder = { 2481 }, level = 63, group = "OnslaughtWhenHitForDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2764164760] = { "You gain Onslaught for 6 seconds when Hit" }, } }, + ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrder = { 430 }, level = 63, group = "SupportDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "damage", "gem" }, tradeHashes = { [3846088475] = { "Socketed Gems deal 30% more Damage over Time" }, } }, + ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Curse Magnitudes", statOrder = { 2266 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "5% increased Curse Magnitudes" }, } }, + ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Curse Magnitudes", statOrder = { 2266 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Curse Magnitudes" }, } }, + ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Mark Skills", statOrder = { 2268 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [712554801] = { "25% increased Effect of your Mark Skills" }, } }, + ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 5687 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3322709337] = { "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds" }, } }, + ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 8613 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1521863824] = { "12% increased Movement speed while on Burning, Chilled or Shocked ground" }, } }, + ["ManaRegenerationWhileShockedEssence1"] = { type = "Suffix", affix = "of the Essence", "70% increased Mana Regeneration Rate while Shocked", statOrder = { 2177 }, level = 63, group = "ManaRegenerationWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2076519255] = { "70% increased Mana Regeneration Rate while Shocked" }, } }, + ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 7503 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [3041288981] = { "Recover 5% of your maximum Mana when you Block" }, } }, + ["BleedDuration1"] = { type = "Suffix", affix = "", "(8-12)% increased Bleeding Duration", statOrder = { 4522 }, level = 30, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(8-12)% increased Bleeding Duration" }, } }, + ["BleedDuration2"] = { type = "Suffix", affix = "", "(13-18)% increased Bleeding Duration", statOrder = { 4522 }, level = 60, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(13-18)% increased Bleeding Duration" }, } }, + ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 500 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } }, + ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 496 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } }, + ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 519 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, + ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 501 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1142 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-15)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1142 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-20)% to Chaos Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1139 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-15)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1139 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-20)% to Cold Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-15)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-20)% to Fire Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1134 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-15)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1134 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-20)% to Physical Damage over Time Multiplier" }, } }, + ["EssenceIncreasedLifePercent1"] = { type = "Prefix", affix = "Essences", "(8-10)% increased maximum Life", statOrder = { 870 }, level = 72, group = "MaximumLifeIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } }, + ["EssenceIncreasedManaPercent1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Mana", statOrder = { 872 }, level = 72, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, } }, + ["EssenceGlobalDefences1"] = { type = "Prefix", affix = "Essences", "(20-30)% increased Global Defences", statOrder = { 2486 }, level = 72, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(20-30)% increased Global Defences" }, } }, + ["EssenceDamageasExtraPhysical1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 72, group = "DamageasExtraPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (15-20)% of Damage as Extra Physical Damage" }, } }, + ["EssenceDamageasExtraPhysical2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 72, group = "DamageasExtraPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (25-33)% of Damage as Extra Physical Damage" }, } }, + ["EssenceDamageasExtraFire1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 72, group = "DamageasExtraFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (15-20)% of Damage as Extra Fire Damage" }, } }, + ["EssenceDamageasExtraFire2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 72, group = "DamageasExtraFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-33)% of Damage as Extra Fire Damage" }, } }, + ["EssenceDamageasExtraCold1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 72, group = "DamageasExtraCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (15-20)% of Damage as Extra Cold Damage" }, } }, + ["EssenceDamageasExtraCold2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 72, group = "DamageasExtraCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (25-33)% of Damage as Extra Cold Damage" }, } }, + ["EssenceDamageasExtraLightning1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 72, group = "DamageasExtraLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (15-20)% of Damage as Extra Lightning Damage" }, } }, + ["EssenceDamageasExtraLightning2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 72, group = "DamageasExtraLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (25-33)% of Damage as Extra Lightning Damage" }, } }, + ["EssenceFireRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Fire Damage taken Recouped as Life", statOrder = { 6150 }, level = 72, group = "EssenceFireRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(26-30)% of Fire Damage taken Recouped as Life" }, } }, + ["EssenceColdRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Cold Damage taken Recouped as Life", statOrder = { 5307 }, level = 72, group = "EssenceColdRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(26-30)% of Cold Damage taken Recouped as Life" }, } }, + ["EssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7081 }, level = 72, group = "EssenceLightningRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(26-30)% of Lightning Damage taken Recouped as Life" }, } }, + ["EssencePhysicalDamageTakenAsChaos1"] = { type = "Prefix", affix = "Essences", "(10-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2124 }, level = 72, group = "PhysicalDamageTakenAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(10-15)% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["EssenceAttackSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Attack Skills", statOrder = { 929 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+3 to Level of all Attack Skills" }, } }, + ["EssenceAttackSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+5 to Level of all Attack Skills", statOrder = { 929 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+5 to Level of all Attack Skills" }, } }, + ["EssenceSpellSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, + ["EssenceSpellSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+5 to Level of all Spell Skills", statOrder = { 922 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+5 to Level of all Spell Skills" }, } }, + ["EssenceOnslaughtonKill1"] = { type = "Suffix", affix = "of the Essence", "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon", statOrder = { 7174 }, level = 72, group = "EssenceOnslaughtonKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1881230714] = { "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon" }, } }, + ["EssenceManaCostReduction"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-20)% increased Mana Cost Efficiency" }, } }, + ["EssenceManaCostReduction2H"] = { type = "Suffix", affix = "of the Essence", "(28-32)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(28-32)% increased Mana Cost Efficiency" }, } }, + ["EssencePercentStrength1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Strength", statOrder = { 1080 }, level = 72, group = "PercentageStrength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(7-10)% increased Strength" }, } }, + ["EssencePercentDexterity1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Dexterity", statOrder = { 1081 }, level = 72, group = "PercentageDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(7-10)% increased Dexterity" }, } }, + ["EssencePercentIntelligence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Intelligence", statOrder = { 1082 }, level = 72, group = "PercentageIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(7-10)% increased Intelligence" }, } }, + ["EssenceReducedCriticalDamageAgainstYou1"] = { type = "Suffix", affix = "of the Essence", "Hits against you have (40-50)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 72, group = "EssenceReducedCriticalDamageAgainstYou", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3855016469] = { "Hits against you have (40-50)% reduced Critical Damage Bonus" }, } }, + ["EssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 72, group = "EssenceGoldDropped", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["EssenceAuraEffect1"] = { type = "Suffix", affix = "of the Essence", "Aura Skills have (15-20)% increased Magnitudes", statOrder = { 2472 }, level = 72, group = "EssenceAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [315791320] = { "Aura Skills have (15-20)% increased Magnitudes" }, } }, } \ No newline at end of file diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index 8e9dfbed6..7896a9de7 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -1,7 +1,7 @@ -- This file is automatically generated, do not edit! -- Stat data (c) Grinding Gear Games --- This file contains categories of from trade hash to details +-- This file contains categories of stats, mapped from trade hash to details -- relevant for generating search weights Note that the trade site requires a -- prefix of e.g. explicit.stat_{hash}. See -- https://www.pathofexile.com/api/trade2/data/stats for a list of all trade @@ -9,2179 +9,2540 @@ return { ["AllocatesXEnchant"] = { + ["10029"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10029", + ["text"] = "Allocates Repulsion", + ["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", + ["id"] = "enchant.stat_2954116742|1169", ["text"] = "Allocates Urgent Call", - ["type"] = "crafted", + ["type"] = "enchant", }, }, ["11774"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|11774", - ["text"] = "Allocates The Spring Hare", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|11774", + ["text"] = "Allocates The Spring Hare", + ["type"] = "enchant", + }, + }, ["11826"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|11826", - ["text"] = "Allocates Heavy Ammunition", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|11826", + ["text"] = "Allocates Heavy Ammunition", + ["type"] = "enchant", + }, + }, ["11838"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|11838", - ["text"] = "Allocates Dreamcatcher", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|11838", + ["text"] = "Allocates Dreamcatcher", + ["type"] = "enchant", + }, + }, ["11886"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|11886", - ["text"] = "Allocates Mauling Stuns", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|11886", + ["text"] = "Allocates Mauling Stuns", + ["type"] = "enchant", + }, + }, ["12245"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|12245", - ["text"] = "Allocates Arsonist", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|12245", + ["text"] = "Allocates Arsonist", + ["type"] = "enchant", + }, + }, ["12337"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|12337", - ["text"] = "Allocates Flash Storm", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|12661", + ["text"] = "Allocates Asceticism", + ["type"] = "enchant", + }, + }, ["12750"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|12750", - ["text"] = "Allocates Vale Shelter", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|13407", + ["text"] = "Allocates Heartbreaking", + ["type"] = "enchant", + }, + }, ["13457"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13457", - ["text"] = "Allocates Shadow Dancing", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|13457", + ["text"] = "Allocates Shadow Dancing", + ["type"] = "enchant", + }, + }, ["13482"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13482", - ["text"] = "Allocates Punctured Lung", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", + ["type"] = "enchant", + }, + }, ["13515"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13515", - ["text"] = "Allocates Stormwalker", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|13515", + ["text"] = "Allocates Stormwalker", + ["type"] = "enchant", + }, + }, ["1352"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|1352", - ["text"] = "Allocates Unbending", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|1352", + ["text"] = "Allocates Unbending", + ["type"] = "enchant", + }, + }, ["13524"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|13524", - ["text"] = "Allocates Everlasting Glory", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|13823", + ["text"] = "Allocates Controlling Magic", + ["type"] = "enchant", + }, + }, + ["13844"] = { + ["specialCaseData"] = { + }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|14324", + ["text"] = "Allocates Arcane Blossom", + ["type"] = "enchant", + }, + }, ["14343"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|14343", - ["text"] = "Allocates Deterioration", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|14343", + ["text"] = "Allocates Deterioration", + ["type"] = "enchant", + }, + }, ["14383"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|14383", - ["text"] = "Allocates Suffusion", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", + ["type"] = "enchant", + }, + }, + ["1448"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|1448", + ["text"] = "Allocates Bond of the Cat", + ["type"] = "enchant", + }, + }, ["14602"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|14602", - ["text"] = "Allocates Specialised Shots", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|14602", + ["text"] = "Allocates Specialised Shots", + ["type"] = "enchant", + }, + }, ["14761"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|14761", - ["text"] = "Allocates Warlord Leader", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", + ["type"] = "enchant", + }, + }, ["14777"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|14777", - ["text"] = "Allocates Bravado", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|15829", + ["text"] = "Allocates Siphon", + ["type"] = "enchant", + }, + }, ["15986"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|15986", - ["text"] = "Allocates Building Toxins", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|16816", + ["text"] = "Allocates Pinpoint Shot", + ["type"] = "enchant", + }, + }, ["16940"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|16940", - ["text"] = "Allocates Arcane Nature", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", + ["type"] = "enchant", + }, + }, ["17029"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17029", - ["text"] = "Allocates Blade Catcher", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|17029", + ["text"] = "Allocates Blade Catcher", + ["type"] = "enchant", + }, + }, ["17150"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17150", - ["text"] = "Allocates General's Bindings", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|17303", + ["text"] = "Allocates Utility Ordnance", + ["type"] = "enchant", + }, + }, ["17330"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17330", - ["text"] = "Allocates Perforation", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|17330", + ["text"] = "Allocates Perforation", + ["type"] = "enchant", + }, + }, ["17340"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17340", - ["text"] = "Allocates Adrenaline Rush", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|17725", + ["text"] = "Allocates Bonded Precision", + ["type"] = "enchant", + }, + }, ["17762"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17762", - ["text"] = "Allocates Vengeance", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|17762", + ["text"] = "Allocates Vengeance", + ["type"] = "enchant", + }, + }, ["17825"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|17825", - ["text"] = "Allocates Tactical Retreat", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|18505", + ["text"] = "Allocates Crushing Verdict", + ["type"] = "enchant", + }, + }, ["18959"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|18959", - ["text"] = "Allocates Ruinic Helm", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|19044", + ["text"] = "Allocates Arcane Intensity", + ["type"] = "enchant", + }, + }, ["19125"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19125", - ["text"] = "Allocates Potent Incantation", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", + ["type"] = "enchant", + }, + }, ["19156"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19156", - ["text"] = "Allocates Immaterial", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|19156", + ["text"] = "Allocates Immaterial", + ["type"] = "enchant", + }, + }, ["19236"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19236", - ["text"] = "Allocates Projectile Bulwark", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|19644", + ["text"] = "Allocates Left Hand of Darkness", + ["type"] = "enchant", + }, + }, ["19715"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19715", - ["text"] = "Allocates Cremation", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|19715", + ["text"] = "Allocates Cremation", + ["type"] = "enchant", + }, + }, ["19722"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|19722", - ["text"] = "Allocates Thin Ice", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|20008", + ["text"] = "Allocates Unleash Fire", + ["type"] = "enchant", + }, + }, ["20032"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20032", - ["text"] = "Allocates Erraticism", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|20032", + ["text"] = "Allocates Erraticism", + ["type"] = "enchant", + }, + }, ["2021"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2021", - ["text"] = "Allocates Wellspring", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|2021", + ["text"] = "Allocates Wellspring", + ["type"] = "enchant", + }, + }, ["20251"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20251", - ["text"] = "Allocates Splitting Ground", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|20388", + ["text"] = "Allocates Regenerative Flesh", + ["type"] = "enchant", + }, + }, ["20397"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20397", - ["text"] = "Allocates Authority", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|20397", + ["text"] = "Allocates Authority", + ["type"] = "enchant", + }, + }, ["20414"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20414", - ["text"] = "Allocates Reprisal", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|20414", + ["text"] = "Allocates Reprisal", + ["type"] = "enchant", + }, + }, ["20416"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20416", - ["text"] = "Allocates Grit", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|20416", + ["text"] = "Allocates Grit", + ["type"] = "enchant", + }, + }, ["20511"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20511", - ["text"] = "Allocates Cremating Cries", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|20558", + ["text"] = "Allocates Among the Hordes", + ["type"] = "enchant", + }, + }, ["20677"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|20677", - ["text"] = "Allocates For the Jugular", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|2113", + ["text"] = "Allocates Martial Artistry", + ["type"] = "enchant", + }, + }, ["21164"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21164", - ["text"] = "Allocates Fleshcrafting", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|21164", + ["text"] = "Allocates Fleshcrafting", + ["type"] = "enchant", + }, + }, ["21206"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21206", - ["text"] = "Allocates Explosive Impact", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|2134", + ["text"] = "Allocates Toxic Tolerance", + ["type"] = "enchant", + }, + }, ["21349"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21349", - ["text"] = "Allocates The Cunning Fox", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|21380", + ["text"] = "Allocates Preemptive Strike", + ["type"] = "enchant", + }, + }, ["21453"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21453", - ["text"] = "Allocates Breakage", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|21453", + ["text"] = "Allocates Breakage", + ["type"] = "enchant", + }, + }, ["21537"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21537", - ["text"] = "Allocates Fervour", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|21537", + ["text"] = "Allocates Fervour", + ["type"] = "enchant", + }, + }, ["21748"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21748", - ["text"] = "Allocates Impending Doom", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, - ["21935"] = { - ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|21935", - ["text"] = "Allocates Calibration", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|22532", + ["text"] = "Allocates Fearful Paralysis", + ["type"] = "enchant", + }, + }, ["22626"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|22626", - ["text"] = "Allocates Irreparable", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|22864", + ["text"] = "Allocates Tainted Strike", + ["type"] = "enchant", + }, + }, ["22967"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|22967", - ["text"] = "Allocates Vigilance", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|22967", + ["text"] = "Allocates Vigilance", + ["type"] = "enchant", + }, + }, ["23078"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23078", - ["text"] = "Allocates Holy Protector", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|23221", + ["text"] = "Allocates Trick Shot", + ["type"] = "enchant", + }, + }, ["23227"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23227", - ["text"] = "Allocates Initiative", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|23227", + ["text"] = "Allocates Initiative", + ["type"] = "enchant", + }, + }, ["23244"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23244", - ["text"] = "Allocates Bounty Hunter", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|23362", + ["text"] = "Allocates Slippery Ice", + ["type"] = "enchant", + }, + }, ["23427"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23427", - ["text"] = "Allocates Chilled to the Bone", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", + ["type"] = "enchant", + }, + }, ["2344"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2344", - ["text"] = "Allocates Dimensional Weakspot", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|23630", + ["text"] = "Allocates Self Immolation", + ["type"] = "enchant", + }, + }, ["23736"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23736", - ["text"] = "Allocates Spray and Pray", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|2394", + ["text"] = "Allocates Blade Flurry", + ["type"] = "enchant", + }, + }, ["23940"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|23940", - ["text"] = "Allocates Adamant Recovery", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|24491", + ["text"] = "Allocates Invocated Echoes", + ["type"] = "enchant", + }, + }, ["24630"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|24630", - ["text"] = "Allocates Fulmination", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|24764", + ["text"] = "Allocates Infusing Power", + ["type"] = "enchant", + }, + }, ["24766"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|24766", - ["text"] = "Allocates Paranoia", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|24766", + ["text"] = "Allocates Paranoia", + ["type"] = "enchant", + }, + }, ["2486"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2486", - ["text"] = "Allocates Stars Aligned", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|2486", + ["text"] = "Allocates Stars Aligned", + ["type"] = "enchant", + }, + }, ["2511"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2511", - ["text"] = "Allocates Sundering", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|2511", + ["text"] = "Allocates Sundering", + ["type"] = "enchant", + }, + }, ["25211"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|25211", - ["text"] = "Allocates Waning Hindrances", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|25482", + ["text"] = "Allocates Beef", + ["type"] = "enchant", + }, + }, ["25513"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|25513", - ["text"] = "Allocates Overwhelm", - ["type"] = "enchant", - }, - }, + }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|26107", + ["text"] = "Allocates Kite Runner", + ["type"] = "enchant", + }, + }, + ["26214"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|26214", + ["text"] = "Allocates Dominion", + ["type"] = "enchant", + }, + }, ["26291"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|26291", - ["text"] = "Allocates Electrifying Nature", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|26291", + ["text"] = "Allocates Electrifying Nature", + ["type"] = "enchant", + }, + }, ["26331"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|26331", - ["text"] = "Allocates Harsh Winter", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|26447", + ["text"] = "Allocates Refocus", + ["type"] = "enchant", + }, + }, ["2645"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|2645", - ["text"] = "Allocates Skullcrusher", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|2645", + ["text"] = "Allocates Skullcrusher", + ["type"] = "enchant", + }, + }, ["26479"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|26479", - ["text"] = "Allocates Steadfast Resolve", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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"] = "enchant.stat_2954116742|27761", - ["text"] = "Allocates Counterstancing", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|2814", + ["text"] = "Allocates Engineered Blaze", + ["type"] = "enchant", + }, + }, ["28267"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|28267", - ["text"] = "Allocates Desensitisation", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|28267", + ["text"] = "Allocates Desensitisation", + ["type"] = "enchant", + }, + }, ["28329"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|28329", - ["text"] = "Allocates Pressure Points", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|30341", + ["text"] = "Allocates Master Fletching", + ["type"] = "enchant", + }, + }, ["30392"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|30392", - ["text"] = "Allocates Succour", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|30392", + ["text"] = "Allocates Succour", + ["type"] = "enchant", + }, + }, ["30395"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|30395", - ["text"] = "Allocates Howling Beast", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|30546", + ["text"] = "Allocates Electrified Claw", + ["type"] = "enchant", + }, + }, ["30562"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|30562", - ["text"] = "Allocates Inner Faith", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|31326", + ["text"] = "Allocates Slow Burn", + ["type"] = "enchant", + }, + }, ["31364"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_2954116742|31364", ["text"] = "Allocates Primal Protection", ["type"] = "enchant", @@ -2196,937 +2557,1026 @@ return { ["type"] = "crafted", }, }, +======= + ["id"] = "enchant.stat_2954116742|31364", + ["text"] = "Allocates Primal Protection", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["31373"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31373", - ["text"] = "Allocates Vocal Empowerment", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", + ["type"] = "enchant", + }, + }, ["31433"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31433", - ["text"] = "Allocates Catalysis", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|31433", + ["text"] = "Allocates Catalysis", + ["type"] = "enchant", + }, + }, ["31724"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31724", - ["text"] = "Allocates Iron Slippers", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|31724", + ["text"] = "Allocates Iron Slippers", + ["type"] = "enchant", + }, + }, ["31745"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31745", - ["text"] = "Allocates Lockdown", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|31745", + ["text"] = "Allocates Lockdown", + ["type"] = "enchant", + }, + }, ["31773"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31773", - ["text"] = "Allocates Resurging Archon", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|3188", + ["text"] = "Allocates Revenge", + ["type"] = "enchant", + }, + }, ["31925"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|31925", - ["text"] = "Allocates Warding Fetish", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|32071", + ["text"] = "Allocates Primal Growth", + ["type"] = "enchant", + }, + }, + ["32128"] = { + ["specialCaseData"] = { + }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|3215", + ["text"] = "Allocates Melding", + ["type"] = "enchant", + }, + }, ["32151"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32151", - ["text"] = "Allocates Crystalline Resistance", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|32151", + ["text"] = "Allocates Crystalline Resistance", + ["type"] = "enchant", + }, + }, ["32301"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32301", - ["text"] = "Allocates Frazzled", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|32301", + ["text"] = "Allocates Frazzled", + ["type"] = "enchant", + }, + }, ["32353"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32353", - ["text"] = "Allocates Swift Claw", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|32353", + ["text"] = "Allocates Swift Claw", + ["type"] = "enchant", + }, + }, ["32354"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32354", - ["text"] = "Allocates Defiance", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|32354", + ["text"] = "Allocates Defiance", + ["type"] = "enchant", + }, + }, ["32448"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32448", - ["text"] = "Allocates Shockproof", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|32543", + ["text"] = "Allocates Unhindered", + ["type"] = "enchant", + }, + }, ["32655"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32655", - ["text"] = "Allocates Hunting Companion", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|32951", + ["text"] = "Allocates Preservation", + ["type"] = "enchant", + }, + }, ["32976"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|32976", - ["text"] = "Allocates Gem Enthusiast", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|34316", + ["text"] = "Allocates One with the River", + ["type"] = "enchant", + }, + }, ["34324"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|34324", - ["text"] = "Allocates Spectral Ward", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|34425", + ["text"] = "Allocates Precise Volatility", + ["type"] = "enchant", + }, + }, ["34473"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|34473", - ["text"] = "Allocates Spaghettification", - ["type"] = "enchant", - }, - }, + ["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"] = "enchant.stat_2954116742|34531", - ["text"] = "Allocates Hallowed", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", + ["type"] = "enchant", + }, + }, ["34541"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|34541", - ["text"] = "Allocates Energising Deflection", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|34908", + ["text"] = "Allocates Staunch Deflection", + ["type"] = "enchant", + }, + }, ["3492"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|3492", - ["text"] = "Allocates Void", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|35324", + ["text"] = "Allocates Burnout", + ["type"] = "enchant", + }, + }, ["35369"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35369", - ["text"] = "Allocates Investing Energies", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|35792", + ["text"] = "Allocates Blood of Rage", + ["type"] = "enchant", + }, + }, ["35809"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35809", - ["text"] = "Allocates Reinvigoration", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", + ["type"] = "enchant", + }, + }, ["35849"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35849", - ["text"] = "Allocates Thickened Arteries", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|35855", + ["text"] = "Allocates Fortifying Blood", + ["type"] = "enchant", + }, + }, ["35876"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|35876", - ["text"] = "Allocates Admonisher", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|35966", + ["text"] = "Allocates Heart Tissue", + ["type"] = "enchant", + }, + }, ["36085"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36085", - ["text"] = "Allocates Serrated Edges", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|36364", + ["text"] = "Allocates Electrocution", + ["type"] = "enchant", + }, + }, ["36507"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36507", - ["text"] = "Allocates Vile Mending", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|36507", + ["text"] = "Allocates Vile Mending", + ["type"] = "enchant", + }, + }, ["36623"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36623", - ["text"] = "Allocates Convalescence", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|36630", + ["text"] = "Allocates Incision", + ["type"] = "enchant", + }, + }, ["36808"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36808", - ["text"] = "Allocates Spiked Shield", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|36808", + ["text"] = "Allocates Spiked Shield", + ["type"] = "enchant", + }, + }, ["3688"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|3688", - ["text"] = "Allocates Dynamism", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|3688", + ["text"] = "Allocates Dynamism", + ["type"] = "enchant", + }, + }, ["36931"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|36931", - ["text"] = "Allocates Concussive Attack", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|3698", + ["text"] = "Allocates Spike Pit", + ["type"] = "enchant", + }, + }, ["372"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|372", - ["text"] = "Allocates Heatproof", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|372", + ["text"] = "Allocates Heatproof", + ["type"] = "enchant", + }, + }, ["37244"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37244", - ["text"] = "Allocates Shield Expertise", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, - ["37458"] = { - ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37458", - ["text"] = "Allocates Strong Links", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|37408", + ["text"] = "Allocates Staunching", + ["type"] = "enchant", + }, + }, ["37514"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37514", - ["text"] = "Allocates Whirling Assault", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|37514", + ["text"] = "Allocates Whirling Assault", + ["type"] = "enchant", + }, + }, ["37543"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37543", - ["text"] = "Allocates Full Recovery", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", + ["type"] = "enchant", + }, + }, ["37742"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|37742", - ["text"] = "Allocates Manifold Method", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|38329", + ["text"] = "Allocates Biting Frost", + ["type"] = "enchant", + }, + }, ["38342"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38342", - ["text"] = "Allocates Stupefy", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|38342", + ["text"] = "Allocates Stupefy", + ["type"] = "enchant", + }, + }, ["38398"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38398", - ["text"] = "Allocates Apocalypse", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|38398", + ["text"] = "Allocates Apocalypse", + ["type"] = "enchant", + }, + }, ["38459"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38459", - ["text"] = "Allocates Disorientation", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|38459", + ["text"] = "Allocates Disorientation", + ["type"] = "enchant", + }, + }, ["38479"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_2954116742|38479", ["text"] = "Allocates Close Confines", ["type"] = "enchant", @@ -3141,73 +3591,81 @@ return { ["type"] = "crafted", }, }, +======= + ["id"] = "enchant.stat_2954116742|38479", + ["text"] = "Allocates Close Confines", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["38532"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38532", - ["text"] = "Allocates Thirst for Power", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", + ["type"] = "enchant", + }, + }, ["38535"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38535", - ["text"] = "Allocates Stormcharged", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|38535", + ["text"] = "Allocates Stormcharged", + ["type"] = "enchant", + }, + }, ["38537"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38537", - ["text"] = "Allocates Heartstopping", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", + ["type"] = "enchant", + }, + }, ["38570"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38570", - ["text"] = "Allocates Demolitionist", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|38570", + ["text"] = "Allocates Demolitionist", + ["type"] = "enchant", + }, + }, ["38614"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38614", - ["text"] = "Allocates Psychic Fragmentation", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|38888", + ["text"] = "Allocates Unerring Impact", + ["type"] = "enchant", + }, + }, ["38895"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_2954116742|38895", ["text"] = "Allocates Crystal Elixir", ["type"] = "enchant", @@ -3222,1891 +3680,1944 @@ return { ["type"] = "crafted", }, }, +======= + ["id"] = "enchant.stat_2954116742|38895", + ["text"] = "Allocates Crystal Elixir", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["3894"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|3894", - ["text"] = "Allocates Eldritch Will", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|38965", + ["text"] = "Allocates Infused Limits", + ["type"] = "enchant", + }, + }, ["38969"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38969", - ["text"] = "Allocates Finesse", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|38969", + ["text"] = "Allocates Finesse", + ["type"] = "enchant", + }, + }, ["38972"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|38972", - ["text"] = "Allocates Restless Dead", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|38972", + ["text"] = "Allocates Restless Dead", + ["type"] = "enchant", + }, + }, ["39050"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|39050", - ["text"] = "Allocates Exploit", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|39050", + ["text"] = "Allocates Exploit", + ["type"] = "enchant", + }, + }, ["39083"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|39083", - ["text"] = "Allocates Blood Rush", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|39083", + ["text"] = "Allocates Blood Rush", + ["type"] = "enchant", + }, + }, ["3921"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|3921", - ["text"] = "Allocates Fate Finding", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|39369", + ["text"] = "Allocates Struck Through", + ["type"] = "enchant", + }, + }, ["39567"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|39567", - ["text"] = "Allocates Ingenuity", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|39990", + ["text"] = "Allocates Chronomancy", + ["type"] = "enchant", + }, + }, ["40073"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40073", - ["text"] = "Allocates Drenched", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|40073", + ["text"] = "Allocates Drenched", + ["type"] = "enchant", + }, + }, ["40117"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40117", - ["text"] = "Allocates Spiked Armour", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|40270", + ["text"] = "Allocates Frenetic", + ["type"] = "enchant", + }, + }, ["40292"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40292", - ["text"] = "Allocates Nimble Strength", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|40292", + ["text"] = "Allocates Nimble Strength", + ["type"] = "enchant", + }, + }, ["4031"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4031", - ["text"] = "Allocates Icebreaker", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|4031", + ["text"] = "Allocates Icebreaker", + ["type"] = "enchant", + }, + }, ["40325"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40325", - ["text"] = "Allocates Resolution", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|40399", + ["text"] = "Allocates Energise", + ["type"] = "enchant", + }, + }, ["40480"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40480", - ["text"] = "Allocates Harmonic Generator", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|40803", + ["text"] = "Allocates Sigil of Ice", + ["type"] = "enchant", + }, + }, ["40985"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|40985", - ["text"] = "Allocates Empowering Remnants", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|40990", + ["text"] = "Allocates Exposed to the Storm", + ["type"] = "enchant", + }, + }, ["41033"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|41033", - ["text"] = "Allocates Utmost Offering", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", + ["type"] = "enchant", + }, + }, ["41394"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|41394", - ["text"] = "Allocates Invigorating Archon", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|41811", + ["text"] = "Allocates Shatter Palm", + ["type"] = "enchant", + }, + }, ["41905"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|41905", - ["text"] = "Allocates Gravedigger", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|41972", + ["text"] = "Allocates Glaciation", + ["type"] = "enchant", + }, + }, ["42032"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42032", - ["text"] = "Allocates Escalating Mayhem", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|42103", + ["text"] = "Allocates Enduring Deflection", + ["type"] = "enchant", + }, + }, ["42177"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42177", - ["text"] = "Allocates Blurred Motion", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|42347", + ["text"] = "Allocates Chakra of Sight", + ["type"] = "enchant", + }, + }, ["42354"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42354", - ["text"] = "Allocates Blinding Flash", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", + ["type"] = "enchant", + }, + }, ["42390"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42390", - ["text"] = "Allocates Overheating Blow", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|42390", + ["text"] = "Allocates Overheating Blow", + ["type"] = "enchant", + }, + }, ["42660"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42660", - ["text"] = "Allocates Commanding Rage", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|42660", + ["text"] = "Allocates Commanding Rage", + ["type"] = "enchant", + }, + }, ["42714"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|42714", - ["text"] = "Allocates Thousand Cuts", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|42981", + ["text"] = "Allocates Cruel Methods", + ["type"] = "enchant", + }, + }, ["43082"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43082", - ["text"] = "Allocates Acceleration", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|43082", + ["text"] = "Allocates Acceleration", + ["type"] = "enchant", + }, + }, ["43088"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43088", - ["text"] = "Allocates Agonising Calamity", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|43088", + ["text"] = "Allocates Agonising Calamity", + ["type"] = "enchant", + }, + }, ["43090"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43090", - ["text"] = "Allocates Electrotherapy", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|43090", + ["text"] = "Allocates Electrotherapy", + ["type"] = "enchant", + }, + }, ["43139"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43139", - ["text"] = "Allocates Stormbreaker", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|43139", + ["text"] = "Allocates Stormbreaker", + ["type"] = "enchant", + }, + }, ["43250"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43250", - ["text"] = "Allocates Adaptive Skin", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|43423", + ["text"] = "Allocates Emboldened Avatar", + ["type"] = "enchant", + }, + }, ["43584"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43584", - ["text"] = "Allocates Flare", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|43584", + ["text"] = "Allocates Flare", + ["type"] = "enchant", + }, + }, ["43633"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43633", - ["text"] = "Allocates Energising Archon", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|43677", + ["text"] = "Allocates Crippling Toxins", + ["type"] = "enchant", + }, + }, ["43711"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43711", - ["text"] = "Allocates Thornhide", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|43711", + ["text"] = "Allocates Thornhide", + ["type"] = "enchant", + }, + }, ["43791"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43791", - ["text"] = "Allocates Rallying Icon", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|43939", + ["text"] = "Allocates Melting Flames", + ["type"] = "enchant", + }, + }, ["43944"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|43944", - ["text"] = "Allocates Instability", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|43944", + ["text"] = "Allocates Instability", + ["type"] = "enchant", + }, + }, ["44005"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|44005", - ["text"] = "Allocates Casting Cascade", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", + ["type"] = "enchant", + }, + }, ["44293"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|44293", - ["text"] = "Allocates Hastening Barrier", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|44974", + ["text"] = "Allocates Hail", + ["type"] = "enchant", + }, + }, ["45013"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45013", - ["text"] = "Allocates Finishing Blows", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|45013", + ["text"] = "Allocates Finishing Blows", + ["type"] = "enchant", + }, + }, ["45177"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45177", - ["text"] = "Allocates Strike True", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|45177", + ["text"] = "Allocates Strike True", + ["type"] = "enchant", + }, + }, ["45244"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45244", - ["text"] = "Allocates Refills", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|45244", + ["text"] = "Allocates Refills", + ["type"] = "enchant", + }, + }, ["45329"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45329", - ["text"] = "Allocates Delayed Danger", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|45370", + ["text"] = "Allocates The Raging Ox", + ["type"] = "enchant", + }, + }, ["4544"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4544", - ["text"] = "Allocates The Ancient Serpent", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|4544", + ["text"] = "Allocates The Ancient Serpent", + ["type"] = "enchant", + }, + }, ["4547"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4547", - ["text"] = "Allocates Unnatural Resilience", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|45488", + ["text"] = "Allocates Cross Strike", + ["type"] = "enchant", + }, + }, ["45599"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45599", - ["text"] = "Allocates Lay Siege", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|45713", + ["text"] = "Allocates Savouring", + ["type"] = "enchant", + }, + }, ["45751"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|45751", - ["text"] = "Allocates Frightening Shield", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|46060", + ["text"] = "Allocates Voracious", + ["type"] = "enchant", + }, + }, ["46124"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46124", - ["text"] = "Allocates Arcane Remnants", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|46384", + ["text"] = "Allocates Wide Barrier", + ["type"] = "enchant", + }, + }, ["46499"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46499", - ["text"] = "Allocates Guts", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|46499", + ["text"] = "Allocates Guts", + ["type"] = "enchant", + }, + }, ["4661"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4661", - ["text"] = "Allocates Inspiring Leader", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", + ["type"] = "enchant", + }, + }, ["46683"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46683", - ["text"] = "Allocates Inherited Strength ", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|46692", + ["text"] = "Allocates Efficient Alchemy", + ["type"] = "enchant", + }, + }, ["46696"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46696", - ["text"] = "Allocates Impair", - ["type"] = "enchant", - }, - }, - ["46726"] = { - ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|46726", - ["text"] = "Allocates Reformed Barrier", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|46696", + ["text"] = "Allocates Impair", + ["type"] = "enchant", + }, + }, ["4673"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4673", - ["text"] = "Allocates Hulking Smash", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|4709", + ["text"] = "Allocates Near Sighted", + ["type"] = "enchant", + }, + }, ["4716"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4716", - ["text"] = "Allocates Afterimage", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|4716", + ["text"] = "Allocates Afterimage", + ["type"] = "enchant", + }, + }, ["47270"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47270", - ["text"] = "Allocates Inescapable Cold", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|47270", + ["text"] = "Allocates Inescapable Cold", + ["type"] = "enchant", + }, + }, ["47316"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47316", - ["text"] = "Allocates Goring", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|47316", + ["text"] = "Allocates Goring", + ["type"] = "enchant", + }, + }, ["47363"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47363", - ["text"] = "Allocates Colossal Weapon", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|47420", + ["text"] = "Allocates Expendable Army", + ["type"] = "enchant", + }, + }, ["47441"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47441", - ["text"] = "Allocates Stigmata", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|47441", + ["text"] = "Allocates Stigmata", + ["type"] = "enchant", + }, + }, ["47514"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47514", - ["text"] = "Allocates Dizzying Hits", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|47560", + ["text"] = "Allocates Multi Shot", + ["type"] = "enchant", + }, + }, ["47635"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47635", - ["text"] = "Allocates Overload", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|47635", + ["text"] = "Allocates Overload", + ["type"] = "enchant", + }, + }, ["47782"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|47782", - ["text"] = "Allocates Steady Footing", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|48006", + ["text"] = "Allocates Devastation", + ["type"] = "enchant", + }, + }, ["48014"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48014", - ["text"] = "Allocates Honourless", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|48014", + ["text"] = "Allocates Honourless", + ["type"] = "enchant", + }, + }, ["4810"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|4810", - ["text"] = "Allocates Sanguine Tolerance", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|4810", + ["text"] = "Allocates Sanguine Tolerance", + ["type"] = "enchant", + }, + }, ["48103"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48103", - ["text"] = "Allocates Forcewave", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|48103", + ["text"] = "Allocates Forcewave", + ["type"] = "enchant", + }, + }, ["48215"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48215", - ["text"] = "Allocates Headshot", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|48215", + ["text"] = "Allocates Headshot", + ["type"] = "enchant", + }, + }, ["48240"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48240", - ["text"] = "Allocates Quick Recovery", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|48581", + ["text"] = "Allocates Exploit the Elements", + ["type"] = "enchant", + }, + }, ["48617"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48617", - ["text"] = "Allocates Hunter", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|48617", + ["text"] = "Allocates Hunter", + ["type"] = "enchant", + }, + }, ["48649"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48649", - ["text"] = "Allocates Insulating Hide", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|48649", + ["text"] = "Allocates Insulating Hide", + ["type"] = "enchant", + }, + }, ["48658"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48658", - ["text"] = "Allocates Shattering", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|48658", + ["text"] = "Allocates Shattering", + ["type"] = "enchant", + }, + }, ["48699"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|48699", - ["text"] = "Allocates Frostwalker", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|49984", + ["text"] = "Allocates Spellblade", + ["type"] = "enchant", + }, + }, ["50023"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50023", - ["text"] = "Allocates Invigorating Grandeur", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|50023", + ["text"] = "Allocates Invigorating Grandeur", + ["type"] = "enchant", + }, + }, ["50062"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50062", - ["text"] = "Allocates Reinforced Barrier", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, - ["50253"] = { + ["id"] = "enchant.stat_2954116742|5009", + ["text"] = "Allocates Seeing Stars", + ["type"] = "enchant", + }, + }, + ["50239"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50253", - ["text"] = "Allocates Aftershocks", - ["type"] = "enchant", - }, - }, - ["50389"] = { + ["id"] = "enchant.stat_2954116742|50239", + ["text"] = "Allocates Mutewind Agility", + ["type"] = "enchant", + }, + }, + ["50253"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50389", - ["text"] = "Allocates Twinned Tethers", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|50253", + ["text"] = "Allocates Aftershocks", + ["type"] = "enchant", + }, + }, ["50392"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50392", - ["text"] = "Allocates Brute Strength", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|50673", + ["text"] = "Allocates Avoiding Deflection", + ["type"] = "enchant", + }, + }, ["50687"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|50687", - ["text"] = "Allocates Coursing Energy", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|51169", + ["text"] = "Allocates Soul Bloom", + ["type"] = "enchant", + }, + }, ["51213"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51213", - ["text"] = "Allocates Wasting", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|51213", + ["text"] = "Allocates Wasting", + ["type"] = "enchant", + }, + }, ["51394"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51394", - ["text"] = "Allocates Unimpeded", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|51394", + ["text"] = "Allocates Unimpeded", + ["type"] = "enchant", + }, + }, ["51446"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51446", - ["text"] = "Allocates Leather Bound Gauntlets", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|51446", + ["text"] = "Allocates Leather Bound Gauntlets", + ["type"] = "enchant", + }, + }, ["51509"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51509", - ["text"] = "Allocates Waters of Life", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|51820", + ["text"] = "Allocates Ancestral Conduits", + ["type"] = "enchant", + }, + }, ["51867"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51867", - ["text"] = "Allocates Finality", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|51867", + ["text"] = "Allocates Finality", + ["type"] = "enchant", + }, + }, ["51868"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51868", - ["text"] = "Allocates Molten Carapace", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|51871", + ["text"] = "Allocates Immortal Thirst", + ["type"] = "enchant", + }, + }, ["51891"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|51891", - ["text"] = "Allocates Lucidity", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|52191", + ["text"] = "Allocates Event Horizon", + ["type"] = "enchant", + }, + }, ["52199"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52199", - ["text"] = "Allocates Overexposure", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|52392", + ["text"] = "Allocates Singular Purpose", + ["type"] = "enchant", + }, + }, ["5257"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5257", - ["text"] = "Allocates Echoing Frost", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|52618", + ["text"] = "Allocates Boon of the Beast", + ["type"] = "enchant", + }, + }, ["52684"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52684", - ["text"] = "Allocates Eroding Chains", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|52684", + ["text"] = "Allocates Eroding Chains", + ["type"] = "enchant", + }, + }, ["52764"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_2954116742|52764", ["text"] = "Allocates Mystical Rage", ["type"] = "enchant", @@ -5121,568 +5632,585 @@ return { ["type"] = "crafted", }, }, +======= + ["id"] = "enchant.stat_2954116742|52764", + ["text"] = "Allocates Mystical Rage", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["52803"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52803", - ["text"] = "Allocates Hale Traveller", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|52803", + ["text"] = "Allocates Hale Traveller", + ["type"] = "enchant", + }, + }, ["5284"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5284", - ["text"] = "Allocates Shredding Force", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|5284", + ["text"] = "Allocates Shredding Force", + ["type"] = "enchant", + }, + }, ["52971"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|52971", - ["text"] = "Allocates Quick Response", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|53853", + ["text"] = "Allocates Backup Plan", + ["type"] = "enchant", + }, + }, ["53921"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53921", - ["text"] = "Allocates Unbreaking", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|53921", + ["text"] = "Allocates Unbreaking", + ["type"] = "enchant", + }, + }, ["53935"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53935", - ["text"] = "Allocates Briny Carapace", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|53935", + ["text"] = "Allocates Briny Carapace", + ["type"] = "enchant", + }, + }, ["53941"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|53941", - ["text"] = "Allocates Shimmering", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|54148", + ["text"] = "Allocates Smoke Inhalation", + ["type"] = "enchant", + }, + }, ["54640"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|54640", - ["text"] = "Allocates Constricting", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|54640", + ["text"] = "Allocates Constricting", + ["type"] = "enchant", + }, + }, ["54805"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|54805", - ["text"] = "Allocates Hindered Capabilities", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|54814", + ["text"] = "Allocates Profane Commander", + ["type"] = "enchant", + }, + }, ["54911"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|54911", - ["text"] = "Allocates Firestarter", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|54911", + ["text"] = "Allocates Firestarter", + ["type"] = "enchant", + }, + }, ["54937"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|54937", - ["text"] = "Allocates Vengeful Fury", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|54937", + ["text"] = "Allocates Vengeful Fury", + ["type"] = "enchant", + }, + }, ["54990"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|54990", - ["text"] = "Allocates Bloodletting", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|54990", + ["text"] = "Allocates Bloodletting", + ["type"] = "enchant", + }, + }, ["54998"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|54998", - ["text"] = "Allocates Protraction", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|55193", + ["text"] = "Allocates Subterfuge Mask", + ["type"] = "enchant", + }, + }, ["55308"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55308", - ["text"] = "Allocates Sling Shots", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|55450", + ["text"] = "Allocates Rallying Form", + ["type"] = "enchant", + }, + }, ["55568"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55568", - ["text"] = "Allocates Forthcoming", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|55568", + ["text"] = "Allocates Forthcoming", + ["type"] = "enchant", + }, + }, ["55708"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55708", - ["text"] = "Allocates Electric Amplification", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|55708", + ["text"] = "Allocates Electric Amplification", + ["type"] = "enchant", + }, + }, ["5580"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5580", - ["text"] = "Allocates Watchtowers", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|5580", + ["text"] = "Allocates Watchtowers", + ["type"] = "enchant", + }, + }, ["55817"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|55817", - ["text"] = "Allocates Alchemical Oil", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|56237", + ["text"] = "Allocates Enhancing Attacks", + ["type"] = "enchant", + }, + }, ["56265"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56265", - ["text"] = "Allocates Throatseeker", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|56265", + ["text"] = "Allocates Throatseeker", + ["type"] = "enchant", + }, + }, ["56388"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56388", - ["text"] = "Allocates Reinforced Rallying", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|56388", + ["text"] = "Allocates Reinforced Rallying", + ["type"] = "enchant", + }, + }, ["5642"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5642", - ["text"] = "Allocates Behemoth", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|5642", + ["text"] = "Allocates Behemoth", + ["type"] = "enchant", + }, + }, ["56453"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56453", - ["text"] = "Allocates Killer Instinct", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|56493", + ["text"] = "Allocates Agile Succession", + ["type"] = "enchant", + }, + }, ["56616"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56616", - ["text"] = "Allocates Desperate Times", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", + ["type"] = "enchant", + }, + }, ["5663"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5663", - ["text"] = "Allocates Endurance", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|56767", + ["text"] = "Allocates Electrifying Daze", + ["type"] = "enchant", + }, + }, ["56776"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_2954116742|56776", ["text"] = "Allocates Cooked", ["type"] = "enchant", @@ -5697,388 +6225,414 @@ return { ["type"] = "crafted", }, }, +======= + ["id"] = "enchant.stat_2954116742|56776", + ["text"] = "Allocates Cooked", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["56806"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56806", - ["text"] = "Allocates Swift Blocking", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", + ["type"] = "enchant", + }, + }, ["5686"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|5686", - ["text"] = "Allocates Chillproof", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|5686", + ["text"] = "Allocates Chillproof", + ["type"] = "enchant", + }, + }, ["56860"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|56860", - ["text"] = "Allocates Resolute Reprisal", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|5703", + ["text"] = "Allocates Echoing Thunder", + ["type"] = "enchant", + }, + }, ["57047"] = { ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57047", - ["text"] = "Allocates Polymathy", - ["type"] = "enchant", - }, - }, - ["57097"] = { - ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57097", - ["text"] = "Allocates Spirit Bonds", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|57047", + ["text"] = "Allocates Polymathy", + ["type"] = "enchant", + }, + }, ["57110"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57110", - ["text"] = "Allocates Infused Flesh", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|57110", + ["text"] = "Allocates Infused Flesh", + ["type"] = "enchant", + }, + }, ["57190"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57190", - ["text"] = "Allocates Doomsayer", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|57190", + ["text"] = "Allocates Doomsayer", + ["type"] = "enchant", + }, + }, ["57204"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57204", - ["text"] = "Allocates Critical Exploit", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|57471", + ["text"] = "Allocates Hunker Down", + ["type"] = "enchant", + }, + }, ["57617"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57617", - ["text"] = "Allocates Shifted Strikes", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|57617", + ["text"] = "Allocates Shifted Strikes", + ["type"] = "enchant", + }, + }, ["57785"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|57785", - ["text"] = "Allocates Trained Turrets", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|58215", + ["text"] = "Allocates Sanguimantic Rituals", + ["type"] = "enchant", + }, + }, ["58397"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|58397", - ["text"] = "Allocates Proficiency", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|58397", + ["text"] = "Allocates Proficiency", + ["type"] = "enchant", + }, + }, ["58426"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|58426", - ["text"] = "Allocates Pocket Sand", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|58426", + ["text"] = "Allocates Pocket Sand", + ["type"] = "enchant", + }, + }, ["58714"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|58714", - ["text"] = "Allocates Grenadier", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|58714", + ["text"] = "Allocates Grenadier", + ["type"] = "enchant", + }, + }, ["58817"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|58817", - ["text"] = "Allocates Artillery Strike", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, - ["59596"] = { + ["id"] = "enchant.stat_2954116742|59589", + ["text"] = "Allocates Heavy Armour", + ["type"] = "enchant", + }, + }, + ["59657"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|59596", - ["text"] = "Allocates Covering Ward", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_2954116742|59938", ["text"] = "Allocates Against the Elements", ["type"] = "enchant", @@ -6093,172 +6647,180 @@ return { ["type"] = "crafted", }, }, +======= + ["id"] = "enchant.stat_2954116742|59938", + ["text"] = "Allocates Against the Elements", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["60034"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|60034", - ["text"] = "Allocates Falcon Dive", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|60138", + ["text"] = "Allocates Stylebender", + ["type"] = "enchant", + }, + }, ["60269"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|60269", - ["text"] = "Allocates Roil", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|60269", + ["text"] = "Allocates Roil", + ["type"] = "enchant", + }, + }, ["60273"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|60273", - ["text"] = "Allocates Hindering Obstacles", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|60404", + ["text"] = "Allocates Perfect Opportunity", + ["type"] = "enchant", + }, + }, ["60464"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|60464", - ["text"] = "Allocates Fan the Flames", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|61104", + ["text"] = "Allocates Staggering Wounds", + ["type"] = "enchant", + }, + }, ["61112"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61112", - ["text"] = "Allocates Roll and Strike", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", + ["type"] = "enchant", + }, + }, ["6133"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|6133", - ["text"] = "Allocates Core of the Guardian", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|61354", + ["text"] = "Allocates Infernal Limit", + ["type"] = "enchant", + }, + }, ["61404"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61404", - ["text"] = "Allocates Equilibrium", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|61404", + ["text"] = "Allocates Equilibrium", + ["type"] = "enchant", + }, + }, ["61444"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_2954116742|61444", ["text"] = "Allocates Wasting Casts", ["type"] = "enchant", @@ -6282,406 +6844,441 @@ return { ["type"] = "crafted", }, }, +======= + ["id"] = "enchant.stat_2954116742|61444", + ["text"] = "Allocates Wasting Casts", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["61601"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61601", - ["text"] = "Allocates True Strike", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|61601", + ["text"] = "Allocates True Strike", + ["type"] = "enchant", + }, + }, ["61703"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61703", - ["text"] = "Allocates Sharpened Claw", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|61703", + ["text"] = "Allocates Sharpened Claw", + ["type"] = "enchant", + }, + }, ["61741"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61741", - ["text"] = "Allocates Lasting Toxins", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|61741", + ["text"] = "Allocates Lasting Toxins", + ["type"] = "enchant", + }, + }, ["6178"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|6178", - ["text"] = "Allocates Power Shots", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|62034", + ["text"] = "Allocates Prism Guard", + ["type"] = "enchant", + }, + }, ["62185"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|62185", - ["text"] = "Allocates Rattled", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|62455", + ["text"] = "Allocates Bannerman", + ["type"] = "enchant", + }, + }, ["62609"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|62609", - ["text"] = "Allocates Ancestral Unity", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|62887", + ["text"] = "Allocates Living Death", + ["type"] = "enchant", + }, + }, ["62963"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|62963", - ["text"] = "Allocates Flamewalker", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|62963", + ["text"] = "Allocates Flamewalker", + ["type"] = "enchant", + }, + }, ["63031"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63031", - ["text"] = "Allocates Glorious Anticipation", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|63074", + ["text"] = "Allocates Dark Entries", + ["type"] = "enchant", + }, + }, ["63255"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63255", - ["text"] = "Allocates Savagery", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|63541", + ["text"] = "Allocates Brush Off", + ["type"] = "enchant", + }, + }, ["63579"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63579", - ["text"] = "Allocates Momentum", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|63579", + ["text"] = "Allocates Momentum", + ["type"] = "enchant", + }, + }, ["63585"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63585", - ["text"] = "Allocates Thunderstruck", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|63585", + ["text"] = "Allocates Thunderstruck", + ["type"] = "enchant", + }, + }, ["63739"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63739", - ["text"] = "Allocates Vigorous Remnants", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, - ["63981"] = { - ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|63981", - ["text"] = "Allocates Deft Recovery", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|65023", + ["text"] = "Allocates Impenetrable Shell", + ["type"] = "enchant", + }, + }, ["6514"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|6514", - ["text"] = "Allocates Cacophony", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|6514", + ["text"] = "Allocates Cacophony", + ["type"] = "enchant", + }, + }, ["65160"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|65160", - ["text"] = "Allocates Titanic", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|65160", + ["text"] = "Allocates Titanic", + ["type"] = "enchant", + }, + }, ["65193"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_2954116742|65193", ["text"] = "Allocates Viciousness", ["type"] = "enchant", @@ -6696,208 +7293,225 @@ return { ["type"] = "crafted", }, }, +======= + ["id"] = "enchant.stat_2954116742|65193", + ["text"] = "Allocates Viciousness", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["65204"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|65204", - ["text"] = "Allocates Overflowing Power", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", + ["type"] = "enchant", + }, + }, ["65243"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|65243", - ["text"] = "Allocates Enveloping Presence", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|65468", + ["text"] = "Allocates Repeating Explosives", + ["type"] = "enchant", + }, + }, ["6655"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|6655", - ["text"] = "Allocates Aggravation", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|6655", + ["text"] = "Allocates Aggravation", + ["type"] = "enchant", + }, + }, ["7062"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7062", - ["text"] = "Allocates Reusable Ammunition", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|7128", + ["text"] = "Allocates Dangerous Blossom", + ["type"] = "enchant", + }, + }, ["7163"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7163", - ["text"] = "Allocates Stimulants", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|7163", + ["text"] = "Allocates Stimulants", + ["type"] = "enchant", + }, + }, ["7275"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7275", - ["text"] = "Allocates Electrocuting Exposure", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|7302", + ["text"] = "Allocates Echoing Pulse", + ["type"] = "enchant", + }, + }, ["7338"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7338", - ["text"] = "Allocates Abasement", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|7338", + ["text"] = "Allocates Abasement", + ["type"] = "enchant", + }, + }, ["7341"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7341", - ["text"] = "Allocates Ignore Pain", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|7341", + ["text"] = "Allocates Ignore Pain", + ["type"] = "enchant", + }, + }, ["7395"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7395", - ["text"] = "Allocates Retaliation", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|7395", + ["text"] = "Allocates Retaliation", + ["type"] = "enchant", + }, + }, ["7449"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7449", - ["text"] = "Allocates Splinters", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|7449", + ["text"] = "Allocates Splinters", + ["type"] = "enchant", + }, + }, ["750"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|750", - ["text"] = "Allocates Tribal Fury", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|7777", + ["text"] = "Allocates Breaking Point", + ["type"] = "enchant", + }, + }, ["7782"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_2954116742|7782", ["text"] = "Allocates Rupturing Pins", ["type"] = "enchant", @@ -6912,208 +7526,216 @@ return { ["type"] = "crafted", }, }, +======= + ["id"] = "enchant.stat_2954116742|7782", + ["text"] = "Allocates Rupturing Pins", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["7809"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|7809", - ["text"] = "Allocates Wild Storm", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|8397", + ["text"] = "Allocates Empowering Remains", + ["type"] = "enchant", + }, + }, ["8483"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8483", - ["text"] = "Allocates Ruin", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|8483", + ["text"] = "Allocates Ruin", + ["type"] = "enchant", + }, + }, ["8531"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8531", - ["text"] = "Allocates Leaping Ambush", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|8660", + ["text"] = "Allocates Reverberation", + ["type"] = "enchant", + }, + }, ["8782"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8782", - ["text"] = "Allocates Empowering Infusions", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|8791", + ["text"] = "Allocates Sturdy Ally", + ["type"] = "enchant", + }, + }, ["8810"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8810", - ["text"] = "Allocates Multitasking", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|8810", + ["text"] = "Allocates Multitasking", + ["type"] = "enchant", + }, + }, ["8827"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8827", - ["text"] = "Allocates Fast Metabolism", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|8827", + ["text"] = "Allocates Fast Metabolism", + ["type"] = "enchant", + }, + }, ["8831"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8831", - ["text"] = "Allocates Tempered Mind", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", + ["type"] = "enchant", + }, + }, ["8881"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8881", - ["text"] = "Allocates Unforgiving", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|8881", + ["text"] = "Allocates Unforgiving", + ["type"] = "enchant", + }, + }, ["8896"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|8896", - ["text"] = "Allocates Agile Sprinter", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|9020", + ["text"] = "Allocates Giantslayer", + ["type"] = "enchant", + }, + }, ["9187"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9187", - ["text"] = "Allocates Escalation", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|9187", + ["text"] = "Allocates Escalation", + ["type"] = "enchant", + }, + }, ["9226"] = { ["specialCaseData"] = { }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_2954116742|9226", ["text"] = "Allocates Mental Perseverance", ["type"] = "enchant", @@ -7131,152 +7753,168 @@ return { }, ["9535"] = { ======= +======= + ["id"] = "enchant.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["9227"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9227", - ["text"] = "Allocates Focused Thrust", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2954116742|9227", + ["text"] = "Allocates Focused Thrust", + ["type"] = "enchant", + }, + }, ["9290"] = { >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9290", - ["text"] = "Allocates Rusted Pins", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2954116742|94", + ["text"] = "Allocates Efficient Killing", + ["type"] = "enchant", + }, + }, ["9421"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9421", - ["text"] = "Allocates Snowpiercer", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, - ["9604"] = { + ["id"] = "enchant.stat_2954116742|9472", + ["text"] = "Allocates Catapult", + ["type"] = "enchant", + }, + }, + ["9535"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|9604", - ["text"] = "Allocates Thirst of Kitava", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, + ["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", - }, - }, - }, + ["id"] = "enchant.stat_2954116742|9968", + ["text"] = "Allocates Feel the Earth", + ["type"] = "enchant", + }, + }, + }, ["Corrupted"] = { ["1004011302"] = { ["specialCaseData"] = { @@ -19562,25 +20200,25 @@ return { }, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["tradeMod"] = { - ["id"] = "enchant.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + }, ["1011760251"] = { ["Boots"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["101878827"] = { <<<<<<< HEAD ["1HWeapon"] = { @@ -19593,11 +20231,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "enchant", + }, + }, ["1037193709"] = { ["1HMace"] = { <<<<<<< HEAD @@ -19688,11 +20326,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "enchant", + }, + }, ["1050105434"] = { <<<<<<< HEAD ["1HWeapon"] = { @@ -19744,12 +20382,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["1062208444"] = { ["Boots"] = { ["max"] = 25, @@ -19774,24 +20412,24 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "enchant", + }, + }, ["1102738251"] = { ["Amulet"] = { - ["max"] = 0.17, - ["min"] = 0.08, - }, + ["max"] = 0.17, + ["min"] = 0.08, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1102738251", - ["text"] = "Life Flasks gain # charges per Second", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", + ["type"] = "enchant", + }, + }, ["124859000"] = { ["Boots"] = { ["max"] = 25, @@ -19816,37 +20454,37 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "enchant", + }, + }, ["1315743832"] = { ["Chest"] = { - ["max"] = 50, - ["min"] = 40, - }, + ["max"] = 50, + ["min"] = 40, + }, ["Shield"] = { - ["max"] = 50, - ["min"] = 40, - }, + ["max"] = 50, + ["min"] = 40, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1315743832", - ["text"] = "#% increased Thorns damage", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "enchant", + }, + }, ["1316278494"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "enchant", + }, + }, ["1368271171"] = { <<<<<<< HEAD ["1HMace"] = { @@ -19893,43 +20531,49 @@ return { ["max"] = 40, ======= ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Quiver"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Wand"] = { +<<<<<<< HEAD ["max"] = 15, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["min"] = 10, }, +======= + ["max"] = 15, + ["min"] = 10, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "enchant", + }, + }, ["1444556985"] = { ["Chest"] = { ["max"] = 20, @@ -19938,11 +20582,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "enchant", + }, + }, ["1509134228"] = { ["1HMace"] = { ["max"] = 25, @@ -19987,49 +20631,50 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "enchant", + }, + }, ["1515657623"] = { ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1515657623", - ["text"] = "# to Maximum Endurance Charges", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["1519615863"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Flail"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_1519615863", ["text"] = "#% chance to cause Bleeding on Hit", ["type"] = "enchant", @@ -20061,80 +20706,94 @@ return { ["max"] = 22, ["min"] = 10, ======= +======= + ["id"] = "enchant.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["1545858329"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { +<<<<<<< HEAD ["max"] = 1, ["min"] = 1, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["max"] = 1, + ["min"] = 1, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["1600707273"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "enchant", + }, + }, ["1671376347"] = { ["Belt"] = { ["max"] = 25, ["min"] = 20, }, ["Boots"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_1671376347", ["text"] = "#% to Lightning Resistance", ["type"] = "enchant", @@ -20148,69 +20807,77 @@ return { ["min"] = 40, }, ======= +======= + ["id"] = "enchant.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, +>>>>>>> ce20414fc (regen data files) ["1725749947"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Spear"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1725749947", - ["text"] = "Grants # Rage on Hit", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_1725749947", + ["text"] = "Grants # Rage on Hit", + ["type"] = "enchant", + }, + }, ["1776411443"] = { ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1776411443", - ["text"] = "Break #% increased Armour", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "enchant", + }, + }, ["1782086450"] = { ["Focus"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "enchant", + }, + }, ["1798257884"] = { ["1HWeapon"] = { ["max"] = 30, @@ -20224,40 +20891,47 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "enchant", + }, + }, ["185580205"] = { <<<<<<< HEAD ["Helmet"] = { ======= ["Amulet"] = { - ["max"] = 0.17, - ["min"] = 0.08, - }, + ["max"] = 0.17, + ["min"] = 0.08, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_185580205", - ["text"] = "Charms gain # charges per Second", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_185580205", + ["text"] = "Charms gain # charge per Second", + ["type"] = "enchant", + }, + }, ["1967051901"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Crossbow"] = { +<<<<<<< HEAD >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["max"] = 1, ["min"] = 1, }, +======= + ["max"] = 1, + ["min"] = 1, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { +<<<<<<< HEAD <<<<<<< HEAD ["id"] = "enchant.stat_185580205", ["text"] = "Charms gain # charge per Second", @@ -20268,6 +20942,13 @@ return { ["type"] = "enchant", }, }, +======= + ["id"] = "enchant.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["1978899297"] = { <<<<<<< HEAD ["Chest"] = { @@ -20275,17 +20956,24 @@ return { ["min"] = -10, ======= ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Chest"] = { +<<<<<<< HEAD ["max"] = 1, ["min"] = 1, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["max"] = 1, + ["min"] = 1, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_1978899297", ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "enchant", @@ -20308,14 +20996,31 @@ return { ["min"] = 5, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["id"] = "enchant.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["1998951374"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 10, + ["min"] = 5, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "enchant", + }, + }, ["1999113824"] = { ["Boots"] = { ["max"] = 25, @@ -20336,11 +21041,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "enchant", + }, + }, ["210067635"] = { ["1HMace"] = { ["max"] = 8, @@ -20391,11 +21096,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "enchant", + }, + }, ["2106365538"] = { ["Belt"] = { ["max"] = 25, @@ -20404,41 +21109,41 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "enchant", + }, + }, ["2122183138"] = { ["Shield"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2122183138", - ["text"] = "# Mana gained when you Block", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "enchant", + }, + }, ["2154246560"] = { ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2154246560", - ["text"] = "#% increased Damage", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "enchant", + }, + }, ["2162097452"] = { ["Helmet"] = { ["max"] = 1, @@ -20447,74 +21152,74 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["2200293569"] = { ["Amulet"] = { - ["max"] = 0.17, - ["min"] = 0.08, - }, + ["max"] = 0.17, + ["min"] = 0.08, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2200293569", - ["text"] = "Mana Flasks gain # charges per Second", - ["type"] = "enchant", - }, - }, + ["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"] = "enchant.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "enchant", + }, + }, ["2250533757"] = { ["Boots"] = { ["max"] = 5, @@ -20523,6 +21228,7 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_2250533757", ["text"] = "#% increased Movement Speed", ["type"] = "enchant", @@ -20531,44 +21237,64 @@ return { <<<<<<< HEAD ["227523295"] = { ======= +======= + ["id"] = "enchant.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["2254480358"] = { >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["1HWeapon"] = { +<<<<<<< HEAD ["max"] = 1, ["min"] = 1, }, <<<<<<< HEAD ======= +======= + ["max"] = 1, + ["min"] = 1, + }, +>>>>>>> ce20414fc (regen data files) ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["227523295"] = { ["Helmet"] = { +<<<<<<< HEAD ["max"] = 1, ["min"] = 1, }, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) +======= + ["max"] = 1, + ["min"] = 1, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_227523295", ["text"] = "# to Maximum Power Charges", ["type"] = "enchant", @@ -20587,44 +21313,57 @@ return { ["min"] = 5, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["id"] = "enchant.stat_227523295", + ["text"] = "# to Maximum Power Charges", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["2301191210"] = { + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, +>>>>>>> ce20414fc (regen data files) ["Bow"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2301191210", - ["text"] = "#% chance to Blind Enemies on hit", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", + ["type"] = "enchant", + }, + }, ["2321178454"] = { ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "enchant", + }, + }, ["2451402625"] = { ["Boots"] = { ["max"] = 25, @@ -20649,13 +21388,14 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "enchant", + }, + }, ["2481353198"] = { ["Shield"] = { +<<<<<<< HEAD ["max"] = 15, <<<<<<< HEAD ["min"] = 15, @@ -20663,14 +21403,19 @@ return { ["min"] = 10, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["max"] = 15, + ["min"] = 10, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "enchant", + }, + }, ["2482852589"] = { ["Belt"] = { ["max"] = 25, @@ -20679,81 +21424,82 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "enchant", + }, + }, ["2557965901"] = { ["Amulet"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2557965901", - ["text"] = "Leech #% of Physical Attack Damage as Life", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "enchant", + }, + }, ["2653955271"] = { ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "enchant", + }, + }, ["2694482655"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Flail"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Spear"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Talisman"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_2694482655", ["text"] = "#% to Critical Damage Bonus", ["type"] = "enchant", @@ -20764,37 +21510,51 @@ return { ["280731498"] = { ["Helmet"] = { ======= +======= + ["id"] = "enchant.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, +>>>>>>> ce20414fc (regen data files) ["2763429652"] = { ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Crossbow"] = { +<<<<<<< HEAD >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["max"] = 15, ["min"] = 10, }, +======= + ["max"] = 15, + ["min"] = 10, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2763429652", - ["text"] = "#% chance to Maim on Hit", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "enchant", + }, + }, ["280731498"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "enchant", + }, + }, ["2866361420"] = { ["Belt"] = { ["max"] = 25, @@ -20803,11 +21563,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "enchant", + }, + }, ["2891184298"] = { ["1HWeapon"] = { ["max"] = 15, @@ -20828,13 +21588,14 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "enchant", + }, + }, ["289128254"] = { ["1HWeapon"] = { +<<<<<<< HEAD ["max"] = 10, <<<<<<< HEAD ["min"] = 10, @@ -20846,16 +21607,26 @@ return { ["min"] = 5, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["max"] = 10, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 10, + ["min"] = 5, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "enchant", + }, + }, ["2901986750"] = { ["Amulet"] = { +<<<<<<< HEAD ["max"] = 10, ["min"] = 5, }, @@ -20884,20 +21655,29 @@ return { >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["min"] = 5, }, +======= + ["max"] = 10, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 10, + ["min"] = 5, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["2923486259"] = { ["Chest"] = { - ["max"] = 19, - ["min"] = 13, - }, + ["max"] = 19, + ["min"] = 13, + }, ["Ring"] = { ["max"] = 19, ["min"] = 13, @@ -20905,18 +21685,19 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["293638271"] = { ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["2HWeapon"] = { +<<<<<<< HEAD ["max"] = 30, ["min"] = 20, }, @@ -21023,39 +21804,52 @@ return { ["max"] = 35, ["min"] = 20, }, +======= + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_293638271", - ["text"] = "#% increased chance to Shock", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "enchant", + }, + }, ["2968503605"] = { ["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_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "enchant", + }, + }, ["2974417149"] = { ["1HWeapon"] = { ["max"] = 30, @@ -21080,13 +21874,14 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "enchant", + }, + }, ["3057012405"] = { ["1HWeapon"] = { +<<<<<<< HEAD <<<<<<< HEAD ["max"] = 20, ["min"] = 20, @@ -21099,14 +21894,23 @@ return { ["min"] = 10, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["max"] = 15, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 10, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "enchant", + }, + }, ["3175163625"] = { ["Gloves"] = { ["max"] = 10, @@ -21115,6 +21919,7 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_3175163625", ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "enchant", @@ -21199,25 +22004,32 @@ return { ["min"] = 6, }, ======= +======= + ["id"] = "enchant.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["3233599707"] = { >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "enchant", + }, + }, ["3261801346"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Ring"] = { ["max"] = 15, ["min"] = 10, @@ -21225,12 +22037,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["328541901"] = { <<<<<<< HEAD ["1HMace"] = { @@ -21310,14 +22122,20 @@ return { ["min"] = 6, ======= ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Belt"] = { +<<<<<<< HEAD ["max"] = 15, ["min"] = 10, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["max"] = 15, + ["min"] = 10, + }, +>>>>>>> ce20414fc (regen data files) ["Ring"] = { ["max"] = 15, ["min"] = 10, @@ -21325,12 +22143,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["3299347043"] = { <<<<<<< HEAD ["1HMace"] = { @@ -21422,12 +22240,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["3321629045"] = { ["Boots"] = { ["max"] = 25, @@ -21452,11 +22270,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "enchant", + }, + }, ["3336890334"] = { ["1HMace"] = { <<<<<<< HEAD @@ -21547,17 +22365,18 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "enchant", + }, + }, ["3372524247"] = { ["Belt"] = { ["max"] = 25, ["min"] = 20, }, ["Boots"] = { +<<<<<<< HEAD <<<<<<< HEAD ["max"] = 22, ["min"] = 10, @@ -21586,24 +22405,29 @@ return { ["min"] = 20, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["max"] = 25, + ["min"] = 20, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "enchant", + }, + }, ["3398787959"] = { <<<<<<< HEAD ["1HMace"] = { @@ -21653,35 +22477,35 @@ return { ======= >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "enchant", + }, + }, ["3417711605"] = { ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "enchant", + }, + }, ["3429557654"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3429557654", - ["text"] = "Immune to Maim", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_3429557654", + ["text"] = "Immune to Maim", + ["type"] = "enchant", + }, + }, ["3556824919"] = { ["Quiver"] = { ["max"] = 20, @@ -21694,120 +22518,120 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "enchant", + }, + }, ["3639275092"] = { ["1HMace"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["1HWeapon"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["2HMace"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["2HWeapon"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Boots"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Bow"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Chest"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Crossbow"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Flail"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Focus"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Gloves"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Helmet"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Quarterstaff"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Sceptre"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Shield"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Spear"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Staff"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Talisman"] = { - ["max"] = -10, - ["min"] = -20, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Wand"] = { - ["max"] = -10, - ["min"] = -20, - }, - ["invertOnNegative"] = true, + ["max"] = -10, + ["min"] = -20, + }, + ["invertOnNegative"] = true, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_3650992555", + ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", + ["type"] = "enchant", + }, + }, ["3676141501"] = { ["Helmet"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["max"] = 3, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["3695891184"] = { <<<<<<< HEAD ["1HMace"] = { @@ -21855,152 +22679,158 @@ return { ["min"] = 15, ======= ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Quiver"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Staff"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["max"] = 25, + ["min"] = 20, + }, ["Wand"] = { +<<<<<<< HEAD ["max"] = 25, ["min"] = 20, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["max"] = 25, + ["min"] = 20, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "enchant", + }, + }, ["3771516363"] = { ["Chest"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "enchant", + }, + }, ["3780644166"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "enchant", + }, + }, ["387439868"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 40, - }, + ["max"] = 50, + ["min"] = 40, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 20, - }, + ["max"] = 50, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Crossbow"] = { - ["max"] = 50, - ["min"] = 40, - }, + ["max"] = 50, + ["min"] = 40, + }, ["Flail"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 40, - }, + ["max"] = 50, + ["min"] = 40, + }, ["Spear"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Talisman"] = { - ["max"] = 50, - ["min"] = 40, - }, + ["max"] = 50, + ["min"] = 40, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "enchant", + }, + }, ["3885405204"] = { ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", - }, + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "enchant", + }, + }, ["3885634897"] = { ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Spear"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_3885634897", - ["text"] = "#% chance to Poison on Hit with this weapon", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "enchant", + }, + }, ["3917489142"] = { <<<<<<< HEAD ["Chest"] = { @@ -22024,11 +22854,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "enchant", + }, + }, ["3981240776"] = { ["Helmet"] = { ["max"] = 30, @@ -22037,14 +22867,15 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["3984865854"] = { ["1HWeapon"] = { +<<<<<<< HEAD <<<<<<< HEAD ["max"] = 15, ======= @@ -22056,9 +22887,19 @@ return { >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["min"] = 15, }, +======= + ["max"] = 25, + ["min"] = 15, + }, + ["Sceptre"] = { + ["max"] = 25, + ["min"] = 15, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_3984865854", ["text"] = "#% increased Spirit", ["type"] = "enchant", @@ -22142,6 +22983,13 @@ return { ["max"] = 15, ["min"] = 6, ======= +======= + ["id"] = "enchant.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["4015621042"] = { ["Boots"] = { ["max"] = 25, @@ -22166,35 +23014,41 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4015621042", - ["text"] = "#% increased Energy Shield", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "enchant", + }, + }, ["4078695"] = { ["Gloves"] = { +<<<<<<< HEAD ["max"] = 1, ["min"] = 1, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["max"] = 1, + ["min"] = 1, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_4078695", - ["text"] = "# to Maximum Frenzy Charges", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["4080418644"] = { ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Ring"] = { ["max"] = 15, ["min"] = 10, @@ -22202,25 +23056,25 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["4081947835"] = { ["Quiver"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "enchant", + }, + }, ["4095671657"] = { ["Belt"] = { ["max"] = 3, @@ -22229,18 +23083,19 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["4220027924"] = { ["Belt"] = { ["max"] = 25, ["min"] = 20, }, ["Boots"] = { +<<<<<<< HEAD <<<<<<< HEAD ["max"] = 22, ["min"] = 10, @@ -22269,45 +23124,51 @@ return { ["min"] = 20, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["max"] = 25, + ["min"] = 20, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["4226189338"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["4236566306"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_4236566306", ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "enchant", @@ -22338,15 +23199,27 @@ return { ["min"] = 1, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["id"] = "enchant.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "enchant", + }, + }, + ["4283407333"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_4283407333", - ["text"] = "# to Level of all Skills", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_4283407333", + ["text"] = "# to Level of all Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["44972811"] = { ["Helmet"] = { ["max"] = 25, @@ -22359,44 +23232,45 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "enchant", + }, + }, ["472520716"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "enchant", + }, + }, ["473429811"] = { ["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"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_473429811", ["text"] = "#% increased Freeze Buildup", ["type"] = "enchant", @@ -22454,104 +23328,116 @@ return { ["min"] = 3, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["id"] = "enchant.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "enchant", + }, + }, + ["480796730"] = { + ["Shield"] = { + ["max"] = 3, + ["min"] = 3, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_480796730", - ["text"] = "#% to maximum Block chance", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_480796730", + ["text"] = "#% to maximum Block chance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["548198834"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Flail"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Spear"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_548198834", - ["text"] = "#% increased Melee Strike Range with this weapon", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", + ["type"] = "enchant", + }, + }, ["591105508"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["680068163"] = { ["Boots"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "enchant", + }, + }, ["707457662"] = { ["Amulet"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "enchant", + }, + }, ["709508406"] = { ["1HMace"] = { ["max"] = 18, @@ -22596,6 +23482,7 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_709508406", ["text"] = "Adds # to # Fire Damage", ["type"] = "enchant", @@ -22612,16 +23499,23 @@ return { ["min"] = 16, }, ======= +======= + ["id"] = "enchant.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "enchant", + }, + }, +>>>>>>> ce20414fc (regen data files) ["721014846"] = { >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_721014846", - ["text"] = "You cannot be Hindered", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_721014846", + ["text"] = "You cannot be Hindered", + ["type"] = "enchant", + }, + }, ["737908626"] = { ["1HWeapon"] = { ["max"] = 30, @@ -22642,6 +23536,7 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { +<<<<<<< HEAD ["id"] = "enchant.stat_737908626", ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "enchant", @@ -22687,14 +23582,26 @@ return { ["min"] = 20, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["id"] = "enchant.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "enchant", + }, + }, + ["762600725"] = { + ["Shield"] = { + ["max"] = 25, + ["min"] = 20, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_762600725", - ["text"] = "# Life gained when you Block", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "enchant", + }, + }, ["789117908"] = { ["Helmet"] = { ["max"] = 30, @@ -22707,13 +23614,14 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "enchant", + }, + }, ["791928121"] = { ["1HMace"] = { +<<<<<<< HEAD ["max"] = 50, ["min"] = 20, }, @@ -22763,14 +23671,43 @@ return { }, ======= >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) +======= + ["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, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "enchant", + }, + }, ["803737631"] = { <<<<<<< HEAD ["Helmet"] = { @@ -22822,37 +23759,44 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["818778753"] = { ["Gloves"] = { +<<<<<<< HEAD ["max"] = 15, ["min"] = 10, >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) }, +======= + ["max"] = 15, + ["min"] = 10, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "enchant", - }, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "enchant", + }, + }, ["9187492"] = { ["Gloves"] = { +<<<<<<< HEAD ["max"] = 1, ["min"] = 1, }, @@ -22864,15 +23808,20 @@ return { ["invertOnNegative"] = true, ======= >>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) +======= + ["max"] = 1, + ["min"] = 1, + }, +>>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_9187492", - ["text"] = "# to Level of all Melee Skills", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "enchant.stat_9187492", + ["text"] = "# to Level of all Melee Skills", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, ["924253255"] = { ["Boots"] = { ["max"] = -20, @@ -22882,29 +23831,29 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "enchant", - }, - }, + ["id"] = "enchant.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "enchant", + }, + }, ["970213192"] = { ["Quiver"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["max"] = 6, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "enchant.stat_970213192", - ["text"] = "#% increased Skill Speed", - ["type"] = "enchant", - }, - }, - }, + ["id"] = "enchant.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "enchant", + }, + }, + }, ["Enchant"] = { }, ["Explicit"] = { @@ -22920,11 +23869,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", + }, + }, ["1004011302"] = { ["AnyJewel"] = { ["max"] = 5, @@ -22975,12 +23924,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["101878827"] = { ["1HWeapon"] = { ["max"] = 80, @@ -23018,11 +23967,11 @@ return { ["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", + }, + }, ["1037193709"] = { ["1HMace"] = { ["max"] = 102, @@ -23084,11 +24033,11 @@ return { ["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", + }, + }, ["1050105434"] = { ["1HWeapon"] = { ["max"] = 164, @@ -23141,12 +24090,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1060572482"] = { ["AnyJewel"] = { ["max"] = 25, @@ -23239,11 +24188,11 @@ return { ["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", + }, + }, ["1104825894"] = { ["AnyJewel"] = { ["max"] = 15, @@ -23346,11 +24295,11 @@ return { ["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", + }, + }, ["1160637284"] = { ["AnyJewel"] = { ["max"] = 3, @@ -23397,11 +24346,11 @@ return { ["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", + }, + }, ["1181419800"] = { ["AnyJewel"] = { ["max"] = 16, @@ -23421,13 +24370,13 @@ return { }, ["1181501418"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23473,33 +24422,33 @@ return { }, ["1202301673"] = { ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, + ["max"] = 7, + ["min"] = 1, + }, ["Amulet"] = { ["max"] = 3, ["min"] = 1, }, ["Bow"] = { - ["max"] = 5, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 1, + }, ["Crossbow"] = { - ["max"] = 7, - ["min"] = 2, - }, + ["max"] = 7, + ["min"] = 2, + }, ["Quiver"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["max"] = 2, + ["min"] = 1, + }, ["Spear"] = { - ["max"] = 5, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23696,11 +24645,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + }, ["1266413530"] = { ["AnyJewel"] = { ["max"] = 2, @@ -23863,11 +24812,11 @@ return { ["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", + }, + }, ["1321104829"] = { ["AnyJewel"] = { ["max"] = 7, @@ -23914,11 +24863,11 @@ return { ["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", + }, + }, ["1352561456"] = { ["AnyJewel"] = { ["max"] = 10, @@ -24044,24 +24993,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_138421180", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", - ["type"] = "explicit", - }, - }, - ["1389153006"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1389153006", - ["text"] = "#% increased Global Defences", - ["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, @@ -24125,11 +25061,11 @@ return { ["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", + }, + }, ["1417267954"] = { ["AnyJewel"] = { ["max"] = 2, @@ -24194,11 +25130,11 @@ return { ["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", + }, + }, ["1444556985"] = { ["Amulet"] = { ["max"] = 24, @@ -24215,28 +25151,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, - ["145497481"] = { - ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, - ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_145497481", - ["text"] = "#% increased Defences from Equipped Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, ["1459321413"] = { ["AnyJewel"] = { ["max"] = 10, @@ -24266,11 +25185,11 @@ return { ["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", + }, + }, ["1494950893"] = { ["AnyJewel"] = { ["max"] = 3, @@ -24366,11 +25285,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1514844108"] = { ["AnyJewel"] = { ["max"] = 10, @@ -24417,11 +25336,11 @@ return { ["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", + }, + }, ["1545858329"] = { ["1HWeapon"] = { ["max"] = 5, @@ -24460,11 +25379,11 @@ return { ["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", + }, + }, ["1569101201"] = { ["AnyJewel"] = { ["max"] = 20, @@ -24682,11 +25601,11 @@ return { ["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", + }, + }, ["1653682082"] = { ["AnyJewel"] = { ["max"] = 2, @@ -24744,12 +25663,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1692879867"] = { ["Chest"] = { ["max"] = -36, @@ -24776,11 +25695,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", + ["type"] = "explicit", + }, + }, ["1697951953"] = { ["AnyJewel"] = { ["max"] = 20, @@ -24866,11 +25785,11 @@ return { ["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", + }, + }, ["1754445556"] = { ["Gloves"] = { ["max"] = 37.5, @@ -24956,11 +25875,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1776411443", - ["text"] = "Break #% increased Armour", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "explicit", + }, + }, ["1777421941"] = { ["AnyJewel"] = { ["max"] = 3, @@ -24984,17 +25903,17 @@ return { ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 15, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 55, - ["min"] = 26, - }, + ["max"] = 55, + ["min"] = 26, + }, ["Focus"] = { - ["max"] = 55, - ["min"] = 26, - }, + ["max"] = 55, + ["min"] = 26, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25015,11 +25934,11 @@ return { ["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", + }, + }, ["1798257884"] = { ["1HWeapon"] = { ["max"] = 119, @@ -25066,11 +25985,11 @@ return { ["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", + }, + }, ["1811130680"] = { ["ManaFlask"] = { ["max"] = 100, @@ -25079,11 +25998,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1811130680", - ["text"] = "#% increased Mana Recovered", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", + ["type"] = "explicit", + }, + }, ["1829102168"] = { ["AnyJewel"] = { ["max"] = 10, @@ -25151,11 +26070,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + }, ["1846980580"] = { ["AnyJewel"] = { ["max"] = 1, @@ -25220,11 +26139,11 @@ return { ["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", + }, + }, ["1869147066"] = { ["AnyJewel"] = { ["max"] = 20, @@ -25437,11 +26356,11 @@ return { ["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", + }, + }, ["1967051901"] = { ["2HWeapon"] = { ["max"] = 1, @@ -25454,11 +26373,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1967051901", - ["text"] = "Loads an additional bolt", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "explicit", + }, + }, ["1978899297"] = { ["Shield"] = { ["max"] = 2, @@ -25467,12 +26386,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1994296038"] = { ["AnyJewel"] = { ["max"] = 3, @@ -25565,11 +26484,11 @@ return { ["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", + }, + }, ["2056107438"] = { ["AnyJewel"] = { ["max"] = 7, @@ -25599,11 +26518,11 @@ return { ["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", + }, + }, ["2077117738"] = { ["AnyJewel"] = { ["max"] = 7, @@ -25625,11 +26544,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2081918629", - ["text"] = "#% increased effect of Socketed Items", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2081918629", + ["text"] = "#% increased effect of Socketed Augment Items", + ["type"] = "explicit", + }, + }, ["210067635"] = { ["1HMace"] = { ["max"] = 28, @@ -25674,11 +26593,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, ["2106365538"] = { ["Amulet"] = { ["max"] = 50, @@ -25813,9 +26732,9 @@ return { }, ["2144192055"] = { ["Ring"] = { - ["max"] = 203, - ["min"] = 8, - }, + ["max"] = 203, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25837,11 +26756,11 @@ return { ["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", + }, + }, ["2160282525"] = { ["Boots"] = { ["max"] = 60, @@ -25893,11 +26812,11 @@ return { ["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", + }, + }, ["2194114101"] = { ["AnyJewel"] = { ["max"] = 16, @@ -25914,11 +26833,11 @@ return { ["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", + }, + }, ["2202308025"] = { ["AnyJewel"] = { ["max"] = 3, @@ -26036,11 +26955,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, ["2254480358"] = { ["1HWeapon"] = { ["max"] = 5, @@ -26113,11 +27032,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2301718443", - ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "explicit", + }, + }, ["2320654813"] = { ["AnyJewel"] = { ["max"] = 7, @@ -26175,33 +27094,33 @@ return { }, ["2339757871"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["Boots"] = { - ["max"] = 45, - ["min"] = 26, - }, + ["max"] = 45, + ["min"] = 26, + }, ["Focus"] = { - ["max"] = 55, - ["min"] = 26, - }, + ["max"] = 55, + ["min"] = 26, + }, ["Gloves"] = { - ["max"] = 45, - ["min"] = 26, - }, + ["max"] = 45, + ["min"] = 26, + }, ["Helmet"] = { - ["max"] = 45, - ["min"] = 26, - }, + ["max"] = 45, + ["min"] = 26, + }, ["Shield"] = { - ["max"] = 55, - ["min"] = 26, - }, + ["max"] = 55, + ["min"] = 26, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26303,11 +27222,11 @@ return { ["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", + }, + }, ["2392824305"] = { ["AnyJewel"] = { ["max"] = 12, @@ -26430,11 +27349,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "explicit", + }, + }, ["2456523742"] = { ["AnyJewel"] = { ["max"] = 20, @@ -26458,9 +27377,9 @@ return { ["min"] = 25, }, ["Bow"] = { - ["max"] = 200, - ["min"] = 25, - }, + ["max"] = 200, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26482,11 +27401,11 @@ return { ["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", + }, + }, ["2480498143"] = { ["AnyJewel"] = { ["max"] = 6, @@ -26661,11 +27580,11 @@ return { ["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", + }, + }, ["2527686725"] = { ["AnyJewel"] = { ["max"] = 15, @@ -26732,13 +27651,13 @@ return { }, ["2557965901"] = { ["Gloves"] = { - ["max"] = 9.9, - ["min"] = 5, - }, + ["max"] = 9.9, + ["min"] = 5, + }, ["Ring"] = { - ["max"] = 7.9, - ["min"] = 5, - }, + ["max"] = 7.9, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26759,11 +27678,11 @@ return { ["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", + }, + }, ["2580617872"] = { ["AnyJewel"] = { ["max"] = -2, @@ -26777,11 +27696,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2580617872", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2580617872", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["type"] = "explicit", + }, + }, ["2582079000"] = { ["specialCaseData"] = { ["overrideModLinePlural"] = "+# Charm Slots", @@ -26822,11 +27741,11 @@ return { ["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", + }, + }, ["2637470878"] = { ["AnyJewel"] = { ["max"] = 20, @@ -26865,11 +27784,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2639966148", - ["text"] = "Minions Revive #% faster", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2639966148", + ["text"] = "Minions Revive #% faster", + ["type"] = "explicit", + }, + }, ["2653955271"] = { ["AnyJewel"] = { ["max"] = 10, @@ -27014,11 +27933,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2696027455", - ["text"] = "#% increased Damage with Spears", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2696027455", + ["text"] = "#% increased Damage with Spears", + ["type"] = "explicit", + }, + }, ["2704905000"] = { ["AnyJewel"] = { ["max"] = 7, @@ -27065,11 +27984,11 @@ return { ["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", + }, + }, ["2720982137"] = { ["AnyJewel"] = { ["max"] = 25, @@ -27082,11 +28001,11 @@ return { ["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", + }, + }, ["2726713579"] = { ["AnyJewel"] = { ["max"] = 1, @@ -27153,11 +28072,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, ["2768835289"] = { ["1HWeapon"] = { ["max"] = 119, @@ -27486,11 +28405,11 @@ return { ["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", + }, + }, ["2901986750"] = { ["Amulet"] = { ["max"] = 18, @@ -27621,11 +28540,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_293638271", - ["text"] = "#% increased chance to Shock", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "explicit", + }, + }, ["2954360902"] = { ["AnyJewel"] = { ["max"] = 2, @@ -27961,57 +28880,57 @@ return { }, ["3035140377"] = { ["Bow"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Dagger"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["Flail"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["One Hand Axe"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["One Hand Mace"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["One Hand Sword"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Spear"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Two Hand Axe"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Two Hand Mace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Two Hand Sword"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -28059,11 +28978,11 @@ return { ["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", + }, + }, ["3065378291"] = { ["AnyJewel"] = { ["max"] = 4, @@ -28127,11 +29046,11 @@ return { ["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", + }, + }, ["3106718406"] = { ["AnyJewel"] = { ["max"] = 2, @@ -28144,11 +29063,11 @@ return { ["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", + }, + }, ["3113764475"] = { ["AnyJewel"] = { ["max"] = 5, @@ -28178,11 +29097,11 @@ return { ["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", + }, + }, ["3141070085"] = { ["AnyJewel"] = { ["max"] = 15, @@ -28195,11 +29114,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", + }, + }, ["3146310524"] = { ["AnyJewel"] = { ["max"] = 1, @@ -28350,11 +29269,11 @@ return { ["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", + }, + }, ["3192728503"] = { ["AnyJewel"] = { ["max"] = 15, @@ -28420,20 +29339,20 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["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", + }, + }, ["3256879910"] = { ["AnyJewel"] = { ["max"] = 2, @@ -28869,11 +29788,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "explicit", + }, + }, ["3336890334"] = { ["1HMace"] = { ["max"] = 123, @@ -29037,11 +29956,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, ["3386297724"] = { ["AnyJewel"] = { ["max"] = 3, @@ -29071,11 +29990,11 @@ return { ["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", + }, + }, ["3394832998"] = { ["AnyJewel"] = { ["max"] = 7, @@ -29122,11 +30041,11 @@ return { ["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", + }, + }, ["3401186585"] = { ["AnyJewel"] = { ["max"] = 15, @@ -29139,11 +30058,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3401186585", - ["text"] = "#% increased Parried Debuff Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", + ["type"] = "explicit", + }, + }, ["3409275777"] = { ["AnyJewel"] = { ["max"] = 3, @@ -29190,11 +30109,11 @@ return { ["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", + }, + }, ["3473929743"] = { ["AnyJewel"] = { ["max"] = 20, @@ -29207,32 +30126,32 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3473929743", - ["text"] = "#% increased Pin Buildup", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3473929743", + ["text"] = "#% increased Pin Buildup", + ["type"] = "explicit", + }, + }, ["3484657501"] = { ["Boots"] = { - ["max"] = 160, - ["min"] = 8, - }, + ["max"] = 160, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 276, - ["min"] = 4, - }, + ["max"] = 276, + ["min"] = 4, + }, ["Gloves"] = { - ["max"] = 160, - ["min"] = 8, - }, + ["max"] = 160, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 202, - ["min"] = 8, - }, + ["max"] = 202, + ["min"] = 8, + }, ["Shield"] = { - ["max"] = 256, - ["min"] = 8, - }, + ["max"] = 256, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -29285,11 +30204,11 @@ return { ["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", + }, + }, ["3523867985"] = { ["Boots"] = { ["max"] = 110, @@ -29310,11 +30229,11 @@ return { ["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", + }, + }, ["3544800472"] = { ["AnyJewel"] = { ["max"] = 20, @@ -29327,11 +30246,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "explicit", + }, + }, ["3556824919"] = { ["Amulet"] = { ["max"] = 39, @@ -29390,11 +30309,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "explicit", + }, + }, ["3590792340"] = { ["AnyJewel"] = { ["max"] = 20, @@ -29424,11 +30343,11 @@ return { ["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", + }, + }, ["3628935286"] = { ["AnyJewel"] = { ["max"] = 10, @@ -29544,11 +30463,11 @@ return { ["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", + }, + }, ["3665922113"] = { ["AnyJewel"] = { ["max"] = 3, @@ -29771,11 +30690,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "explicit", + }, + }, ["3749502527"] = { ["specialCaseData"] = { }, @@ -29916,11 +30835,11 @@ return { ["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", + }, + }, ["3791899485"] = { ["AnyJewel"] = { ["max"] = 15, @@ -29950,11 +30869,11 @@ return { ["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", + }, + }, ["3821543413"] = { ["AnyJewel"] = { ["max"] = 3, @@ -30097,11 +31016,11 @@ return { ["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", + }, + }, ["3859848445"] = { ["AnyJewel"] = { ["max"] = 6, @@ -30131,11 +31050,11 @@ return { ["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", + }, + }, ["387439868"] = { ["1HMace"] = { ["max"] = 100, @@ -30372,12 +31291,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3984865854"] = { ["1HWeapon"] = { ["max"] = 65, @@ -30757,12 +31676,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "explicit.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["4101445926"] = { ["Focus"] = { ["max"] = 20, @@ -30839,11 +31758,11 @@ return { ["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", + }, + }, ["4147897060"] = { ["AnyJewel"] = { ["max"] = 7, @@ -31082,11 +32001,11 @@ return { ["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", + }, + }, ["4258000627"] = { ["AnyJewel"] = { ["max"] = 1, @@ -31099,11 +32018,11 @@ return { ["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", + }, + }, ["4258720395"] = { ["AnyJewel"] = { ["max"] = 7, @@ -31116,11 +32035,11 @@ return { ["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", + }, + }, ["427684353"] = { ["AnyJewel"] = { ["max"] = 16, @@ -31140,21 +32059,21 @@ return { }, ["429143663"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 20, + ["min"] = 10, + }, ["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", + }, + }, ["440490623"] = { ["AnyJewel"] = { ["max"] = 20, @@ -31470,25 +32389,25 @@ return { }, ["53045048"] = { ["Boots"] = { - ["max"] = 142, - ["min"] = 6, - }, + ["max"] = 142, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 251, - ["min"] = 3, - }, + ["max"] = 251, + ["min"] = 3, + }, ["Gloves"] = { - ["max"] = 142, - ["min"] = 6, - }, + ["max"] = 142, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 181, - ["min"] = 6, - }, + ["max"] = 181, + ["min"] = 6, + }, ["Shield"] = { - ["max"] = 232, - ["min"] = 6, - }, + ["max"] = 232, + ["min"] = 6, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -31527,52 +32446,52 @@ return { ["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", + }, + }, ["55876295"] = { ["1HMace"] = { - ["max"] = 9.9, - ["min"] = 5, - }, + ["max"] = 9.9, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 9.9, - ["min"] = 5, - }, + ["max"] = 9.9, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 9.9, - ["min"] = 5, - }, + ["max"] = 9.9, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 9.9, - ["min"] = 5, - }, + ["max"] = 9.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"] = 9.9, - ["min"] = 5, - }, + ["max"] = 9.9, + ["min"] = 5, + }, ["Quarterstaff"] = { - ["max"] = 9.9, - ["min"] = 5, - }, + ["max"] = 9.9, + ["min"] = 5, + }, ["Spear"] = { - ["max"] = 9.9, - ["min"] = 5, - }, + ["max"] = 9.9, + ["min"] = 5, + }, ["Talisman"] = { - ["max"] = 9.9, - ["min"] = 5, - }, + ["max"] = 9.9, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -31618,11 +32537,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, ["591105508"] = { ["1HWeapon"] = { ["max"] = 5, @@ -31712,11 +32631,11 @@ return { ["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", + }, + }, ["644456512"] = { ["Belt"] = { ["max"] = 25, @@ -31775,45 +32694,45 @@ return { }, ["669069897"] = { ["1HMace"] = { - ["max"] = 8.9, - ["min"] = 4, - }, + ["max"] = 8.9, + ["min"] = 4, + }, ["1HWeapon"] = { - ["max"] = 8.9, - ["min"] = 4, - }, + ["max"] = 8.9, + ["min"] = 4, + }, ["2HMace"] = { - ["max"] = 8.9, - ["min"] = 4, - }, + ["max"] = 8.9, + ["min"] = 4, + }, ["2HWeapon"] = { - ["max"] = 8.9, - ["min"] = 4, - }, + ["max"] = 8.9, + ["min"] = 4, + }, ["Bow"] = { - ["max"] = 7.9, - ["min"] = 4, - }, + ["max"] = 7.9, + ["min"] = 4, + }, ["Crossbow"] = { - ["max"] = 7.9, - ["min"] = 4, - }, + ["max"] = 7.9, + ["min"] = 4, + }, ["Flail"] = { - ["max"] = 8.9, - ["min"] = 4, - }, + ["max"] = 8.9, + ["min"] = 4, + }, ["Quarterstaff"] = { - ["max"] = 8.9, - ["min"] = 4, - }, + ["max"] = 8.9, + ["min"] = 4, + }, ["Spear"] = { - ["max"] = 8.9, - ["min"] = 4, - }, + ["max"] = 8.9, + ["min"] = 4, + }, ["Talisman"] = { - ["max"] = 8.9, - ["min"] = 4, - }, + ["max"] = 8.9, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -31977,13 +32896,13 @@ return { }, ["707457662"] = { ["Gloves"] = { - ["max"] = 8.9, - ["min"] = 4, - }, + ["max"] = 8.9, + ["min"] = 4, + }, ["Ring"] = { - ["max"] = 6.9, - ["min"] = 4, - }, + ["max"] = 6.9, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -32053,20 +32972,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_712554801", - ["text"] = "#% increased Effect of your Mark Skills", - ["type"] = "explicit", - }, - }, - ["713216632"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_713216632", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Defences from Equipped Shield", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", + ["type"] = "explicit", + }, + }, ["715957346"] = { ["AnyJewel"] = { ["max"] = 2, @@ -32079,11 +32989,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_715957346", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["type"] = "explicit", + }, + }, ["734614379"] = { ["Amulet"] = { ["max"] = 10, @@ -32107,13 +33017,13 @@ return { ["min"] = 50, }, ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["max"] = 12, + ["min"] = 6, + }, ["Focus"] = { ["max"] = 89, ["min"] = 25, @@ -32211,11 +33121,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_748522257", - ["text"] = "#% increased Stun Duration", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_748522257", + ["text"] = "#% increased Stun Duration", + ["type"] = "explicit", + }, + }, ["770672621"] = { ["1HWeapon"] = { ["max"] = 50, @@ -32352,11 +33262,11 @@ return { ["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", + }, + }, ["803737631"] = { ["Amulet"] = { ["max"] = 450, @@ -32389,9 +33299,9 @@ return { }, ["809229260"] = { ["Belt"] = { - ["max"] = 255, - ["min"] = 12, - }, + ["max"] = 255, + ["min"] = 12, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -32496,20 +33406,20 @@ return { ["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", + }, + }, ["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", + }, + }, ["830345042"] = { ["AnyJewel"] = { ["max"] = 4, @@ -32653,45 +33563,45 @@ return { }, ["9187492"] = { ["1HMace"] = { - ["max"] = 5, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 7, - ["min"] = 2, - }, + ["max"] = 7, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 2, - }, + ["max"] = 7, + ["min"] = 2, + }, ["Amulet"] = { ["max"] = 3, ["min"] = 1, }, ["Flail"] = { - ["max"] = 5, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 1, + }, ["Gloves"] = { ["max"] = 2, ["min"] = 1, }, ["Quarterstaff"] = { - ["max"] = 7, - ["min"] = 2, - }, + ["max"] = 7, + ["min"] = 2, + }, ["Spear"] = { - ["max"] = 5, - ["min"] = 1, - }, + ["max"] = 5, + ["min"] = 1, + }, ["Talisman"] = { - ["max"] = 7, - ["min"] = 2, - }, + ["max"] = 7, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -32714,11 +33624,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "explicit", - }, - }, + ["id"] = "explicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "explicit", + }, + }, ["942519401"] = { ["AnyJewel"] = { ["max"] = 10, @@ -32765,11 +33675,11 @@ return { ["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", + }, + }, ["959641748"] = { ["ManaFlask"] = { ["max"] = 15, @@ -32778,11 +33688,11 @@ return { ["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", + }, + }, ["980177976"] = { ["AnyJewel"] = { ["max"] = 3, @@ -32845,23 +33755,6 @@ return { }, }, ["Implicit"] = { - ["1028592286"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1028592286", - ["text"] = "#% chance to Chain an additional time", - ["type"] = "implicit", - }, - }, ["1050105434"] = { ["Ring"] = { ["max"] = 30, @@ -32888,29 +33781,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1137147997", - ["text"] = "Unblockable", - ["type"] = "implicit", - }, - }, - ["1181501418"] = { - ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Talisman"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1181501418", - ["text"] = "# to Maximum Rage", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "implicit.stat_1137147997", + ["text"] = "Unblockable", + ["type"] = "implicit", + }, + }, ["1207554355"] = { ["Quiver"] = { ["max"] = 30, @@ -32967,11 +33842,24 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1412682799", - ["text"] = "Used when you become Poisoned", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1412682799", + ["text"] = "Used when you become Poisoned", + ["type"] = "implicit", + }, + }, + ["1416292992"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1416292992", + ["text"] = "Has # Charm Slot", + ["type"] = "implicit", + }, + }, ["1434716233"] = { ["2HMace"] = { ["max"] = 1, @@ -33014,11 +33902,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1451444093", - ["text"] = "Bifurcates Critical Hits", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1451444093", + ["text"] = "Bifurcates Critical Hits", + ["type"] = "implicit", + }, + }, ["1503146834"] = { ["2HMace"] = { ["max"] = 1, @@ -33129,17 +34017,13 @@ return { }, ["1702195217"] = { ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 12, + }, ["Quarterstaff"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["max"] = 18, + ["min"] = 12, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -33157,24 +34041,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", - ["type"] = "implicit", - }, - }, - ["1782086450"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "implicit", + }, + }, ["1803308202"] = { ["2HWeapon"] = { ["max"] = 30, @@ -33213,11 +34084,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "implicit", - }, - }, + ["id"] = "implicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "implicit", + }, + }, ["1967051901"] = { ["2HWeapon"] = { ["max"] = 1, @@ -33320,9 +34191,9 @@ return { }, ["2250533757"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["max"] = 10, + ["min"] = 5, + }, ["Chest"] = { ["max"] = 5, ["min"] = 5, @@ -33403,13 +34274,13 @@ return { }, ["2527686725"] = { ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Talisman"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -33443,25 +34314,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["275498888"] = { - ["Ring"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { + ["id"] = "implicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "implicit", }, - ["tradeMod"] = { - ["id"] = "implicit.stat_275498888", - ["text"] = "Maximum Quality is #%", - ["type"] = "implicit", - }, - }, + ["usePositiveSign"] = true, + }, ["2778646494"] = { ["Charm"] = { ["max"] = 1, @@ -33756,25 +34614,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3398402065", - ["text"] = "#% increased Projectile Range", - ["type"] = "implicit", - }, - }, - ["3489782002"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "implicit.stat_3398402065", + ["text"] = "#% increased Projectile Range", + ["type"] = "implicit", + }, + }, ["3544800472"] = { ["Chest"] = { ["max"] = 40, @@ -33930,16 +34774,37 @@ return { ["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, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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"] = { @@ -34165,26 +35030,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["809229260"] = { - ["Belt"] = { - ["max"] = 140, - ["min"] = 100, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_809229260", - ["text"] = "# to Armour", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "implicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["821241191"] = { ["Belt"] = { ["max"] = 30, @@ -34252,11 +35103,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "augment", + }, + }, ["1011760251"] = { ["Boots"] = { ["max"] = 1, @@ -34265,78 +35116,78 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["101878827"] = { - ["1HWeapon"] = { + ["Sceptre"] = { ["max"] = 30, ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "augment", + }, + }, ["1030153674"] = { ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1030153674", - ["text"] = "Recover #% of maximum Mana on Kill", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", + ["type"] = "augment", + }, + }, ["1037193709"] = { ["1HMace"] = { ["max"] = 23.5, @@ -34385,11 +35236,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "augment", + }, + }, ["1050105434"] = { ["Boots"] = { ["max"] = 35, @@ -34426,165 +35277,165 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["1181501418"] = { ["Helmet"] = { - ["max"] = 4, - ["min"] = 4, - }, + ["max"] = 4, + ["min"] = 4, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1181501418", - ["text"] = "# to Maximum Rage", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["1197632982"] = { ["Chest"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1197632982", - ["text"] = "# to Armour per 1 Spirit", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_1197632982", + ["text"] = "# to Armour per 1 Spirit", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["1228682002"] = { ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Flail"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Spear"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Wand"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1228682002", - ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1228682002", + ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", + ["type"] = "augment", + }, + }, ["1238227257"] = { ["Boots"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Focus"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["Shield"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "augment", + }, + }, ["124131830"] = { ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_124131830", - ["text"] = "# to Level of all Spell Skills", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["1250712710"] = { - ["1HWeapon"] = { + ["Sceptre"] = { ["max"] = 14, ["min"] = 14, }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "augment", + }, + }, ["1368271171"] = { ["1HMace"] = { ["max"] = 24, @@ -34633,103 +35484,103 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "augment", + }, + }, ["1374654984"] = { ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1374654984", - ["text"] = "#% of Physical Damage prevented Recouped as Life", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["type"] = "augment", + }, + }, ["1381474422"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1381474422", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1381474422", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", + ["type"] = "augment", + }, + }, ["1382805233"] = { ["Boots"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1382805233", - ["text"] = "#% increased Deflection Rating while moving", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1382805233", + ["text"] = "#% increased Deflection Rating while moving", + ["type"] = "augment", + }, + }, ["1433756169"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Flail"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Spear"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Talisman"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1433756169", - ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1433756169", + ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", + ["type"] = "augment", + }, + }, ["1444556985"] = { ["Helmet"] = { ["max"] = 8, @@ -34738,101 +35589,101 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "augment", + }, + }, ["1480688478"] = { ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1480688478", - ["text"] = "One of your Persistent Minions revives when an Offering expires", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1480688478", + ["text"] = "One of your Persistent Minions revives when an Offering expires", + ["type"] = "augment", + }, + }, ["1496740334"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Boots"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Focus"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Spear"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1496740334", - ["text"] = "Convert #% of Requirements to Dexterity", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1496740334", + ["text"] = "Convert #% of Requirements to Dexterity", + ["type"] = "augment", + }, + }, ["1519615863"] = { ["1HMace"] = { ["max"] = 15, @@ -34881,114 +35732,114 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "augment", + }, + }, ["1556124492"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Boots"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Focus"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 20, + }, ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1556124492", - ["text"] = "Convert #% of Requirements to Strength", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1556124492", + ["text"] = "Convert #% of Requirements to Strength", + ["type"] = "augment", + }, + }, ["1574590649"] = { - ["1HWeapon"] = { + ["Sceptre"] = { ["max"] = 15, ["min"] = 15, }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "augment", + }, + }, ["1585886916"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["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", - }, - }, + ["id"] = "rune.stat_1585886916", + ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", + ["type"] = "augment", + }, + }, ["1671376347"] = { ["Boots"] = { ["max"] = 14, @@ -35017,79 +35868,79 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["1755296234"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Spear"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["Talisman"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["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, - }, + ["id"] = "rune.stat_1755296234", + ["text"] = "Targets can be affected by # of your Poisons at the same time", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["1772929282"] = { ["Helmet"] = { - ["max"] = -5, - ["min"] = -5, - }, + ["max"] = -5, + ["min"] = -5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1772929282", - ["text"] = "Enemies you Curse have #% to Chaos Resistance", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", + ["type"] = "augment", + }, + }, ["1782086450"] = { ["Chest"] = { ["max"] = 30, @@ -35102,267 +35953,267 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "augment", + }, + }, ["1798257884"] = { - ["1HWeapon"] = { + ["Sceptre"] = { ["max"] = 30, ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "augment", + }, + }, ["1805633363"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1805633363", - ["text"] = "#% increased Reservation Efficiency of Minion Skills", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["type"] = "augment", + }, + }, ["1937310173"] = { ["Chest"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1937310173", - ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1937310173", + ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", + ["type"] = "augment", + }, + }, ["1947060170"] = { ["Helmet"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1947060170", - ["text"] = "#% of Armour also applies to Cold Damage", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_1947060170", + ["text"] = "#% of Armour also applies to Cold Damage", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["1984310483"] = { ["Helmet"] = { - ["max"] = 6, - ["min"] = 6, - }, + ["max"] = 6, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_1984310483", - ["text"] = "Enemies you Curse take #% increased Damage", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1984310483", + ["text"] = "Enemies you Curse take #% increased Damage", + ["type"] = "augment", + }, + }, ["1998951374"] = { - ["1HWeapon"] = { + ["Sceptre"] = { ["max"] = 8, ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "augment", + }, + }, ["2011656677"] = { ["1HMace"] = { - ["max"] = -25, - ["min"] = -25, - }, + ["max"] = -25, + ["min"] = -25, + }, ["1HWeapon"] = { - ["max"] = -25, - ["min"] = -25, - }, + ["max"] = -25, + ["min"] = -25, + }, ["2HMace"] = { - ["max"] = -25, - ["min"] = -25, - }, + ["max"] = -25, + ["min"] = -25, + }, ["2HWeapon"] = { - ["max"] = -25, - ["min"] = -25, - }, + ["max"] = -25, + ["min"] = -25, + }, ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = -25, - ["min"] = -25, - }, + ["max"] = -25, + ["min"] = -25, + }, ["Claw"] = { - ["max"] = -25, - ["min"] = -25, - }, + ["max"] = -25, + ["min"] = -25, + }, ["Crossbow"] = { - ["max"] = -25, - ["min"] = -25, - }, + ["max"] = -25, + ["min"] = -25, + }, ["Flail"] = { - ["max"] = -25, - ["min"] = -25, - }, + ["max"] = -25, + ["min"] = -25, + }, ["Quarterstaff"] = { - ["max"] = -25, - ["min"] = -25, - }, + ["max"] = -25, + ["min"] = -25, + }, ["Spear"] = { - ["max"] = -25, - ["min"] = -25, - }, + ["max"] = -25, + ["min"] = -25, + }, ["Talisman"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["invertOnNegative"] = true, + ["max"] = -25, + ["min"] = -25, + }, + ["invertOnNegative"] = true, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "augment", + }, + }, ["2023107756"] = { ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "augment", + }, + }, ["2074866941"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2074866941", - ["text"] = "#% increased Exposure Effect", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2074866941", + ["text"] = "#% increased Exposure Effect", + ["type"] = "augment", + }, + }, ["2077615515"] = { ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Flail"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Spear"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2077615515", - ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2077615515", + ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", + ["type"] = "augment", + }, + }, ["210067635"] = { ["1HMace"] = { ["max"] = 5, @@ -35411,52 +36262,52 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "augment", + }, + }, ["2103650854"] = { ["Gloves"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2103650854", - ["text"] = "#% increased effect of Arcane Surge on you", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", + ["type"] = "augment", + }, + }, ["2191621386"] = { ["Chest"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2191621386", - ["text"] = "#% of Armour also applies to Chaos Damage while on full Energy Shield", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["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, - }, + ["max"] = 40, + ["min"] = 40, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2200571612", - ["text"] = "#% of Armour also applies to Lightning Damage", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_2200571612", + ["text"] = "#% of Armour also applies to Lightning Damage", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["2223678961"] = { ["1HMace"] = { ["max"] = 24, @@ -35505,35 +36356,34 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "augment", + }, + }, ["2231410646"] = { ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2231410646", - ["text"] = "A random Skill that requires Glory generates #% of its maximum Glory when your Mark Activates", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2231410646", + ["text"] = "A random Skill that requires Glory generates #% of its maximum Glory when your Marks Activate", + ["type"] = "augment", + }, + }, ["2241849004"] = { ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { ["id"] = "rune.stat_2241849004", - ["text"] = "Energy Shield Recharge starts after spending a total of - 2000 Mana, no more than once every 2 seconds", + ["text"] = "Energy Shield Recharge starts after spending a total of 2000 Mana, no more than once every 2 seconds", ["type"] = "augment", }, }, @@ -35545,65 +36395,65 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "augment", + }, + }, ["2310741722"] = { ["Boots"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Chest"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Focus"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Gloves"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Helmet"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["Shield"] = { - ["max"] = 12, - ["min"] = 8, - }, + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2310741722", - ["text"] = "#% increased Life and Mana Recovery from Flasks", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2310741722", + ["text"] = "#% increased Life and Mana Recovery from Flasks", + ["type"] = "augment", + }, + }, ["2339757871"] = { ["Chest"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Staff"] = { - ["max"] = 18, - ["min"] = 12, - }, + ["max"] = 18, + ["min"] = 12, + }, ["Wand"] = { - ["max"] = 18, - ["min"] = 12, - }, + ["max"] = 18, + ["min"] = 12, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "augment", + }, + }, ["2353576063"] = { ["Gloves"] = { ["max"] = 5, @@ -35612,24 +36462,24 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "augment", + }, + }, ["2363593824"] = { ["Boots"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2363593824", - ["text"] = "#% increased speed of Recoup Effects", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", + ["type"] = "augment", + }, + }, ["2481353198"] = { ["Shield"] = { ["max"] = 10, @@ -35638,54 +36488,54 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "augment", + }, + }, ["2505884597"] = { ["Staff"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["Wand"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "augment", + }, + }, ["263495202"] = { ["Helmet"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_263495202", - ["text"] = "#% increased Cost Efficiency", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_263495202", + ["text"] = "#% increased Cost Efficiency", + ["type"] = "augment", + }, + }, ["2663359259"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2663359259", - ["text"] = "#% increased total Power counted by Warcries", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2663359259", + ["text"] = "#% increased total Power counted by Warcries", + ["type"] = "augment", + }, + }, ["2694482655"] = { ["1HMace"] = { ["max"] = 5, @@ -35734,66 +36584,65 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["2703838669"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["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", + ["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", }, }, ["2709367754"] = { ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "augment", + }, + }, ["2748665614"] = { ["Helmet"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "augment", + }, + }, ["280497929"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["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, - }, + ["id"] = "rune.stat_280497929", + ["text"] = "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["280731498"] = { ["Helmet"] = { ["max"] = 8, @@ -35802,37 +36651,37 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "augment", + }, + }, ["2854751904"] = { - ["1HWeapon"] = { + ["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", - }, - }, + ["id"] = "rune.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "augment", + }, + }, ["2876843277"] = { ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2876843277", - ["text"] = "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2876843277", + ["text"] = "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", + ["type"] = "augment", + }, + }, ["2891184298"] = { ["Gloves"] = { ["max"] = 8, @@ -35841,24 +36690,24 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "augment", + }, + }, ["289128254"] = { - ["1HWeapon"] = { + ["Sceptre"] = { ["max"] = 8, ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "augment", + }, + }, ["2901986750"] = { ["Boots"] = { ["max"] = 5, @@ -35887,167 +36736,167 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["2910761524"] = { ["Staff"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2910761524", - ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", + ["type"] = "augment", + }, + }, ["2913012734"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Boots"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Focus"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Spear"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_2913012734", - ["text"] = "Convert #% of Requirements to Intelligence", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2913012734", + ["text"] = "Convert #% of Requirements to Intelligence", + ["type"] = "augment", + }, + }, ["2916861134"] = { ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Flail"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Spear"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Wand"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["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", - }, - }, + ["id"] = "rune.stat_2916861134", + ["text"] = "#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", + ["type"] = "augment", + }, + }, ["2923486259"] = { ["Boots"] = { ["max"] = 11, @@ -36076,12 +36925,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["293638271"] = { ["1HMace"] = { ["max"] = 30, @@ -36130,11 +36979,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_293638271", - ["text"] = "#% increased chance to Shock", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "augment", + }, + }, ["2968503605"] = { ["1HMace"] = { ["max"] = 30, @@ -36183,11 +37032,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "augment", + }, + }, ["2974417149"] = { ["Staff"] = { ["max"] = 30, @@ -36200,93 +37049,93 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "augment", + }, + }, ["3015669065"] = { ["Staff"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["Wand"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "augment", + }, + }, ["3032590688"] = { ["Gloves"] = { - ["max"] = 8.5, - ["min"] = 8.5, - }, + ["max"] = 8.5, + ["min"] = 8.5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "augment", + }, + }, ["3057012405"] = { - ["1HWeapon"] = { + ["Sceptre"] = { ["max"] = 14, ["min"] = 14, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "augment", + }, + }, ["3107707789"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3107707789", - ["text"] = "#% increased Movement Speed while Sprinting", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", + ["type"] = "augment", + }, + }, ["310945763"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_310945763", - ["text"] = "#% increased Life Cost Efficiency", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_310945763", + ["text"] = "#% increased Life Cost Efficiency", + ["type"] = "augment", + }, + }, ["3166958180"] = { ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "augment", + }, + }, ["3175163625"] = { ["Gloves"] = { ["max"] = 10, @@ -36295,11 +37144,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "augment", + }, + }, ["3261801346"] = { ["1HMace"] = { ["max"] = 10, @@ -36380,29 +37229,29 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["3278136794"] = { ["Staff"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["Wand"] = { - ["max"] = 10, - ["min"] = 6, - }, + ["max"] = 10, + ["min"] = 6, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "augment", + }, + }, ["328541901"] = { ["1HMace"] = { ["max"] = 10, @@ -36483,12 +37332,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["3299347043"] = { ["Boots"] = { ["max"] = 40, @@ -36517,12 +37366,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["3336890334"] = { ["1HMace"] = { ["max"] = 30.5, @@ -36571,11 +37420,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "augment", + }, + }, ["3372524247"] = { ["Boots"] = { ["max"] = 14, @@ -36604,12 +37453,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["3377888098"] = { ["Helmet"] = { ["max"] = 8, @@ -36618,11 +37467,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "augment", + }, + }, ["3398787959"] = { ["1HMace"] = { ["max"] = 13, @@ -36679,229 +37528,229 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "augment", + }, + }, ["3407849389"] = { ["Chest"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3407849389", - ["text"] = "#% reduced effect of Curses on you", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", + ["type"] = "augment", + }, + }, ["3473409233"] = { ["Boots"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3473409233", - ["text"] = "Lose #% of maximum Life per second while Sprinting", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3473409233", + ["text"] = "Lose #% of maximum Life per second while Sprinting", + ["type"] = "augment", + }, + }, ["3489782002"] = { ["Staff"] = { - ["max"] = 35, - ["min"] = 25, - }, + ["max"] = 35, + ["min"] = 25, + }, ["Wand"] = { - ["max"] = 35, - ["min"] = 25, - }, + ["max"] = 35, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["3523867985"] = { ["Boots"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["Chest"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["Focus"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["Gloves"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["Helmet"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["Shield"] = { - ["max"] = 18, - ["min"] = 14, - }, + ["max"] = 18, + ["min"] = 14, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "augment", + }, + }, ["3537994888"] = { ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Claw"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Flail"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Spear"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Staff"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["Wand"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["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", - }, - }, + ["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, - }, + ["max"] = 25, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "augment", + }, + }, ["3552135623"] = { ["Chest"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3552135623", - ["text"] = "Prevent #% of Damage from Deflected Hits", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["3570773271"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["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", - }, - }, + ["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, - }, + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "augment", + }, + }, ["3655769732"] = { ["Chest"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3655769732", - ["text"] = "#% to Quality of all Skills", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_3655769732", + ["text"] = "#% to Quality of all Skills", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["3666934677"] = { ["Helmet"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["max"] = 2, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3666934677", - ["text"] = "#% increased Experience gain", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "augment", + }, + }, ["3676141501"] = { ["Helmet"] = { ["max"] = 1, @@ -36910,65 +37759,65 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["3678845069"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Claw"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Flail"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Spear"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Talisman"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3678845069", - ["text"] = "Attacks with this Weapon have #% chance to inflict Exposure", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3678845069", + ["text"] = "Attacks with this Weapon have #% chance to inflict Exposure", + ["type"] = "augment", + }, + }, ["3695891184"] = { ["1HMace"] = { ["max"] = 30, @@ -37017,133 +37866,122 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "augment", + }, + }, ["3742865955"] = { - ["1HWeapon"] = { + ["Sceptre"] = { ["max"] = 40, ["min"] = 40, }, ["Staff"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["Wand"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3742865955", - ["text"] = "Minions deal #% increased Damage with Command Skills", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3742865955", + ["text"] = "Minions deal #% increased Damage with Command Skills", + ["type"] = "augment", + }, + }, ["3759663284"] = { -<<<<<<< HEAD -<<<<<<< HEAD - ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, -======= - ["2HWeapon"] = { -======= ["Bow"] = { ->>>>>>> 62bfc4a7b (Fix weight generation for radius jewels again) ["max"] = 20, ["min"] = 20, }, ->>>>>>> 44955925b (Defer loading of trade stat data and fix tests) ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "augment", + }, + }, ["3801067695"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Focus"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3801067695", - ["text"] = "#% reduced effect of Shock on you", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3801067695", + ["text"] = "#% reduced effect of Shock on you", + ["type"] = "augment", + }, + }, ["3824372849"] = { ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3824372849", - ["text"] = "#% increased Curse Duration", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "augment", + }, + }, ["3850614073"] = { - ["1HWeapon"] = { + ["Sceptre"] = { ["max"] = 8, ["min"] = 8, }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3850614073", - ["text"] = "Allies in your Presence have #% to all Elemental Resistances", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["3855016469"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["Shield"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "augment", + }, + }, ["387439868"] = { ["1HMace"] = { ["max"] = 30, @@ -37192,36 +38030,25 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "augment", + }, + }, ["3885405204"] = { -<<<<<<< HEAD -<<<<<<< HEAD - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, -======= - ["2HWeapon"] = { -======= ["Bow"] = { ->>>>>>> 62bfc4a7b (Fix weight generation for radius jewels again) ["max"] = 1, ["min"] = 1, }, ->>>>>>> 44955925b (Defer loading of trade stat data and fix tests) ["specialCaseData"] = { ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "rune.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "augment", + }, + }, ["3885634897"] = { ["1HMace"] = { ["max"] = 15, @@ -37270,38 +38097,38 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3885634897", - ["text"] = "#% chance to Poison on Hit with this weapon", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "augment", + }, + }, ["3897831687"] = { ["Gloves"] = { - ["max"] = 40, - ["min"] = 40, - }, + ["max"] = 40, + ["min"] = 40, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3897831687", - ["text"] = "#% of Armour also applies to Fire Damage", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_3897831687", + ["text"] = "#% of Armour also applies to Fire Damage", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["3903510399"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 25, - }, + ["max"] = 25, + ["min"] = 25, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3903510399", - ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3903510399", + ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", + ["type"] = "augment", + }, + }, ["3917489142"] = { ["Chest"] = { ["max"] = 5, @@ -37310,24 +38137,24 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "augment", + }, + }, ["3973629633"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_3973629633", - ["text"] = "#% increased Withered Magnitude", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "augment", + }, + }, ["3981240776"] = { ["1HMace"] = { ["max"] = 15, @@ -37376,91 +38203,91 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["3984865854"] = { - ["1HWeapon"] = { + ["Sceptre"] = { ["max"] = 10, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3984865854", - ["text"] = "#% increased Spirit", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "augment", + }, + }, ["4010677958"] = { - ["1HWeapon"] = { + ["Sceptre"] = { ["max"] = 8, ["min"] = 8, }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "augment", + }, + }, ["4064396395"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Claw"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Flail"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Spear"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_4064396395", - ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "augment", + }, + }, ["4080418644"] = { ["1HMace"] = { ["max"] = 10, @@ -37541,12 +38368,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["4095671657"] = { ["Gloves"] = { ["max"] = 1, @@ -37555,29 +38382,29 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["416040624"] = { ["Staff"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["Wand"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["max"] = 14, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_416040624", - ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "augment", + }, + }, ["4220027924"] = { ["Boots"] = { ["max"] = 14, @@ -37606,12 +38433,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["4236566306"] = { ["1HMace"] = { ["max"] = 10, @@ -37660,51 +38487,50 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "augment", + }, + }, ["426207520"] = { ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["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", - }, - }, + ["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", + }, + }, ["4282982513"] = { ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { ["id"] = "rune.stat_4282982513", - ["text"] = "Increases and Reductions to Movement Speed also - apply to Energy Shield Recharge Rate", + ["text"] = "Increases and Reductions to Movement Speed also apply to Energy Shield Recharge Rate", ["type"] = "augment", }, }, ["458438597"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "augment", + }, + }, ["473429811"] = { ["1HMace"] = { ["max"] = 30, @@ -37753,251 +38579,251 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_473429811", - ["text"] = "#% increased Freeze Buildup", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "augment", + }, + }, ["554899692"] = { ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_554899692", - ["text"] = "# Charm Slot (Global)", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_554899692", + ["text"] = "# Charm Slot (Global)", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["55876295"] = { ["1HMace"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["1HWeapon"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["2HMace"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["2HWeapon"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["Bow"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["Claw"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["Crossbow"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["Flail"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["Quarterstaff"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["Spear"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["Talisman"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_55876295", - ["text"] = "Leeches #% of Physical Damage as Life", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "augment", + }, + }, ["594547430"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_594547430", - ["text"] = "Remove a Damaging Ailment when you use a Command Skill", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_594547430", + ["text"] = "Remove a Damaging Ailment when you use a Command Skill", + ["type"] = "augment", + }, + }, ["624954515"] = { ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "augment", - }, - }, + }, + ["tradeMod"] = { + ["id"] = "rune.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "augment", + }, + }, ["649025131"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_649025131", - ["text"] = "#% increased Movement Speed when on Low Life", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_649025131", + ["text"] = "#% increased Movement Speed when on Low Life", + ["type"] = "augment", + }, + }, ["669069897"] = { ["1HMace"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, + ["max"] = 2.5, + ["min"] = 1.5, + }, ["1HWeapon"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, + ["max"] = 2.5, + ["min"] = 1.5, + }, ["2HMace"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, + ["max"] = 2.5, + ["min"] = 1.5, + }, ["2HWeapon"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, + ["max"] = 2.5, + ["min"] = 1.5, + }, ["Bow"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, + ["max"] = 2.5, + ["min"] = 1.5, + }, ["Claw"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, + ["max"] = 2.5, + ["min"] = 1.5, + }, ["Crossbow"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, + ["max"] = 2.5, + ["min"] = 1.5, + }, ["Flail"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, + ["max"] = 2.5, + ["min"] = 1.5, + }, ["Quarterstaff"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, + ["max"] = 2.5, + ["min"] = 1.5, + }, ["Spear"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, + ["max"] = 2.5, + ["min"] = 1.5, + }, ["Talisman"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, + ["max"] = 2.5, + ["min"] = 1.5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_669069897", - ["text"] = "Leeches #% of Physical Damage as Mana", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "augment", + }, + }, ["681332047"] = { ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, - }, + ["max"] = 8, + ["min"] = 8, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "augment", + }, + }, ["687156079"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["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, - }, + ["id"] = "rune.stat_687156079", + ["text"] = "# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["691932474"] = { ["1HMace"] = { - ["max"] = 110, - ["min"] = 50, - }, + ["max"] = 110, + ["min"] = 50, + }, ["1HWeapon"] = { - ["max"] = 110, - ["min"] = 50, - }, + ["max"] = 110, + ["min"] = 50, + }, ["2HMace"] = { - ["max"] = 110, - ["min"] = 50, - }, + ["max"] = 110, + ["min"] = 50, + }, ["2HWeapon"] = { - ["max"] = 110, - ["min"] = 50, - }, + ["max"] = 110, + ["min"] = 50, + }, ["Bow"] = { - ["max"] = 110, - ["min"] = 50, - }, + ["max"] = 110, + ["min"] = 50, + }, ["Claw"] = { - ["max"] = 110, - ["min"] = 50, - }, + ["max"] = 110, + ["min"] = 50, + }, ["Crossbow"] = { - ["max"] = 110, - ["min"] = 50, - }, + ["max"] = 110, + ["min"] = 50, + }, ["Flail"] = { - ["max"] = 110, - ["min"] = 50, - }, + ["max"] = 110, + ["min"] = 50, + }, ["Quarterstaff"] = { - ["max"] = 110, - ["min"] = 50, - }, + ["max"] = 110, + ["min"] = 50, + }, ["Spear"] = { - ["max"] = 110, - ["min"] = 50, - }, + ["max"] = 110, + ["min"] = 50, + }, ["Talisman"] = { - ["max"] = 110, - ["min"] = 50, - }, + ["max"] = 110, + ["min"] = 50, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_691932474", - ["text"] = "# to Accuracy Rating (Local)", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["709508406"] = { ["1HMace"] = { ["max"] = 28.5, @@ -38046,72 +38872,72 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_709508406", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "augment", + }, + }, ["731403740"] = { ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Bow"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Claw"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Flail"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Spear"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Staff"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["Wand"] = { - ["max"] = 5, - ["min"] = 5, - }, + ["max"] = 5, + ["min"] = 5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_731403740", - ["text"] = "Gain #% of Damage as Extra Damage of all Elements", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_731403740", + ["text"] = "Gain #% of Damage as Extra Damage of all Elements", + ["type"] = "augment", + }, + }, ["737908626"] = { ["Staff"] = { ["max"] = 24, @@ -38124,70 +38950,70 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "augment", + }, + }, ["757050353"] = { ["Boots"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, + ["max"] = 50.5, + ["min"] = 50.5, + }, ["Chest"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, + ["max"] = 50.5, + ["min"] = 50.5, + }, ["Focus"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, + ["max"] = 50.5, + ["min"] = 50.5, + }, ["Gloves"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, + ["max"] = 50.5, + ["min"] = 50.5, + }, ["Helmet"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, + ["max"] = 50.5, + ["min"] = 50.5, + }, ["Shield"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, + ["max"] = 50.5, + ["min"] = 50.5, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_757050353", - ["text"] = "# to # Lightning Thorns damage", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_757050353", + ["text"] = "# to # Lightning Thorns damage", + ["type"] = "augment", + }, + }, ["770672621"] = { ["Helmet"] = { - ["max"] = 12, - ["min"] = 12, - }, + ["max"] = 12, + ["min"] = 12, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "augment", + }, + }, ["782230869"] = { ["Gloves"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30, + ["min"] = 30, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_782230869", - ["text"] = "#% increased Magnitude of Non-Damaging Ailments you inflict", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_782230869", + ["text"] = "#% increased Magnitude of Non-Damaging Ailments you inflict", + ["type"] = "augment", + }, + }, ["789117908"] = { ["Boots"] = { ["max"] = 18, @@ -38224,11 +39050,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "augment", + }, + }, ["791928121"] = { ["1HMace"] = { ["max"] = 30, @@ -38277,11 +39103,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "augment", + }, + }, ["836936635"] = { ["Boots"] = { ["max"] = 0.35, @@ -38310,91 +39136,91 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "augment", + }, + }, ["889552744"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Focus"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["Shield"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["max"] = 10, + ["min"] = 10, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_889552744", - ["text"] = "Minions take #% of Physical Damage as Lightning Damage", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_889552744", + ["text"] = "Minions take #% of Physical Damage as Lightning Damage", + ["type"] = "augment", + }, + }, ["915264788"] = { ["Helmet"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["max"] = 50, + ["min"] = 50, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_915264788", - ["text"] = "#% increased Thorns Critical Hit Chance", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_915264788", + ["text"] = "#% increased Thorns Critical Hit Chance", + ["type"] = "augment", + }, + }, ["915769802"] = { ["Boots"] = { - ["max"] = 80, - ["min"] = 40, - }, + ["max"] = 80, + ["min"] = 40, + }, ["Chest"] = { - ["max"] = 80, - ["min"] = 40, - }, + ["max"] = 80, + ["min"] = 40, + }, ["Focus"] = { - ["max"] = 80, - ["min"] = 40, - }, + ["max"] = 80, + ["min"] = 40, + }, ["Gloves"] = { - ["max"] = 80, - ["min"] = 40, - }, + ["max"] = 80, + ["min"] = 40, + }, ["Helmet"] = { - ["max"] = 80, - ["min"] = 40, - }, + ["max"] = 80, + ["min"] = 40, + }, ["Shield"] = { - ["max"] = 80, - ["min"] = 40, - }, + ["max"] = 80, + ["min"] = 40, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, + ["id"] = "rune.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["924253255"] = { ["Boots"] = { ["max"] = -15, @@ -38404,24 +39230,24 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "augment", + }, + }, ["935518591"] = { ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_935518591", - ["text"] = "Critical Hit chance is Lucky against Parried enemies", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_935518591", + ["text"] = "Critical Hit chance is Lucky against Parried enemies", + ["type"] = "augment", + }, + }, ["970213192"] = { ["1HMace"] = { ["max"] = 8, @@ -38470,23 +39296,23 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_970213192", - ["text"] = "#% increased Skill Speed", - ["type"] = "augment", - }, - }, + ["id"] = "rune.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "augment", + }, + }, ["983749596"] = { ["Chest"] = { - ["max"] = 3, - ["min"] = 3, - }, + ["max"] = 3, + ["min"] = 3, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "rune.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "augment", - }, - }, - }, + ["id"] = "rune.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "augment", + }, + }, + }, } \ No newline at end of file From f8fc94651401d795958cae877cd86a56b58e3256 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 1 Jun 2026 17:05:36 +0300 Subject: [PATCH 07/11] Download trade site stats automatically and convert it to Lua --- src/Classes/TradeHelpers.lua | 6 +- src/Classes/TradeQueryGenerator.lua | 21 + src/Data/QueryMods.lua | 32297 ++++++++---------------- src/Data/TradeSiteStats.lua | 34947 ++++++++++++++++++++++++++ src/Data/trade_site_stats.json | 32204 ------------------------ 5 files changed, 45365 insertions(+), 54110 deletions(-) create mode 100644 src/Data/TradeSiteStats.lua delete mode 100644 src/Data/trade_site_stats.json diff --git a/src/Classes/TradeHelpers.lua b/src/Classes/TradeHelpers.lua index 61591d95c..9c098dab0 100644 --- a/src/Classes/TradeHelpers.lua +++ b/src/Classes/TradeHelpers.lua @@ -37,11 +37,7 @@ local _tradeStats ---@return table? tradeStats function M.getTradeStats() if _tradeStats then return _tradeStats end - local file = io.open("./Data/trade_site_stats.json") - if not file then return nil end - local fileContents = file:read("*a") - local parsed = dkjson.decode(fileContents) - _tradeStats = parsed and parsed.result + _tradeStats = LoadModule("Data/TradeSiteStats") return _tradeStats end diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index aab46e523..3addd5779 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -360,6 +360,27 @@ 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 + f:write("return " .. stringify(body.result)) + f:close() + end + ) + self.modData = { ["Explicit"] = { }, ["Implicit"] = { }, diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index 7896a9de7..3300a46d4 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -18,6 +18,15 @@ return { ["type"] = "enchant", }, }, + ["10169"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|10169", + ["text"] = "Allocates Unfettered", + ["type"] = "enchant", + }, + }, ["10265"] = { ["specialCaseData"] = { }, @@ -396,6 +405,15 @@ return { ["type"] = "enchant", }, }, + ["13489"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|13489", + ["text"] = "Allocates Unbreakable", + ["type"] = "enchant", + }, + }, ["13515"] = { ["specialCaseData"] = { }, @@ -1098,6 +1116,15 @@ return { ["type"] = "enchant", }, }, + ["1861"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|1861", + ["text"] = "Allocates Knight of Tarcus", + ["type"] = "enchant", + }, + }, ["18959"] = { ["specialCaseData"] = { }, @@ -1296,6 +1323,15 @@ return { ["type"] = "enchant", }, }, + ["20495"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|20495", + ["text"] = "Allocates Dark Entropy", + ["type"] = "enchant", + }, + }, ["20511"] = { ["specialCaseData"] = { }, @@ -2542,28 +2578,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_2954116742|31364", - ["text"] = "Allocates Primal Protection", - ["type"] = "enchant", - }, - }, - ["30562"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|30562", - ["text"] = "Allocates Inner Faith", - ["type"] = "crafted", - }, - }, -======= ["id"] = "enchant.stat_2954116742|31364", ["text"] = "Allocates Primal Protection", ["type"] = "enchant", }, }, ->>>>>>> ce20414fc (regen data files) ["31373"] = { ["specialCaseData"] = { }, @@ -3576,28 +3595,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_2954116742|38479", - ["text"] = "Allocates Close Confines", - ["type"] = "enchant", - }, - }, - ["37742"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|37742", - ["text"] = "Allocates Manifold Method", - ["type"] = "crafted", - }, - }, -======= ["id"] = "enchant.stat_2954116742|38479", ["text"] = "Allocates Close Confines", ["type"] = "enchant", }, }, ->>>>>>> ce20414fc (regen data files) ["38532"] = { ["specialCaseData"] = { }, @@ -3665,28 +3667,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_2954116742|38895", - ["text"] = "Allocates Crystal Elixir", - ["type"] = "enchant", - }, - }, - ["38537"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|38537", - ["text"] = "Allocates Heartstopping", - ["type"] = "crafted", - }, - }, -======= ["id"] = "enchant.stat_2954116742|38895", ["text"] = "Allocates Crystal Elixir", ["type"] = "enchant", }, }, ->>>>>>> ce20414fc (regen data files) ["3894"] = { ["specialCaseData"] = { }, @@ -3948,6 +3933,15 @@ return { ["type"] = "enchant", }, }, + ["4091"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|4091", + ["text"] = "Allocates Left Ventricle", + ["type"] = "enchant", + }, + }, ["40985"] = { ["specialCaseData"] = { }, @@ -5586,6 +5580,15 @@ return { ["type"] = "enchant", }, }, + ["52568"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|52568", + ["text"] = "Allocates Bond of the Owl", + ["type"] = "enchant", + }, + }, ["5257"] = { ["specialCaseData"] = { }, @@ -5617,28 +5620,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_2954116742|52764", - ["text"] = "Allocates Mystical Rage", - ["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", }, }, ->>>>>>> ce20414fc (regen data files) ["52803"] = { ["specialCaseData"] = { }, @@ -6210,28 +6196,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_2954116742|56776", - ["text"] = "Allocates Cooked", - ["type"] = "enchant", - }, - }, - ["56616"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|56616", - ["text"] = "Allocates Desperate Times", - ["type"] = "crafted", - }, - }, -======= ["id"] = "enchant.stat_2954116742|56776", ["text"] = "Allocates Cooked", ["type"] = "enchant", }, }, ->>>>>>> ce20414fc (regen data files) ["56806"] = { ["specialCaseData"] = { }, @@ -6632,28 +6601,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_2954116742|59938", - ["text"] = "Allocates Against the Elements", - ["type"] = "enchant", - }, - }, - ["57785"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|57785", - ["text"] = "Allocates Trained Turrets", - ["type"] = "crafted", - }, - }, -======= ["id"] = "enchant.stat_2954116742|59938", ["text"] = "Allocates Against the Elements", ["type"] = "enchant", }, }, ->>>>>>> ce20414fc (regen data files) ["60034"] = { ["specialCaseData"] = { }, @@ -6780,6 +6732,15 @@ return { ["type"] = "enchant", }, }, + ["61309"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2954116742|61309", + ["text"] = "Allocates Redblade Discipline", + ["type"] = "enchant", + }, + }, ["6133"] = { ["specialCaseData"] = { }, @@ -6820,37 +6781,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_2954116742|61444", - ["text"] = "Allocates Wasting Casts", - ["type"] = "enchant", - }, - }, - ["61493"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2954116742|61493", - ["text"] = "Allocates Austerity Measures", - ["type"] = "enchant", - }, - }, - ["61112"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|61112", - ["text"] = "Allocates Roll and Strike", - ["type"] = "crafted", - }, - }, -======= ["id"] = "enchant.stat_2954116742|61444", ["text"] = "Allocates Wasting Casts", ["type"] = "enchant", }, }, ->>>>>>> ce20414fc (regen data files) ["61601"] = { ["specialCaseData"] = { }, @@ -7278,28 +7213,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_2954116742|65193", - ["text"] = "Allocates Viciousness", - ["type"] = "enchant", - }, - }, - ["64050"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|64050", - ["text"] = "Allocates Marathon Runner", - ["type"] = "crafted", - }, - }, -======= ["id"] = "enchant.stat_2954116742|65193", ["text"] = "Allocates Viciousness", ["type"] = "enchant", }, }, ->>>>>>> ce20414fc (regen data files) ["65204"] = { ["specialCaseData"] = { }, @@ -7511,28 +7429,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_2954116742|7782", - ["text"] = "Allocates Rupturing Pins", - ["type"] = "enchant", - }, - }, - ["65256"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|65256", - ["text"] = "Allocates Widespread Coverage", - ["type"] = "crafted", - }, - }, -======= ["id"] = "enchant.stat_2954116742|7782", ["text"] = "Allocates Rupturing Pins", ["type"] = "enchant", }, }, ->>>>>>> ce20414fc (regen data files) ["7809"] = { ["specialCaseData"] = { }, @@ -7735,31 +7636,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_2954116742|9226", - ["text"] = "Allocates Mental Perseverance", - ["type"] = "enchant", - }, - }, -<<<<<<< HEAD - ["9290"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2954116742|9290", - ["text"] = "Allocates Rusted Pins", - ["type"] = "crafted", - }, - }, - ["9535"] = { -======= -======= ["id"] = "enchant.stat_2954116742|9226", ["text"] = "Allocates Mental Perseverance", ["type"] = "enchant", }, }, ->>>>>>> ce20414fc (regen data files) ["9227"] = { ["specialCaseData"] = { }, @@ -7770,7 +7651,6 @@ return { }, }, ["9290"] = { ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["specialCaseData"] = { }, ["tradeMod"] = { @@ -7918,12618 +7798,205 @@ return { ["Corrupted"] = { ["1004011302"] = { ["specialCaseData"] = { -<<<<<<< HEAD - }, + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + }, + ["1011760251"] = { + ["Boots"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, ["tradeMod"] = { - ["id"] = "crafted.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "crafted", - }, - }, + ["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"] = "crafted.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "crafted", - }, - }, - ["1316278494"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "crafted", - }, - }, - ["1444556985"] = { + ["id"] = "enchant.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "enchant", + }, + }, + ["1315743832"] = { ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["max"] = 50, + ["min"] = 40, + }, + ["Shield"] = { + ["max"] = 50, + ["min"] = 40, + }, ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "crafted", - }, - }, - ["1509134228"] = { - ["1HMace"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["id"] = "enchant.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "enchant", + }, + }, + ["1316278494"] = { ["specialCaseData"] = { - }, + }, ["tradeMod"] = { - ["id"] = "crafted.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "crafted", - }, - }, - ["1671376347"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Belt"] = { - ["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, - }, - ["1798257884"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Sceptre"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "crafted", - }, - }, - ["1999113824"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "crafted", - }, - }, - ["210067635"] = { - ["1HMace"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["2HMace"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["Bow"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["Crossbow"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["Flail"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["Quarterstaff"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["Spear"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["Talisman"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", - ["type"] = "crafted", - }, - }, - ["2106365538"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "crafted", - }, - }, - ["2162097452"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, - ["2223678961"] = { - ["1HMace"] = { - ["max"] = 14.5, - ["min"] = 9.5, - }, - ["1HWeapon"] = { - ["max"] = 14.5, - ["min"] = 9.5, - }, - ["2HMace"] = { - ["max"] = 20.5, - ["min"] = 13.5, - }, - ["2HWeapon"] = { - ["max"] = 20.5, - ["min"] = 9.5, - }, - ["Bow"] = { - ["max"] = 14.5, - ["min"] = 9.5, - }, - ["Crossbow"] = { - ["max"] = 20.5, - ["min"] = 13.5, - }, - ["Flail"] = { - ["max"] = 14.5, - ["min"] = 9.5, - }, - ["Quarterstaff"] = { - ["max"] = 20.5, - ["min"] = 13.5, - }, - ["Spear"] = { - ["max"] = 14.5, - ["min"] = 9.5, - }, - ["Talisman"] = { - ["max"] = 20.5, - ["min"] = 13.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "crafted", - }, - }, - ["2250533757"] = { - ["Boots"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "crafted", - }, - }, - ["2451402625"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "crafted", - }, - }, - ["2482852589"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "crafted", - }, - }, - ["280731498"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "crafted", - }, - }, - ["2866361420"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "crafted", - }, - }, - ["2891184298"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Wand"] = { - ["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"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["Focus"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "crafted", - }, - }, - ["3175163625"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "crafted", - }, - }, - ["3261801346"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, - ["328541901"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, - ["3299347043"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, - ["3321629045"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "crafted", - }, - }, - ["3336890334"] = { - ["1HMace"] = { - ["max"] = 22.5, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 22.5, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 32, - ["min"] = 21, - }, - ["2HWeapon"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 22.5, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 32, - ["min"] = 21, - }, - ["Flail"] = { - ["max"] = 22.5, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 32, - ["min"] = 21, - }, - ["Spear"] = { - ["max"] = 22.5, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 32, - ["min"] = 21, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "crafted", - }, - }, - ["3372524247"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Belt"] = { - ["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, - }, - ["3377888098"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "crafted", - }, - }, - ["3556824919"] = { - ["Quiver"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Ring"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", - ["type"] = "crafted", - }, - }, - ["3917489142"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "crafted", - }, - }, - ["3981240776"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, - ["4015621042"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Focus"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_4015621042", - ["text"] = "#% increased Energy Shield", - ["type"] = "crafted", - }, - }, - ["4080418644"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, - ["4095671657"] = { - ["Belt"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "crafted", - }, - ["usePositiveSign"] = true, - }, - ["4220027924"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Belt"] = { - ["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, - }, - ["44972811"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "crafted", - }, - }, - ["709508406"] = { - ["1HMace"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["2HMace"] = { - ["max"] = 25.5, - ["min"] = 17, - }, - ["2HWeapon"] = { - ["max"] = 25.5, - ["min"] = 12, - }, - ["Bow"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Crossbow"] = { - ["max"] = 25.5, - ["min"] = 17, - }, - ["Flail"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Quarterstaff"] = { - ["max"] = 25.5, - ["min"] = 17, - }, - ["Spear"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Talisman"] = { - ["max"] = 25.5, - ["min"] = 17, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_709508406", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "crafted", - }, - }, - ["737908626"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "crafted", - }, - }, - ["789117908"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "crafted", - }, - }, - ["803737631"] = { - ["Helmet"] = { - ["max"] = 100, - ["min"] = 50, - }, - ["Quiver"] = { - ["max"] = 100, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "crafted.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "crafted", - }, - ["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", - }, - }, - }, - ["Enchant"] = { - }, - ["Explicit"] = { - ["1002362373"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1004011302"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["1007380041"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1007380041", - ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", - ["type"] = "explicit", - }, - }, - ["1011760251"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["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", - }, - }, - ["101878827"] = { - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 36, - }, - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Sceptre"] = { - ["max"] = 80, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "explicit", - }, - }, - ["1022759479"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1030153674"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1030153674", - ["text"] = "Recover #% of maximum Mana on Kill", - ["type"] = "explicit", - }, - }, - ["1037193709"] = { - ["1HMace"] = { - ["max"] = 102, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 102, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 156.5, - ["min"] = 3, - }, - ["2HWeapon"] = { - ["max"] = 156.5, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 102, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 156.5, - ["min"] = 3, - }, - ["Flail"] = { - ["max"] = 102, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 156.5, - ["min"] = 3, - }, - ["Spear"] = { - ["max"] = 102, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 156.5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "explicit", - }, - }, - ["1039268420"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1049080093"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1049080093", - ["text"] = "Attacks Gain #% of Damage as Extra Fire Damage", - ["type"] = "explicit", - }, - }, - ["1050105434"] = { - ["1HWeapon"] = { - ["max"] = 164, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 328, - ["min"] = 20, - }, - ["Amulet"] = { - ["max"] = 189, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 124, - ["min"] = 10, - }, - ["Boots"] = { - ["max"] = 124, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 164, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 124, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 149, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 179, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 164, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 328, - ["min"] = 20, - }, - ["Wand"] = { - ["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, - }, - ["1060572482"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1060572482", - ["text"] = "#% increased Effect of Small Passive Skills in Radius", - ["type"] = "explicit", - }, - }, - ["1062208444"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", - ["type"] = "explicit", - }, - }, - ["1062710370"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1062710370", - ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", - ["type"] = "explicit", - }, - }, - ["1087108135"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1087108135", - ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", - ["type"] = "explicit", - }, - }, - ["1087531620"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1104825894"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1104825894", - ["text"] = "#% faster Curse Activation", - ["type"] = "explicit", - }, - }, - ["111835965"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1135928777"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1135928777", - ["text"] = "#% increased Attack Speed with Crossbows", - ["type"] = "explicit", - }, - }, - ["1137305356"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1137305356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["1145481685"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1160637284"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1160637284", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", - ["type"] = "explicit", - }, - }, - ["1165163804"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1165163804", - ["text"] = "#% increased Attack Speed with Spears", - ["type"] = "explicit", - }, - }, - ["1166140625"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1181419800"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1181419800", - ["text"] = "#% increased Damage with Maces", - ["type"] = "explicit", - }, - }, - ["1181501418"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1181501418", - ["text"] = "# to Maximum Rage", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["1185341308"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1185341308", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", - ["type"] = "explicit", - }, - }, - ["1200678966"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1200678966", - ["text"] = "#% increased bonuses gained from Equipped Quiver", - ["type"] = "explicit", - }, - }, - ["1202301673"] = { - ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Quiver"] = { - ["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, - }, - ["1238227257"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", - ["type"] = "explicit", - }, - }, - ["124131830"] = { - ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 2, - }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Focus"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Staff"] = { - ["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, - }, - ["1241625305"] = { - ["Quiver"] = { - ["max"] = 59, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1241625305", - ["text"] = "#% increased Damage with Bow Skills", - ["type"] = "explicit", - }, - }, - ["124859000"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", - ["type"] = "explicit", - }, - }, - ["1250712710"] = { - ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, - ["1261982764"] = { - ["LifeFlask"] = { - ["max"] = 100, - ["min"] = 61, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1261982764", - ["text"] = "#% increased Life Recovered", - ["type"] = "explicit", - }, - }, - ["1263695895"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Wand"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1266413530"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1266413530", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", - ["type"] = "explicit", - }, - }, - ["127081978"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_127081978", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", - ["type"] = "explicit", - }, - }, - ["1285594161"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["1303248024"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1303248024", - ["text"] = "#% increased Magnitude of Ailments you inflict", - ["type"] = "explicit", - }, - }, - ["1309799717"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1309799717", - ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["1310194496"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "explicit", - }, - }, - ["1315743832"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1315743832", - ["text"] = "#% increased Thorns damage", - ["type"] = "explicit", - }, - }, - ["1316278494"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "explicit", - }, - }, - ["1320662475"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1321104829"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1337740333"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["1352561456"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1368271171"] = { - ["1HMace"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Quiver"] = { - ["max"] = 27, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 27, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Staff"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Wand"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", - ["type"] = "explicit", - }, - }, - ["1379411836"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 13, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1379411836", - ["text"] = "# to all Attributes", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["138421180"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Belt"] = { - ["max"] = 33, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", - ["type"] = "explicit", - }, - }, - ["139889694"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_139889694", - ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", - ["type"] = "explicit", - }, - }, - ["1405298142"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1405298142", - ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", - ["type"] = "explicit", - }, - }, - ["1412217137"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", - ["type"] = "explicit", - }, - }, - ["1416406066"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1416406066", - ["text"] = "#% increased Spirit", - ["type"] = "explicit", - }, - }, - ["1417267954"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1417267954", - ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", - ["type"] = "explicit", - }, - }, - ["1423639565"] = { - ["AnyJewel"] = { - ["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, - }, - ["1426522529"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1426522529", - ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", - ["type"] = "explicit", - }, - }, - ["1432756708"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1444556985"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1459321413"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - ["type"] = "explicit", - }, - }, - ["147764878"] = { - ["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", - }, - }, - ["1484026495"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1485480327"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["1493485657"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1493485657", - ["text"] = "Spells have #% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["1494950893"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1494950893", - ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["1495814176"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1495814176", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", - ["type"] = "explicit", - }, - }, - ["1505023559"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1505023559", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", - ["type"] = "explicit", - }, - }, - ["1509134228"] = { - ["1HMace"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["Spear"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1514844108"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1514844108", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", - ["type"] = "explicit", - }, - }, - ["1526933524"] = { - ["LifeFlask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["ManaFlask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1526933524", - ["text"] = "Instant Recovery", - ["type"] = "explicit", - }, - }, - ["153777645"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Curses", - ["type"] = "explicit", - }, - }, - ["1544773869"] = { - ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 4, - }, - ["Crossbow"] = { - ["max"] = 40, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1544773869", - ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", - ["type"] = "explicit", - }, - }, - ["1545858329"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["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, - }, - ["1552666713"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1569101201"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1569101201", - ["text"] = "Empowered Attacks deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["1569159338"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1569159338", - ["text"] = "#% increased Parry Damage", - ["type"] = "explicit", - }, - }, - ["1570501432"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1570501432", - ["text"] = "Leech Life #% faster", - ["type"] = "explicit", - }, - }, - ["1570770415"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", - ["type"] = "explicit", - }, - }, - ["1573130764"] = { - ["Gloves"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["Quiver"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", - ["type"] = "explicit", - }, - }, - ["1574590649"] = { - ["1HWeapon"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", - ["type"] = "explicit", - }, - }, - ["1585769763"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1585769763", - ["text"] = "#% increased Blind Effect", - ["type"] = "explicit", - }, - }, - ["1589917703"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["1590846356"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1594812856", - ["text"] = "#% increased Damage with Warcries", - ["type"] = "explicit", - }, - }, - ["1600707273"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["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, - }, - ["1602294220"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1602294220", - ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", - ["type"] = "explicit", - }, - }, - ["1604736568"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["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", - }, - }, - ["1653682082"] = { - ["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", - }, - }, - ["1671376347"] = { - ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["1691403182"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1697447343"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1697447343", - ["text"] = "#% increased Freeze Buildup with Quarterstaves", - ["type"] = "explicit", - }, - }, - ["1697951953"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1697951953", - ["text"] = "#% increased Hazard Damage", - ["type"] = "explicit", - }, - }, - ["169946467"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_169946467", - ["text"] = "#% increased Accuracy Rating with Bows", - ["type"] = "explicit", - }, - }, - ["1714971114"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["173226756"] = { - ["LifeFlask"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["ManaFlask"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", - ["type"] = "explicit", - }, - }, - ["1742651309"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 26, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1754445556"] = { - ["Gloves"] = { - ["max"] = 37.5, - ["min"] = 2.5, - }, - ["Quiver"] = { - ["max"] = 37.5, - ["min"] = 2.5, - }, - ["Ring"] = { - ["max"] = 37.5, - ["min"] = 2.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1772247089"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1772247089", - ["text"] = "#% increased chance to inflict Ailments", - ["type"] = "explicit", - }, - }, - ["1773308808"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1773308808", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", - ["type"] = "explicit", - }, - }, - ["1776411443"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1777421941"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1777421941", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", - ["type"] = "explicit", - }, - }, - ["1782086450"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "explicit", - }, - }, - ["179541474"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["1798257884"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["Sceptre"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["1800303440"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1811130680"] = { - ["ManaFlask"] = { - ["max"] = 100, - ["min"] = 61, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["1829102168"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1829102168", - ["text"] = "#% increased Duration of Damaging Ailments on Enemies", - ["type"] = "explicit", - }, - }, - ["1834658952"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "explicit", - }, - }, - ["1839076647"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1846980580"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1846980580", - ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", - ["type"] = "explicit", - }, - }, - ["1852184471"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1852184471", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", - ["type"] = "explicit", - }, - }, - ["1852872083"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1852872083", - ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", - ["type"] = "explicit", - }, - }, - ["1854213750"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1869147066"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1874553720"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1874553720", - ["text"] = "#% reduced Chill Duration on you", - ["type"] = "explicit", - }, - }, - ["1881230714"] = { - ["Bow"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Dagger"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["One Hand Axe"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["One Hand Mace"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["One Hand Sword"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Two Hand Axe"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Two Hand Mace"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Two Hand Sword"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1881230714", - ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", - ["type"] = "explicit", - }, - }, - ["1892122971"] = { - ["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", - }, - }, - ["1896066427"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1896066427", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", - ["type"] = "explicit", - }, - }, - ["1911237468"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1911237468", - ["text"] = "#% increased Stun Threshold while Parrying", - ["type"] = "explicit", - }, - }, - ["1940865751"] = { - ["1HMace"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, - ["1HWeapon"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, - ["2HMace"] = { - ["max"] = 74.5, - ["min"] = 3.5, - }, - ["2HWeapon"] = { - ["max"] = 74.5, - ["min"] = 2.5, - }, - ["Bow"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, - ["Crossbow"] = { - ["max"] = 74.5, - ["min"] = 3.5, - }, - ["Flail"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, - ["Quarterstaff"] = { - ["max"] = 74.5, - ["min"] = 3.5, - }, - ["Spear"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, - ["Talisman"] = { - ["max"] = 74.5, - ["min"] = 3.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage", - ["type"] = "explicit", - }, - }, - ["1944020877"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1967040409"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1967040409", - ["text"] = "Spell Skills have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["1967051901"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["1978899297"] = { - ["Shield"] = { - ["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, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["1994296038"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1994296038", - ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", - ["type"] = "explicit", - }, - }, - ["1998951374"] = { - ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", - ["type"] = "explicit", - }, - }, - ["1999113824"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 101, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "explicit", - }, - }, - ["2011656677"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "explicit", - }, - }, - ["2023107756"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["2056107438"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2056107438", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["2066964205"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2077117738"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2083058281"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2083058281", - ["text"] = "Enemies you Mark take #% increased Damage", - ["type"] = "explicit", - }, - }, - ["210067635"] = { - ["1HMace"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 19, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 19, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2103650854"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2103650854", - ["text"] = "#% increased effect of Arcane Surge on you", - ["type"] = "explicit", - }, - }, - ["2106365538"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", - }, - }, - ["21071013"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_21071013", - ["text"] = "Herald Skills deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["2107703111"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2107703111", - ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", - ["type"] = "explicit", - }, - }, - ["2108821127"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2108821127", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", - ["type"] = "explicit", - }, - }, - ["2112395885"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2112395885", - ["text"] = "#% increased amount of Life Leeched", - ["type"] = "explicit", - }, - }, - ["2118708619"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2131720304"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["2149603090"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2158617060"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2158617060", - ["text"] = "#% increased Archon Buff duration", - ["type"] = "explicit", - }, - }, - ["2160282525"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "explicit", - }, - }, - ["2162097452"] = { - ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Helmet"] = { - ["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, - }, - ["2174054121"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2194114101"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["Quiver"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2202308025"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2202308025", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", - ["type"] = "explicit", - }, - }, - ["221701169"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_221701169", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", - ["type"] = "explicit", - }, - }, - ["2222186378"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2231156303"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["2250533757"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 35, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "explicit", - }, - }, - ["2250681686"] = { - ["2HWeapon"] = { - ["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, - }, - ["2254480358"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["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, - }, - ["2256120736"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2256120736", - ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", - ["type"] = "explicit", - }, - }, - ["2272980012"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2301718443", - ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", - ["type"] = "explicit", - }, - }, - ["2319832234"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2319832234", - ["text"] = "#% of Damage Taken Recouped as Life, Mana and Energy Shield", - ["type"] = "explicit", - }, - }, - ["2320654813"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2320654813", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", - ["type"] = "explicit", - }, - }, - ["2321178454"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Quiver"] = { - ["max"] = 26, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "explicit", - }, - }, - ["2334956771"] = { - ["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", - }, - }, - ["2339757871"] = { - ["Boots"] = { - ["max"] = 19, - ["min"] = 16, - }, - ["Chest"] = { - ["max"] = 27, - ["min"] = 16, - }, - ["Focus"] = { - ["max"] = 27, - ["min"] = 16, - }, - ["Gloves"] = { - ["max"] = 19, - ["min"] = 16, - }, - ["Helmet"] = { - ["max"] = 19, - ["min"] = 16, - }, - ["Shield"] = { - ["max"] = 27, - ["min"] = 16, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "explicit", - }, - }, - ["234296660"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_234296660", - ["text"] = "Companions deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["2347036682"] = { - ["1HWeapon"] = { - ["max"] = 30.5, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 30.5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2347036682", - ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", - ["type"] = "explicit", - }, - }, - ["2353576063"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", - ["type"] = "explicit", - }, - }, - ["2359002191"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2359002191", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["2365392475"] = { - ["Charm"] = { - ["max"] = 350, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2365392475", - ["text"] = "Recover # Life when Used", - ["type"] = "explicit", - }, - }, - ["2374711847"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2392824305"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", - ["type"] = "explicit", - }, - }, - ["2416869319"] = { - ["LifeFlask"] = { - ["max"] = 80, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2416869319", - ["text"] = "Grants #% of Life Recovery to Minions", - ["type"] = "explicit", - }, - }, - ["2421151933"] = { - ["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", - }, - }, - ["2440073079"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2440073079", - ["text"] = "#% increased Damage while Shapeshifted", - ["type"] = "explicit", - }, - }, - ["2442527254"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2442527254", - ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", - ["type"] = "explicit", - }, - }, - ["2451402625"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2456523742"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2456523742", - ["text"] = "#% increased Critical Damage Bonus with Spears", - ["type"] = "explicit", - }, - }, - ["2463230181"] = { - ["2HWeapon"] = { - ["max"] = 200, - ["min"] = 25, - }, - ["Bow"] = { - ["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, - }, - ["2466785537"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2480498143"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2480498143", - ["text"] = "#% of Skill Mana Costs Converted to Life Costs", - ["type"] = "explicit", - }, - }, - ["2481353198"] = { - ["Shield"] = { - ["max"] = 30, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", - ["type"] = "explicit", - }, - }, - ["2482852589"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["2487305362"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2487305362", - ["text"] = "#% increased Magnitude of Poison you inflict", - ["type"] = "explicit", - }, - }, - ["2503377690"] = { - ["LifeFlask"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["ManaFlask"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2503377690", - ["text"] = "#% of Recovery applied Instantly", - ["type"] = "explicit", - }, - }, - ["2505884597"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", - ["type"] = "explicit", - }, - }, - ["2518900926"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2518900926", - ["text"] = "#% increased Damage with Plant Skills", - ["type"] = "explicit", - }, - }, - ["2523933828"] = { - ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, - ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2523933828", - ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", - ["type"] = "explicit", - }, - }, - ["2527686725"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", - ["type"] = "explicit", - }, - }, - ["2534359663"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2534359663", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["253641217"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_253641217", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", - ["type"] = "explicit", - }, - }, - ["2541588185"] = { - ["Charm"] = { - ["max"] = 40, - ["min"] = 16, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2541588185", - ["text"] = "#% increased Duration (Charm)", - ["type"] = "explicit", - }, - }, - ["2557965901"] = { - ["Gloves"] = { - ["max"] = 9.9, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 7.9, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2557965901", - ["text"] = "Leech #% of Physical Attack Damage as Life", - ["type"] = "explicit", - }, - }, - ["255840549"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2580617872"] = { - ["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, - }, - ["2582079000"] = { - ["specialCaseData"] = { - ["overrideModLinePlural"] = "+# Charm Slots", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2582079000", - ["text"] = "# Charm Slot", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["2594634307"] = { - ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, - ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2594634307", - ["text"] = "Mark Skills have #% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, - ["2610562860"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2637470878"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2637470878", - ["text"] = "#% increased Armour Break Duration", - ["type"] = "explicit", - }, - }, - ["2638756573"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2653231923"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2653231923", - ["text"] = "#% increased Mana Cost Efficiency of Spells", - ["type"] = "explicit", - }, - }, - ["2653955271"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "explicit", - }, - }, - ["266564538"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2675129731"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2675129731", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", - ["type"] = "explicit", - }, - }, - ["2676834156"] = { - ["Charm"] = { - ["max"] = 500, - ["min"] = 44, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2676834156", - ["text"] = "Also grants # Guard", - ["type"] = "explicit", - }, - }, - ["2690740379"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Talisman"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["2704905000"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", - ["type"] = "explicit", - }, - }, - ["2709646369"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2720982137"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2726713579"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 15, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 34, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 59, - ["min"] = 15, - }, - ["Wand"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_274716455", - ["text"] = "#% increased Critical Spell Damage Bonus", - ["type"] = "explicit", - }, - }, - ["2748665614"] = { - ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, - }, - ["Ring"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["2768835289"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2768835289", - ["text"] = "#% increased Spell Physical Damage", - ["type"] = "explicit", - }, - }, - ["2768899959"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2768899959", - ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["2770044702"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2770044702", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", - ["type"] = "explicit", - }, - }, - ["2797971005"] = { - ["Gloves"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "explicit", - }, - }, - ["280731498"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", - }, - }, - ["2809428780"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2809428780", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", - ["type"] = "explicit", - }, - }, - ["2822644689"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2822644689", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", - ["type"] = "explicit", - }, - }, - ["2839066308"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2839066308", - ["text"] = "#% increased amount of Mana Leeched", - ["type"] = "explicit", - }, - }, - ["2840989393"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", - ["type"] = "explicit", - }, - }, - ["2849546516"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["Sceptre"] = { - ["max"] = 37.5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2854751904", - ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", - ["type"] = "explicit", - }, - }, - ["2866361420"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, - ["2881298780"] = { - ["Belt"] = { - ["max"] = 185.5, - ["min"] = 2, - }, - ["Chest"] = { - ["max"] = 185.5, - ["min"] = 2, - }, - ["Shield"] = { - ["max"] = 185.5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2881298780", - ["text"] = "# to # Physical Thorns damage", - ["type"] = "explicit", - }, - }, - ["288364275"] = { - ["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", - }, - }, - ["2891184298"] = { - ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 9, - }, - ["2HWeapon"] = { - ["max"] = 52, - ["min"] = 14, - }, - ["Amulet"] = { - ["max"] = 28, - ["min"] = 9, - }, - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["Focus"] = { - ["max"] = 32, - ["min"] = 9, - }, - ["Ring"] = { - ["max"] = 24, - ["min"] = 9, - }, - ["Staff"] = { - ["max"] = 52, - ["min"] = 14, - }, - ["Wand"] = { - ["max"] = 35, - ["min"] = 9, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, - ["289128254"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["2901986750"] = { - ["Amulet"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["Ring"] = { - ["max"] = 16, - ["min"] = 3, - }, - ["Shield"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["2907381231"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2907381231", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", - ["type"] = "explicit", - }, - }, - ["2912416697"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2912416697", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", - ["type"] = "explicit", - }, - }, - ["2923486259"] = { - ["Amulet"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Belt"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Boots"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Chest"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Focus"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Gloves"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Helmet"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Shield"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["293638271"] = { - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["Wand"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["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", - }, - }, - ["2954360902"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2954360902", - ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["2957407601"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2957407601", - ["text"] = "Offering Skills have #% increased Duration", - ["type"] = "explicit", - }, - }, - ["2968503605"] = { - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["Wand"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "explicit", - }, - }, - ["2969557004"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, - ["2974417149"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 30, - }, - ["Amulet"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 30, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["2976476845"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2976476845", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", - ["type"] = "explicit", - }, - }, - ["3003542304"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3003542304", - ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", - ["type"] = "explicit", - }, - }, - ["300723956"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_300723956", - ["text"] = "Attack Hits apply Incision", - ["type"] = "explicit", - }, - }, - ["3015669065"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", - ["type"] = "explicit", - }, - }, - ["3028809864"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["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", - }, - }, - ["3032590688"] = { - ["Gloves"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["Quiver"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "explicit", - }, - }, - ["3033371881"] = { - ["Boots"] = { - ["max"] = 23, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 26, - ["min"] = 8, - }, - ["Gloves"] = { - ["max"] = 23, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 23, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 26, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3033371881", - ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", - ["type"] = "explicit", - }, - }, - ["3035140377"] = { - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["Dagger"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["One Hand Axe"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["One Hand Mace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["One Hand Sword"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["Two Hand Axe"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["Two Hand Mace"] = { - ["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, - }, - ["3037553757"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", - ["type"] = "explicit", - }, - }, - ["30438393"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["Sceptre"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_30642521", - ["text"] = "You can apply # additional Curses", - ["type"] = "explicit", - }, - }, - ["3065378291"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3067892458", - ["text"] = "Triggered Spells deal #% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["3088348485"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3088348485", - ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", - ["type"] = "explicit", - }, - }, - ["3091578504"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3106718406"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3113764475"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3113764475", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, - ["3119612865"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3121133045"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3121133045", - ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", - ["type"] = "explicit", - }, - }, - ["3141070085"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - ["type"] = "explicit", - }, - }, - ["3143918757"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3143918757", - ["text"] = "#% increased Glory generation", - ["type"] = "explicit", - }, - }, - ["3146310524"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3146310524", - ["text"] = "Dazes on Hit", - ["type"] = "explicit", - }, - }, - ["315791320"] = { - ["Sceptre"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_315791320", - ["text"] = "Aura Skills have #% increased Magnitudes", - ["type"] = "explicit", - }, - }, - ["3166958180"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["3171212276"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3171212276", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", - ["type"] = "explicit", - }, - }, - ["3173882956"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3174700878", - ["text"] = "#% increased Energy Shield from Equipped Focus", - ["type"] = "explicit", - }, - }, - ["3175163625"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "explicit", - }, - }, - ["318092306"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_318092306", - ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", - ["type"] = "explicit", - }, - }, - ["318953428"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3192728503"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3192728503", - ["text"] = "#% increased Crossbow Reload Speed", - ["type"] = "explicit", - }, - }, - ["3196823591"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3196823591", - ["text"] = "#% increased Charges gained", - ["type"] = "explicit", - }, - }, - ["3222402650"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3233599707"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3243034867"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["325171970"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_325171970", - ["text"] = "#% increased Attack Speed while missing Runic Ward", - ["type"] = "explicit", - }, - }, - ["3256879910"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3256879910", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, - ["3261801346"] = { - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 36, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Quiver"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3276224428"] = { - ["ManaFlask"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3276224428", - ["text"] = "#% more Recovery if used while on Low Mana", - ["type"] = "explicit", - }, - }, - ["3278136794"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", - ["type"] = "explicit", - }, - }, - ["3283482523"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3283482523", - ["text"] = "#% increased Attack Speed with Quarterstaves", - ["type"] = "explicit", - }, - }, - ["328541901"] = { - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 36, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Wand"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3291658075"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, - ["3292710273"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3292710273", - ["text"] = "Gain # Rage when Hit by an Enemy", - ["type"] = "explicit", - }, - }, - ["3299347043"] = { - ["Amulet"] = { - ["max"] = 149, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 174, - ["min"] = 10, - }, - ["Boots"] = { - ["max"] = 149, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 214, - ["min"] = 7, - }, - ["Gloves"] = { - ["max"] = 149, - ["min"] = 7, - }, - ["Helmet"] = { - ["max"] = 174, - ["min"] = 7, - }, - ["Ring"] = { - ["max"] = 119, - ["min"] = 10, - }, - ["Shield"] = { - ["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", - }, - }, - ["3321629045"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "explicit", - }, - }, - ["3325883026"] = { - ["Amulet"] = { - ["max"] = 33, - ["min"] = 1, - }, - ["Belt"] = { - ["max"] = 29, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 23, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 36, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 23, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 18, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["3336890334"] = { - ["1HMace"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["1HWeapon"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["2HMace"] = { - ["max"] = 188.5, - ["min"] = 4, - }, - ["2HWeapon"] = { - ["max"] = 188.5, - ["min"] = 2.5, - }, - ["Bow"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["Crossbow"] = { - ["max"] = 188.5, - ["min"] = 4, - }, - ["Flail"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["Quarterstaff"] = { - ["max"] = 188.5, - ["min"] = 4, - }, - ["Spear"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["Talisman"] = { - ["max"] = 188.5, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3362812763"] = { - ["Boots"] = { - ["max"] = 43, - ["min"] = 14, - }, - ["Chest"] = { - ["max"] = 50, - ["min"] = 14, - }, - ["Gloves"] = { - ["max"] = 43, - ["min"] = 14, - }, - ["Helmet"] = { - ["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, - }, - ["3372524247"] = { - ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3374165039"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "explicit", - }, - }, - ["3377888098"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3386297724"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3386297724", - ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", - ["type"] = "explicit", - }, - }, - ["3391917254"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["3394832998"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3394832998", - ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", - ["type"] = "explicit", - }, - }, - ["3395186672"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3399401168"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3399401168", - ["text"] = "#% to Fire Spell Critical Hit Chance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3401186585"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3409275777"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3409275777", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", - ["type"] = "explicit", - }, - }, - ["3417711605"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - ["type"] = "explicit", - }, - }, - ["3419203492"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3429148113"] = { - ["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", - }, - }, - ["3465022881"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3473929743"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3484657501"] = { - ["Boots"] = { - ["max"] = 190, - ["min"] = 9, - }, - ["Chest"] = { - ["max"] = 310, - ["min"] = 3, - }, - ["Gloves"] = { - ["max"] = 190, - ["min"] = 9, - }, - ["Helmet"] = { - ["max"] = 221, - ["min"] = 9, - }, - ["Shield"] = { - ["max"] = 277, - ["min"] = 9, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "# to Armour (Local)", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["3485067555"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["3513818125"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3523867985"] = { - ["Boots"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3544800472"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["3556824919"] = { - ["Amulet"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 34, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["3579898587"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3590792340"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3590792340", - ["text"] = "#% increased Mana Flask Charges gained", - ["type"] = "explicit", - }, - }, - ["3596695232"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["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", - }, - }, - ["3621874554"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3628935286"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["1HWeapon"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["2HMace"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["2HWeapon"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Boots"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Bow"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Chest"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Crossbow"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Flail"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Focus"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Gloves"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Helmet"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Quarterstaff"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Sceptre"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Shield"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Spear"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Staff"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Talisman"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Wand"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", - ["type"] = "explicit", - }, - }, - ["3641543553"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["3665922113"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3665922113", - ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["3666476747"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration", - ["type"] = "explicit", - }, - }, - ["3669820740"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, - ["3695891184"] = { - ["1HMace"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["1HWeapon"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["2HMace"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["2HWeapon"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Bow"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Crossbow"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Flail"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Gloves"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Quarterstaff"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Quiver"] = { - ["max"] = 53, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 53, - ["min"] = 4, - }, - ["Spear"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Staff"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Talisman"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Wand"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", - ["type"] = "explicit", - }, - }, - ["3700202631"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Quiver"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3714003708", - ["text"] = "#% increased Critical Damage Bonus for Attack Damage", - ["type"] = "explicit", - }, - }, - ["3741323227"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3749502527"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3749502527", - ["text"] = "#% chance to gain Volatility on Kill", - ["type"] = "explicit", - }, - }, - ["3752589831"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["Quiver"] = { - ["max"] = 46, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "explicit", - }, - }, - ["3759735052"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", - ["type"] = "explicit", - }, - }, - ["3771516363"] = { - ["Shield"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "explicit", - }, - }, - ["3774951878"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", - ["type"] = "explicit", - }, - }, - ["3787460122"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3787460122", - ["text"] = "Offerings have #% increased Maximum Life", - ["type"] = "explicit", - }, - }, - ["378796798"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["3791899485"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3791899485", - ["text"] = "#% increased Ignite Magnitude", - ["type"] = "explicit", - }, - }, - ["3811191316"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3821543413"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3821543413", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", - ["type"] = "explicit", - }, - }, - ["3824372849"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3824372849", - ["text"] = "#% increased Curse Duration", - ["type"] = "explicit", - }, - }, - ["3835551335"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", - ["type"] = "explicit", - }, - }, - ["3837707023"] = { - ["AnyJewel"] = { - ["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, - }, - ["3850614073"] = { - ["1HWeapon"] = { - ["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, - }, - ["3851254963"] = { - ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", - ["type"] = "explicit", - }, - }, - ["3855016469"] = { - ["Body Armour"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["Shield"] = { - ["max"] = 54, - ["min"] = 21, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["3856744003"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3856744003", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", - ["type"] = "explicit", - }, - }, - ["3858398337"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["3859848445"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3859848445", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", - ["type"] = "explicit", - }, - }, - ["3865605585"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["387439868"] = { - ["1HMace"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["2HMace"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 19, - }, - ["Bow"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["Crossbow"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["Flail"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["Quarterstaff"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["Spear"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["Talisman"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", - ["type"] = "explicit", - }, - }, - ["3885405204"] = { - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "explicit", - }, - }, - ["388617051"] = { - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_388617051", - ["text"] = "#% increased Charges per use", - ["type"] = "explicit", - }, - }, - ["3891355829"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3891355829|1", - ["text"] = "Upgrades Radius to Medium", - ["type"] = "explicit", - }, - }, - ["391602279"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["Boots"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 19, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 19, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "explicit", - }, - }, - ["3936121440"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3936121440", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", - ["type"] = "explicit", - }, - }, - ["394473632"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_394473632", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", - ["type"] = "explicit", - }, - }, - ["3962278098"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, - ["3973629633"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3973629633", - ["text"] = "#% increased Withered Magnitude", - ["type"] = "explicit", - }, - }, - ["3981240776"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["Chest"] = { - ["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", - }, - }, - ["3984865854"] = { - ["1HWeapon"] = { - ["max"] = 65, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 65, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3984865854", - ["text"] = "#% increased Spirit", - ["type"] = "explicit", - }, - }, - ["4009879772"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4009879772", - ["text"] = "#% increased Life Flask Charges gained", - ["type"] = "explicit", - }, - }, - ["4010677958"] = { - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 1, - }, - ["Sceptre"] = { - ["max"] = 33, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", - ["type"] = "explicit", - }, - }, - ["4015621042"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 101, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", - ["type"] = "explicit", - }, - }, - ["4019237939"] = { - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4019237939", - ["text"] = "Gain #% of Damage as Extra Physical Damage", - ["type"] = "explicit", - }, - }, - ["4032352472"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4045894391", - ["text"] = "#% increased Damage with Quarterstaves", - ["type"] = "explicit", - }, - }, - ["4052037485"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 96, - ["min"] = 2, - }, - ["Focus"] = { - ["max"] = 90, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 60, - ["min"] = 5, - }, - ["Helmet"] = { - ["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, - }, - ["4067062424"] = { - ["Gloves"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, - ["Quiver"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, - ["Ring"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold damage to Attacks", - ["type"] = "explicit", - }, - }, - ["4080418644"] = { - ["1HMace"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Belt"] = { - ["max"] = 36, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["4081947835"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", - ["type"] = "explicit", - }, - }, - ["4089835882"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4089835882", - ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", - ["type"] = "explicit", - }, - }, - ["4092130601"] = { - ["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", - }, - }, - ["4095671657"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["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, - }, - ["4101445926"] = { - ["Focus"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["Staff"] = { - ["max"] = 32, - ["min"] = 28, - }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 18, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4101445926", - ["text"] = "#% increased Mana Cost Efficiency", - ["type"] = "explicit", - }, - }, - ["412709880"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "explicit", - }, - }, - ["4139681126"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - ["type"] = "explicit", - }, - }, - ["4142814612"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["4147897060"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4147897060", - ["text"] = "#% increased Block chance", - ["type"] = "explicit", - }, - }, - ["4159248054"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4159248054", - ["text"] = "#% increased Warcry Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["416040624"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_416040624", - ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["4162678661"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4162678661", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, - ["4173554949"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4173554949", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", - ["type"] = "explicit", - }, - }, - ["4180952808"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["4220027924"] = { - ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Shield"] = { - ["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", - }, - }, - ["4226189338"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["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, - }, - ["4234573345"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4234573345", - ["text"] = "#% increased Effect of Notable Passive Skills in Radius", - ["type"] = "explicit", - }, - }, - ["4236566306"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["4258000627"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["4258720395"] = { - ["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", - }, - }, - ["4259875040"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["427684353"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_427684353", - ["text"] = "#% increased Damage with Crossbows", - ["type"] = "explicit", - }, - }, - ["429143663"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["440490623"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_440490623", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", - ["type"] = "explicit", - }, - }, - ["442393998"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_442393998", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", - ["type"] = "explicit", - }, - }, - ["44972811"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "explicit", - }, - }, - ["455816363"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_455816363", - ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", - ["type"] = "explicit", - }, - }, - ["458438597"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "explicit", - }, - }, - ["462424929"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - ["type"] = "explicit", - }, - }, - ["473429811"] = { - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["Wand"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_473429811", - ["text"] = "#% increased Freeze Buildup", - ["type"] = "explicit", - }, - }, - ["473917671"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_473917671", - ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["484792219"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_484792219", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", - ["type"] = "explicit", - }, - }, - ["491450213"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_491450213", - ["text"] = "Minions have #% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, - ["504915064"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_504915064", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", - ["type"] = "explicit", - }, - }, - ["517664839"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Spear"] = { - ["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, - }, - ["51994685"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", - ["type"] = "explicit", - }, - }, - ["525523040"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["Chest"] = { - ["max"] = 300, - ["min"] = 2, - }, - ["Gloves"] = { - ["max"] = 176, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 207, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 261, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "# to Evasion Rating (Local)", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["533892981"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_533892981", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["538241406"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["54812069"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["555706343"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_555706343", - ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", - ["type"] = "explicit", - }, - }, - ["55876295"] = { - ["1HMace"] = { - ["max"] = 9.9, - ["min"] = 6, - }, - ["1HWeapon"] = { - ["max"] = 9.9, - ["min"] = 6, - }, - ["2HMace"] = { - ["max"] = 9.9, - ["min"] = 6, - }, - ["2HWeapon"] = { - ["max"] = 9.9, - ["min"] = 6, - }, - ["Bow"] = { - ["max"] = 9.9, - ["min"] = 6, - }, - ["Crossbow"] = { - ["max"] = 9.9, - ["min"] = 6, - }, - ["Flail"] = { - ["max"] = 9.9, - ["min"] = 6, - }, - ["Quarterstaff"] = { - ["max"] = 9.9, - ["min"] = 6, - }, - ["Spear"] = { - ["max"] = 9.9, - ["min"] = 6, - }, - ["Talisman"] = { - ["max"] = 9.9, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_55876295", - ["text"] = "Leeches #% of Physical Damage as Life", - ["type"] = "explicit", - }, - }, - ["565784293"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_565784293", - ["text"] = "#% increased Knockback Distance", - ["type"] = "explicit", - }, - }, - ["587431675"] = { - ["Amulet"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 34, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["591105508"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["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, - }, - ["593241812"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_593241812", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["61644361"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["627767961"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["644456512"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "explicit", - }, - }, - ["648019518"] = { - ["LifeFlask"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_648019518", - ["text"] = "Removes #% of Life Recovered from Mana when used", - ["type"] = "explicit", - }, - }, - ["654207792"] = { - ["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", - }, - }, - ["656461285"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", - ["type"] = "explicit", - }, - }, - ["669069897"] = { - ["1HMace"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["680068163"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "explicit", - }, - }, - ["681332047"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["Gloves"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["Quiver"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "explicit", - }, - }, - ["686254215"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_686254215", - ["text"] = "#% increased Totem Life", - ["type"] = "explicit", - }, - }, - ["691932474"] = { - ["1HMace"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 650, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 650, - ["min"] = 10, - }, - ["Crossbow"] = { - ["max"] = 650, - ["min"] = 10, - }, - ["Flail"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["Talisman"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_691932474", - ["text"] = "# to Accuracy Rating (Local)", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["693237939"] = { - ["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", - }, - }, - ["700317374"] = { - ["LifeFlask"] = { - ["max"] = 80, - ["min"] = -50, - }, - ["ManaFlask"] = { - ["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, - }, - ["Ring"] = { - ["max"] = 6.9, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", - ["type"] = "explicit", - }, - }, - ["709508406"] = { - ["1HMace"] = { - ["max"] = 127.5, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 127.5, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 196, - ["min"] = 3.5, - }, - ["2HWeapon"] = { - ["max"] = 196, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 127.5, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 196, - ["min"] = 3.5, - }, - ["Flail"] = { - ["max"] = 127.5, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 196, - ["min"] = 3.5, - }, - ["Spear"] = { - ["max"] = 127.5, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 196, - ["min"] = 3.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "explicit", - }, - }, - ["712554801"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_712554801", - ["text"] = "#% increased Effect of your Mark Skills", - ["type"] = "explicit", - }, - }, - ["715957346"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_715957346", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", - ["type"] = "explicit", - }, - }, - ["73032170"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_73032170", - ["text"] = "Minions have #% increased Skill Speed with Command Skills", - ["type"] = "explicit", - }, - }, - ["734614379"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", - ["type"] = "explicit", - }, - }, - ["736967255"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["AnyJewel"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["BaseJewel"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["737908626"] = { - ["1HWeapon"] = { - ["max"] = 73, - ["min"] = 27, - }, - ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 40, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 59, - ["min"] = 27, - }, - ["Staff"] = { - ["max"] = 109, - ["min"] = 40, - }, - ["Wand"] = { - ["max"] = 73, - ["min"] = 27, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "explicit", - }, - }, - ["748522257"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["770672621"] = { - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 21, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 50, - ["min"] = 21, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["789117908"] = { - ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 8, - }, - ["2HWeapon"] = { - ["max"] = 104, - ["min"] = 8, - }, - ["Amulet"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 69, - ["min"] = 8, - }, - ["Sceptre"] = { - ["max"] = 69, - ["min"] = 8, - }, - ["Staff"] = { - ["max"] = 104, - ["min"] = 8, - }, - ["Wand"] = { - ["max"] = 69, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, - ["791928121"] = { - ["1HMace"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["2HMace"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Flail"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Quarterstaff"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Spear"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Talisman"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["795138349"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["803737631"] = { - ["Amulet"] = { - ["max"] = 450, - ["min"] = 11, - }, - ["Gloves"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["Helmet"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["Quiver"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["Ring"] = { - ["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, - }, - ["818778753"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "explicit", - }, - }, - ["821021828"] = { - ["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, - }, - ["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"] = "explicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", - ["type"] = "explicit", - }, - }, - ["821241191"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - ["type"] = "explicit", - }, - }, - ["821948283"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["828533480"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["830345042"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_830345042", - ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", - ["type"] = "explicit", - }, - }, - ["844449513"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_844449513", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", - ["type"] = "explicit", - }, - }, - ["849987426"] = { - ["1HWeapon"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_849987426", - ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", - ["type"] = "explicit", - }, - }, - ["868556494"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_868556494", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", - ["type"] = "explicit", - }, - }, - ["872504239"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_872504239", - ["text"] = "#% increased Stun Buildup with Maces", - ["type"] = "explicit", - }, - }, - ["886931978"] = { - ["LifeFlask"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_886931978", - ["text"] = "#% more Recovery if used while on Low Life", - ["type"] = "explicit", - }, - }, - ["915769802"] = { - ["Belt"] = { - ["max"] = 304, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 352, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 304, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 304, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["918325986"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_918325986", - ["text"] = "#% increased Skill Speed while Shapeshifted", - ["type"] = "explicit", - }, - }, - ["9187492"] = { - ["1HMace"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Spear"] = { - ["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, - }, - ["924253255"] = { - ["AnyJewel"] = { - ["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", - }, - }, - ["933355817"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_933355817", - ["text"] = "#% to gain Archon of Undeath when you create an Offering", - ["type"] = "explicit", - }, - }, - ["942519401"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_942519401", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", - ["type"] = "explicit", - }, - }, - ["944643028"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_944643028", - ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", - ["type"] = "explicit", - }, - }, - ["945774314"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["959641748"] = { - ["ManaFlask"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["980177976"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["Body Armour"] = { - ["max"] = 10, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["986397080"] = { - ["Chest"] = { - ["max"] = 60, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - }, - ["Implicit"] = { - ["1050105434"] = { - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["1137147997"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1137147997", - ["text"] = "Unblockable", - ["type"] = "implicit", - }, - }, - ["1207554355"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1207554355", - ["text"] = "#% increased Arrow Speed", - ["type"] = "implicit", - }, - }, - ["1379411836"] = { - ["Amulet"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 24, - ["min"] = 16, - }, - ["Ring"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1379411836", - ["text"] = "# to all Attributes", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["1389754388"] = { - ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1416292992", - ["text"] = "Has # Charm Slot", - ["type"] = "implicit", - }, - }, - ["1434716233"] = { - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1434716233", - ["text"] = "Warcries Empower an additional Attack", - ["type"] = "implicit", - }, - }, - ["1444556985"] = { - ["Chest"] = { - ["max"] = 14, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, - ["1451444093"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1451444093", - ["text"] = "Bifurcates Critical Hits", - ["type"] = "implicit", - }, - }, - ["1458343515"] = { - ["Amulet"] = { - ["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", - }, - }, - ["1503146834"] = { - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1503146834", - ["text"] = "Crushes Enemies on Hit", - ["type"] = "implicit", - }, - }, - ["1541903247"] = { - ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["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", - }, - }, - ["1570770415"] = { - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", - ["type"] = "implicit", - }, - }, - ["1573130764"] = { - ["Quiver"] = { - ["max"] = 4, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", - ["type"] = "implicit", - }, - }, - ["1589917703"] = { - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["1671376347"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["1691862754"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1691862754", - ["text"] = "Used when you become Frozen", - ["type"] = "implicit", - }, - }, - ["1702195217"] = { - ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Quarterstaff"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1702195217", - ["text"] = "#% to Block chance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["1745952865"] = { - ["Chest"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", - ["type"] = "implicit", - }, - }, - ["1803308202"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1803308202", - ["text"] = "#% increased Bolt Speed", - ["type"] = "implicit", - }, - }, - ["1810482573"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1810482573", - ["text"] = "Used when you become Stunned", - ["type"] = "implicit", - }, - }, - ["1836676211"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "implicit", - }, - }, - ["1856590738"] = { - ["Ring"] = { - ["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", - }, - }, - ["1967051901"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["1980802737"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1980802737", - ["text"] = "Grenade Skills Fire an additional Projectile", - ["type"] = "implicit", - }, - }, - ["2016937536"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2016937536", - ["text"] = "Used when you take Lightning damage from a Hit", - ["type"] = "implicit", - }, - }, - ["2055966527"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2055966527", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "implicit", - }, - }, - ["2194114101"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", - ["type"] = "implicit", - }, - }, - ["2222186378"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", - ["type"] = "implicit", - }, - }, - ["2250533757"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["2321178454"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Quiver"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "implicit", - }, - }, - ["239367161"] = { - ["Quiver"] = { - ["max"] = 40, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", - ["type"] = "implicit", - }, - }, - ["2463230181"] = { - ["2HWeapon"] = { - ["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, - }, - ["2527686725"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", - ["type"] = "implicit", - }, - }, - ["2646093132"] = { - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["2733960806"] = { - ["Belt"] = { - ["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", - }, - }, - ["2778646494"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2778646494", - ["text"] = "Used when you are affected by a Slow", - ["type"] = "implicit", - }, - }, - ["2797971005"] = { - ["Quiver"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["2891184298"] = { - ["Ring"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "implicit", - }, - }, - ["2901986750"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["Boots"] = { - ["max"] = 16, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 16, - ["min"] = 8, - }, - ["Ring"] = { - ["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, - }, - ["Ring"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["Shield"] = { - ["max"] = 19, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["2933846633"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2933846633", - ["text"] = "Dazes on Hit", - ["type"] = "implicit", - }, - }, - ["2968503605"] = { - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 50, - }, - ["Talisman"] = { - ["max"] = 80, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "implicit", - }, - }, - ["2994271459"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2994271459", - ["text"] = "Used when you take Cold damage from a Hit", - ["type"] = "implicit", - }, - }, - ["3032590688"] = { - ["Quiver"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 2.5, - ["min"] = 2.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "implicit", - }, - }, - ["3182714256"] = { - ["Amulet"] = { - ["max"] = 2, - ["min"] = -2, - }, - ["Ring"] = { - ["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, - }, - ["328541901"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["3299347043"] = { - ["Amulet"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["Chest"] = { - ["max"] = 80, - ["min"] = 60, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["3310778564"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3310778564", - ["text"] = "Used when you take Chaos damage from a Hit", - ["type"] = "implicit", - }, - }, - ["3325883026"] = { - ["Amulet"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", - ["type"] = "implicit", - }, - }, - ["3362812763"] = { - ["Chest"] = { - ["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, - }, - ["3398402065"] = { - ["2HWeapon"] = { - ["max"] = -50, - ["min"] = -50, - }, - ["Bow"] = { - ["max"] = -50, - ["min"] = -50, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3398402065", - ["text"] = "#% increased Projectile Range", - ["type"] = "implicit", - }, - }, - ["3544800472"] = { - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", - ["type"] = "implicit", - }, - }, - ["3585532255"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", - ["type"] = "implicit", - }, - }, - ["3675300253"] = { - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3675300253", - ["text"] = "Strikes deal Splash Damage", - ["type"] = "implicit", - }, - }, - ["3676540188"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3676540188", - ["text"] = "Used when you start Bleeding", - ["type"] = "implicit", - }, - }, - ["3699444296"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3699444296", - ["text"] = "Used when you become Shocked", - ["type"] = "implicit", - }, - }, - ["3854901951"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3854901951", - ["text"] = "Used when you take Fire damage from a Hit", - ["type"] = "implicit", - }, - }, - ["3855016469"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "implicit", - }, - }, - ["3917489142"] = { - ["Amulet"] = { - ["max"] = 20, - ["min"] = 12, - }, - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "implicit", - }, - }, - ["3954735777"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3954735777", - ["text"] = "#% chance to Poison on Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["3981240776"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["4010341289"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4010341289", - ["text"] = "Used when you kill a Rare or Unique enemy", - ["type"] = "implicit", - }, - }, - ["4077843608"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4077843608", - ["text"] = "Has 1 Socket", - ["type"] = "implicit", - }, - }, - ["4080418644"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["4126210832"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["458438597"] = { - ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "implicit", - }, - }, - ["462041840"] = { - ["Belt"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_462041840", - ["text"] = "#% of Flask Recovery applied Instantly", - ["type"] = "implicit", - }, - }, - ["548198834"] = { - ["2HWeapon"] = { - ["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", - }, - }, - ["585126960"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_585126960", - ["text"] = "Used when you become Ignited", - ["type"] = "implicit", - }, - }, - ["624954515"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "implicit", - }, - }, - ["644456512"] = { - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "implicit", - }, - }, - ["680068163"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "implicit", - }, - }, - ["681332047"] = { - ["Quiver"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "implicit", - }, - }, - ["718638445"] = { - ["Amulet"] = { - ["max"] = 2, - ["min"] = -2, - }, - ["Ring"] = { - ["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, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_731781020", - ["text"] = "Flasks gain # charges per Second", - ["type"] = "implicit", - }, - }, - ["789117908"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "implicit", - }, - }, - ["791928121"] = { - ["2HMace"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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, - }, - ["821241191"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - ["type"] = "implicit", - }, - }, - ["836936635"] = { - ["Chest"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, - ["958696139"] = { - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_958696139", - ["text"] = "Grants 1 additional Skill Slot", - ["type"] = "implicit", - }, - }, - }, - ["Rune"] = { - ["1004011302"] = { - ["Focus"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, -======= - }, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - ["tradeMod"] = { - ["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"] = { -<<<<<<< HEAD - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = -40, - }, - ["invertOnNegative"] = true, -======= ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "enchant", - }, - }, - ["1037193709"] = { - ["1HMace"] = { -<<<<<<< HEAD - ["max"] = 18, - ["min"] = 4, - }, - ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 4, - }, - ["2HMace"] = { - ["max"] = 18, - ["min"] = 4, - }, - ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 4, - }, - ["Bow"] = { - ["max"] = 18, - ["min"] = 4, - }, - ["Claw"] = { - ["max"] = 18, - ["min"] = 4, - }, - ["Crossbow"] = { - ["max"] = 18, - ["min"] = 4, - }, - ["Flail"] = { - ["max"] = 18, - ["min"] = 4, - }, - ["Quarterstaff"] = { - ["max"] = 18, - ["min"] = 4, - }, - ["Spear"] = { - ["max"] = 18, - ["min"] = 4, - }, - ["Talisman"] = { - ["max"] = 18, - ["min"] = 4, - }, -======= - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["1HWeapon"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["2HMace"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, - ["2HWeapon"] = { - ["max"] = 21.5, - ["min"] = 10.5, - }, - ["Bow"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["Crossbow"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, - ["Flail"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["Quarterstaff"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, - ["Spear"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["Talisman"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "enchant", - }, - }, - ["1050105434"] = { -<<<<<<< HEAD - ["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, - }, - ["Quarterstaff"] = { - ["max"] = 90, - ["min"] = 45, - }, - ["Shield"] = { - ["max"] = 50, - ["min"] = 20, - }, -======= - ["Focus"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Quiver"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 20, - }, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["1062208444"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Shield"] = { - ["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"] = "enchant.stat_1102738251", - ["text"] = "Life Flasks gain # charges per Second", - ["type"] = "enchant", - }, - }, - ["124859000"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Helmet"] = { - ["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"] = 50, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1315743832", - ["text"] = "#% increased Thorns damage", - ["type"] = "enchant", - }, - }, - ["1316278494"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "enchant", - }, - }, - ["1368271171"] = { -<<<<<<< HEAD - ["1HMace"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["Claw"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["Crossbow"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["Flail"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["Talisman"] = { - ["max"] = 40, -======= + ["id"] = "enchant.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "enchant", + }, + }, + ["1368271171"] = { ["1HWeapon"] = { ["max"] = 15, ["min"] = 10, @@ -20547,16 +8014,9 @@ return { ["min"] = 10, }, ["Wand"] = { -<<<<<<< HEAD - ["max"] = 15, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - ["min"] = 10, - }, -======= ["max"] = 15, ["min"] = 10, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { @@ -20674,45 +8134,11 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "enchant", - }, - }, -<<<<<<< HEAD - ["1671376347"] = { - ["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, -======= -======= ["id"] = "enchant.stat_1519615863", ["text"] = "#% chance to cause Bleeding on Hit", ["type"] = "enchant", }, }, ->>>>>>> ce20414fc (regen data files) ["1545858329"] = { ["1HWeapon"] = { ["max"] = 1, @@ -20727,16 +8153,9 @@ return { ["min"] = 1, }, ["Wand"] = { -<<<<<<< HEAD - ["max"] = 1, - ["min"] = 1, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= ["max"] = 1, ["min"] = 1, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { @@ -20793,28 +8212,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, -<<<<<<< HEAD - ["1798257884"] = { - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, - }, -======= -======= ["id"] = "enchant.stat_1671376347", ["text"] = "#% to Lightning Resistance", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, ->>>>>>> ce20414fc (regen data files) ["1725749947"] = { ["1HMace"] = { ["max"] = 1, @@ -20887,7 +8290,6 @@ return { ["max"] = 30, ["min"] = 20, }, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["specialCaseData"] = { }, ["tradeMod"] = { @@ -20897,9 +8299,6 @@ return { }, }, ["185580205"] = { -<<<<<<< HEAD - ["Helmet"] = { -======= ["Amulet"] = { ["max"] = 0.17, ["min"] = 0.08, @@ -20918,85 +8317,29 @@ return { ["min"] = 1, }, ["Crossbow"] = { -<<<<<<< HEAD ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - ["max"] = 1, - ["min"] = 1, - }, -======= ["max"] = 1, ["min"] = 1, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD -<<<<<<< HEAD - ["id"] = "enchant.stat_185580205", - ["text"] = "Charms gain # charge per Second", -======= - ["id"] = "enchant.stat_1967051901", - ["text"] = "Loads an additional bolt", ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - ["type"] = "enchant", - }, - }, -======= ["id"] = "enchant.stat_1967051901", ["text"] = "Loads an additional bolt", ["type"] = "enchant", }, }, ->>>>>>> ce20414fc (regen data files) ["1978899297"] = { -<<<<<<< HEAD - ["Chest"] = { - ["max"] = -10, - ["min"] = -10, -======= ["Amulet"] = { ["max"] = 1, ["min"] = 1, }, ["Chest"] = { -<<<<<<< HEAD - ["max"] = 1, - ["min"] = 1, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= ["max"] = 1, ["min"] = 1, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "enchant", - }, -<<<<<<< HEAD -======= - ["usePositiveSign"] = true, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, - ["1998951374"] = { - ["1HWeapon"] = { - ["max"] = 10, -<<<<<<< HEAD - ["min"] = 10, -======= - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 10, - ["min"] = 5, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= ["id"] = "enchant.stat_1978899297", ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "enchant", @@ -21012,7 +8355,6 @@ return { ["max"] = 10, ["min"] = 5, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { @@ -21060,15 +8402,9 @@ return { ["min"] = 6, }, ["2HWeapon"] = { -<<<<<<< HEAD - ["max"] = 50, - ["min"] = 5, - }, -======= ["max"] = 8, ["min"] = 6, }, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["Bow"] = { ["max"] = 8, ["min"] = 6, @@ -21228,36 +8564,16 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "enchant", - }, - }, -<<<<<<< HEAD - ["227523295"] = { -======= -======= ["id"] = "enchant.stat_2250533757", ["text"] = "#% increased Movement Speed", ["type"] = "enchant", }, }, ->>>>>>> ce20414fc (regen data files) ["2254480358"] = { ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["1HWeapon"] = { -<<<<<<< HEAD - ["max"] = 1, - ["min"] = 1, - }, -<<<<<<< HEAD -======= -======= ["max"] = 1, ["min"] = 1, }, ->>>>>>> ce20414fc (regen data files) ["2HWeapon"] = { ["max"] = 1, ["min"] = 1, @@ -21281,39 +8597,12 @@ return { }, ["227523295"] = { ["Helmet"] = { -<<<<<<< HEAD - ["max"] = 1, - ["min"] = 1, - }, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) -======= ["max"] = 1, ["min"] = 1, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_227523295", - ["text"] = "# to Maximum Power Charges", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, -<<<<<<< HEAD - ["2353576063"] = { - ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, -======= - ["2301191210"] = { - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 5, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= ["id"] = "enchant.stat_227523295", ["text"] = "# to Maximum Power Charges", ["type"] = "enchant", @@ -21325,7 +8614,6 @@ return { ["max"] = 10, ["min"] = 5, }, ->>>>>>> ce20414fc (regen data files) ["Bow"] = { ["max"] = 10, ["min"] = 5, @@ -21395,19 +8683,9 @@ return { }, ["2481353198"] = { ["Shield"] = { -<<<<<<< HEAD - ["max"] = 15, -<<<<<<< HEAD - ["min"] = 15, -======= - ["min"] = 10, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= ["max"] = 15, ["min"] = 10, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { @@ -21499,25 +8777,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, -<<<<<<< HEAD - ["280731498"] = { - ["Helmet"] = { -======= -======= ["id"] = "enchant.stat_2694482655", ["text"] = "#% to Critical Damage Bonus", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, ->>>>>>> ce20414fc (regen data files) ["2763429652"] = { ["2HWeapon"] = { ["max"] = 15, @@ -21528,16 +8793,9 @@ return { ["min"] = 10, }, ["Crossbow"] = { -<<<<<<< HEAD ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - ["max"] = 15, - ["min"] = 10, - }, -======= ["max"] = 15, ["min"] = 10, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { @@ -21595,19 +8853,6 @@ return { }, ["289128254"] = { ["1HWeapon"] = { -<<<<<<< HEAD - ["max"] = 10, -<<<<<<< HEAD - ["min"] = 10, -======= - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 10, - ["min"] = 5, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= ["max"] = 10, ["min"] = 5, }, @@ -21615,7 +8860,6 @@ return { ["max"] = 10, ["min"] = 5, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { @@ -21626,36 +8870,6 @@ return { }, ["2901986750"] = { ["Amulet"] = { -<<<<<<< HEAD - ["max"] = 10, - ["min"] = 5, - }, -<<<<<<< HEAD - ["Chest"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 5, -======= - ["Ring"] = { - ["max"] = 10, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - ["min"] = 5, - }, -======= ["max"] = 10, ["min"] = 5, }, @@ -21663,7 +8877,6 @@ return { ["max"] = 10, ["min"] = 5, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { @@ -21697,2423 +8910,1859 @@ return { ["min"] = 20, }, ["2HWeapon"] = { -<<<<<<< HEAD - ["max"] = 30, - ["min"] = 20, - }, -<<<<<<< HEAD - ["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, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "enchant", + }, + }, ["2968503605"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, + ["max"] = 30, + ["min"] = 20, + }, ["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, - }, + ["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", - }, - }, + ["id"] = "enchant.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "enchant", + }, + }, ["2974417149"] = { ["1HWeapon"] = { - ["max"] = 35, -======= + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Focus"] = { + ["max"] = 30, + ["min"] = 20, + }, ["Staff"] = { - ["max"] = 30, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 35, - ["min"] = 20, - }, -======= + ["max"] = 60, + ["min"] = 40, + }, + ["Wand"] = { ["max"] = 30, ["min"] = 20, }, - ["Staff"] = { - ["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"] = "enchant.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "enchant", + }, + }, + ["3175163625"] = { + ["Gloves"] = { + ["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"] = "enchant.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "enchant", + }, + }, + ["3261801346"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["328541901"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["3299347043"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["3321629045"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_293638271", - ["text"] = "#% increased chance to Shock", + ["id"] = "enchant.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", ["type"] = "enchant", }, }, - ["2968503605"] = { + ["3336890334"] = { + ["1HMace"] = { + ["max"] = 22.5, + ["min"] = 15, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 22.5, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 32, + ["min"] = 21, }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 32, + ["min"] = 15, }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, + ["Bow"] = { + ["max"] = 22.5, + ["min"] = 15, }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["Crossbow"] = { + ["max"] = 32, + ["min"] = 21, + }, + ["Flail"] = { + ["max"] = 22.5, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 32, + ["min"] = 21, + }, + ["Spear"] = { + ["max"] = 22.5, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 32, + ["min"] = 21, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", + ["id"] = "enchant.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "enchant", }, }, - ["2974417149"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["Focus"] = { - ["max"] = 30, + ["3372524247"] = { + ["Belt"] = { + ["max"] = 25, ["min"] = 20, }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["Wand"] = { - ["max"] = 30, + ["Boots"] = { + ["max"] = 25, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "enchant.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3057012405"] = { - ["1HWeapon"] = { -<<<<<<< HEAD -<<<<<<< HEAD - ["max"] = 20, - ["min"] = 20, -======= - ["max"] = 15, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 15, - ["min"] = 10, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= - ["max"] = 15, - ["min"] = 10, + ["3377888098"] = { + ["specialCaseData"] = { }, - ["Sceptre"] = { - ["max"] = 15, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "enchant", }, ->>>>>>> ce20414fc (regen data files) + }, + ["3398787959"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["id"] = "enchant.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "enchant", }, }, - ["3175163625"] = { + ["3417711605"] = { ["Gloves"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "enchant", - }, - }, -<<<<<<< HEAD - ["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, - }, -======= -======= - ["id"] = "enchant.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["id"] = "enchant.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "enchant", }, }, ->>>>>>> ce20414fc (regen data files) - ["3233599707"] = { ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["3429557654"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", + ["id"] = "enchant.stat_3429557654", + ["text"] = "Immune to Maim", ["type"] = "enchant", }, }, - ["3261801346"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, + ["3556824919"] = { + ["Quiver"] = { + ["max"] = 20, + ["min"] = 15, }, ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = 20, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "enchant.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["328541901"] = { -<<<<<<< HEAD + ["3639275092"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Boots"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Chest"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Flail"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Focus"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Gloves"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Helmet"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, + ["Sceptre"] = { + ["max"] = -10, + ["min"] = -20, + }, ["Shield"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Spear"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Staff"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = -10, + ["min"] = -20, + }, ["Wand"] = { - ["max"] = 15, - ["min"] = 6, -======= - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = -10, + ["min"] = -20, }, - ["Belt"] = { -<<<<<<< HEAD - ["max"] = 15, - ["min"] = 10, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= - ["max"] = 15, - ["min"] = 10, + ["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", }, ->>>>>>> ce20414fc (regen data files) - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + }, + ["3676141501"] = { + ["Helmet"] = { + ["max"] = 3, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_328541901", - ["text"] = "# to Intelligence", + ["id"] = "enchant.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["3299347043"] = { -<<<<<<< HEAD - ["1HMace"] = { - ["max"] = 80, - ["min"] = 80, - }, + ["3695891184"] = { ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["2HMace"] = { - ["max"] = 80, - ["min"] = 80, - }, + ["max"] = 25, + ["min"] = 20, + }, ["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, - }, + ["max"] = 25, + ["min"] = 20, + }, + ["Quiver"] = { + ["max"] = 25, + ["min"] = 20, + }, ["Staff"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["Talisman"] = { - ["max"] = 80, - ["min"] = 80, - }, - ["Wand"] = { - ["max"] = 80, - ["min"] = 80, - }, -======= - ["Belt"] = { - ["max"] = 40, - ["min"] = 30, + ["max"] = 25, + ["min"] = 20, }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, + ["Wand"] = { + ["max"] = 25, + ["min"] = 20, }, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "enchant.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["3321629045"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["3771516363"] = { ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 5, + ["min"] = 3, }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "enchant", }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["3780644166"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", + ["id"] = "enchant.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", ["type"] = "enchant", }, }, - ["3336890334"] = { + ["387439868"] = { ["1HMace"] = { -<<<<<<< HEAD - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 30, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 30, + ["min"] = 20, + }, ["2HMace"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 50, + ["min"] = 40, + }, ["2HWeapon"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 50, + ["min"] = 20, + }, ["Bow"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, - ["Claw"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Crossbow"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 50, + ["min"] = 40, + }, ["Flail"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Quarterstaff"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 50, + ["min"] = 40, + }, ["Spear"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, + ["max"] = 30, + ["min"] = 20, + }, ["Talisman"] = { - ["max"] = 20.5, - ["min"] = 5.5, - }, -======= - ["max"] = 22.5, - ["min"] = 15, + ["max"] = 50, + ["min"] = 40, }, - ["1HWeapon"] = { - ["max"] = 22.5, - ["min"] = 15, + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 32, - ["min"] = 21, + ["tradeMod"] = { + ["id"] = "enchant.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "enchant", }, + }, + ["3885405204"] = { ["2HWeapon"] = { - ["max"] = 32, - ["min"] = 15, + ["max"] = 1, + ["min"] = 1, }, ["Bow"] = { - ["max"] = 22.5, - ["min"] = 15, + ["max"] = 1, + ["min"] = 1, }, - ["Crossbow"] = { - ["max"] = 32, - ["min"] = 21, + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, - ["Flail"] = { - ["max"] = 22.5, - ["min"] = 15, + ["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"] = 32, - ["min"] = 21, + ["max"] = 15, + ["min"] = 10, }, ["Spear"] = { - ["max"] = 22.5, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 32, - ["min"] = 21, + ["max"] = 15, + ["min"] = 10, }, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "enchant.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", ["type"] = "enchant", }, }, - ["3372524247"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 20, + ["3917489142"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Boots"] = { -<<<<<<< HEAD -<<<<<<< HEAD - ["max"] = 22, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 22, - ["min"] = 10, - }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "enchant", + }, + }, + ["3981240776"] = { ["Helmet"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 22, - ["min"] = 10, -======= - ["max"] = 25, - ["min"] = 20, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= - ["max"] = 25, + ["max"] = 30, ["min"] = 20, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "enchant.stat_3981240776", + ["text"] = "# to Spirit", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["3377888098"] = { + ["3984865854"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Sceptre"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["id"] = "enchant.stat_3984865854", + ["text"] = "#% increased Spirit", ["type"] = "enchant", }, }, - ["3398787959"] = { -<<<<<<< HEAD - ["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, - }, - ["Talisman"] = { - ["max"] = 13, - ["min"] = 13, - }, -======= ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["4015621042"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Focus"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["id"] = "enchant.stat_4015621042", + ["text"] = "#% increased Energy Shield", ["type"] = "enchant", }, }, - ["3417711605"] = { + ["4078695"] = { ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", + ["id"] = "enchant.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3429557654"] = { + ["4080418644"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3429557654", - ["text"] = "Immune to Maim", + ["id"] = "enchant.stat_4080418644", + ["text"] = "# to Strength", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3556824919"] = { + ["4081947835"] = { ["Quiver"] = { ["max"] = 20, - ["min"] = 15, - }, - ["Ring"] = { - ["max"] = 20, - ["min"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", + ["id"] = "enchant.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "enchant", }, }, - ["3639275092"] = { - ["1HMace"] = { - ["max"] = -10, - ["min"] = -20, + ["4095671657"] = { + ["Belt"] = { + ["max"] = 3, + ["min"] = 1, }, - ["1HWeapon"] = { - ["max"] = -10, - ["min"] = -20, + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = -10, - ["min"] = -20, + ["tradeMod"] = { + ["id"] = "enchant.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "enchant", }, - ["2HWeapon"] = { - ["max"] = -10, - ["min"] = -20, + ["usePositiveSign"] = true, + }, + ["4220027924"] = { + ["Belt"] = { + ["max"] = 25, + ["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, + ["max"] = 25, + ["min"] = 20, }, - ["Quarterstaff"] = { - ["max"] = -10, - ["min"] = -20, + ["specialCaseData"] = { }, - ["Sceptre"] = { - ["max"] = -10, - ["min"] = -20, + ["tradeMod"] = { + ["id"] = "enchant.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "enchant", }, - ["Shield"] = { - ["max"] = -10, - ["min"] = -20, + ["usePositiveSign"] = true, + }, + ["4226189338"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Spear"] = { - ["max"] = -10, - ["min"] = -20, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, ["Staff"] = { - ["max"] = -10, - ["min"] = -20, - }, - ["Talisman"] = { - ["max"] = -10, - ["min"] = -20, + ["max"] = 1, + ["min"] = 1, }, ["Wand"] = { - ["max"] = -10, - ["min"] = -20, + ["max"] = 1, + ["min"] = 1, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", + ["id"] = "enchant.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3650992555"] = { + ["4236566306"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3650992555", - ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", + ["id"] = "enchant.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "enchant", }, }, - ["3676141501"] = { - ["Helmet"] = { - ["max"] = 3, + ["4283407333"] = { + ["Amulet"] = { + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", + ["id"] = "enchant.stat_4283407333", + ["text"] = "# to Level of all Skills", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["3695891184"] = { -<<<<<<< HEAD - ["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, -======= - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Quiver"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Staff"] = { + ["44972811"] = { + ["Helmet"] = { ["max"] = 25, - ["min"] = 20, + ["min"] = 15, }, - ["Wand"] = { -<<<<<<< HEAD - ["max"] = 25, - ["min"] = 20, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= + ["Ring"] = { ["max"] = 25, - ["min"] = 20, + ["min"] = 15, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", + ["id"] = "enchant.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", ["type"] = "enchant", }, }, - ["3771516363"] = { + ["472520716"] = { ["Chest"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "enchant", - }, - }, - ["3780644166"] = { - ["Boots"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", + ["id"] = "enchant.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "enchant", }, }, - ["387439868"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["473429811"] = { ["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"] = { + ["Staff"] = { ["max"] = 30, ["min"] = 20, }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["Spear"] = { + ["Wand"] = { ["max"] = 30, ["min"] = 20, }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 40, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", + ["id"] = "enchant.stat_473429811", + ["text"] = "#% increased Freeze Buildup", ["type"] = "enchant", }, }, - ["3885405204"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, + ["480796730"] = { + ["Shield"] = { + ["max"] = 3, + ["min"] = 3, }, ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "enchant.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", + ["id"] = "enchant.stat_480796730", + ["text"] = "#% to maximum Block chance", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3885634897"] = { + ["548198834"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, ["1HWeapon"] = { - ["max"] = 15, + ["max"] = 20, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 20, ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 15, + ["max"] = 20, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 20, ["min"] = 10, }, ["Quarterstaff"] = { - ["max"] = 15, + ["max"] = 20, ["min"] = 10, }, ["Spear"] = { - ["max"] = 15, + ["max"] = 20, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3885634897", - ["text"] = "#% chance to Poison on Hit with this weapon", + ["id"] = "enchant.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", ["type"] = "enchant", }, }, - ["3917489142"] = { -<<<<<<< HEAD - ["Chest"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, - }, -======= - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, + ["591105508"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "enchant.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3981240776"] = { - ["Helmet"] = { + ["680068163"] = { + ["Boots"] = { ["max"] = 30, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3981240776", - ["text"] = "# to Spirit", + ["id"] = "enchant.stat_680068163", + ["text"] = "#% increased Stun Threshold", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["3984865854"] = { - ["1HWeapon"] = { -<<<<<<< HEAD -<<<<<<< HEAD - ["max"] = 15, -======= - ["max"] = 25, - ["min"] = 15, - }, - ["Sceptre"] = { - ["max"] = 25, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - ["min"] = 15, - }, -======= - ["max"] = 25, - ["min"] = 15, - }, - ["Sceptre"] = { - ["max"] = 25, - ["min"] = 15, + ["707457662"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = 2, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_3984865854", - ["text"] = "#% increased Spirit", - ["type"] = "enchant", - }, - }, -<<<<<<< HEAD - ["4080418644"] = { + ["id"] = "enchant.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "enchant", + }, + }, + ["709508406"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 18, + ["min"] = 12, + }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 18, + ["min"] = 12, + }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 25.5, + ["min"] = 17, + }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 25.5, + ["min"] = 12, + }, ["Bow"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 18, + ["min"] = 12, + }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 25.5, + ["min"] = 17, + }, ["Flail"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 18, + ["min"] = 12, + }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 25.5, + ["min"] = 17, + }, ["Spear"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Staff"] = { - ["max"] = 15, - ["min"] = 6, - }, + ["max"] = 18, + ["min"] = 12, + }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 15, - ["min"] = 6, -======= -======= - ["id"] = "enchant.stat_3984865854", - ["text"] = "#% increased Spirit", + ["max"] = 25.5, + ["min"] = 17, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_709508406", + ["text"] = "Adds # to # Fire Damage", ["type"] = "enchant", }, }, ->>>>>>> ce20414fc (regen data files) - ["4015621042"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, + ["721014846"] = { + ["specialCaseData"] = { }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_721014846", + ["text"] = "You cannot be Hindered", + ["type"] = "enchant", }, - ["Focus"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["737908626"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4015621042", - ["text"] = "#% increased Energy Shield", + ["id"] = "enchant.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "enchant", }, }, - ["4078695"] = { - ["Gloves"] = { -<<<<<<< HEAD - ["max"] = 1, - ["min"] = 1, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= - ["max"] = 1, - ["min"] = 1, + ["762600725"] = { + ["Shield"] = { + ["max"] = 25, + ["min"] = 20, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4078695", - ["text"] = "# to Maximum Frenzy Charges", + ["id"] = "enchant.stat_762600725", + ["text"] = "# Life gained when you Block", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["4080418644"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, + ["789117908"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, }, ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "enchant.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["4081947835"] = { - ["Quiver"] = { - ["max"] = 20, - ["min"] = 10, + ["791928121"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 20, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", - ["type"] = "enchant", + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["4095671657"] = { - ["Belt"] = { - ["max"] = 3, - ["min"] = 1, + ["Spear"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", + ["id"] = "enchant.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["4220027924"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Boots"] = { -<<<<<<< HEAD -<<<<<<< HEAD - ["max"] = 22, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 22, - ["min"] = 10, - }, + ["803737631"] = { ["Helmet"] = { - ["max"] = 22, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 22, - ["min"] = 10, -======= - ["max"] = 25, - ["min"] = 20, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= - ["max"] = 25, - ["min"] = 20, + ["max"] = 100, + ["min"] = 50, + }, + ["Quiver"] = { + ["max"] = 100, + ["min"] = 50, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "enchant.stat_803737631", + ["text"] = "# to Accuracy Rating", ["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, + ["818778753"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", + ["id"] = "enchant.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["4236566306"] = { + ["836936635"] = { ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", - ["type"] = "enchant", - }, - }, -<<<<<<< HEAD - ["44972811"] = { - ["Shield"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "enchant", - }, - }, - ["473429811"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, -======= - ["4283407333"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = 1, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= - ["id"] = "enchant.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", + ["id"] = "enchant.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", ["type"] = "enchant", }, }, - ["4283407333"] = { - ["Amulet"] = { + ["9187492"] = { + ["Gloves"] = { ["max"] = 1, ["min"] = 1, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4283407333", - ["text"] = "# to Level of all Skills", + ["id"] = "enchant.stat_9187492", + ["text"] = "# to Level of all Melee Skills", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["44972811"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 15, + ["924253255"] = { + ["Boots"] = { + ["max"] = -20, + ["min"] = -30, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", + ["id"] = "enchant.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "enchant", }, }, - ["472520716"] = { - ["Chest"] = { - ["max"] = 20, - ["min"] = 10, + ["970213192"] = { + ["Quiver"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", + ["id"] = "enchant.stat_970213192", + ["text"] = "#% increased Skill Speed", ["type"] = "enchant", }, }, - ["473429811"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, + }, + ["Enchant"] = { + }, + ["Explicit"] = { + ["1002362373"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_473429811", - ["text"] = "#% increased Freeze Buildup", - ["type"] = "enchant", - }, - }, -<<<<<<< HEAD - ["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, -======= - ["480796730"] = { - ["Shield"] = { - ["max"] = 3, - ["min"] = 3, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= - ["id"] = "enchant.stat_473429811", - ["text"] = "#% increased Freeze Buildup", - ["type"] = "enchant", + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", }, }, - ["480796730"] = { - ["Shield"] = { - ["max"] = 3, + ["1004011302"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 5, ["min"] = 3, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_480796730", - ["text"] = "#% to maximum Block chance", - ["type"] = "enchant", + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "explicit", }, - ["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, + ["1007380041"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_548198834", - ["text"] = "#% increased Melee Strike Range with this weapon", - ["type"] = "enchant", + ["id"] = "explicit.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["type"] = "explicit", }, }, - ["591105508"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { + ["1011760251"] = { + ["AnyJewel"] = { ["max"] = 1, ["min"] = 1, }, - ["Staff"] = { + ["BaseJewel"] = { ["max"] = 1, ["min"] = 1, }, - ["Wand"] = { - ["max"] = 1, + ["Shield"] = { + ["max"] = 3, ["min"] = 1, }, ["specialCaseData"] = { }, - ["tradeMod"] = { - ["id"] = "enchant.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", - ["type"] = "enchant", + ["tradeMod"] = { + ["id"] = "explicit.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["101878827"] = { + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 36, + }, + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["usePositiveSign"] = true, - }, - ["680068163"] = { - ["Boots"] = { - ["max"] = 30, - ["min"] = 20, + ["Sceptre"] = { + ["max"] = 80, + ["min"] = 36, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "enchant", + ["id"] = "explicit.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "explicit", }, }, - ["707457662"] = { - ["Amulet"] = { + ["1022759479"] = { + ["AnyJewel"] = { ["max"] = 2, - ["min"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", - ["type"] = "enchant", + ["id"] = "explicit.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["type"] = "explicit", }, }, - ["709508406"] = { + ["1037193709"] = { ["1HMace"] = { - ["max"] = 18, - ["min"] = 12, + ["max"] = 102, + ["min"] = 2, }, ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 12, + ["max"] = 102, + ["min"] = 2, }, ["2HMace"] = { - ["max"] = 25.5, - ["min"] = 17, + ["max"] = 156.5, + ["min"] = 3, }, ["2HWeapon"] = { - ["max"] = 25.5, - ["min"] = 12, + ["max"] = 156.5, + ["min"] = 2, }, ["Bow"] = { - ["max"] = 18, - ["min"] = 12, + ["max"] = 102, + ["min"] = 2, }, ["Crossbow"] = { - ["max"] = 25.5, - ["min"] = 17, + ["max"] = 156.5, + ["min"] = 3, }, ["Flail"] = { - ["max"] = 18, - ["min"] = 12, + ["max"] = 102, + ["min"] = 2, }, ["Quarterstaff"] = { - ["max"] = 25.5, - ["min"] = 17, + ["max"] = 156.5, + ["min"] = 3, }, ["Spear"] = { - ["max"] = 18, - ["min"] = 12, + ["max"] = 102, + ["min"] = 2, }, ["Talisman"] = { - ["max"] = 25.5, - ["min"] = 17, + ["max"] = 156.5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_709508406", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "enchant", - }, - }, -<<<<<<< HEAD - ["737908626"] = { - ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 16, - }, - ["Quarterstaff"] = { - ["max"] = 28, - ["min"] = 16, - }, -======= -======= - ["id"] = "enchant.stat_709508406", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", }, }, ->>>>>>> ce20414fc (regen data files) - ["721014846"] = { ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) + ["1039268420"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_721014846", - ["text"] = "You cannot be Hindered", - ["type"] = "enchant", + ["id"] = "explicit.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["type"] = "explicit", }, }, - ["737908626"] = { + ["1050105434"] = { ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 164, + ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 30, + ["max"] = 328, ["min"] = 20, }, + ["Amulet"] = { + ["max"] = 189, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 124, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 124, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 164, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 124, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 149, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 179, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 164, + ["min"] = 10, + }, ["Staff"] = { - ["max"] = 30, + ["max"] = 328, ["min"] = 20, }, ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 164, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { -<<<<<<< HEAD - ["id"] = "enchant.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "enchant", - }, - }, -<<<<<<< HEAD - ["789117908"] = { - ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 20, - }, + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["1060572482"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["type"] = "explicit", + }, + }, + ["1062208444"] = { ["Boots"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 21, - ["min"] = 12, - }, - ["Focus"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 110, + ["min"] = 6, + }, ["Gloves"] = { - ["max"] = 21, - ["min"] = 12, - }, + ["max"] = 100, + ["min"] = 6, + }, ["Helmet"] = { - ["max"] = 21, - ["min"] = 12, - }, - ["Quarterstaff"] = { - ["max"] = 35, - ["min"] = 20, - }, - ["Shield"] = { - ["max"] = 21, - ["min"] = 12, -======= - ["762600725"] = { - ["Shield"] = { - ["max"] = 25, - ["min"] = 20, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= - ["id"] = "enchant.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "enchant", + ["max"] = 100, + ["min"] = 6, }, - }, - ["762600725"] = { ["Shield"] = { - ["max"] = 25, - ["min"] = 20, + ["max"] = 110, + ["min"] = 6, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_762600725", - ["text"] = "# Life gained when you Block", - ["type"] = "enchant", + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", }, }, - ["789117908"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, + ["1062710370"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "enchant", + ["id"] = "explicit.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "explicit", }, }, - ["791928121"] = { - ["1HMace"] = { -<<<<<<< HEAD - ["max"] = 50, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 20, - }, -<<<<<<< HEAD - ["Bow"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["Claw"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 50, - ["min"] = 20, - }, -======= ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - ["Flail"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["Spear"] = { - ["max"] = 50, - ["min"] = 20, - }, -<<<<<<< HEAD - ["Talisman"] = { - ["max"] = 50, - ["min"] = 20, - }, -======= ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) -======= - ["max"] = 30, - ["min"] = 20, + ["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", }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + }, + ["1087531620"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 20, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["type"] = "explicit", }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 20, + }, + ["1104825894"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 20, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "enchant", + ["id"] = "explicit.stat_1104825894", + ["text"] = "#% faster Curse Activation", + ["type"] = "explicit", }, }, - ["803737631"] = { -<<<<<<< HEAD - ["Helmet"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["836936635"] = { - ["Boots"] = { - ["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, -======= - ["Helmet"] = { - ["max"] = 100, - ["min"] = 50, + ["111835965"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Quiver"] = { - ["max"] = 100, - ["min"] = 50, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "enchant", + ["id"] = "explicit.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["818778753"] = { - ["Gloves"] = { -<<<<<<< HEAD - ["max"] = 15, - ["min"] = 10, ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) - }, -======= - ["max"] = 15, - ["min"] = 10, + ["1120862500"] = { + ["Charm"] = { + ["max"] = 300, + ["min"] = 16, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_1120862500", + ["text"] = "Recover # Mana when Used", + ["type"] = "explicit", }, }, - ["836936635"] = { + ["1129429646"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", - ["type"] = "enchant", + ["id"] = "explicit.stat_1129429646", + ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + ["type"] = "explicit", }, }, - ["9187492"] = { - ["Gloves"] = { -<<<<<<< HEAD - ["max"] = 1, - ["min"] = 1, - }, -<<<<<<< HEAD - ["Chest"] = { - ["max"] = -50, - ["min"] = -50, - }, - ["invertOnNegative"] = true, -======= ->>>>>>> 5226fc7d0 (Update trader for 0.5: regenerate mods and switch to using local stat json) -======= - ["max"] = 1, - ["min"] = 1, + ["1135928777"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ->>>>>>> ce20414fc (regen data files) ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_9187492", - ["text"] = "# to Level of all Melee Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["924253255"] = { - ["Boots"] = { - ["max"] = -20, - ["min"] = -30, + ["1137305356"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "enchant", + ["id"] = "explicit.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["type"] = "explicit", }, }, - ["970213192"] = { - ["Quiver"] = { - ["max"] = 6, - ["min"] = 4, + ["1145481685"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Ring"] = { - ["max"] = 6, - ["min"] = 4, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_970213192", - ["text"] = "#% increased Skill Speed", - ["type"] = "enchant", + ["id"] = "explicit.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["type"] = "explicit", }, }, - }, - ["Enchant"] = { - }, - ["Explicit"] = { - ["1002362373"] = { + ["1160637284"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["id"] = "explicit.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", ["type"] = "explicit", }, }, - ["1004011302"] = { + ["1165163804"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 4, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", ["type"] = "explicit", }, }, - ["1007380041"] = { + ["1166140625"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 7, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 7, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1007380041", - ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["id"] = "explicit.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", ["type"] = "explicit", }, }, - ["1011760251"] = { + ["1181419800"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces", + ["type"] = "explicit", + }, + }, + ["1181501418"] = { + ["AnyJewel"] = { ["max"] = 1, ["min"] = 1, }, - ["Shield"] = { - ["max"] = 3, + ["BaseJewel"] = { + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", + ["id"] = "explicit.stat_1181501418", + ["text"] = "# to Maximum Rage", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["101878827"] = { - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 36, - }, + ["1185341308"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 5, + ["min"] = 3, }, - ["Sceptre"] = { - ["max"] = 80, - ["min"] = 36, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", + ["id"] = "explicit.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", ["type"] = "explicit", }, }, - ["1022759479"] = { + ["1200678966"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 6, + ["min"] = 4, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1022759479", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["id"] = "explicit.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", ["type"] = "explicit", }, }, - ["1037193709"] = { - ["1HMace"] = { - ["max"] = 102, - ["min"] = 2, - }, + ["1202301673"] = { ["1HWeapon"] = { - ["max"] = 102, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 156.5, - ["min"] = 3, + ["max"] = 5, + ["min"] = 1, }, ["2HWeapon"] = { - ["max"] = 156.5, - ["min"] = 2, + ["max"] = 7, + ["min"] = 1, + }, + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, }, ["Bow"] = { - ["max"] = 102, - ["min"] = 2, + ["max"] = 5, + ["min"] = 1, }, ["Crossbow"] = { - ["max"] = 156.5, - ["min"] = 3, - }, - ["Flail"] = { - ["max"] = 102, + ["max"] = 7, ["min"] = 2, }, - ["Quarterstaff"] = { - ["max"] = 156.5, - ["min"] = 3, + ["Quiver"] = { + ["max"] = 2, + ["min"] = 1, }, ["Spear"] = { - ["max"] = 102, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 156.5, - ["min"] = 3, + ["max"] = 5, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "explicit.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1039268420"] = { + ["1238227257"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 10, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1039268420", - ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["id"] = "explicit.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", ["type"] = "explicit", }, }, - ["1050105434"] = { + ["124131830"] = { ["1HWeapon"] = { - ["max"] = 164, - ["min"] = 10, + ["max"] = 4, + ["min"] = 1, }, ["2HWeapon"] = { - ["max"] = 328, - ["min"] = 20, + ["max"] = 6, + ["min"] = 2, }, ["Amulet"] = { - ["max"] = 189, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 124, - ["min"] = 10, - }, - ["Boots"] = { - ["max"] = 124, - ["min"] = 10, + ["max"] = 3, + ["min"] = 1, }, ["Focus"] = { - ["max"] = 164, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 124, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 149, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 179, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 164, - ["min"] = 10, + ["max"] = 2, + ["min"] = 1, }, ["Staff"] = { - ["max"] = 328, - ["min"] = 20, + ["max"] = 6, + ["min"] = 2, }, ["Wand"] = { - ["max"] = 164, - ["min"] = 10, + ["max"] = 4, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_124131830", + ["text"] = "# to Level of all Spell Skills", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["1060572482"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["1241625305"] = { + ["Quiver"] = { + ["max"] = 59, + ["min"] = 11, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1060572482", - ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["id"] = "explicit.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", ["type"] = "explicit", }, }, - ["1062208444"] = { + ["124859000"] = { ["Boots"] = { ["max"] = 100, ["min"] = 6, @@ -24137,136 +10786,111 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "explicit", }, }, - ["1062710370"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["1250712710"] = { + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Sceptre"] = { + ["max"] = 38, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062710370", - ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["id"] = "explicit.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", ["type"] = "explicit", }, }, - ["1087108135"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["1261982764"] = { + ["LifeFlask"] = { + ["max"] = 100, + ["min"] = 61, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1087108135", - ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", ["type"] = "explicit", }, }, - ["1087531620"] = { - ["AnyJewel"] = { - ["max"] = 10, + ["1263695895"] = { + ["1HMace"] = { + ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 10, + ["1HWeapon"] = { + ["max"] = 15, ["min"] = 5, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1087531620", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", - ["type"] = "explicit", - }, - }, - ["1104825894"] = { - ["AnyJewel"] = { + ["2HMace"] = { ["max"] = 15, ["min"] = 5, }, - ["BaseJewel"] = { + ["2HWeapon"] = { ["max"] = 15, ["min"] = 5, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1104825894", - ["text"] = "#% faster Curse Activation", - ["type"] = "explicit", - }, - }, - ["111835965"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Bow"] = { + ["max"] = 15, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_111835965", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", - ["type"] = "explicit", + ["Helmet"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["1120862500"] = { - ["Charm"] = { - ["max"] = 300, - ["min"] = 16, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Ring"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1120862500", - ["text"] = "Recover # Mana when Used", - ["type"] = "explicit", + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["1129429646"] = { - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 15, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1129429646", - ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", - ["type"] = "explicit", + ["Staff"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["1135928777"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Wand"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1135928777", - ["text"] = "#% increased Attack Speed with Crossbows", + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", ["type"] = "explicit", }, }, - ["1137305356"] = { + ["1266413530"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -24278,379 +10902,364 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1137305356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["id"] = "explicit.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", ["type"] = "explicit", }, }, - ["1145481685"] = { + ["127081978"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 10, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1145481685", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["id"] = "explicit.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", ["type"] = "explicit", }, }, - ["1160637284"] = { + ["1285594161"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1160637284", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["id"] = "explicit.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", ["type"] = "explicit", }, }, - ["1165163804"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["1301765461"] = { + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1165163804", - ["text"] = "#% increased Attack Speed with Spears", + ["id"] = "explicit.stat_1301765461", + ["text"] = "#% to Maximum Chaos Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1166140625"] = { + ["1303248024"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, + ["max"] = 15, ["min"] = 5, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1166140625", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", - ["type"] = "explicit", - }, - }, - ["1181419800"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1181419800", - ["text"] = "#% increased Damage with Maces", + ["id"] = "explicit.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", ["type"] = "explicit", }, }, - ["1181501418"] = { + ["1309799717"] = { ["AnyJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 1, + ["RadiusJewel"] = { + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1181501418", - ["text"] = "# to Maximum Rage", + ["id"] = "explicit.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1185341308"] = { + ["1310194496"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 15, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1185341308", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", ["type"] = "explicit", }, }, - ["1200678966"] = { + ["1315743832"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1200678966", - ["text"] = "#% increased bonuses gained from Equipped Quiver", - ["type"] = "explicit", - }, - }, - ["1202301673"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["Quiver"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1202301673", - ["text"] = "# to Level of all Projectile Skills", + ["id"] = "explicit.stat_1315743832", + ["text"] = "#% increased Thorns damage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1238227257"] = { + ["1316278494"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", ["type"] = "explicit", }, }, - ["124131830"] = { - ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 6, + ["1320662475"] = { + ["AnyJewel"] = { + ["max"] = 3, ["min"] = 2, }, - ["Amulet"] = { + ["RadiusJewel"] = { ["max"] = 3, - ["min"] = 1, - }, - ["Focus"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 6, ["min"] = 2, }, - ["Wand"] = { - ["max"] = 4, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_124131830", - ["text"] = "# to Level of all Spell Skills", + ["id"] = "explicit.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1241625305"] = { - ["Quiver"] = { - ["max"] = 59, - ["min"] = 11, + ["1321104829"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1241625305", - ["text"] = "#% increased Damage with Bow Skills", + ["id"] = "explicit.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", ["type"] = "explicit", }, }, - ["124859000"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, + ["1323216174"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_1323216174", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "explicit", }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 6, + }, + ["1337740333"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", + ["id"] = "explicit.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", ["type"] = "explicit", }, }, - ["1250712710"] = { - ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, + ["1352561456"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Sceptre"] = { - ["max"] = 38, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["id"] = "explicit.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "explicit", }, }, - ["1261982764"] = { - ["LifeFlask"] = { - ["max"] = 100, - ["min"] = 61, - }, + ["1366840608"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1261982764", - ["text"] = "#% increased Life Recovered", + ["id"] = "explicit.stat_1366840608", + ["text"] = "#% increased Charges", ["type"] = "explicit", }, }, - ["1263695895"] = { + ["1368271171"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 45, + ["min"] = 2, }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 45, + ["min"] = 2, }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 45, + ["min"] = 2, }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 45, + ["min"] = 2, }, ["Bow"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 45, + ["min"] = 2, }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 45, + ["min"] = 2, }, ["Flail"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 45, + ["min"] = 2, }, - ["Helmet"] = { - ["max"] = 15, - ["min"] = 5, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 2, }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 45, + ["min"] = 2, }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 5, + ["Quiver"] = { + ["max"] = 27, + ["min"] = 2, }, - ["Sceptre"] = { - ["max"] = 15, - ["min"] = 5, + ["Ring"] = { + ["max"] = 27, + ["min"] = 2, }, ["Spear"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 45, + ["min"] = 2, }, ["Staff"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 45, + ["min"] = 2, }, ["Talisman"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "explicit", + }, + }, + ["1379411836"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 2, + }, + ["Ring"] = { + ["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", + }, + }, + ["1389754388"] = { + ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["Wand"] = { + ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, + ["Belt"] = { + ["max"] = 33, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["id"] = "explicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", ["type"] = "explicit", }, }, - ["1266413530"] = { + ["139889694"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -24662,29 +11271,42 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1266413530", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["id"] = "explicit.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "explicit", }, }, - ["127081978"] = { + ["1405298142"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 25, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 10, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "explicit", + }, + }, + ["1412217137"] = { + ["Belt"] = { + ["max"] = 40, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_127081978", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", ["type"] = "explicit", }, }, - ["1285594161"] = { + ["1417267954"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -24696,43 +11318,47 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1285594161", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["id"] = "explicit.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "explicit", }, }, - ["1301765461"] = { - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, + ["1423639565"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1301765461", - ["text"] = "#% to Maximum Chaos Resistance", + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["1303248024"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["1426522529"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1303248024", - ["text"] = "#% increased Magnitude of Ailments you inflict", + ["id"] = "explicit.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", ["type"] = "explicit", }, }, - ["1309799717"] = { + ["1432756708"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -24744,63 +11370,67 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1309799717", - ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["id"] = "explicit.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", ["type"] = "explicit", }, }, - ["1310194496"] = { + ["1444556985"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "explicit", }, }, - ["1315743832"] = { + ["1459321413"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1315743832", - ["text"] = "#% increased Thorns damage", + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", ["type"] = "explicit", }, }, - ["1316278494"] = { + ["147764878"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 3, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", + ["id"] = "explicit.stat_147764878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "explicit", }, }, - ["1320662475"] = { + ["1494950893"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -24812,63 +11442,95 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1320662475", - ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["id"] = "explicit.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", ["type"] = "explicit", }, }, - ["1321104829"] = { + ["1495814176"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 12, + ["min"] = 8, }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 12, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1321104829", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["id"] = "explicit.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", ["type"] = "explicit", }, }, - ["1323216174"] = { + ["1505023559"] = { ["AnyJewel"] = { - ["max"] = 5, + ["max"] = 7, ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 5, + ["max"] = 7, ["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", + ["id"] = "explicit.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", ["type"] = "explicit", }, }, - ["1337740333"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["1509134228"] = { + ["1HMace"] = { + ["max"] = 179, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["1HWeapon"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 179, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1337740333", - ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, }, - ["1352561456"] = { + ["1514844108"] = { ["AnyJewel"] = { ["max"] = 10, ["min"] = 5, @@ -24880,125 +11542,200 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1352561456", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["id"] = "explicit.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", ["type"] = "explicit", }, }, - ["1366840608"] = { + ["1526933524"] = { + ["LifeFlask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["ManaFlask"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1366840608", - ["text"] = "#% increased Charges", + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", ["type"] = "explicit", }, }, - ["1368271171"] = { - ["1HMace"] = { - ["max"] = 45, - ["min"] = 2, + ["153777645"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, }, - ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 2, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 8, }, - ["2HMace"] = { - ["max"] = 45, - ["min"] = 2, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", + ["type"] = "explicit", + }, + }, + ["1545858329"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, }, ["2HWeapon"] = { - ["max"] = 45, + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["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, + }, + ["1552666713"] = { + ["AnyJewel"] = { + ["max"] = 3, ["min"] = 2, }, - ["Bow"] = { - ["max"] = 45, + ["RadiusJewel"] = { + ["max"] = 3, ["min"] = 2, }, - ["Crossbow"] = { - ["max"] = 45, - ["min"] = 2, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + }, + ["1569101201"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1569159338"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 45, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "explicit.stat_1569159338", + ["text"] = "#% increased Parry Damage", + ["type"] = "explicit", }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 2, + }, + ["1570501432"] = { + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 45, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "explicit.stat_1570501432", + ["text"] = "Leech Life #% faster", + ["type"] = "explicit", }, - ["Quiver"] = { - ["max"] = 27, - ["min"] = 2, + }, + ["1570770415"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 8, }, - ["Ring"] = { - ["max"] = 27, - ["min"] = 2, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 45, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "explicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "explicit", }, - ["Staff"] = { - ["max"] = 45, + }, + ["1573130764"] = { + ["Gloves"] = { + ["max"] = 37, ["min"] = 2, }, - ["Talisman"] = { - ["max"] = 45, + ["Quiver"] = { + ["max"] = 37, ["min"] = 2, }, - ["Wand"] = { - ["max"] = 45, + ["Ring"] = { + ["max"] = 37, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", ["type"] = "explicit", }, }, - ["1379411836"] = { - ["Amulet"] = { - ["max"] = 24, + ["1574590649"] = { + ["1HWeapon"] = { + ["max"] = 25.5, ["min"] = 2, }, - ["Ring"] = { - ["max"] = 13, + ["Sceptre"] = { + ["max"] = 25.5, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1379411836", - ["text"] = "# to all Attributes", + ["id"] = "explicit.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["138421180"] = { + ["1585769763"] = { ["AnyJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { + ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_138421180", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["id"] = "explicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", ["type"] = "explicit", }, }, - ["1389754388"] = { + ["1589917703"] = { ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -25007,19 +11744,15 @@ return { ["max"] = 15, ["min"] = 5, }, - ["Belt"] = { - ["max"] = 33, - ["min"] = 4, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", ["type"] = "explicit", }, }, - ["139889694"] = { + ["1590846356"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -25031,94 +11764,89 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_139889694", - ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["id"] = "explicit.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", ["type"] = "explicit", }, }, - ["1405298142"] = { + ["1594812856"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1405298142", - ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["id"] = "explicit.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", ["type"] = "explicit", }, }, - ["1412217137"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["specialCaseData"] = { + ["1600707273"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, }, - }, - ["1417267954"] = { - ["AnyJewel"] = { - ["max"] = 2, + ["Staff"] = { + ["max"] = 7, ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 2, + ["Wand"] = { + ["max"] = 5, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1417267954", - ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["id"] = "explicit.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1423639565"] = { + ["1602294220"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", + ["id"] = "explicit.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1426522529"] = { + ["1604736568"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, }, - ["RadiusJewel"] = { + ["BaseJewel"] = { ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1426522529", - ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["id"] = "explicit.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "explicit", }, }, - ["1432756708"] = { + ["1653682082"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -25130,244 +11858,311 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1432756708", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["id"] = "explicit.stat_1653682082", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, }, - ["1444556985"] = { + ["1671376347"] = { ["Amulet"] = { - ["max"] = 24, + ["max"] = 45, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["1692879867"] = { + ["Chest"] = { + ["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, + }, + ["BaseJewel"] = { + ["max"] = 20, ["min"] = 10, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", + ["type"] = "explicit", + }, + }, + ["1697951953"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", + ["id"] = "explicit.stat_1697951953", + ["text"] = "#% increased Hazard Damage", ["type"] = "explicit", }, }, - ["1459321413"] = { + ["169946467"] = { ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", + ["id"] = "explicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", ["type"] = "explicit", }, }, - ["147764878"] = { + ["1714971114"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_147764878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + ["id"] = "explicit.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", ["type"] = "explicit", }, }, - ["1494950893"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["1718147982"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1494950893", - ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", ["type"] = "explicit", }, }, - ["1495814176"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["173226756"] = { + ["LifeFlask"] = { + ["max"] = 70, + ["min"] = 41, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["ManaFlask"] = { + ["max"] = 70, + ["min"] = 41, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1495814176", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", ["type"] = "explicit", }, }, - ["1505023559"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["1742651309"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 26, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1505023559", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["id"] = "explicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", ["type"] = "explicit", }, }, - ["1509134228"] = { - ["1HMace"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 179, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 179, - ["min"] = 15, + ["1754445556"] = { + ["Gloves"] = { + ["max"] = 37.5, + ["min"] = 2.5, }, - ["Bow"] = { - ["max"] = 179, - ["min"] = 15, + ["Quiver"] = { + ["max"] = 37.5, + ["min"] = 2.5, }, - ["Crossbow"] = { - ["max"] = 179, - ["min"] = 15, + ["Ring"] = { + ["max"] = 37.5, + ["min"] = 2.5, }, - ["Flail"] = { - ["max"] = 179, - ["min"] = 15, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 179, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 179, - ["min"] = 15, + }, + ["1756380435"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Talisman"] = { - ["max"] = 179, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1514844108"] = { + ["1772247089"] = { ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 10, + ["BaseJewel"] = { + ["max"] = 15, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1514844108", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + ["id"] = "explicit.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", ["type"] = "explicit", }, }, - ["1526933524"] = { - ["LifeFlask"] = { - ["max"] = 1, + ["1773308808"] = { + ["AnyJewel"] = { + ["max"] = 2, ["min"] = 1, }, - ["ManaFlask"] = { - ["max"] = 1, + ["RadiusJewel"] = { + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1526933524", - ["text"] = "Instant Recovery", + ["id"] = "explicit.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", ["type"] = "explicit", }, }, - ["153777645"] = { + ["1776411443"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Curses", + ["id"] = "explicit.stat_1776411443", + ["text"] = "Break #% increased Armour", ["type"] = "explicit", }, }, - ["1545858329"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, + ["1777421941"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["type"] = "explicit", + }, + }, + ["1782086450"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["Focus"] = { + ["max"] = 55, + ["min"] = 26, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1552666713"] = { + ["179541474"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -25379,106 +12174,110 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1552666713", - ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["id"] = "explicit.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", ["type"] = "explicit", }, }, - ["1569101201"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["1798257884"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Sceptre"] = { + ["max"] = 119, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1569101201", - ["text"] = "Empowered Attacks deal #% increased Damage", + ["id"] = "explicit.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "explicit", }, }, - ["1569159338"] = { + ["1800303440"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 10, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1569159338", - ["text"] = "#% increased Parry Damage", + ["id"] = "explicit.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", ["type"] = "explicit", }, }, - ["1570501432"] = { + ["1805182458"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1570501432", - ["text"] = "Leech Life #% faster", + ["id"] = "explicit.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", ["type"] = "explicit", }, }, - ["1570770415"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 8, + ["1811130680"] = { + ["ManaFlask"] = { + ["max"] = 100, + ["min"] = 61, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", ["type"] = "explicit", }, }, - ["1573130764"] = { - ["Gloves"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["Quiver"] = { - ["max"] = 37, - ["min"] = 2, + ["1829102168"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Ring"] = { - ["max"] = 37, - ["min"] = 2, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", + ["id"] = "explicit.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", ["type"] = "explicit", }, }, - ["1574590649"] = { - ["1HWeapon"] = { - ["max"] = 25.5, + ["1834658952"] = { + ["AnyJewel"] = { + ["max"] = 4, ["min"] = 2, }, - ["Sceptre"] = { - ["max"] = 25.5, + ["RadiusJewel"] = { + ["max"] = 4, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["id"] = "explicit.stat_1834658952", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", ["type"] = "explicit", }, }, - ["1585769763"] = { + ["1836676211"] = { ["AnyJewel"] = { ["max"] = 10, ["min"] = 5, @@ -25487,15 +12286,19 @@ return { ["max"] = 10, ["min"] = 5, }, + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1585769763", - ["text"] = "#% increased Blind Effect", + ["id"] = "explicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", ["type"] = "explicit", }, }, - ["1589917703"] = { + ["1839076647"] = { ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -25507,12 +12310,30 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", ["type"] = "explicit", }, }, - ["1590846356"] = { + ["1846980580"] = { + ["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, @@ -25524,12 +12345,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1590846356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + ["id"] = "explicit.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", ["type"] = "explicit", }, }, - ["1594812856"] = { + ["1852872083"] = { ["AnyJewel"] = { ["max"] = 20, ["min"] = 10, @@ -25541,72 +12362,146 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1594812856", - ["text"] = "#% increased Damage with Warcries", + ["id"] = "explicit.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "explicit", }, }, - ["1600707273"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, + ["1854213750"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["1869147066"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", + ["id"] = "explicit.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1602294220"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["1873752457"] = { + ["specialCaseData"] = { }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "explicit.stat_1873752457", + ["text"] = "Gains # Charges per Second", + ["type"] = "explicit", + }, + }, + ["1874553720"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 36, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1602294220", - ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["id"] = "explicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", ["type"] = "explicit", }, }, - ["1604736568"] = { + ["1881230714"] = { + ["Bow"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Dagger"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Flail"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["One Hand Axe"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["One Hand Mace"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["One Hand Sword"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Two Hand Axe"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Two Hand Mace"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Two Hand Sword"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["type"] = "explicit", + }, + }, + ["1892122971"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1604736568", - ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["id"] = "explicit.stat_1892122971", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", ["type"] = "explicit", }, }, - ["1653682082"] = { + ["1896066427"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -25618,362 +12513,336 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1653682082", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["id"] = "explicit.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", ["type"] = "explicit", }, }, - ["1671376347"] = { - ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, + ["1911237468"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Shield"] = { - ["max"] = 45, - ["min"] = 6, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "explicit.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1692879867"] = { - ["Chest"] = { - ["max"] = -36, - ["min"] = -60, + ["1940865751"] = { + ["1HMace"] = { + ["max"] = 52.5, + ["min"] = 2.5, }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 52.5, + ["min"] = 2.5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1692879867", - ["text"] = "#% increased Duration of Bleeding on You", - ["type"] = "explicit", + ["2HMace"] = { + ["max"] = 74.5, + ["min"] = 3.5, }, - }, - ["1697447343"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["2HWeapon"] = { + ["max"] = 74.5, + ["min"] = 2.5, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Bow"] = { + ["max"] = 52.5, + ["min"] = 2.5, }, - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 74.5, + ["min"] = 3.5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1697447343", - ["text"] = "#% increased Freeze Buildup with Quarterstaves", - ["type"] = "explicit", + ["Flail"] = { + ["max"] = 52.5, + ["min"] = 2.5, }, - }, - ["1697951953"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Quarterstaff"] = { + ["max"] = 74.5, + ["min"] = 3.5, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Spear"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["Talisman"] = { + ["max"] = 74.5, + ["min"] = 3.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1697951953", - ["text"] = "#% increased Hazard Damage", + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", ["type"] = "explicit", }, }, - ["169946467"] = { + ["1944020877"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 15, + ["RadiusJewel"] = { + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_169946467", - ["text"] = "#% increased Accuracy Rating with Bows", + ["id"] = "explicit.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", ["type"] = "explicit", }, }, - ["1714971114"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["1967051901"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1714971114", - ["text"] = "Mark Skills have #% increased Use Speed", + ["id"] = "explicit.stat_1967051901", + ["text"] = "Loads an additional bolt", ["type"] = "explicit", }, }, - ["1718147982"] = { + ["1978899297"] = { + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", + ["id"] = "explicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["173226756"] = { - ["LifeFlask"] = { - ["max"] = 70, - ["min"] = 41, + ["1994296038"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["ManaFlask"] = { - ["max"] = 70, - ["min"] = 41, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", + ["id"] = "explicit.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "explicit", }, }, - ["1742651309"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 26, + ["1998951374"] = { + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 16, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1742651309", - ["text"] = "#% of Fire Damage taken Recouped as Life", + ["id"] = "explicit.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "explicit", }, }, - ["1754445556"] = { - ["Gloves"] = { - ["max"] = 37.5, - ["min"] = 2.5, - }, - ["Quiver"] = { - ["max"] = 37.5, - ["min"] = 2.5, - }, - ["Ring"] = { - ["max"] = 37.5, - ["min"] = 2.5, + ["1999113824"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning damage to Attacks", - ["type"] = "explicit", + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, }, - }, - ["1756380435"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Shield"] = { + ["max"] = 110, + ["min"] = 101, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1756380435", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1772247089"] = { + ["2011656677"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1772247089", - ["text"] = "#% increased chance to inflict Ailments", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", ["type"] = "explicit", }, }, - ["1773308808"] = { + ["2023107756"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, }, - ["RadiusJewel"] = { + ["BaseJewel"] = { ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1773308808", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "explicit", }, }, - ["1776411443"] = { + ["2056107438"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 7, + ["min"] = 3, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1776411443", - ["text"] = "Break #% increased Armour", + ["id"] = "explicit.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", ["type"] = "explicit", }, }, - ["1777421941"] = { + ["2066964205"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 5, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1777421941", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["id"] = "explicit.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", ["type"] = "explicit", }, }, - ["1782086450"] = { + ["2077117738"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 55, - ["min"] = 26, + ["max"] = 7, + ["min"] = 3, }, - ["Focus"] = { - ["max"] = 55, - ["min"] = 26, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["id"] = "explicit.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", ["type"] = "explicit", }, }, - ["179541474"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["2081918629"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_179541474", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + ["id"] = "explicit.stat_2081918629", + ["text"] = "#% increased effect of Socketed Augment Items", ["type"] = "explicit", }, }, - ["1798257884"] = { + ["210067635"] = { + ["1HMace"] = { + ["max"] = 28, + ["min"] = 5, + }, ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, + ["max"] = 28, + ["min"] = 5, }, - ["Sceptre"] = { - ["max"] = 119, - ["min"] = 25, + ["2HMace"] = { + ["max"] = 28, + ["min"] = 5, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "explicit", + ["Bow"] = { + ["max"] = 19, + ["min"] = 5, }, - }, - ["1800303440"] = { - ["AnyJewel"] = { - ["max"] = 10, + ["Crossbow"] = { + ["max"] = 19, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 10, + ["Flail"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 28, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1800303440", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", }, }, - ["1805182458"] = { + ["2106365538"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, + }, ["AnyJewel"] = { ["max"] = 20, ["min"] = 10, @@ -25985,80 +12854,63 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1805182458", - ["text"] = "Companions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["1811130680"] = { - ["ManaFlask"] = { - ["max"] = 100, - ["min"] = 61, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1811130680", - ["text"] = "#% increased Mana Recovered", + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", ["type"] = "explicit", }, }, - ["1829102168"] = { + ["21071013"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 25, + ["min"] = 15, }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1829102168", - ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["id"] = "explicit.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", ["type"] = "explicit", }, }, - ["1834658952"] = { + ["2107703111"] = { ["AnyJewel"] = { - ["max"] = 4, + ["max"] = 3, ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 4, + ["max"] = 3, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1834658952", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["id"] = "explicit.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", ["type"] = "explicit", }, }, - ["1836676211"] = { + ["2108821127"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", + ["id"] = "explicit.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", ["type"] = "explicit", }, }, - ["1839076647"] = { + ["2112395885"] = { ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -26070,47 +12922,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - ["type"] = "explicit", - }, - }, - ["1846980580"] = { - ["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", + ["id"] = "explicit.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", ["type"] = "explicit", }, }, - ["1852872083"] = { + ["2118708619"] = { ["AnyJewel"] = { ["max"] = 20, ["min"] = 10, @@ -26122,55 +12939,69 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1852872083", - ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["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", }, }, - ["1854213750"] = { + ["2131720304"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 2, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1854213750", - ["text"] = "Minions have #% increased Critical Damage Bonus", + ["id"] = "explicit.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", ["type"] = "explicit", }, }, - ["1869147066"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 15, + ["2144192055"] = { + ["Ring"] = { + ["max"] = 203, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1869147066", - ["text"] = "#% increased Glory generation for Banner Skills", + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1873752457"] = { + ["2149603090"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1873752457", - ["text"] = "Gains # Charges per Second", + ["id"] = "explicit.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, }, - ["1874553720"] = { + ["2160282525"] = { ["Boots"] = { ["max"] = 60, ["min"] = 36, @@ -26178,73 +13009,76 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1874553720", - ["text"] = "#% reduced Chill Duration on you", + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", ["type"] = "explicit", }, }, - ["1881230714"] = { - ["Bow"] = { - ["max"] = 25, - ["min"] = 20, + ["2162097452"] = { + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 1, }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 20, + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, }, - ["Dagger"] = { - ["max"] = 25, - ["min"] = 20, + ["Helmet"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 20, + ["Sceptre"] = { + ["max"] = 4, + ["min"] = 1, }, - ["One Hand Axe"] = { - ["max"] = 25, - ["min"] = 20, + ["specialCaseData"] = { }, - ["One Hand Mace"] = { - ["max"] = 25, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "explicit", }, - ["One Hand Sword"] = { - ["max"] = 25, - ["min"] = 20, + ["usePositiveSign"] = true, + }, + ["2174054121"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 20, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 20, + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", + ["type"] = "explicit", }, - ["Two Hand Axe"] = { - ["max"] = 25, - ["min"] = 20, + }, + ["2194114101"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - ["Two Hand Mace"] = { - ["max"] = 25, - ["min"] = 20, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - ["Two Hand Sword"] = { - ["max"] = 25, - ["min"] = 20, + ["Quiver"] = { + ["max"] = 38, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1881230714", - ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["id"] = "explicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", ["type"] = "explicit", }, }, - ["1892122971"] = { + ["2202308025"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -26256,240 +13090,194 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1892122971", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["id"] = "explicit.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", ["type"] = "explicit", }, }, - ["1896066427"] = { + ["221701169"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 7, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1896066427", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["id"] = "explicit.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", ["type"] = "explicit", }, }, - ["1911237468"] = { + ["2222186378"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1911237468", - ["text"] = "#% increased Stun Threshold while Parrying", + ["id"] = "explicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", ["type"] = "explicit", }, }, - ["1940865751"] = { - ["1HMace"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, - ["1HWeapon"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, - ["2HMace"] = { - ["max"] = 74.5, - ["min"] = 3.5, - }, - ["2HWeapon"] = { - ["max"] = 74.5, - ["min"] = 2.5, - }, - ["Bow"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, - ["Crossbow"] = { - ["max"] = 74.5, - ["min"] = 3.5, - }, - ["Flail"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, - ["Quarterstaff"] = { - ["max"] = 74.5, - ["min"] = 3.5, - }, - ["Spear"] = { - ["max"] = 52.5, - ["min"] = 2.5, - }, - ["Talisman"] = { - ["max"] = 74.5, - ["min"] = 3.5, - }, + ["2223678961"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", ["type"] = "explicit", }, }, - ["1944020877"] = { + ["2231156303"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 10, + ["BaseJewel"] = { + ["max"] = 15, ["min"] = 5, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1944020877", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", - ["type"] = "explicit", + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, }, - }, - ["1967051901"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1967051901", - ["text"] = "Loads an additional bolt", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", }, }, - ["1978899297"] = { - ["Shield"] = { + ["2250533757"] = { + ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["1994296038"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Boots"] = { + ["max"] = 35, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1994296038", - ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "explicit", }, }, - ["1998951374"] = { + ["2254480358"] = { ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 5, + ["max"] = 5, + ["min"] = 1, }, - ["Sceptre"] = { - ["max"] = 16, - ["min"] = 5, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["id"] = "explicit.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1999113824"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, + ["2256120736"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 101, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", + ["id"] = "explicit.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", ["type"] = "explicit", }, }, - ["2011656677"] = { + ["2272980012"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 5, + ["min"] = 3, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "explicit.stat_2272980012", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", ["type"] = "explicit", }, }, - ["2023107756"] = { + ["2301718443"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 25, + ["min"] = 15, }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", + ["id"] = "explicit.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", ["type"] = "explicit", }, }, - ["2056107438"] = { + ["2320654813"] = { ["AnyJewel"] = { ["max"] = 7, ["min"] = 3, @@ -26501,193 +13289,202 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2056107438", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["id"] = "explicit.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", ["type"] = "explicit", }, }, - ["2066964205"] = { + ["2321178454"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 20, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 26, + ["min"] = 12, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2066964205", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["id"] = "explicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", ["type"] = "explicit", }, }, - ["2077117738"] = { + ["2334956771"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2077117738", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["id"] = "explicit.stat_2334956771", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "explicit", }, }, - ["2081918629"] = { - ["specialCaseData"] = { + ["2339757871"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2081918629", - ["text"] = "#% increased effect of Socketed Augment Items", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["210067635"] = { - ["1HMace"] = { - ["max"] = 28, - ["min"] = 5, + ["Boots"] = { + ["max"] = 45, + ["min"] = 26, }, - ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 5, + ["Focus"] = { + ["max"] = 55, + ["min"] = 26, }, - ["2HMace"] = { - ["max"] = 28, - ["min"] = 5, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 26, }, - ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 5, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 26, }, - ["Bow"] = { - ["max"] = 19, - ["min"] = 5, + ["Shield"] = { + ["max"] = 55, + ["min"] = 26, }, - ["Crossbow"] = { - ["max"] = 19, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 28, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", }, - ["Quarterstaff"] = { - ["max"] = 28, - ["min"] = 5, + }, + ["234296660"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Spear"] = { - ["max"] = 28, - ["min"] = 5, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Talisman"] = { - ["max"] = 28, - ["min"] = 5, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["2347036682"] = { + ["1HWeapon"] = { + ["max"] = 30.5, + ["min"] = 2, + }, + ["Sceptre"] = { + ["max"] = 30.5, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "explicit.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", ["type"] = "explicit", }, }, - ["2106365538"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, - }, + ["2353576063"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 4, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", ["type"] = "explicit", }, }, - ["21071013"] = { + ["2359002191"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 10, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_21071013", - ["text"] = "Herald Skills deal #% increased Damage", + ["id"] = "explicit.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", ["type"] = "explicit", }, }, - ["2107703111"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["2365392475"] = { + ["Charm"] = { + ["max"] = 350, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2107703111", - ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["id"] = "explicit.stat_2365392475", + ["text"] = "Recover # Life when Used", ["type"] = "explicit", }, }, - ["2108821127"] = { + ["2374711847"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 12, + ["min"] = 6, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2108821127", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["id"] = "explicit.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", ["type"] = "explicit", }, }, - ["2112395885"] = { + ["2392824305"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 12, + ["min"] = 6, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2112395885", - ["text"] = "#% increased amount of Life Leeched", + ["id"] = "explicit.stat_2392824305", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", ["type"] = "explicit", }, }, - ["2118708619"] = { + ["239367161"] = { ["AnyJewel"] = { ["max"] = 20, ["min"] = 10, @@ -26699,214 +13496,208 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2118708619", - ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["id"] = "explicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", ["type"] = "explicit", }, }, - ["2122183138"] = { + ["2416869319"] = { + ["LifeFlask"] = { + ["max"] = 80, + ["min"] = 51, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2122183138", - ["text"] = "# Mana gained when you Block", + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", ["type"] = "explicit", }, }, - ["2131720304"] = { + ["2421151933"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2131720304", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["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", }, }, - ["2144192055"] = { - ["Ring"] = { - ["max"] = 203, - ["min"] = 8, + ["2440073079"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", + ["id"] = "explicit.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["2149603090"] = { + ["2442527254"] = { ["AnyJewel"] = { - ["max"] = 3, + ["max"] = 2, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 3, + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2149603090", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "explicit", }, }, - ["2160282525"] = { + ["2451402625"] = { ["Boots"] = { - ["max"] = 60, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "explicit", + ["max"] = 100, + ["min"] = 6, }, - }, - ["2162097452"] = { - ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, }, ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 100, + ["min"] = 6, }, - ["Sceptre"] = { - ["max"] = 4, - ["min"] = 1, + ["Shield"] = { + ["max"] = 110, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["2174054121"] = { + ["2456523742"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2174054121", - ["text"] = "#% chance to inflict Bleeding on Hit", + ["id"] = "explicit.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", ["type"] = "explicit", }, }, - ["2194114101"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["2463230181"] = { + ["2HWeapon"] = { + ["max"] = 200, + ["min"] = 25, }, - ["Quiver"] = { - ["max"] = 38, - ["min"] = 10, + ["Bow"] = { + ["max"] = 200, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", + ["id"] = "explicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["2202308025"] = { + ["2466785537"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 10, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2202308025", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["id"] = "explicit.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", ["type"] = "explicit", }, }, - ["221701169"] = { + ["2480498143"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 6, + ["min"] = 4, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_221701169", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["id"] = "explicit.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "explicit", }, - }, - ["2222186378"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + }, + ["2481353198"] = { + ["Shield"] = { + ["max"] = 30, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", + ["id"] = "explicit.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", ["type"] = "explicit", }, }, - ["2223678961"] = { + ["2482852589"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "explicit", }, }, - ["2231156303"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, + ["2487305362"] = { ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -26915,336 +13706,287 @@ return { ["max"] = 15, ["min"] = 5, }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", ["type"] = "explicit", }, }, - ["2250533757"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["2503377690"] = { + ["LifeFlask"] = { + ["max"] = 30, + ["min"] = 20, }, - ["Boots"] = { - ["max"] = 35, - ["min"] = 10, + ["ManaFlask"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", ["type"] = "explicit", }, }, - ["2254480358"] = { + ["2505884597"] = { ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, + ["max"] = 30, + ["min"] = 13, }, ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, + ["max"] = 60, + ["min"] = 26, }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", - ["type"] = "explicit", + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, }, - ["usePositiveSign"] = true, - }, - ["2256120736"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, }, - ["specialCaseData"] = { + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2256120736", - ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", - ["type"] = "explicit", + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, }, - }, - ["2272980012"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, }, - ["specialCaseData"] = { + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2272980012", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", - ["type"] = "explicit", + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, }, - }, - ["2301718443"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2301718443", - ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["id"] = "explicit.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "explicit", }, }, - ["2320654813"] = { + ["2518900926"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 15, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2320654813", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["id"] = "explicit.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", ["type"] = "explicit", }, }, - ["2321178454"] = { + ["2527686725"] = { ["AnyJewel"] = { - ["max"] = 20, + ["max"] = 15, ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 20, + ["max"] = 15, ["min"] = 10, }, - ["Quiver"] = { - ["max"] = 26, - ["min"] = 12, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", + ["id"] = "explicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", ["type"] = "explicit", }, }, - ["2334956771"] = { + ["2534359663"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 5, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2334956771", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["id"] = "explicit.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", ["type"] = "explicit", }, }, - ["2339757871"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 26, - }, - ["Focus"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 26, - }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 26, + ["253641217"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["Shield"] = { - ["max"] = 55, - ["min"] = 26, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["id"] = "explicit.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", ["type"] = "explicit", }, }, - ["234296660"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["2541588185"] = { + ["Charm"] = { + ["max"] = 40, + ["min"] = 16, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_234296660", - ["text"] = "Companions deal #% increased Damage", + ["id"] = "explicit.stat_2541588185", + ["text"] = "#% increased Duration (Charm)", ["type"] = "explicit", }, }, - ["2347036682"] = { - ["1HWeapon"] = { - ["max"] = 30.5, - ["min"] = 2, + ["2557965901"] = { + ["Gloves"] = { + ["max"] = 9.9, + ["min"] = 5, }, - ["Sceptre"] = { - ["max"] = 30.5, - ["min"] = 2, + ["Ring"] = { + ["max"] = 7.9, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2347036682", - ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["id"] = "explicit.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", ["type"] = "explicit", }, }, - ["2353576063"] = { + ["255840549"] = { ["AnyJewel"] = { - ["max"] = 4, + ["max"] = 3, ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 4, + ["RadiusJewel"] = { + ["max"] = 3, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", + ["id"] = "explicit.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", ["type"] = "explicit", }, }, - ["2359002191"] = { + ["2580617872"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = -2, + ["min"] = -5, }, ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = -2, + ["min"] = -5, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2359002191", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["id"] = "explicit.stat_2580617872", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", ["type"] = "explicit", }, }, - ["2365392475"] = { - ["Charm"] = { - ["max"] = 350, - ["min"] = 8, - }, + ["2582079000"] = { ["specialCaseData"] = { + ["overrideModLinePlural"] = "+# Charm Slots", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2365392475", - ["text"] = "Recover # Life when Used", + ["id"] = "explicit.stat_2582079000", + ["text"] = "# Charm Slot", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["2374711847"] = { + ["2594634307"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 32, + ["min"] = 18, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2374711847", - ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["id"] = "explicit.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", ["type"] = "explicit", }, }, - ["2392824305"] = { + ["2610562860"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 1, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2392824305", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + ["id"] = "explicit.stat_2610562860", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", ["type"] = "explicit", }, }, - ["239367161"] = { + ["2637470878"] = { ["AnyJewel"] = { ["max"] = 20, ["min"] = 10, @@ -27256,25 +13998,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", - ["type"] = "explicit", - }, - }, - ["2416869319"] = { - ["LifeFlask"] = { - ["max"] = 80, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2416869319", - ["text"] = "Grants #% of Life Recovery to Minions", + ["id"] = "explicit.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", ["type"] = "explicit", }, }, - ["2421151933"] = { + ["2638756573"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -27286,29 +14015,38 @@ return { ["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", + ["id"] = "explicit.stat_2638756573", + ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", ["type"] = "explicit", }, }, - ["2440073079"] = { + ["2639966148"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2639966148", + ["text"] = "Minions Revive #% faster", + ["type"] = "explicit", + }, + }, + ["2653955271"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2440073079", - ["text"] = "#% increased Damage while Shapeshifted", + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "explicit", }, }, - ["2442527254"] = { + ["266564538"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -27320,793 +14058,734 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2442527254", - ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["id"] = "explicit.stat_266564538", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", ["type"] = "explicit", }, }, - ["2451402625"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, + ["2672805335"] = { + ["specialCaseData"] = { }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, + }, + ["2675129731"] = { + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_2675129731", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", + ["type"] = "explicit", }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 6, + }, + ["2676834156"] = { + ["Charm"] = { + ["max"] = 500, + ["min"] = 44, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", + ["id"] = "explicit.stat_2676834156", + ["text"] = "Also grants # Guard", ["type"] = "explicit", }, }, - ["2456523742"] = { + ["2690740379"] = { ["AnyJewel"] = { - ["max"] = 20, + ["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", + }, + }, + ["2694482655"] = { + ["1HMace"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 25, ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 20, + ["Talisman"] = { + ["max"] = 25, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2456523742", - ["text"] = "#% increased Critical Damage Bonus with Spears", + ["id"] = "explicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["2463230181"] = { - ["2HWeapon"] = { - ["max"] = 200, - ["min"] = 25, + ["2696027455"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - ["Bow"] = { - ["max"] = 200, - ["min"] = 25, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["id"] = "explicit.stat_2696027455", + ["text"] = "#% increased Damage with Spears", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["2466785537"] = { + ["2704905000"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 7, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2466785537", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["id"] = "explicit.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", ["type"] = "explicit", }, }, - ["2480498143"] = { + ["2709367754"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 1, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2480498143", - ["text"] = "#% of Skill Mana Costs Converted to Life Costs", - ["type"] = "explicit", - }, - }, - ["2481353198"] = { - ["Shield"] = { - ["max"] = 30, - ["min"] = 15, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", + ["id"] = "explicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", ["type"] = "explicit", }, }, - ["2482852589"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, - }, + ["2709646369"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "explicit.stat_2709646369", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", ["type"] = "explicit", }, }, - ["2487305362"] = { + ["2720982137"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 25, + ["min"] = 15, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2487305362", - ["text"] = "#% increased Magnitude of Poison you inflict", + ["id"] = "explicit.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", ["type"] = "explicit", }, }, - ["2503377690"] = { - ["LifeFlask"] = { - ["max"] = 30, - ["min"] = 20, + ["2726713579"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["ManaFlask"] = { - ["max"] = 30, - ["min"] = 20, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2503377690", - ["text"] = "#% of Recovery applied Instantly", + ["id"] = "explicit.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", ["type"] = "explicit", }, }, - ["2505884597"] = { + ["274716455"] = { ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, + ["max"] = 39, + ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Axe"] = { - ["max"] = 20, + ["max"] = 59, ["min"] = 15, }, - ["One Hand Mace"] = { + ["AnyJewel"] = { ["max"] = 20, - ["min"] = 15, + ["min"] = 10, }, - ["One Hand Sword"] = { + ["BaseJewel"] = { ["max"] = 20, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, + ["min"] = 10, }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 15, + ["Focus"] = { + ["max"] = 34, + ["min"] = 10, }, ["Staff"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, + ["max"] = 59, + ["min"] = 15, }, ["Wand"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", - ["type"] = "explicit", - }, - }, - ["2518900926"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2518900926", - ["text"] = "#% increased Damage with Plant Skills", - ["type"] = "explicit", - }, - }, - ["2527686725"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 39, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["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", + ["id"] = "explicit.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", ["type"] = "explicit", }, }, - ["253641217"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, + ["2748665614"] = { + ["Amulet"] = { + ["max"] = 8, ["min"] = 3, }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_253641217", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "explicit", }, }, - ["2541588185"] = { - ["Charm"] = { - ["max"] = 40, - ["min"] = 16, + ["2768835289"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2541588185", - ["text"] = "#% increased Duration (Charm)", - ["type"] = "explicit", + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, }, - }, - ["2557965901"] = { - ["Gloves"] = { - ["max"] = 9.9, - ["min"] = 5, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, }, - ["Ring"] = { - ["max"] = 7.9, - ["min"] = 5, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2557965901", - ["text"] = "Leech #% of Physical Attack Damage as Life", + ["id"] = "explicit.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", ["type"] = "explicit", }, }, - ["255840549"] = { + ["2768899959"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_255840549", - ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["id"] = "explicit.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", ["type"] = "explicit", }, }, - ["2580617872"] = { + ["2770044702"] = { ["AnyJewel"] = { - ["max"] = -2, - ["min"] = -5, + ["max"] = 1, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = -2, - ["min"] = -5, + ["max"] = 1, + ["min"] = 1, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2580617872", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["id"] = "explicit.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", ["type"] = "explicit", }, }, - ["2582079000"] = { + ["2797971005"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 2, + }, ["specialCaseData"] = { - ["overrideModLinePlural"] = "+# Charm Slots", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2582079000", - ["text"] = "# Charm Slot", + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["2594634307"] = { + ["280731498"] = { ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["max"] = 6, + ["min"] = 4, }, ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["max"] = 6, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2594634307", - ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "explicit", }, }, - ["2610562860"] = { + ["2809428780"] = { ["AnyJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 1, + ["max"] = 2, ["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", - }, - }, - ["2637470878"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2637470878", - ["text"] = "#% increased Armour Break Duration", + ["id"] = "explicit.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", ["type"] = "explicit", }, }, - ["2638756573"] = { + ["2822644689"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["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", + ["max"] = 2, + ["min"] = 1, }, - }, - ["2639966148"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2639966148", - ["text"] = "Minions Revive #% faster", + ["id"] = "explicit.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", ["type"] = "explicit", }, }, - ["2653955271"] = { + ["2839066308"] = { ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", + ["id"] = "explicit.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", ["type"] = "explicit", }, }, - ["266564538"] = { + ["2840989393"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["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", + ["id"] = "explicit.stat_2840989393", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", ["type"] = "explicit", }, }, - ["2675129731"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2675129731", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", - ["type"] = "explicit", + ["2843214518"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["2676834156"] = { - ["Charm"] = { - ["max"] = 500, - ["min"] = 44, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2676834156", - ["text"] = "Also grants # Guard", + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", ["type"] = "explicit", }, }, - ["2690740379"] = { + ["2849546516"] = { ["AnyJewel"] = { ["max"] = 4, - ["min"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { ["max"] = 4, - ["min"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2690740379", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + ["id"] = "explicit.stat_2849546516", + ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", ["type"] = "explicit", }, }, - ["2694482655"] = { - ["1HMace"] = { - ["max"] = 25, - ["min"] = 10, - }, + ["2854751904"] = { ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 10, + ["max"] = 37.5, + ["min"] = 3, }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 10, + ["Sceptre"] = { + ["max"] = 37.5, + ["min"] = 3, }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "explicit", }, - ["Quarterstaff"] = { - ["max"] = 25, + }, + ["2866361420"] = { + ["Amulet"] = { + ["max"] = 50, ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 25, + }, + ["AnyJewel"] = { + ["max"] = 20, ["min"] = 10, }, - ["Talisman"] = { - ["max"] = 25, + ["BaseJewel"] = { + ["max"] = 20, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["2696027455"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["2881298780"] = { + ["Belt"] = { + ["max"] = 185.5, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["Chest"] = { + ["max"] = 185.5, + ["min"] = 2, + }, + ["Shield"] = { + ["max"] = 185.5, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2696027455", - ["text"] = "#% increased Damage with Spears", + ["id"] = "explicit.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", ["type"] = "explicit", }, }, - ["2704905000"] = { + ["288364275"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2704905000", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["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", }, }, - ["2709367754"] = { + ["2891184298"] = { + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 9, + }, + ["2HWeapon"] = { + ["max"] = 52, + ["min"] = 14, + }, + ["Amulet"] = { + ["max"] = 28, + ["min"] = 9, + }, ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 4, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 4, + ["min"] = 2, + }, + ["Focus"] = { + ["max"] = 32, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 24, + ["min"] = 9, + }, + ["Staff"] = { + ["max"] = 52, + ["min"] = 14, + }, + ["Wand"] = { + ["max"] = 35, + ["min"] = 9, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, }, - ["2709646369"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["289128254"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2709646369", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + ["id"] = "explicit.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "explicit", }, }, - ["2720982137"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["2901986750"] = { + ["Amulet"] = { + ["max"] = 18, + ["min"] = 3, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["Ring"] = { + ["max"] = 16, + ["min"] = 3, + }, + ["Shield"] = { + ["max"] = 18, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2720982137", - ["text"] = "Banner Skills have #% increased Duration", + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["2726713579"] = { + ["2907381231"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 12, + ["min"] = 8, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 12, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2726713579", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["id"] = "explicit.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", ["type"] = "explicit", }, }, - ["274716455"] = { - ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 15, - }, + ["2912416697"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 34, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 59, - ["min"] = 15, + ["max"] = 5, + ["min"] = 3, }, - ["Wand"] = { - ["max"] = 39, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_274716455", - ["text"] = "#% increased Critical Spell Damage Bonus", + ["id"] = "explicit.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", ["type"] = "explicit", }, }, - ["2748665614"] = { + ["2923486259"] = { ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, + ["max"] = 27, + ["min"] = 4, + }, + ["Belt"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Boots"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Chest"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Focus"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Gloves"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Helmet"] = { + ["max"] = 27, + ["min"] = 4, }, ["Ring"] = { - ["max"] = 6, + ["max"] = 27, + ["min"] = 4, + }, + ["Shield"] = { + ["max"] = 27, ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["2768835289"] = { + ["293638271"] = { ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, + ["max"] = 100, + ["min"] = 51, }, ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, + ["max"] = 100, + ["min"] = 51, }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["Staff"] = { - ["max"] = 238, - ["min"] = 50, + ["max"] = 100, + ["min"] = 51, }, ["Wand"] = { - ["max"] = 119, - ["min"] = 25, + ["max"] = 100, + ["min"] = 51, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2768835289", - ["text"] = "#% increased Spell Physical Damage", + ["id"] = "explicit.stat_293638271", + ["text"] = "#% increased chance to Shock", ["type"] = "explicit", }, }, - ["2768899959"] = { + ["2954360902"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -28118,93 +14797,104 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2768899959", - ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["id"] = "explicit.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", ["type"] = "explicit", }, }, - ["2770044702"] = { + ["2957407601"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 25, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2770044702", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["id"] = "explicit.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", ["type"] = "explicit", }, }, - ["2797971005"] = { - ["Gloves"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["specialCaseData"] = { + ["2968503605"] = { + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 51, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 51, }, - }, - ["280731498"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 20, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["Wand"] = { + ["max"] = 100, + ["min"] = 51, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "explicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", ["type"] = "explicit", }, }, - ["2809428780"] = { + ["2969557004"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2809428780", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["id"] = "explicit.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", ["type"] = "explicit", }, }, - ["2822644689"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["2970621759"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 26, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2822644689", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["id"] = "explicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", ["type"] = "explicit", }, }, - ["2839066308"] = { + ["2974417149"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 30, + }, + ["Amulet"] = { + ["max"] = 30, + ["min"] = 3, + }, ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -28213,339 +14903,395 @@ return { ["max"] = 15, ["min"] = 5, }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2839066308", - ["text"] = "#% increased amount of Mana Leeched", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, }, - ["2840989393"] = { + ["2976476845"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 7, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2840989393", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + ["id"] = "explicit.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", ["type"] = "explicit", }, }, - ["2843214518"] = { + ["3003542304"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", + ["id"] = "explicit.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "explicit", }, }, - ["2849546516"] = { + ["300723956"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 1, + ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2849546516", - ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["id"] = "explicit.stat_300723956", + ["text"] = "Attack Hits apply Incision", ["type"] = "explicit", }, }, - ["2854751904"] = { + ["3015669065"] = { ["1HWeapon"] = { - ["max"] = 37.5, - ["min"] = 3, + ["max"] = 30, + ["min"] = 13, }, - ["Sceptre"] = { - ["max"] = 37.5, - ["min"] = 3, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2854751904", - ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["id"] = "explicit.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, }, - ["2866361420"] = { - ["Amulet"] = { - ["max"] = 50, + ["3028809864"] = { + ["AnyJewel"] = { + ["max"] = 20, ["min"] = 10, }, - ["AnyJewel"] = { + ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["BaseJewel"] = { - ["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", + }, + }, + ["3032590688"] = { + ["Gloves"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["Quiver"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 25.5, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "explicit", }, }, - ["2881298780"] = { - ["Belt"] = { - ["max"] = 185.5, - ["min"] = 2, + ["3033371881"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 8, }, ["Chest"] = { - ["max"] = 185.5, - ["min"] = 2, + ["max"] = 26, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 23, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 23, + ["min"] = 8, }, ["Shield"] = { - ["max"] = 185.5, - ["min"] = 2, + ["max"] = 26, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2881298780", - ["text"] = "# to # Physical Thorns damage", + ["id"] = "explicit.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", ["type"] = "explicit", }, }, - ["288364275"] = { - ["AnyJewel"] = { + ["3035140377"] = { + ["Bow"] = { ["max"] = 3, - ["min"] = 2, + ["min"] = 3, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 3, + ["min"] = 3, }, - ["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", + ["Flail"] = { + ["max"] = 3, + ["min"] = 3, }, - }, - ["2891184298"] = { - ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 9, + ["One Hand Axe"] = { + ["max"] = 3, + ["min"] = 3, }, - ["2HWeapon"] = { - ["max"] = 52, - ["min"] = 14, + ["One Hand Mace"] = { + ["max"] = 3, + ["min"] = 3, }, - ["Amulet"] = { - ["max"] = 28, - ["min"] = 9, + ["One Hand Sword"] = { + ["max"] = 3, + ["min"] = 3, }, - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Spear"] = { + ["max"] = 3, + ["min"] = 3, }, - ["Focus"] = { - ["max"] = 32, - ["min"] = 9, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 5, }, - ["Ring"] = { - ["max"] = 24, - ["min"] = 9, + ["Two Hand Axe"] = { + ["max"] = 5, + ["min"] = 5, }, - ["Staff"] = { - ["max"] = 52, - ["min"] = 14, + ["Two Hand Mace"] = { + ["max"] = 5, + ["min"] = 5, }, - ["Wand"] = { - ["max"] = 35, - ["min"] = 9, + ["Two Hand Sword"] = { + ["max"] = 5, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_3035140377", + ["text"] = "# to Level of all Attack Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["289128254"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 20, - ["min"] = 5, - }, + ["3037553757"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", ["type"] = "explicit", }, }, - ["2901986750"] = { - ["Amulet"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["Ring"] = { - ["max"] = 16, - ["min"] = 3, + ["30438393"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Shield"] = { - ["max"] = 18, - ["min"] = 3, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["id"] = "explicit.stat_30438393", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["2907381231"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["3057012405"] = { + ["1HWeapon"] = { + ["max"] = 39, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["Sceptre"] = { + ["max"] = 39, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2907381231", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["id"] = "explicit.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "explicit", }, }, - ["2912416697"] = { + ["3065378291"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 4, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2912416697", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["id"] = "explicit.stat_3065378291", + ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", ["type"] = "explicit", }, }, - ["2923486259"] = { - ["Amulet"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Belt"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Boots"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Chest"] = { - ["max"] = 27, - ["min"] = 4, + ["3067892458"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 10, }, - ["Focus"] = { - ["max"] = 27, - ["min"] = 4, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 10, }, - ["Gloves"] = { - ["max"] = 27, - ["min"] = 4, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 27, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "explicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", }, - ["Ring"] = { - ["max"] = 27, - ["min"] = 4, + }, + ["3088348485"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Shield"] = { - ["max"] = 27, - ["min"] = 4, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "explicit.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["293638271"] = { - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, + ["3091578504"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 4, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["Wand"] = { - ["max"] = 100, - ["min"] = 51, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_293638271", - ["text"] = "#% increased chance to Shock", + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", ["type"] = "explicit", }, }, - ["2954360902"] = { + ["3106718406"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -28557,104 +15303,93 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2954360902", - ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["id"] = "explicit.stat_3106718406", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", ["type"] = "explicit", }, }, - ["2957407601"] = { + ["3113764475"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 5, + ["min"] = 3, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2957407601", - ["text"] = "Offering Skills have #% increased Duration", + ["id"] = "explicit.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", ["type"] = "explicit", }, }, - ["2968503605"] = { - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, + ["3119612865"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 16, + ["min"] = 6, }, - ["Staff"] = { - ["max"] = 100, - ["min"] = 51, + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 100, - ["min"] = 51, + ["tradeMod"] = { + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, + ["3141070085"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", ["type"] = "explicit", }, }, - ["2969557004"] = { + ["3146310524"] = { ["AnyJewel"] = { ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { + ["BaseJewel"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2969557004", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["id"] = "explicit.stat_3146310524", + ["text"] = "Dazes on Hit", ["type"] = "explicit", }, }, - ["2970621759"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 26, + ["315791320"] = { + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["id"] = "explicit.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "explicit", }, }, - ["2974417149"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 30, - }, - ["Amulet"] = { - ["max"] = 30, - ["min"] = 3, - }, + ["3166958180"] = { ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -28663,293 +15398,202 @@ return { ["max"] = 15, ["min"] = 5, }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 30, + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "explicit", }, + }, + ["3169585282"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_3169585282", + ["text"] = "Allies in your Presence have # to Accuracy Rating", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["2976476845"] = { + ["3171212276"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 10, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2976476845", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["id"] = "explicit.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", ["type"] = "explicit", }, }, - ["3003542304"] = { + ["3173882956"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = 3, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3003542304", - ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["id"] = "explicit.stat_3173882956", + ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", ["type"] = "explicit", }, }, - ["300723956"] = { + ["3174700878"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 50, + ["min"] = 30, }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 50, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_300723956", - ["text"] = "Attack Hits apply Incision", + ["id"] = "explicit.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", ["type"] = "explicit", }, - }, - ["3015669065"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["One Hand Sword"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, - }, + }, + ["3175163625"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["id"] = "explicit.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "explicit", }, }, - ["3028809864"] = { + ["318092306"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3028809864", - ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["id"] = "explicit.stat_318092306", + ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", ["type"] = "explicit", }, }, - ["3032590688"] = { - ["Gloves"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["Quiver"] = { - ["max"] = 25.5, - ["min"] = 2, + ["318953428"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["Ring"] = { - ["max"] = 25.5, - ["min"] = 2, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", ["type"] = "explicit", }, }, - ["3033371881"] = { - ["Boots"] = { - ["max"] = 23, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 26, - ["min"] = 8, - }, - ["Gloves"] = { - ["max"] = 23, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 23, - ["min"] = 8, + ["3192728503"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Shield"] = { - ["max"] = 26, - ["min"] = 8, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3033371881", - ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["id"] = "explicit.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", ["type"] = "explicit", }, }, - ["3035140377"] = { - ["Bow"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Dagger"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["Flail"] = { - ["max"] = 3, - ["min"] = 3, + ["3196823591"] = { + ["specialCaseData"] = { }, - ["One Hand Axe"] = { - ["max"] = 3, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charges gained", + ["type"] = "explicit", }, - ["One Hand Mace"] = { - ["max"] = 3, - ["min"] = 3, + }, + ["3222402650"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["One Hand Sword"] = { - ["max"] = 3, - ["min"] = 3, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 3, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "explicit.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["type"] = "explicit", }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, + }, + ["3225608889"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Two Hand Axe"] = { - ["max"] = 5, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Two Hand Mace"] = { - ["max"] = 5, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Two Hand Sword"] = { - ["max"] = 5, - ["min"] = 5, + ["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_3035140377", - ["text"] = "# to Level of all Attack Skills", + ["id"] = "explicit.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["3037553757"] = { + ["3243034867"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", + ["id"] = "explicit.stat_3243034867", + ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", ["type"] = "explicit", }, }, - ["30438393"] = { + ["3256879910"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -28961,1007 +15605,1110 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_30438393", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + ["id"] = "explicit.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", ["type"] = "explicit", }, }, - ["3057012405"] = { + ["3261801346"] = { ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 10, + ["max"] = 33, + ["min"] = 5, }, - ["Sceptre"] = { - ["max"] = 39, - ["min"] = 10, + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", - ["type"] = "explicit", + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, }, - }, - ["3065378291"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Bow"] = { + ["max"] = 33, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 36, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Quiver"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 33, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3065378291", - ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["3067892458"] = { - ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 10, + ["3276224428"] = { + ["ManaFlask"] = { + ["max"] = 100, + ["min"] = 51, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3067892458", - ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["id"] = "explicit.stat_3276224428", + ["text"] = "#% more Recovery if used while on Low Mana", ["type"] = "explicit", }, }, - ["3088348485"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["3278136794"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3088348485", - ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", - ["type"] = "explicit", + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, }, - }, - ["3091578504"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, }, - ["specialCaseData"] = { + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", - ["type"] = "explicit", + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["3106718406"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, }, - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3106718406", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", - ["type"] = "explicit", + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, }, - }, - ["3113764475"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3113764475", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["id"] = "explicit.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "explicit", }, }, - ["3119612865"] = { + ["3283482523"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 4, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3119612865", - ["text"] = "Minions have #% additional Physical Damage Reduction", + ["id"] = "explicit.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", ["type"] = "explicit", }, }, - ["3141070085"] = { - ["AnyJewel"] = { - ["max"] = 15, + ["328541901"] = { + ["1HWeapon"] = { + ["max"] = 33, ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 15, + ["2HWeapon"] = { + ["max"] = 33, ["min"] = 5, }, - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - ["type"] = "explicit", + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, }, - }, - ["3146310524"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Flail"] = { + ["max"] = 33, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3146310524", - ["text"] = "Dazes on Hit", - ["type"] = "explicit", + ["Gloves"] = { + ["max"] = 33, + ["min"] = 5, }, - }, - ["315791320"] = { - ["Sceptre"] = { - ["max"] = 20, - ["min"] = 15, + ["Helmet"] = { + ["max"] = 36, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_315791320", - ["text"] = "Aura Skills have #% increased Magnitudes", - ["type"] = "explicit", + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, }, - }, - ["3166958180"] = { - ["AnyJewel"] = { - ["max"] = 15, + ["Sceptre"] = { + ["max"] = 33, ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 15, + ["Shield"] = { + ["max"] = 33, ["min"] = 5, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", - ["type"] = "explicit", + ["Talisman"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 33, + ["min"] = 5, }, - }, - ["3169585282"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3169585282", - ["text"] = "Allies in your Presence have # to Accuracy Rating", + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["3171212276"] = { + ["3291658075"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 10, + ["BaseJewel"] = { + ["max"] = 15, ["min"] = 5, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3171212276", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", - ["type"] = "explicit", + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, }, - }, - ["3173882956"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3173882956", - ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, }, - ["3174700878"] = { + ["3292710273"] = { ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 30, + ["max"] = 3, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 50, - ["min"] = 30, + ["max"] = 3, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3174700878", - ["text"] = "#% increased Energy Shield from Equipped Focus", + ["id"] = "explicit.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", ["type"] = "explicit", }, }, - ["3175163625"] = { - ["Gloves"] = { - ["max"] = 15, + ["3299347043"] = { + ["Amulet"] = { + ["max"] = 149, ["min"] = 10, }, - ["specialCaseData"] = { + ["Belt"] = { + ["max"] = 174, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "explicit", + ["Boots"] = { + ["max"] = 149, + ["min"] = 10, }, - }, - ["318092306"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Chest"] = { + ["max"] = 214, + ["min"] = 7, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Gloves"] = { + ["max"] = 149, + ["min"] = 7, + }, + ["Helmet"] = { + ["max"] = 174, + ["min"] = 7, + }, + ["Ring"] = { + ["max"] = 119, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 189, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_318092306", - ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["318953428"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["3301100256"] = { + ["Chest"] = { + ["max"] = -36, + ["min"] = -60, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["id"] = "explicit.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", ["type"] = "explicit", }, }, - ["3192728503"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["3321629045"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3192728503", - ["text"] = "#% increased Crossbow Reload Speed", - ["type"] = "explicit", + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 6, }, - }, - ["3196823591"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3196823591", - ["text"] = "#% increased Charges gained", + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", ["type"] = "explicit", }, }, - ["3222402650"] = { - ["AnyJewel"] = { - ["max"] = 2, + ["3325883026"] = { + ["Amulet"] = { + ["max"] = 33, ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 2, + ["Belt"] = { + ["max"] = 29, ["min"] = 1, }, - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3222402650", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", - ["type"] = "explicit", + ["Chest"] = { + ["max"] = 36, + ["min"] = 1, }, - }, - ["3225608889"] = { - ["AnyJewel"] = { - ["max"] = 2, + ["Helmet"] = { + ["max"] = 23, ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 2, + ["Ring"] = { + ["max"] = 18, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3225608889", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + ["id"] = "explicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["3233599707"] = { - ["specialCaseData"] = { + ["3336890334"] = { + ["1HMace"] = { + ["max"] = 123, + ["min"] = 2.5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", - ["type"] = "explicit", + ["1HWeapon"] = { + ["max"] = 123, + ["min"] = 2.5, }, - }, - ["3243034867"] = { - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 188.5, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3243034867", - ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 188.5, + ["min"] = 2.5, }, - }, - ["3256879910"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Bow"] = { + ["max"] = 123, + ["min"] = 2.5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Crossbow"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["Quarterstaff"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["Talisman"] = { + ["max"] = 188.5, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3256879910", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "explicit", }, }, - ["3261801346"] = { - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, + ["335885735"] = { + ["specialCaseData"] = { }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "explicit.stat_335885735", + ["text"] = "Bears the Mark of the Abyssal Lord", + ["type"] = "explicit", }, + }, + ["3362812763"] = { ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 33, - ["min"] = 5, + ["max"] = 43, + ["min"] = 14, }, ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 5, + ["max"] = 50, + ["min"] = 14, }, ["Gloves"] = { - ["max"] = 36, - ["min"] = 5, + ["max"] = 43, + ["min"] = 14, }, ["Helmet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Quiver"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, + ["max"] = 43, + ["min"] = 14, }, ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 33, - ["min"] = 5, + ["max"] = 50, + ["min"] = 14, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "explicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["3276224428"] = { - ["ManaFlask"] = { - ["max"] = 100, - ["min"] = 51, + ["3372524247"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3276224428", - ["text"] = "#% more Recovery if used while on Low Mana", - ["type"] = "explicit", + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, }, - }, - ["3278136794"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, }, - ["Dagger"] = { - ["max"] = 20, - ["min"] = 15, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 15, + ["Shield"] = { + ["max"] = 45, + ["min"] = 6, }, - ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, + ["specialCaseData"] = { }, - ["One Hand Mace"] = { + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["3374165039"] = { + ["AnyJewel"] = { ["max"] = 20, - ["min"] = 15, + ["min"] = 10, }, - ["One Hand Sword"] = { + ["BaseJewel"] = { ["max"] = 20, - ["min"] = 15, + ["min"] = 10, }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, + }, + ["3377888098"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, + ["specialCaseData"] = { }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, + ["tradeMod"] = { + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "explicit", }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, + }, + ["3386297724"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["id"] = "explicit.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", ["type"] = "explicit", }, }, - ["3283482523"] = { + ["3391917254"] = { ["AnyJewel"] = { - ["max"] = 4, + ["max"] = 3, ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 4, + ["RadiusJewel"] = { + ["max"] = 3, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3283482523", - ["text"] = "#% increased Attack Speed with Quarterstaves", + ["id"] = "explicit.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", ["type"] = "explicit", }, }, - ["328541901"] = { - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Amulet"] = { - ["max"] = 33, + ["3394832998"] = { + ["AnyJewel"] = { + ["max"] = 7, ["min"] = 5, }, - ["Boots"] = { - ["max"] = 33, + ["RadiusJewel"] = { + ["max"] = 7, ["min"] = 5, }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 33, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "explicit.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["type"] = "explicit", }, - ["Focus"] = { - ["max"] = 33, - ["min"] = 5, + }, + ["3395186672"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Gloves"] = { - ["max"] = 33, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Helmet"] = { - ["max"] = 36, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "explicit.stat_3395186672", + ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["type"] = "explicit", }, - ["Ring"] = { - ["max"] = 33, + }, + ["3398301358"] = { + ["AnyJewel"] = { + ["max"] = 15, ["min"] = 5, }, - ["Sceptre"] = { - ["max"] = 33, + ["BaseJewel"] = { + ["max"] = 15, ["min"] = 5, }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Staff"] = { - ["max"] = 33, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "explicit.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 5, + }, + ["3401186585"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Wand"] = { - ["max"] = 33, - ["min"] = 5, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "# to Intelligence", + ["id"] = "explicit.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["3291658075"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, + ["3409275777"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, + ["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", }, + }, + ["3417711605"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, + }, + ["3419203492"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", ["type"] = "explicit", }, }, - ["3292710273"] = { + ["3473929743"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3292710273", - ["text"] = "Gain # Rage when Hit by an Enemy", + ["id"] = "explicit.stat_3473929743", + ["text"] = "#% increased Pin Buildup", ["type"] = "explicit", }, }, - ["3299347043"] = { - ["Amulet"] = { - ["max"] = 149, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 174, - ["min"] = 10, - }, + ["3484657501"] = { ["Boots"] = { - ["max"] = 149, - ["min"] = 10, + ["max"] = 160, + ["min"] = 8, }, ["Chest"] = { - ["max"] = 214, - ["min"] = 7, + ["max"] = 276, + ["min"] = 4, }, ["Gloves"] = { - ["max"] = 149, - ["min"] = 7, + ["max"] = 160, + ["min"] = 8, }, ["Helmet"] = { - ["max"] = 174, - ["min"] = 7, - }, - ["Ring"] = { - ["max"] = 119, - ["min"] = 10, + ["max"] = 202, + ["min"] = 8, }, ["Shield"] = { - ["max"] = 189, - ["min"] = 10, + ["max"] = 256, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["3301100256"] = { - ["Chest"] = { - ["max"] = -36, - ["min"] = -60, + ["3485067555"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3301100256", - ["text"] = "#% increased Poison Duration on you", + ["id"] = "explicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", ["type"] = "explicit", }, }, - ["3321629045"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, + ["3489782002"] = { + ["Amulet"] = { + ["max"] = 89, + ["min"] = 8, }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "explicit", }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 6, + ["usePositiveSign"] = true, + }, + ["3513818125"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 6, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", + ["id"] = "explicit.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", ["type"] = "explicit", }, }, - ["3325883026"] = { - ["Amulet"] = { - ["max"] = 33, - ["min"] = 1, - }, - ["Belt"] = { - ["max"] = 29, - ["min"] = 1, - }, + ["3523867985"] = { ["Boots"] = { - ["max"] = 23, - ["min"] = 1, + ["max"] = 110, + ["min"] = 15, }, ["Chest"] = { - ["max"] = 36, - ["min"] = 1, + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 110, + ["min"] = 15, }, ["Helmet"] = { - ["max"] = 23, - ["min"] = 1, + ["max"] = 110, + ["min"] = 15, }, - ["Ring"] = { - ["max"] = 18, - ["min"] = 1, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + }, + ["3544800472"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", + ["id"] = "explicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", ["type"] = "explicit", }, }, - ["3336890334"] = { - ["1HMace"] = { - ["max"] = 123, - ["min"] = 2.5, + ["3556824919"] = { + ["Amulet"] = { + ["max"] = 39, + ["min"] = 10, }, - ["1HWeapon"] = { - ["max"] = 123, - ["min"] = 2.5, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["2HMace"] = { - ["max"] = 188.5, - ["min"] = 4, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 34, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "explicit", }, - ["2HWeapon"] = { - ["max"] = 188.5, - ["min"] = 2.5, + }, + ["3579898587"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Bow"] = { - ["max"] = 123, - ["min"] = 2.5, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Crossbow"] = { - ["max"] = 188.5, - ["min"] = 4, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 123, - ["min"] = 2.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_3579898587", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["type"] = "explicit", }, - ["Quarterstaff"] = { - ["max"] = 188.5, - ["min"] = 4, + }, + ["3585532255"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Spear"] = { - ["max"] = 123, - ["min"] = 2.5, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Talisman"] = { - ["max"] = 188.5, - ["min"] = 4, + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "explicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", ["type"] = "explicit", }, }, - ["335885735"] = { + ["3590792340"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_335885735", - ["text"] = "Bears the Mark of the Abyssal Lord", + ["id"] = "explicit.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", ["type"] = "explicit", }, }, - ["3362812763"] = { - ["Boots"] = { - ["max"] = 43, - ["min"] = 14, + ["3596695232"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Chest"] = { - ["max"] = 50, - ["min"] = 14, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Gloves"] = { - ["max"] = 43, - ["min"] = 14, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 43, - ["min"] = 14, + ["tradeMod"] = { + ["id"] = "explicit.stat_3596695232", + ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", }, - ["Shield"] = { - ["max"] = 50, - ["min"] = 14, + }, + ["3628935286"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", + ["id"] = "explicit.stat_3628935286", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["3372524247"] = { - ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, + ["3639275092"] = { + ["1HMace"] = { + ["max"] = -15, + ["min"] = -35, }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, + ["1HWeapon"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["2HMace"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["2HWeapon"] = { + ["max"] = -15, + ["min"] = -35, }, ["Boots"] = { - ["max"] = 45, - ["min"] = 6, + ["max"] = -15, + ["min"] = -35, + }, + ["Bow"] = { + ["max"] = -15, + ["min"] = -35, }, ["Chest"] = { - ["max"] = 45, - ["min"] = 6, + ["max"] = -15, + ["min"] = -35, + }, + ["Crossbow"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Flail"] = { + ["max"] = -15, + ["min"] = -35, }, ["Focus"] = { - ["max"] = 45, - ["min"] = 6, + ["max"] = -15, + ["min"] = -35, }, ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, + ["max"] = -15, + ["min"] = -35, }, ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, + ["max"] = -15, + ["min"] = -35, }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, + ["Quarterstaff"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Sceptre"] = { + ["max"] = -15, + ["min"] = -35, }, ["Shield"] = { - ["max"] = 45, - ["min"] = 6, + ["max"] = -15, + ["min"] = -35, }, - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = -15, + ["min"] = -35, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "explicit", + ["Staff"] = { + ["max"] = -15, + ["min"] = -35, }, - ["usePositiveSign"] = true, - }, - ["3374165039"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Talisman"] = { + ["max"] = -15, + ["min"] = -35, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Wand"] = { + ["max"] = -15, + ["min"] = -35, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", + ["id"] = "explicit.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", ["type"] = "explicit", }, }, - ["3377888098"] = { + ["3641543553"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["id"] = "explicit.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", ["type"] = "explicit", }, }, - ["3386297724"] = { + ["3665922113"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -29973,12 +16720,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3386297724", - ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["id"] = "explicit.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", ["type"] = "explicit", }, }, - ["3391917254"] = { + ["3666476747"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -29990,131 +16737,167 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3391917254", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["id"] = "explicit.stat_3666476747", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", ["type"] = "explicit", }, }, - ["3394832998"] = { + ["3668351662"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, + ["max"] = 25, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3394832998", - ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration", ["type"] = "explicit", }, }, - ["3395186672"] = { + ["3669820740"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 1, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3395186672", - ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["id"] = "explicit.stat_3669820740", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", ["type"] = "explicit", }, }, - ["3398301358"] = { + ["3676141501"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 1, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3398301358", - ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["id"] = "explicit.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["3401186585"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["3679418014"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 26, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3401186585", - ["text"] = "#% increased Parried Debuff Duration", + ["id"] = "explicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", ["type"] = "explicit", }, }, - ["3409275777"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["3695891184"] = { + ["1HMace"] = { + ["max"] = 84, + ["min"] = 4, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["1HWeapon"] = { + ["max"] = 84, + ["min"] = 4, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 84, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3409275777", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 84, + ["min"] = 4, }, - }, - ["3417711605"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Bow"] = { + ["max"] = 84, + ["min"] = 4, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Crossbow"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Gloves"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Quarterstaff"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Quiver"] = { + ["max"] = 53, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 53, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Talisman"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 84, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", + ["id"] = "explicit.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", ["type"] = "explicit", }, }, - ["3419203492"] = { + ["3700202631"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3419203492", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["id"] = "explicit.stat_3700202631", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", ["type"] = "explicit", }, }, - ["3473929743"] = { + ["3714003708"] = { ["AnyJewel"] = { ["max"] = 20, ["min"] = 10, @@ -30123,160 +16906,164 @@ return { ["max"] = 20, ["min"] = 10, }, + ["Quiver"] = { + ["max"] = 39, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3473929743", - ["text"] = "#% increased Pin Buildup", + ["id"] = "explicit.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", ["type"] = "explicit", }, }, - ["3484657501"] = { - ["Boots"] = { - ["max"] = 160, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 276, - ["min"] = 4, + ["3741323227"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Gloves"] = { - ["max"] = 160, - ["min"] = 8, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Helmet"] = { - ["max"] = 202, - ["min"] = 8, + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 256, - ["min"] = 8, + ["tradeMod"] = { + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "explicit", }, + }, + ["3749502527"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "# to Armour (Local)", + ["id"] = "explicit.stat_3749502527", + ["text"] = "#% chance to gain Volatility on Kill", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["3485067555"] = { + ["3752589831"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 3, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", + ["id"] = "explicit.stat_3752589831", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", ["type"] = "explicit", }, }, - ["3489782002"] = { - ["Amulet"] = { - ["max"] = 89, - ["min"] = 8, + ["3759663284"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["Quiver"] = { + ["max"] = 46, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["3513818125"] = { + ["3759735052"] = { ["AnyJewel"] = { - ["max"] = 3, + ["max"] = 4, ["min"] = 2, }, - ["RadiusJewel"] = { - ["max"] = 3, + ["BaseJewel"] = { + ["max"] = 4, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3513818125", - ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", ["type"] = "explicit", }, }, - ["3523867985"] = { - ["Boots"] = { - ["max"] = 110, - ["min"] = 15, + ["3771516363"] = { + ["Shield"] = { + ["max"] = 8, + ["min"] = 4, }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 110, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", }, - ["Helmet"] = { - ["max"] = 110, - ["min"] = 15, + }, + ["3774951878"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["id"] = "explicit.stat_3774951878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", ["type"] = "explicit", }, }, - ["3544800472"] = { + ["3780644166"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 32, + ["min"] = 18, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 32, + ["min"] = 18, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", + ["id"] = "explicit.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", ["type"] = "explicit", }, }, - ["3556824919"] = { - ["Amulet"] = { - ["max"] = 39, - ["min"] = 10, - }, + ["3787460122"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 25, + ["min"] = 15, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 34, - ["min"] = 10, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", + ["id"] = "explicit.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", ["type"] = "explicit", }, }, - ["3579898587"] = { + ["378796798"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -30288,12 +17075,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3579898587", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["id"] = "explicit.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", ["type"] = "explicit", }, }, - ["3585532255"] = { + ["3791899485"] = { ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -30302,383 +17089,420 @@ return { ["max"] = 15, ["min"] = 5, }, - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", + ["id"] = "explicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", ["type"] = "explicit", }, }, - ["3590792340"] = { + ["3811191316"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 8, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 8, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3590792340", - ["text"] = "#% increased Mana Flask Charges gained", + ["id"] = "explicit.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", ["type"] = "explicit", }, }, - ["3596695232"] = { + ["3821543413"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 3, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3596695232", - ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["id"] = "explicit.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", ["type"] = "explicit", }, }, - ["3628935286"] = { + ["3824372849"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 25, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3628935286", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + ["id"] = "explicit.stat_3824372849", + ["text"] = "#% increased Curse Duration", ["type"] = "explicit", }, }, - ["3639275092"] = { - ["1HMace"] = { - ["max"] = -15, - ["min"] = -35, + ["3835551335"] = { + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["max"] = -15, - ["min"] = -35, + ["tradeMod"] = { + ["id"] = "explicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "explicit", }, - ["2HMace"] = { - ["max"] = -15, - ["min"] = -35, + }, + ["3837707023"] = { + ["AnyJewel"] = { + ["max"] = 13, + ["min"] = 7, }, - ["2HWeapon"] = { - ["max"] = -15, - ["min"] = -35, + ["BaseJewel"] = { + ["max"] = 13, + ["min"] = 7, }, - ["Boots"] = { - ["max"] = -15, - ["min"] = -35, + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = -15, - ["min"] = -35, + ["tradeMod"] = { + ["id"] = "explicit.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "explicit", }, - ["Chest"] = { - ["max"] = -15, - ["min"] = -35, + ["usePositiveSign"] = true, + }, + ["3850614073"] = { + ["1HWeapon"] = { + ["max"] = 18, + ["min"] = 3, }, - ["Crossbow"] = { - ["max"] = -15, - ["min"] = -35, + ["Sceptre"] = { + ["max"] = 18, + ["min"] = 3, }, - ["Flail"] = { - ["max"] = -15, - ["min"] = -35, + ["specialCaseData"] = { }, - ["Focus"] = { - ["max"] = -15, - ["min"] = -35, + ["tradeMod"] = { + ["id"] = "explicit.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "explicit", }, - ["Gloves"] = { - ["max"] = -15, - ["min"] = -35, + ["usePositiveSign"] = true, + }, + ["3851254963"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 10, }, - ["Helmet"] = { - ["max"] = -15, - ["min"] = -35, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 10, }, - ["Quarterstaff"] = { - ["max"] = -15, - ["min"] = -35, + ["specialCaseData"] = { }, - ["Sceptre"] = { - ["max"] = -15, - ["min"] = -35, + ["tradeMod"] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + }, + ["3855016469"] = { + ["Body Armour"] = { + ["max"] = 50, + ["min"] = 40, }, ["Shield"] = { - ["max"] = -15, - ["min"] = -35, + ["max"] = 54, + ["min"] = 21, }, - ["Spear"] = { - ["max"] = -15, - ["min"] = -35, + ["specialCaseData"] = { }, - ["Staff"] = { - ["max"] = -15, - ["min"] = -35, + ["tradeMod"] = { + ["id"] = "explicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "explicit", }, - ["Talisman"] = { - ["max"] = -15, - ["min"] = -35, + }, + ["3856744003"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Wand"] = { - ["max"] = -15, - ["min"] = -35, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", + ["id"] = "explicit.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", ["type"] = "explicit", }, }, - ["3641543553"] = { + ["3858398337"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3641543553", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["id"] = "explicit.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", ["type"] = "explicit", }, }, - ["3665922113"] = { + ["3859848445"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 6, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 6, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3665922113", - ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["id"] = "explicit.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", ["type"] = "explicit", }, }, - ["3666476747"] = { + ["3865605585"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 7, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3666476747", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + ["id"] = "explicit.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "explicit", }, }, - ["3668351662"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["387439868"] = { + ["1HMace"] = { + ["max"] = 100, + ["min"] = 19, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["2HMace"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["2HWeapon"] = { + ["max"] = 139, + ["min"] = 19, + }, + ["Bow"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["Crossbow"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["Flail"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["Quarterstaff"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["Spear"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["Talisman"] = { + ["max"] = 139, + ["min"] = 34, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration", + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", ["type"] = "explicit", }, }, - ["3669820740"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["3885405204"] = { + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "explicit", }, + }, + ["388617051"] = { + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3669820740", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", ["type"] = "explicit", }, }, - ["3676141501"] = { + ["3891355829"] = { ["AnyJewel"] = { ["max"] = 1, ["min"] = 1, }, - ["BaseJewel"] = { + ["RadiusJewel"] = { ["max"] = 1, ["min"] = 1, }, - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", + ["id"] = "explicit.stat_3891355829|1", + ["text"] = "Upgrades Radius to Medium", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["3679418014"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 26, + ["391602279"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", + ["id"] = "explicit.stat_391602279", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", ["type"] = "explicit", }, }, - ["3695891184"] = { - ["1HMace"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["1HWeapon"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["2HMace"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["2HWeapon"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Bow"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Crossbow"] = { - ["max"] = 84, - ["min"] = 4, + ["3917489142"] = { + ["Amulet"] = { + ["max"] = 19, + ["min"] = 6, }, - ["Flail"] = { - ["max"] = 84, - ["min"] = 4, + ["Boots"] = { + ["max"] = 18, + ["min"] = 6, }, ["Gloves"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Quarterstaff"] = { - ["max"] = 84, - ["min"] = 4, + ["max"] = 18, + ["min"] = 6, }, - ["Quiver"] = { - ["max"] = 53, - ["min"] = 4, + ["Helmet"] = { + ["max"] = 19, + ["min"] = 6, }, ["Ring"] = { - ["max"] = 53, - ["min"] = 4, + ["max"] = 19, + ["min"] = 6, }, - ["Spear"] = { - ["max"] = 84, - ["min"] = 4, + ["specialCaseData"] = { }, - ["Staff"] = { - ["max"] = 84, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", }, - ["Talisman"] = { - ["max"] = 84, - ["min"] = 4, + }, + ["3936121440"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["Wand"] = { - ["max"] = 84, - ["min"] = 4, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", + ["id"] = "explicit.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", ["type"] = "explicit", }, }, - ["3700202631"] = { + ["394473632"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3700202631", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + ["id"] = "explicit.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", ["type"] = "explicit", }, }, - ["3714003708"] = { + ["3962278098"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 15, + ["min"] = 5, }, - ["Quiver"] = { - ["max"] = 39, - ["min"] = 10, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3714003708", - ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, }, - ["3741323227"] = { + ["3973629633"] = { ["AnyJewel"] = { ["max"] = 10, ["min"] = 5, @@ -30690,355 +17514,436 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", + ["id"] = "explicit.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", ["type"] = "explicit", }, }, - ["3749502527"] = { + ["3981240776"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Chest"] = { + ["max"] = 61, + ["min"] = 30, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3749502527", - ["text"] = "#% chance to gain Volatility on Kill", + ["id"] = "explicit.stat_3981240776", + ["text"] = "# to Spirit", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["3752589831"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["3984865854"] = { + ["1HWeapon"] = { + ["max"] = 65, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Sceptre"] = { + ["max"] = 65, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3752589831", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["id"] = "explicit.stat_3984865854", + ["text"] = "#% increased Spirit", ["type"] = "explicit", }, }, - ["3759663284"] = { + ["4009879772"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["Quiver"] = { - ["max"] = 46, + ["max"] = 20, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["id"] = "explicit.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", ["type"] = "explicit", }, }, - ["3759735052"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["4010677958"] = { + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", + ["id"] = "explicit.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", ["type"] = "explicit", }, }, - ["3771516363"] = { - ["Shield"] = { - ["max"] = 8, - ["min"] = 4, + ["4015621042"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 6, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 110, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "explicit", + ["Focus"] = { + ["max"] = 100, + ["min"] = 6, }, - }, - ["3774951878"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 6, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 101, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3774951878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield", ["type"] = "explicit", }, }, - ["3780644166"] = { - ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["4019237939"] = { + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, }, - ["specialCaseData"] = { + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", - ["type"] = "explicit", + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["3787460122"] = { - ["AnyJewel"] = { - ["max"] = 25, + ["One Hand Axe"] = { + ["max"] = 20, ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 25, + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 20, ["min"] = 15, }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3787460122", - ["text"] = "Offerings have #% increased Maximum Life", + ["id"] = "explicit.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", ["type"] = "explicit", }, }, - ["378796798"] = { + ["4032352472"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 12, + ["min"] = 8, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 12, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_378796798", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["id"] = "explicit.stat_4032352472", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", ["type"] = "explicit", }, }, - ["3791899485"] = { + ["4045894391"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3791899485", - ["text"] = "#% increased Ignite Magnitude", + ["id"] = "explicit.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", ["type"] = "explicit", }, }, - ["3811191316"] = { - ["AnyJewel"] = { - ["max"] = 8, + ["4052037485"] = { + ["Boots"] = { + ["max"] = 60, ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 8, + ["Chest"] = { + ["max"] = 96, + ["min"] = 2, + }, + ["Focus"] = { + ["max"] = 90, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 60, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 73, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 42, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3811191316", - ["text"] = "Minions have #% increased Area of Effect", + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["3821543413"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 1, + ["4067062424"] = { + ["Gloves"] = { + ["max"] = 30.5, + ["min"] = 1.5, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 1, + ["Quiver"] = { + ["max"] = 30.5, + ["min"] = 1.5, + }, + ["Ring"] = { + ["max"] = 30.5, + ["min"] = 1.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3821543413", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", ["type"] = "explicit", }, }, - ["3824372849"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["4080418644"] = { + ["1HMace"] = { + ["max"] = 33, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 5, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3824372849", - ["text"] = "#% increased Curse Duration", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 5, }, - }, - ["3835551335"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", - ["type"] = "explicit", + ["Belt"] = { + ["max"] = 36, + ["min"] = 5, }, - }, - ["3837707023"] = { - ["AnyJewel"] = { - ["max"] = 13, - ["min"] = 7, + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 13, - ["min"] = 7, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3837707023", - ["text"] = "Minions have #% to Chaos Resistance", - ["type"] = "explicit", + ["Flail"] = { + ["max"] = 33, + ["min"] = 5, }, - ["usePositiveSign"] = true, - }, - ["3850614073"] = { - ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 3, + ["Gloves"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, }, ["Sceptre"] = { - ["max"] = 18, - ["min"] = 3, + ["max"] = 33, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3850614073", - ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["3851254963"] = { + ["4081947835"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, + ["max"] = 5, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 10, + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", + ["id"] = "explicit.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "explicit", }, }, - ["3855016469"] = { - ["Body Armour"] = { - ["max"] = 50, - ["min"] = 40, + ["4089835882"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Shield"] = { - ["max"] = 54, - ["min"] = 21, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["id"] = "explicit.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", ["type"] = "explicit", }, }, - ["3856744003"] = { + ["4092130601"] = { ["AnyJewel"] = { - ["max"] = 7, + ["max"] = 10, ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 7, + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3856744003", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["id"] = "explicit.stat_4092130601", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "explicit", }, }, - ["3858398337"] = { + ["4095671657"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 1, + ["min"] = 1, }, - ["RadiusJewel"] = { + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { ["max"] = 3, - ["min"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3858398337", - ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["id"] = "explicit.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["3859848445"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 3, + ["4101445926"] = { + ["Focus"] = { + ["max"] = 20, + ["min"] = 18, }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 3, + ["Staff"] = { + ["max"] = 32, + ["min"] = 28, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3859848445", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["id"] = "explicit.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", ["type"] = "explicit", }, }, - ["3865605585"] = { + ["412709880"] = { ["AnyJewel"] = { ["max"] = 7, ["min"] = 3, @@ -31050,161 +17955,140 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3865605585", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["id"] = "explicit.stat_412709880", + ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", ["type"] = "explicit", }, }, - ["387439868"] = { - ["1HMace"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["2HMace"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 19, - }, - ["Bow"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["Crossbow"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["Flail"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["Quarterstaff"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["Spear"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["Talisman"] = { - ["max"] = 139, - ["min"] = 34, + ["4129825612"] = { + ["Body Armour"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", ["type"] = "explicit", }, }, - ["3885405204"] = { - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "explicit", + ["4139681126"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, }, - }, - ["388617051"] = { - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_388617051", - ["text"] = "#% increased Charges per use", + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", ["type"] = "explicit", }, }, - ["3891355829"] = { + ["4142814612"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3891355829|1", - ["text"] = "Upgrades Radius to Medium", + ["id"] = "explicit.stat_4142814612", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", ["type"] = "explicit", }, }, - ["391602279"] = { + ["4147897060"] = { ["AnyJewel"] = { ["max"] = 7, ["min"] = 3, }, - ["RadiusJewel"] = { + ["BaseJewel"] = { ["max"] = 7, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_391602279", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["id"] = "explicit.stat_4147897060", + ["text"] = "#% increased Block chance", ["type"] = "explicit", }, }, - ["3917489142"] = { - ["Amulet"] = { - ["max"] = 19, - ["min"] = 6, + ["4159248054"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Boots"] = { - ["max"] = 18, - ["min"] = 6, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Gloves"] = { - ["max"] = 18, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 19, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", }, - ["Ring"] = { - ["max"] = 19, - ["min"] = 6, + }, + ["416040624"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "explicit.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, }, - ["3936121440"] = { + ["4162678661"] = { ["AnyJewel"] = { - ["max"] = 5, + ["max"] = 4, ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 5, + ["max"] = 4, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3936121440", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["id"] = "explicit.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", ["type"] = "explicit", }, }, - ["394473632"] = { + ["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", + }, + }, + ["4180952808"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -31216,417 +18100,386 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_394473632", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["id"] = "explicit.stat_4180952808", + ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", ["type"] = "explicit", }, }, - ["3962278098"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, + ["4188894176"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 16, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["4220027924"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, }, ["Focus"] = { - ["max"] = 89, - ["min"] = 25, + ["max"] = 45, + ["min"] = 6, }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 45, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["3973629633"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["4225700219"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3973629633", - ["text"] = "#% increased Withered Magnitude", + ["id"] = "explicit.stat_4225700219", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", ["type"] = "explicit", }, }, - ["3981240776"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 30, + ["4226189338"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, }, - ["Chest"] = { - ["max"] = 61, - ["min"] = 30, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3981240776", - ["text"] = "# to Spirit", + ["id"] = "explicit.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["3984865854"] = { - ["1HWeapon"] = { - ["max"] = 65, - ["min"] = 10, + ["4234573345"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Sceptre"] = { - ["max"] = 65, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3984865854", - ["text"] = "#% increased Spirit", + ["id"] = "explicit.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", ["type"] = "explicit", }, }, - ["4009879772"] = { + ["4236566306"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 8, + ["min"] = 4, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 8, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4009879772", - ["text"] = "#% increased Life Flask Charges gained", + ["id"] = "explicit.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "explicit", }, }, - ["4010677958"] = { - ["1HWeapon"] = { - ["max"] = 33, + ["4258000627"] = { + ["AnyJewel"] = { + ["max"] = 1, ["min"] = 1, }, - ["Sceptre"] = { - ["max"] = 33, + ["RadiusJewel"] = { + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", + ["id"] = "explicit.stat_4258000627", + ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", ["type"] = "explicit", }, }, - ["4015621042"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 6, + ["4258720395"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 6, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Focus"] = { - ["max"] = 100, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_4258720395", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "explicit", }, - ["Helmet"] = { - ["max"] = 100, + }, + ["427684353"] = { + ["AnyJewel"] = { + ["max"] = 16, ["min"] = 6, }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 101, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", + ["id"] = "explicit.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", ["type"] = "explicit", }, }, - ["4019237939"] = { - ["Bow"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Dagger"] = { + ["429143663"] = { + ["AnyJewel"] = { ["max"] = 20, - ["min"] = 15, + ["min"] = 10, }, - ["Flail"] = { + ["BaseJewel"] = { ["max"] = 20, - ["min"] = 15, + ["min"] = 10, }, - ["One Hand Axe"] = { - ["max"] = 20, - ["min"] = 15, + ["specialCaseData"] = { }, - ["One Hand Mace"] = { - ["max"] = 20, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", + ["type"] = "explicit", }, - ["One Hand Sword"] = { + }, + ["440490623"] = { + ["AnyJewel"] = { ["max"] = 20, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 25, + ["min"] = 10, }, - ["Spear"] = { + ["BaseJewel"] = { ["max"] = 20, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Axe"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Mace"] = { - ["max"] = 33, - ["min"] = 25, - }, - ["Two Hand Sword"] = { - ["max"] = 33, - ["min"] = 25, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4019237939", - ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["id"] = "explicit.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "explicit", }, }, - ["4032352472"] = { + ["442393998"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4032352472", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + ["id"] = "explicit.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", ["type"] = "explicit", }, }, - ["4045894391"] = { + ["44972811"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4045894391", - ["text"] = "#% increased Damage with Quarterstaves", + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", ["type"] = "explicit", }, }, - ["4052037485"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 96, - ["min"] = 2, - }, - ["Focus"] = { - ["max"] = 90, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 60, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 73, - ["min"] = 5, + ["455816363"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Shield"] = { - ["max"] = 42, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4052037485", - ["text"] = "# to maximum Energy Shield (Local)", + ["id"] = "explicit.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["4067062424"] = { - ["Gloves"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, - ["Quiver"] = { - ["max"] = 30.5, - ["min"] = 1.5, + ["458438597"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Ring"] = { - ["max"] = 30.5, - ["min"] = 1.5, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold damage to Attacks", + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "explicit", }, }, - ["4080418644"] = { - ["1HMace"] = { - ["max"] = 33, - ["min"] = 5, + ["462424929"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["2HMace"] = { - ["max"] = 33, - ["min"] = 5, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "explicit.stat_462424929", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["type"] = "explicit", }, + }, + ["472520716"] = { ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Belt"] = { - ["max"] = 36, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 33, - ["min"] = 5, + ["max"] = 24, + ["min"] = 10, }, - ["Gloves"] = { - ["max"] = 33, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 33, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "explicit", }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, + }, + ["473429811"] = { + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 31, }, - ["Sceptre"] = { - ["max"] = 33, - ["min"] = 5, + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 31, }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Spear"] = { - ["max"] = 33, - ["min"] = 5, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 5, + ["Staff"] = { + ["max"] = 80, + ["min"] = 31, + }, + ["Wand"] = { + ["max"] = 80, + ["min"] = 31, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "explicit.stat_473429811", + ["text"] = "#% increased Freeze Buildup", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["4081947835"] = { + ["473917671"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 3, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["id"] = "explicit.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", ["type"] = "explicit", }, }, - ["4089835882"] = { + ["484792219"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -31638,12 +18491,29 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4089835882", - ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["id"] = "explicit.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", ["type"] = "explicit", }, }, - ["4092130601"] = { + ["491450213"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, + ["504915064"] = { ["AnyJewel"] = { ["max"] = 10, ["min"] = 5, @@ -31655,298 +18525,264 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4092130601", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["id"] = "explicit.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", ["type"] = "explicit", }, }, - ["4095671657"] = { + ["517664839"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, - ["Shield"] = { + ["RadiusJewel"] = { ["max"] = 3, - ["min"] = 1, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", + ["id"] = "explicit.stat_517664839", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["4101445926"] = { - ["Focus"] = { - ["max"] = 20, - ["min"] = 18, + ["518292764"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 1.01, }, - ["Staff"] = { - ["max"] = 32, - ["min"] = 28, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1.01, }, - ["Wand"] = { - ["max"] = 20, - ["min"] = 18, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 1.01, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 1.01, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4101445926", - ["text"] = "#% increased Mana Cost Efficiency", - ["type"] = "explicit", + ["Bow"] = { + ["max"] = 5, + ["min"] = 1.01, }, - }, - ["412709880"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 1.01, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["Flail"] = { + ["max"] = 5, + ["min"] = 1.01, }, - ["specialCaseData"] = { + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 1.01, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_412709880", - ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", - ["type"] = "explicit", + ["Spear"] = { + ["max"] = 5, + ["min"] = 1.01, }, - }, - ["4129825612"] = { - ["Body Armour"] = { - ["max"] = 15, - ["min"] = 10, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 1.01, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["id"] = "explicit.stat_518292764", + ["text"] = "#% to Critical Hit Chance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["4139681126"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, + ["51994685"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", + ["id"] = "explicit.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", ["type"] = "explicit", }, }, - ["4142814612"] = { + ["525523040"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 1, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4142814612", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + ["id"] = "explicit.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "explicit", }, }, - ["4147897060"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["53045048"] = { + ["Boots"] = { + ["max"] = 142, + ["min"] = 6, }, - ["BaseJewel"] = { - ["max"] = 7, + ["Chest"] = { + ["max"] = 251, ["min"] = 3, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4147897060", - ["text"] = "#% increased Block chance", - ["type"] = "explicit", + ["Gloves"] = { + ["max"] = 142, + ["min"] = 6, }, - }, - ["4159248054"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Helmet"] = { + ["max"] = 181, + ["min"] = 6, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Shield"] = { + ["max"] = 232, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4159248054", - ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["416040624"] = { + ["533892981"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_416040624", - ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["id"] = "explicit.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", ["type"] = "explicit", }, }, - ["4162678661"] = { + ["538241406"] = { ["AnyJewel"] = { - ["max"] = 4, + ["max"] = 7, ["min"] = 3, }, - ["RadiusJewel"] = { - ["max"] = 4, + ["BaseJewel"] = { + ["max"] = 7, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4162678661", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", ["type"] = "explicit", }, }, - ["4173554949"] = { - ["AnyJewel"] = { - ["max"] = 10, + ["55876295"] = { + ["1HMace"] = { + ["max"] = 9.9, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 10, + ["1HWeapon"] = { + ["max"] = 9.9, ["min"] = 5, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 9.9, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4173554949", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 9.9, + ["min"] = 5, }, - }, - ["4180952808"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Bow"] = { + ["max"] = 8.9, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Crossbow"] = { + ["max"] = 8.9, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 9.9, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4180952808", - ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", - ["type"] = "explicit", + ["Quarterstaff"] = { + ["max"] = 9.9, + ["min"] = 5, }, - }, - ["4188894176"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["Spear"] = { + ["max"] = 9.9, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["Talisman"] = { + ["max"] = 9.9, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4188894176", - ["text"] = "#% increased Damage with Bows", + ["id"] = "explicit.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", ["type"] = "explicit", }, }, - ["4215035940"] = { + ["565784293"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4215035940", - ["text"] = "On Corruption, Item gains two Enchantments", + ["id"] = "explicit.stat_565784293", + ["text"] = "#% increased Knockback Distance", ["type"] = "explicit", }, }, - ["4220027924"] = { + ["587431675"] = { ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 45, - ["min"] = 6, + ["max"] = 38, + ["min"] = 10, }, - ["Focus"] = { - ["max"] = 45, - ["min"] = 6, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "explicit", + ["max"] = 34, + ["min"] = 10, }, - ["usePositiveSign"] = true, - }, - ["4225700219"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4225700219", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", ["type"] = "explicit", }, }, - ["4226189338"] = { + ["591105508"] = { ["1HWeapon"] = { ["max"] = 5, ["min"] = 1, @@ -31966,98 +18802,64 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", + ["id"] = "explicit.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["4234573345"] = { + ["593241812"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 12, + ["min"] = 6, }, ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4234573345", - ["text"] = "#% increased Effect of Notable Passive Skills in Radius", - ["type"] = "explicit", - }, - }, - ["4236566306"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", + ["id"] = "explicit.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", ["type"] = "explicit", }, }, - ["4258000627"] = { + ["61644361"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 12, + ["min"] = 6, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4258000627", - ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", + ["id"] = "explicit.stat_61644361", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", ["type"] = "explicit", }, }, - ["4258720395"] = { + ["624954515"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, + ["max"] = 10, ["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", - }, - }, - ["427684353"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_427684353", - ["text"] = "#% increased Damage with Crossbows", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", ["type"] = "explicit", }, }, - ["429143663"] = { + ["627767961"] = { ["AnyJewel"] = { ["max"] = 20, ["min"] = 10, @@ -32069,29 +18871,38 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_429143663", - ["text"] = "Banner Skills have #% increased Area of Effect", + ["id"] = "explicit.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", ["type"] = "explicit", }, }, - ["440490623"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["644456512"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "explicit", }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + }, + ["648019518"] = { + ["LifeFlask"] = { + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_440490623", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", ["type"] = "explicit", }, }, - ["442393998"] = { + ["654207792"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -32103,143 +18914,192 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_442393998", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["id"] = "explicit.stat_654207792", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "explicit", }, }, - ["44972811"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { + ["656461285"] = { + ["Amulet"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 7, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", ["type"] = "explicit", }, }, - ["455816363"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["669069897"] = { + ["1HMace"] = { + ["max"] = 8.9, + ["min"] = 4, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["1HWeapon"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 7.9, + ["min"] = 4, + }, + ["Crossbow"] = { + ["max"] = 7.9, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Quarterstaff"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Talisman"] = { + ["max"] = 8.9, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_455816363", - ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["id"] = "explicit.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "explicit", }, }, - ["458438597"] = { + ["674553446"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["680068163"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", ["type"] = "explicit", }, }, - ["462424929"] = { + ["681332047"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 4, + ["min"] = 2, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Gloves"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["Quiver"] = { + ["max"] = 16, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_462424929", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "explicit", }, }, - ["472520716"] = { - ["Amulet"] = { - ["max"] = 24, + ["686254215"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", + ["id"] = "explicit.stat_686254215", + ["text"] = "#% increased Totem Life", ["type"] = "explicit", }, }, - ["473429811"] = { - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 31, + ["691932474"] = { + ["1HMace"] = { + ["max"] = 550, + ["min"] = 10, }, - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 31, + ["1HWeapon"] = { + ["max"] = 550, + ["min"] = 10, }, - ["AnyJewel"] = { - ["max"] = 20, + ["2HMace"] = { + ["max"] = 550, ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 20, + ["2HWeapon"] = { + ["max"] = 650, ["min"] = 10, }, - ["Staff"] = { - ["max"] = 80, - ["min"] = 31, + ["Bow"] = { + ["max"] = 650, + ["min"] = 10, }, - ["Wand"] = { - ["max"] = 80, - ["min"] = 31, + ["Crossbow"] = { + ["max"] = 650, + ["min"] = 10, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 550, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_473429811", - ["text"] = "#% increased Freeze Buildup", - ["type"] = "explicit", + ["Quarterstaff"] = { + ["max"] = 550, + ["min"] = 10, }, - }, - ["473917671"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Spear"] = { + ["max"] = 550, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Talisman"] = { + ["max"] = 550, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_473917671", - ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["484792219"] = { + ["693237939"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -32251,256 +19111,266 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_484792219", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", - ["type"] = "explicit", - }, - }, - ["491450213"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_491450213", - ["text"] = "Minions have #% increased Critical Hit Chance", + ["id"] = "explicit.stat_693237939", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, }, - ["504915064"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["700317374"] = { + ["LifeFlask"] = { + ["max"] = 80, + ["min"] = -50, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["ManaFlask"] = { + ["max"] = 80, + ["min"] = -50, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_504915064", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", ["type"] = "explicit", }, }, - ["517664839"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["707457662"] = { + ["Gloves"] = { + ["max"] = 8.9, + ["min"] = 4, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Ring"] = { + ["max"] = 6.9, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_517664839", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + ["id"] = "explicit.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", ["type"] = "explicit", }, }, - ["518292764"] = { + ["709508406"] = { ["1HMace"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 127.5, + ["min"] = 2, }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 127.5, + ["min"] = 2, }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 196, + ["min"] = 3.5, }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 196, + ["min"] = 2, }, ["Bow"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 127.5, + ["min"] = 2, }, ["Crossbow"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 196, + ["min"] = 3.5, }, ["Flail"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 127.5, + ["min"] = 2, }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 196, + ["min"] = 3.5, }, ["Spear"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 127.5, + ["min"] = 2, }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 1.01, + ["max"] = 196, + ["min"] = 3.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_518292764", - ["text"] = "#% to Critical Hit Chance", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["51994685"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, + ["712554801"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", + ["id"] = "explicit.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", ["type"] = "explicit", }, }, - ["525523040"] = { + ["715957346"] = { ["AnyJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_525523040", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["id"] = "explicit.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", ["type"] = "explicit", }, }, - ["53045048"] = { - ["Boots"] = { - ["max"] = 142, - ["min"] = 6, + ["734614379"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, }, - ["Chest"] = { - ["max"] = 251, - ["min"] = 3, + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 142, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "explicit", }, - ["Helmet"] = { - ["max"] = 181, + }, + ["736967255"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["AnyJewel"] = { + ["max"] = 12, ["min"] = 6, }, - ["Shield"] = { - ["max"] = 232, + ["BaseJewel"] = { + ["max"] = 12, ["min"] = 6, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "# to Evasion Rating (Local)", - ["type"] = "explicit", + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, }, - ["usePositiveSign"] = true, - }, - ["533892981"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_533892981", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, }, - ["538241406"] = { + ["737908626"] = { + ["1HWeapon"] = { + ["max"] = 73, + ["min"] = 27, + }, + ["2HWeapon"] = { + ["max"] = 109, + ["min"] = 40, + }, ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 59, + ["min"] = 27, + }, + ["Staff"] = { + ["max"] = 109, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 73, + ["min"] = 27, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_538241406", - ["text"] = "Damaging Ailments deal damage #% faster", + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "explicit", }, }, - ["55876295"] = { + ["748522257"] = { ["1HMace"] = { - ["max"] = 9.9, - ["min"] = 5, + ["max"] = 30, + ["min"] = 11, }, ["1HWeapon"] = { - ["max"] = 9.9, - ["min"] = 5, + ["max"] = 30, + ["min"] = 11, }, ["2HMace"] = { - ["max"] = 9.9, - ["min"] = 5, + ["max"] = 30, + ["min"] = 11, }, ["2HWeapon"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 8.9, - ["min"] = 5, + ["max"] = 30, + ["min"] = 11, }, ["Flail"] = { - ["max"] = 9.9, - ["min"] = 5, + ["max"] = 30, + ["min"] = 11, }, ["Quarterstaff"] = { - ["max"] = 9.9, - ["min"] = 5, + ["max"] = 30, + ["min"] = 11, }, ["Spear"] = { - ["max"] = 9.9, - ["min"] = 5, + ["max"] = 30, + ["min"] = 11, }, ["Talisman"] = { - ["max"] = 9.9, - ["min"] = 5, + ["max"] = 30, + ["min"] = 11, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_55876295", - ["text"] = "Leeches #% of Physical Damage as Life", + ["id"] = "explicit.stat_748522257", + ["text"] = "#% increased Stun Duration", ["type"] = "explicit", }, }, - ["565784293"] = { + ["770672621"] = { + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 21, + }, ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -32509,17 +19379,29 @@ return { ["max"] = 15, ["min"] = 5, }, + ["Sceptre"] = { + ["max"] = 50, + ["min"] = 21, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_565784293", - ["text"] = "#% increased Knockback Distance", + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", ["type"] = "explicit", }, }, - ["587431675"] = { + ["789117908"] = { + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 104, + ["min"] = 8, + }, ["Amulet"] = { - ["max"] = 38, + ["max"] = 69, ["min"] = 10, }, ["AnyJewel"] = { @@ -32530,79 +19412,85 @@ return { ["max"] = 15, ["min"] = 5, }, - ["Helmet"] = { - ["max"] = 34, + ["Focus"] = { + ["max"] = 69, ["min"] = 10, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, - ["591105508"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, + ["Ring"] = { + ["max"] = 69, + ["min"] = 8, }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, + ["Sceptre"] = { + ["max"] = 69, + ["min"] = 8, }, ["Staff"] = { - ["max"] = 7, - ["min"] = 1, + ["max"] = 104, + ["min"] = 8, }, ["Wand"] = { - ["max"] = 5, - ["min"] = 1, + ["max"] = 69, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["593241812"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["791928121"] = { + ["1HMace"] = { + ["max"] = 80, + ["min"] = 21, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["2HMace"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Flail"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Quarterstaff"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Spear"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Talisman"] = { + ["max"] = 80, + ["min"] = 21, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_593241812", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["id"] = "explicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", ["type"] = "explicit", }, }, - ["61644361"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, + ["793875384"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_61644361", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["id"] = "explicit.stat_793875384", + ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", ["type"] = "explicit", }, }, - ["624954515"] = { + ["795138349"] = { ["AnyJewel"] = { ["max"] = 10, ["min"] = 5, @@ -32614,252 +19502,216 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", ["type"] = "explicit", }, }, - ["627767961"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["803737631"] = { + ["Amulet"] = { + ["max"] = 450, + ["min"] = 11, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Gloves"] = { + ["max"] = 550, + ["min"] = 11, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 550, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_627767961", - ["text"] = "#% increased Damage while you have an active Charm", - ["type"] = "explicit", + ["Quiver"] = { + ["max"] = 550, + ["min"] = 11, }, - }, - ["644456512"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 8, + ["Ring"] = { + ["max"] = 450, + ["min"] = 11, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["648019518"] = { - ["LifeFlask"] = { - ["max"] = 15, - ["min"] = 15, + ["809229260"] = { + ["Belt"] = { + ["max"] = 255, + ["min"] = 12, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_648019518", - ["text"] = "Removes #% of Life Recovered from Mana when used", + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["654207792"] = { + ["818778753"] = { ["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", + ["max"] = 10, + ["min"] = 5, }, - }, - ["656461285"] = { - ["Amulet"] = { + ["BaseJewel"] = { ["max"] = 10, - ["min"] = 7, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "explicit", }, }, - ["669069897"] = { + ["821021828"] = { ["1HMace"] = { - ["max"] = 8.9, - ["min"] = 4, + ["max"] = 5, + ["min"] = 2, }, ["1HWeapon"] = { - ["max"] = 8.9, - ["min"] = 4, + ["max"] = 5, + ["min"] = 2, }, ["2HMace"] = { - ["max"] = 8.9, - ["min"] = 4, + ["max"] = 5, + ["min"] = 2, }, ["2HWeapon"] = { - ["max"] = 8.9, - ["min"] = 4, + ["max"] = 5, + ["min"] = 2, }, ["Bow"] = { - ["max"] = 7.9, - ["min"] = 4, + ["max"] = 5, + ["min"] = 2, }, ["Crossbow"] = { - ["max"] = 7.9, - ["min"] = 4, + ["max"] = 5, + ["min"] = 2, }, ["Flail"] = { - ["max"] = 8.9, - ["min"] = 4, + ["max"] = 5, + ["min"] = 2, }, ["Quarterstaff"] = { - ["max"] = 8.9, - ["min"] = 4, + ["max"] = 5, + ["min"] = 2, }, ["Spear"] = { - ["max"] = 8.9, - ["min"] = 4, + ["max"] = 5, + ["min"] = 2, }, ["Talisman"] = { - ["max"] = 8.9, - ["min"] = 4, + ["max"] = 5, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_669069897", - ["text"] = "Leeches #% of Physical Damage as Mana", + ["id"] = "explicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", ["type"] = "explicit", }, }, - ["674553446"] = { + ["821241191"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", + ["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", }, }, - ["680068163"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["828533480"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", + ["id"] = "explicit.stat_828533480", + ["text"] = "#% Chance to gain a Charge when you kill an enemy", ["type"] = "explicit", }, }, - ["681332047"] = { + ["830345042"] = { ["AnyJewel"] = { ["max"] = 4, ["min"] = 2, }, - ["BaseJewel"] = { + ["RadiusJewel"] = { ["max"] = 4, ["min"] = 2, }, - ["Gloves"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["Quiver"] = { - ["max"] = 16, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "explicit.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", ["type"] = "explicit", }, }, - ["686254215"] = { + ["844449513"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_686254215", - ["text"] = "#% increased Totem Life", + ["id"] = "explicit.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "explicit", }, }, - ["691932474"] = { - ["1HMace"] = { - ["max"] = 550, - ["min"] = 10, - }, + ["849987426"] = { ["1HWeapon"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 650, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 650, - ["min"] = 10, - }, - ["Crossbow"] = { - ["max"] = 650, - ["min"] = 10, - }, - ["Flail"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 550, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 550, - ["min"] = 10, + ["max"] = 37, + ["min"] = 2, }, - ["Talisman"] = { - ["max"] = 550, - ["min"] = 10, + ["Sceptre"] = { + ["max"] = 37, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_691932474", - ["text"] = "# to Accuracy Rating (Local)", + ["id"] = "explicit.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["693237939"] = { + ["868556494"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -32871,1138 +19723,1238 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_693237939", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["id"] = "explicit.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", ["type"] = "explicit", }, }, - ["700317374"] = { + ["872504239"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", + ["type"] = "explicit", + }, + }, + ["886931978"] = { ["LifeFlask"] = { - ["max"] = 80, - ["min"] = -50, + ["max"] = 100, + ["min"] = 51, }, - ["ManaFlask"] = { - ["max"] = 80, - ["min"] = -50, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", + ["type"] = "explicit", + }, + }, + ["915769802"] = { + ["Belt"] = { + ["max"] = 304, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 352, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 304, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 304, + ["min"] = 6, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["707457662"] = { - ["Gloves"] = { - ["max"] = 8.9, - ["min"] = 4, + ["918325986"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Ring"] = { - ["max"] = 6.9, - ["min"] = 4, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["id"] = "explicit.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", ["type"] = "explicit", }, }, - ["709508406"] = { + ["9187492"] = { ["1HMace"] = { - ["max"] = 127.5, - ["min"] = 2, + ["max"] = 5, + ["min"] = 1, }, ["1HWeapon"] = { - ["max"] = 127.5, - ["min"] = 2, + ["max"] = 5, + ["min"] = 1, }, ["2HMace"] = { - ["max"] = 196, - ["min"] = 3.5, - }, - ["2HWeapon"] = { - ["max"] = 196, + ["max"] = 7, ["min"] = 2, }, - ["Bow"] = { - ["max"] = 127.5, + ["2HWeapon"] = { + ["max"] = 7, ["min"] = 2, }, - ["Crossbow"] = { - ["max"] = 196, - ["min"] = 3.5, + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, }, ["Flail"] = { - ["max"] = 127.5, - ["min"] = 2, + ["max"] = 5, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, }, ["Quarterstaff"] = { - ["max"] = 196, - ["min"] = 3.5, + ["max"] = 7, + ["min"] = 2, }, ["Spear"] = { - ["max"] = 127.5, - ["min"] = 2, + ["max"] = 5, + ["min"] = 1, }, ["Talisman"] = { - ["max"] = 196, - ["min"] = 3.5, + ["max"] = 7, + ["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, + }, + ["BaseJewel"] = { + ["max"] = -5, + ["min"] = -10, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "explicit", + }, + }, + ["942519401"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage", + ["id"] = "explicit.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", ["type"] = "explicit", }, }, - ["712554801"] = { + ["944643028"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_712554801", - ["text"] = "#% increased Effect of your Mark Skills", + ["id"] = "explicit.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, }, - ["715957346"] = { + ["945774314"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_715957346", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["id"] = "explicit.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", ["type"] = "explicit", }, }, - ["734614379"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, + ["959641748"] = { + ["ManaFlask"] = { + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", + ["id"] = "explicit.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", ["type"] = "explicit", }, }, - ["736967255"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, + ["980177976"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 30, + ["tradeMod"] = { + ["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, }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, + ["Body Armour"] = { + ["max"] = 10, + ["min"] = 8, }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["986397080"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 36, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", ["type"] = "explicit", }, }, - ["737908626"] = { - ["1HWeapon"] = { - ["max"] = 73, - ["min"] = 27, + ["99927264"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 36, }, - ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 40, + ["specialCaseData"] = { }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "explicit.stat_99927264", + ["text"] = "#% reduced Shock duration on you", + ["type"] = "explicit", }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + }, + }, + ["Implicit"] = { + ["1050105434"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, }, - ["Focus"] = { - ["max"] = 59, - ["min"] = 27, + ["specialCaseData"] = { }, - ["Staff"] = { - ["max"] = 109, - ["min"] = 40, + ["tradeMod"] = { + ["id"] = "implicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "implicit", }, - ["Wand"] = { - ["max"] = 73, - ["min"] = 27, + ["usePositiveSign"] = true, + }, + ["1137147997"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "explicit", + ["id"] = "implicit.stat_1137147997", + ["text"] = "Unblockable", + ["type"] = "implicit", }, }, - ["748522257"] = { - ["1HMace"] = { + ["1207554355"] = { + ["Quiver"] = { ["max"] = 30, - ["min"] = 11, + ["min"] = 20, }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 11, + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 11, + ["tradeMod"] = { + ["id"] = "implicit.stat_1207554355", + ["text"] = "#% increased Arrow Speed", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 11, + }, + ["1379411836"] = { + ["Amulet"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 11, + ["Helmet"] = { + ["max"] = 24, + ["min"] = 16, }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 11, + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 11, + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 11, + ["tradeMod"] = { + ["id"] = "implicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["1389754388"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_748522257", - ["text"] = "#% increased Stun Duration", - ["type"] = "explicit", + ["id"] = "implicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "implicit", }, }, - ["770672621"] = { - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 21, + ["1412682799"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "implicit.stat_1412682799", + ["text"] = "Used when you become Poisoned", + ["type"] = "implicit", }, - ["Sceptre"] = { - ["max"] = 50, - ["min"] = 21, + }, + ["1416292992"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_1416292992", + ["text"] = "Has # Charm Slot", + ["type"] = "implicit", }, }, - ["789117908"] = { - ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 8, + ["1434716233"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, ["2HWeapon"] = { - ["max"] = 104, - ["min"] = 8, - }, - ["Amulet"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 69, - ["min"] = 8, + ["max"] = 1, + ["min"] = 1, }, - ["Sceptre"] = { - ["max"] = 69, - ["min"] = 8, + ["specialCaseData"] = { }, - ["Staff"] = { - ["max"] = 104, - ["min"] = 8, + ["tradeMod"] = { + ["id"] = "implicit.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", + ["type"] = "implicit", }, - ["Wand"] = { - ["max"] = 69, + }, + ["1444556985"] = { + ["Chest"] = { + ["max"] = 14, ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "explicit", + ["id"] = "implicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "implicit", }, }, - ["791928121"] = { - ["1HMace"] = { - ["max"] = 80, - ["min"] = 21, - }, + ["1451444093"] = { ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["2HMace"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 21, + ["max"] = 1, + ["min"] = 1, }, ["Flail"] = { - ["max"] = 80, - ["min"] = 21, + ["max"] = 1, + ["min"] = 1, }, - ["Quarterstaff"] = { - ["max"] = 80, - ["min"] = 21, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 80, - ["min"] = 21, + ["tradeMod"] = { + ["id"] = "implicit.stat_1451444093", + ["text"] = "Bifurcates Critical Hits", + ["type"] = "implicit", }, - ["Talisman"] = { - ["max"] = 80, - ["min"] = 21, + }, + ["1458343515"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "explicit", + ["id"] = "implicit.stat_1458343515", + ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", + ["type"] = "implicit", }, }, - ["793875384"] = { + ["1503146834"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_793875384", - ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", - ["type"] = "explicit", + ["id"] = "implicit.stat_1503146834", + ["text"] = "Crushes Enemies on Hit", + ["type"] = "implicit", }, }, - ["795138349"] = { - ["AnyJewel"] = { + ["1541903247"] = { + ["2HMace"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 10, }, - ["BaseJewel"] = { + ["2HWeapon"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - ["type"] = "explicit", + ["id"] = "implicit.stat_1541903247", + ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", + ["type"] = "implicit", }, }, - ["803737631"] = { - ["Amulet"] = { - ["max"] = 450, - ["min"] = 11, + ["1570770415"] = { + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Gloves"] = { - ["max"] = 550, - ["min"] = 11, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 550, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "implicit", }, + }, + ["1573130764"] = { ["Quiver"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["Ring"] = { - ["max"] = 450, - ["min"] = 11, + ["max"] = 4, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "explicit", + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["809229260"] = { - ["Belt"] = { - ["max"] = 255, - ["min"] = 12, + ["1589917703"] = { + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", - ["type"] = "explicit", + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["818778753"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["1671376347"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "explicit", + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["821021828"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 2, + ["1691862754"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 2, + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "implicit.stat_1691862754", + ["text"] = "Used when you become Frozen", + ["type"] = "implicit", }, + }, + ["1702195217"] = { ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 2, + ["max"] = 18, + ["min"] = 12, }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 2, + ["max"] = 18, + ["min"] = 12, + }, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "implicit.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "implicit", }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 2, + ["usePositiveSign"] = true, + }, + ["1745952865"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", - ["type"] = "explicit", + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "implicit", }, }, - ["821241191"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["1803308202"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - ["type"] = "explicit", + ["id"] = "implicit.stat_1803308202", + ["text"] = "#% increased Bolt Speed", + ["type"] = "implicit", }, }, - ["821948283"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, + ["1810482573"] = { + ["Charm"] = { + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_821948283", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", - ["type"] = "explicit", + ["id"] = "implicit.stat_1810482573", + ["text"] = "Used when you become Stunned", + ["type"] = "implicit", }, }, - ["828533480"] = { + ["1836676211"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_828533480", - ["text"] = "#% Chance to gain a Charge when you kill an enemy", - ["type"] = "explicit", + ["id"] = "implicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "implicit", }, }, - ["830345042"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["1856590738"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_830345042", - ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", - ["type"] = "explicit", + ["id"] = "implicit.stat_1856590738", + ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", + ["type"] = "implicit", }, }, - ["844449513"] = { - ["AnyJewel"] = { + ["1967051901"] = { + ["2HWeapon"] = { ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { + ["Crossbow"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_844449513", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", - ["type"] = "explicit", + ["id"] = "implicit.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "implicit", }, }, - ["849987426"] = { - ["1HWeapon"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 37, - ["min"] = 2, + ["1978899297"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_849987426", - ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", - ["type"] = "explicit", + ["id"] = "implicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["868556494"] = { - ["AnyJewel"] = { - ["max"] = 2, + ["1980802737"] = { + ["2HWeapon"] = { + ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 2, + ["Crossbow"] = { + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_868556494", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", - ["type"] = "explicit", + ["id"] = "implicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "implicit", }, }, - ["872504239"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["2016937536"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2016937536", + ["text"] = "Used when you take Lightning damage from a Hit", + ["type"] = "implicit", + }, + }, + ["2055966527"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_872504239", - ["text"] = "#% increased Stun Buildup with Maces", - ["type"] = "explicit", + ["id"] = "implicit.stat_2055966527", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", }, }, - ["886931978"] = { - ["LifeFlask"] = { - ["max"] = 100, - ["min"] = 51, + ["2194114101"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_886931978", - ["text"] = "#% more Recovery if used while on Low Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "implicit", }, }, - ["915769802"] = { + ["2222186378"] = { ["Belt"] = { - ["max"] = 304, - ["min"] = 6, + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "implicit", }, + }, + ["2250533757"] = { ["Boots"] = { - ["max"] = 352, - ["min"] = 6, + ["max"] = 10, + ["min"] = 5, }, ["Chest"] = { - ["max"] = 304, - ["min"] = 6, + ["max"] = 5, + ["min"] = 5, }, - ["Shield"] = { - ["max"] = 304, - ["min"] = 6, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", + }, + }, + ["2251279027"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", + ["id"] = "implicit.stat_2251279027", + ["text"] = "# to Level of all Corrupted Skill Gems", + ["type"] = "implicit", }, ["usePositiveSign"] = true, }, - ["918325986"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["2321178454"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Quiver"] = { + ["max"] = 100, + ["min"] = 100, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_918325986", - ["text"] = "#% increased Skill Speed while Shapeshifted", - ["type"] = "explicit", + ["id"] = "implicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "implicit", }, }, - ["9187492"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 1, + ["239367161"] = { + ["Quiver"] = { + ["max"] = 40, + ["min"] = 25, }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 7, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "implicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "implicit", }, + }, + ["2463230181"] = { ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, + ["max"] = 50, + ["min"] = 50, }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 1, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, }, - ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 7, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "implicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "implicit", }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 1, + ["usePositiveSign"] = true, + }, + ["2527686725"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, ["Talisman"] = { - ["max"] = 7, - ["min"] = 2, + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_9187492", - ["text"] = "# to Level of all Melee Skills", - ["type"] = "explicit", + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["924253255"] = { - ["AnyJewel"] = { - ["max"] = -5, - ["min"] = -10, - }, - ["BaseJewel"] = { - ["max"] = -5, - ["min"] = -10, + ["2646093132"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "explicit", + ["id"] = "implicit.stat_2646093132", + ["text"] = "Inflict Abyssal Wasting on Hit", + ["type"] = "implicit", }, }, - ["942519401"] = { - ["AnyJewel"] = { + ["2694482655"] = { + ["1HMace"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { + ["1HWeapon"] = { ["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"] = "implicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["944643028"] = { - ["AnyJewel"] = { + ["2733960806"] = { + ["Belt"] = { ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2733960806", + ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", + ["type"] = "implicit", + }, + }, + ["2778646494"] = { + ["Charm"] = { ["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"] = "implicit.stat_2778646494", + ["text"] = "Used when you are affected by a Slow", + ["type"] = "implicit", }, }, - ["945774314"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { + ["2797971005"] = { + ["Quiver"] = { ["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"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "implicit", }, }, - ["959641748"] = { - ["ManaFlask"] = { - ["max"] = 15, - ["min"] = 15, + ["2891184298"] = { + ["Ring"] = { + ["max"] = 10, + ["min"] = 7, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_959641748", - ["text"] = "Removes #% of Mana Recovered from Life when used", - ["type"] = "explicit", + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", }, }, - ["980177976"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["2901986750"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, }, - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 16, + ["min"] = 8, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_980177976", - ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", - ["type"] = "explicit", + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["983749596"] = { - ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, + ["Helmet"] = { + ["max"] = 16, + ["min"] = 8, }, - ["Body Armour"] = { + ["Ring"] = { ["max"] = 10, - ["min"] = 8, + ["min"] = 7, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["986397080"] = { + ["2923486259"] = { ["Chest"] = { - ["max"] = 60, - ["min"] = 36, + ["max"] = 13, + ["min"] = 7, + }, + ["Ring"] = { + ["max"] = 13, + ["min"] = 7, + }, + ["Shield"] = { + ["max"] = 19, + ["min"] = 11, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "explicit", + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["99927264"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, + ["2933846633"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_99927264", - ["text"] = "#% reduced Shock duration on you", - ["type"] = "explicit", + ["id"] = "implicit.stat_2933846633", + ["text"] = "Dazes on Hit", + ["type"] = "implicit", }, }, - }, - ["Implicit"] = { - ["1050105434"] = { - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["2968503605"] = { + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 50, + }, + ["Talisman"] = { + ["max"] = 80, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "implicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["1137147997"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Flail"] = { + ["2994271459"] = { + ["Charm"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1137147997", - ["text"] = "Unblockable", + ["id"] = "implicit.stat_2994271459", + ["text"] = "Used when you take Cold damage from a Hit", ["type"] = "implicit", }, }, - ["1207554355"] = { + ["3032590688"] = { ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 2.5, + ["min"] = 2.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1207554355", - ["text"] = "#% increased Arrow Speed", + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "implicit", }, }, - ["1379411836"] = { + ["3182714256"] = { ["Amulet"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 24, - ["min"] = 16, + ["max"] = 2, + ["min"] = -2, }, ["Ring"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 2, + ["min"] = -2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1379411836", - ["text"] = "# to all Attributes", + ["id"] = "implicit.stat_3182714256", + ["text"] = "# Prefix Modifier allowed", ["type"] = "implicit", }, ["usePositiveSign"] = true, }, - ["1389754388"] = { - ["Belt"] = { - ["max"] = 20, - ["min"] = 15, + ["3261801346"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", + ["id"] = "implicit.stat_3261801346", + ["text"] = "# to Dexterity", ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["1412682799"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, + ["328541901"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1412682799", - ["text"] = "Used when you become Poisoned", + ["id"] = "implicit.stat_328541901", + ["text"] = "# to Intelligence", ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["1416292992"] = { - ["Belt"] = { - ["max"] = 1, - ["min"] = 1, + ["3299347043"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["Chest"] = { + ["max"] = 80, + ["min"] = 60, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1416292992", - ["text"] = "Has # Charm Slot", + ["id"] = "implicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["1434716233"] = { - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { + ["3310778564"] = { + ["Charm"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1434716233", - ["text"] = "Warcries Empower an additional Attack", + ["id"] = "implicit.stat_3310778564", + ["text"] = "Used when you take Chaos damage from a Hit", ["type"] = "implicit", }, }, - ["1444556985"] = { - ["Chest"] = { - ["max"] = 14, - ["min"] = 8, + ["3325883026"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", + ["id"] = "implicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", ["type"] = "implicit", }, }, - ["1451444093"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, + ["3362812763"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1451444093", - ["text"] = "Bifurcates Critical Hits", + ["id"] = "implicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["1503146834"] = { - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["3372524247"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1503146834", - ["text"] = "Crushes Enemies on Hit", + ["id"] = "implicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["1541903247"] = { - ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, + ["3398402065"] = { ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = -50, + ["min"] = -50, + }, + ["Bow"] = { + ["max"] = -50, + ["min"] = -50, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1541903247", - ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", + ["id"] = "implicit.stat_3398402065", + ["text"] = "#% increased Projectile Range", ["type"] = "implicit", }, }, - ["1570770415"] = { - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, + ["3544800472"] = { + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", + ["id"] = "implicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", ["type"] = "implicit", }, }, - ["1573130764"] = { - ["Quiver"] = { - ["max"] = 4, - ["min"] = 4, + ["3585532255"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", + ["id"] = "implicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", ["type"] = "implicit", }, }, - ["1589917703"] = { - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 30, + ["3675300253"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 30, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "implicit.stat_3675300253", + ["text"] = "Strikes deal Splash Damage", ["type"] = "implicit", }, }, - ["1671376347"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["3676540188"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "implicit.stat_3676540188", + ["text"] = "Used when you start Bleeding", ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["1691862754"] = { + ["3699444296"] = { ["Charm"] = { ["max"] = 1, ["min"] = 1, @@ -34010,1406 +20962,1494 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1691862754", - ["text"] = "Used when you become Frozen", + ["id"] = "implicit.stat_3699444296", + ["text"] = "Used when you become Shocked", ["type"] = "implicit", }, }, - ["1702195217"] = { - ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Quarterstaff"] = { - ["max"] = 18, - ["min"] = 12, + ["3854901951"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1702195217", - ["text"] = "#% to Block chance", + ["id"] = "implicit.stat_3854901951", + ["text"] = "Used when you take Fire damage from a Hit", ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["1745952865"] = { + ["3855016469"] = { ["Chest"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", + ["id"] = "implicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "implicit", }, }, - ["1803308202"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["3917489142"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 12, }, - ["Crossbow"] = { + ["Belt"] = { ["max"] = 30, ["min"] = 20, }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 6, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1803308202", - ["text"] = "#% increased Bolt Speed", + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", ["type"] = "implicit", }, }, - ["1810482573"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, + ["3954735777"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1810482573", - ["text"] = "Used when you become Stunned", + ["id"] = "implicit.stat_3954735777", + ["text"] = "#% chance to Poison on Hit with Attacks", ["type"] = "implicit", }, }, - ["1836676211"] = { - ["Belt"] = { + ["3981240776"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Chest"] = { ["max"] = 30, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", + ["id"] = "implicit.stat_3981240776", + ["text"] = "# to Spirit", ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["1967051901"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { + ["4010341289"] = { + ["Charm"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1967051901", - ["text"] = "Loads an additional bolt", + ["id"] = "implicit.stat_4010341289", + ["text"] = "Used when you kill a Rare or Unique enemy", ["type"] = "implicit", }, }, - ["1978899297"] = { - ["Chest"] = { + ["4077843608"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", + ["id"] = "implicit.stat_4077843608", + ["text"] = "Has 1 Socket", ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["1980802737"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["4080418644"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_1980802737", - ["text"] = "Grenade Skills Fire an additional Projectile", + ["id"] = "implicit.stat_4080418644", + ["text"] = "# to Strength", ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2016937536"] = { - ["Charm"] = { + ["4126210832"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2016937536", - ["text"] = "Used when you take Lightning damage from a Hit", + ["id"] = "implicit.stat_4126210832", + ["text"] = "Always Hits", ["type"] = "implicit", }, }, - ["2055966527"] = { - ["Quiver"] = { + ["4220027924"] = { + ["Ring"] = { ["max"] = 30, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2055966527", - ["text"] = "Attacks have #% chance to cause Bleeding", + ["id"] = "implicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2194114101"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["458438597"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "implicit", }, }, - ["2222186378"] = { + ["462041840"] = { ["Belt"] = { - ["max"] = 30, + ["max"] = 20, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", + ["id"] = "implicit.stat_462041840", + ["text"] = "#% of Flask Recovery applied Instantly", ["type"] = "implicit", }, }, - ["2250533757"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 5, + ["548198834"] = { + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 16, }, - ["Chest"] = { - ["max"] = 5, - ["min"] = 5, + ["Quarterstaff"] = { + ["max"] = 16, + ["min"] = 16, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "implicit.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", ["type"] = "implicit", }, }, - ["2251279027"] = { - ["Chest"] = { + ["585126960"] = { + ["Charm"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2251279027", - ["text"] = "# to Level of all Corrupted Skill Gems", + ["id"] = "implicit.stat_585126960", + ["text"] = "Used when you become Ignited", ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["2321178454"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Crossbow"] = { + ["624954515"] = { + ["Quiver"] = { ["max"] = 30, ["min"] = 20, }, - ["Quiver"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "implicit", - }, - }, - ["239367161"] = { - ["Quiver"] = { - ["max"] = 40, - ["min"] = 25, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", ["type"] = "implicit", }, }, - ["2463230181"] = { - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Bow"] = { - ["max"] = 50, - ["min"] = 50, + ["644456512"] = { + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["id"] = "implicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["2527686725"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Talisman"] = { + ["680068163"] = { + ["Belt"] = { ["max"] = 30, ["min"] = 20, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", - ["type"] = "implicit", - }, - }, - ["2646093132"] = { - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2646093132", - ["text"] = "Inflict Abyssal Wasting on Hit", + ["id"] = "implicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", ["type"] = "implicit", }, }, - ["2694482655"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["1HWeapon"] = { + ["681332047"] = { + ["Quiver"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 7, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["2778646494"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2778646494", - ["text"] = "Used when you are affected by a Slow", - ["type"] = "implicit", + ["718638445"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = -2, }, - }, - ["2797971005"] = { - ["Quiver"] = { - ["max"] = 3, - ["min"] = 2, + ["Ring"] = { + ["max"] = 2, + ["min"] = -2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["id"] = "implicit.stat_718638445", + ["text"] = "# Suffix Modifier allowed", ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2891184298"] = { - ["Ring"] = { - ["max"] = 10, - ["min"] = 7, + ["731781020"] = { + ["Belt"] = { + ["max"] = 0.17, + ["min"] = 0.17, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "implicit.stat_731781020", + ["text"] = "Flasks gain # charges per Second", ["type"] = "implicit", }, }, - ["2901986750"] = { + ["789117908"] = { ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["Boots"] = { - ["max"] = 16, - ["min"] = 8, + ["max"] = 30, + ["min"] = 20, }, ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 50, + ["min"] = 40, }, - ["Helmet"] = { - ["max"] = 16, - ["min"] = 8, + ["specialCaseData"] = { }, - ["Ring"] = { - ["max"] = 10, - ["min"] = 7, + ["tradeMod"] = { + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + }, + ["791928121"] = { + ["2HMace"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["id"] = "implicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["2923486259"] = { - ["Chest"] = { - ["max"] = 13, - ["min"] = 7, - }, + ["803737631"] = { ["Ring"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["Shield"] = { - ["max"] = 19, - ["min"] = 11, + ["max"] = 160, + ["min"] = 120, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "implicit.stat_803737631", + ["text"] = "# to Accuracy Rating", ["type"] = "implicit", }, ["usePositiveSign"] = true, }, - ["2933846633"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["821241191"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "implicit", }, - ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, + }, + ["836936635"] = { + ["Chest"] = { + ["max"] = 2.5, + ["min"] = 1.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2933846633", - ["text"] = "Dazes on Hit", + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", ["type"] = "implicit", }, }, - ["2968503605"] = { - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 50, - }, - ["Talisman"] = { - ["max"] = 80, - ["min"] = 50, + ["924253255"] = { + ["Chest"] = { + ["max"] = -20, + ["min"] = -30, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", + ["id"] = "implicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "implicit", }, }, - ["2994271459"] = { - ["Charm"] = { + ["958696139"] = { + ["Ring"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_2994271459", - ["text"] = "Used when you take Cold damage from a Hit", + ["id"] = "implicit.stat_958696139", + ["text"] = "Grants 1 additional Skill Slot", ["type"] = "implicit", }, }, - ["3032590688"] = { - ["Quiver"] = { - ["max"] = 2, - ["min"] = 2, + }, + ["Rune"] = { + ["1004011302"] = { + ["Focus"] = { + ["max"] = 12, + ["min"] = 12, }, - ["Ring"] = { - ["max"] = 2.5, - ["min"] = 2.5, + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "implicit", + ["id"] = "rune.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "augment", }, }, - ["3182714256"] = { - ["Amulet"] = { - ["max"] = 2, - ["min"] = -2, - }, - ["Ring"] = { - ["max"] = 2, - ["min"] = -2, + ["1011760251"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3182714256", - ["text"] = "# Prefix Modifier allowed", - ["type"] = "implicit", + ["id"] = "rune.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "augment", }, ["usePositiveSign"] = true, }, - ["3261801346"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, + ["101878827"] = { + ["Sceptre"] = { + ["max"] = 50, + ["min"] = -40, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "implicit", + ["id"] = "rune.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["328541901"] = { - ["Amulet"] = { + ["1020945697"] = { + ["Staff"] = { ["max"] = 15, - ["min"] = 10, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "implicit", + ["id"] = "rune.stat_1020945697", + ["text"] = "#% less maximum Life", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["3299347043"] = { - ["Amulet"] = { - ["max"] = 40, - ["min"] = 30, + ["1030153674"] = { + ["1HMace"] = { + ["max"] = 2, + ["min"] = 2, }, - ["Chest"] = { - ["max"] = 80, - ["min"] = 60, + ["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"] = "implicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "implicit", + ["id"] = "rune.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", + ["type"] = "augment", }, - ["usePositiveSign"] = true, - }, - ["3310778564"] = { - ["Charm"] = { + }, + ["103706408"] = { + ["1HMace"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3310778564", - ["text"] = "Used when you take Chaos damage from a Hit", - ["type"] = "implicit", + ["id"] = "rune.stat_103706408", + ["text"] = "Rolls only the minimum or maximum Damage value for Physical Damage", + ["type"] = "augment", }, }, - ["3325883026"] = { - ["Amulet"] = { - ["max"] = 4, - ["min"] = 2, + ["1037193709"] = { + ["1HMace"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["Claw"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["Crossbow"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["Quarterstaff"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 18, + ["min"] = 4, + }, + ["Talisman"] = { + ["max"] = 18, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", - ["type"] = "implicit", + ["id"] = "rune.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "augment", }, }, - ["3362812763"] = { + ["1050105434"] = { + ["1HWeapon"] = { + ["max"] = 90, + ["min"] = 45, + }, + ["Boots"] = { + ["max"] = 50, + ["min"] = 20, + }, ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 50, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 50, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", - ["type"] = "implicit", + ["Gloves"] = { + ["max"] = 50, + ["min"] = 20, }, - ["usePositiveSign"] = true, - }, - ["3372524247"] = { - ["Ring"] = { - ["max"] = 30, + ["Helmet"] = { + ["max"] = 50, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 50, ["min"] = 20, }, + ["Staff"] = { + ["max"] = 90, + ["min"] = 45, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "implicit", + ["id"] = "rune.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "augment", }, ["usePositiveSign"] = true, }, - ["3398402065"] = { - ["2HWeapon"] = { - ["max"] = -50, - ["min"] = -50, + ["1181501418"] = { + ["Helmet"] = { + ["max"] = 4, + ["min"] = 4, }, - ["Bow"] = { - ["max"] = -50, - ["min"] = -50, + ["Spear"] = { + ["max"] = -10, + ["min"] = -10, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3398402065", - ["text"] = "#% increased Projectile Range", - ["type"] = "implicit", + ["id"] = "rune.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["3544800472"] = { + ["1197632982"] = { ["Chest"] = { - ["max"] = 40, - ["min"] = 30, + ["max"] = 2, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", - ["type"] = "implicit", + ["id"] = "rune.stat_1197632982", + ["text"] = "# to Armour per 1 Spirit", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["3585532255"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { + ["1228682002"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 50, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", - ["type"] = "implicit", + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, }, - }, - ["3675300253"] = { ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 50, + ["min"] = 50, }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 50, + ["min"] = 50, }, - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3675300253", - ["text"] = "Strikes deal Splash Damage", - ["type"] = "implicit", + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, }, - }, - ["3676540188"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, + ["Claw"] = { + ["max"] = 50, + ["min"] = 50, }, - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 50, + ["min"] = 50, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3676540188", - ["text"] = "Used when you start Bleeding", - ["type"] = "implicit", + ["Flail"] = { + ["max"] = 50, + ["min"] = 50, }, - }, - ["3699444296"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, + ["Quarterstaff"] = { + ["max"] = 50, + ["min"] = 50, }, - ["specialCaseData"] = { + ["Spear"] = { + ["max"] = 50, + ["min"] = 50, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3699444296", - ["text"] = "Used when you become Shocked", - ["type"] = "implicit", + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, }, - }, - ["3854901951"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3854901951", - ["text"] = "Used when you take Fire damage from a Hit", - ["type"] = "implicit", + ["id"] = "rune.stat_1228682002", + ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", + ["type"] = "augment", }, }, - ["3855016469"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["1238227257"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 8, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 8, + ["min"] = 8, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "implicit", + ["Focus"] = { + ["max"] = 8, + ["min"] = 8, }, - }, - ["3917489142"] = { - ["Amulet"] = { - ["max"] = 20, - ["min"] = 12, + ["Gloves"] = { + ["max"] = 8, + ["min"] = 8, }, - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 6, + ["Shield"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "implicit", + ["id"] = "rune.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "augment", }, }, - ["3954735777"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["124131830"] = { + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3954735777", - ["text"] = "#% chance to Poison on Hit with Attacks", - ["type"] = "implicit", + ["id"] = "rune.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["3981240776"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 30, - ["min"] = 20, + ["1250712710"] = { + ["Sceptre"] = { + ["max"] = 14, + ["min"] = 14, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "implicit", + ["id"] = "rune.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["4010341289"] = { - ["Charm"] = { + ["1323701627"] = { + ["Sceptre"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_4010341289", - ["text"] = "Used when you kill a Rare or Unique enemy", - ["type"] = "implicit", + ["id"] = "rune.stat_1323701627", + ["text"] = "When you generate a Power Charge, Allies in your Presence generate that Charge instead", + ["type"] = "augment", }, }, - ["4077843608"] = { + ["1368271171"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 40, + ["min"] = 10, }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 40, + ["min"] = 10, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 40, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4077843608", - ["text"] = "Has 1 Socket", - ["type"] = "implicit", + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 10, }, - }, - ["4080418644"] = { - ["Amulet"] = { - ["max"] = 15, + ["Bow"] = { + ["max"] = 40, ["min"] = 10, }, - ["Belt"] = { - ["max"] = 20, - ["min"] = 15, + ["Claw"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Talisman"] = { + ["max"] = 40, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "implicit", + ["id"] = "rune.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["4126210832"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["1374654984"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_4126210832", - ["text"] = "Always Hits", - ["type"] = "implicit", + ["id"] = "rune.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["type"] = "augment", }, }, - ["4220027924"] = { - ["Ring"] = { - ["max"] = 30, + ["1381474422"] = { + ["Gloves"] = { + ["max"] = 20, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "implicit", + ["id"] = "rune.stat_1381474422", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["458438597"] = { - ["Chest"] = { - ["max"] = 10, - ["min"] = 5, + ["1382805233"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "implicit", + ["id"] = "rune.stat_1382805233", + ["text"] = "#% increased Deflection Rating while moving", + ["type"] = "augment", }, }, - ["462041840"] = { - ["Belt"] = { - ["max"] = 20, - ["min"] = 20, + ["1392112423"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_462041840", - ["text"] = "#% of Flask Recovery applied Instantly", - ["type"] = "implicit", + ["id"] = "rune.stat_1392112423", + ["text"] = "#% increased Armour and Evasion Rating while on Low Runic Ward", + ["type"] = "augment", }, }, - ["548198834"] = { + ["1433756169"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 16, + ["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"] = 16, - ["min"] = 16, + ["max"] = 10, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_548198834", - ["text"] = "#% increased Melee Strike Range with this weapon", - ["type"] = "implicit", + ["id"] = "rune.stat_1433756169", + ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", + ["type"] = "augment", }, }, - ["585126960"] = { - ["Charm"] = { + ["1433896639"] = { + ["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, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_585126960", - ["text"] = "Used when you become Ignited", - ["type"] = "implicit", + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["624954515"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["Spear"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "implicit", + ["Talisman"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["644456512"] = { - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "implicit", + ["id"] = "rune.stat_1433896639", + ["text"] = "Transforms all Fire and Cold modifiers on the item into equivalent Lightning modifiers", + ["type"] = "augment", }, }, - ["680068163"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, + ["1444556985"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "implicit", + ["id"] = "rune.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "augment", }, }, - ["681332047"] = { - ["Quiver"] = { - ["max"] = 10, - ["min"] = 7, + ["1480688478"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "implicit", + ["id"] = "rune.stat_1480688478", + ["text"] = "One of your Persistent Minions revives when an Offering expires", + ["type"] = "augment", }, }, - ["718638445"] = { - ["Amulet"] = { - ["max"] = 2, - ["min"] = -2, - }, - ["Ring"] = { - ["max"] = 2, - ["min"] = -2, - }, - ["specialCaseData"] = { + ["1496740334"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_718638445", - ["text"] = "# Suffix Modifier allowed", - ["type"] = "implicit", + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, }, - ["usePositiveSign"] = true, - }, - ["731781020"] = { - ["Belt"] = { - ["max"] = 0.17, - ["min"] = 0.17, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_731781020", - ["text"] = "Flasks gain # charges per Second", - ["type"] = "implicit", + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["789117908"] = { - ["Amulet"] = { - ["max"] = 30, + ["Bow"] = { + ["max"] = 20, ["min"] = 20, }, ["Chest"] = { - ["max"] = 50, - ["min"] = 40, + ["max"] = 20, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "implicit", + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["791928121"] = { - ["2HMace"] = { - ["max"] = 50, + ["Flail"] = { + ["max"] = 20, ["min"] = 20, }, - ["2HWeapon"] = { - ["max"] = 50, + ["Focus"] = { + ["max"] = 20, ["min"] = 20, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "implicit", + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["803737631"] = { - ["Ring"] = { - ["max"] = 160, - ["min"] = 120, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "implicit", + ["Spear"] = { + ["max"] = 20, + ["min"] = 20, }, - ["usePositiveSign"] = true, - }, - ["821241191"] = { - ["Belt"] = { - ["max"] = 30, + ["Talisman"] = { + ["max"] = 20, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "implicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - ["type"] = "implicit", + ["id"] = "rune.stat_1496740334", + ["text"] = "Convert #% of Requirements to Dexterity", + ["type"] = "augment", }, }, - ["836936635"] = { - ["Chest"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["1519615863"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 15, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", - ["type"] = "implicit", + ["2HMace"] = { + ["max"] = 15, + ["min"] = 15, }, - }, - ["924253255"] = { - ["Chest"] = { - ["max"] = -20, - ["min"] = -30, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 15, }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 15, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "implicit", + ["Claw"] = { + ["max"] = 15, + ["min"] = 15, }, - }, - ["958696139"] = { - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 15, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "implicit.stat_958696139", - ["text"] = "Grants 1 additional Skill Slot", - ["type"] = "implicit", + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 15, }, - }, - }, - ["Rune"] = { - ["1004011302"] = { - ["Focus"] = { - ["max"] = 10, - ["min"] = 10, + ["Spear"] = { + ["max"] = 15, + ["min"] = 15, }, - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", + ["id"] = "rune.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", ["type"] = "augment", }, }, - ["1011760251"] = { - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, + ["153777645"] = { + ["Focus"] = { + ["max"] = 40, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", + ["id"] = "rune.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["101878827"] = { + ["1539508682"] = { ["Sceptre"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = -20, + ["min"] = -20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", + ["id"] = "rune.stat_1539508682", + ["text"] = "Companions in your Presence have #% to all Elemental Resistances", ["type"] = "augment", }, }, - ["1030153674"] = { - ["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, + ["1549287843"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "rune.stat_1549287843", + ["text"] = "Projectiles have #% chance to Fork", + ["type"] = "augment", }, + }, + ["1555237944"] = { ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1030153674", - ["text"] = "Recover #% of maximum Mana on Kill", + ["id"] = "rune.stat_1555237944", + ["text"] = "#% chance when you gain a Charge to gain an additional Charge", ["type"] = "augment", }, }, - ["1037193709"] = { + ["1556124492"] = { ["1HMace"] = { - ["max"] = 23.5, - ["min"] = 4, + ["max"] = 20, + ["min"] = 20, }, ["1HWeapon"] = { - ["max"] = 23.5, - ["min"] = 4, + ["max"] = 20, + ["min"] = 20, }, ["2HMace"] = { - ["max"] = 23.5, - ["min"] = 4, + ["max"] = 20, + ["min"] = 20, }, ["2HWeapon"] = { - ["max"] = 23.5, - ["min"] = 4, + ["max"] = 20, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, }, ["Bow"] = { - ["max"] = 23.5, - ["min"] = 4, + ["max"] = 20, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, }, ["Claw"] = { - ["max"] = 23.5, - ["min"] = 4, + ["max"] = 20, + ["min"] = 20, }, ["Crossbow"] = { - ["max"] = 23.5, - ["min"] = 4, + ["max"] = 20, + ["min"] = 20, }, ["Flail"] = { - ["max"] = 23.5, - ["min"] = 4, + ["max"] = 20, + ["min"] = 20, + }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, }, ["Quarterstaff"] = { - ["max"] = 23.5, - ["min"] = 4, + ["max"] = 20, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, }, ["Spear"] = { - ["max"] = 23.5, - ["min"] = 4, + ["max"] = 20, + ["min"] = 20, }, ["Talisman"] = { - ["max"] = 23.5, - ["min"] = 4, + ["max"] = 20, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "rune.stat_1556124492", + ["text"] = "Convert #% of Requirements to Strength", ["type"] = "augment", }, }, - ["1050105434"] = { - ["Boots"] = { - ["max"] = 35, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 35, - ["min"] = 15, - }, - ["Focus"] = { - ["max"] = 35, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 35, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 35, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 35, + ["1574590649"] = { + ["Sceptre"] = { + ["max"] = 15, ["min"] = 15, }, - ["Staff"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["Wand"] = { - ["max"] = 50, - ["min"] = 30, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "rune.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["1181501418"] = { - ["Helmet"] = { - ["max"] = 4, - ["min"] = 4, + ["1585886916"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1181501418", - ["text"] = "# to Maximum Rage", + ["id"] = "rune.stat_1585886916", + ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["1197632982"] = { - ["Chest"] = { - ["max"] = 2, - ["min"] = 2, + ["162036024"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1197632982", - ["text"] = "# to Armour per 1 Spirit", + ["id"] = "rune.stat_162036024", + ["text"] = "1% increased Energy Shield Recharge Rate per # maximum Runic Ward", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["1228682002"] = { + ["1624833382"] = { ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 1, + ["min"] = 1, }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 1, + ["min"] = 1, }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 1, + ["min"] = 1, }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 1, + ["min"] = 1, }, ["Bow"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 1, + ["min"] = 1, }, ["Claw"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 1, + ["min"] = 1, }, ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 1, + ["min"] = 1, }, ["Flail"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 1, + ["min"] = 1, }, ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 1, + ["min"] = 1, }, ["Spear"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 1, + ["min"] = 1, }, ["Staff"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 1, + ["min"] = 1, }, ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 1, + ["min"] = 1, }, ["Wand"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1228682002", - ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", + ["id"] = "rune.stat_1624833382", + ["text"] = "Transforms all Fire, Cold and Lightning modifiers on the item into equivalent Chaos modifiers", ["type"] = "augment", }, }, - ["1238227257"] = { + ["1671376347"] = { ["Boots"] = { - ["max"] = 8, - ["min"] = 8, + ["max"] = 22, + ["min"] = 10, }, ["Chest"] = { - ["max"] = 8, - ["min"] = 8, + ["max"] = 22, + ["min"] = 10, }, ["Focus"] = { - ["max"] = 8, - ["min"] = 8, + ["max"] = 22, + ["min"] = 10, }, ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, + ["max"] = 22, + ["min"] = 10, }, ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, + ["max"] = 22, + ["min"] = 10, }, ["Shield"] = { - ["max"] = 8, - ["min"] = 8, + ["max"] = 22, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", + ["id"] = "rune.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["124131830"] = { + ["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, @@ -35417,184 +22457,209 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_124131830", - ["text"] = "# to Level of all Spell Skills", + ["id"] = "rune.stat_1676950499", + ["text"] = "Can roll Destruction modifiers", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["1250712710"] = { - ["Sceptre"] = { - ["max"] = 14, - ["min"] = 14, + ["1678831767"] = { + ["Shield"] = { + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["id"] = "rune.stat_1678831767", + ["text"] = "Recover # Life when you Block", ["type"] = "augment", }, }, - ["1368271171"] = { + ["1755296234"] = { ["1HMace"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 1, + ["min"] = 1, }, ["1HWeapon"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 1, + ["min"] = 1, }, ["2HMace"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 1, + ["min"] = 1, }, ["2HWeapon"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 1, + ["min"] = 1, }, ["Bow"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 1, + ["min"] = 1, }, ["Claw"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 1, + ["min"] = 1, }, ["Crossbow"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 1, + ["min"] = 1, }, ["Flail"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 1, + ["min"] = 1, }, ["Quarterstaff"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 1, + ["min"] = 1, }, ["Spear"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 1, + ["min"] = 1, }, ["Talisman"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", + ["id"] = "rune.stat_1755296234", + ["text"] = "Targets can be affected by # of your Poisons at the same time", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["1374654984"] = { - ["Chest"] = { - ["max"] = 10, - ["min"] = 10, + ["1770091046"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1374654984", - ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["id"] = "rune.stat_1770091046", + ["text"] = "Can roll Berserking modifiers", ["type"] = "augment", }, }, - ["1381474422"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, + ["1772929282"] = { + ["Helmet"] = { + ["max"] = -5, + ["min"] = -5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1381474422", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", + ["id"] = "rune.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", ["type"] = "augment", }, }, - ["1382805233"] = { - ["Boots"] = { - ["max"] = 8, - ["min"] = 8, + ["1779262102"] = { + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1382805233", - ["text"] = "#% increased Deflection Rating while moving", + ["id"] = "rune.stat_1779262102", + ["text"] = "#% increased Mana Recovery rate while your Companion is in your Presence", ["type"] = "augment", }, }, - ["1433756169"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["1798257884"] = { + ["Sceptre"] = { + ["max"] = 40, + ["min"] = 40, }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "rune.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "augment", }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + }, + ["1805182458"] = { + ["Sceptre"] = { + ["max"] = 25, + ["min"] = 25, }, - ["Bow"] = { - ["max"] = 10, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Claw"] = { - ["max"] = 10, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "rune.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", + ["type"] = "augment", }, - ["Crossbow"] = { - ["max"] = 10, - ["min"] = 10, + }, + ["1805633363"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, }, - ["Flail"] = { - ["max"] = 10, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "rune.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["type"] = "augment", }, - ["Spear"] = { - ["max"] = 10, - ["min"] = 10, + }, + ["1879206848"] = { + ["1HMace"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1879206848", + ["text"] = "#% increased effect of Fully Broken Armour", + ["type"] = "augment", + }, + }, + ["1911097163"] = { + ["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", }, - ["Talisman"] = { - ["max"] = 10, - ["min"] = 10, + }, + ["1919509054"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1433756169", - ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", + ["id"] = "rune.stat_1919509054", + ["text"] = "Your Energy Shield Recharge starts when your Minions are Reformed", ["type"] = "augment", }, }, - ["1444556985"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, + ["1927467683"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", + ["id"] = "rune.stat_1927467683", + ["text"] = "Can roll Soul modifiers", ["type"] = "augment", }, }, - ["1480688478"] = { + ["1933674044"] = { ["Gloves"] = { ["max"] = 1, ["min"] = 1, @@ -35602,89 +22667,183 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1480688478", - ["text"] = "One of your Persistent Minions revives when an Offering expires", + ["id"] = "rune.stat_1933674044", + ["text"] = "Destroys all Augment Sockets on the item to create a Jewel Socket", ["type"] = "augment", }, }, - ["1496740334"] = { + ["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"] = 20, - ["min"] = 20, + ["max"] = 1, + ["min"] = 1, }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 1, + ["min"] = 1, }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 1, + ["min"] = 1, }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 1, + ["min"] = 1, }, ["Boots"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 1, + ["min"] = 1, }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 1, + ["min"] = 1, }, ["Chest"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 1, + ["min"] = 1, }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 1, + ["min"] = 1, }, ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 1, + ["min"] = 1, }, ["Flail"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 1, + ["min"] = 1, }, ["Focus"] = { - ["max"] = 20, - ["min"] = 20, + ["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, }, - ["Helmet"] = { + ["Chest"] = { ["max"] = 20, ["min"] = 20, }, - ["Quarterstaff"] = { + ["Focus"] = { ["max"] = 20, ["min"] = 20, }, - ["Shield"] = { + ["Gloves"] = { ["max"] = 20, ["min"] = 20, }, - ["Spear"] = { + ["Helmet"] = { ["max"] = 20, ["min"] = 20, }, - ["Talisman"] = { + ["Shield"] = { ["max"] = 20, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1496740334", - ["text"] = "Convert #% of Requirements to Dexterity", + ["id"] = "rune.stat_1963589548", + ["text"] = "Every 4 seconds, gain Guard equal to #% of maximum Runic Ward for 2 seconds", ["type"] = "augment", }, }, - ["1519615863"] = { + ["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, @@ -35726,813 +22885,929 @@ return { ["min"] = 15, }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, + ["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"] = { + ["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, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Staff"] = { + ["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_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", + ["id"] = "rune.stat_2011656677", + ["text"] = "#% increased Poison Duration", ["type"] = "augment", }, }, - ["1556124492"] = { + ["201332984"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_201332984", + ["text"] = "Can roll Marksman modifiers", + ["type"] = "augment", + }, + }, + ["2023107756"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Boots"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Focus"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Shield"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["Spear"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1556124492", - ["text"] = "Convert #% of Requirements to Strength", - ["type"] = "augment", - }, - }, - ["1574590649"] = { - ["Sceptre"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 2, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["id"] = "rune.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "augment", }, }, - ["1585886916"] = { - ["Boots"] = { - ["max"] = 10, + ["2045949233"] = { + ["2HMace"] = { + ["max"] = 25, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1585886916", - ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", + ["id"] = "rune.stat_2045949233", + ["text"] = "#% chance for Slam Skills you use yourself to cause an additional Aftershock", ["type"] = "augment", }, }, - ["1671376347"] = { - ["Boots"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 14, - ["min"] = 10, - }, + ["2074866941"] = { ["Helmet"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 14, - ["min"] = 10, + ["max"] = 25, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "rune.stat_2074866941", + ["text"] = "#% increased Exposure Effect", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["1755296234"] = { + ["2077615515"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 50, + ["min"] = 50, }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 50, + ["min"] = 50, }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 50, + ["min"] = 50, }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 50, + ["min"] = 50, }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 50, + ["min"] = 50, }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 50, + ["min"] = 50, }, ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 50, + ["min"] = 50, }, ["Flail"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 50, + ["min"] = 50, }, ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 50, + ["min"] = 50, }, ["Spear"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 50, + ["min"] = 50, }, ["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, - }, - ["1772929282"] = { - ["Helmet"] = { - ["max"] = -5, - ["min"] = -5, + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1772929282", - ["text"] = "Enemies you Curse have #% to Chaos Resistance", + ["id"] = "rune.stat_2077615515", + ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", ["type"] = "augment", }, }, - ["1782086450"] = { - ["Chest"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Focus"] = { - ["max"] = 30, - ["min"] = 30, + ["210067635"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 5, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "rune.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "augment", + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, }, - }, - ["1798257884"] = { - ["Sceptre"] = { - ["max"] = 30, - ["min"] = 30, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 50, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "rune.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "augment", + ["Claw"] = { + ["max"] = 5, + ["min"] = 5, }, - }, - ["1805633363"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 5, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "rune.stat_1805633363", - ["text"] = "#% increased Reservation Efficiency of Minion Skills", - ["type"] = "augment", + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 5, }, - }, - ["1937310173"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 50, + ["Spear"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1937310173", - ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", + ["id"] = "rune.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "augment", }, }, - ["1947060170"] = { - ["Helmet"] = { + ["2103650854"] = { + ["Gloves"] = { ["max"] = 40, ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1947060170", - ["text"] = "#% of Armour also applies to Cold Damage", + ["id"] = "rune.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["1984310483"] = { - ["Helmet"] = { - ["max"] = 6, - ["min"] = 6, + ["2191621386"] = { + ["Chest"] = { + ["max"] = 75, + ["min"] = 75, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1984310483", - ["text"] = "Enemies you Curse take #% increased Damage", + ["id"] = "rune.stat_2191621386", + ["text"] = "#% of Armour also applies to Chaos Damage while on full Energy Shield", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["1998951374"] = { - ["Sceptre"] = { - ["max"] = 8, - ["min"] = 8, + ["2200571612"] = { + ["Boots"] = { + ["max"] = 40, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["id"] = "rune.stat_2200571612", + ["text"] = "#% of Armour also applies to Lightning Damage", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["2011656677"] = { + ["2223678961"] = { ["1HMace"] = { - ["max"] = -25, - ["min"] = -25, + ["max"] = 24, + ["min"] = 24, }, ["1HWeapon"] = { - ["max"] = -25, - ["min"] = -25, + ["max"] = 24, + ["min"] = 24, }, ["2HMace"] = { - ["max"] = -25, - ["min"] = -25, + ["max"] = 24, + ["min"] = 24, }, ["2HWeapon"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 24, + ["min"] = 24, }, ["Bow"] = { - ["max"] = -25, - ["min"] = -25, + ["max"] = 24, + ["min"] = 24, }, ["Claw"] = { - ["max"] = -25, - ["min"] = -25, + ["max"] = 24, + ["min"] = 24, }, ["Crossbow"] = { - ["max"] = -25, - ["min"] = -25, + ["max"] = 24, + ["min"] = 24, }, ["Flail"] = { - ["max"] = -25, - ["min"] = -25, + ["max"] = 24, + ["min"] = 24, }, ["Quarterstaff"] = { - ["max"] = -25, - ["min"] = -25, + ["max"] = 24, + ["min"] = 24, }, ["Spear"] = { - ["max"] = -25, - ["min"] = -25, + ["max"] = 24, + ["min"] = 24, }, ["Talisman"] = { - ["max"] = -25, - ["min"] = -25, + ["max"] = 24, + ["min"] = 24, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "rune.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", ["type"] = "augment", }, }, - ["2023107756"] = { - ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, + ["2231410646"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 50, }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "rune.stat_2231410646", + ["text"] = "A random Skill that requires Glory generates #% of its maximum Glory when your Marks Activate", + ["type"] = "augment", }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, + }, + ["2241849004"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, + ["specialCaseData"] = { }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 2, + ["tradeMod"] = { + ["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", }, - ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, + }, + ["2250533757"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 5, }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "rune.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "augment", }, - ["Spear"] = { - ["max"] = 2, - ["min"] = 2, + }, + ["2310741722"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 8, }, - ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, + ["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_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", + ["id"] = "rune.stat_2310741722", + ["text"] = "#% increased Life and Mana Recovery from Flasks", ["type"] = "augment", }, }, - ["2074866941"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 25, + ["2328443419"] = { + ["Staff"] = { + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2074866941", - ["text"] = "#% increased Exposure Effect", + ["id"] = "rune.stat_2328443419", + ["text"] = "#% chance to create an additional Remnant", ["type"] = "augment", }, }, - ["2077615515"] = { - ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, + ["2339757871"] = { ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 12, + ["min"] = 6, }, - ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, + ["Chest"] = { + ["max"] = 30, + ["min"] = 30, }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["Staff"] = { + ["max"] = 12, + ["min"] = 6, }, - ["Bow"] = { - ["max"] = 50, - ["min"] = 50, + ["specialCaseData"] = { }, - ["Claw"] = { - ["max"] = 50, - ["min"] = 50, + ["tradeMod"] = { + ["id"] = "rune.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "augment", + }, + }, + ["234296660"] = { + ["Sceptre"] = { + ["max"] = 30, + ["min"] = 30, }, - ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 50, - ["min"] = 50, + ["tradeMod"] = { + ["id"] = "rune.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "augment", }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, + }, + ["2353576063"] = { + ["Gloves"] = { + ["max"] = 8, + ["min"] = 8, }, - ["Spear"] = { - ["max"] = 50, - ["min"] = 50, + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, + ["tradeMod"] = { + ["id"] = "rune.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "augment", + }, + }, + ["2363593824"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 12, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2077615515", - ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", + ["id"] = "rune.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", ["type"] = "augment", }, }, - ["210067635"] = { + ["2390027291"] = { ["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, + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "rune.stat_2390027291", + ["text"] = "When socketed, transforms all Fire and Lightning modifiers to equivalent Cold modifiers", ["type"] = "augment", }, }, - ["2103650854"] = { + ["2392260628"] = { + ["Boots"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 8, + }, ["Gloves"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 20, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2103650854", - ["text"] = "#% increased effect of Arcane Surge on you", + ["id"] = "rune.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", ["type"] = "augment", }, }, - ["2191621386"] = { + ["2448633171"] = { ["Chest"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 5, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2191621386", - ["text"] = "#% of Armour also applies to Chaos Damage while on full Energy Shield", + ["id"] = "rune.stat_2448633171", + ["text"] = "#% of Damage taken bypasses Energy Shield", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["2200571612"] = { - ["Boots"] = { - ["max"] = 40, - ["min"] = 40, + ["2463230181"] = { + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2200571612", - ["text"] = "#% of Armour also applies to Lightning Damage", + ["id"] = "rune.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", ["type"] = "augment", }, ["usePositiveSign"] = true, }, - ["2223678961"] = { + ["2480498143"] = { ["1HMace"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["1HWeapon"] = { - ["max"] = 24, - ["min"] = 24, + ["max"] = 15, + ["min"] = 15, }, ["2HMace"] = { - ["max"] = 24, - ["min"] = 24, + ["max"] = 15, + ["min"] = 15, }, - ["2HWeapon"] = { - ["max"] = 24, - ["min"] = 24, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 15, }, - ["Bow"] = { - ["max"] = 24, - ["min"] = 24, + ["specialCaseData"] = { }, - ["Claw"] = { - ["max"] = 24, - ["min"] = 24, + ["tradeMod"] = { + ["id"] = "rune.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "augment", }, - ["Crossbow"] = { - ["max"] = 24, - ["min"] = 24, + }, + ["2481353198"] = { + ["Shield"] = { + ["max"] = 15, + ["min"] = 15, }, - ["Flail"] = { - ["max"] = 24, - ["min"] = 24, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 24, - ["min"] = 24, + ["tradeMod"] = { + ["id"] = "rune.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "augment", }, - ["Spear"] = { - ["max"] = 24, - ["min"] = 24, + }, + ["2505884597"] = { + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 6, }, - ["Talisman"] = { - ["max"] = 24, - ["min"] = 24, + ["Staff"] = { + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", + ["id"] = "rune.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "augment", }, }, - ["2231410646"] = { - ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, + ["2547063279"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2231410646", - ["text"] = "A random Skill that requires Glory generates #% of its maximum Glory when your Marks Activate", + ["id"] = "rune.stat_2547063279", + ["text"] = "Can roll Decay modifiers", ["type"] = "augment", }, }, - ["2241849004"] = { - ["Gloves"] = { + ["2579974553"] = { + ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2241849004", - ["text"] = "Energy Shield Recharge starts after spending a total of 2000 Mana, no more than once every 2 seconds", + ["id"] = "rune.stat_2579974553", + ["text"] = "Runic Ward Regeneration Rate is doubled", ["type"] = "augment", }, }, - ["2250533757"] = { + ["258119672"] = { ["Boots"] = { - ["max"] = 5, - ["min"] = 5, + ["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, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "rune.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "augment", + ["Bow"] = { + ["max"] = 15, + ["min"] = 15, }, - }, - ["2310741722"] = { - ["Boots"] = { - ["max"] = 12, - ["min"] = 8, + ["Claw"] = { + ["max"] = 15, + ["min"] = 15, }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 8, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 15, }, - ["Focus"] = { - ["max"] = 12, - ["min"] = 8, + ["Flail"] = { + ["max"] = 15, + ["min"] = 15, }, - ["Gloves"] = { - ["max"] = 12, - ["min"] = 8, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 15, }, - ["Helmet"] = { - ["max"] = 12, - ["min"] = 8, + ["Spear"] = { + ["max"] = 15, + ["min"] = 15, }, - ["Shield"] = { - ["max"] = 12, - ["min"] = 8, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2310741722", - ["text"] = "#% increased Life and Mana Recovery from Flasks", + ["id"] = "rune.stat_2608793552", + ["text"] = "Attacks Break Armour equal to #% of maximum Runic Ward", ["type"] = "augment", }, }, - ["2339757871"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 50, + ["2616640048"] = { + ["Bow"] = { + ["max"] = 32, + ["min"] = 32, }, - ["Staff"] = { - ["max"] = 18, - ["min"] = 12, + ["Crossbow"] = { + ["max"] = 32, + ["min"] = 32, }, - ["Wand"] = { - ["max"] = 18, - ["min"] = 12, + ["Spear"] = { + ["max"] = 32, + ["min"] = 32, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["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", }, }, - ["2353576063"] = { - ["Gloves"] = { - ["max"] = 5, - ["min"] = 5, + ["262946222"] = { + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", + ["id"] = "rune.stat_262946222", + ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", ["type"] = "augment", }, }, - ["2363593824"] = { - ["Boots"] = { - ["max"] = 12, - ["min"] = 12, + ["263495202"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2363593824", - ["text"] = "#% increased speed of Recoup Effects", + ["id"] = "rune.stat_263495202", + ["text"] = "#% increased Cost Efficiency", ["type"] = "augment", }, }, - ["2481353198"] = { - ["Shield"] = { - ["max"] = 10, - ["min"] = 10, + ["2652394701"] = { + ["Sceptre"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", + ["id"] = "rune.stat_2652394701", + ["text"] = "Companions in your Presence gain # Rage on hit", ["type"] = "augment", }, }, - ["2505884597"] = { - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, + ["2663359259"] = { + ["Boots"] = { + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["id"] = "rune.stat_2663359259", + ["text"] = "#% increased total Power counted by Warcries", ["type"] = "augment", }, }, - ["263495202"] = { - ["Helmet"] = { - ["max"] = 12, - ["min"] = 12, + ["267552601"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_263495202", - ["text"] = "#% increased Cost Efficiency", + ["id"] = "rune.stat_267552601", + ["text"] = "Spell damage Penetrates #% of enemy Elemental Resistances while on Low Runic Ward", ["type"] = "augment", }, }, - ["2663359259"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, + ["2681952497"] = { + ["Sceptre"] = { + ["max"] = 25, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2663359259", - ["text"] = "#% increased total Power counted by Warcries", + ["id"] = "rune.stat_2681952497", + ["text"] = "Plants have a #% chance to immediately Overgrow when they enter your Presence for the first time", ["type"] = "augment", }, }, @@ -36603,11 +23878,33 @@ return { ["type"] = "augment", }, }, + ["2704225257"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2704225257", + ["text"] = "# to Spirit", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["2709367754"] = { ["Gloves"] = { ["max"] = 1, ["min"] = 1, }, + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 4, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -36629,6 +23926,19 @@ return { ["type"] = "augment", }, }, + ["2797971005"] = { + ["Gloves"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "augment", + }, + }, ["280497929"] = { ["Helmet"] = { ["max"] = 1, @@ -36645,8 +23955,8 @@ return { }, ["280731498"] = { ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, @@ -36656,6 +23966,47 @@ return { ["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"] = { + ["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"] = { ["Sceptre"] = { ["max"] = 20.5, @@ -36682,6 +24033,32 @@ return { ["type"] = "augment", }, }, + ["2882351629"] = { + ["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", + }, + }, ["2891184298"] = { ["Gloves"] = { ["max"] = 8, @@ -36697,8 +24074,8 @@ return { }, ["289128254"] = { ["Sceptre"] = { - ["max"] = 8, - ["min"] = 8, + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, @@ -36708,13 +24085,27 @@ return { ["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"] = 5, + ["max"] = 20, ["min"] = 5, }, ["Focus"] = { @@ -36743,11 +24134,11 @@ return { ["usePositiveSign"] = true, }, ["2910761524"] = { - ["Staff"] = { + ["1HWeapon"] = { ["max"] = 25, ["min"] = 25, }, - ["Wand"] = { + ["Staff"] = { ["max"] = 25, ["min"] = 25, }, @@ -36869,6 +24260,10 @@ return { ["max"] = 50, ["min"] = 50, }, + ["Gloves"] = { + ["max"] = 15, + ["min"] = 15, + }, ["Quarterstaff"] = { ["max"] = 50, ["min"] = 50, @@ -36885,10 +24280,6 @@ return { ["max"] = 50, ["min"] = 50, }, - ["Wand"] = { - ["max"] = 50, - ["min"] = 50, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -36984,6 +24375,32 @@ return { ["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, @@ -37038,12 +24455,12 @@ return { }, }, ["2974417149"] = { - ["Staff"] = { - ["max"] = 30, + ["1HWeapon"] = { + ["max"] = 35, ["min"] = 20, }, - ["Wand"] = { - ["max"] = 30, + ["Staff"] = { + ["max"] = 35, ["min"] = 20, }, ["specialCaseData"] = { @@ -37055,12 +24472,12 @@ return { }, }, ["3015669065"] = { - ["Staff"] = { - ["max"] = 10, + ["1HWeapon"] = { + ["max"] = 12, ["min"] = 6, }, - ["Wand"] = { - ["max"] = 10, + ["Staff"] = { + ["max"] = 12, ["min"] = 6, }, ["specialCaseData"] = { @@ -37084,10 +24501,89 @@ return { ["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"] = { ["Sceptre"] = { - ["max"] = 14, - ["min"] = 14, + ["max"] = 20, + ["min"] = 20, }, ["specialCaseData"] = { }, @@ -37097,10 +24593,36 @@ return { ["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"] = { + ["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"] = 25, + ["min"] = 8, }, ["specialCaseData"] = { }, @@ -37123,10 +24645,79 @@ return { ["type"] = "augment", }, }, + ["3132681620"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3132681620", + ["text"] = "Can roll Chronomancy modifiers", + ["type"] = "augment", + }, + }, + ["3143918757"] = { + ["Gloves"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3143918757", + ["text"] = "#% increased Glory generation", + ["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"] = { + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3151560620", + ["text"] = "#% increased Damage per each different Companion in your Presence", + ["type"] = "augment", + }, + }, + ["315791320"] = { + ["Sceptre"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "augment", + }, + }, ["3166958180"] = { ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, @@ -37149,81 +24740,107 @@ return { ["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"] = { + ["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"] = 10, + ["max"] = 15, ["min"] = 6, }, ["1HWeapon"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["2HMace"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["2HWeapon"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Boots"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Bow"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Chest"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Claw"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Crossbow"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Flail"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Focus"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Gloves"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Helmet"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Quarterstaff"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Shield"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Spear"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Staff"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Talisman"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Wand"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["specialCaseData"] = { @@ -37236,12 +24853,12 @@ return { ["usePositiveSign"] = true, }, ["3278136794"] = { - ["Staff"] = { - ["max"] = 10, + ["1HWeapon"] = { + ["max"] = 12, ["min"] = 6, }, - ["Wand"] = { - ["max"] = 10, + ["Staff"] = { + ["max"] = 12, ["min"] = 6, }, ["specialCaseData"] = { @@ -37254,79 +24871,79 @@ return { }, ["328541901"] = { ["1HMace"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["1HWeapon"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["2HMace"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["2HWeapon"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Boots"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Bow"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Chest"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Claw"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Crossbow"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Flail"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Focus"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Gloves"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Helmet"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Quarterstaff"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Shield"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Spear"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Staff"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Talisman"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Wand"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["specialCaseData"] = { @@ -37339,29 +24956,81 @@ return { ["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"] = 40, - ["min"] = 20, + ["max"] = 75, + ["min"] = 30, + }, + ["Bow"] = { + ["max"] = 80, + ["min"] = 80, }, ["Chest"] = { - ["max"] = 40, - ["min"] = 20, + ["max"] = 75, + ["min"] = 30, + }, + ["Claw"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["Crossbow"] = { + ["max"] = 80, + ["min"] = 80, + }, + ["Flail"] = { + ["max"] = 80, + ["min"] = 80, }, ["Focus"] = { - ["max"] = 40, - ["min"] = 20, + ["max"] = 75, + ["min"] = 30, }, ["Gloves"] = { - ["max"] = 40, - ["min"] = 20, + ["max"] = 75, + ["min"] = 30, }, ["Helmet"] = { - ["max"] = 40, - ["min"] = 20, + ["max"] = 75, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 80, + ["min"] = 80, }, ["Shield"] = { - ["max"] = 40, - ["min"] = 20, + ["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"] = { }, @@ -37374,47 +25043,47 @@ return { }, ["3336890334"] = { ["1HMace"] = { - ["max"] = 30.5, + ["max"] = 20.5, ["min"] = 5.5, }, ["1HWeapon"] = { - ["max"] = 30.5, + ["max"] = 20.5, ["min"] = 5.5, }, ["2HMace"] = { - ["max"] = 30.5, + ["max"] = 20.5, ["min"] = 5.5, }, ["2HWeapon"] = { - ["max"] = 30.5, + ["max"] = 20.5, ["min"] = 5.5, }, ["Bow"] = { - ["max"] = 30.5, + ["max"] = 20.5, ["min"] = 5.5, }, ["Claw"] = { - ["max"] = 30.5, + ["max"] = 20.5, ["min"] = 5.5, }, ["Crossbow"] = { - ["max"] = 30.5, + ["max"] = 20.5, ["min"] = 5.5, }, ["Flail"] = { - ["max"] = 30.5, + ["max"] = 20.5, ["min"] = 5.5, }, ["Quarterstaff"] = { - ["max"] = 30.5, + ["max"] = 20.5, ["min"] = 5.5, }, ["Spear"] = { - ["max"] = 30.5, + ["max"] = 20.5, ["min"] = 5.5, }, ["Talisman"] = { - ["max"] = 30.5, + ["max"] = 20.5, ["min"] = 5.5, }, ["specialCaseData"] = { @@ -37425,29 +25094,60 @@ return { ["type"] = "augment", }, }, + ["3353733343"] = { + ["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"] = 14, + ["max"] = 22, ["min"] = 10, }, ["Chest"] = { - ["max"] = 14, + ["max"] = 22, ["min"] = 10, }, ["Focus"] = { - ["max"] = 14, + ["max"] = 22, ["min"] = 10, }, ["Gloves"] = { - ["max"] = 14, + ["max"] = 22, ["min"] = 10, }, ["Helmet"] = { - ["max"] = 14, + ["max"] = 22, ["min"] = 10, }, ["Shield"] = { - ["max"] = 14, + ["max"] = 22, ["min"] = 10, }, ["specialCaseData"] = { @@ -37472,6 +25172,23 @@ return { ["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, @@ -37521,10 +25238,6 @@ return { ["max"] = 13, ["min"] = 13, }, - ["Wand"] = { - ["max"] = 13, - ["min"] = 13, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -37546,6 +25259,19 @@ return { ["type"] = "augment", }, }, + ["3444646646"] = { + ["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, @@ -37559,14 +25285,45 @@ return { ["type"] = "augment", }, }, - ["3489782002"] = { + ["3482326075"] = { + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, ["Staff"] = { - ["max"] = 35, - ["min"] = 25, + ["max"] = 50, + ["min"] = 50, }, - ["Wand"] = { - ["max"] = 35, - ["min"] = 25, + ["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, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 30, }, ["specialCaseData"] = { }, @@ -37577,29 +25334,42 @@ return { }, ["usePositiveSign"] = true, }, + ["3515226849"] = { + ["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"] = 18, + ["max"] = 20, ["min"] = 14, }, ["Chest"] = { - ["max"] = 18, + ["max"] = 20, ["min"] = 14, }, ["Focus"] = { - ["max"] = 18, + ["max"] = 20, ["min"] = 14, }, ["Gloves"] = { - ["max"] = 18, + ["max"] = 20, ["min"] = 14, }, ["Helmet"] = { - ["max"] = 18, + ["max"] = 20, ["min"] = 14, }, ["Shield"] = { - ["max"] = 18, + ["max"] = 20, ["min"] = 14, }, ["specialCaseData"] = { @@ -37643,6 +25413,10 @@ return { ["max"] = 50, ["min"] = 50, }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, + }, ["Quarterstaff"] = { ["max"] = 50, ["min"] = 50, @@ -37659,10 +25433,6 @@ return { ["max"] = 50, ["min"] = 50, }, - ["Wand"] = { - ["max"] = 50, - ["min"] = 50, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -37698,6 +25468,19 @@ return { }, ["usePositiveSign"] = true, }, + ["3557924960"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3557924960", + ["text"] = "Gain #% of Damage as Extra Damage of a random Element perRune Socketed in Equipped Items", + ["type"] = "augment", + }, + }, ["3570773271"] = { ["Helmet"] = { ["max"] = 1, @@ -37724,20 +25507,6 @@ return { ["type"] = "augment", }, }, - ["3655769732"] = { - ["Chest"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3655769732", - ["text"] = "#% to Quality of all Skills", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, ["3666934677"] = { ["Helmet"] = { ["max"] = 2, @@ -37820,48 +25589,48 @@ return { }, ["3695891184"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 10, + ["max"] = 45, + ["min"] = 15, }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 10, + ["max"] = 45, + ["min"] = 15, }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 10, + ["max"] = 45, + ["min"] = 15, }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 10, + ["max"] = 45, + ["min"] = 15, }, ["Bow"] = { - ["max"] = 30, - ["min"] = 10, + ["max"] = 45, + ["min"] = 15, }, ["Claw"] = { - ["max"] = 30, - ["min"] = 10, + ["max"] = 45, + ["min"] = 15, }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 10, + ["max"] = 45, + ["min"] = 15, }, ["Flail"] = { - ["max"] = 30, - ["min"] = 10, + ["max"] = 45, + ["min"] = 15, }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 10, + ["max"] = 45, + ["min"] = 15, }, ["Spear"] = { - ["max"] = 30, - ["min"] = 10, + ["max"] = 45, + ["min"] = 15, }, ["Talisman"] = { - ["max"] = 30, - ["min"] = 10, + ["max"] = 45, + ["min"] = 15, }, ["specialCaseData"] = { }, @@ -37871,16 +25640,69 @@ return { ["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"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 40, ["min"] = 40, }, - ["Staff"] = { - ["max"] = 40, + ["Sceptre"] = { + ["max"] = 60, ["min"] = 40, }, - ["Wand"] = { + ["Staff"] = { ["max"] = 40, ["min"] = 40, }, @@ -37938,6 +25760,19 @@ return { ["type"] = "augment", }, }, + ["3814102597"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3814102597", + ["text"] = "All damage taken bypasses Runic Ward", + ["type"] = "augment", + }, + }, ["3824372849"] = { ["Boots"] = { ["max"] = 15, @@ -37951,10 +25786,24 @@ return { ["type"] = "augment", }, }, + ["3837707023"] = { + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, ["3850614073"] = { ["Sceptre"] = { - ["max"] = 8, - ["min"] = 8, + ["max"] = 12, + ["min"] = 12, }, ["specialCaseData"] = { }, @@ -37982,6 +25831,27 @@ return { ["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, @@ -38118,8 +25988,8 @@ return { }, ["3903510399"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 25, + ["max"] = 35, + ["min"] = 35, }, ["specialCaseData"] = { }, @@ -38131,8 +26001,12 @@ return { }, ["3917489142"] = { ["Chest"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 12, + ["min"] = 12, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, @@ -38142,7 +26016,25 @@ return { ["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, + }, ["Gloves"] = { ["max"] = 20, ["min"] = 20, @@ -38211,8 +26103,8 @@ return { }, ["3984865854"] = { ["Sceptre"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, @@ -38222,16 +26114,47 @@ return { ["type"] = "augment", }, }, - ["4010677958"] = { - ["Sceptre"] = { - ["max"] = 8, - ["min"] = 8, + ["4052037485"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", + ["id"] = "rune.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["4058681894"] = { + ["Helmet"] = { + ["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", }, }, @@ -38288,81 +26211,94 @@ return { ["type"] = "augment", }, }, + ["4065951768"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4065951768", + ["text"] = "#% increased Skill Effect Duration with Plant Skills", + ["type"] = "augment", + }, + }, ["4080418644"] = { ["1HMace"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["1HWeapon"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["2HMace"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["2HWeapon"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Boots"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Bow"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Chest"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Claw"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Crossbow"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Flail"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Focus"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Gloves"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Helmet"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Quarterstaff"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Shield"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Spear"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Staff"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Talisman"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["Wand"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 6, }, ["specialCaseData"] = { @@ -38389,12 +26325,20 @@ return { ["usePositiveSign"] = true, }, ["416040624"] = { - ["Staff"] = { - ["max"] = 14, + ["1HWeapon"] = { + ["max"] = 16, ["min"] = 10, }, - ["Wand"] = { - ["max"] = 14, + ["Chest"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Focus"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Staff"] = { + ["max"] = 16, ["min"] = 10, }, ["specialCaseData"] = { @@ -38405,29 +26349,42 @@ return { ["type"] = "augment", }, }, + ["4200448078"] = { + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4200448078", + ["text"] = "Companions in your Presence Gain #% of Damage as Extra Damage of a random Element", + ["type"] = "augment", + }, + }, ["4220027924"] = { ["Boots"] = { - ["max"] = 14, + ["max"] = 22, ["min"] = 10, }, ["Chest"] = { - ["max"] = 14, + ["max"] = 22, ["min"] = 10, }, ["Focus"] = { - ["max"] = 14, + ["max"] = 22, ["min"] = 10, }, ["Gloves"] = { - ["max"] = 14, + ["max"] = 22, ["min"] = 10, }, ["Helmet"] = { - ["max"] = 14, + ["max"] = 22, ["min"] = 10, }, ["Shield"] = { - ["max"] = 14, + ["max"] = 22, ["min"] = 10, }, ["specialCaseData"] = { @@ -38492,16 +26449,16 @@ return { ["type"] = "augment", }, }, - ["426207520"] = { + ["4258524206"] = { ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["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", + ["id"] = "rune.stat_4258524206", + ["text"] = "#% chance to build an additional Combo on Hit", ["type"] = "augment", }, }, @@ -38584,156 +26541,380 @@ return { ["type"] = "augment", }, }, + ["53045048"] = { + ["Chest"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["538981065"] = { + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_538981065", + ["text"] = "Grenades have #% chance to activate a second time", + ["type"] = "augment", + }, + }, + ["540694930"] = { + ["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"] = { + ["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"] = 6, + ["min"] = 3, + }, + ["1HWeapon"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["2HMace"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Bow"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Claw"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Crossbow"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["Flail"] = { + ["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"] = 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"] = 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_602344904", + ["text"] = "Transforms all Cold and Lightning modifiers on the item into equivalent Fire modifiers", + ["type"] = "augment", + }, + }, + ["610569665"] = { + ["Chest"] = { + ["max"] = -1, + ["min"] = -1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_610569665", + ["text"] = "# to Spirit per 2 Levels", + ["type"] = "augment", + }, + }, + ["624954515"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_554899692", - ["text"] = "# Charm Slot (Global)", + ["id"] = "rune.stat_624954515", + ["text"] = "#% increased Accuracy Rating", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["55876295"] = { + ["627339348"] = { ["1HMace"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 28.5, + ["min"] = 28.5, }, ["1HWeapon"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 28.5, + ["min"] = 28.5, }, ["2HMace"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 28.5, + ["min"] = 28.5, }, ["2HWeapon"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 28.5, + ["min"] = 28.5, }, ["Bow"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 28.5, + ["min"] = 28.5, }, ["Claw"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 28.5, + ["min"] = 28.5, }, ["Crossbow"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 28.5, + ["min"] = 28.5, }, ["Flail"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 28.5, + ["min"] = 28.5, }, ["Quarterstaff"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 28.5, + ["min"] = 28.5, }, ["Spear"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 28.5, + ["min"] = 28.5, }, ["Talisman"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 28.5, + ["min"] = 28.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_55876295", - ["text"] = "Leeches #% of Physical Damage as Life", + ["id"] = "rune.stat_627339348", + ["text"] = "Adds # to # Fire Damage to Attacks against Ignited Enemies", ["type"] = "augment", }, }, - ["594547430"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["632743438"] = { + ["Sceptre"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_594547430", - ["text"] = "Remove a Damaging Ailment when you use a Command Skill", + ["id"] = "rune.stat_632743438", + ["text"] = "Allies in your Presence have #% increased Movement Speed", ["type"] = "augment", }, }, - ["624954515"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, + ["649025131"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_624954515", - ["text"] = "#% increased Accuracy Rating", + ["id"] = "rune.stat_649025131", + ["text"] = "#% increased Movement Speed when on Low Life", ["type"] = "augment", }, }, - ["649025131"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 10, + ["666077204"] = { + ["Sceptre"] = { + ["max"] = 12, + ["min"] = 12, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_649025131", - ["text"] = "#% increased Movement Speed when on Low Life", + ["id"] = "rune.stat_666077204", + ["text"] = "Companions have #% increased Attack Speed", ["type"] = "augment", }, }, ["669069897"] = { ["1HMace"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 5, + ["min"] = 2, }, ["1HWeapon"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 5, + ["min"] = 2, }, ["2HMace"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 5, + ["min"] = 2, }, ["2HWeapon"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 5, + ["min"] = 2, }, ["Bow"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 5, + ["min"] = 2, }, ["Claw"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 5, + ["min"] = 2, }, ["Crossbow"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 5, + ["min"] = 2, }, ["Flail"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 5, + ["min"] = 2, }, ["Quarterstaff"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 5, + ["min"] = 2, }, ["Spear"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 5, + ["min"] = 2, }, ["Talisman"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["max"] = 5, + ["min"] = 2, }, ["specialCaseData"] = { }, @@ -38772,48 +26953,48 @@ return { }, ["691932474"] = { ["1HMace"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 150, + ["min"] = 60, }, ["1HWeapon"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 150, + ["min"] = 60, }, ["2HMace"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 150, + ["min"] = 60, }, ["2HWeapon"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 150, + ["min"] = 60, }, ["Bow"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 150, + ["min"] = 60, }, ["Claw"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 150, + ["min"] = 60, }, ["Crossbow"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 150, + ["min"] = 60, }, ["Flail"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 150, + ["min"] = 60, }, ["Quarterstaff"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 150, + ["min"] = 60, }, ["Spear"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 150, + ["min"] = 60, }, ["Talisman"] = { - ["max"] = 110, - ["min"] = 50, + ["max"] = 150, + ["min"] = 60, }, ["specialCaseData"] = { }, @@ -38826,54 +27007,153 @@ return { }, ["709508406"] = { ["1HMace"] = { - ["max"] = 28.5, + ["max"] = 18.5, ["min"] = 5, }, ["1HWeapon"] = { - ["max"] = 28.5, + ["max"] = 18.5, ["min"] = 5, }, ["2HMace"] = { - ["max"] = 28.5, + ["max"] = 18.5, ["min"] = 5, }, ["2HWeapon"] = { - ["max"] = 28.5, + ["max"] = 18.5, ["min"] = 5, }, ["Bow"] = { - ["max"] = 28.5, + ["max"] = 18.5, ["min"] = 5, }, ["Claw"] = { - ["max"] = 28.5, + ["max"] = 18.5, ["min"] = 5, }, ["Crossbow"] = { - ["max"] = 28.5, + ["max"] = 18.5, ["min"] = 5, }, ["Flail"] = { - ["max"] = 28.5, + ["max"] = 18.5, ["min"] = 5, }, ["Quarterstaff"] = { - ["max"] = 28.5, + ["max"] = 18.5, ["min"] = 5, }, ["Spear"] = { - ["max"] = 28.5, + ["max"] = 18.5, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 18.5, ["min"] = 5, }, - ["Talisman"] = { - ["max"] = 28.5, - ["min"] = 5, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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_709508406", - ["text"] = "Adds # to # Fire Damage", + ["id"] = "rune.stat_726496846", + ["text"] = "Idols socketed in this item gain the benefits of their Bonded modifiers", ["type"] = "augment", }, }, @@ -38926,10 +27206,6 @@ return { ["max"] = 5, ["min"] = 5, }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -38938,13 +27214,78 @@ return { ["type"] = "augment", }, }, - ["737908626"] = { + ["731781020"] = { + ["1HMace"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["1HWeapon"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["2HMace"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["2HWeapon"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Bow"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Claw"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Crossbow"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Flail"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Quarterstaff"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Sceptre"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Spear"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Staff"] = { - ["max"] = 24, - ["min"] = 16, + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["Talisman"] = { + ["max"] = 0.2, + ["min"] = 0.2, }, ["Wand"] = { - ["max"] = 24, + ["max"] = 0.2, + ["min"] = 0.2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_731781020", + ["text"] = "Flasks gain # charges per Second", + ["type"] = "augment", + }, + }, + ["737908626"] = { + ["1HWeapon"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["Staff"] = { + ["max"] = 28, ["min"] = 16, }, ["specialCaseData"] = { @@ -38988,10 +27329,27 @@ return { ["type"] = "augment", }, }, + ["762761075"] = { + ["Staff"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_762761075", + ["text"] = "#% less Mana Regeneration Rate", + ["type"] = "augment", + }, + }, ["770672621"] = { ["Helmet"] = { - ["max"] = 12, - ["min"] = 12, + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, @@ -39001,6 +27359,40 @@ return { ["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, + }, ["782230869"] = { ["Gloves"] = { ["max"] = 30, @@ -39015,37 +27407,37 @@ return { }, }, ["789117908"] = { + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 20, + }, ["Boots"] = { - ["max"] = 18, + ["max"] = 21, ["min"] = 12, }, ["Chest"] = { - ["max"] = 18, + ["max"] = 21, ["min"] = 12, }, ["Focus"] = { - ["max"] = 18, + ["max"] = 21, ["min"] = 12, }, ["Gloves"] = { - ["max"] = 18, + ["max"] = 21, ["min"] = 12, }, ["Helmet"] = { - ["max"] = 18, + ["max"] = 21, ["min"] = 12, }, ["Shield"] = { - ["max"] = 18, + ["max"] = 21, ["min"] = 12, }, ["Staff"] = { - ["max"] = 24, - ["min"] = 16, - }, - ["Wand"] = { - ["max"] = 24, - ["min"] = 16, + ["max"] = 35, + ["min"] = 20, }, ["specialCaseData"] = { }, @@ -39057,47 +27449,47 @@ return { }, ["791928121"] = { ["1HMace"] = { - ["max"] = 30, + ["max"] = 50, ["min"] = 20, }, ["1HWeapon"] = { - ["max"] = 30, + ["max"] = 50, ["min"] = 20, }, ["2HMace"] = { - ["max"] = 30, + ["max"] = 50, ["min"] = 20, }, ["2HWeapon"] = { - ["max"] = 30, + ["max"] = 50, ["min"] = 20, }, ["Bow"] = { - ["max"] = 30, + ["max"] = 50, ["min"] = 20, }, ["Claw"] = { - ["max"] = 30, + ["max"] = 50, ["min"] = 20, }, ["Crossbow"] = { - ["max"] = 30, + ["max"] = 50, ["min"] = 20, }, ["Flail"] = { - ["max"] = 30, + ["max"] = 50, ["min"] = 20, }, ["Quarterstaff"] = { - ["max"] = 30, + ["max"] = 50, ["min"] = 20, }, ["Spear"] = { - ["max"] = 30, + ["max"] = 50, ["min"] = 20, }, ["Talisman"] = { - ["max"] = 30, + ["max"] = 50, ["min"] = 20, }, ["specialCaseData"] = { @@ -39108,30 +27500,76 @@ return { ["type"] = "augment", }, }, + ["820939409"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["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"] = 20, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_830161081", + ["text"] = "#% increased Runic Ward", + ["type"] = "augment", + }, + }, ["836936635"] = { ["Boots"] = { - ["max"] = 0.35, - ["min"] = 0.25, + ["max"] = 0.5, + ["min"] = 0.35, }, ["Chest"] = { ["max"] = 1.5, - ["min"] = 0.25, + ["min"] = 0.35, }, ["Focus"] = { - ["max"] = 0.35, - ["min"] = 0.25, + ["max"] = 0.5, + ["min"] = 0.35, }, ["Gloves"] = { - ["max"] = 0.35, - ["min"] = 0.25, + ["max"] = 0.5, + ["min"] = 0.35, }, ["Helmet"] = { - ["max"] = 0.35, - ["min"] = 0.25, + ["max"] = 0.5, + ["min"] = 0.35, }, ["Shield"] = { - ["max"] = 0.35, - ["min"] = 0.25, + ["max"] = 0.5, + ["min"] = 0.35, }, ["specialCaseData"] = { }, @@ -39174,43 +27612,96 @@ return { ["type"] = "augment", }, }, - ["915264788"] = { + ["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"] = 50, - ["min"] = 50, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_915264788", - ["text"] = "#% increased Thorns Critical Hit Chance", + ["id"] = "rune.stat_901336307", + ["text"] = "Gain 1 Endurance Charge on reaching Low Life, only once every 2 seconds", ["type"] = "augment", }, }, ["915769802"] = { ["Boots"] = { - ["max"] = 80, - ["min"] = 40, + ["max"] = 125, + ["min"] = 50, }, ["Chest"] = { - ["max"] = 80, - ["min"] = 40, + ["max"] = 125, + ["min"] = 50, }, ["Focus"] = { - ["max"] = 80, - ["min"] = 40, + ["max"] = 125, + ["min"] = 50, }, ["Gloves"] = { - ["max"] = 80, - ["min"] = 40, + ["max"] = 125, + ["min"] = 50, }, ["Helmet"] = { - ["max"] = 80, - ["min"] = 40, + ["max"] = 125, + ["min"] = 50, }, ["Shield"] = { - ["max"] = 80, - ["min"] = 40, + ["max"] = 125, + ["min"] = 50, }, ["specialCaseData"] = { }, @@ -39226,6 +27717,10 @@ return { ["max"] = -15, ["min"] = -15, }, + ["Chest"] = { + ["max"] = -50, + ["min"] = -50, + }, ["invertOnNegative"] = true, ["specialCaseData"] = { }, diff --git a/src/Data/TradeSiteStats.lua b/src/Data/TradeSiteStats.lua new file mode 100644 index 000000000..f5452f67b --- /dev/null +++ b/src/Data/TradeSiteStats.lua @@ -0,0 +1,34947 @@ +return { + [1] = { + ["entries"] = { + [1] = { + ["id"] = "pseudo.pseudo_total_cold_resistance", + ["text"] = "+#% total to Cold Resistance", + ["type"] = "pseudo", + }, + [2] = { + ["id"] = "pseudo.pseudo_total_fire_resistance", + ["text"] = "+#% total to Fire Resistance", + ["type"] = "pseudo", + }, + [3] = { + ["id"] = "pseudo.pseudo_total_lightning_resistance", + ["text"] = "+#% total to Lightning Resistance", + ["type"] = "pseudo", + }, + [4] = { + ["id"] = "pseudo.pseudo_total_elemental_resistance", + ["text"] = "+#% total Elemental Resistance", + ["type"] = "pseudo", + }, + [5] = { + ["id"] = "pseudo.pseudo_total_chaos_resistance", + ["text"] = "+#% total to Chaos Resistance", + ["type"] = "pseudo", + }, + [6] = { + ["id"] = "pseudo.pseudo_total_resistance", + ["text"] = "+#% total Resistance", + ["type"] = "pseudo", + }, + [7] = { + ["id"] = "pseudo.pseudo_count_resistances", + ["text"] = "# total Resistances", + ["type"] = "pseudo", + }, + [8] = { + ["id"] = "pseudo.pseudo_count_elemental_resistances", + ["text"] = "# total Elemental Resistances", + ["type"] = "pseudo", + }, + [9] = { + ["id"] = "pseudo.pseudo_total_all_elemental_resistances", + ["text"] = "+#% total to all Elemental Resistances", + ["type"] = "pseudo", + }, + [10] = { + ["id"] = "pseudo.pseudo_total_strength", + ["text"] = "+# total to Strength", + ["type"] = "pseudo", + }, + [11] = { + ["id"] = "pseudo.pseudo_total_dexterity", + ["text"] = "+# total to Dexterity", + ["type"] = "pseudo", + }, + [12] = { + ["id"] = "pseudo.pseudo_total_intelligence", + ["text"] = "+# total to Intelligence", + ["type"] = "pseudo", + }, + [13] = { + ["id"] = "pseudo.pseudo_total_all_attributes", + ["text"] = "+# total to all Attributes", + ["type"] = "pseudo", + }, + [14] = { + ["id"] = "pseudo.pseudo_total_attributes", + ["text"] = "+# total to Attributes", + ["type"] = "pseudo", + }, + [15] = { + ["id"] = "pseudo.pseudo_total_life", + ["text"] = "+# total maximum Life", + ["type"] = "pseudo", + }, + [16] = { + ["id"] = "pseudo.pseudo_total_mana", + ["text"] = "+# total maximum Mana", + ["type"] = "pseudo", + }, + [17] = { + ["id"] = "pseudo.pseudo_total_energy_shield", + ["text"] = "+# total maximum Energy Shield", + ["type"] = "pseudo", + }, + [18] = { + ["id"] = "pseudo.pseudo_increased_energy_shield", + ["text"] = "#% total increased maximum Energy Shield", + ["type"] = "pseudo", + }, + [19] = { + ["id"] = "pseudo.pseudo_increased_movement_speed", + ["text"] = "#% increased Movement Speed", + ["type"] = "pseudo", + }, + [20] = { + ["id"] = "pseudo.pseudo_number_of_enchant_mods", + ["text"] = "# Enchant Modifiers", + ["type"] = "pseudo", + }, + [21] = { + ["id"] = "pseudo.pseudo_number_of_implicit_mods", + ["text"] = "# Implicit Modifiers", + ["type"] = "pseudo", + }, + [22] = { + ["id"] = "pseudo.pseudo_number_of_prefix_mods", + ["text"] = "# Prefix Modifiers", + ["type"] = "pseudo", + }, + [23] = { + ["id"] = "pseudo.pseudo_number_of_suffix_mods", + ["text"] = "# Suffix Modifiers", + ["type"] = "pseudo", + }, + [24] = { + ["id"] = "pseudo.pseudo_number_of_affix_mods", + ["text"] = "# Modifiers", + ["type"] = "pseudo", + }, + [25] = { + ["id"] = "pseudo.pseudo_number_of_desecrated_prefix_mods", + ["text"] = "# Desecrated Prefix Modifiers", + ["type"] = "pseudo", + }, + [26] = { + ["id"] = "pseudo.pseudo_number_of_desecrated_suffix_mods", + ["text"] = "# Desecrated Suffix Modifiers", + ["type"] = "pseudo", + }, + [27] = { + ["id"] = "pseudo.pseudo_number_of_desecrated_mods", + ["text"] = "# Desecrated Modifiers", + ["type"] = "pseudo", + }, + [28] = { + ["id"] = "pseudo.pseudo_number_of_unrevealed_prefix_mods", + ["text"] = "# Unrevealed Prefix Modifiers", + ["type"] = "pseudo", + }, + [29] = { + ["id"] = "pseudo.pseudo_number_of_unrevealed_suffix_mods", + ["text"] = "# Unrevealed Suffix Modifiers", + ["type"] = "pseudo", + }, + [30] = { + ["id"] = "pseudo.pseudo_number_of_unrevealed_mods", + ["text"] = "# Unrevealed Modifiers", + ["type"] = "pseudo", + }, + [31] = { + ["id"] = "pseudo.pseudo_number_of_empty_prefix_mods", + ["text"] = "# Empty Prefix Modifiers", + ["type"] = "pseudo", + }, + [32] = { + ["id"] = "pseudo.pseudo_number_of_empty_suffix_mods", + ["text"] = "# Empty Suffix Modifiers", + ["type"] = "pseudo", + }, + [33] = { + ["id"] = "pseudo.pseudo_number_of_empty_affix_mods", + ["text"] = "# Empty Modifiers", + ["type"] = "pseudo", + }, + [34] = { + ["id"] = "pseudo.pseudo_number_of_fractured_mods", + ["text"] = "# Fractured Modifiers", + ["type"] = "pseudo", + }, + [35] = { + ["id"] = "pseudo.pseudo_number_of_crafted_mods", + ["text"] = "# Crafted Modifiers", + ["type"] = "pseudo", + }, + [36] = { + ["id"] = "pseudo.pseudo_number_of_uses_remaining", + ["text"] = "# uses remaining (Tablets)", + ["type"] = "pseudo", + }, + }, + ["id"] = "pseudo", + ["label"] = "Pseudo", + }, + [2] = { + ["entries"] = { + [1] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + [2] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "explicit", + }, + [3] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "explicit", + }, + [4] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "explicit", + }, + [5] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "explicit", + }, + [6] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "explicit", + }, + [7] = { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + [8] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "explicit", + }, + [9] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "explicit", + }, + [10] = { + ["id"] = "explicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "explicit", + }, + [11] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + [12] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "explicit", + }, + [13] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + [14] = { + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + ["type"] = "explicit", + }, + [15] = { + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "explicit", + }, + [16] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "explicit", + }, + [17] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + [18] = { + ["id"] = "explicit.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "explicit", + }, + [19] = { + ["id"] = "explicit.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "explicit", + }, + [20] = { + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "explicit", + }, + [21] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "explicit", + }, + [22] = { + ["id"] = "explicit.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "explicit", + }, + [23] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + [24] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "explicit", + }, + [25] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + [26] = { + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "explicit", + }, + [27] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + [28] = { + ["id"] = "explicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "explicit", + }, + [29] = { + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", + ["type"] = "explicit", + }, + [30] = { + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", + ["type"] = "explicit", + }, + [31] = { + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + [32] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + [33] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "explicit", + }, + [34] = { + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", + ["type"] = "explicit", + }, + [35] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "explicit", + }, + [36] = { + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "explicit", + }, + [37] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + [38] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + [39] = { + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "explicit", + }, + [40] = { + ["id"] = "explicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "explicit", + }, + [41] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", + ["type"] = "explicit", + }, + [42] = { + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "explicit", + }, + [43] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", + ["type"] = "explicit", + }, + [44] = { + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "explicit", + }, + [45] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + [46] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "explicit", + }, + [47] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + [48] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "explicit", + }, + [49] = { + ["id"] = "explicit.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", + ["type"] = "explicit", + }, + [50] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "explicit", + }, + [51] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + [52] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + [53] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "explicit", + }, + [54] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "explicit", + }, + [55] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + [56] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "explicit", + }, + [57] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", + }, + [58] = { + ["id"] = "explicit.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", + ["type"] = "explicit", + }, + [59] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + [60] = { + ["id"] = "explicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "explicit", + }, + [61] = { + ["id"] = "explicit.stat_9187492", + ["text"] = "# to Level of all Melee Skills", + ["type"] = "explicit", + }, + [62] = { + ["id"] = "explicit.stat_518292764", + ["text"] = "#% to Critical Hit Chance", + ["type"] = "explicit", + }, + [63] = { + ["id"] = "explicit.stat_1276056105", + ["text"] = "#% increased Gold found in this Area (Gold Piles)", + ["type"] = "explicit", + }, + [64] = { + ["id"] = "explicit.stat_1276056105", + ["text"] = "#% increased Gold found in your Maps (Gold Piles)", + ["type"] = "explicit", + }, + [65] = { + ["id"] = "explicit.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", + ["type"] = "explicit", + }, + [66] = { + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "explicit", + }, + [67] = { + ["id"] = "explicit.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "explicit", + }, + [68] = { + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", + }, + [69] = { + ["id"] = "explicit.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "explicit", + }, + [70] = { + ["id"] = "explicit.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "explicit", + }, + [71] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "explicit", + }, + [72] = { + ["id"] = "explicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "explicit", + }, + [73] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + [74] = { + ["id"] = "explicit.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "explicit", + }, + [75] = { + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + [76] = { + ["id"] = "explicit.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + [77] = { + ["id"] = "explicit.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "explicit", + }, + [78] = { + ["id"] = "explicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "explicit", + }, + [79] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + [80] = { + ["id"] = "explicit.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["type"] = "explicit", + }, + [81] = { + ["id"] = "explicit.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "explicit", + }, + [82] = { + ["id"] = "explicit.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + [83] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + [84] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + [85] = { + ["id"] = "explicit.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + [86] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + [87] = { + ["id"] = "explicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "explicit", + }, + [88] = { + ["id"] = "explicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "explicit", + }, + [89] = { + ["id"] = "explicit.stat_57434274", + ["text"] = "#% increased Experience gain", + ["type"] = "explicit", + }, + [90] = { + ["id"] = "explicit.stat_57434274", + ["text"] = "#% increased Experience gain in your Maps", + ["type"] = "explicit", + }, + [91] = { + ["id"] = "explicit.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "explicit", + }, + [92] = { + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + [93] = { + ["id"] = "explicit.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "explicit", + }, + [94] = { + ["id"] = "explicit.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", + ["type"] = "explicit", + }, + [95] = { + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "explicit", + }, + [96] = { + ["id"] = "explicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "explicit", + }, + [97] = { + ["id"] = "explicit.stat_1714706956", + ["text"] = "#% increased Magic Pack Size", + ["type"] = "explicit", + }, + [98] = { + ["id"] = "explicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", + }, + [99] = { + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "explicit", + }, + [100] = { + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + [101] = { + ["id"] = "explicit.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "explicit", + }, + [102] = { + ["id"] = "explicit.stat_2624927319", + ["text"] = "#% increased number of Monster Packs", + ["type"] = "explicit", + }, + [103] = { + ["id"] = "explicit.stat_2624927319", + ["text"] = "#% increased number of Monster Packs in your Maps", + ["type"] = "explicit", + }, + [104] = { + ["id"] = "explicit.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", + ["type"] = "explicit", + }, + [105] = { + ["id"] = "explicit.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "explicit", + }, + [106] = { + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "explicit", + }, + [107] = { + ["id"] = "explicit.stat_748522257", + ["text"] = "#% increased Stun Duration", + ["type"] = "explicit", + }, + [108] = { + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "explicit", + }, + [109] = { + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "explicit", + }, + [110] = { + ["id"] = "explicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "explicit", + }, + [111] = { + ["id"] = "explicit.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "explicit", + }, + [112] = { + ["id"] = "explicit.stat_4188894176", + ["text"] = "#% increased Damage with Bows", + ["type"] = "explicit", + }, + [113] = { + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "explicit", + }, + [114] = { + ["id"] = "explicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "explicit", + }, + [115] = { + ["id"] = "explicit.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "explicit", + }, + [116] = { + ["id"] = "explicit.stat_2306002879", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + [117] = { + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + [118] = { + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", + }, + [119] = { + ["id"] = "explicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "explicit", + }, + [120] = { + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", + }, + [121] = { + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "explicit", + }, + [122] = { + ["id"] = "explicit.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", + ["type"] = "explicit", + }, + [123] = { + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", + }, + [124] = { + ["id"] = "explicit.stat_2390685262", + ["text"] = "#% increased Quantity of Items found", + ["type"] = "explicit", + }, + [125] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + [126] = { + ["id"] = "explicit.stat_2777224821", + ["text"] = "#% increased Quantity of Waystones found", + ["type"] = "explicit", + }, + [127] = { + ["id"] = "explicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "explicit", + }, + [128] = { + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "explicit", + }, + [129] = { + ["id"] = "explicit.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", + ["type"] = "explicit", + }, + [130] = { + ["id"] = "explicit.stat_3873704640", + ["text"] = "#% increased Magic Monsters", + ["type"] = "explicit", + }, + [131] = { + ["id"] = "explicit.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", + ["type"] = "explicit", + }, + [132] = { + ["id"] = "explicit.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", + ["type"] = "explicit", + }, + [133] = { + ["id"] = "explicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "explicit", + }, + [134] = { + ["id"] = "explicit.stat_4147897060", + ["text"] = "#% increased Block chance", + ["type"] = "explicit", + }, + [135] = { + ["id"] = "explicit.stat_3793155082", + ["text"] = "#% increased Rare Monsters", + ["type"] = "explicit", + }, + [136] = { + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "explicit", + }, + [137] = { + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + [138] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + [139] = { + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "explicit", + }, + [140] = { + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration", + ["type"] = "explicit", + }, + [141] = { + ["id"] = "explicit.stat_1692879867", + ["text"] = "#% increased Duration of Bleeding on You", + ["type"] = "explicit", + }, + [142] = { + ["id"] = "explicit.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", + }, + [143] = { + ["id"] = "explicit.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + [144] = { + ["id"] = "explicit.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", + ["type"] = "explicit", + }, + [145] = { + ["id"] = "explicit.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["type"] = "explicit", + }, + [146] = { + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "explicit", + }, + [147] = { + ["id"] = "explicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "explicit", + }, + [148] = { + ["id"] = "explicit.stat_1994551050", + ["text"] = "Monsters have #% increased Ailment Threshold", + ["type"] = "explicit", + }, + [149] = { + ["id"] = "explicit.stat_4101943684", + ["text"] = "Monsters have #% increased Stun Threshold", + ["type"] = "explicit", + }, + [150] = { + ["id"] = "explicit.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", + ["type"] = "explicit", + }, + [151] = { + ["id"] = "explicit.stat_1054098949", + ["text"] = "+#% Monster Elemental Resistances", + ["type"] = "explicit", + }, + [152] = { + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "explicit", + }, + [153] = { + ["id"] = "explicit.stat_1366840608", + ["text"] = "#% increased Charges", + ["type"] = "explicit", + }, + [154] = { + ["id"] = "explicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "explicit", + }, + [155] = { + ["id"] = "explicit.stat_57326096", + ["text"] = "Monsters have #% Critical Damage Bonus", + ["type"] = "explicit", + }, + [156] = { + ["id"] = "explicit.stat_2753083623", + ["text"] = "Monsters have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + [157] = { + ["id"] = "explicit.stat_95249895", + ["text"] = "#% more Monster Life", + ["type"] = "explicit", + }, + [158] = { + ["id"] = "explicit.stat_554690751", + ["text"] = "Players are periodically Cursed with Elemental Weakness", + ["type"] = "explicit", + }, + [159] = { + ["id"] = "explicit.stat_211727", + ["text"] = "Monsters deal #% of Damage as Extra Cold", + ["type"] = "explicit", + }, + [160] = { + ["id"] = "explicit.stat_512071314", + ["text"] = "Monsters deal #% of Damage as Extra Lightning", + ["type"] = "explicit", + }, + [161] = { + ["id"] = "explicit.stat_92381065", + ["text"] = "Monsters deal #% of Damage as Extra Fire", + ["type"] = "explicit", + }, + [162] = { + ["id"] = "explicit.stat_1629357380", + ["text"] = "Players are periodically Cursed with Temporal Chains", + ["type"] = "explicit", + }, + [163] = { + ["id"] = "explicit.stat_2029171424", + ["text"] = "Players are periodically Cursed with Enfeeble", + ["type"] = "explicit", + }, + [164] = { + ["id"] = "explicit.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", + ["type"] = "explicit", + }, + [165] = { + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "explicit", + }, + [166] = { + ["id"] = "explicit.stat_3909654181", + ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", + ["type"] = "explicit", + }, + [167] = { + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charges gained", + ["type"] = "explicit", + }, + [168] = { + ["id"] = "explicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", + }, + [169] = { + ["id"] = "explicit.stat_1890519597", + ["text"] = "#% increased Monster Damage", + ["type"] = "explicit", + }, + [170] = { + ["id"] = "explicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "explicit", + }, + [171] = { + ["id"] = "explicit.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", + ["type"] = "explicit", + }, + [172] = { + ["id"] = "explicit.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", + ["type"] = "explicit", + }, + [173] = { + ["id"] = "explicit.stat_2898517796", + ["text"] = "#% increased amount of Magic Chests", + ["type"] = "explicit", + }, + [174] = { + ["id"] = "explicit.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "explicit", + }, + [175] = { + ["id"] = "explicit.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", + ["type"] = "explicit", + }, + [176] = { + ["id"] = "explicit.stat_798469000", + ["text"] = "#% increased amount of Rare Chests", + ["type"] = "explicit", + }, + [177] = { + ["id"] = "explicit.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "explicit", + }, + [178] = { + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "explicit", + }, + [179] = { + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [180] = { + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "explicit", + }, + [181] = { + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", + }, + [182] = { + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces", + ["type"] = "explicit", + }, + [183] = { + ["id"] = "explicit.stat_99927264", + ["text"] = "#% reduced Shock duration on you", + ["type"] = "explicit", + }, + [184] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + [185] = { + ["id"] = "explicit.stat_2523933828", + ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "explicit", + }, + [186] = { + ["id"] = "explicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", + ["type"] = "explicit", + }, + [187] = { + ["id"] = "explicit.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", + ["type"] = "explicit", + }, + [188] = { + ["id"] = "explicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "explicit", + }, + [189] = { + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "explicit", + }, + [190] = { + ["id"] = "explicit.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "explicit", + }, + [191] = { + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + [192] = { + ["id"] = "explicit.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "explicit", + }, + [193] = { + ["id"] = "explicit.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "explicit", + }, + [194] = { + ["id"] = "explicit.stat_565784293", + ["text"] = "#% increased Knockback Distance", + ["type"] = "explicit", + }, + [195] = { + ["id"] = "explicit.stat_4181072906", + ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", + ["type"] = "explicit", + }, + [196] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + [197] = { + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", + ["type"] = "explicit", + }, + [198] = { + ["id"] = "explicit.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", + ["type"] = "explicit", + }, + [199] = { + ["id"] = "explicit.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "explicit", + }, + [200] = { + ["id"] = "explicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "explicit", + }, + [201] = { + ["id"] = "explicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "explicit", + }, + [202] = { + ["id"] = "explicit.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", + ["type"] = "explicit", + }, + [203] = { + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + [204] = { + ["id"] = "explicit.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "explicit", + }, + [205] = { + ["id"] = "explicit.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "explicit", + }, + [206] = { + ["id"] = "explicit.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", + ["type"] = "explicit", + }, + [207] = { + ["id"] = "explicit.stat_133340941", + ["text"] = "Area has patches of Ignited Ground", + ["type"] = "explicit", + }, + [208] = { + ["id"] = "explicit.stat_1898978455", + ["text"] = "Monster Damage Penetrates #% Elemental Resistances", + ["type"] = "explicit", + }, + [209] = { + ["id"] = "explicit.stat_3376488707", + ["text"] = "#% maximum Player Resistances", + ["type"] = "explicit", + }, + [210] = { + ["id"] = "explicit.stat_3877264671", + ["text"] = "Monster have #% increased Elemental Ailment Application", + ["type"] = "explicit", + }, + [211] = { + ["id"] = "explicit.stat_115425161", + ["text"] = "Monsters have #% increased Stun Buildup", + ["type"] = "explicit", + }, + [212] = { + ["id"] = "explicit.stat_2582079000", + ["text"] = "# Charm Slot", + ["type"] = "explicit", + }, + [213] = { + ["id"] = "explicit.stat_337935900", + ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", + ["type"] = "explicit", + }, + [214] = { + ["id"] = "explicit.stat_2570249991", + ["text"] = "Monsters are Evasive", + ["type"] = "explicit", + }, + [215] = { + ["id"] = "explicit.stat_2887760183", + ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", + ["type"] = "explicit", + }, + [216] = { + ["id"] = "explicit.stat_95221307", + ["text"] = "Monsters have #% chance to Poison on Hit", + ["type"] = "explicit", + }, + [217] = { + ["id"] = "explicit.stat_2549889921", + ["text"] = "Players gain #% reduced Flask Charges", + ["type"] = "explicit", + }, + [218] = { + ["id"] = "explicit.stat_2506820610", + ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", + ["type"] = "explicit", + }, + [219] = { + ["id"] = "explicit.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", + ["type"] = "explicit", + }, + [220] = { + ["id"] = "explicit.stat_3169585282", + ["text"] = "Allies in your Presence have # to Accuracy Rating", + ["type"] = "explicit", + }, + [221] = { + ["id"] = "explicit.stat_2539290279", + ["text"] = "Monsters are Armoured", + ["type"] = "explicit", + }, + [222] = { + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + [223] = { + ["id"] = "explicit.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["type"] = "explicit", + }, + [224] = { + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + [225] = { + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + [226] = { + ["id"] = "explicit.stat_349586058", + ["text"] = "Area has patches of Chilled Ground", + ["type"] = "explicit", + }, + [227] = { + ["id"] = "explicit.stat_3477720557", + ["text"] = "Area has patches of Shocked Ground", + ["type"] = "explicit", + }, + [228] = { + ["id"] = "explicit.stat_2017682521", + ["text"] = "#% increased Pack Size", + ["type"] = "explicit", + }, + [229] = { + ["id"] = "explicit.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["type"] = "explicit", + }, + [230] = { + ["id"] = "explicit.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "explicit", + }, + [231] = { + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + [232] = { + ["id"] = "explicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "explicit", + }, + [233] = { + ["id"] = "explicit.stat_1873752457", + ["text"] = "Gains # Charges per Second", + ["type"] = "explicit", + }, + [234] = { + ["id"] = "explicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", + ["type"] = "explicit", + }, + [235] = { + ["id"] = "explicit.stat_689816330", + ["text"] = "Area has #% increased chance to contain Shrines", + ["type"] = "explicit", + }, + [236] = { + ["id"] = "explicit.stat_689816330", + ["text"] = "#% increased chance of Shrines", + ["type"] = "explicit", + }, + [237] = { + ["id"] = "explicit.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", + ["type"] = "explicit", + }, + [238] = { + ["id"] = "explicit.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", + ["type"] = "explicit", + }, + [239] = { + ["id"] = "explicit.stat_4279535856", + ["text"] = "Area has #% increased chance to contain Strongboxes", + ["type"] = "explicit", + }, + [240] = { + ["id"] = "explicit.stat_4279535856", + ["text"] = "#% increased chance of Strongboxes", + ["type"] = "explicit", + }, + [241] = { + ["id"] = "explicit.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["type"] = "explicit", + }, + [242] = { + ["id"] = "explicit.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "explicit", + }, + [243] = { + ["id"] = "explicit.stat_1825943485", + ["text"] = "Area has #% increased chance to contain Essences", + ["type"] = "explicit", + }, + [244] = { + ["id"] = "explicit.stat_1825943485", + ["text"] = "#% increased chance of Essences", + ["type"] = "explicit", + }, + [245] = { + ["id"] = "explicit.stat_828533480", + ["text"] = "#% Chance to gain a Charge when you kill an enemy", + ["type"] = "explicit", + }, + [246] = { + ["id"] = "explicit.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", + ["type"] = "explicit", + }, + [247] = { + ["id"] = "explicit.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", + ["type"] = "explicit", + }, + [248] = { + ["id"] = "explicit.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "explicit", + }, + [249] = { + ["id"] = "explicit.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "explicit", + }, + [250] = { + ["id"] = "explicit.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "explicit", + }, + [251] = { + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "explicit", + }, + [252] = { + ["id"] = "explicit.stat_3732878551", + ["text"] = "Rare Monsters have a #% Surpassing chance to have an additional Modifier", + ["type"] = "explicit", + }, + [253] = { + ["id"] = "explicit.stat_3732878551", + ["text"] = "Rare Monsters in your Maps have a #% Surpassing chance to have an additional Modifier", + ["type"] = "explicit", + }, + [254] = { + ["id"] = "explicit.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", + ["type"] = "explicit", + }, + [255] = { + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "explicit", + }, + [256] = { + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "explicit", + }, + [257] = { + ["id"] = "explicit.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "explicit", + }, + [258] = { + ["id"] = "explicit.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", + ["type"] = "explicit", + }, + [259] = { + ["id"] = "explicit.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "explicit", + }, + [260] = { + ["id"] = "explicit.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + [261] = { + ["id"] = "explicit.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", + ["type"] = "explicit", + }, + [262] = { + ["id"] = "explicit.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "explicit", + }, + [263] = { + ["id"] = "explicit.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "explicit", + }, + [264] = { + ["id"] = "explicit.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + [265] = { + ["id"] = "explicit.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "explicit", + }, + [266] = { + ["id"] = "explicit.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "explicit", + }, + [267] = { + ["id"] = "explicit.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + [268] = { + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + [269] = { + ["id"] = "explicit.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", + ["type"] = "explicit", + }, + [270] = { + ["id"] = "explicit.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "explicit", + }, + [271] = { + ["id"] = "explicit.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", + ["type"] = "explicit", + }, + [272] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + [273] = { + ["id"] = "explicit.stat_2541588185", + ["text"] = "#% increased Duration (Charm)", + ["type"] = "explicit", + }, + [274] = { + ["id"] = "explicit.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", + ["type"] = "explicit", + }, + [275] = { + ["id"] = "explicit.stat_3146310524", + ["text"] = "Dazes on Hit", + ["type"] = "explicit", + }, + [276] = { + ["id"] = "explicit.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "explicit", + }, + [277] = { + ["id"] = "explicit.stat_3473929743", + ["text"] = "#% increased Pin Buildup", + ["type"] = "explicit", + }, + [278] = { + ["id"] = "explicit.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "explicit", + }, + [279] = { + ["id"] = "explicit.stat_889691035", + ["text"] = "#% increased Attack Speed per 10 Dexterity", + ["type"] = "explicit", + }, + [280] = { + ["id"] = "explicit.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "explicit", + }, + [281] = { + ["id"] = "explicit.stat_2200661314", + ["text"] = "Monsters deal #% of Damage as Extra Chaos", + ["type"] = "explicit", + }, + [282] = { + ["id"] = "explicit.stat_941368244", + ["text"] = "Players have #% more Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [283] = { + ["id"] = "explicit.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "explicit", + }, + [284] = { + ["id"] = "explicit.stat_1879340377", + ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", + ["type"] = "explicit", + }, + [285] = { + ["id"] = "explicit.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "explicit", + }, + [286] = { + ["id"] = "explicit.stat_3796523155", + ["text"] = "#% less effect of Curses on Monsters", + ["type"] = "explicit", + }, + [287] = { + ["id"] = "explicit.stat_1309819744", + ["text"] = "Monsters fire # additional Projectiles", + ["type"] = "explicit", + }, + [288] = { + ["id"] = "explicit.stat_3222482040", + ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", + ["type"] = "explicit", + }, + [289] = { + ["id"] = "explicit.stat_1588049749", + ["text"] = "Monsters have #% increased Accuracy Rating", + ["type"] = "explicit", + }, + [290] = { + ["id"] = "explicit.stat_1791136590", + ["text"] = "#% increased Weapon Damage per 10 Strength", + ["type"] = "explicit", + }, + [291] = { + ["id"] = "explicit.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "explicit", + }, + [292] = { + ["id"] = "explicit.stat_434750362", + ["text"] = "#% increased Area of Effect for Attacks per 10 Intelligence", + ["type"] = "explicit", + }, + [293] = { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + [294] = { + ["id"] = "explicit.stat_2365392475", + ["text"] = "Recover # Life when Used", + ["type"] = "explicit", + }, + [295] = { + ["id"] = "explicit.stat_1708461270", + ["text"] = "Monsters have #% increased Area of Effect", + ["type"] = "explicit", + }, + [296] = { + ["id"] = "explicit.stat_3119292058", + ["text"] = "Enemies Chilled by your Hits can be Shattered as though Frozen", + ["type"] = "explicit", + }, + [297] = { + ["id"] = "explicit.stat_1120862500", + ["text"] = "Recover # Mana when Used", + ["type"] = "explicit", + }, + [298] = { + ["id"] = "explicit.stat_1210760818", + ["text"] = "Breaches have #% increased Monster density", + ["type"] = "explicit", + }, + [299] = { + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "explicit", + }, + [300] = { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + [301] = { + ["id"] = "explicit.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "explicit", + }, + [302] = { + ["id"] = "explicit.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["type"] = "explicit", + }, + [303] = { + ["id"] = "explicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "explicit", + }, + [304] = { + ["id"] = "explicit.stat_2448633171", + ["text"] = "#% of Damage taken bypasses Energy Shield", + ["type"] = "explicit", + }, + [305] = { + ["id"] = "explicit.stat_1228337241", + ["text"] = "Gain #% of maximum Life as Extra maximum Energy Shield", + ["type"] = "explicit", + }, + [306] = { + ["id"] = "explicit.stat_3309089125", + ["text"] = "Area contains # additional packs of Bramble Monsters", + ["type"] = "explicit", + }, + [307] = { + ["id"] = "explicit.stat_240445958", + ["text"] = "Area contains # additional packs of Undead", + ["type"] = "explicit", + }, + [308] = { + ["id"] = "explicit.stat_2949706590", + ["text"] = "Area contains # additional packs of Iron Guards", + ["type"] = "explicit", + }, + [309] = { + ["id"] = "explicit.stat_3592067990", + ["text"] = "Area contains # additional packs of Plagued Monsters", + ["type"] = "explicit", + }, + [310] = { + ["id"] = "explicit.stat_1436812886", + ["text"] = "Area contains # additional packs of Ezomyte Monsters", + ["type"] = "explicit", + }, + [311] = { + ["id"] = "explicit.stat_4181857719", + ["text"] = "Area contains # additional packs of Vaal Monsters", + ["type"] = "explicit", + }, + [312] = { + ["id"] = "explicit.stat_4130878258", + ["text"] = "Area contains # additional packs of Faridun Monsters", + ["type"] = "explicit", + }, + [313] = { + ["id"] = "explicit.stat_3757259819", + ["text"] = "Area contains # additional packs of Beasts", + ["type"] = "explicit", + }, + [314] = { + ["id"] = "explicit.stat_624534143", + ["text"] = "#% increased Quantity of Breach Splinters dropped by Breach Monsters in Area", + ["type"] = "explicit", + }, + [315] = { + ["id"] = "explicit.stat_624534143", + ["text"] = "#% increased Quantity of Breach Splinters dropped by Breach Monsters in your Maps", + ["type"] = "explicit", + }, + [316] = { + ["id"] = "explicit.stat_1689473577", + ["text"] = "Area contains # additional packs of Transcended Monsters", + ["type"] = "explicit", + }, + [317] = { + ["id"] = "explicit.stat_3049505189", + ["text"] = "Areas which contain Breaches have #% chance to contain an additional Breach", + ["type"] = "explicit", + }, + [318] = { + ["id"] = "explicit.stat_3049505189", + ["text"] = "Your Maps which contain Breaches have #% chance to contain an additional Breach", + ["type"] = "explicit", + }, + [319] = { + ["id"] = "explicit.stat_3240183538", + ["text"] = "Area contains an additional Strongbox", + ["type"] = "explicit", + }, + [320] = { + ["id"] = "explicit.stat_3240183538", + ["text"] = "Your Maps contain # additional Strongboxes", + ["type"] = "explicit", + }, + [321] = { + ["id"] = "explicit.stat_1468737867", + ["text"] = "Area contains an additional Shrine", + ["type"] = "explicit", + }, + [322] = { + ["id"] = "explicit.stat_1468737867", + ["text"] = "Your Maps contain an additional Shrine", + ["type"] = "explicit", + }, + [323] = { + ["id"] = "explicit.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + [324] = { + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", + ["type"] = "explicit", + }, + [325] = { + ["id"] = "explicit.stat_395808938", + ["text"] = "Area contains an additional Essence", + ["type"] = "explicit", + }, + [326] = { + ["id"] = "explicit.stat_395808938", + ["text"] = "Your Maps contain an additional Essence", + ["type"] = "explicit", + }, + [327] = { + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [328] = { + ["id"] = "explicit.stat_2676834156", + ["text"] = "Also grants # Guard", + ["type"] = "explicit", + }, + [329] = { + ["id"] = "explicit.stat_2214228141", + ["text"] = "Projectiles Pierce all Ignited enemies", + ["type"] = "explicit", + }, + [330] = { + ["id"] = "explicit.stat_2550456553", + ["text"] = "Rare Monsters have # additional Modifier", + ["type"] = "explicit", + }, + [331] = { + ["id"] = "explicit.stat_2550456553", + ["text"] = "Rare Monsters in your Maps have # additional Modifier", + ["type"] = "explicit", + }, + [332] = { + ["id"] = "explicit.stat_2458962764", + ["text"] = "#% of Maximum Life Converted to Energy Shield", + ["type"] = "explicit", + }, + [333] = { + ["id"] = "explicit.stat_1049080093", + ["text"] = "Attacks Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + [334] = { + ["id"] = "explicit.stat_335699483", + ["text"] = "Leeches #% of maximum Life when you Cast a Spell", + ["type"] = "explicit", + }, + [335] = { + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + [336] = { + ["id"] = "explicit.stat_1017648537", + ["text"] = "Lightning damage from Hits Contributes to Electrocution Buildup", + ["type"] = "explicit", + }, + [337] = { + ["id"] = "explicit.stat_1261612903", + ["text"] = "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", + ["type"] = "explicit", + }, + [338] = { + ["id"] = "explicit.stat_2949096603", + ["text"] = "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", + ["type"] = "explicit", + }, + [339] = { + ["id"] = "explicit.stat_1011772129", + ["text"] = "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", + ["type"] = "explicit", + }, + [340] = { + ["id"] = "explicit.stat_2639966148", + ["text"] = "Minions Revive #% faster", + ["type"] = "explicit", + }, + [341] = { + ["id"] = "explicit.stat_1686824704", + ["text"] = "#% of Cold Damage Converted to Lightning Damage", + ["type"] = "explicit", + }, + [342] = { + ["id"] = "explicit.stat_826162720", + ["text"] = "Trigger Ember Fusillade Skill on casting a Spell", + ["type"] = "explicit", + }, + [343] = { + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + [344] = { + ["id"] = "explicit.stat_965913123", + ["text"] = "#% chance to not destroy Corpses when Consuming Corpses", + ["type"] = "explicit", + }, + [345] = { + ["id"] = "explicit.stat_997343726", + ["text"] = "Gain #% of Damage as Chaos Damage per Undead Minion", + ["type"] = "explicit", + }, + [346] = { + ["id"] = "explicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "explicit", + }, + [347] = { + ["id"] = "explicit.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "explicit", + }, + [348] = { + ["id"] = "explicit.stat_811217923", + ["text"] = "Trigger Spark Skill on killing a Shocked Enemy", + ["type"] = "explicit", + }, + [349] = { + ["id"] = "explicit.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", + ["type"] = "explicit", + }, + [350] = { + ["id"] = "explicit.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "explicit", + }, + [351] = { + ["id"] = "explicit.stat_704919631", + ["text"] = "Trigger Lightning Bolt Skill on Critical Hit", + ["type"] = "explicit", + }, + [352] = { + ["id"] = "explicit.stat_1289045485", + ["text"] = "Critical Hits Ignore Enemy Monster Lightning Resistance", + ["type"] = "explicit", + }, + [353] = { + ["id"] = "explicit.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "explicit", + }, + [354] = { + ["id"] = "explicit.stat_828179689", + ["text"] = "#% increased Magnitude of Chill you inflict", + ["type"] = "explicit", + }, + [355] = { + ["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", + }, + [356] = { + ["id"] = "explicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "explicit", + }, + [357] = { + ["id"] = "explicit.stat_3544050945", + ["text"] = "#% of Spell Mana Cost Converted to Life Cost", + ["type"] = "explicit", + }, + [358] = { + ["id"] = "explicit.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", + ["type"] = "explicit", + }, + [359] = { + ["id"] = "explicit.stat_3891355829|1", + ["text"] = "Upgrades Radius to Medium", + ["type"] = "explicit", + }, + [360] = { + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", + ["type"] = "explicit", + }, + [361] = { + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", + ["type"] = "explicit", + }, + [362] = { + ["id"] = "explicit.stat_4187571952", + ["text"] = "Gain no inherent bonus from Intelligence", + ["type"] = "explicit", + }, + [363] = { + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "explicit", + }, + [364] = { + ["id"] = "explicit.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "explicit", + }, + [365] = { + ["id"] = "explicit.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "explicit", + }, + [366] = { + ["id"] = "explicit.stat_3464380325", + ["text"] = "Projectiles Split towards # targets", + ["type"] = "explicit", + }, + [367] = { + ["id"] = "explicit.stat_1177404658", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + [368] = { + ["id"] = "explicit.stat_3027830452", + ["text"] = "Gain #% of maximum Mana as Extra maximum Energy Shield", + ["type"] = "explicit", + }, + [369] = { + ["id"] = "explicit.stat_2929867083", + ["text"] = "#% increased Rarity of Items found when on Low Life", + ["type"] = "explicit", + }, + [370] = { + ["id"] = "explicit.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + [371] = { + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", + ["type"] = "explicit", + }, + [372] = { + ["id"] = "explicit.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", + ["type"] = "explicit", + }, + [373] = { + ["id"] = "explicit.stat_40154188", + ["text"] = "#% of Elemental Damage Converted to Fire Damage", + ["type"] = "explicit", + }, + [374] = { + ["id"] = "explicit.stat_289540902", + ["text"] = "#% of Elemental Damage Converted to Lightning Damage", + ["type"] = "explicit", + }, + [375] = { + ["id"] = "explicit.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "explicit", + }, + [376] = { + ["id"] = "explicit.stat_1653625239", + ["text"] = "Breaches in Area spawn an additional Rare Monster", + ["type"] = "explicit", + }, + [377] = { + ["id"] = "explicit.stat_1653625239", + ["text"] = "Breaches in your Maps spawn an additional Rare Monster", + ["type"] = "explicit", + }, + [378] = { + ["id"] = "explicit.stat_1090596078", + ["text"] = "Breaches in Area spawn #% increased Magic Monsters", + ["type"] = "explicit", + }, + [379] = { + ["id"] = "explicit.stat_1090596078", + ["text"] = "Breaches in your Maps spawn #% increased Magic Monsters", + ["type"] = "explicit", + }, + [380] = { + ["id"] = "explicit.stat_3860150265", + ["text"] = "Map Bosses grant #% increased Experience", + ["type"] = "explicit", + }, + [381] = { + ["id"] = "explicit.stat_3119172063", + ["text"] = "#% increased Quantity of Items dropped by Map Bosses", + ["type"] = "explicit", + }, + [382] = { + ["id"] = "explicit.stat_4255069232", + ["text"] = "#% increased Rarity of Items dropped by Map Bosses", + ["type"] = "explicit", + }, + [383] = { + ["id"] = "explicit.stat_210092264", + ["text"] = "#% of Elemental Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + [384] = { + ["id"] = "explicit.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", + ["type"] = "explicit", + }, + [385] = { + ["id"] = "explicit.stat_2535267021", + ["text"] = "Share Charges with Allies in your Presence", + ["type"] = "explicit", + }, + [386] = { + ["id"] = "explicit.stat_3868118796", + ["text"] = "Attacks Chain an additional time", + ["type"] = "explicit", + }, + [387] = { + ["id"] = "explicit.stat_2041668411", + ["text"] = "Physical Damage is Pinning", + ["type"] = "explicit", + }, + [388] = { + ["id"] = "explicit.stat_990363519", + ["text"] = "Enemies in your Presence have #% to Fire Resistance", + ["type"] = "explicit", + }, + [389] = { + ["id"] = "explicit.stat_3836551197", + ["text"] = "#% increased Stack size of Simulacrum Splinters found in Area", + ["type"] = "explicit", + }, + [390] = { + ["id"] = "explicit.stat_3836551197", + ["text"] = "#% increased Stack size of Simulacrum Splinters found in your Maps", + ["type"] = "explicit", + }, + [391] = { + ["id"] = "explicit.stat_3465791711", + ["text"] = "Delirium Monsters in Area have #% increased Pack Size", + ["type"] = "explicit", + }, + [392] = { + ["id"] = "explicit.stat_3465791711", + ["text"] = "Delirium Monsters in your Maps have #% increased Pack Size", + ["type"] = "explicit", + }, + [393] = { + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + [394] = { + ["id"] = "explicit.stat_3371943724", + ["text"] = "Trigger Decompose every 1.2 metres travelled", + ["type"] = "explicit", + }, + [395] = { + ["id"] = "explicit.stat_610276769", + ["text"] = "#% increased Movement Speed while affected by an Ailment", + ["type"] = "explicit", + }, + [396] = { + ["id"] = "explicit.stat_3962960008", + ["text"] = "Delirium Encounters in Area are #% more likely to spawn Unique Bosses", + ["type"] = "explicit", + }, + [397] = { + ["id"] = "explicit.stat_3962960008", + ["text"] = "#% increased chance to manifest additional Unique Boss Shards within Delirium Fog", + ["type"] = "explicit", + }, + [398] = { + ["id"] = "explicit.stat_1104825894", + ["text"] = "#% faster Curse Activation", + ["type"] = "explicit", + }, + [399] = { + ["id"] = "explicit.stat_1433051415", + ["text"] = "Enemies in your Presence are Ignited as though dealt # Base Fire Damage", + ["type"] = "explicit", + }, + [400] = { + ["id"] = "explicit.stat_3503160529", + ["text"] = "#% of Fire Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + [401] = { + ["id"] = "explicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", + ["type"] = "explicit", + }, + [402] = { + ["id"] = "explicit.stat_892489594", + ["text"] = "#% increased Chance to be afflicted by Ailments when Hit", + ["type"] = "explicit", + }, + [403] = { + ["id"] = "explicit.stat_2895144208", + ["text"] = "Maim on Critical Hit", + ["type"] = "explicit", + }, + [404] = { + ["id"] = "explicit.stat_842299438", + ["text"] = "Bolts fired by Crossbow Attacks have #% chance to notexpend Ammunition if you've Reloaded Recently", + ["type"] = "explicit", + }, + [405] = { + ["id"] = "explicit.stat_4077035099", + ["text"] = "Passives in Radius can be Allocated without being connected to your tree", + ["type"] = "explicit", + }, + [406] = { + ["id"] = "explicit.stat_943702197", + ["text"] = "Minions gain #% of their maximum Life as Extra maximum Energy Shield", + ["type"] = "explicit", + }, + [407] = { + ["id"] = "explicit.stat_710476746", + ["text"] = "#% increased Reload Speed", + ["type"] = "explicit", + }, + [408] = { + ["id"] = "explicit.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "explicit", + }, + [409] = { + ["id"] = "explicit.stat_720908147", + ["text"] = "#% increased Attack Speed per 20 Dexterity", + ["type"] = "explicit", + }, + [410] = { + ["id"] = "explicit.stat_4287671144", + ["text"] = "#% of your Base Life Regeneration is granted to Allies in your Presence", + ["type"] = "explicit", + }, + [411] = { + ["id"] = "explicit.stat_2412053423", + ["text"] = "#% increased Spell Damage per 10 Spirit", + ["type"] = "explicit", + }, + [412] = { + ["id"] = "explicit.stat_3111921451", + ["text"] = "Adds # to # Lightning Damage to Attacks per 20 Intelligence", + ["type"] = "explicit", + }, + [413] = { + ["id"] = "explicit.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", + ["type"] = "explicit", + }, + [414] = { + ["id"] = "explicit.stat_2440265466", + ["text"] = "Areas which contain Breaches have #% chance to contain three additional Breaches", + ["type"] = "explicit", + }, + [415] = { + ["id"] = "explicit.stat_2440265466", + ["text"] = "Your Maps which contain Breaches have #% chance to contain three additional Breaches", + ["type"] = "explicit", + }, + [416] = { + ["id"] = "explicit.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "explicit", + }, + [417] = { + ["id"] = "explicit.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", + ["type"] = "explicit", + }, + [418] = { + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", + ["type"] = "explicit", + }, + [419] = { + ["id"] = "explicit.stat_3612407781", + ["text"] = "# Physical damage taken from Projectile Attacks", + ["type"] = "explicit", + }, + [420] = { + ["id"] = "explicit.stat_613752285", + ["text"] = "Sacrifice #% of maximum Life to gain that much Energy Shield when you Cast a Spell", + ["type"] = "explicit", + }, + [421] = { + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", + ["type"] = "explicit", + }, + [422] = { + ["id"] = "explicit.stat_2091621414", + ["text"] = "Causes Bleeding on Hit", + ["type"] = "explicit", + }, + [423] = { + ["id"] = "explicit.stat_2933846633", + ["text"] = "Dazes on Hit", + ["type"] = "explicit", + }, + [424] = { + ["id"] = "explicit.stat_1004468512", + ["text"] = "#% of Physical Damage taken as Fire Damage", + ["type"] = "explicit", + }, + [425] = { + ["id"] = "explicit.stat_854225133", + ["text"] = "You have no Life Regeneration", + ["type"] = "explicit", + }, + [426] = { + ["id"] = "explicit.stat_1993950627", + ["text"] = "# to # Fire Thorns damage", + ["type"] = "explicit", + }, + [427] = { + ["id"] = "explicit.stat_2153364323", + ["text"] = "# Intelligence Requirement", + ["type"] = "explicit", + }, + [428] = { + ["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", + }, + [429] = { + ["id"] = "explicit.stat_423304126", + ["text"] = "You count as on Full Mana while at #% of maximum Mana or above", + ["type"] = "explicit", + }, + [430] = { + ["id"] = "explicit.stat_796381300", + ["text"] = "Gain 0% to #% increased Movement Speed at random when Hit, until Hit again", + ["type"] = "explicit", + }, + [431] = { + ["id"] = "explicit.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "explicit", + }, + [432] = { + ["id"] = "explicit.stat_4145314483", + ["text"] = "#% increased Attack Speed while on Full Mana", + ["type"] = "explicit", + }, + [433] = { + ["id"] = "explicit.stat_3450276548", + ["text"] = "Blind Chilled enemies on Hit", + ["type"] = "explicit", + }, + [434] = { + ["id"] = "explicit.stat_1631928082", + ["text"] = "Increases and Reductions to Minion Damage also affect you", + ["type"] = "explicit", + }, + [435] = { + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", + ["type"] = "explicit", + }, + [436] = { + ["id"] = "explicit.stat_1618482990", + ["text"] = "#% chance for Energy Shield Recharge to start when you Kill an Enemy", + ["type"] = "explicit", + }, + [437] = { + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun Recovery", + ["type"] = "explicit", + }, + [438] = { + ["id"] = "explicit.stat_769129523", + ["text"] = "Causes Double Stun Buildup", + ["type"] = "explicit", + }, + [439] = { + ["id"] = "explicit.stat_2230687504", + ["text"] = "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", + ["type"] = "explicit", + }, + [440] = { + ["id"] = "explicit.stat_3276224428", + ["text"] = "#% more Recovery if used while on Low Mana", + ["type"] = "explicit", + }, + [441] = { + ["id"] = "explicit.stat_3627052716", + ["text"] = "#% of Lightning Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + [442] = { + ["id"] = "explicit.stat_2262736444", + ["text"] = "Eldritch Battery", + ["type"] = "explicit", + }, + [443] = { + ["id"] = "explicit.stat_1200347828", + ["text"] = "Life Flasks used while on Low Life apply Recovery Instantly", + ["type"] = "explicit", + }, + [444] = { + ["id"] = "explicit.stat_2592455368", + ["text"] = "You have a Smoke Cloud around you while stationary", + ["type"] = "explicit", + }, + [445] = { + ["id"] = "explicit.stat_1839832419", + ["text"] = "Mana Flasks used while on Low Mana apply Recovery Instantly", + ["type"] = "explicit", + }, + [446] = { + ["id"] = "explicit.stat_1902409192", + ["text"] = "Lose # Life when you use a Skill", + ["type"] = "explicit", + }, + [447] = { + ["id"] = "explicit.stat_3045072899", + ["text"] = "Minions' Resistances are equal to yours", + ["type"] = "explicit", + }, + [448] = { + ["id"] = "explicit.stat_3761294489", + ["text"] = "All Damage from Hits with this Weapon Contributes to Freeze Buildup", + ["type"] = "explicit", + }, + [449] = { + ["id"] = "explicit.stat_50721145", + ["text"] = "Your speed is unaffected by Slows", + ["type"] = "explicit", + }, + [450] = { + ["id"] = "explicit.stat_2905515354", + ["text"] = "You take #% of damage from Blocked Hits", + ["type"] = "explicit", + }, + [451] = { + ["id"] = "explicit.stat_2635559734", + ["text"] = "Base Critical Hit Chance for Attacks with Weapons is #%", + ["type"] = "explicit", + }, + [452] = { + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", + ["type"] = "explicit", + }, + [453] = { + ["id"] = "explicit.stat_1158324489", + ["text"] = "Culling Strike against Frozen Enemies", + ["type"] = "explicit", + }, + [454] = { + ["id"] = "explicit.stat_1466716929", + ["text"] = "Gain # Rage when Critically Hit by an Enemy", + ["type"] = "explicit", + }, + [455] = { + ["id"] = "explicit.stat_88817332", + ["text"] = "#% increased Evasion Rating when on Full Life", + ["type"] = "explicit", + }, + [456] = { + ["id"] = "explicit.stat_1689729380", + ["text"] = "#% chance to Avoid Death from Hits", + ["type"] = "explicit", + }, + [457] = { + ["id"] = "explicit.stat_1683578560", + ["text"] = "Unwavering Stance", + ["type"] = "explicit", + }, + [458] = { + ["id"] = "explicit.stat_2214130968", + ["text"] = "Always deals Critical Hits against Heavy Stunned Enemies", + ["type"] = "explicit", + }, + [459] = { + ["id"] = "explicit.stat_356835700", + ["text"] = "You are considered on Low Life while at #% of maximum Life or below instead", + ["type"] = "explicit", + }, + [460] = { + ["id"] = "explicit.stat_11014011", + ["text"] = "Warcries Explode Corpses dealing #% of their Life as Physical Damage", + ["type"] = "explicit", + }, + [461] = { + ["id"] = "explicit.stat_2567751411", + ["text"] = "Warcry Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + [462] = { + ["id"] = "explicit.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", + ["type"] = "explicit", + }, + [463] = { + ["id"] = "explicit.stat_98977150", + ["text"] = "Pain Attunement", + ["type"] = "explicit", + }, + [464] = { + ["id"] = "explicit.stat_3393547195", + ["text"] = "#% increased Movement Speed when on Full Life", + ["type"] = "explicit", + }, + [465] = { + ["id"] = "explicit.stat_585231074", + ["text"] = "No Movement Speed Penalty while Shield is Raised", + ["type"] = "explicit", + }, + [466] = { + ["id"] = "explicit.stat_326965591", + ["text"] = "Iron Reflexes", + ["type"] = "explicit", + }, + [467] = { + ["id"] = "explicit.stat_4275855121", + ["text"] = "Curses you inflict are reflected back to you", + ["type"] = "explicit", + }, + [468] = { + ["id"] = "explicit.stat_289086688", + ["text"] = "Hits Break # Armour", + ["type"] = "explicit", + }, + [469] = { + ["id"] = "explicit.stat_359380213", + ["text"] = "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", + ["type"] = "explicit", + }, + [470] = { + ["id"] = "explicit.stat_1092987622", + ["text"] = "#% of Melee Physical Damage taken reflected to Attacker", + ["type"] = "explicit", + }, + [471] = { + ["id"] = "explicit.stat_2306924373", + ["text"] = "You cannot be Chilled for # second after being Chilled", + ["type"] = "explicit", + }, + [472] = { + ["id"] = "explicit.stat_947072590", + ["text"] = "You cannot be Ignited for # second after being Ignited", + ["type"] = "explicit", + }, + [473] = { + ["id"] = "explicit.stat_381470861", + ["text"] = "Enemies are Culled on Block", + ["type"] = "explicit", + }, + [474] = { + ["id"] = "explicit.stat_3764198549", + ["text"] = "Every 3 seconds, Consume a nearby Corpse to Recover #% of maximum Life", + ["type"] = "explicit", + }, + [475] = { + ["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", + }, + [476] = { + ["id"] = "explicit.stat_3612464552", + ["text"] = "You cannot be Frozen for # second after being Frozen", + ["type"] = "explicit", + }, + [477] = { + ["id"] = "explicit.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", + ["type"] = "explicit", + }, + [478] = { + ["id"] = "explicit.stat_2715190555", + ["text"] = "#% to Thorns Critical Hit Chance", + ["type"] = "explicit", + }, + [479] = { + ["id"] = "explicit.stat_215346464", + ["text"] = "You cannot be Shocked for # second after being Shocked", + ["type"] = "explicit", + }, + [480] = { + ["id"] = "explicit.stat_3423694372", + ["text"] = "#% chance to be inflicted with Bleeding when Hit", + ["type"] = "explicit", + }, + [481] = { + ["id"] = "explicit.stat_3308030688", + ["text"] = "#% increased Mana Regeneration Rate while stationary", + ["type"] = "explicit", + }, + [482] = { + ["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", + }, + [483] = { + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + [484] = { + ["id"] = "explicit.stat_2793222406", + ["text"] = "#% increased bonuses gained from Equipped Rings", + ["type"] = "explicit", + }, + [485] = { + ["id"] = "explicit.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", + ["type"] = "explicit", + }, + [486] = { + ["id"] = "explicit.stat_62849030", + ["text"] = "Critical Hits Poison the enemy", + ["type"] = "explicit", + }, + [487] = { + ["id"] = "explicit.stat_1173537953", + ["text"] = "Maximum # Fragile Regrowth", + ["type"] = "explicit", + }, + [488] = { + ["id"] = "explicit.stat_344174146", + ["text"] = "#% increased Mana Regeneration Rate per Fragile Regrowth", + ["type"] = "explicit", + }, + [489] = { + ["id"] = "explicit.stat_3528245713", + ["text"] = "Iron Grip", + ["type"] = "explicit", + }, + [490] = { + ["id"] = "explicit.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["type"] = "explicit", + }, + [491] = { + ["id"] = "explicit.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "explicit", + }, + [492] = { + ["id"] = "explicit.stat_1419390131", + ["text"] = "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", + ["type"] = "explicit", + }, + [493] = { + ["id"] = "explicit.stat_3841984913", + ["text"] = "Gain # Fragile Regrowth each second", + ["type"] = "explicit", + }, + [494] = { + ["id"] = "explicit.stat_3942946753", + ["text"] = "Regenerate #% of maximum Life per second while on Low Life", + ["type"] = "explicit", + }, + [495] = { + ["id"] = "explicit.stat_1435496528", + ["text"] = "Gain Cold Thorns Damage equal to #% of your maximum Mana", + ["type"] = "explicit", + }, + [496] = { + ["id"] = "explicit.stat_352044736", + ["text"] = "Every Rage also grants #% increased Stun Threshold", + ["type"] = "explicit", + }, + [497] = { + ["id"] = "explicit.stat_1306791873", + ["text"] = "Lose all Fragile Regrowth when Hit", + ["type"] = "explicit", + }, + [498] = { + ["id"] = "explicit.stat_4256314560", + ["text"] = "Shocks you when you reach maximum Power Charges", + ["type"] = "explicit", + }, + [499] = { + ["id"] = "explicit.stat_38301299", + ["text"] = "#% to Fire Resistance while on Low Life", + ["type"] = "explicit", + }, + [500] = { + ["id"] = "explicit.stat_3175722882", + ["text"] = "#% of maximum Life Regenerated per second per Fragile Regrowth", + ["type"] = "explicit", + }, + [501] = { + ["id"] = "explicit.stat_1073310669", + ["text"] = "#% increased Evasion Rating if you have been Hit Recently", + ["type"] = "explicit", + }, + [502] = { + ["id"] = "explicit.stat_3205239847", + ["text"] = "#% of Fire Damage from Hits taken as Physical Damage", + ["type"] = "explicit", + }, + [503] = { + ["id"] = "explicit.stat_67637087", + ["text"] = "#% less Damage taken if you have not been Hit Recently", + ["type"] = "explicit", + }, + [504] = { + ["id"] = "explicit.stat_281311123", + ["text"] = "Iron Will", + ["type"] = "explicit", + }, + [505] = { + ["id"] = "explicit.stat_2135899247", + ["text"] = "Lose all Power Charges on reaching maximum Power Charges", + ["type"] = "explicit", + }, + [506] = { + ["id"] = "explicit.stat_1453197917", + ["text"] = "#% chance to gain a Power Charge on Hit", + ["type"] = "explicit", + }, + [507] = { + ["id"] = "explicit.stat_3801067695", + ["text"] = "#% reduced effect of Shock on you", + ["type"] = "explicit", + }, + [508] = { + ["id"] = "explicit.stat_1269971728", + ["text"] = "#% reduced Magnitude of Ignite on you", + ["type"] = "explicit", + }, + [509] = { + ["id"] = "explicit.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", + ["type"] = "explicit", + }, + [510] = { + ["id"] = "explicit.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["type"] = "explicit", + }, + [511] = { + ["id"] = "explicit.stat_3414243317", + ["text"] = "Thorns can Retaliate against all Hits", + ["type"] = "explicit", + }, + [512] = { + ["id"] = "explicit.stat_2310741722", + ["text"] = "#% increased Life and Mana Recovery from Flasks", + ["type"] = "explicit", + }, + [513] = { + ["id"] = "explicit.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["type"] = "explicit", + }, + [514] = { + ["id"] = "explicit.stat_4176970656", + ["text"] = "# Physical Damage taken on Minion Death", + ["type"] = "explicit", + }, + [515] = { + ["id"] = "explicit.stat_3686997387", + ["text"] = "Double Stun Threshold while Shield is Raised", + ["type"] = "explicit", + }, + [516] = { + ["id"] = "explicit.stat_185580205", + ["text"] = "Charms gain # charge per Second", + ["type"] = "explicit", + }, + [517] = { + ["id"] = "explicit.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["type"] = "explicit", + }, + [518] = { + ["id"] = "explicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", + ["type"] = "explicit", + }, + [519] = { + ["id"] = "explicit.stat_2995914769", + ["text"] = "Every Rage also grants #% increased Armour", + ["type"] = "explicit", + }, + [520] = { + ["id"] = "explicit.stat_1094937621", + ["text"] = "Critical Hits ignore Enemy Monster Elemental Resistances", + ["type"] = "explicit", + }, + [521] = { + ["id"] = "explicit.stat_3749630567", + ["text"] = "#% less Flask Charges used", + ["type"] = "explicit", + }, + [522] = { + ["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", + }, + [523] = { + ["id"] = "explicit.stat_3891355829|2", + ["text"] = "Upgrades Radius to Large", + ["type"] = "explicit", + }, + [524] = { + ["id"] = "explicit.stat_939832726", + ["text"] = "Recover #% of maximum Life for each Endurance Charge consumed", + ["type"] = "explicit", + }, + [525] = { + ["id"] = "explicit.stat_2438634449", + ["text"] = "#% chance to Aggravate Bleeding on targets you Critically Hit with Attacks", + ["type"] = "explicit", + }, + [526] = { + ["id"] = "explicit.stat_841429130", + ["text"] = "Bleeding you inflict is Aggravated", + ["type"] = "explicit", + }, + [527] = { + ["id"] = "explicit.stat_1769611692", + ["text"] = "Delirium in Area increases #% faster with distance from the mirror", + ["type"] = "explicit", + }, + [528] = { + ["id"] = "explicit.stat_1769611692", + ["text"] = "Delirium in your Maps increases #% faster with distance from the mirror", + ["type"] = "explicit", + }, + [529] = { + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", + ["type"] = "explicit", + }, + [530] = { + ["id"] = "explicit.stat_1158842087", + ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + [531] = { + ["id"] = "explicit.stat_2875218423", + ["text"] = "Damage Blocked is Recouped as Mana", + ["type"] = "explicit", + }, + [532] = { + ["id"] = "explicit.stat_701564564", + ["text"] = "Gain #% of Elemental Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + [533] = { + ["id"] = "explicit.stat_78985352", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["type"] = "explicit", + }, + [534] = { + ["id"] = "explicit.stat_4163415912", + ["text"] = "+# to Spirit per Socket filled", + ["type"] = "explicit", + }, + [535] = { + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", + ["type"] = "explicit", + }, + [536] = { + ["id"] = "explicit.stat_4058681894", + ["text"] = "You have no Critical Damage Bonus", + ["type"] = "explicit", + }, + [537] = { + ["id"] = "explicit.stat_983582600", + ["text"] = "Ignite you inflict deals Chaos Damage instead of Fire Damage", + ["type"] = "explicit", + }, + [538] = { + ["id"] = "explicit.stat_3550887155", + ["text"] = "Gain #% of Elemental Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + [539] = { + ["id"] = "explicit.stat_2293111154", + ["text"] = "Increases and Reductions to Minion Attack Speed also affect you", + ["type"] = "explicit", + }, + [540] = { + ["id"] = "explicit.stat_632761194", + ["text"] = "Life Regeneration is applied to Energy Shield instead", + ["type"] = "explicit", + }, + [541] = { + ["id"] = "explicit.stat_3947672598", + ["text"] = "Life Recovery from Regeneration is not applied", + ["type"] = "explicit", + }, + [542] = { + ["id"] = "explicit.stat_911712882", + ["text"] = "#% increased Maximum Mana per Socket filled", + ["type"] = "explicit", + }, + [543] = { + ["id"] = "explicit.stat_1457896329", + ["text"] = "#% increased Quantity of Waystones dropped by Map Bosses", + ["type"] = "explicit", + }, + [544] = { + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", + ["type"] = "explicit", + }, + [545] = { + ["id"] = "explicit.stat_313223231", + ["text"] = "#% increased Rarity of Items found per Socket filled", + ["type"] = "explicit", + }, + [546] = { + ["id"] = "explicit.stat_3314057862", + ["text"] = "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", + ["type"] = "explicit", + }, + [547] = { + ["id"] = "explicit.stat_1457411584", + ["text"] = "Every 4 seconds, Recover 1 Life for every # Life Recovery per second from Regeneration", + ["type"] = "explicit", + }, + [548] = { + ["id"] = "explicit.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["type"] = "explicit", + }, + [549] = { + ["id"] = "explicit.stat_231864447", + ["text"] = "Area contains an additional Rare Chest", + ["type"] = "explicit", + }, + [550] = { + ["id"] = "explicit.stat_231864447", + ["text"] = "Your Maps contain an additional Rare Chest", + ["type"] = "explicit", + }, + [551] = { + ["id"] = "explicit.stat_1816894864", + ["text"] = "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", + ["type"] = "explicit", + }, + [552] = { + ["id"] = "explicit.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["type"] = "explicit", + }, + [553] = { + ["id"] = "explicit.stat_1484500028", + ["text"] = "Attacks Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + [554] = { + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", + ["type"] = "explicit", + }, + [555] = { + ["id"] = "explicit.stat_2593651571", + ["text"] = "+#% to all Elemental Resistances per Socket filled", + ["type"] = "explicit", + }, + [556] = { + ["id"] = "explicit.stat_1040569494", + ["text"] = "#% increased Evasion Rating if you've Dodge Rolled Recently", + ["type"] = "explicit", + }, + [557] = { + ["id"] = "explicit.stat_2930706364", + ["text"] = "Permanently Intimidate enemies on Block", + ["type"] = "explicit", + }, + [558] = { + ["id"] = "explicit.stat_258119672", + ["text"] = "# metre to Dodge Roll distance", + ["type"] = "explicit", + }, + [559] = { + ["id"] = "explicit.stat_3350944114", + ["text"] = "Delirium Fog in Area dissipates #% faster", + ["type"] = "explicit", + }, + [560] = { + ["id"] = "explicit.stat_3350944114", + ["text"] = "Delirium Fog dissipates #% faster", + ["type"] = "explicit", + }, + [561] = { + ["id"] = "explicit.stat_4065505214", + ["text"] = "#% increased effect of Socketed Soul Cores", + ["type"] = "explicit", + }, + [562] = { + ["id"] = "explicit.stat_551040294", + ["text"] = "Delirium Fog in Area spawns #% increased Fracturing Mirrors", + ["type"] = "explicit", + }, + [563] = { + ["id"] = "explicit.stat_551040294", + ["text"] = "#% increased Fracturing Mirrors manifested within Delirium Fog", + ["type"] = "explicit", + }, + [564] = { + ["id"] = "explicit.stat_2504358770", + ["text"] = "Breaches open and close #% faster", + ["type"] = "explicit", + }, + [565] = { + ["id"] = "explicit.stat_2504358770", + ["text"] = "Breaches in your Maps open and close #% faster", + ["type"] = "explicit", + }, + [566] = { + ["id"] = "explicit.stat_1373370443", + ["text"] = "Skills have a #% longer Perfect Timing window", + ["type"] = "explicit", + }, + [567] = { + ["id"] = "explicit.stat_4224965099", + ["text"] = "Lightning Damage of Enemies Hitting you is Lucky", + ["type"] = "explicit", + }, + [568] = { + ["id"] = "explicit.stat_2513318031", + ["text"] = "#% increased Attributes per Socket filled", + ["type"] = "explicit", + }, + [569] = { + ["id"] = "explicit.stat_2301852600", + ["text"] = "Deal #% of Overkill damage to enemies within 2 metres of the enemy killed", + ["type"] = "explicit", + }, + [570] = { + ["id"] = "explicit.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["type"] = "explicit", + }, + [571] = { + ["id"] = "explicit.stat_2702182380", + ["text"] = "#% increased Maximum Life per Socket filled", + ["type"] = "explicit", + }, + [572] = { + ["id"] = "explicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "explicit", + }, + [573] = { + ["id"] = "explicit.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["type"] = "explicit", + }, + [574] = { + ["id"] = "explicit.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["type"] = "explicit", + }, + [575] = { + ["id"] = "explicit.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["type"] = "explicit", + }, + [576] = { + ["id"] = "explicit.stat_2022332470", + ["text"] = "You take Fire Damage instead of Physical Damage from Bleeding", + ["type"] = "explicit", + }, + [577] = { + ["id"] = "explicit.stat_2696027455", + ["text"] = "#% increased Damage with Spears", + ["type"] = "explicit", + }, + [578] = { + ["id"] = "explicit.stat_261503687", + ["text"] = "Attacks Gain #% of Physical Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + [579] = { + ["id"] = "explicit.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", + ["type"] = "explicit", + }, + [580] = { + ["id"] = "explicit.stat_2315177528", + ["text"] = "Chaos Damage from Hits also Contributes to Electrocute Buildup", + ["type"] = "explicit", + }, + [581] = { + ["id"] = "explicit.stat_2973498992", + ["text"] = "Chaos Damage from Hits also Contributes to Freeze Buildup", + ["type"] = "explicit", + }, + [582] = { + ["id"] = "explicit.stat_874646180", + ["text"] = "Aggravate Bleeding on Enemies when they Enter your Presence", + ["type"] = "explicit", + }, + [583] = { + ["id"] = "explicit.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["type"] = "explicit", + }, + [584] = { + ["id"] = "explicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "explicit", + }, + [585] = { + ["id"] = "explicit.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + [586] = { + ["id"] = "explicit.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["type"] = "explicit", + }, + [587] = { + ["id"] = "explicit.stat_3666476747", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + ["type"] = "explicit", + }, + [588] = { + ["id"] = "explicit.stat_2838161567", + ["text"] = "Skills reserve 50% less Spirit", + ["type"] = "explicit", + }, + [589] = { + ["id"] = "explicit.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "explicit", + }, + [590] = { + ["id"] = "explicit.stat_410952253", + ["text"] = "Cannot have Energy Shield", + ["type"] = "explicit", + }, + [591] = { + ["id"] = "explicit.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["type"] = "explicit", + }, + [592] = { + ["id"] = "explicit.stat_3276271783", + ["text"] = "Regenerate # Life per second per Maximum Energy Shield", + ["type"] = "explicit", + }, + [593] = { + ["id"] = "explicit.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["type"] = "explicit", + }, + [594] = { + ["id"] = "explicit.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["type"] = "explicit", + }, + [595] = { + ["id"] = "explicit.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + [596] = { + ["id"] = "explicit.stat_2282052746", + ["text"] = "Rerolling Favours at Ritual Altars in Area costs #% increased Tribute", + ["type"] = "explicit", + }, + [597] = { + ["id"] = "explicit.stat_2282052746", + ["text"] = "Rerolling Favours at Ritual Altars costs #% increased Tribute", + ["type"] = "explicit", + }, + [598] = { + ["id"] = "explicit.stat_159726667", + ["text"] = "Monsters Sacrificed at Ritual Altars in Area grant #% increased Tribute", + ["type"] = "explicit", + }, + [599] = { + ["id"] = "explicit.stat_159726667", + ["text"] = "Monsters Sacrificed at Ritual Altars grant #% increased Tribute", + ["type"] = "explicit", + }, + [600] = { + ["id"] = "explicit.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["type"] = "explicit", + }, + [601] = { + ["id"] = "explicit.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["type"] = "explicit", + }, + [602] = { + ["id"] = "explicit.stat_1488650448", + ["text"] = "# to Ailment Threshold", + ["type"] = "explicit", + }, + [603] = { + ["id"] = "explicit.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["type"] = "explicit", + }, + [604] = { + ["id"] = "explicit.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["type"] = "explicit", + }, + [605] = { + ["id"] = "explicit.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "explicit", + }, + [606] = { + ["id"] = "explicit.stat_2369960685", + ["text"] = "#% of Charges consumed by used Charms are granted to your Life Flasks", + ["type"] = "explicit", + }, + [607] = { + ["id"] = "explicit.stat_588512487", + ["text"] = "Map has # additional random Modifier", + ["type"] = "explicit", + }, + [608] = { + ["id"] = "explicit.stat_588512487", + ["text"] = "Your Maps have # additional random Modifier", + ["type"] = "explicit", + }, + [609] = { + ["id"] = "explicit.stat_1755296234", + ["text"] = "Targets can be affected by # of your Poisons at the same time", + ["type"] = "explicit", + }, + [610] = { + ["id"] = "explicit.stat_474452755", + ["text"] = "Cannot Evade Enemy Attacks", + ["type"] = "explicit", + }, + [611] = { + ["id"] = "explicit.stat_1539368271", + ["text"] = "#% increased Expedition Explosive Placement Range", + ["type"] = "explicit", + }, + [612] = { + ["id"] = "explicit.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["type"] = "explicit", + }, + [613] = { + ["id"] = "explicit.stat_265717301", + ["text"] = "Flasks do not recover Life", + ["type"] = "explicit", + }, + [614] = { + ["id"] = "explicit.stat_259470957", + ["text"] = "On-Kill Effects happen twice", + ["type"] = "explicit", + }, + [615] = { + ["id"] = "explicit.stat_4219583418", + ["text"] = "#% increased quantity of Artifacts dropped by Monsters", + ["type"] = "explicit", + }, + [616] = { + ["id"] = "explicit.stat_4219583418", + ["text"] = "#% increased quantity of Artifacts dropped by Monsters in your Maps", + ["type"] = "explicit", + }, + [617] = { + ["id"] = "explicit.stat_2002533190", + ["text"] = "Regenerate #% of maximum Life per second while Surrounded", + ["type"] = "explicit", + }, + [618] = { + ["id"] = "explicit.stat_554899692", + ["text"] = "# Charm Slot (Global)", + ["type"] = "explicit", + }, + [619] = { + ["id"] = "explicit.stat_1207554355", + ["text"] = "#% increased Arrow Speed", + ["type"] = "explicit", + }, + [620] = { + ["id"] = "explicit.stat_2308632835", + ["text"] = "#% increased Reservation Efficiency of Skills which create Undead Minions", + ["type"] = "explicit", + }, + [621] = { + ["id"] = "explicit.stat_412462523", + ["text"] = "#% more Attack Damage", + ["type"] = "explicit", + }, + [622] = { + ["id"] = "explicit.stat_849085925", + ["text"] = "Enemies Frozen by you take #% increased Damage", + ["type"] = "explicit", + }, + [623] = { + ["id"] = "explicit.stat_3289828378", + ["text"] = "#% increased Expedition Explosive Radius", + ["type"] = "explicit", + }, + [624] = { + ["id"] = "explicit.stat_2439129490", + ["text"] = "Chaos Resistance is zero", + ["type"] = "explicit", + }, + [625] = { + ["id"] = "explicit.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["type"] = "explicit", + }, + [626] = { + ["id"] = "explicit.stat_3753748365", + ["text"] = "Damage of Enemies Hitting you is Unlucky while you are on Low Life", + ["type"] = "explicit", + }, + [627] = { + ["id"] = "explicit.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "explicit", + }, + [628] = { + ["id"] = "explicit.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + [629] = { + ["id"] = "explicit.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", + ["type"] = "explicit", + }, + [630] = { + ["id"] = "explicit.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", + ["type"] = "explicit", + }, + [631] = { + ["id"] = "explicit.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + [632] = { + ["id"] = "explicit.stat_1984618452", + ["text"] = "Monsters have #% increased Shock Chance", + ["type"] = "explicit", + }, + [633] = { + ["id"] = "explicit.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["type"] = "explicit", + }, + [634] = { + ["id"] = "explicit.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", + ["type"] = "explicit", + }, + [635] = { + ["id"] = "explicit.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + [636] = { + ["id"] = "explicit.stat_1161337167", + ["text"] = "Can be modified while Corrupted", + ["type"] = "explicit", + }, + [637] = { + ["id"] = "explicit.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + [638] = { + ["id"] = "explicit.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["type"] = "explicit", + }, + [639] = { + ["id"] = "explicit.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["type"] = "explicit", + }, + [640] = { + ["id"] = "explicit.stat_1195849808", + ["text"] = "You gain Onslaught for # seconds on Kill", + ["type"] = "explicit", + }, + [641] = { + ["id"] = "explicit.stat_752930724", + ["text"] = "Equipment and Skill Gems have #% increased Attribute Requirements", + ["type"] = "explicit", + }, + [642] = { + ["id"] = "explicit.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + [643] = { + ["id"] = "explicit.stat_227523295", + ["text"] = "# to Maximum Power Charges", + ["type"] = "explicit", + }, + [644] = { + ["id"] = "explicit.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["type"] = "explicit", + }, + [645] = { + ["id"] = "explicit.stat_980177976", + ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["type"] = "explicit", + }, + [646] = { + ["id"] = "explicit.stat_1451444093", + ["text"] = "Bifurcates Critical Hits", + ["type"] = "explicit", + }, + [647] = { + ["id"] = "explicit.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["type"] = "explicit", + }, + [648] = { + ["id"] = "explicit.stat_3751072557", + ["text"] = "Curses have no Activation Delay", + ["type"] = "explicit", + }, + [649] = { + ["id"] = "explicit.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["type"] = "explicit", + }, + [650] = { + ["id"] = "explicit.stat_2333085568", + ["text"] = "# to all Attributes per Level", + ["type"] = "explicit", + }, + [651] = { + ["id"] = "explicit.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + [652] = { + ["id"] = "explicit.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["type"] = "explicit", + }, + [653] = { + ["id"] = "explicit.stat_3384885789", + ["text"] = "This Weapon's Critical Hit Chance is #%", + ["type"] = "explicit", + }, + [654] = { + ["id"] = "explicit.stat_1520059289", + ["text"] = "Onslaught", + ["type"] = "explicit", + }, + [655] = { + ["id"] = "explicit.stat_4164870816", + ["text"] = "#% increased Critical Damage Bonus per Power Charge", + ["type"] = "explicit", + }, + [656] = { + ["id"] = "explicit.stat_517664839", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + ["type"] = "explicit", + }, + [657] = { + ["id"] = "explicit.stat_1540254896", + ["text"] = "Flammability Magnitude is doubled", + ["type"] = "explicit", + }, + [658] = { + ["id"] = "explicit.stat_4294267596", + ["text"] = "Take no Extra Damage from Critical Hits", + ["type"] = "explicit", + }, + [659] = { + ["id"] = "explicit.stat_1602191394", + ["text"] = "#% increased Rarity of Items foundYour other Modifiers to Rarity of Items found do not apply", + ["type"] = "explicit", + }, + [660] = { + ["id"] = "explicit.stat_793801176", + ["text"] = "Energy Generation is doubled", + ["type"] = "explicit", + }, + [661] = { + ["id"] = "explicit.stat_1576794517", + ["text"] = "Enemies in your Presence killed by anyone count as being killed by you instead", + ["type"] = "explicit", + }, + [662] = { + ["id"] = "explicit.stat_4012215578", + ["text"] = "All Damage from Hits Contributes to Poison Magnitude", + ["type"] = "explicit", + }, + [663] = { + ["id"] = "explicit.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["type"] = "explicit", + }, + [664] = { + ["id"] = "explicit.stat_2524254339", + ["text"] = "Culling Strike", + ["type"] = "explicit", + }, + [665] = { + ["id"] = "explicit.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["type"] = "explicit", + }, + [666] = { + ["id"] = "explicit.stat_1508661598", + ["text"] = "Hits with this Weapon have no Critical Damage Bonus", + ["type"] = "explicit", + }, + [667] = { + ["id"] = "explicit.stat_2350411833", + ["text"] = "You lose #% of maximum Energy Shield per second", + ["type"] = "explicit", + }, + [668] = { + ["id"] = "explicit.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["type"] = "explicit", + }, + [669] = { + ["id"] = "explicit.stat_2801937280", + ["text"] = "Blood Magic", + ["type"] = "explicit", + }, + [670] = { + ["id"] = "explicit.stat_2065500219", + ["text"] = "#% increased Effectiveness of Monsters in your Maps", + ["type"] = "explicit", + }, + [671] = { + ["id"] = "explicit.stat_310945763", + ["text"] = "#% increased Life Cost Efficiency", + ["type"] = "explicit", + }, + [672] = { + ["id"] = "explicit.stat_664024640", + ["text"] = "You can Socket an additional copy of each Lineage Support Gem, in different Skills", + ["type"] = "explicit", + }, + [673] = { + ["id"] = "explicit.stat_462424929", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["type"] = "explicit", + }, + [674] = { + ["id"] = "explicit.stat_3669820740", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + [675] = { + ["id"] = "explicit.stat_295075366", + ["text"] = "#% increased Strength Requirement", + ["type"] = "explicit", + }, + [676] = { + ["id"] = "explicit.stat_3028809864", + ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "explicit", + }, + [677] = { + ["id"] = "explicit.stat_3971919056", + ["text"] = "Life Recharges", + ["type"] = "explicit", + }, + [678] = { + ["id"] = "explicit.stat_3225608889", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + ["type"] = "explicit", + }, + [679] = { + ["id"] = "explicit.stat_3106718406", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + [680] = { + ["id"] = "explicit.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "explicit", + }, + [681] = { + ["id"] = "explicit.stat_4283407333", + ["text"] = "# to Level of all Skills", + ["type"] = "explicit", + }, + [682] = { + ["id"] = "explicit.stat_1653682082", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + [683] = { + ["id"] = "explicit.stat_2272980012", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["type"] = "explicit", + }, + [684] = { + ["id"] = "explicit.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["type"] = "explicit", + }, + [685] = { + ["id"] = "explicit.stat_1569159338", + ["text"] = "#% increased Parry Damage", + ["type"] = "explicit", + }, + [686] = { + ["id"] = "explicit.stat_821948283", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + ["type"] = "explicit", + }, + [687] = { + ["id"] = "explicit.stat_999436592", + ["text"] = "Excess Life Recovery from Leech is applied to Energy Shield", + ["type"] = "explicit", + }, + [688] = { + ["id"] = "explicit.stat_2402413437", + ["text"] = "Energy Shield Recharge starts when you use a Mana Flask", + ["type"] = "explicit", + }, + [689] = { + ["id"] = "explicit.stat_65133983", + ["text"] = "Drop Shocked Ground while moving, lasting 8 seconds", + ["type"] = "explicit", + }, + [690] = { + ["id"] = "explicit.stat_1875158664", + ["text"] = "Giant's Blood", + ["type"] = "explicit", + }, + [691] = { + ["id"] = "explicit.stat_720388959", + ["text"] = "Life Recovery from Flasks is instant", + ["type"] = "explicit", + }, + [692] = { + ["id"] = "explicit.stat_513747733", + ["text"] = "#% increased bonuses gained from left Equipped Ring", + ["type"] = "explicit", + }, + [693] = { + ["id"] = "explicit.stat_3885501357", + ["text"] = "#% increased bonuses gained from right Equipped Ring", + ["type"] = "explicit", + }, + [694] = { + ["id"] = "explicit.stat_1770833858", + ["text"] = "Delirium Encounters in Area have #% chance to generate an additional Reward", + ["type"] = "explicit", + }, + [695] = { + ["id"] = "explicit.stat_1770833858", + ["text"] = "Delirium Encounters in your Maps have #% chance to generate an additional Reward", + ["type"] = "explicit", + }, + [696] = { + ["id"] = "explicit.stat_2323782229", + ["text"] = "Slaying Rare Monsters in Area pauses the Delirium Mirror Timer for 1 second", + ["type"] = "explicit", + }, + [697] = { + ["id"] = "explicit.stat_2323782229", + ["text"] = "Slaying Rare Monsters in your Maps pauses the Delirium Mirror Timer for 1 second", + ["type"] = "explicit", + }, + [698] = { + ["id"] = "explicit.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + [699] = { + ["id"] = "explicit.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["type"] = "explicit", + }, + [700] = { + ["id"] = "explicit.stat_4195198267", + ["text"] = "Blocking Damage Poisons the Enemy as though dealing # Base Chaos Damage", + ["type"] = "explicit", + }, + [701] = { + ["id"] = "explicit.stat_1910743684", + ["text"] = "All damage with this Weapon causes Electrocution buildup", + ["type"] = "explicit", + }, + [702] = { + ["id"] = "explicit.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", + ["type"] = "explicit", + }, + [703] = { + ["id"] = "explicit.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", + }, + [704] = { + ["id"] = "explicit.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["type"] = "explicit", + }, + [705] = { + ["id"] = "explicit.stat_1465760952", + ["text"] = "Cannot Block", + ["type"] = "explicit", + }, + [706] = { + ["id"] = "explicit.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [707] = { + ["id"] = "explicit.stat_3679696791", + ["text"] = "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", + ["type"] = "explicit", + }, + [708] = { + ["id"] = "explicit.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["type"] = "explicit", + }, + [709] = { + ["id"] = "explicit.stat_3815617979", + ["text"] = "Area has #% increased chance to contain Azmeri Spirits", + ["type"] = "explicit", + }, + [710] = { + ["id"] = "explicit.stat_3815617979", + ["text"] = "#% increased chance of Azmeri Spirits", + ["type"] = "explicit", + }, + [711] = { + ["id"] = "explicit.stat_2081918629", + ["text"] = "#% increased effect of Socketed Augment Items", + ["type"] = "explicit", + }, + [712] = { + ["id"] = "explicit.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["type"] = "explicit", + }, + [713] = { + ["id"] = "explicit.stat_3700202631", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + ["type"] = "explicit", + }, + [714] = { + ["id"] = "explicit.stat_1563503803", + ["text"] = "#% chance to Avoid Chaos Damage from Hits", + ["type"] = "explicit", + }, + [715] = { + ["id"] = "explicit.stat_3491722585", + ["text"] = "Enemies in your Presence are Intimidated", + ["type"] = "explicit", + }, + [716] = { + ["id"] = "explicit.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", + ["type"] = "explicit", + }, + [717] = { + ["id"] = "explicit.stat_2415497478", + ["text"] = "#% chance to Avoid Physical Damage from Hits", + ["type"] = "explicit", + }, + [718] = { + ["id"] = "explicit.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["type"] = "explicit", + }, + [719] = { + ["id"] = "explicit.stat_2772033465", + ["text"] = "#% of Fire damage Converted to Lightning damage", + ["type"] = "explicit", + }, + [720] = { + ["id"] = "explicit.stat_30438393", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + [721] = { + ["id"] = "explicit.stat_3441651621", + ["text"] = "# Physical Damage taken from Attack Hits", + ["type"] = "explicit", + }, + [722] = { + ["id"] = "explicit.stat_3035140377", + ["text"] = "# to Level of all Attack Skills", + ["type"] = "explicit", + }, + [723] = { + ["id"] = "explicit.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["type"] = "explicit", + }, + [724] = { + ["id"] = "explicit.stat_2392824305", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + ["type"] = "explicit", + }, + [725] = { + ["id"] = "explicit.stat_480796730", + ["text"] = "#% to maximum Block chance", + ["type"] = "explicit", + }, + [726] = { + ["id"] = "explicit.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["type"] = "explicit", + }, + [727] = { + ["id"] = "explicit.stat_2840989393", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + ["type"] = "explicit", + }, + [728] = { + ["id"] = "explicit.stat_1541516339", + ["text"] = "#% increased Movement Speed per Frenzy Charge", + ["type"] = "explicit", + }, + [729] = { + ["id"] = "explicit.stat_2812872407", + ["text"] = "Life Recovery from Flasks also applies to Energy Shield", + ["type"] = "explicit", + }, + [730] = { + ["id"] = "explicit.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + ["type"] = "explicit", + }, + [731] = { + ["id"] = "explicit.stat_3596695232", + ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", + }, + [732] = { + ["id"] = "explicit.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["type"] = "explicit", + }, + [733] = { + ["id"] = "explicit.stat_2161347476", + ["text"] = "Accuracy Rating is Doubled", + ["type"] = "explicit", + }, + [734] = { + ["id"] = "explicit.stat_2714890129", + ["text"] = "Life Leech can Overflow Maximum Life", + ["type"] = "explicit", + }, + [735] = { + ["id"] = "explicit.stat_1256719186", + ["text"] = "#% increased Duration (Flask)", + ["type"] = "explicit", + }, + [736] = { + ["id"] = "explicit.stat_3774951878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["type"] = "explicit", + }, + [737] = { + ["id"] = "explicit.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["type"] = "explicit", + }, + [738] = { + ["id"] = "explicit.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", + ["type"] = "explicit", + }, + [739] = { + ["id"] = "explicit.stat_2045949233", + ["text"] = "#% chance for Slam Skills you use yourself to cause an additional Aftershock", + ["type"] = "explicit", + }, + [740] = { + ["id"] = "explicit.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["type"] = "explicit", + }, + [741] = { + ["id"] = "explicit.stat_3563080185", + ["text"] = "#% increased Culling Strike Threshold", + ["type"] = "explicit", + }, + [742] = { + ["id"] = "explicit.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + [743] = { + ["id"] = "explicit.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", + ["type"] = "explicit", + }, + [744] = { + ["id"] = "explicit.stat_1546580830", + ["text"] = "Enemies in your Presence have Lightning Resistance equal to yours", + ["type"] = "explicit", + }, + [745] = { + ["id"] = "explicit.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", + ["type"] = "explicit", + }, + [746] = { + ["id"] = "explicit.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["type"] = "explicit", + }, + [747] = { + ["id"] = "explicit.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", + }, + [748] = { + ["id"] = "explicit.stat_1129429646", + ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + ["type"] = "explicit", + }, + [749] = { + ["id"] = "explicit.stat_1298316550", + ["text"] = "Dodge Roll passes through Enemies", + ["type"] = "explicit", + }, + [750] = { + ["id"] = "explicit.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["type"] = "explicit", + }, + [751] = { + ["id"] = "explicit.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["type"] = "explicit", + }, + [752] = { + ["id"] = "explicit.stat_28208665", + ["text"] = "Favours Deferred at Ritual Altars in Area reappear #% sooner", + ["type"] = "explicit", + }, + [753] = { + ["id"] = "explicit.stat_28208665", + ["text"] = "Favours Deferred at Ritual Altars in your Maps reappear #% sooner", + ["type"] = "explicit", + }, + [754] = { + ["id"] = "explicit.stat_3999959974", + ["text"] = "Lightning Resistance does not affect Lightning damage taken", + ["type"] = "explicit", + }, + [755] = { + ["id"] = "explicit.stat_2134207902", + ["text"] = "+100% of Armour also applies to Lightning Damage", + ["type"] = "explicit", + }, + [756] = { + ["id"] = "explicit.stat_599749213", + ["text"] = "# to Level of all Fire Skills", + ["type"] = "explicit", + }, + [757] = { + ["id"] = "explicit.stat_391602279", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["type"] = "explicit", + }, + [758] = { + ["id"] = "explicit.stat_1031644647", + ["text"] = "Revived Monsters from Ritual Altars in Area have #% increased chance to be Magic", + ["type"] = "explicit", + }, + [759] = { + ["id"] = "explicit.stat_1031644647", + ["text"] = "Revived Monsters from Ritual Altars have #% increased chance to be Magic", + ["type"] = "explicit", + }, + [760] = { + ["id"] = "explicit.stat_1147690586", + ["text"] = "# to Level of all Lightning Skills", + ["type"] = "explicit", + }, + [761] = { + ["id"] = "explicit.stat_1776968075", + ["text"] = "You have no Elemental Resistances", + ["type"] = "explicit", + }, + [762] = { + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + [763] = { + ["id"] = "explicit.stat_1301765461", + ["text"] = "#% to Maximum Chaos Resistance", + ["type"] = "explicit", + }, + [764] = { + ["id"] = "explicit.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + [765] = { + ["id"] = "explicit.stat_1345835998", + ["text"] = "Deferring Favours at Ritual Altars in Area costs #% increased Tribute", + ["type"] = "explicit", + }, + [766] = { + ["id"] = "explicit.stat_1345835998", + ["text"] = "Deferring Favours at Ritual Altars in your Maps costs #% increased Tribute", + ["type"] = "explicit", + }, + [767] = { + ["id"] = "explicit.stat_3429148113", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "explicit", + }, + [768] = { + ["id"] = "explicit.stat_64726306", + ["text"] = "Can't use other Rings", + ["type"] = "explicit", + }, + [769] = { + ["id"] = "explicit.stat_4112450013", + ["text"] = "Moving while Bleeding doesn't cause you to take extra damage", + ["type"] = "explicit", + }, + [770] = { + ["id"] = "explicit.stat_2955966707", + ["text"] = "The Effect of Chill on you is reversed", + ["type"] = "explicit", + }, + [771] = { + ["id"] = "explicit.stat_3979184174", + ["text"] = "Revived Monsters from Ritual Altars in Area have #% increased chance to be Rare", + ["type"] = "explicit", + }, + [772] = { + ["id"] = "explicit.stat_3979184174", + ["text"] = "Revived Monsters from Ritual Altars have #% increased chance to be Rare", + ["type"] = "explicit", + }, + [773] = { + ["id"] = "explicit.stat_3070990531", + ["text"] = "You have no Accuracy Penalty at Distance", + ["type"] = "explicit", + }, + [774] = { + ["id"] = "explicit.stat_331731406", + ["text"] = "Cannot be Ignited", + ["type"] = "explicit", + }, + [775] = { + ["id"] = "explicit.stat_2920970371", + ["text"] = "#% increased Duration of Curses on you", + ["type"] = "explicit", + }, + [776] = { + ["id"] = "explicit.stat_1143240184", + ["text"] = "You count as on Low Mana while at #% of maximum Life or below", + ["type"] = "explicit", + }, + [777] = { + ["id"] = "explicit.stat_1135194732", + ["text"] = "Can have # additional Instilled Modifiers", + ["type"] = "explicit", + }, + [778] = { + ["id"] = "explicit.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["type"] = "explicit", + }, + [779] = { + ["id"] = "explicit.stat_1555237944", + ["text"] = "#% chance when you gain a Charge to gain an additional Charge", + ["type"] = "explicit", + }, + [780] = { + ["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", + }, + [781] = { + ["id"] = "explicit.stat_3154256486", + ["text"] = "You count as on Low Life while at #% of maximum Mana or below", + ["type"] = "explicit", + }, + [782] = { + ["id"] = "explicit.stat_3647242059", + ["text"] = "Left ring slot: Projectiles from Spells cannot Chain", + ["type"] = "explicit", + }, + [783] = { + ["id"] = "explicit.stat_1555918911", + ["text"] = "Right ring slot: Projectiles from Spells Chain +# times", + ["type"] = "explicit", + }, + [784] = { + ["id"] = "explicit.stat_4219853180", + ["text"] = "Ritual Favours in Area have #% increased chance to be Omens", + ["type"] = "explicit", + }, + [785] = { + ["id"] = "explicit.stat_4219853180", + ["text"] = "Ritual Favours in your Maps have #% increased chance to be Omens", + ["type"] = "explicit", + }, + [786] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Hit", + ["type"] = "explicit", + }, + [787] = { + ["id"] = "explicit.stat_4092130601", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "explicit", + }, + [788] = { + ["id"] = "explicit.stat_2378065031", + ["text"] = "Curse Skills have #% increased Cast Speed", + ["type"] = "explicit", + }, + [789] = { + ["id"] = "explicit.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["type"] = "explicit", + }, + [790] = { + ["id"] = "explicit.stat_3679769182", + ["text"] = "# to Stun Threshold per Socket filled", + ["type"] = "explicit", + }, + [791] = { + ["id"] = "explicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", + ["type"] = "explicit", + }, + [792] = { + ["id"] = "explicit.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["type"] = "explicit", + }, + [793] = { + ["id"] = "explicit.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["type"] = "explicit", + }, + [794] = { + ["id"] = "explicit.stat_2437476305", + ["text"] = "Left ring slot: Projectiles from Spells Fork", + ["type"] = "explicit", + }, + [795] = { + ["id"] = "explicit.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["type"] = "explicit", + }, + [796] = { + ["id"] = "explicit.stat_2694800111", + ["text"] = "#% increased number of Rare Expedition Monsters in Area", + ["type"] = "explicit", + }, + [797] = { + ["id"] = "explicit.stat_2694800111", + ["text"] = "#% increased number of Rare Expedition Monsters", + ["type"] = "explicit", + }, + [798] = { + ["id"] = "explicit.stat_2933024469", + ["text"] = "Right ring slot: Projectiles from Spells cannot Fork", + ["type"] = "explicit", + }, + [799] = { + ["id"] = "explicit.stat_3081479811", + ["text"] = "Allies in your Presence Regenerate #% of their Maximum Life per second", + ["type"] = "explicit", + }, + [800] = { + ["id"] = "explicit.stat_2786852525", + ["text"] = "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", + ["type"] = "explicit", + }, + [801] = { + ["id"] = "explicit.stat_3826125995", + ["text"] = "Projectiles from Spells cannot Pierce", + ["type"] = "explicit", + }, + [802] = { + ["id"] = "explicit.stat_2173791158", + ["text"] = "Allies in your Presence Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + [803] = { + ["id"] = "explicit.stat_65135897", + ["text"] = "Cannot use Shield Skills", + ["type"] = "explicit", + }, + [804] = { + ["id"] = "explicit.stat_1640965354", + ["text"] = "Area contains #% increased number of Runic Monster Markers", + ["type"] = "explicit", + }, + [805] = { + ["id"] = "explicit.stat_1640965354", + ["text"] = "#% increased number of Runic Monster Markers", + ["type"] = "explicit", + }, + [806] = { + ["id"] = "explicit.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["type"] = "explicit", + }, + [807] = { + ["id"] = "explicit.stat_147764878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "explicit", + }, + [808] = { + ["id"] = "explicit.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["type"] = "explicit", + }, + [809] = { + ["id"] = "explicit.stat_3518087336", + ["text"] = "Dodge Roll avoids all Hits", + ["type"] = "explicit", + }, + [810] = { + ["id"] = "explicit.stat_599320227", + ["text"] = "#% chance for Trigger skills to refund half of Energy Spent", + ["type"] = "explicit", + }, + [811] = { + ["id"] = "explicit.stat_3156445245", + ["text"] = "#% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", + ["type"] = "explicit", + }, + [812] = { + ["id"] = "explicit.stat_2518598473", + ["text"] = "Take # Fire Damage when you Ignite an Enemy", + ["type"] = "explicit", + }, + [813] = { + ["id"] = "explicit.stat_2849546516", + ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["type"] = "explicit", + }, + [814] = { + ["id"] = "explicit.stat_3065378291", + ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["type"] = "explicit", + }, + [815] = { + ["id"] = "explicit.stat_491899612", + ["text"] = "Cannot be Shocked", + ["type"] = "explicit", + }, + [816] = { + ["id"] = "explicit.stat_2901213448", + ["text"] = "# to Level of all Elemental Skills", + ["type"] = "explicit", + }, + [817] = { + ["id"] = "explicit.stat_2267564181", + ["text"] = "Require # additional enemies to be Surrounded", + ["type"] = "explicit", + }, + [818] = { + ["id"] = "explicit.stat_258955603", + ["text"] = "Alternating every 5 seconds:Take #% more Damage from HitsTake #% more Damage over time", + ["type"] = "explicit", + }, + [819] = { + ["id"] = "explicit.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + [820] = { + ["id"] = "explicit.stat_1361645249", + ["text"] = "Allies in your Presence have Block Chance equal to yours", + ["type"] = "explicit", + }, + [821] = { + ["id"] = "explicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "explicit", + }, + [822] = { + ["id"] = "explicit.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["type"] = "explicit", + }, + [823] = { + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "explicit", + }, + [824] = { + ["id"] = "explicit.stat_1697951953", + ["text"] = "#% increased Hazard Damage", + ["type"] = "explicit", + }, + [825] = { + ["id"] = "explicit.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["type"] = "explicit", + }, + [826] = { + ["id"] = "explicit.stat_793875384", + ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + [827] = { + ["id"] = "explicit.stat_1083387327", + ["text"] = "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters", + ["type"] = "explicit", + }, + [828] = { + ["id"] = "explicit.stat_1083387327", + ["text"] = "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters in your Maps", + ["type"] = "explicit", + }, + [829] = { + ["id"] = "explicit.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["type"] = "explicit", + }, + [830] = { + ["id"] = "explicit.stat_3628935286", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + [831] = { + ["id"] = "explicit.stat_3418590244", + ["text"] = "Can only be applied to Precursor Tower MapsCompleting the Tower makes all nearby Maps accessible", + ["type"] = "explicit", + }, + [832] = { + ["id"] = "explicit.stat_2942704390", + ["text"] = "Skills have +# to Limit", + ["type"] = "explicit", + }, + [833] = { + ["id"] = "explicit.stat_267210597", + ["text"] = "Area has #% increased chance to contain a Summoning Circle", + ["type"] = "explicit", + }, + [834] = { + ["id"] = "explicit.stat_267210597", + ["text"] = "#% increased chance of Summoning Circles", + ["type"] = "explicit", + }, + [835] = { + ["id"] = "explicit.stat_2147773348", + ["text"] = "Energy Shield is increased by Uncapped Cold Resistance", + ["type"] = "explicit", + }, + [836] = { + ["id"] = "explicit.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["type"] = "explicit", + }, + [837] = { + ["id"] = "explicit.stat_419098854", + ["text"] = "Evasion Rating is increased by Uncapped Lightning Resistance", + ["type"] = "explicit", + }, + [838] = { + ["id"] = "explicit.stat_1000566389", + ["text"] = "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", + ["type"] = "explicit", + }, + [839] = { + ["id"] = "explicit.stat_713266390", + ["text"] = "Armour is increased by Uncapped Fire Resistance", + ["type"] = "explicit", + }, + [840] = { + ["id"] = "explicit.stat_412709880", + ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + ["type"] = "explicit", + }, + [841] = { + ["id"] = "explicit.stat_3752589831", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["type"] = "explicit", + }, + [842] = { + ["id"] = "explicit.stat_61644361", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["type"] = "explicit", + }, + [843] = { + ["id"] = "explicit.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["type"] = "explicit", + }, + [844] = { + ["id"] = "explicit.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + [845] = { + ["id"] = "explicit.stat_818877178", + ["text"] = "#% increased Parried Debuff Magnitude", + ["type"] = "explicit", + }, + [846] = { + ["id"] = "explicit.stat_3969608626", + ["text"] = "Effect is not removed when Unreserved Mana is Filled", + ["type"] = "explicit", + }, + [847] = { + ["id"] = "explicit.stat_3311259821", + ["text"] = "Deals #% of current Mana as Chaos Damage to you when Effect ends", + ["type"] = "explicit", + }, + [848] = { + ["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", + }, + [849] = { + ["id"] = "explicit.stat_4117005593", + ["text"] = "Skills gain #% of Damage as Chaos Damage per 3 Life Cost", + ["type"] = "explicit", + }, + [850] = { + ["id"] = "explicit.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", + ["type"] = "explicit", + }, + [851] = { + ["id"] = "explicit.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["type"] = "explicit", + }, + [852] = { + ["id"] = "explicit.stat_3642528642|7", + ["text"] = "Only affects Passives in Very Large Ring", + ["type"] = "explicit", + }, + [853] = { + ["id"] = "explicit.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + [854] = { + ["id"] = "explicit.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["type"] = "explicit", + }, + [855] = { + ["id"] = "explicit.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["type"] = "explicit", + }, + [856] = { + ["id"] = "explicit.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["type"] = "explicit", + }, + [857] = { + ["id"] = "explicit.stat_1323216174", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "explicit", + }, + [858] = { + ["id"] = "explicit.stat_2913235441", + ["text"] = "When you kill a Rare monster, you gain its Modifiers for 60 seconds", + ["type"] = "explicit", + }, + [859] = { + ["id"] = "explicit.stat_378817135", + ["text"] = "#% to Fire and Chaos Resistances", + ["type"] = "explicit", + }, + [860] = { + ["id"] = "explicit.stat_3393628375", + ["text"] = "#% to Cold and Chaos Resistances", + ["type"] = "explicit", + }, + [861] = { + ["id"] = "explicit.stat_332217711", + ["text"] = "#% increased Maximum Life per socketed Grand Spectrum", + ["type"] = "explicit", + }, + [862] = { + ["id"] = "explicit.stat_3642528642|4", + ["text"] = "Only affects Passives in Medium Ring", + ["type"] = "explicit", + }, + [863] = { + ["id"] = "explicit.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["type"] = "explicit", + }, + [864] = { + ["id"] = "explicit.stat_3465022881", + ["text"] = "#% to Lightning and Chaos Resistances", + ["type"] = "explicit", + }, + [865] = { + ["id"] = "explicit.stat_3642528642|3", + ["text"] = "Only affects Passives in Medium-Small Ring", + ["type"] = "explicit", + }, + [866] = { + ["id"] = "explicit.stat_2610562860", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + [867] = { + ["id"] = "explicit.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["type"] = "explicit", + }, + [868] = { + ["id"] = "explicit.stat_4258000627", + ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", + ["type"] = "explicit", + }, + [869] = { + ["id"] = "explicit.stat_1961849903", + ["text"] = "Cannot use Projectile Attacks", + ["type"] = "explicit", + }, + [870] = { + ["id"] = "explicit.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["type"] = "explicit", + }, + [871] = { + ["id"] = "explicit.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["type"] = "explicit", + }, + [872] = { + ["id"] = "explicit.stat_3395186672", + ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["type"] = "explicit", + }, + [873] = { + ["id"] = "explicit.stat_1834658952", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "explicit", + }, + [874] = { + ["id"] = "explicit.stat_1002973905", + ["text"] = "Recover all Mana when Used", + ["type"] = "explicit", + }, + [875] = { + ["id"] = "explicit.stat_2500154144", + ["text"] = "Can Reroll Favours at Ritual Altars in your Maps twice as many times", + ["type"] = "explicit", + }, + [876] = { + ["id"] = "explicit.stat_654207792", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "explicit", + }, + [877] = { + ["id"] = "explicit.stat_3642528642|1", + ["text"] = "Only affects Passives in Very Small Ring", + ["type"] = "explicit", + }, + [878] = { + ["id"] = "explicit.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["type"] = "explicit", + }, + [879] = { + ["id"] = "explicit.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["type"] = "explicit", + }, + [880] = { + ["id"] = "explicit.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["type"] = "explicit", + }, + [881] = { + ["id"] = "explicit.stat_3642528642|2", + ["text"] = "Only affects Passives in Small Ring", + ["type"] = "explicit", + }, + [882] = { + ["id"] = "explicit.stat_1228222525", + ["text"] = "Favours at Ritual Altars in Area costs #% increased Tribute", + ["type"] = "explicit", + }, + [883] = { + ["id"] = "explicit.stat_3675300253", + ["text"] = "Strikes deal Splash Damage", + ["type"] = "explicit", + }, + [884] = { + ["id"] = "explicit.stat_2957287092", + ["text"] = "Chance to Block Damage is Lucky", + ["type"] = "explicit", + }, + [885] = { + ["id"] = "explicit.stat_4104094246", + ["text"] = "Unstable Breaches take an additional second to collapse after timer is filled", + ["type"] = "explicit", + }, + [886] = { + ["id"] = "explicit.stat_2421436896", + ["text"] = "Arrows Fork", + ["type"] = "explicit", + }, + [887] = { + ["id"] = "explicit.stat_1084853859", + ["text"] = "Delirium Fog in your Maps never dissipates", + ["type"] = "explicit", + }, + [888] = { + ["id"] = "explicit.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["type"] = "explicit", + }, + [889] = { + ["id"] = "explicit.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["type"] = "explicit", + }, + [890] = { + ["id"] = "explicit.stat_3040603554", + ["text"] = "Areas with Powerful Map Bosses contain an additional Strongbox", + ["type"] = "explicit", + }, + [891] = { + ["id"] = "explicit.stat_3042527515", + ["text"] = "Areas with Map Powerful Map Bosses contain an additional Shrine", + ["type"] = "explicit", + }, + [892] = { + ["id"] = "explicit.stat_3042527515", + ["text"] = "Areas with Powerful Map Bosses contain an additional Shrine", + ["type"] = "explicit", + }, + [893] = { + ["id"] = "explicit.stat_1224838456", + ["text"] = "Enemies in your Presence Gain #% of Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + [894] = { + ["id"] = "explicit.stat_2588474575", + ["text"] = "Map Bosses are Hunted by Azmeri Spirits", + ["type"] = "explicit", + }, + [895] = { + ["id"] = "explicit.stat_4238331303", + ["text"] = "Immobilise enemies at #% buildup instead of 100%", + ["type"] = "explicit", + }, + [896] = { + ["id"] = "explicit.stat_1613322341", + ["text"] = "Enemies Immobilised by you take #% less Damage", + ["type"] = "explicit", + }, + [897] = { + ["id"] = "explicit.stat_586037801", + ["text"] = "#% increased Desecrated Modifier magnitudes", + ["type"] = "explicit", + }, + [898] = { + ["id"] = "explicit.stat_3642528642|6", + ["text"] = "Only affects Passives in Large Ring", + ["type"] = "explicit", + }, + [899] = { + ["id"] = "explicit.stat_4258251165", + ["text"] = "Allies in your Presence Gain #% of Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + [900] = { + ["id"] = "explicit.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", + ["type"] = "explicit", + }, + [901] = { + ["id"] = "explicit.stat_937291386", + ["text"] = "Favours Rerolled at Ritual Altars in Area have #% chance to cost no Tribute", + ["type"] = "explicit", + }, + [902] = { + ["id"] = "explicit.stat_937291386", + ["text"] = "Favours Rerolled at Ritual Altars in your Maps have #% chance to cost no Tribute", + ["type"] = "explicit", + }, + [903] = { + ["id"] = "explicit.stat_1659564104", + ["text"] = "#% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", + ["type"] = "explicit", + }, + [904] = { + ["id"] = "explicit.stat_243380454", + ["text"] = "# additional Rare Monsters are spawned from Abysses", + ["type"] = "explicit", + }, + [905] = { + ["id"] = "explicit.stat_2162684861", + ["text"] = "Areas with Powerful Map Bosses contain an additional Essence", + ["type"] = "explicit", + }, + [906] = { + ["id"] = "explicit.stat_1458461453", + ["text"] = "Map Bosses have # additional Modifier", + ["type"] = "explicit", + }, + [907] = { + ["id"] = "explicit.stat_535217483", + ["text"] = "#% increased Projectile Speed with this Weapon", + ["type"] = "explicit", + }, + [908] = { + ["id"] = "explicit.stat_2833226514", + ["text"] = "# Strength Requirement", + ["type"] = "explicit", + }, + [909] = { + ["id"] = "explicit.stat_2348696937", + ["text"] = "Spells have a #% chance to inflict Withered for 4 seconds on Hit", + ["type"] = "explicit", + }, + [910] = { + ["id"] = "explicit.stat_3642528642|5", + ["text"] = "Only affects Passives in Medium-Large Ring", + ["type"] = "explicit", + }, + [911] = { + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "explicit", + }, + [912] = { + ["id"] = "explicit.stat_3407300125", + ["text"] = "Increases and Reductions to Mana Regeneration Rate alsoapply to Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + [913] = { + ["id"] = "explicit.stat_2816104578", + ["text"] = "Runic Monsters in your Maps are Duplicated", + ["type"] = "explicit", + }, + [914] = { + ["id"] = "explicit.stat_1352729973", + ["text"] = "Area has #% increased chance to contain Rogue Exiles", + ["type"] = "explicit", + }, + [915] = { + ["id"] = "explicit.stat_1352729973", + ["text"] = "#% increased chance of Rogue Exiles", + ["type"] = "explicit", + }, + [916] = { + ["id"] = "explicit.stat_1458880585", + ["text"] = "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", + ["type"] = "explicit", + }, + [917] = { + ["id"] = "explicit.stat_3650992555", + ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", + ["type"] = "explicit", + }, + [918] = { + ["id"] = "explicit.stat_2716923832", + ["text"] = "Recover Life equal to #% of Mana Flask's Recovery Amount when used", + ["type"] = "explicit", + }, + [919] = { + ["id"] = "explicit.stat_144770454", + ["text"] = "Expedition Monsters in your Maps spawn with half of their Life missing", + ["type"] = "explicit", + }, + [920] = { + ["id"] = "explicit.stat_1013492127", + ["text"] = "Spells fire # additional ProjectilesSpells fire Projectiles in a circle", + ["type"] = "explicit", + }, + [921] = { + ["id"] = "explicit.stat_3389184522", + ["text"] = "Leech from Critical Hits is instant", + ["type"] = "explicit", + }, + [922] = { + ["id"] = "explicit.stat_3078574625", + ["text"] = "#% increased Effect of Remnants in Area", + ["type"] = "explicit", + }, + [923] = { + ["id"] = "explicit.stat_3078574625", + ["text"] = "#% increased Effect of Remnants in your Maps", + ["type"] = "explicit", + }, + [924] = { + ["id"] = "explicit.stat_2420248029", + ["text"] = "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", + ["type"] = "explicit", + }, + [925] = { + ["id"] = "explicit.stat_4021234281", + ["text"] = "Any number of Poisons from this Weapon can affect a target at the same time", + ["type"] = "explicit", + }, + [926] = { + ["id"] = "explicit.stat_1133453872", + ["text"] = "# Dexterity Requirement", + ["type"] = "explicit", + }, + [927] = { + ["id"] = "explicit.stat_40618390", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Intelligence", + ["type"] = "explicit", + }, + [928] = { + ["id"] = "explicit.stat_2396719220", + ["text"] = "Area contains an additional Magic Chest", + ["type"] = "explicit", + }, + [929] = { + ["id"] = "explicit.stat_2717786748", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Dexterity", + ["type"] = "explicit", + }, + [930] = { + ["id"] = "explicit.stat_3891350097", + ["text"] = "Recover Mana equal to #% of Life Flask's Recovery Amount when used", + ["type"] = "explicit", + }, + [931] = { + ["id"] = "explicit.stat_2284588585", + ["text"] = "Gain a random Charge on reaching Maximum Rage, no more than once every # seconds", + ["type"] = "explicit", + }, + [932] = { + ["id"] = "explicit.stat_1736538865", + ["text"] = "You have Consecrated Ground around you while stationary", + ["type"] = "explicit", + }, + [933] = { + ["id"] = "explicit.stat_3642528642|8", + ["text"] = "Only affects Passives in Massive Ring", + ["type"] = "explicit", + }, + [934] = { + ["id"] = "explicit.stat_33298888", + ["text"] = "Attack Hits inflict Spectral Fire for # seconds", + ["type"] = "explicit", + }, + [935] = { + ["id"] = "explicit.stat_1842384813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Strength", + ["type"] = "explicit", + }, + [936] = { + ["id"] = "explicit.stat_3851480592", + ["text"] = "Lose all Rage on reaching Maximum Rage", + ["type"] = "explicit", + }, + [937] = { + ["id"] = "explicit.stat_1430165758", + ["text"] = "#% increased Spirit per socketed Grand Spectrum", + ["type"] = "explicit", + }, + [938] = { + ["id"] = "explicit.stat_3605834869", + ["text"] = "Skills Gain #% of Mana Cost as Extra Life Cost", + ["type"] = "explicit", + }, + [939] = { + ["id"] = "explicit.stat_1163615092", + ["text"] = "Projectiles have #% increased Critical Hit chance for each time they have Pierced", + ["type"] = "explicit", + }, + [940] = { + ["id"] = "explicit.stat_3464644319", + ["text"] = "No Inherent loss of Rage during effect", + ["type"] = "explicit", + }, + [941] = { + ["id"] = "explicit.stat_4046380260", + ["text"] = "Minions cannot Die while affected by a Life Flask", + ["type"] = "explicit", + }, + [942] = { + ["id"] = "explicit.stat_944630113", + ["text"] = "Abysses spawn #% increased Monsters", + ["type"] = "explicit", + }, + [943] = { + ["id"] = "explicit.stat_2566921799", + ["text"] = "Grants a Power Charge on use", + ["type"] = "explicit", + }, + [944] = { + ["id"] = "explicit.stat_1726753705", + ["text"] = "#% more Life Recovered", + ["type"] = "explicit", + }, + [945] = { + ["id"] = "explicit.stat_2138799639", + ["text"] = "Arrows Pierce all targets after Forking", + ["type"] = "explicit", + }, + [946] = { + ["id"] = "explicit.stat_4256531808", + ["text"] = "Abyss Pits in Area are twice as likely to have Rewards", + ["type"] = "explicit", + }, + [947] = { + ["id"] = "explicit.stat_280890192", + ["text"] = "Grants a Frenzy Charge on use", + ["type"] = "explicit", + }, + [948] = { + ["id"] = "explicit.stat_3122852693", + ["text"] = "#% to Block Chance while holding a Focus", + ["type"] = "explicit", + }, + [949] = { + ["id"] = "explicit.stat_21824003", + ["text"] = "#% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", + ["type"] = "explicit", + }, + [950] = { + ["id"] = "explicit.stat_2948688907", + ["text"] = "Small Passive Skills in Radius also grant #% to Fire Resistance", + ["type"] = "explicit", + }, + [951] = { + ["id"] = "explicit.stat_2884937919", + ["text"] = "Small Passive Skills in Radius also grant #% to Cold Resistance", + ["type"] = "explicit", + }, + [952] = { + ["id"] = "explicit.stat_555311715", + ["text"] = "Gain # Rage when Hit by an Enemy during effect", + ["type"] = "explicit", + }, + [953] = { + ["id"] = "explicit.stat_514290151", + ["text"] = "Gain #% of Maximum Mana as Armour", + ["type"] = "explicit", + }, + [954] = { + ["id"] = "explicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "explicit", + }, + [955] = { + ["id"] = "explicit.stat_3994876825", + ["text"] = "Small Passive Skills in Radius also grant #% to Lightning Resistance", + ["type"] = "explicit", + }, + [956] = { + ["id"] = "explicit.stat_3735888493", + ["text"] = "#% more maximum Physical Attack Damage", + ["type"] = "explicit", + }, + [957] = { + ["id"] = "explicit.stat_3399499561", + ["text"] = "#% increased Damage per Minion", + ["type"] = "explicit", + }, + [958] = { + ["id"] = "explicit.stat_2620375641", + ["text"] = "Charms use no Charges", + ["type"] = "explicit", + }, + [959] = { + ["id"] = "explicit.stat_2423248184", + ["text"] = "#% less minimum Physical Attack Damage", + ["type"] = "explicit", + }, + [960] = { + ["id"] = "explicit.stat_2918129907", + ["text"] = "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", + ["type"] = "explicit", + }, + [961] = { + ["id"] = "explicit.stat_1862508014", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Cold Resistance", + ["type"] = "explicit", + }, + [962] = { + ["id"] = "explicit.stat_1509210032", + ["text"] = "Grants up to your maximum Rage on use", + ["type"] = "explicit", + }, + [963] = { + ["id"] = "explicit.stat_281201999", + ["text"] = "Knockback direction is reversed", + ["type"] = "explicit", + }, + [964] = { + ["id"] = "explicit.stat_338620903", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + [965] = { + ["id"] = "explicit.stat_4062529591", + ["text"] = "Cannot Immobilise enemies", + ["type"] = "explicit", + }, + [966] = { + ["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", + }, + [967] = { + ["id"] = "explicit.stat_2217513089", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Lightning Resistance", + ["type"] = "explicit", + }, + [968] = { + ["id"] = "explicit.stat_367897259", + ["text"] = "Lose all Tailwind when Hit", + ["type"] = "explicit", + }, + [969] = { + ["id"] = "explicit.stat_2459662130", + ["text"] = "Gain Tailwind on Critical Hit, no more than once per second", + ["type"] = "explicit", + }, + [970] = { + ["id"] = "explicit.stat_2516303866", + ["text"] = "Your Critical Damage Bonus is 250%", + ["type"] = "explicit", + }, + [971] = { + ["id"] = "explicit.stat_3490187949", + ["text"] = "Area contains # additional Abysses", + ["type"] = "explicit", + }, + [972] = { + ["id"] = "explicit.stat_360553763", + ["text"] = "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", + ["type"] = "explicit", + }, + [973] = { + ["id"] = "explicit.stat_2580617872", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["type"] = "explicit", + }, + [974] = { + ["id"] = "explicit.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", + ["type"] = "explicit", + }, + [975] = { + ["id"] = "explicit.stat_852470634", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + [976] = { + ["id"] = "explicit.stat_53386210", + ["text"] = "#% increased Spirit Reservation Efficiency", + ["type"] = "explicit", + }, + [977] = { + ["id"] = "explicit.stat_3787436548", + ["text"] = "Historic", + ["type"] = "explicit", + }, + [978] = { + ["id"] = "explicit.stat_2442647190", + ["text"] = "Recover #% of maximum Life when you Block", + ["type"] = "explicit", + }, + [979] = { + ["id"] = "explicit.stat_833138896", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + [980] = { + ["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", + }, + [981] = { + ["id"] = "explicit.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + [982] = { + ["id"] = "explicit.stat_1809641701", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Life", + ["type"] = "explicit", + }, + [983] = { + ["id"] = "explicit.stat_1123023256", + ["text"] = "#% to Chaos Resistance per Socket filled", + ["type"] = "explicit", + }, + [984] = { + ["id"] = "explicit.stat_2104138899", + ["text"] = "Parrying applies # Stack of Critical Weakness", + ["type"] = "explicit", + }, + [985] = { + ["id"] = "explicit.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["type"] = "explicit", + }, + [986] = { + ["id"] = "explicit.stat_3872034802", + ["text"] = "Decimating Strike", + ["type"] = "explicit", + }, + [987] = { + ["id"] = "explicit.stat_1717295693", + ["text"] = "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", + ["type"] = "explicit", + }, + [988] = { + ["id"] = "explicit.stat_2739148464", + ["text"] = "Has no Attribute Requirements", + ["type"] = "explicit", + }, + [989] = { + ["id"] = "explicit.stat_4032352472", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + ["type"] = "explicit", + }, + [990] = { + ["id"] = "explicit.stat_3148264775", + ["text"] = "You have no Spirit", + ["type"] = "explicit", + }, + [991] = { + ["id"] = "explicit.stat_1247628870", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Mana", + ["type"] = "explicit", + }, + [992] = { + ["id"] = "explicit.stat_2722831300", + ["text"] = "Abysses in Area have #% increased chance to lead to an Abyssal Depths", + ["type"] = "explicit", + }, + [993] = { + ["id"] = "explicit.stat_2722831300", + ["text"] = "Abysses have #% increased chance to lead to an Abyssal Depths", + ["type"] = "explicit", + }, + [994] = { + ["id"] = "explicit.stat_3739186583", + ["text"] = "Knocks Back Enemies on Hit", + ["type"] = "explicit", + }, + [995] = { + ["id"] = "explicit.stat_782941180", + ["text"] = "#% of Spell Damage Leeched as Life", + ["type"] = "explicit", + }, + [996] = { + ["id"] = "explicit.stat_4151994709", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Fire Resistance", + ["type"] = "explicit", + }, + [997] = { + ["id"] = "explicit.stat_2397460217", + ["text"] = "Your Life Flask also applies to your Minions", + ["type"] = "explicit", + }, + [998] = { + ["id"] = "explicit.stat_3849649145", + ["text"] = "Creates Consecrated Ground on use", + ["type"] = "explicit", + }, + [999] = { + ["id"] = "explicit.stat_1273508088", + ["text"] = "Gain 1 Druidic Prowess for every 20 total Rage spent", + ["type"] = "explicit", + }, + [1000] = { + ["id"] = "explicit.stat_1810907437", + ["text"] = "Presence Radius is doubled", + ["type"] = "explicit", + }, + [1001] = { + ["id"] = "explicit.stat_150391334", + ["text"] = "# to maximum Life per Socket filled", + ["type"] = "explicit", + }, + [1002] = { + ["id"] = "explicit.stat_3474271079", + ["text"] = "# to all Attributes per Socket filled", + ["type"] = "explicit", + }, + [1003] = { + ["id"] = "explicit.stat_949573361", + ["text"] = "Breaks Armour equal to #% of damage from Hits with this weapon", + ["type"] = "explicit", + }, + [1004] = { + ["id"] = "explicit.stat_429867172", + ["text"] = "# to maximum number of Summoned Totems", + ["type"] = "explicit", + }, + [1005] = { + ["id"] = "explicit.stat_2932359713", + ["text"] = "Effect is not removed when Unreserved Life is Filled", + ["type"] = "explicit", + }, + [1006] = { + ["id"] = "explicit.stat_3598623697", + ["text"] = "#% of Damage taken during effect Recouped as Life", + ["type"] = "explicit", + }, + [1007] = { + ["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", + }, + [1008] = { + ["id"] = "explicit.stat_2789248444", + ["text"] = "#% increased chance for Abyssal monsters to have Abyssal Modifiers", + ["type"] = "explicit", + }, + [1009] = { + ["id"] = "explicit.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", + ["type"] = "explicit", + }, + [1010] = { + ["id"] = "explicit.stat_1375667591", + ["text"] = "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", + ["type"] = "explicit", + }, + [1011] = { + ["id"] = "explicit.stat_3414998042", + ["text"] = "Critical Hits cannot Extract Impale", + ["type"] = "explicit", + }, + [1012] = { + ["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", + }, + [1013] = { + ["id"] = "explicit.stat_2741291867", + ["text"] = "Area is overrun by the Abyssal", + ["type"] = "explicit", + }, + [1014] = { + ["id"] = "explicit.stat_1291285202", + ["text"] = "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", + ["type"] = "explicit", + }, + [1015] = { + ["id"] = "explicit.stat_4126210832", + ["text"] = "Always Hits", + ["type"] = "explicit", + }, + [1016] = { + ["id"] = "explicit.stat_2677352961", + ["text"] = "#% increased Melee Damage against Heavy Stunned enemies", + ["type"] = "explicit", + }, + [1017] = { + ["id"] = "explicit.stat_1627878766", + ["text"] = "Small Passive Skills in Radius also grant #% reduced Shock duration on you", + ["type"] = "explicit", + }, + [1018] = { + ["id"] = "explicit.stat_1710200734", + ["text"] = "#% increased chance to find Desecrated Currency", + ["type"] = "explicit", + }, + [1019] = { + ["id"] = "explicit.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", + ["type"] = "explicit", + }, + [1020] = { + ["id"] = "explicit.stat_3488640354", + ["text"] = "Parried enemies take more Spell Damage instead of more Attack Damage", + ["type"] = "explicit", + }, + [1021] = { + ["id"] = "explicit.stat_1856590738", + ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", + ["type"] = "explicit", + }, + [1022] = { + ["id"] = "explicit.stat_3091132047", + ["text"] = "Your base Energy Shield Recharge Delay is # second", + ["type"] = "explicit", + }, + [1023] = { + ["id"] = "explicit.stat_3176481473", + ["text"] = "#% increased Spell Damage while on Full Energy Shield", + ["type"] = "explicit", + }, + [1024] = { + ["id"] = "explicit.stat_860443350", + ["text"] = "Small Passive Skills in Radius also grant #% reduced Freeze Duration on you", + ["type"] = "explicit", + }, + [1025] = { + ["id"] = "explicit.stat_358129101", + ["text"] = "Area contains # additional Azmeri Spirit", + ["type"] = "explicit", + }, + [1026] = { + ["id"] = "explicit.stat_3474941090", + ["text"] = "Small Passive Skills in Radius also grant #% reduced Ignite Duration on you", + ["type"] = "explicit", + }, + [1027] = { + ["id"] = "explicit.stat_3830953767", + ["text"] = "#% chance to Curse Enemies with Enfeeble on Block", + ["type"] = "explicit", + }, + [1028] = { + ["id"] = "explicit.stat_932866937", + ["text"] = "Life and Mana Flasks can be equipped in either slot", + ["type"] = "explicit", + }, + [1029] = { + ["id"] = "explicit.stat_3058238353", + ["text"] = "Critical Hits inflict Impale", + ["type"] = "explicit", + }, + [1030] = { + ["id"] = "explicit.stat_4180952808", + ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + ["type"] = "explicit", + }, + [1031] = { + ["id"] = "explicit.stat_2839545956", + ["text"] = "Area contains an additional Summoning Circle", + ["type"] = "explicit", + }, + [1032] = { + ["id"] = "explicit.stat_3201111383", + ["text"] = "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", + ["type"] = "explicit", + }, + [1033] = { + ["id"] = "explicit.stat_2777675751", + ["text"] = "Using a Mana Flask grants Guard equal to #% of Flask's recovery amount for 4 seconds", + ["type"] = "explicit", + }, + [1034] = { + ["id"] = "explicit.stat_1036267537", + ["text"] = "# to maximum Mana per Socket filled", + ["type"] = "explicit", + }, + [1035] = { + ["id"] = "explicit.stat_1895552497", + ["text"] = "Every 5 Rage also grants #% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + [1036] = { + ["id"] = "explicit.stat_242161915", + ["text"] = "#% to all Elemental Resistances per socketed Grand Spectrum", + ["type"] = "explicit", + }, + [1037] = { + ["id"] = "explicit.stat_2598171606", + ["text"] = "Cannot use Warcries", + ["type"] = "explicit", + }, + [1038] = { + ["id"] = "explicit.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["type"] = "explicit", + }, + [1039] = { + ["id"] = "explicit.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["type"] = "explicit", + }, + [1040] = { + ["id"] = "explicit.stat_4142786792", + ["text"] = "All Damage from Hits with this Weapon Contributes to Pin Buildup", + ["type"] = "explicit", + }, + [1041] = { + ["id"] = "explicit.stat_1892122971", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "explicit", + }, + [1042] = { + ["id"] = "explicit.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", + ["type"] = "explicit", + }, + [1043] = { + ["id"] = "explicit.stat_461663422", + ["text"] = "#% increased Effect of Jewel Socket Passive Skillscontaining Corrupted Magic Jewels", + ["type"] = "explicit", + }, + [1044] = { + ["id"] = "explicit.stat_701923421", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus per Socket filled", + ["type"] = "explicit", + }, + [1045] = { + ["id"] = "explicit.stat_3278008231", + ["text"] = "Fully Armour Broken enemies you kill with Hits Shatter", + ["type"] = "explicit", + }, + [1046] = { + ["id"] = "explicit.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["type"] = "explicit", + }, + [1047] = { + ["id"] = "explicit.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", + ["type"] = "explicit", + }, + [1048] = { + ["id"] = "explicit.stat_170426423", + ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Life", + ["type"] = "explicit", + }, + [1049] = { + ["id"] = "explicit.stat_1967040409", + ["text"] = "Spell Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + [1050] = { + ["id"] = "explicit.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["type"] = "explicit", + }, + [1051] = { + ["id"] = "explicit.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "explicit", + }, + [1052] = { + ["id"] = "explicit.stat_2998305364", + ["text"] = "Deal no Elemental Damage", + ["type"] = "explicit", + }, + [1053] = { + ["id"] = "explicit.stat_3243034867", + ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", + ["type"] = "explicit", + }, + [1054] = { + ["id"] = "explicit.stat_1515531208", + ["text"] = "# to # Cold Thorns damage", + ["type"] = "explicit", + }, + [1055] = { + ["id"] = "explicit.stat_332337290", + ["text"] = "# Life Regeneration per second per Socket filled", + ["type"] = "explicit", + }, + [1056] = { + ["id"] = "explicit.stat_2709646369", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + ["type"] = "explicit", + }, + [1057] = { + ["id"] = "explicit.stat_1027889455", + ["text"] = "Non-Channelling Spells deal #% increased Damage per 100 maximum Life", + ["type"] = "explicit", + }, + [1058] = { + ["id"] = "explicit.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["type"] = "explicit", + }, + [1059] = { + ["id"] = "explicit.stat_3811649872", + ["text"] = "Increases and Reductions to Spell damage also apply to Attacks", + ["type"] = "explicit", + }, + [1060] = { + ["id"] = "explicit.stat_2044810874", + ["text"] = "This item gains bonuses from Socketed Items as though it was a Shield", + ["type"] = "explicit", + }, + [1061] = { + ["id"] = "explicit.stat_2089152298", + ["text"] = "#% of Parry Physical Damage Converted to Cold Damage", + ["type"] = "explicit", + }, + [1062] = { + ["id"] = "explicit.stat_1952324525", + ["text"] = "All Attacks count as Empowered Attacks", + ["type"] = "explicit", + }, + [1063] = { + ["id"] = "explicit.stat_3703496511", + ["text"] = "Intimidate Enemies on Block for # second", + ["type"] = "explicit", + }, + [1064] = { + ["id"] = "explicit.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + ["type"] = "explicit", + }, + [1065] = { + ["id"] = "explicit.stat_4258720395", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "explicit", + }, + [1066] = { + ["id"] = "explicit.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["type"] = "explicit", + }, + [1067] = { + ["id"] = "explicit.stat_1195319608", + ["text"] = "#% increased Energy Shield from Equipped Body Armour", + ["type"] = "explicit", + }, + [1068] = { + ["id"] = "explicit.stat_2264240911", + ["text"] = "Small Passive Skills in Radius also grant #% to Chaos Resistance", + ["type"] = "explicit", + }, + [1069] = { + ["id"] = "explicit.stat_1920747151", + ["text"] = "Non-Channelling Spells cost an additional #% of your maximum Life", + ["type"] = "explicit", + }, + [1070] = { + ["id"] = "explicit.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["type"] = "explicit", + }, + [1071] = { + ["id"] = "explicit.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["type"] = "explicit", + }, + [1072] = { + ["id"] = "explicit.stat_300723956", + ["text"] = "Attack Hits apply Incision", + ["type"] = "explicit", + }, + [1073] = { + ["id"] = "explicit.stat_1731760476", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Chaos Resistance", + ["type"] = "explicit", + }, + [1074] = { + ["id"] = "explicit.stat_2334956771", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "explicit", + }, + [1075] = { + ["id"] = "explicit.stat_3753446846", + ["text"] = "Expeditions in Area have # Remnants", + ["type"] = "explicit", + }, + [1076] = { + ["id"] = "explicit.stat_3753446846", + ["text"] = "Expeditions in your Maps have # Remnant", + ["type"] = "explicit", + }, + [1077] = { + ["id"] = "explicit.stat_3503117295", + ["text"] = "Recover #% of your maximum Life when an Enemy dies in your Presence", + ["type"] = "explicit", + }, + [1078] = { + ["id"] = "explicit.stat_2603051299", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Chaos Damage", + ["type"] = "explicit", + }, + [1079] = { + ["id"] = "explicit.stat_2371108370", + ["text"] = "If Map was not previously Irradiated, completing Map adds Irradiation instead", + ["type"] = "explicit", + }, + [1080] = { + ["id"] = "explicit.stat_3429986699", + ["text"] = "You and Allies in your Presence have #% increased Accuracy Rating", + ["type"] = "explicit", + }, + [1081] = { + ["id"] = "explicit.stat_321765853", + ["text"] = "# Physical Damage taken from Hits", + ["type"] = "explicit", + }, + [1082] = { + ["id"] = "explicit.stat_3351912431", + ["text"] = "Convert All Armour to Evasion Rating", + ["type"] = "explicit", + }, + [1083] = { + ["id"] = "explicit.stat_3452269808", + ["text"] = "#% chance to avoid Projectiles", + ["type"] = "explicit", + }, + [1084] = { + ["id"] = "explicit.stat_3108672983", + ["text"] = "Rolls only the minimum or maximum Damage value for each Damage Type", + ["type"] = "explicit", + }, + [1085] = { + ["id"] = "explicit.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["type"] = "explicit", + }, + [1086] = { + ["id"] = "explicit.stat_3173882956", + ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["type"] = "explicit", + }, + [1087] = { + ["id"] = "explicit.stat_3314050176", + ["text"] = "Life Leech is Converted to Energy Shield Leech", + ["type"] = "explicit", + }, + [1088] = { + ["id"] = "explicit.stat_1373860425", + ["text"] = "#% increased Spell Damage with Spells that cost Life", + ["type"] = "explicit", + }, + [1089] = { + ["id"] = "explicit.stat_693180608", + ["text"] = "#% increased Damage while your Companion is in your Presence", + ["type"] = "explicit", + }, + [1090] = { + ["id"] = "explicit.stat_3076483222|64921", + ["text"] = "Sacrifice up to 10 Vaal Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [1091] = { + ["id"] = "explicit.stat_2760643568", + ["text"] = "#% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", + ["type"] = "explicit", + }, + [1092] = { + ["id"] = "explicit.stat_4043376133", + ["text"] = "#% increased Magnitude of Abyssal Wasting you inflict", + ["type"] = "explicit", + }, + [1093] = { + ["id"] = "explicit.stat_2300185227", + ["text"] = "# to Dexterity and Intelligence", + ["type"] = "explicit", + }, + [1094] = { + ["id"] = "explicit.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [1095] = { + ["id"] = "explicit.stat_3932115504", + ["text"] = "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", + ["type"] = "explicit", + }, + [1096] = { + ["id"] = "explicit.stat_1550131834", + ["text"] = "Critical Hits with Spells apply # Stack of Critical Weakness", + ["type"] = "explicit", + }, + [1097] = { + ["id"] = "explicit.stat_3076483222|62634", + ["text"] = "Sacrifice up to 20 Exalted Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [1098] = { + ["id"] = "explicit.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["type"] = "explicit", + }, + [1099] = { + ["id"] = "explicit.stat_2104359366", + ["text"] = "Maximum Energy Shield cannot be Converted", + ["type"] = "explicit", + }, + [1100] = { + ["id"] = "explicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", + ["type"] = "explicit", + }, + [1101] = { + ["id"] = "explicit.stat_3583542124", + ["text"] = "#% increased Block chance against Projectiles", + ["type"] = "explicit", + }, + [1102] = { + ["id"] = "explicit.stat_2422708892|33979", + ["text"] = "Passives in Radius of Conduit can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1103] = { + ["id"] = "explicit.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["type"] = "explicit", + }, + [1104] = { + ["id"] = "explicit.stat_1016759424", + ["text"] = "Bleeding you inflict deals Fire Damage instead of Physical Damage", + ["type"] = "explicit", + }, + [1105] = { + ["id"] = "explicit.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["type"] = "explicit", + }, + [1106] = { + ["id"] = "explicit.stat_746505085", + ["text"] = "Reflects opposite Ring", + ["type"] = "explicit", + }, + [1107] = { + ["id"] = "explicit.stat_1076031760", + ["text"] = "Infinite Parry Range", + ["type"] = "explicit", + }, + [1108] = { + ["id"] = "explicit.stat_3598729471", + ["text"] = "You can only Socket Emerald Jewels in this item", + ["type"] = "explicit", + }, + [1109] = { + ["id"] = "explicit.stat_3631920880", + ["text"] = "Lightning Resistance is unaffected by Area Penalties", + ["type"] = "explicit", + }, + [1110] = { + ["id"] = "explicit.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["type"] = "explicit", + }, + [1111] = { + ["id"] = "explicit.stat_1056492907", + ["text"] = "Energy Shield Recharge starts on use", + ["type"] = "explicit", + }, + [1112] = { + ["id"] = "explicit.stat_2468595624", + ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies within 2m", + ["type"] = "explicit", + }, + [1113] = { + ["id"] = "explicit.stat_1150343007", + ["text"] = "#% of Damage from Hits is taken from your Damageable Companion's Life before you", + ["type"] = "explicit", + }, + [1114] = { + ["id"] = "explicit.stat_538848803", + ["text"] = "# to Strength and Dexterity", + ["type"] = "explicit", + }, + [1115] = { + ["id"] = "explicit.stat_3247805335", + ["text"] = "Fire Resistance is unaffected by Area Penalties", + ["type"] = "explicit", + }, + [1116] = { + ["id"] = "explicit.stat_2422708892|32349", + ["text"] = "Passives in Radius of Giant's Blood can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1117] = { + ["id"] = "explicit.stat_4031148736", + ["text"] = "You can only Socket Ruby Jewels in this item", + ["type"] = "explicit", + }, + [1118] = { + ["id"] = "explicit.stat_2675129731", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + [1119] = { + ["id"] = "explicit.stat_331648983", + ["text"] = "When you reload, triggers Gemini Surge to alternatelygain # Cold Surge or # Fire Surge", + ["type"] = "explicit", + }, + [1120] = { + ["id"] = "explicit.stat_1221641885", + ["text"] = "Fire Damage also Contributes to Bleeding Magnitude", + ["type"] = "explicit", + }, + [1121] = { + ["id"] = "explicit.stat_21302430", + ["text"] = "You can only Socket Sapphire Jewels in this item", + ["type"] = "explicit", + }, + [1122] = { + ["id"] = "explicit.stat_4207433208", + ["text"] = "Cold Resistance is unaffected by Area Penalties", + ["type"] = "explicit", + }, + [1123] = { + ["id"] = "explicit.stat_2704225257", + ["text"] = "# to Spirit", + ["type"] = "explicit", + }, + [1124] = { + ["id"] = "explicit.stat_2422708892|37484", + ["text"] = "Passives in Radius of Primal Hunger can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1125] = { + ["id"] = "explicit.stat_2422708892|18684", + ["text"] = "Passives in Radius of Avatar of Fire can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1126] = { + ["id"] = "explicit.stat_2422708892|19288", + ["text"] = "Passives in Radius of Glancing Blows can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1127] = { + ["id"] = "explicit.stat_83011992", + ["text"] = "Enemies in your Presence have no Elemental Resistances", + ["type"] = "explicit", + }, + [1128] = { + ["id"] = "explicit.stat_1136768410", + ["text"] = "#% increased Cast Speed when on Low Life", + ["type"] = "explicit", + }, + [1129] = { + ["id"] = "explicit.stat_1464727508", + ["text"] = "Enemies in your Presence are Blinded", + ["type"] = "explicit", + }, + [1130] = { + ["id"] = "explicit.stat_1052498387", + ["text"] = "Every second, inflicts Critical Weakness on enemies in your Presence for # second", + ["type"] = "explicit", + }, + [1131] = { + ["id"] = "explicit.stat_1990472846", + ["text"] = "Recover #% of Missing Life before being Hit by an Enemy", + ["type"] = "explicit", + }, + [1132] = { + ["id"] = "explicit.stat_2890355696", + ["text"] = "Area has #% chance to contain four additional Abysses", + ["type"] = "explicit", + }, + [1133] = { + ["id"] = "explicit.stat_2890355696", + ["text"] = "Abysses have a #% chance to contain 4 additional Pits", + ["type"] = "explicit", + }, + [1134] = { + ["id"] = "explicit.stat_1752419596", + ["text"] = "Gain Deflection Rating equal to #% of Armour", + ["type"] = "explicit", + }, + [1135] = { + ["id"] = "explicit.stat_1536107934", + ["text"] = "You cannot Sprint", + ["type"] = "explicit", + }, + [1136] = { + ["id"] = "explicit.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["type"] = "explicit", + }, + [1137] = { + ["id"] = "explicit.stat_2422708892|45202", + ["text"] = "Passives in Radius of Ancestral Bond can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1138] = { + ["id"] = "explicit.stat_1350127730", + ["text"] = "#% increased Reservation Efficiency of Remnant Skills", + ["type"] = "explicit", + }, + [1139] = { + ["id"] = "explicit.stat_3076483222|54496", + ["text"] = "Sacrifice up to 20 Regal Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [1140] = { + ["id"] = "explicit.stat_2996245527", + ["text"] = "You cannot be Chilled or Frozen", + ["type"] = "explicit", + }, + [1141] = { + ["id"] = "explicit.stat_3076483222|49977", + ["text"] = "Sacrifice up to 10 Chaos Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [1142] = { + ["id"] = "explicit.stat_2422708892|33369", + ["text"] = "Passives in Radius of Vaal Pact can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1143] = { + ["id"] = "explicit.stat_3709513762", + ["text"] = "# to Level of Elemental Weakness Skills", + ["type"] = "explicit", + }, + [1144] = { + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "explicit", + }, + [1145] = { + ["id"] = "explicit.stat_2422708892|51749", + ["text"] = "Passives in Radius of Blood Magic can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1146] = { + ["id"] = "explicit.stat_2422708892|56349", + ["text"] = "Passives in Radius of Chaos Inoculation can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1147] = { + ["id"] = "explicit.stat_1078455967", + ["text"] = "# to Level of all Cold Skills", + ["type"] = "explicit", + }, + [1148] = { + ["id"] = "explicit.stat_1009412152", + ["text"] = "#% chance to Aggravate Bleeding on Hit", + ["type"] = "explicit", + }, + [1149] = { + ["id"] = "explicit.stat_3550545679", + ["text"] = "Attacks consume an Endurance Charge to Critically Hit", + ["type"] = "explicit", + }, + [1150] = { + ["id"] = "explicit.stat_3076483222|20358", + ["text"] = "Sacrifice up to 10 Orbs of Alchemy to receive double on Trial completion", + ["type"] = "explicit", + }, + [1151] = { + ["id"] = "explicit.stat_2836928993", + ["text"] = "Enemies in your Presence count as having double Power", + ["type"] = "explicit", + }, + [1152] = { + ["id"] = "explicit.stat_2422708892|46742", + ["text"] = "Passives in Radius of Elemental Equilibrium can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1153] = { + ["id"] = "explicit.stat_3509362078", + ["text"] = "#% increased Evasion Rating from Equipped Body Armour", + ["type"] = "explicit", + }, + [1154] = { + ["id"] = "explicit.stat_2422708892|55048", + ["text"] = "Passives in Radius of Pain Attunement can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1155] = { + ["id"] = "explicit.stat_3387008487", + ["text"] = "Defend with 200% of Armour", + ["type"] = "explicit", + }, + [1156] = { + ["id"] = "explicit.stat_2690740379", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + ["type"] = "explicit", + }, + [1157] = { + ["id"] = "explicit.stat_2422708892|56605", + ["text"] = "Passives in Radius of Bulwark can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1158] = { + ["id"] = "explicit.stat_2422708892|39935", + ["text"] = "Passives in Radius of Necromantic Talisman can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1159] = { + ["id"] = "explicit.stat_3991877392", + ["text"] = "Notable Passive Skills in Radius also grant # to Spirit", + ["type"] = "explicit", + }, + [1160] = { + ["id"] = "explicit.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["type"] = "explicit", + }, + [1161] = { + ["id"] = "explicit.stat_1175213674", + ["text"] = "#% of Elemental damage from Hits taken as Chaos damage", + ["type"] = "explicit", + }, + [1162] = { + ["id"] = "explicit.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["type"] = "explicit", + }, + [1163] = { + ["id"] = "explicit.stat_666077204", + ["text"] = "Companions have #% increased Attack Speed", + ["type"] = "explicit", + }, + [1164] = { + ["id"] = "explicit.stat_2422708892|14540", + ["text"] = "Passives in Radius of Unwavering Stance can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1165] = { + ["id"] = "explicit.stat_3181887481", + ["text"] = "Take #% of Mana Costs you pay for Skills as Physical Damage", + ["type"] = "explicit", + }, + [1166] = { + ["id"] = "explicit.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["type"] = "explicit", + }, + [1167] = { + ["id"] = "explicit.stat_1285684287", + ["text"] = "Enemies in your Presence count as being on Low Life", + ["type"] = "explicit", + }, + [1168] = { + ["id"] = "explicit.stat_3579898587", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["type"] = "explicit", + }, + [1169] = { + ["id"] = "explicit.stat_3371085671", + ["text"] = "Unique Monsters have # additional Rare Modifier", + ["type"] = "explicit", + }, + [1170] = { + ["id"] = "explicit.stat_3371085671", + ["text"] = "Unique Monsters in your Maps have # additional Rare Modifier", + ["type"] = "explicit", + }, + [1171] = { + ["id"] = "explicit.stat_3164544692", + ["text"] = "Take # Chaos damage per second per Endurance Charge", + ["type"] = "explicit", + }, + [1172] = { + ["id"] = "explicit.stat_3418580811|21", + ["text"] = "Remembrancing # songworthy deeds by the line of VoranaPassives in radius are Conquered by the Kalguur", + ["type"] = "explicit", + }, + [1173] = { + ["id"] = "explicit.stat_2422708892|14226", + ["text"] = "Passives in Radius of Dance with Death can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1174] = { + ["id"] = "explicit.stat_3954735777", + ["text"] = "#% chance to Poison on Hit with Attacks", + ["type"] = "explicit", + }, + [1175] = { + ["id"] = "explicit.stat_2418601510", + ["text"] = "Chaos Damage from Hits also Contributes to Shock Chance", + ["type"] = "explicit", + }, + [1176] = { + ["id"] = "explicit.stat_3226351972", + ["text"] = "Delirium Fog in Area lasts # additional seconds before dissipating", + ["type"] = "explicit", + }, + [1177] = { + ["id"] = "explicit.stat_3226351972", + ["text"] = "Delirium Fog in your Maps lasts # additional seconds before dissipating", + ["type"] = "explicit", + }, + [1178] = { + ["id"] = "explicit.stat_3246948616", + ["text"] = "Lightning Damage of Enemies Hitting you is Lucky during effect", + ["type"] = "explicit", + }, + [1179] = { + ["id"] = "explicit.stat_76982026", + ["text"] = "Sacrifice # Life to not consume the last bolt when firing", + ["type"] = "explicit", + }, + [1180] = { + ["id"] = "explicit.stat_60826109", + ["text"] = "Blind Targets when you Poison them", + ["type"] = "explicit", + }, + [1181] = { + ["id"] = "explicit.stat_1404134612", + ["text"] = "You and Allies in your Presence have #% to Chaos Resistance", + ["type"] = "explicit", + }, + [1182] = { + ["id"] = "explicit.stat_3550168289", + ["text"] = "Area is inhabited by # additional Rogue Exile", + ["type"] = "explicit", + }, + [1183] = { + ["id"] = "explicit.stat_3550168289", + ["text"] = "Your Maps are inhabited by # additional Rogue Exile", + ["type"] = "explicit", + }, + [1184] = { + ["id"] = "explicit.stat_2422708892|25100", + ["text"] = "Passives in Radius of Oasis can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1185] = { + ["id"] = "explicit.stat_2109189637", + ["text"] = "#% of Lightning Damage Converted to Chaos Damage", + ["type"] = "explicit", + }, + [1186] = { + ["id"] = "explicit.stat_693237939", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + [1187] = { + ["id"] = "explicit.stat_1896726125", + ["text"] = "# to maximum Valour", + ["type"] = "explicit", + }, + [1188] = { + ["id"] = "explicit.stat_2422708892|44017", + ["text"] = "Passives in Radius of Resolute Technique can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1189] = { + ["id"] = "explicit.stat_1761741119", + ["text"] = "Banners always have maximum Valour", + ["type"] = "explicit", + }, + [1190] = { + ["id"] = "explicit.stat_2678930256", + ["text"] = "#% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", + ["type"] = "explicit", + }, + [1191] = { + ["id"] = "explicit.stat_3408222535", + ["text"] = "You and Allies in your Presence have #% increased Attack Speed", + ["type"] = "explicit", + }, + [1192] = { + ["id"] = "explicit.stat_2432200638", + ["text"] = "Damage taken Recouped as Life is also Recouped as Energy Shield", + ["type"] = "explicit", + }, + [1193] = { + ["id"] = "explicit.stat_3170380905", + ["text"] = "Gain 1% of damage as Fire damage per #% Chance to Block", + ["type"] = "explicit", + }, + [1194] = { + ["id"] = "explicit.stat_1535626285", + ["text"] = "# to Strength and Intelligence", + ["type"] = "explicit", + }, + [1195] = { + ["id"] = "explicit.stat_1953536251", + ["text"] = "Enemies in your Presence have at least #% of Life Reserved", + ["type"] = "explicit", + }, + [1196] = { + ["id"] = "explicit.stat_2369495153", + ["text"] = "#% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", + ["type"] = "explicit", + }, + [1197] = { + ["id"] = "explicit.stat_4250009622", + ["text"] = "#% chance to be Poisoned", + ["type"] = "explicit", + }, + [1198] = { + ["id"] = "explicit.stat_3823990000", + ["text"] = "#% chance to load a bolt into all Crossbow skills on Kill", + ["type"] = "explicit", + }, + [1199] = { + ["id"] = "explicit.stat_2733960806", + ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", + ["type"] = "explicit", + }, + [1200] = { + ["id"] = "explicit.stat_3613173483", + ["text"] = "#% to Unarmed Melee Attack Critical Hit Chance", + ["type"] = "explicit", + }, + [1201] = { + ["id"] = "explicit.stat_2422708892|34497", + ["text"] = "Passives in Radius of Heartstopper can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1202] = { + ["id"] = "explicit.stat_3510648768", + ["text"] = "Players have #% more Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + [1203] = { + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical damage from Hits taken as Lightning damage", + ["type"] = "explicit", + }, + [1204] = { + ["id"] = "explicit.stat_120737942", + ["text"] = "Ritual Altars in Area allow rerolling Favours an additional time", + ["type"] = "explicit", + }, + [1205] = { + ["id"] = "explicit.stat_120737942", + ["text"] = "Ritual Altars allow rerolling Favours an additional time", + ["type"] = "explicit", + }, + [1206] = { + ["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", + }, + [1207] = { + ["id"] = "explicit.stat_3868746097", + ["text"] = "Enemies have an Accuracy Penalty against you based on Distance", + ["type"] = "explicit", + }, + [1208] = { + ["id"] = "explicit.stat_3762913035", + ["text"] = "Unstable Breaches spawn an additional Rare Monster when Stabilised", + ["type"] = "explicit", + }, + [1209] = { + ["id"] = "explicit.stat_4246007234", + ["text"] = "#% increased Attack Damage while on Low Life", + ["type"] = "explicit", + }, + [1210] = { + ["id"] = "explicit.stat_1695767482", + ["text"] = "Inflict Corrupted Blood for # second on Block, dealing #% ofyour maximum Life as Physical damage per second", + ["type"] = "explicit", + }, + [1211] = { + ["id"] = "explicit.stat_2480151124", + ["text"] = "Equipment has no Attribute Requirements", + ["type"] = "explicit", + }, + [1212] = { + ["id"] = "explicit.stat_3625518318", + ["text"] = "Gain Arcane Surge when a Minion Dies", + ["type"] = "explicit", + }, + [1213] = { + ["id"] = "explicit.stat_1310597900", + ["text"] = "Players have #% more Recovery Rate of Life, Mana and Energy Shield", + ["type"] = "explicit", + }, + [1214] = { + ["id"] = "explicit.stat_1500744699", + ["text"] = "Maximum Chance to Evade is 50%", + ["type"] = "explicit", + }, + [1215] = { + ["id"] = "explicit.stat_546201303", + ["text"] = "#% of Mana Leeched from targets affected by Abyssal Wasting is Instant", + ["type"] = "explicit", + }, + [1216] = { + ["id"] = "explicit.stat_3658708511", + ["text"] = "#% of Life Leeched from targets affected by Abyssal Wasting is Instant", + ["type"] = "explicit", + }, + [1217] = { + ["id"] = "explicit.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "explicit", + }, + [1218] = { + ["id"] = "explicit.stat_4255854327", + ["text"] = "#% increased Accuracy Rating against Enemies affected by Abyssal Wasting", + ["type"] = "explicit", + }, + [1219] = { + ["id"] = "explicit.stat_3843204146", + ["text"] = "#% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", + ["type"] = "explicit", + }, + [1220] = { + ["id"] = "explicit.stat_3749502527", + ["text"] = "#% chance to gain Volatility on Kill", + ["type"] = "explicit", + }, + [1221] = { + ["id"] = "explicit.stat_281990982", + ["text"] = "You and Allies in your Presence have #% increased Cast Speed", + ["type"] = "explicit", + }, + [1222] = { + ["id"] = "explicit.stat_3084372306", + ["text"] = "#% increased Life Regeneration rate while Surrounded", + ["type"] = "explicit", + }, + [1223] = { + ["id"] = "explicit.stat_2156230257", + ["text"] = "All Damage from Hits with this Weapon Contributes to Chill Magnitude", + ["type"] = "explicit", + }, + [1224] = { + ["id"] = "explicit.stat_2825946427", + ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", + ["type"] = "explicit", + }, + [1225] = { + ["id"] = "explicit.stat_2638756573", + ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + ["type"] = "explicit", + }, + [1226] = { + ["id"] = "explicit.stat_1895238057", + ["text"] = "#% increased Mana Regeneration Rate while Surrounded", + ["type"] = "explicit", + }, + [1227] = { + ["id"] = "explicit.stat_2422708892|57513", + ["text"] = "Passives in Radius of Eldritch Battery can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1228] = { + ["id"] = "explicit.stat_2337295272", + ["text"] = "Minions deal #% increased Damage if you've Hit Recently", + ["type"] = "explicit", + }, + [1229] = { + ["id"] = "explicit.stat_1458343515", + ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", + ["type"] = "explicit", + }, + [1230] = { + ["id"] = "explicit.stat_2695354435", + ["text"] = "#% increased Global Evasion Rating when on Low Life", + ["type"] = "explicit", + }, + [1231] = { + ["id"] = "explicit.stat_2890401248", + ["text"] = "Enemies in your Presence are Hindered", + ["type"] = "explicit", + }, + [1232] = { + ["id"] = "explicit.stat_2326202293", + ["text"] = "Players are Cursed with Temporal Chains", + ["type"] = "explicit", + }, + [1233] = { + ["id"] = "explicit.stat_2422708892|33404", + ["text"] = "Passives in Radius of Eternal Youth can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1234] = { + ["id"] = "explicit.stat_4103440490", + ["text"] = "Players are Cursed with Enfeeble", + ["type"] = "explicit", + }, + [1235] = { + ["id"] = "explicit.stat_558910024", + ["text"] = "Players are Cursed with Elemental Weakness", + ["type"] = "explicit", + }, + [1236] = { + ["id"] = "explicit.stat_4245256219", + ["text"] = "Skill Gems have no Attribute Requirements", + ["type"] = "explicit", + }, + [1237] = { + ["id"] = "explicit.stat_775597083", + ["text"] = "Areas with Powerful Map Bosses contain an additional Azmeri Spirit", + ["type"] = "explicit", + }, + [1238] = { + ["id"] = "explicit.stat_3314536008", + ["text"] = "Inflict Cold Exposure on Igniting an Enemy", + ["type"] = "explicit", + }, + [1239] = { + ["id"] = "explicit.stat_3893509584", + ["text"] = "Minions have Unholy Might", + ["type"] = "explicit", + }, + [1240] = { + ["id"] = "explicit.stat_3960211755", + ["text"] = "Maximum Physical Damage Reduction is 50%", + ["type"] = "explicit", + }, + [1241] = { + ["id"] = "explicit.stat_1070816711", + ["text"] = "Area contains an additional Abyss", + ["type"] = "explicit", + }, + [1242] = { + ["id"] = "explicit.stat_1070816711", + ["text"] = "Your Maps contain an additional Abyss", + ["type"] = "explicit", + }, + [1243] = { + ["id"] = "explicit.stat_266564538", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + ["type"] = "explicit", + }, + [1244] = { + ["id"] = "explicit.stat_3418580811|22", + ["text"] = "Remembrancing # songworthy deeds by the line of MedvedPassives in radius are Conquered by the Kalguur", + ["type"] = "explicit", + }, + [1245] = { + ["id"] = "explicit.stat_2312741059", + ["text"] = "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", + ["type"] = "explicit", + }, + [1246] = { + ["id"] = "explicit.stat_1138708335", + ["text"] = "Monster Damage penetrates #% of Cold Resistance", + ["type"] = "explicit", + }, + [1247] = { + ["id"] = "explicit.stat_1538879632", + ["text"] = "Inflict Fire Exposure on Shocking an Enemy", + ["type"] = "explicit", + }, + [1248] = { + ["id"] = "explicit.stat_2665488635", + ["text"] = "Inflict Lightning Exposure on Critical Hit", + ["type"] = "explicit", + }, + [1249] = { + ["id"] = "explicit.stat_3093465148", + ["text"] = "Monster Damage penetrates #% of Lightning Resistance", + ["type"] = "explicit", + }, + [1250] = { + ["id"] = "explicit.stat_2295988214", + ["text"] = "#% of Elemental Damage Converted to Chaos Damage", + ["type"] = "explicit", + }, + [1251] = { + ["id"] = "explicit.stat_3131442032", + ["text"] = "#% increased Grenade Damage", + ["type"] = "explicit", + }, + [1252] = { + ["id"] = "explicit.stat_2469544361", + ["text"] = "Gain #% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", + ["type"] = "explicit", + }, + [1253] = { + ["id"] = "explicit.stat_3119282240", + ["text"] = "Players have #% more maximum Life and Energy Shield", + ["type"] = "explicit", + }, + [1254] = { + ["id"] = "explicit.stat_2158617060", + ["text"] = "#% increased Archon Buff duration", + ["type"] = "explicit", + }, + [1255] = { + ["id"] = "explicit.stat_2157870819", + ["text"] = "# to Level of Despair Skills", + ["type"] = "explicit", + }, + [1256] = { + ["id"] = "explicit.stat_1365232741", + ["text"] = "#% increased Grenade Duration", + ["type"] = "explicit", + }, + [1257] = { + ["id"] = "explicit.stat_2980117882", + ["text"] = "This Flask cannot be Used but applies its Effect constantly", + ["type"] = "explicit", + }, + [1258] = { + ["id"] = "explicit.stat_3588388638", + ["text"] = "Monster Damage penetrates #% of Fire Resistance", + ["type"] = "explicit", + }, + [1259] = { + ["id"] = "explicit.stat_396200591", + ["text"] = "Skills have # seconds to Cooldown", + ["type"] = "explicit", + }, + [1260] = { + ["id"] = "explicit.stat_1679776108", + ["text"] = "Abyssal Wasting you inflict has Infinite Duration", + ["type"] = "explicit", + }, + [1261] = { + ["id"] = "explicit.stat_1272938854", + ["text"] = "Evasion Rating is doubled if you have not been Hit Recently", + ["type"] = "explicit", + }, + [1262] = { + ["id"] = "explicit.stat_806994543", + ["text"] = "#% increased Thorns damage if you've consumed an Endurance Charge Recently", + ["type"] = "explicit", + }, + [1263] = { + ["id"] = "explicit.stat_1168851547", + ["text"] = "Natural Rare Monsters in Area have # extra Abyssal Modifier", + ["type"] = "explicit", + }, + [1264] = { + ["id"] = "explicit.stat_3906866585", + ["text"] = "Monsters have #% increased Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + [1265] = { + ["id"] = "explicit.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["type"] = "explicit", + }, + [1266] = { + ["id"] = "explicit.stat_2422708892|52", + ["text"] = "Passives in Radius of Zealot's Oath can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1267] = { + ["id"] = "explicit.stat_1888024332", + ["text"] = "You can have two Companions of different types", + ["type"] = "explicit", + }, + [1268] = { + ["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", + }, + [1269] = { + ["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", + }, + [1270] = { + ["id"] = "explicit.stat_299996", + ["text"] = "#% increased Attack Speed while your Companion is in your Presence", + ["type"] = "explicit", + }, + [1271] = { + ["id"] = "explicit.stat_3561837752", + ["text"] = "#% of Leech is Instant", + ["type"] = "explicit", + }, + [1272] = { + ["id"] = "explicit.stat_2573406169", + ["text"] = "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", + ["type"] = "explicit", + }, + [1273] = { + ["id"] = "explicit.stat_3835522656", + ["text"] = "Adds # to # Lightning Damage to Unarmed Melee Hits", + ["type"] = "explicit", + }, + [1274] = { + ["id"] = "explicit.stat_1416406066", + ["text"] = "#% increased Spirit", + ["type"] = "explicit", + }, + [1275] = { + ["id"] = "explicit.stat_618665892", + ["text"] = "Grants Onslaught during effect", + ["type"] = "explicit", + }, + [1276] = { + ["id"] = "explicit.stat_3350279336", + ["text"] = "#% increased Cost Efficiency of Attacks", + ["type"] = "explicit", + }, + [1277] = { + ["id"] = "explicit.stat_2107791433", + ["text"] = "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", + ["type"] = "explicit", + }, + [1278] = { + ["id"] = "explicit.stat_1367119630", + ["text"] = "Curses you inflict can affect Hexproof Enemies", + ["type"] = "explicit", + }, + [1279] = { + ["id"] = "explicit.stat_3891922348", + ["text"] = "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", + ["type"] = "explicit", + }, + [1280] = { + ["id"] = "explicit.stat_2422708892|28492", + ["text"] = "Passives in Radius of Iron Reflexes can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1281] = { + ["id"] = "explicit.stat_2422708892|45918", + ["text"] = "Passives in Radius of Mind Over Matter can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1282] = { + ["id"] = "explicit.stat_2890792988", + ["text"] = "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", + ["type"] = "explicit", + }, + [1283] = { + ["id"] = "explicit.stat_414821772", + ["text"] = "Increases and Reductions to Projectile Speed also apply to Damage with Bows", + ["type"] = "explicit", + }, + [1284] = { + ["id"] = "explicit.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["type"] = "explicit", + }, + [1285] = { + ["id"] = "explicit.stat_324210709", + ["text"] = "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", + ["type"] = "explicit", + }, + [1286] = { + ["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", + }, + [1287] = { + ["id"] = "explicit.stat_2422708892|47759", + ["text"] = "Passives in Radius of Whispers of Doom can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1288] = { + ["id"] = "explicit.stat_1015576579", + ["text"] = "#% increased Armour from Equipped Body Armour", + ["type"] = "explicit", + }, + [1289] = { + ["id"] = "explicit.stat_3044685077", + ["text"] = "# to Spirit while you have at least 200 Strength", + ["type"] = "explicit", + }, + [1290] = { + ["id"] = "explicit.stat_4142814612", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + [1291] = { + ["id"] = "explicit.stat_2706625504", + ["text"] = "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", + ["type"] = "explicit", + }, + [1292] = { + ["id"] = "explicit.stat_2466011626", + ["text"] = "#% chance for Lightning Damage with Hits to be Lucky", + ["type"] = "explicit", + }, + [1293] = { + ["id"] = "explicit.stat_3076483222|4897", + ["text"] = "Sacrifice up to 20 Armourer's Scraps to receive double on Trial completion", + ["type"] = "explicit", + }, + [1294] = { + ["id"] = "explicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "explicit", + }, + [1295] = { + ["id"] = "explicit.stat_3635316831", + ["text"] = "You can wield Two-Handed Axes, Maces and Swords in one hand", + ["type"] = "explicit", + }, + [1296] = { + ["id"] = "explicit.stat_3418580811|23", + ["text"] = "Remembrancing # songworthy deeds by the line of OlrothPassives in radius are Conquered by the Kalguur", + ["type"] = "explicit", + }, + [1297] = { + ["id"] = "explicit.stat_679087890", + ["text"] = "Defend against Hits as though you had #% more Armour per 1% current Energy Shield", + ["type"] = "explicit", + }, + [1298] = { + ["id"] = "explicit.stat_758226825", + ["text"] = "Your maximum Energy Shield is equal to #% of your Strength", + ["type"] = "explicit", + }, + [1299] = { + ["id"] = "explicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", + ["type"] = "explicit", + }, + [1300] = { + ["id"] = "explicit.stat_2800412928", + ["text"] = "Grants effect of Guided Tempest Shrine", + ["type"] = "explicit", + }, + [1301] = { + ["id"] = "explicit.stat_447757144", + ["text"] = "When you Consume a Charge Trigger Chaotic Surge to gain # Chaos Surge", + ["type"] = "explicit", + }, + [1302] = { + ["id"] = "explicit.stat_36954843", + ["text"] = "You and Allies in your Presence have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [1303] = { + ["id"] = "explicit.stat_3917429943", + ["text"] = "Grants effect of Guided Meteoric Shrine", + ["type"] = "explicit", + }, + [1304] = { + ["id"] = "explicit.stat_2593644209", + ["text"] = "#% to all Elemental Resistances per Power Charge", + ["type"] = "explicit", + }, + [1305] = { + ["id"] = "explicit.stat_4007482102", + ["text"] = "Can't use Body Armour", + ["type"] = "explicit", + }, + [1306] = { + ["id"] = "explicit.stat_2278777540", + ["text"] = "Abysses lead to an Abyssal Depths", + ["type"] = "explicit", + }, + [1307] = { + ["id"] = "explicit.stat_250458861", + ["text"] = "Only Soul Cores can be Socketed in this item", + ["type"] = "explicit", + }, + [1308] = { + ["id"] = "explicit.stat_34174842", + ["text"] = "#% increased Cast Speed per 20 Spirit", + ["type"] = "explicit", + }, + [1309] = { + ["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", + }, + [1310] = { + ["id"] = "explicit.stat_3948285912", + ["text"] = "# to Level of Enfeeble Skills", + ["type"] = "explicit", + }, + [1311] = { + ["id"] = "explicit.stat_1367999357", + ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Mana", + ["type"] = "explicit", + }, + [1312] = { + ["id"] = "explicit.stat_1850249186", + ["text"] = "#% increased Spell Damage per 100 maximum Mana", + ["type"] = "explicit", + }, + [1313] = { + ["id"] = "explicit.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", + ["type"] = "explicit", + }, + [1314] = { + ["id"] = "explicit.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["type"] = "explicit", + }, + [1315] = { + ["id"] = "explicit.stat_1133346493", + ["text"] = "#% chance for Spell Damage with Critical Hits to be Lucky", + ["type"] = "explicit", + }, + [1316] = { + ["id"] = "explicit.stat_2694614739", + ["text"] = "# to Spirit while you have at least 200 Dexterity", + ["type"] = "explicit", + }, + [1317] = { + ["id"] = "explicit.stat_1999910726", + ["text"] = "Remnants you create have #% increased effect", + ["type"] = "explicit", + }, + [1318] = { + ["id"] = "explicit.stat_3491815140", + ["text"] = "#% increased Spell Damage per 100 Maximum Life", + ["type"] = "explicit", + }, + [1319] = { + ["id"] = "explicit.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", + ["type"] = "explicit", + }, + [1320] = { + ["id"] = "explicit.stat_335885735", + ["text"] = "Bears the Mark of the Abyssal Lord", + ["type"] = "explicit", + }, + [1321] = { + ["id"] = "explicit.stat_2609822974", + ["text"] = "Curses you inflict have infinite Duration", + ["type"] = "explicit", + }, + [1322] = { + ["id"] = "explicit.stat_2586152168", + ["text"] = "Archon recovery period expires #% faster", + ["type"] = "explicit", + }, + [1323] = { + ["id"] = "explicit.stat_324579579", + ["text"] = "#% increased Attack Speed per 20 Spirit", + ["type"] = "explicit", + }, + [1324] = { + ["id"] = "explicit.stat_2074866941", + ["text"] = "#% increased Exposure Effect", + ["type"] = "explicit", + }, + [1325] = { + ["id"] = "explicit.stat_2734787892", + ["text"] = "Breach Hives have an additional wave of Hiveborn Monsters", + ["type"] = "explicit", + }, + [1326] = { + ["id"] = "explicit.stat_436406826", + ["text"] = "Players are Marked for Death for # secondsafter killing a Rare or Unique monster", + ["type"] = "explicit", + }, + [1327] = { + ["id"] = "explicit.stat_1042153418", + ["text"] = "# to Level of Temporal Chains Skills", + ["type"] = "explicit", + }, + [1328] = { + ["id"] = "explicit.stat_1291132817", + ["text"] = "+1 to Armour per Strength", + ["type"] = "explicit", + }, + [1329] = { + ["id"] = "explicit.stat_2456226238", + ["text"] = "Recover #% of your maximum Mana when an Enemy dies in your Presence", + ["type"] = "explicit", + }, + [1330] = { + ["id"] = "explicit.stat_2036307261", + ["text"] = "Hits with this weapon have # to # Added Physical Damage per 1% Block Chance", + ["type"] = "explicit", + }, + [1331] = { + ["id"] = "explicit.stat_2975078312", + ["text"] = "Abyssal Monsters grant #% increased Experience", + ["type"] = "explicit", + }, + [1332] = { + ["id"] = "explicit.stat_2975078312", + ["text"] = "Abyss Monsters in your Maps grant #% increased Experience", + ["type"] = "explicit", + }, + [1333] = { + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "explicit", + }, + [1334] = { + ["id"] = "explicit.stat_4270096386", + ["text"] = "Hits have #% increased Critical Hit Chance against you", + ["type"] = "explicit", + }, + [1335] = { + ["id"] = "explicit.stat_1827854662", + ["text"] = "Area contains an additional Incubator Queen", + ["type"] = "explicit", + }, + [1336] = { + ["id"] = "explicit.stat_4215035940", + ["text"] = "On Corruption, Item gains two Enchantments", + ["type"] = "explicit", + }, + [1337] = { + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "explicit", + }, + [1338] = { + ["id"] = "explicit.stat_145598447", + ["text"] = "Everlasting Sacrifice", + ["type"] = "explicit", + }, + [1339] = { + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "explicit", + }, + [1340] = { + ["id"] = "explicit.stat_1726353460", + ["text"] = "Abyssal Wasting also applies #% to Lightning Resistance", + ["type"] = "explicit", + }, + [1341] = { + ["id"] = "explicit.stat_2422708892|25520", + ["text"] = "Passives in Radius of Resonance can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1342] = { + ["id"] = "explicit.stat_1955786041", + ["text"] = "Has # to # Physical damage, # to # per Boss's Face Broken", + ["type"] = "explicit", + }, + [1343] = { + ["id"] = "explicit.stat_3076483222|19846", + ["text"] = "Sacrifice up to 20 Artificer's Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [1344] = { + ["id"] = "explicit.stat_3979226081", + ["text"] = "Abyssal Wasting also applies #% to Cold Resistance", + ["type"] = "explicit", + }, + [1345] = { + ["id"] = "explicit.stat_3138344128", + ["text"] = "Defend with 200% of Armour during effect", + ["type"] = "explicit", + }, + [1346] = { + ["id"] = "explicit.stat_1544773869", + ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", + ["type"] = "explicit", + }, + [1347] = { + ["id"] = "explicit.stat_3482326075", + ["text"] = "Remnants can be collected from #% further away", + ["type"] = "explicit", + }, + [1348] = { + ["id"] = "explicit.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + ["type"] = "explicit", + }, + [1349] = { + ["id"] = "explicit.stat_3843734793", + ["text"] = "Non-Channelling Spells deal #% increased Damage per 100 maximum Mana", + ["type"] = "explicit", + }, + [1350] = { + ["id"] = "explicit.stat_3258071686", + ["text"] = "Attacks have Added maximum Lightning Damage equal to #% of maximum Mana", + ["type"] = "explicit", + }, + [1351] = { + ["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", + }, + [1352] = { + ["id"] = "explicit.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "explicit", + }, + [1353] = { + ["id"] = "explicit.stat_2590797182", + ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", + ["type"] = "explicit", + }, + [1354] = { + ["id"] = "explicit.stat_4245905059", + ["text"] = "Non-Channelling Spells have #% increased Magnitude of Ailments per 100 maximum Life", + ["type"] = "explicit", + }, + [1355] = { + ["id"] = "explicit.stat_234657505", + ["text"] = "Grants effect of Guided Freezing Shrine", + ["type"] = "explicit", + }, + [1356] = { + ["id"] = "explicit.stat_2163764037", + ["text"] = "Gain Physical Thorns damage equal to #% - #% of maximum Life", + ["type"] = "explicit", + }, + [1357] = { + ["id"] = "explicit.stat_2879778895", + ["text"] = "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", + ["type"] = "explicit", + }, + [1358] = { + ["id"] = "explicit.stat_1087787187", + ["text"] = "This item gains bonuses from Socketed Items as though it was a Body Armour", + ["type"] = "explicit", + }, + [1359] = { + ["id"] = "explicit.stat_232701452", + ["text"] = "#% increased Freeze Buildup if you've consumed an Power Charge Recently", + ["type"] = "explicit", + }, + [1360] = { + ["id"] = "explicit.stat_3350232544", + ["text"] = "# metre to Dodge Roll distance if you haven't Dodge Rolled Recently", + ["type"] = "explicit", + }, + [1361] = { + ["id"] = "explicit.stat_451403019", + ["text"] = "Life Recovery other than Flasks cannot Recover Life to above Low Life", + ["type"] = "explicit", + }, + [1362] = { + ["id"] = "explicit.stat_1381474422", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", + ["type"] = "explicit", + }, + [1363] = { + ["id"] = "explicit.stat_3143208761", + ["text"] = "#% increased Attributes", + ["type"] = "explicit", + }, + [1364] = { + ["id"] = "explicit.stat_1282318918", + ["text"] = "# to Spirit while you have at least 200 Intelligence", + ["type"] = "explicit", + }, + [1365] = { + ["id"] = "explicit.stat_2650053239", + ["text"] = "#% increased Cost of Skills for each 200 total Mana Spent Recently", + ["type"] = "explicit", + }, + [1366] = { + ["id"] = "explicit.stat_4157613372", + ["text"] = "Abyss Pits have #% chance to spawn all Monsters as at least Magic", + ["type"] = "explicit", + }, + [1367] = { + ["id"] = "explicit.stat_2035336006", + ["text"] = "Skills from Corrupted Gems have #% of Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + [1368] = { + ["id"] = "explicit.stat_2725205297", + ["text"] = "#% increased Magnitude of Unholy Might buffs you grant", + ["type"] = "explicit", + }, + [1369] = { + ["id"] = "explicit.stat_636464211", + ["text"] = "Excess Life Recovery added as Guard for # seconds", + ["type"] = "explicit", + }, + [1370] = { + ["id"] = "explicit.stat_1388221282", + ["text"] = "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", + ["type"] = "explicit", + }, + [1371] = { + ["id"] = "explicit.stat_1546604934", + ["text"] = "Gain #% of Evasion Rating as extra Armour", + ["type"] = "explicit", + }, + [1372] = { + ["id"] = "explicit.stat_3076483222|32821", + ["text"] = "Sacrifice up to 20 Blacksmith's Whetstones to receive double on Trial completion", + ["type"] = "explicit", + }, + [1373] = { + ["id"] = "explicit.stat_3413635271", + ["text"] = "#% increased Reservation Efficiency of Companion Skills", + ["type"] = "explicit", + }, + [1374] = { + ["id"] = "explicit.stat_2604619892", + ["text"] = "#% increased Duration of Elemental Ailments on Enemies", + ["type"] = "explicit", + }, + [1375] = { + ["id"] = "explicit.stat_1354656031", + ["text"] = "Withered you inflict has infinite Duration", + ["type"] = "explicit", + }, + [1376] = { + ["id"] = "explicit.stat_347220474", + ["text"] = "#% increased Spell damage for each 200 total Mana you have Spent Recently", + ["type"] = "explicit", + }, + [1377] = { + ["id"] = "explicit.stat_3918757604", + ["text"] = "#% of Damage from Deflected Hits is taken from Damageable Companion's Life before you", + ["type"] = "explicit", + }, + [1378] = { + ["id"] = "explicit.stat_1493211587", + ["text"] = "#% chance to Poison on Hit with Spell Damage", + ["type"] = "explicit", + }, + [1379] = { + ["id"] = "explicit.stat_2991563371", + ["text"] = "Abyssal Wasting also applies #% to Fire Resistance", + ["type"] = "explicit", + }, + [1380] = { + ["id"] = "explicit.stat_825825364", + ["text"] = "Life Leech recovers based on your Chaos damage instead of Physical damage", + ["type"] = "explicit", + }, + [1381] = { + ["id"] = "explicit.stat_3040571529", + ["text"] = "#% increased Deflection Rating", + ["type"] = "explicit", + }, + [1382] = { + ["id"] = "explicit.stat_3593063598", + ["text"] = "Mana Recovery other than Regeneration cannot Recover Mana", + ["type"] = "explicit", + }, + [1383] = { + ["id"] = "explicit.stat_314741699", + ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", + ["type"] = "explicit", + }, + [1384] = { + ["id"] = "explicit.stat_724806967", + ["text"] = "Enemies in your Presence have Exposure", + ["type"] = "explicit", + }, + [1385] = { + ["id"] = "explicit.stat_2306588612", + ["text"] = "Repeatable Attacks with this Bow Repeat # time if no enemies are in your Presence", + ["type"] = "explicit", + }, + [1386] = { + ["id"] = "explicit.stat_2157692677", + ["text"] = "Attacks cost an additional #% of your maximum Mana", + ["type"] = "explicit", + }, + [1387] = { + ["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", + }, + [1388] = { + ["id"] = "explicit.stat_2422708892|41861", + ["text"] = "Passives in Radius of Trusted Kinship can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1389] = { + ["id"] = "explicit.stat_2626360934", + ["text"] = "Wind Skills which can be boosted by Elemental Ground Surfaces countas being boosted by Chilled Ground", + ["type"] = "explicit", + }, + [1390] = { + ["id"] = "explicit.stat_533542952", + ["text"] = "Inflict Elemental Exposure on Hit", + ["type"] = "explicit", + }, + [1391] = { + ["id"] = "explicit.stat_1000739259", + ["text"] = "Cannot be Light Stunned", + ["type"] = "explicit", + }, + [1392] = { + ["id"] = "explicit.stat_448592698|53", + ["text"] = "+# to Level of all Mana Tempest Skills", + ["type"] = "explicit", + }, + [1393] = { + ["id"] = "explicit.stat_448592698|138", + ["text"] = "+# to Level of all Orb of Storms Skills", + ["type"] = "explicit", + }, + [1394] = { + ["id"] = "explicit.stat_448592698|131", + ["text"] = "+# to Level of all War Banner Skills", + ["type"] = "explicit", + }, + [1395] = { + ["id"] = "explicit.stat_448592698|10", + ["text"] = "+# to Level of all Sacrifice Skills", + ["type"] = "explicit", + }, + [1396] = { + ["id"] = "explicit.stat_1078309513", + ["text"] = "Invocated Spells deal #% increased Damage", + ["type"] = "explicit", + }, + [1397] = { + ["id"] = "explicit.stat_448592698|42", + ["text"] = "+# to Level of all Shockchain Arrow Skills", + ["type"] = "explicit", + }, + [1398] = { + ["id"] = "explicit.stat_448592698|86", + ["text"] = "+# to Level of all Artillery Ballista Skills", + ["type"] = "explicit", + }, + [1399] = { + ["id"] = "explicit.stat_448592698|67", + ["text"] = "+# to Level of all Barrier Invocation Skills", + ["type"] = "explicit", + }, + [1400] = { + ["id"] = "explicit.stat_2422708892|9085", + ["text"] = "Passives in Radius of Crimson Assault can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1401] = { + ["id"] = "explicit.stat_448592698|151", + ["text"] = "+# to Level of all Incendiary Shot Skills", + ["type"] = "explicit", + }, + [1402] = { + ["id"] = "explicit.stat_448592698|44", + ["text"] = "+# to Level of all Tornado Shot Skills", + ["type"] = "explicit", + }, + [1403] = { + ["id"] = "explicit.stat_448592698|31", + ["text"] = "+# to Level of all Bone Offering Skills", + ["type"] = "explicit", + }, + [1404] = { + ["id"] = "explicit.stat_448592698|135", + ["text"] = "+# to Level of all Armour Breaker Skills", + ["type"] = "explicit", + }, + [1405] = { + ["id"] = "explicit.stat_448592698|48", + ["text"] = "+# to Level of all Rain of Arrows Skills", + ["type"] = "explicit", + }, + [1406] = { + ["id"] = "explicit.stat_1751584857", + ["text"] = "Monsters inflict # Grasping Vine on Hit", + ["type"] = "explicit", + }, + [1407] = { + ["id"] = "explicit.stat_448592698|12", + ["text"] = "+# to Level of all Berserk Skills", + ["type"] = "explicit", + }, + [1408] = { + ["id"] = "explicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["type"] = "explicit", + }, + [1409] = { + ["id"] = "explicit.stat_448592698|148", + ["text"] = "+# to Level of all Vine Arrow Skills", + ["type"] = "explicit", + }, + [1410] = { + ["id"] = "explicit.stat_448592698|120", + ["text"] = "+# to Level of all Herald of Ash Skills", + ["type"] = "explicit", + }, + [1411] = { + ["id"] = "explicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["type"] = "explicit", + }, + [1412] = { + ["id"] = "explicit.stat_448592698|60", + ["text"] = "+# to Level of all Mantra of Destruction Skills", + ["type"] = "explicit", + }, + [1413] = { + ["id"] = "explicit.stat_2342939473", + ["text"] = "#% of Current Energy Shield also grants Elemental Damage reduction", + ["type"] = "explicit", + }, + [1414] = { + ["id"] = "explicit.stat_448592698|137", + ["text"] = "+# to Level of all Infernal Cry Skills", + ["type"] = "explicit", + }, + [1415] = { + ["id"] = "explicit.stat_3007552094", + ["text"] = "You have Unholy Might", + ["type"] = "explicit", + }, + [1416] = { + ["id"] = "explicit.stat_448592698|63", + ["text"] = "+# to Level of all Blasphemy Skills", + ["type"] = "explicit", + }, + [1417] = { + ["id"] = "explicit.stat_4274637468", + ["text"] = "Convert #% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%", + ["type"] = "explicit", + }, + [1418] = { + ["id"] = "explicit.stat_448592698|71", + ["text"] = "+# to Level of all Time of Need Skills", + ["type"] = "explicit", + }, + [1419] = { + ["id"] = "explicit.stat_275498888", + ["text"] = "Maximum Quality is #%", + ["type"] = "explicit", + }, + [1420] = { + ["id"] = "explicit.stat_448592698|78", + ["text"] = "+# to Level of all Detonate Dead Skills", + ["type"] = "explicit", + }, + [1421] = { + ["id"] = "explicit.stat_448592698|85", + ["text"] = "+# to Level of all Wave of Frost Skills", + ["type"] = "explicit", + }, + [1422] = { + ["id"] = "explicit.stat_448592698|147", + ["text"] = "+# to Level of all Snipe Skills", + ["type"] = "explicit", + }, + [1423] = { + ["id"] = "explicit.stat_448592698|43", + ["text"] = "+# to Level of all Emergency Reload Skills", + ["type"] = "explicit", + }, + [1424] = { + ["id"] = "explicit.stat_1207006772", + ["text"] = "# to Deflection Rating per 50 missing Energy Shield", + ["type"] = "explicit", + }, + [1425] = { + ["id"] = "explicit.stat_448592698|124", + ["text"] = "+# to Level of all Ghost Dance Skills", + ["type"] = "explicit", + }, + [1426] = { + ["id"] = "explicit.stat_448592698|157", + ["text"] = "+# to Level of all Frost Bomb Skills", + ["type"] = "explicit", + }, + [1427] = { + ["id"] = "explicit.stat_448592698|56", + ["text"] = "+# to Level of all Detonating Arrow Skills", + ["type"] = "explicit", + }, + [1428] = { + ["id"] = "explicit.stat_448592698|7", + ["text"] = "+# to Level of all Charge Regulation Skills", + ["type"] = "explicit", + }, + [1429] = { + ["id"] = "explicit.stat_448592698|54", + ["text"] = "+# to Level of all Oil Grenade Skills", + ["type"] = "explicit", + }, + [1430] = { + ["id"] = "explicit.stat_448592698|108", + ["text"] = "+# to Level of all Toxic Growth Skills", + ["type"] = "explicit", + }, + [1431] = { + ["id"] = "explicit.stat_448592698|96", + ["text"] = "+# to Level of all Voltaic Mark Skills", + ["type"] = "explicit", + }, + [1432] = { + ["id"] = "explicit.stat_448592698|79", + ["text"] = "+# to Level of all Sniper's Mark Skills", + ["type"] = "explicit", + }, + [1433] = { + ["id"] = "explicit.stat_448592698|29", + ["text"] = "+# to Level of all Firestorm Skills", + ["type"] = "explicit", + }, + [1434] = { + ["id"] = "explicit.stat_448592698|175", + ["text"] = "+# to Level of all Permafrost Bolts Skills", + ["type"] = "explicit", + }, + [1435] = { + ["id"] = "explicit.stat_448592698|72", + ["text"] = "+# to Level of all Elemental Invocation Skills", + ["type"] = "explicit", + }, + [1436] = { + ["id"] = "explicit.stat_448592698|68", + ["text"] = "+# to Level of all Lingering Illusion Skills", + ["type"] = "explicit", + }, + [1437] = { + ["id"] = "explicit.stat_448592698|110", + ["text"] = "+# to Level of all Electrocuting Arrow Skills", + ["type"] = "explicit", + }, + [1438] = { + ["id"] = "explicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["type"] = "explicit", + }, + [1439] = { + ["id"] = "explicit.stat_448592698|132", + ["text"] = "+# to Level of all Withering Presence Skills", + ["type"] = "explicit", + }, + [1440] = { + ["id"] = "explicit.stat_448592698|9", + ["text"] = "+# to Level of all Reaper's Invocation Skills", + ["type"] = "explicit", + }, + [1441] = { + ["id"] = "explicit.stat_448592698|143", + ["text"] = "+# to Level of all Staggering Palm Skills", + ["type"] = "explicit", + }, + [1442] = { + ["id"] = "explicit.stat_448592698|33", + ["text"] = "+# to Level of all Seismic Cry Skills", + ["type"] = "explicit", + }, + [1443] = { + ["id"] = "explicit.stat_448592698|45", + ["text"] = "+# to Level of all Frost Wall Skills", + ["type"] = "explicit", + }, + [1444] = { + ["id"] = "explicit.stat_448592698|159", + ["text"] = "+# to Level of all Contagion Skills", + ["type"] = "explicit", + }, + [1445] = { + ["id"] = "explicit.stat_448592698|87", + ["text"] = "+# to Level of all Voltaic Grenade Skills", + ["type"] = "explicit", + }, + [1446] = { + ["id"] = "explicit.stat_448592698|76", + ["text"] = "+# to Level of all Combat Frenzy Skills", + ["type"] = "explicit", + }, + [1447] = { + ["id"] = "explicit.stat_448592698|70", + ["text"] = "+# to Level of all Defiance Banner Skills", + ["type"] = "explicit", + }, + [1448] = { + ["id"] = "explicit.stat_448592698|22", + ["text"] = "+# to Level of all Soul Offering Skills", + ["type"] = "explicit", + }, + [1449] = { + ["id"] = "explicit.stat_448592698|146", + ["text"] = "+# to Level of all Stormcaller Arrow Skills", + ["type"] = "explicit", + }, + [1450] = { + ["id"] = "explicit.stat_448592698|82", + ["text"] = "+# to Level of all Conductivity Skills", + ["type"] = "explicit", + }, + [1451] = { + ["id"] = "explicit.stat_448592698|93", + ["text"] = "+# to Level of all Glacial Bolt Skills", + ["type"] = "explicit", + }, + [1452] = { + ["id"] = "explicit.stat_448592698|104", + ["text"] = "+# to Level of all Gas Grenade Skills", + ["type"] = "explicit", + }, + [1453] = { + ["id"] = "explicit.stat_448592698|2", + ["text"] = "+# to Level of all Cast on Dodge Skills", + ["type"] = "explicit", + }, + [1454] = { + ["id"] = "explicit.stat_448592698|51", + ["text"] = "+# to Level of all Siege Ballista Skills", + ["type"] = "explicit", + }, + [1455] = { + ["id"] = "explicit.stat_448592698|165", + ["text"] = "+# to Level of all Escape Shot Skills", + ["type"] = "explicit", + }, + [1456] = { + ["id"] = "explicit.stat_448592698|88", + ["text"] = "+# to Level of all Siphoning Strike Skills", + ["type"] = "explicit", + }, + [1457] = { + ["id"] = "explicit.stat_448592698|100", + ["text"] = "+# to Level of all Barrage Skills", + ["type"] = "explicit", + }, + [1458] = { + ["id"] = "explicit.stat_448592698|105", + ["text"] = "+# to Level of all Pain Offering Skills", + ["type"] = "explicit", + }, + [1459] = { + ["id"] = "explicit.stat_448592698|4", + ["text"] = "+# to Level of all Dread Banner Skills", + ["type"] = "explicit", + }, + [1460] = { + ["id"] = "explicit.stat_448592698|14", + ["text"] = "+# to Level of all Temporal Chains Skills", + ["type"] = "explicit", + }, + [1461] = { + ["id"] = "explicit.stat_448592698|75", + ["text"] = "+# to Level of all Herald of Plague Skills", + ["type"] = "explicit", + }, + [1462] = { + ["id"] = "explicit.stat_448592698|166", + ["text"] = "+# to Level of all Glacial Cascade Skills", + ["type"] = "explicit", + }, + [1463] = { + ["id"] = "explicit.stat_3620731914", + ["text"] = "Attacks with this Weapon gain #% of Physical damage as Extra damage of each Element", + ["type"] = "explicit", + }, + [1464] = { + ["id"] = "explicit.stat_448592698|18", + ["text"] = "+# to Level of all Eye of Winter Skills", + ["type"] = "explicit", + }, + [1465] = { + ["id"] = "explicit.stat_448592698|36", + ["text"] = "+# to Level of all Supercharged Slam Skills", + ["type"] = "explicit", + }, + [1466] = { + ["id"] = "explicit.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["type"] = "explicit", + }, + [1467] = { + ["id"] = "explicit.stat_448592698|5", + ["text"] = "+# to Level of all Attrition Skills", + ["type"] = "explicit", + }, + [1468] = { + ["id"] = "explicit.stat_448592698|95", + ["text"] = "+# to Level of all Freezing Mark Skills", + ["type"] = "explicit", + }, + [1469] = { + ["id"] = "explicit.stat_448592698|62", + ["text"] = "+# to Level of all Hand of Chayula Skills", + ["type"] = "explicit", + }, + [1470] = { + ["id"] = "explicit.stat_448592698|112", + ["text"] = "+# to Level of all Perfect Strike Skills", + ["type"] = "explicit", + }, + [1471] = { + ["id"] = "explicit.stat_448592698|163", + ["text"] = "+# to Level of all Boneshatter Skills", + ["type"] = "explicit", + }, + [1472] = { + ["id"] = "explicit.stat_448592698|59", + ["text"] = "+# to Level of all Stormblast Bolts Skills", + ["type"] = "explicit", + }, + [1473] = { + ["id"] = "explicit.stat_448592698|69", + ["text"] = "+# to Level of all Cast on Minion Death Skills", + ["type"] = "explicit", + }, + [1474] = { + ["id"] = "explicit.stat_448592698|115", + ["text"] = "+# to Level of all Rapid Shot Skills", + ["type"] = "explicit", + }, + [1475] = { + ["id"] = "explicit.stat_448592698|52", + ["text"] = "+# to Level of all Volcanic Fissure Skills", + ["type"] = "explicit", + }, + [1476] = { + ["id"] = "explicit.stat_448592698|28", + ["text"] = "+# to Level of all Gathering Storm Skills", + ["type"] = "explicit", + }, + [1477] = { + ["id"] = "explicit.stat_448592698|46", + ["text"] = "+# to Level of all Despair Skills", + ["type"] = "explicit", + }, + [1478] = { + ["id"] = "explicit.stat_448592698|173", + ["text"] = "+# to Level of all Fragmentation Rounds Skills", + ["type"] = "explicit", + }, + [1479] = { + ["id"] = "explicit.stat_448592698|102", + ["text"] = "+# to Level of all Wind Blast Skills", + ["type"] = "explicit", + }, + [1480] = { + ["id"] = "explicit.stat_448592698|30", + ["text"] = "+# to Level of all Ball Lightning Skills", + ["type"] = "explicit", + }, + [1481] = { + ["id"] = "explicit.stat_448592698|94", + ["text"] = "+# to Level of all Storm Wave Skills", + ["type"] = "explicit", + }, + [1482] = { + ["id"] = "explicit.stat_448592698|125", + ["text"] = "+# to Level of all Mana Remnants Skills", + ["type"] = "explicit", + }, + [1483] = { + ["id"] = "explicit.stat_448592698|74", + ["text"] = "+# to Level of all Overwhelming Presence Skills", + ["type"] = "explicit", + }, + [1484] = { + ["id"] = "explicit.stat_448592698|122", + ["text"] = "+# to Level of all Herald of Thunder Skills", + ["type"] = "explicit", + }, + [1485] = { + ["id"] = "explicit.stat_448592698|142", + ["text"] = "+# to Level of all Flash Grenade Skills", + ["type"] = "explicit", + }, + [1486] = { + ["id"] = "explicit.stat_448592698|84", + ["text"] = "+# to Level of all Earthshatter Skills", + ["type"] = "explicit", + }, + [1487] = { + ["id"] = "explicit.stat_448592698|8", + ["text"] = "+# to Level of all Alchemist's Boon Skills", + ["type"] = "explicit", + }, + [1488] = { + ["id"] = "explicit.stat_448592698|27", + ["text"] = "+# to Level of all Magnetic Salvo Skills", + ["type"] = "explicit", + }, + [1489] = { + ["id"] = "explicit.stat_448592698|118", + ["text"] = "+# to Level of all Freezing Salvo Skills", + ["type"] = "explicit", + }, + [1490] = { + ["id"] = "explicit.stat_448592698|97", + ["text"] = "+# to Level of all Raise Zombie Skills", + ["type"] = "explicit", + }, + [1491] = { + ["id"] = "explicit.stat_448592698|83", + ["text"] = "+# to Level of all Vulnerability Skills", + ["type"] = "explicit", + }, + [1492] = { + ["id"] = "explicit.stat_448592698|24", + ["text"] = "+# to Level of all Siege Cascade Skills", + ["type"] = "explicit", + }, + [1493] = { + ["id"] = "explicit.stat_263495202", + ["text"] = "#% increased Cost Efficiency", + ["type"] = "explicit", + }, + [1494] = { + ["id"] = "explicit.stat_1404607671", + ["text"] = "Soul Eater", + ["type"] = "explicit", + }, + [1495] = { + ["id"] = "explicit.stat_448592698|6", + ["text"] = "+# to Level of all Elemental Conflux Skills", + ["type"] = "explicit", + }, + [1496] = { + ["id"] = "explicit.stat_448592698|150", + ["text"] = "+# to Level of all High Velocity Rounds Skills", + ["type"] = "explicit", + }, + [1497] = { + ["id"] = "explicit.stat_448592698|171", + ["text"] = "+# to Level of all Poisonburst Arrow Skills", + ["type"] = "explicit", + }, + [1498] = { + ["id"] = "explicit.stat_2257118425", + ["text"] = "Vaal Pact", + ["type"] = "explicit", + }, + [1499] = { + ["id"] = "explicit.stat_2972244965", + ["text"] = "#% increased Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently", + ["type"] = "explicit", + }, + [1500] = { + ["id"] = "explicit.stat_448592698|90", + ["text"] = "+# to Level of all Profane Ritual Skills", + ["type"] = "explicit", + }, + [1501] = { + ["id"] = "explicit.stat_448592698|170", + ["text"] = "+# to Level of all Unearth Skills", + ["type"] = "explicit", + }, + [1502] = { + ["id"] = "explicit.stat_448592698|172", + ["text"] = "+# to Level of all Lightning Rod Skills", + ["type"] = "explicit", + }, + [1503] = { + ["id"] = "explicit.stat_448592698|40", + ["text"] = "+# to Level of all Hailstorm Rounds Skills", + ["type"] = "explicit", + }, + [1504] = { + ["id"] = "explicit.stat_448592698|35", + ["text"] = "+# to Level of all Whirling Assault Skills", + ["type"] = "explicit", + }, + [1505] = { + ["id"] = "explicit.stat_448592698|73", + ["text"] = "+# to Level of all Shard Scavenger Skills", + ["type"] = "explicit", + }, + [1506] = { + ["id"] = "explicit.stat_448592698|26", + ["text"] = "+# to Level of all Cluster Grenade Skills", + ["type"] = "explicit", + }, + [1507] = { + ["id"] = "explicit.stat_448592698|114", + ["text"] = "+# to Level of all Molten Blast Skills", + ["type"] = "explicit", + }, + [1508] = { + ["id"] = "explicit.stat_3452816629", + ["text"] = "1% more Unarmed Damage per # Strength", + ["type"] = "explicit", + }, + [1509] = { + ["id"] = "explicit.stat_448592698|116", + ["text"] = "+# to Level of all Ice Shards Skills", + ["type"] = "explicit", + }, + [1510] = { + ["id"] = "explicit.stat_448592698|174", + ["text"] = "+# to Level of all Armour Piercing Rounds Skills", + ["type"] = "explicit", + }, + [1511] = { + ["id"] = "explicit.stat_448592698|167", + ["text"] = "+# to Level of all Killing Palm Skills", + ["type"] = "explicit", + }, + [1512] = { + ["id"] = "explicit.stat_448592698|49", + ["text"] = "+# to Level of all Sunder Skills", + ["type"] = "explicit", + }, + [1513] = { + ["id"] = "explicit.stat_448592698|111", + ["text"] = "+# to Level of all Snap Skills", + ["type"] = "explicit", + }, + [1514] = { + ["id"] = "explicit.stat_448592698|80", + ["text"] = "+# to Level of all Flammability Skills", + ["type"] = "explicit", + }, + [1515] = { + ["id"] = "explicit.stat_448592698|133", + ["text"] = "+# to Level of all Shield Charge Skills", + ["type"] = "explicit", + }, + [1516] = { + ["id"] = "explicit.stat_448592698|152", + ["text"] = "+# to Level of all Vaulting Impact Skills", + ["type"] = "explicit", + }, + [1517] = { + ["id"] = "explicit.stat_448592698|61", + ["text"] = "+# to Level of all Ice Shot Skills", + ["type"] = "explicit", + }, + [1518] = { + ["id"] = "explicit.stat_448592698|128", + ["text"] = "+# to Level of all Wind Dancer Skills", + ["type"] = "explicit", + }, + [1519] = { + ["id"] = "explicit.stat_448592698|47", + ["text"] = "+# to Level of all Lightning Warp Skills", + ["type"] = "explicit", + }, + [1520] = { + ["id"] = "explicit.stat_448592698|155", + ["text"] = "+# to Level of all Falling Thunder Skills", + ["type"] = "explicit", + }, + [1521] = { + ["id"] = "explicit.stat_448592698|17", + ["text"] = "+# to Level of all Skeletal Cleric Skills", + ["type"] = "explicit", + }, + [1522] = { + ["id"] = "explicit.stat_448592698|129", + ["text"] = "+# to Level of all Grim Feast Skills", + ["type"] = "explicit", + }, + [1523] = { + ["id"] = "explicit.stat_448592698|109", + ["text"] = "+# to Level of all Solar Orb Skills", + ["type"] = "explicit", + }, + [1524] = { + ["id"] = "explicit.stat_448592698|64", + ["text"] = "+# to Level of all Cast on Shock Skills", + ["type"] = "explicit", + }, + [1525] = { + ["id"] = "explicit.stat_448592698|15", + ["text"] = "+# to Level of all Flameblast Skills", + ["type"] = "explicit", + }, + [1526] = { + ["id"] = "explicit.stat_448592698|164", + ["text"] = "+# to Level of all Rolling Slam Skills", + ["type"] = "explicit", + }, + [1527] = { + ["id"] = "explicit.stat_4097212302", + ["text"] = "# to maximum number of Elemental Infusions", + ["type"] = "explicit", + }, + [1528] = { + ["id"] = "explicit.stat_57896763", + ["text"] = "# metre to Dodge Roll distance if you've Dodge Rolled Recently", + ["type"] = "explicit", + }, + [1529] = { + ["id"] = "explicit.stat_448592698|1", + ["text"] = "+# to Level of all Cast on Critical Skills", + ["type"] = "explicit", + }, + [1530] = { + ["id"] = "explicit.stat_3926910174", + ["text"] = "# to # added Physical Thorns damage per Runic Plate", + ["type"] = "explicit", + }, + [1531] = { + ["id"] = "explicit.stat_2480962043", + ["text"] = "Skills which require Glory generate # Glory every 2 seconds", + ["type"] = "explicit", + }, + [1532] = { + ["id"] = "explicit.stat_448592698|77", + ["text"] = "+# to Level of all Leap Slam Skills", + ["type"] = "explicit", + }, + [1533] = { + ["id"] = "explicit.stat_448592698|119", + ["text"] = "+# to Level of all Arctic Armour Skills", + ["type"] = "explicit", + }, + [1534] = { + ["id"] = "explicit.stat_448592698|20", + ["text"] = "+# to Level of all Spiral Volley Skills", + ["type"] = "explicit", + }, + [1535] = { + ["id"] = "explicit.stat_448592698|169", + ["text"] = "+# to Level of all Frozen Locus Skills", + ["type"] = "explicit", + }, + [1536] = { + ["id"] = "explicit.stat_448592698|121", + ["text"] = "+# to Level of all Herald of Ice Skills", + ["type"] = "explicit", + }, + [1537] = { + ["id"] = "explicit.stat_4159551976", + ["text"] = "Your Critical Hit Chance cannot be Rerolled", + ["type"] = "explicit", + }, + [1538] = { + ["id"] = "explicit.stat_448592698|134", + ["text"] = "+# to Level of all Enfeeble Skills", + ["type"] = "explicit", + }, + [1539] = { + ["id"] = "explicit.stat_448592698|81", + ["text"] = "+# to Level of all Hypothermia Skills", + ["type"] = "explicit", + }, + [1540] = { + ["id"] = "explicit.stat_1237409891", + ["text"] = "Cannot be Used manually", + ["type"] = "explicit", + }, + [1541] = { + ["id"] = "explicit.stat_448592698|162", + ["text"] = "+# to Level of all Flame Wall Skills", + ["type"] = "explicit", + }, + [1542] = { + ["id"] = "explicit.stat_448592698|127", + ["text"] = "+# to Level of all Raging Spirits Skills", + ["type"] = "explicit", + }, + [1543] = { + ["id"] = "explicit.stat_448592698|58", + ["text"] = "+# to Level of all Dark Effigy Skills", + ["type"] = "explicit", + }, + [1544] = { + ["id"] = "explicit.stat_448592698|168", + ["text"] = "+# to Level of all Explosive Grenade Skills", + ["type"] = "explicit", + }, + [1545] = { + ["id"] = "explicit.stat_448592698|55", + ["text"] = "+# to Level of all Charged Staff Skills", + ["type"] = "explicit", + }, + [1546] = { + ["id"] = "explicit.stat_448592698|38", + ["text"] = "+# to Level of all Shattering Palm Skills", + ["type"] = "explicit", + }, + [1547] = { + ["id"] = "explicit.stat_448592698|65", + ["text"] = "+# to Level of all Cast on Freeze Skills", + ["type"] = "explicit", + }, + [1548] = { + ["id"] = "explicit.stat_4123841473", + ["text"] = "Lightning Skills Chain # times", + ["type"] = "explicit", + }, + [1549] = { + ["id"] = "explicit.stat_448592698|113", + ["text"] = "+# to Level of all Resonating Shield Skills", + ["type"] = "explicit", + }, + [1550] = { + ["id"] = "explicit.stat_448592698|66", + ["text"] = "+# to Level of all Cast on Ignite Skills", + ["type"] = "explicit", + }, + [1551] = { + ["id"] = "explicit.stat_4287372938", + ["text"] = "Bear Skills Convert #% of Physical Damage to Fire Damage", + ["type"] = "explicit", + }, + [1552] = { + ["id"] = "explicit.stat_448592698|57", + ["text"] = "+# to Level of all Fireball Skills", + ["type"] = "explicit", + }, + [1553] = { + ["id"] = "explicit.stat_448592698|140", + ["text"] = "+# to Level of all Frostbolt Skills", + ["type"] = "explicit", + }, + [1554] = { + ["id"] = "explicit.stat_448592698|130", + ["text"] = "+# to Level of all Scavenged Plating Skills", + ["type"] = "explicit", + }, + [1555] = { + ["id"] = "explicit.stat_448592698|91", + ["text"] = "+# to Level of all Shield Wall Skills", + ["type"] = "explicit", + }, + [1556] = { + ["id"] = "explicit.stat_2531622767", + ["text"] = "#% increased Block chance per 100 total Item Armour on Equipped Armour Items", + ["type"] = "explicit", + }, + [1557] = { + ["id"] = "explicit.stat_2589572664", + ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Mana", + ["type"] = "explicit", + }, + [1558] = { + ["id"] = "explicit.stat_2252419505", + ["text"] = "Cannot be Light Stunned by Deflected Hits", + ["type"] = "explicit", + }, + [1559] = { + ["id"] = "explicit.stat_448592698|89", + ["text"] = "+# to Level of all Gas Arrow Skills", + ["type"] = "explicit", + }, + [1560] = { + ["id"] = "explicit.stat_1823942939", + ["text"] = "# to maximum number of Summoned Ballista Totems", + ["type"] = "explicit", + }, + [1561] = { + ["id"] = "explicit.stat_448592698|123", + ["text"] = "+# to Level of all Plague Bearer Skills", + ["type"] = "explicit", + }, + [1562] = { + ["id"] = "explicit.stat_448592698|11", + ["text"] = "+# to Level of all Archmage Skills", + ["type"] = "explicit", + }, + [1563] = { + ["id"] = "explicit.stat_448592698|149", + ["text"] = "+# to Level of all Ember Fusillade Skills", + ["type"] = "explicit", + }, + [1564] = { + ["id"] = "explicit.stat_448592698|13", + ["text"] = "+# to Level of all Flicker Strike Skills", + ["type"] = "explicit", + }, + [1565] = { + ["id"] = "explicit.stat_448592698|117", + ["text"] = "+# to Level of all Galvanic Shards Skills", + ["type"] = "explicit", + }, + [1566] = { + ["id"] = "explicit.stat_448592698|139", + ["text"] = "+# to Level of all Essence Drain Skills", + ["type"] = "explicit", + }, + [1567] = { + ["id"] = "explicit.stat_448592698|145", + ["text"] = "+# to Level of all Bone Cage Skills", + ["type"] = "explicit", + }, + [1568] = { + ["id"] = "explicit.stat_1972661424", + ["text"] = "#% more Life Flask Recovery", + ["type"] = "explicit", + }, + [1569] = { + ["id"] = "explicit.stat_916833363", + ["text"] = "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", + ["type"] = "explicit", + }, + [1570] = { + ["id"] = "explicit.stat_448592698|158", + ["text"] = "+# to Level of all Earthquake Skills", + ["type"] = "explicit", + }, + [1571] = { + ["id"] = "explicit.stat_448592698|156", + ["text"] = "+# to Level of all Lightning Arrow Skills", + ["type"] = "explicit", + }, + [1572] = { + ["id"] = "explicit.stat_448592698|99", + ["text"] = "+# to Level of all Incinerate Skills", + ["type"] = "explicit", + }, + [1573] = { + ["id"] = "explicit.stat_448592698|98", + ["text"] = "+# to Level of all Arc Skills", + ["type"] = "explicit", + }, + [1574] = { + ["id"] = "explicit.stat_448592698|41", + ["text"] = "+# to Level of all Shockburst Rounds Skills", + ["type"] = "explicit", + }, + [1575] = { + ["id"] = "explicit.stat_448592698|153", + ["text"] = "+# to Level of all Ice Nova Skills", + ["type"] = "explicit", + }, + [1576] = { + ["id"] = "explicit.stat_448592698|103", + ["text"] = "+# to Level of all Ice Strike Skills", + ["type"] = "explicit", + }, + [1577] = { + ["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", + }, + [1578] = { + ["id"] = "explicit.stat_3783473032", + ["text"] = "The Bodach haunts your Presence", + ["type"] = "explicit", + }, + [1579] = { + ["id"] = "explicit.stat_448592698|107", + ["text"] = "+# to Level of all Bonestorm Skills", + ["type"] = "explicit", + }, + [1580] = { + ["id"] = "explicit.stat_448592698|25", + ["text"] = "+# to Level of all Plasma Blast Skills", + ["type"] = "explicit", + }, + [1581] = { + ["id"] = "explicit.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", + ["type"] = "explicit", + }, + [1582] = { + ["id"] = "explicit.stat_448592698|92", + ["text"] = "+# to Level of all Explosive Shot Skills", + ["type"] = "explicit", + }, + [1583] = { + ["id"] = "explicit.stat_668076381", + ["text"] = "Heavy Stuns Enemies that are on Full Life", + ["type"] = "explicit", + }, + [1584] = { + ["id"] = "explicit.stat_448592698|23", + ["text"] = "+# to Level of all Hammer of the Gods Skills", + ["type"] = "explicit", + }, + [1585] = { + ["id"] = "explicit.stat_1327522346", + ["text"] = "#% increased Mana Regeneration Rate while moving", + ["type"] = "explicit", + }, + [1586] = { + ["id"] = "explicit.stat_1509533589", + ["text"] = "Enemies take #% increased Damage for each Elemental Ailment type amongyour Ailments on them", + ["type"] = "explicit", + }, + [1587] = { + ["id"] = "explicit.stat_2080373320", + ["text"] = "Enemies in your Presence are Blinded", + ["type"] = "explicit", + }, + [1588] = { + ["id"] = "explicit.stat_2760344900", + ["text"] = "#% chance when you Reload a Crossbow to be immediate", + ["type"] = "explicit", + }, + [1589] = { + ["id"] = "explicit.stat_2896115339", + ["text"] = "#% of Elemental Damage taken Recouped as Energy Shield", + ["type"] = "explicit", + }, + [1590] = { + ["id"] = "explicit.stat_1345486764", + ["text"] = "+1 to Maximum Spirit per # Maximum Life", + ["type"] = "explicit", + }, + [1591] = { + ["id"] = "explicit.stat_448592698|39", + ["text"] = "+# to Level of all Stampede Skills", + ["type"] = "explicit", + }, + [1592] = { + ["id"] = "explicit.stat_448592698|106", + ["text"] = "+# to Level of all Tempest Flurry Skills", + ["type"] = "explicit", + }, + [1593] = { + ["id"] = "explicit.stat_448592698|144", + ["text"] = "+# to Level of all Tempest Bell Skills", + ["type"] = "explicit", + }, + [1594] = { + ["id"] = "explicit.stat_1661347488", + ["text"] = "Lose #% of maximum Life per second", + ["type"] = "explicit", + }, + [1595] = { + ["id"] = "explicit.stat_448592698|16", + ["text"] = "+# to Level of all Skeletal Brute Skills", + ["type"] = "explicit", + }, + [1596] = { + ["id"] = "explicit.stat_330530785", + ["text"] = "#% increased Immobilisation buildup", + ["type"] = "explicit", + }, + [1597] = { + ["id"] = "explicit.stat_3063814459", + ["text"] = "Pin Enemies which are Primed for Pinning", + ["type"] = "explicit", + }, + [1598] = { + ["id"] = "explicit.stat_279110104", + ["text"] = "Withered does not expire on Enemies Ignited by you", + ["type"] = "explicit", + }, + [1599] = { + ["id"] = "explicit.stat_664606484", + ["text"] = "Abyssal Monsters have #% increased Effectiveness for each closed Pit, up to 100%", + ["type"] = "explicit", + }, + [1600] = { + ["id"] = "explicit.stat_448592698|3", + ["text"] = "+# to Level of all Blink Skills", + ["type"] = "explicit", + }, + [1601] = { + ["id"] = "explicit.stat_538981065", + ["text"] = "Grenades have #% chance to activate a second time", + ["type"] = "explicit", + }, + [1602] = { + ["id"] = "explicit.stat_3507701584", + ["text"] = "# to Level of Vulnerability Skills", + ["type"] = "explicit", + }, + [1603] = { + ["id"] = "explicit.stat_1294464552", + ["text"] = "Small Passive Skills in Radius also grant # to maximum Mana", + ["type"] = "explicit", + }, + [1604] = { + ["id"] = "explicit.stat_2856328513", + ["text"] = "#% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", + ["type"] = "explicit", + }, + [1605] = { + ["id"] = "explicit.stat_3773763721", + ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", + ["type"] = "explicit", + }, + [1606] = { + ["id"] = "explicit.stat_448592698|160", + ["text"] = "+# to Level of all Skeletal Sniper Skills", + ["type"] = "explicit", + }, + [1607] = { + ["id"] = "explicit.stat_448592698|34", + ["text"] = "+# to Level of all Hexblast Skills", + ["type"] = "explicit", + }, + [1608] = { + ["id"] = "explicit.stat_448592698|19", + ["text"] = "+# to Level of all Lightning Conduit Skills", + ["type"] = "explicit", + }, + [1609] = { + ["id"] = "explicit.stat_3480095574", + ["text"] = "Charms applied to you have #% increased Effect", + ["type"] = "explicit", + }, + [1610] = { + ["id"] = "explicit.stat_1088082880", + ["text"] = "Spells which cost Life Gain #% of Damage as Extra Physical Damage", + ["type"] = "explicit", + }, + [1611] = { + ["id"] = "explicit.stat_2720781168", + ["text"] = "Attack Projectiles Return if they Pierced at least # times", + ["type"] = "explicit", + }, + [1612] = { + ["id"] = "explicit.stat_1697191405", + ["text"] = "#% increased Reservation Efficiency of Herald Skills", + ["type"] = "explicit", + }, + [1613] = { + ["id"] = "explicit.stat_3605616594", + ["text"] = "Gain Onslaught for 4 seconds when a Minion Dies", + ["type"] = "explicit", + }, + [1614] = { + ["id"] = "explicit.stat_905072977", + ["text"] = "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup", + ["type"] = "explicit", + }, + [1615] = { + ["id"] = "explicit.stat_2061237517", + ["text"] = "# to Level of all Corrupted Spell Skill Gems", + ["type"] = "explicit", + }, + [1616] = { + ["id"] = "explicit.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", + ["type"] = "explicit", + }, + [1617] = { + ["id"] = "explicit.stat_1365079333", + ["text"] = "Players steal the Eaten Souls of Slain Rare Monsters in Area", + ["type"] = "explicit", + }, + [1618] = { + ["id"] = "explicit.stat_448592698|37", + ["text"] = "+# to Level of all Comet Skills", + ["type"] = "explicit", + }, + [1619] = { + ["id"] = "explicit.stat_3581035970", + ["text"] = "#% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", + ["type"] = "explicit", + }, + [1620] = { + ["id"] = "explicit.stat_448592698|21", + ["text"] = "+# to Level of all Ancestral Warrior Totem Skills", + ["type"] = "explicit", + }, + [1621] = { + ["id"] = "explicit.stat_1705072014", + ["text"] = "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", + ["type"] = "explicit", + }, + [1622] = { + ["id"] = "explicit.stat_1266185101", + ["text"] = "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", + ["type"] = "explicit", + }, + [1623] = { + ["id"] = "explicit.stat_2783157569", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + [1624] = { + ["id"] = "explicit.stat_262946222", + ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", + ["type"] = "explicit", + }, + [1625] = { + ["id"] = "explicit.stat_448592698|50", + ["text"] = "+# to Level of all Skeletal Reaver Skills", + ["type"] = "explicit", + }, + [1626] = { + ["id"] = "explicit.stat_3742268652", + ["text"] = "Grants effect of Dreaming Gloom Shrine", + ["type"] = "explicit", + }, + [1627] = { + ["id"] = "explicit.stat_3655769732", + ["text"] = "#% to Quality of all Skills", + ["type"] = "explicit", + }, + [1628] = { + ["id"] = "explicit.stat_1914226331", + ["text"] = "#% increased Cast Speed while on Full Mana", + ["type"] = "explicit", + }, + [1629] = { + ["id"] = "explicit.stat_446027070", + ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Hit", + ["type"] = "explicit", + }, + [1630] = { + ["id"] = "explicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", + ["type"] = "explicit", + }, + [1631] = { + ["id"] = "explicit.stat_883169830", + ["text"] = "Projectiles deal #% increased Damage with Hits for each time they have Pierced", + ["type"] = "explicit", + }, + [1632] = { + ["id"] = "explicit.stat_150590298", + ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also Boots", + ["type"] = "explicit", + }, + [1633] = { + ["id"] = "explicit.stat_4106787208", + ["text"] = "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", + ["type"] = "explicit", + }, + [1634] = { + ["id"] = "explicit.stat_448592698|126", + ["text"] = "+# to Level of all Magma Barrier Skills", + ["type"] = "explicit", + }, + [1635] = { + ["id"] = "explicit.stat_3915618954", + ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", + ["type"] = "explicit", + }, + [1636] = { + ["id"] = "explicit.stat_2443032293", + ["text"] = "Gain # Guard for 0.5 seconds per Combo expended when using Skills", + ["type"] = "explicit", + }, + [1637] = { + ["id"] = "explicit.stat_1570501432", + ["text"] = "Leech Life #% faster", + ["type"] = "explicit", + }, + [1638] = { + ["id"] = "explicit.stat_3076483222|38303", + ["text"] = "Sacrifice up to 20 Arcanist's Etchers to receive double on Trial completion", + ["type"] = "explicit", + }, + [1639] = { + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", + ["type"] = "explicit", + }, + [1640] = { + ["id"] = "explicit.stat_160888068", + ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Life", + ["type"] = "explicit", + }, + [1641] = { + ["id"] = "explicit.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", + ["type"] = "explicit", + }, + [1642] = { + ["id"] = "explicit.stat_2526112819", + ["text"] = "Hits with this Weapon inflict # Gruelling Madness", + ["type"] = "explicit", + }, + [1643] = { + ["id"] = "explicit.stat_3076483222|19854", + ["text"] = "Sacrifice up to 3 Orb of Annulments to receive double on Trial completion", + ["type"] = "explicit", + }, + [1644] = { + ["id"] = "explicit.stat_448592698|136", + ["text"] = "+# to Level of all Shockwave Totem Skills", + ["type"] = "explicit", + }, + [1645] = { + ["id"] = "explicit.stat_1949851472", + ["text"] = "#% chance when a Charm is used to use another Charm without consuming Charges", + ["type"] = "explicit", + }, + [1646] = { + ["id"] = "explicit.stat_318092306", + ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", + ["type"] = "explicit", + }, + [1647] = { + ["id"] = "explicit.stat_472809816", + ["text"] = "#% increased Quantity of Wombgifts found", + ["type"] = "explicit", + }, + [1648] = { + ["id"] = "explicit.stat_1518586897", + ["text"] = "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", + ["type"] = "explicit", + }, + [1649] = { + ["id"] = "explicit.stat_4186798932", + ["text"] = "# to # Added Attack Fire Damage per 25 Strength", + ["type"] = "explicit", + }, + [1650] = { + ["id"] = "explicit.stat_3076483222|45026", + ["text"] = "Sacrifice up to 3 Orbs of Chance to receive double on Trial completion", + ["type"] = "explicit", + }, + [1651] = { + ["id"] = "explicit.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + ["type"] = "explicit", + }, + [1652] = { + ["id"] = "explicit.stat_4258524206", + ["text"] = "#% chance to build an additional Combo on Hit", + ["type"] = "explicit", + }, + [1653] = { + ["id"] = "explicit.stat_1827379101", + ["text"] = "Enemies in your Presence have additional Power equal to their Gruelling Madness", + ["type"] = "explicit", + }, + [1654] = { + ["id"] = "explicit.stat_4033618138", + ["text"] = "Recover #% of Maximum Life when you expend at least 10 Combo", + ["type"] = "explicit", + }, + [1655] = { + ["id"] = "explicit.stat_2991045011", + ["text"] = "Recover #% of Maximum Mana when you expend at least 10 Combo", + ["type"] = "explicit", + }, + [1656] = { + ["id"] = "explicit.stat_4274247770", + ["text"] = "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", + ["type"] = "explicit", + }, + [1657] = { + ["id"] = "explicit.stat_2705185939", + ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["type"] = "explicit", + }, + [1658] = { + ["id"] = "explicit.stat_3190283174", + ["text"] = "Area has patches of Mana Siphoning Ground", + ["type"] = "explicit", + }, + [1659] = { + ["id"] = "explicit.stat_2543331226", + ["text"] = "#% increased Damage while you have a Totem", + ["type"] = "explicit", + }, + [1660] = { + ["id"] = "explicit.stat_1493485657", + ["text"] = "Spells have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [1661] = { + ["id"] = "explicit.stat_1781372024", + ["text"] = "Recover #% of maximum Life on Killing a Poisoned Enemy", + ["type"] = "explicit", + }, + [1662] = { + ["id"] = "explicit.stat_448592698|141", + ["text"] = "+# to Level of all Skeletal Arsonist Skills", + ["type"] = "explicit", + }, + [1663] = { + ["id"] = "explicit.stat_1539671749", + ["text"] = "Defend with #% of Armour while you have Energy Shield", + ["type"] = "explicit", + }, + [1664] = { + ["id"] = "explicit.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + ["type"] = "explicit", + }, + [1665] = { + ["id"] = "explicit.stat_3923947492", + ["text"] = "Hits against you have #% increased Critical Hit Chance while you are Chilled", + ["type"] = "explicit", + }, + [1666] = { + ["id"] = "explicit.stat_2422708892|64601", + ["text"] = "Passives in Radius of Hollow Palm Technique can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1667] = { + ["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", + }, + [1668] = { + ["id"] = "explicit.stat_2749595652", + ["text"] = "#% chance for Skills to retain 40% of Glory on use", + ["type"] = "explicit", + }, + [1669] = { + ["id"] = "explicit.stat_1243721142", + ["text"] = "Arrows Return if they have Pierced a target which had Fully Broken Armour", + ["type"] = "explicit", + }, + [1670] = { + ["id"] = "explicit.stat_1316656343", + ["text"] = "Small Passive Skills in Radius also grant # to maximum Life", + ["type"] = "explicit", + }, + [1671] = { + ["id"] = "explicit.stat_2433436306", + ["text"] = "Unstable Breaches have #% increased chance to contain Vruun, Marshal of Xesht", + ["type"] = "explicit", + }, + [1672] = { + ["id"] = "explicit.stat_448592698|101", + ["text"] = "+# to Level of all Skeletal Frost Mage Skills", + ["type"] = "explicit", + }, + [1673] = { + ["id"] = "explicit.stat_3128077011", + ["text"] = "#% increased Effect of Jewel Socket Passive Skillscontaining Corrupted Rare Jewels", + ["type"] = "explicit", + }, + [1674] = { + ["id"] = "explicit.stat_2839557359", + ["text"] = "Possessed by Spirit Of The Cat for # seconds on use", + ["type"] = "explicit", + }, + [1675] = { + ["id"] = "explicit.stat_4121454694", + ["text"] = "Recover #% of maximum Mana when a Charm is used", + ["type"] = "explicit", + }, + [1676] = { + ["id"] = "explicit.stat_501873429", + ["text"] = "#% chance for Charms you use to not consume Charges", + ["type"] = "explicit", + }, + [1677] = { + ["id"] = "explicit.stat_3336230913", + ["text"] = "# to maximum Runic Ward", + ["type"] = "explicit", + }, + [1678] = { + ["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", + }, + [1679] = { + ["id"] = "explicit.stat_3685424517", + ["text"] = "Possessed by Spirit Of The Stag for # seconds on use", + ["type"] = "explicit", + }, + [1680] = { + ["id"] = "explicit.stat_758893621", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + [1681] = { + ["id"] = "explicit.stat_2399592398", + ["text"] = "Abysses lead to an Abyssal Boss", + ["type"] = "explicit", + }, + [1682] = { + ["id"] = "explicit.stat_3274422940", + ["text"] = "#% increased Ice Crystal Life", + ["type"] = "explicit", + }, + [1683] = { + ["id"] = "explicit.stat_3950000557", + ["text"] = "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", + ["type"] = "explicit", + }, + [1684] = { + ["id"] = "explicit.stat_448592698|161", + ["text"] = "+# to Level of all Skeletal Sniper Skills", + ["type"] = "explicit", + }, + [1685] = { + ["id"] = "explicit.stat_2889272422", + ["text"] = "Wombgifts have #% chance to drop one Level higher", + ["type"] = "explicit", + }, + [1686] = { + ["id"] = "explicit.stat_448592698|32", + ["text"] = "+# to Level of all Skeletal Storm Mage Skills", + ["type"] = "explicit", + }, + [1687] = { + ["id"] = "explicit.stat_2880019685", + ["text"] = "#% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", + ["type"] = "explicit", + }, + [1688] = { + ["id"] = "explicit.stat_3711973554", + ["text"] = "Invocated Spells have #% chance to consume half as much Energy", + ["type"] = "explicit", + }, + [1689] = { + ["id"] = "explicit.stat_242637938", + ["text"] = "#% increased chance to inflict Bleeding", + ["type"] = "explicit", + }, + [1690] = { + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "explicit", + }, + [1691] = { + ["id"] = "explicit.stat_448592698|154", + ["text"] = "+# to Level of all Spark Skills", + ["type"] = "explicit", + }, + [1692] = { + ["id"] = "explicit.stat_2544540062", + ["text"] = "Skills which create Fissures have a #% chance to create an additional Fissure", + ["type"] = "explicit", + }, + [1693] = { + ["id"] = "explicit.stat_1261076060", + ["text"] = "#% increased Life Regeneration rate during Effect of any Life Flask", + ["type"] = "explicit", + }, + [1694] = { + ["id"] = "explicit.stat_2013356568", + ["text"] = "Melee Attack Skills have # to maximum number of Summoned Totems", + ["type"] = "explicit", + }, + [1695] = { + ["id"] = "explicit.stat_2474424958", + ["text"] = "Spell Skills have # to maximum number of Summoned Totems", + ["type"] = "explicit", + }, + [1696] = { + ["id"] = "explicit.stat_4136346606", + ["text"] = "#% increased Spell Damage while wielding a Melee Weapon", + ["type"] = "explicit", + }, + [1697] = { + ["id"] = "explicit.stat_2408625104", + ["text"] = "Players and their Minions deal no damage for 3 out of every 10 seconds", + ["type"] = "explicit", + }, + [1698] = { + ["id"] = "explicit.stat_231726304", + ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", + ["type"] = "explicit", + }, + [1699] = { + ["id"] = "explicit.stat_448592698|199", + ["text"] = "+# to Level of all Herald of Blood Skills", + ["type"] = "explicit", + }, + [1700] = { + ["id"] = "explicit.stat_4015438188", + ["text"] = "#% increased Damage with Hits against targets in your Presence", + ["type"] = "explicit", + }, + [1701] = { + ["id"] = "explicit.stat_2258007247", + ["text"] = "Gain # Rage on Hit", + ["type"] = "explicit", + }, + [1702] = { + ["id"] = "explicit.stat_3763491818", + ["text"] = "Possessed by Spirit Of The Primate for # seconds on use", + ["type"] = "explicit", + }, + [1703] = { + ["id"] = "explicit.stat_3076483222|136", + ["text"] = "Sacrifice up to 20 Glassblower's Baubles to receive double on Trial completion", + ["type"] = "explicit", + }, + [1704] = { + ["id"] = "explicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "explicit", + }, + [1705] = { + ["id"] = "explicit.stat_3463873033", + ["text"] = "Possessed by Spirit Of The Ox for # seconds on use", + ["type"] = "explicit", + }, + [1706] = { + ["id"] = "explicit.stat_1864159246", + ["text"] = "#% increased Magnitude of Poison you inflict on targets that are not Poisoned", + ["type"] = "explicit", + }, + [1707] = { + ["id"] = "explicit.stat_3972229254", + ["text"] = "#% of Armour also applies to Chaos Damage", + ["type"] = "explicit", + }, + [1708] = { + ["id"] = "explicit.stat_3313255158", + ["text"] = "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", + ["type"] = "explicit", + }, + [1709] = { + ["id"] = "explicit.stat_1286199571", + ["text"] = "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", + ["type"] = "explicit", + }, + [1710] = { + ["id"] = "explicit.stat_2422708892|42680", + ["text"] = "Passives in Radius of Blackflame Covenant can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1711] = { + ["id"] = "explicit.stat_3504441212", + ["text"] = "Possessed by Spirit Of The Wolf for # seconds on use", + ["type"] = "explicit", + }, + [1712] = { + ["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", + }, + [1713] = { + ["id"] = "explicit.stat_3181677174", + ["text"] = "Possessed by Spirit Of The Serpent for # seconds on use", + ["type"] = "explicit", + }, + [1714] = { + ["id"] = "explicit.stat_3396435291", + ["text"] = "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", + ["type"] = "explicit", + }, + [1715] = { + ["id"] = "explicit.stat_3076483222|53954", + ["text"] = "Sacrifice up to 10 Gemcutter's Prisms to receive double on Trial completion", + ["type"] = "explicit", + }, + [1716] = { + ["id"] = "explicit.stat_2408983956", + ["text"] = "#% increased Critical Damage Bonus while Shocked", + ["type"] = "explicit", + }, + [1717] = { + ["id"] = "explicit.stat_4224832423", + ["text"] = "#% chance for Spell Skills to fire 8 additional Projectiles in a circle", + ["type"] = "explicit", + }, + [1718] = { + ["id"] = "explicit.stat_3403424702", + ["text"] = "Possessed by Spirit Of The Bear for # seconds on use", + ["type"] = "explicit", + }, + [1719] = { + ["id"] = "explicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of maximum Life per second", + ["type"] = "explicit", + }, + [1720] = { + ["id"] = "explicit.stat_3481083201", + ["text"] = "#% increased chance to Poison", + ["type"] = "explicit", + }, + [1721] = { + ["id"] = "explicit.stat_3871530702", + ["text"] = "Conquered Attribute Passive Skills also grant # to Strength", + ["type"] = "explicit", + }, + [1722] = { + ["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", + }, + [1723] = { + ["id"] = "explicit.stat_603573028", + ["text"] = "You can have any number of Companions of different types", + ["type"] = "explicit", + }, + [1724] = { + ["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", + }, + [1725] = { + ["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", + }, + [1726] = { + ["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", + }, + [1727] = { + ["id"] = "explicit.stat_909236563", + ["text"] = "#% increased Surrounded Area of Effect", + ["type"] = "explicit", + }, + [1728] = { + ["id"] = "explicit.stat_2853314994", + ["text"] = "Regenerate # Rage per second", + ["type"] = "explicit", + }, + [1729] = { + ["id"] = "explicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "explicit", + }, + [1730] = { + ["id"] = "explicit.stat_2931872063", + ["text"] = "Gain Volatility on Critical Hit", + ["type"] = "explicit", + }, + [1731] = { + ["id"] = "explicit.stat_1746561819", + ["text"] = "Enemies Hindered by you take #% increased Chaos Damage", + ["type"] = "explicit", + }, + [1732] = { + ["id"] = "explicit.stat_300107724", + ["text"] = "Possessed by Spirit Of The Owl for # seconds on use", + ["type"] = "explicit", + }, + [1733] = { + ["id"] = "explicit.stat_212649958", + ["text"] = "Enemies Hindered by you take #% increased Elemental Damage", + ["type"] = "explicit", + }, + [1734] = { + ["id"] = "explicit.stat_2422708892|11230", + ["text"] = "Passives in Radius of Ritual Cadence can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1735] = { + ["id"] = "explicit.stat_2552484522", + ["text"] = "Conquered Attribute Passive Skills also grant # to all Attributes", + ["type"] = "explicit", + }, + [1736] = { + ["id"] = "explicit.stat_3927679277", + ["text"] = "#% chance when collecting an Elemental Infusion to gain anadditional Elemental Infusion of the same type", + ["type"] = "explicit", + }, + [1737] = { + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on Hit", + ["type"] = "explicit", + }, + [1738] = { + ["id"] = "explicit.stat_4273473110", + ["text"] = "#% increased maximum Runic Ward", + ["type"] = "explicit", + }, + [1739] = { + ["id"] = "explicit.stat_1174076861", + ["text"] = "#% increased Cast Speed if you've dealt a Critical Hit Recently", + ["type"] = "explicit", + }, + [1740] = { + ["id"] = "explicit.stat_4163076972", + ["text"] = "No Inherent loss of Rage", + ["type"] = "explicit", + }, + [1741] = { + ["id"] = "explicit.stat_3982604001", + ["text"] = "Skills have #% longer Perfect Timing window during effect", + ["type"] = "explicit", + }, + [1742] = { + ["id"] = "explicit.stat_448592698|204", + ["text"] = "+# to Level of all Ravenous Swarm Skills", + ["type"] = "explicit", + }, + [1743] = { + ["id"] = "explicit.stat_1685559578", + ["text"] = "Possessed by Spirit Of The Boar for # seconds on use", + ["type"] = "explicit", + }, + [1744] = { + ["id"] = "explicit.stat_2422708892|61942", + ["text"] = "Passives in Radius of Lord of the Wilds can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1745] = { + ["id"] = "explicit.stat_67169579", + ["text"] = "# to Level of all Chaos Skills", + ["type"] = "explicit", + }, + [1746] = { + ["id"] = "explicit.stat_2146799605", + ["text"] = "#% less Movement Speed", + ["type"] = "explicit", + }, + [1747] = { + ["id"] = "explicit.stat_1119086588", + ["text"] = "Conquered Attribute Passive Skills also grant # to Tribute", + ["type"] = "explicit", + }, + [1748] = { + ["id"] = "explicit.stat_1633735772", + ["text"] = "#% less maximum Life", + ["type"] = "explicit", + }, + [1749] = { + ["id"] = "explicit.stat_2083058281", + ["text"] = "Enemies you Mark take #% increased Damage", + ["type"] = "explicit", + }, + [1750] = { + ["id"] = "explicit.stat_448592698|182", + ["text"] = "+# to Level of all Glacial Lance Skills", + ["type"] = "explicit", + }, + [1751] = { + ["id"] = "explicit.stat_448592698|197", + ["text"] = "+# to Level of all Trinity Skills", + ["type"] = "explicit", + }, + [1752] = { + ["id"] = "explicit.stat_3116427713", + ["text"] = "Conquered Attribute Passive Skills also grant # to Intelligence", + ["type"] = "explicit", + }, + [1753] = { + ["id"] = "explicit.stat_1103616075", + ["text"] = "Break Armour equal to #% of Physical Damage dealt", + ["type"] = "explicit", + }, + [1754] = { + ["id"] = "explicit.stat_656291658", + ["text"] = "#% increased Cast Speed when on Full Life", + ["type"] = "explicit", + }, + [1755] = { + ["id"] = "explicit.stat_1803659985", + ["text"] = "#% less Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + [1756] = { + ["id"] = "explicit.stat_448592698|187", + ["text"] = "+# to Level of all Whirlwind Lance Skills", + ["type"] = "explicit", + }, + [1757] = { + ["id"] = "explicit.stat_1793740180", + ["text"] = "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", + ["type"] = "explicit", + }, + [1758] = { + ["id"] = "explicit.stat_448592698|195", + ["text"] = "+# to Level of all Storm Lance Skills", + ["type"] = "explicit", + }, + [1759] = { + ["id"] = "explicit.stat_986616727", + ["text"] = "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", + ["type"] = "explicit", + }, + [1760] = { + ["id"] = "explicit.stat_448592698|190", + ["text"] = "+# to Level of all Wind Serpent's Fury Skills", + ["type"] = "explicit", + }, + [1761] = { + ["id"] = "explicit.stat_448592698|188", + ["text"] = "+# to Level of all Primal Strikes Skills", + ["type"] = "explicit", + }, + [1762] = { + ["id"] = "explicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "explicit", + }, + [1763] = { + ["id"] = "explicit.stat_448592698|178", + ["text"] = "+# to Level of all Blood Hunt Skills", + ["type"] = "explicit", + }, + [1764] = { + ["id"] = "explicit.stat_1274947822", + ["text"] = "#% less Damage", + ["type"] = "explicit", + }, + [1765] = { + ["id"] = "explicit.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", + ["type"] = "explicit", + }, + [1766] = { + ["id"] = "explicit.stat_302024054", + ["text"] = "Regenerate #% of maximum Life per second while Ignited", + ["type"] = "explicit", + }, + [1767] = { + ["id"] = "explicit.stat_1370804479", + ["text"] = "Elemental Ailments other than Freeze you inflict are Reflected to you", + ["type"] = "explicit", + }, + [1768] = { + ["id"] = "explicit.stat_537850431", + ["text"] = "#% less Spirit", + ["type"] = "explicit", + }, + [1769] = { + ["id"] = "explicit.stat_448592698|203", + ["text"] = "+# to Level of all Cull The Weak Skills", + ["type"] = "explicit", + }, + [1770] = { + ["id"] = "explicit.stat_448592698|202", + ["text"] = "+# to Level of all Convalescence Skills", + ["type"] = "explicit", + }, + [1771] = { + ["id"] = "explicit.stat_3359797958", + ["text"] = "#% increased Projectile Speed for Spell Skills", + ["type"] = "explicit", + }, + [1772] = { + ["id"] = "explicit.stat_3045154261", + ["text"] = "#% less maximum Mana", + ["type"] = "explicit", + }, + [1773] = { + ["id"] = "explicit.stat_448592698|196", + ["text"] = "+# to Level of all Elemental Sundering Skills", + ["type"] = "explicit", + }, + [1774] = { + ["id"] = "explicit.stat_4240116297", + ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Damage", + ["type"] = "explicit", + }, + [1775] = { + ["id"] = "explicit.stat_448592698|198", + ["text"] = "+# to Level of all Trail of Caltrops Skills", + ["type"] = "explicit", + }, + [1776] = { + ["id"] = "explicit.stat_2840930496", + ["text"] = "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", + ["type"] = "explicit", + }, + [1777] = { + ["id"] = "explicit.stat_2250681686", + ["text"] = "Grenade Skills have +# Cooldown Use", + ["type"] = "explicit", + }, + [1778] = { + ["id"] = "explicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "explicit", + }, + [1779] = { + ["id"] = "explicit.stat_2422708892|49547", + ["text"] = "Passives in Radius of Scarred Faith can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1780] = { + ["id"] = "explicit.stat_1099200124", + ["text"] = "Gain a Power Charge every Second if you haven't lost Power Charges Recently", + ["type"] = "explicit", + }, + [1781] = { + ["id"] = "explicit.stat_448592698|209", + ["text"] = "+# to Level of all Toxic Domain Skills", + ["type"] = "explicit", + }, + [1782] = { + ["id"] = "explicit.stat_3076483222|61382", + ["text"] = "Sacrifice up to 3 Divine Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [1783] = { + ["id"] = "explicit.stat_2422708892|49363", + ["text"] = "Passives in Radius of Wildsurge Incantation can be Allocatedwithout being connected to your tree", + ["type"] = "explicit", + }, + [1784] = { + ["id"] = "explicit.stat_448592698|194", + ["text"] = "+# to Level of all Spear of Solaris Skills", + ["type"] = "explicit", + }, + [1785] = { + ["id"] = "explicit.stat_1028592286", + ["text"] = "#% chance to Chain an additional time", + ["type"] = "explicit", + }, + [1786] = { + ["id"] = "explicit.stat_448592698|184", + ["text"] = "+# to Level of all Explosive Spear Skills", + ["type"] = "explicit", + }, + [1787] = { + ["id"] = "explicit.stat_1058934731", + ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", + ["type"] = "explicit", + }, + [1788] = { + ["id"] = "explicit.stat_1382805233", + ["text"] = "#% increased Deflection Rating while moving", + ["type"] = "explicit", + }, + [1789] = { + ["id"] = "explicit.stat_287294012", + ["text"] = "# to # Fire Thorns damage per 100 maximum Life", + ["type"] = "explicit", + }, + [1790] = { + ["id"] = "explicit.stat_2039822488", + ["text"] = "#% to Maximum Quality", + ["type"] = "explicit", + }, + [1791] = { + ["id"] = "explicit.stat_4225700219", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", + ["type"] = "explicit", + }, + [1792] = { + ["id"] = "explicit.stat_3038857426", + ["text"] = "Conquered Small Passive Skills also grant #% increased Spell damage", + ["type"] = "explicit", + }, + [1793] = { + ["id"] = "explicit.stat_448592698|216", + ["text"] = "+# to Level of all Elemental Weakness Skills", + ["type"] = "explicit", + }, + [1794] = { + ["id"] = "explicit.stat_1675120891", + ["text"] = "Chance to Deflect is Lucky while on Low Life", + ["type"] = "explicit", + }, + [1795] = { + ["id"] = "explicit.stat_448592698|215", + ["text"] = "+# to Level of all Cast on Elemental Ailment Skills", + ["type"] = "explicit", + }, + [1796] = { + ["id"] = "explicit.stat_2879725899", + ["text"] = "#% increased Attack Damage while Surrounded", + ["type"] = "explicit", + }, + [1797] = { + ["id"] = "explicit.stat_448592698|210", + ["text"] = "+# to Level of all Ice-Tipped Arrows Skills", + ["type"] = "explicit", + }, + [1798] = { + ["id"] = "explicit.stat_1045789614", + ["text"] = "#% increased Critical Hit Chance against Marked Enemies", + ["type"] = "explicit", + }, + [1799] = { + ["id"] = "explicit.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + [1800] = { + ["id"] = "explicit.stat_173471035", + ["text"] = "Meta Skills gain #% increased Energy while on Full Mana", + ["type"] = "explicit", + }, + [1801] = { + ["id"] = "explicit.stat_448592698|218", + ["text"] = "+# to Level of all Tornado Skills", + ["type"] = "explicit", + }, + [1802] = { + ["id"] = "explicit.stat_448592698|177", + ["text"] = "+# to Level of all Disengage Skills", + ["type"] = "explicit", + }, + [1803] = { + ["id"] = "explicit.stat_346374719", + ["text"] = "Recover #% of maximum Mana when you consume a Power Charge", + ["type"] = "explicit", + }, + [1804] = { + ["id"] = "explicit.stat_359357545", + ["text"] = "Enemies Hindered by you take #% increased Physical Damage", + ["type"] = "explicit", + }, + [1805] = { + ["id"] = "explicit.stat_448592698|212", + ["text"] = "+# to Level of all Mortar Cannon Skills", + ["type"] = "explicit", + }, + [1806] = { + ["id"] = "explicit.stat_2710292678", + ["text"] = "#% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", + ["type"] = "explicit", + }, + [1807] = { + ["id"] = "explicit.stat_3191479793", + ["text"] = "Offering Skills have #% increased Buff effect", + ["type"] = "explicit", + }, + [1808] = { + ["id"] = "explicit.stat_3302775221", + ["text"] = "+# maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", + ["type"] = "explicit", + }, + [1809] = { + ["id"] = "explicit.stat_448592698|179", + ["text"] = "+# to Level of all Whirling Slash Skills", + ["type"] = "explicit", + }, + [1810] = { + ["id"] = "explicit.stat_448592698|192", + ["text"] = "+# to Level of all Bloodhound's Mark Skills", + ["type"] = "explicit", + }, + [1811] = { + ["id"] = "explicit.stat_448592698|185", + ["text"] = "+# to Level of all Thunderous Leap Skills", + ["type"] = "explicit", + }, + [1812] = { + ["id"] = "explicit.stat_448592698|189", + ["text"] = "+# to Level of all Fangs of Frost Skills", + ["type"] = "explicit", + }, + [1813] = { + ["id"] = "explicit.stat_3566150527", + ["text"] = "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", + ["type"] = "explicit", + }, + [1814] = { + ["id"] = "explicit.stat_448592698|207", + ["text"] = "+# to Level of all Forge Hammer Skills", + ["type"] = "explicit", + }, + [1815] = { + ["id"] = "explicit.stat_448592698|205", + ["text"] = "+# to Level of all Iron Ward Skills", + ["type"] = "explicit", + }, + [1816] = { + ["id"] = "explicit.stat_2723294374", + ["text"] = "Attacks have added Physical damage equal to #% of maximum Life", + ["type"] = "explicit", + }, + [1817] = { + ["id"] = "explicit.stat_448592698|180", + ["text"] = "+# to Level of all Spearfield Skills", + ["type"] = "explicit", + }, + [1818] = { + ["id"] = "explicit.stat_4277795662", + ["text"] = "#% to Cold and Lightning Resistances", + ["type"] = "explicit", + }, + [1819] = { + ["id"] = "explicit.stat_4257790560", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", + ["type"] = "explicit", + }, + [1820] = { + ["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", + }, + [1821] = { + ["id"] = "explicit.stat_3143918757", + ["text"] = "#% increased Glory generation", + ["type"] = "explicit", + }, + [1822] = { + ["id"] = "explicit.stat_448592698|208", + ["text"] = "+# to Level of all Ancestral Cry Skills", + ["type"] = "explicit", + }, + [1823] = { + ["id"] = "explicit.stat_448592698|200", + ["text"] = "+# to Level of all Summon Spectre Skills", + ["type"] = "explicit", + }, + [1824] = { + ["id"] = "explicit.stat_3839676903", + ["text"] = "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", + ["type"] = "explicit", + }, + [1825] = { + ["id"] = "explicit.stat_3024873336", + ["text"] = "Skills have #% chance to not remove Elemental Infusions but still count as consuming them", + ["type"] = "explicit", + }, + [1826] = { + ["id"] = "explicit.stat_70760090", + ["text"] = "#% of Physical damage dealt by your Hits causes Blood Loss", + ["type"] = "explicit", + }, + [1827] = { + ["id"] = "explicit.stat_23669307", + ["text"] = "#% increased Critical Damage Bonus if you've consumed a Power Charge Recently", + ["type"] = "explicit", + }, + [1828] = { + ["id"] = "explicit.stat_448592698|238", + ["text"] = "+# to Level of all Briarpatch Skills", + ["type"] = "explicit", + }, + [1829] = { + ["id"] = "explicit.stat_448592698|224", + ["text"] = "+# to Level of all Furious Slam Skills", + ["type"] = "explicit", + }, + [1830] = { + ["id"] = "explicit.stat_448592698|244", + ["text"] = "+# to Level of all Living Bomb Skills", + ["type"] = "explicit", + }, + [1831] = { + ["id"] = "explicit.stat_448592698|176", + ["text"] = "+# to Level of all Rapid Assault Skills", + ["type"] = "explicit", + }, + [1832] = { + ["id"] = "explicit.stat_2915988346", + ["text"] = "#% to Fire and Cold Resistances", + ["type"] = "explicit", + }, + [1833] = { + ["id"] = "explicit.stat_448592698|191", + ["text"] = "+# to Level of all Rake Skills", + ["type"] = "explicit", + }, + [1834] = { + ["id"] = "explicit.stat_2135541924", + ["text"] = "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", + ["type"] = "explicit", + }, + [1835] = { + ["id"] = "explicit.stat_85367160", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", + ["type"] = "explicit", + }, + [1836] = { + ["id"] = "explicit.stat_3694078435", + ["text"] = "You take #% of damage from Blocked Hits with a raised Shield", + ["type"] = "explicit", + }, + [1837] = { + ["id"] = "explicit.stat_8816597", + ["text"] = "Conquered Small Passive Skills also grant #% increased Attack damage", + ["type"] = "explicit", + }, + [1838] = { + ["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", + }, + [1839] = { + ["id"] = "explicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", + ["type"] = "explicit", + }, + [1840] = { + ["id"] = "explicit.stat_3831171903|12", + ["text"] = "Necromantic Talisman", + ["type"] = "explicit", + }, + [1841] = { + ["id"] = "explicit.stat_448592698|183", + ["text"] = "+# to Level of all Twister Skills", + ["type"] = "explicit", + }, + [1842] = { + ["id"] = "explicit.stat_448592698|242", + ["text"] = "+# to Level of all Barkskin Skills", + ["type"] = "explicit", + }, + [1843] = { + ["id"] = "explicit.stat_448592698|214", + ["text"] = "+# to Level of all Siphon Elements Skills", + ["type"] = "explicit", + }, + [1844] = { + ["id"] = "explicit.stat_448592698|229", + ["text"] = "+# to Level of all Flame Breath Skills", + ["type"] = "explicit", + }, + [1845] = { + ["id"] = "explicit.stat_448592698|221", + ["text"] = "+# to Level of all Pounce Skills", + ["type"] = "explicit", + }, + [1846] = { + ["id"] = "explicit.stat_448592698|241", + ["text"] = "+# to Level of all Walking Calamity Skills", + ["type"] = "explicit", + }, + [1847] = { + ["id"] = "explicit.stat_1829333149", + ["text"] = "Conquered Small Passive Skills also grant #% increased Physical damage", + ["type"] = "explicit", + }, + [1848] = { + ["id"] = "explicit.stat_3593401321", + ["text"] = "Hits have #% chance to treat Enemy Monster Elemental Resistance values as inverted", + ["type"] = "explicit", + }, + [1849] = { + ["id"] = "explicit.stat_448592698|181", + ["text"] = "+# to Level of all Lightning Spear Skills", + ["type"] = "explicit", + }, + [1850] = { + ["id"] = "explicit.stat_2601021356", + ["text"] = "Conquered Small Passive Skills also grant #% increased Chaos damage", + ["type"] = "explicit", + }, + [1851] = { + ["id"] = "explicit.stat_3537994888", + ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", + ["type"] = "explicit", + }, + [1852] = { + ["id"] = "explicit.stat_448592698|223", + ["text"] = "+# to Level of all Thunderstorm Skills", + ["type"] = "explicit", + }, + [1853] = { + ["id"] = "explicit.stat_1338406168", + ["text"] = "Maximum amount of Guard is based on maximum Energy Shield instead", + ["type"] = "explicit", + }, + [1854] = { + ["id"] = "explicit.stat_448592698|186", + ["text"] = "+# to Level of all Herald of Blood Skills", + ["type"] = "explicit", + }, + [1855] = { + ["id"] = "explicit.stat_467146530", + ["text"] = "Skills Cost Divinity instead of Mana or Life", + ["type"] = "explicit", + }, + [1856] = { + ["id"] = "explicit.stat_448592698|213", + ["text"] = "+# to Level of all Mirage Archer Skills", + ["type"] = "explicit", + }, + [1857] = { + ["id"] = "explicit.stat_448592698|201", + ["text"] = "+# to Level of all Tamed Companion Skills", + ["type"] = "explicit", + }, + [1858] = { + ["id"] = "explicit.stat_2189073790", + ["text"] = "Projectiles have #% chance to Fork if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", + }, + [1859] = { + ["id"] = "explicit.stat_448592698|206", + ["text"] = "+# to Level of all Fortifying Cry Skills", + ["type"] = "explicit", + }, + [1860] = { + ["id"] = "explicit.stat_3831171903|30", + ["text"] = "Scarred Faith", + ["type"] = "explicit", + }, + [1861] = { + ["id"] = "explicit.stat_4100842845", + ["text"] = "Mana Recovery from Flasks can Overflow maximum Mana during Effect", + ["type"] = "explicit", + }, + [1862] = { + ["id"] = "explicit.stat_448592698|240", + ["text"] = "+# to Level of all Savage Fury Skills", + ["type"] = "explicit", + }, + [1863] = { + ["id"] = "explicit.stat_3831171903|16", + ["text"] = "Primal Hunger", + ["type"] = "explicit", + }, + [1864] = { + ["id"] = "explicit.stat_891466814", + ["text"] = "Create a Fragment of Divinity in your Presence every 4 seconds", + ["type"] = "explicit", + }, + [1865] = { + ["id"] = "explicit.stat_3831171903|29", + ["text"] = "Ritual Cadence", + ["type"] = "explicit", + }, + [1866] = { + ["id"] = "explicit.stat_3831171903|19", + ["text"] = "Oasis", + ["type"] = "explicit", + }, + [1867] = { + ["id"] = "explicit.stat_3831171903|15", + ["text"] = "Eternal Youth", + ["type"] = "explicit", + }, + [1868] = { + ["id"] = "explicit.stat_1689748350", + ["text"] = "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", + ["type"] = "explicit", + }, + [1869] = { + ["id"] = "explicit.stat_2780670304", + ["text"] = "Conquered Small Passive Skills also grant #% increased Energy Shield", + ["type"] = "explicit", + }, + [1870] = { + ["id"] = "explicit.stat_3831171903|24", + ["text"] = "Bulwark", + ["type"] = "explicit", + }, + [1871] = { + ["id"] = "explicit.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", + ["type"] = "explicit", + }, + [1872] = { + ["id"] = "explicit.stat_4147510958", + ["text"] = "Sealed Skills have # to maximum Seals", + ["type"] = "explicit", + }, + [1873] = { + ["id"] = "explicit.stat_3831171903|22", + ["text"] = "Glancing Blows", + ["type"] = "explicit", + }, + [1874] = { + ["id"] = "explicit.stat_3831171903|2", + ["text"] = "Giant's Blood", + ["type"] = "explicit", + }, + [1875] = { + ["id"] = "explicit.stat_1938221597", + ["text"] = "Conquered Attribute Passive Skills also grant # to Dexterity", + ["type"] = "explicit", + }, + [1876] = { + ["id"] = "explicit.stat_2954116742|50562", + ["text"] = "Allocates Barbaric Strength", + ["type"] = "explicit", + }, + [1877] = { + ["id"] = "explicit.stat_3874491706", + ["text"] = "All Mage's Legacies have #% increased effect per duplicate Mage's Legacy you have", + ["type"] = "explicit", + }, + [1878] = { + ["id"] = "explicit.stat_3831171903|4", + ["text"] = "Avatar of Fire", + ["type"] = "explicit", + }, + [1879] = { + ["id"] = "explicit.stat_3343033032", + ["text"] = "Conquered Small Passive Skills also grant Minions deal #% increased damage", + ["type"] = "explicit", + }, + [1880] = { + ["id"] = "explicit.stat_3831171903|31", + ["text"] = "Lord of the Wilds", + ["type"] = "explicit", + }, + [1881] = { + ["id"] = "explicit.stat_1034611536", + ["text"] = "Notable Passive Skills in Radius also grant Charms gain # charge per Second", + ["type"] = "explicit", + }, + [1882] = { + ["id"] = "explicit.stat_2116424886", + ["text"] = "#% increased Life Regeneration Rate while moving", + ["type"] = "explicit", + }, + [1883] = { + ["id"] = "explicit.stat_3831171903|11", + ["text"] = "Whispers of Doom", + ["type"] = "explicit", + }, + [1884] = { + ["id"] = "explicit.stat_4264952559", + ["text"] = "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", + ["type"] = "explicit", + }, + [1885] = { + ["id"] = "explicit.stat_3831171903|32", + ["text"] = "Wildsurge Incantation", + ["type"] = "explicit", + }, + [1886] = { + ["id"] = "explicit.stat_448592698|193", + ["text"] = "+# to Level of all Tamed Companion Skills", + ["type"] = "explicit", + }, + [1887] = { + ["id"] = "explicit.stat_2558253923", + ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", + ["type"] = "explicit", + }, + [1888] = { + ["id"] = "explicit.stat_448592698|239", + ["text"] = "+# to Level of all Eternal Rage Skills", + ["type"] = "explicit", + }, + [1889] = { + ["id"] = "explicit.stat_3831171903|18", + ["text"] = "Heartstopper", + ["type"] = "explicit", + }, + [1890] = { + ["id"] = "explicit.stat_740421489", + ["text"] = "Ice Crystals have #% increased maximum Life per 5% Cold Resistance you have", + ["type"] = "explicit", + }, + [1891] = { + ["id"] = "explicit.stat_2839036860", + ["text"] = "#% increased Endurance, Frenzy and Power Charge Duration", + ["type"] = "explicit", + }, + [1892] = { + ["id"] = "explicit.stat_1138742368", + ["text"] = "Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value", + ["type"] = "explicit", + }, + [1893] = { + ["id"] = "explicit.stat_3470876581", + ["text"] = "# to Evasion Rating while on Low Life", + ["type"] = "explicit", + }, + [1894] = { + ["id"] = "explicit.stat_3831171903|13", + ["text"] = "Conduit", + ["type"] = "explicit", + }, + [1895] = { + ["id"] = "explicit.stat_3831171903|1", + ["text"] = "Ancestral Bond", + ["type"] = "explicit", + }, + [1896] = { + ["id"] = "explicit.stat_3831171903|6", + ["text"] = "Resolute Technique", + ["type"] = "explicit", + }, + [1897] = { + ["id"] = "explicit.stat_3602667353", + ["text"] = "#% chance to inflict Exposure on Hit", + ["type"] = "explicit", + }, + [1898] = { + ["id"] = "explicit.stat_3831171903|27", + ["text"] = "Hollow Palm Technique", + ["type"] = "explicit", + }, + [1899] = { + ["id"] = "explicit.stat_448592698|219", + ["text"] = "+# to Level of all Volcano Skills", + ["type"] = "explicit", + }, + [1900] = { + ["id"] = "explicit.stat_3831171903|25", + ["text"] = "Trusted Kinship", + ["type"] = "explicit", + }, + [1901] = { + ["id"] = "explicit.stat_2653231923", + ["text"] = "#% increased Mana Cost Efficiency of Spells", + ["type"] = "explicit", + }, + [1902] = { + ["id"] = "explicit.stat_448592698|228", + ["text"] = "+# to Level of all Oil Barrage Skills", + ["type"] = "explicit", + }, + [1903] = { + ["id"] = "explicit.stat_3939216292", + ["text"] = "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", + ["type"] = "explicit", + }, + [1904] = { + ["id"] = "explicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", + ["type"] = "explicit", + }, + [1905] = { + ["id"] = "explicit.stat_3831171903|33", + ["text"] = "Zealot's Oath", + ["type"] = "explicit", + }, + [1906] = { + ["id"] = "explicit.stat_264262054|5", + ["text"] = "Legacy of Gold", + ["type"] = "explicit", + }, + [1907] = { + ["id"] = "explicit.stat_3831171903|23", + ["text"] = "Elemental Equilibrium", + ["type"] = "explicit", + }, + [1908] = { + ["id"] = "explicit.stat_3831171903|8", + ["text"] = "Chaos Inoculation", + ["type"] = "explicit", + }, + [1909] = { + ["id"] = "explicit.stat_448592698|230", + ["text"] = "+# to Level of all Entangle Skills", + ["type"] = "explicit", + }, + [1910] = { + ["id"] = "explicit.stat_1586136369", + ["text"] = "#% increased Evasion Rating while Sprinting", + ["type"] = "explicit", + }, + [1911] = { + ["id"] = "explicit.stat_3831171903|28", + ["text"] = "Blackflame Covenant", + ["type"] = "explicit", + }, + [1912] = { + ["id"] = "explicit.stat_2954116742|30132", + ["text"] = "Allocates Wrapped Quiver", + ["type"] = "explicit", + }, + [1913] = { + ["id"] = "explicit.stat_2954116742|27303", + ["text"] = "Allocates Vulgar Methods", + ["type"] = "explicit", + }, + [1914] = { + ["id"] = "explicit.stat_2954116742|7809", + ["text"] = "Allocates Wild Storm", + ["type"] = "explicit", + }, + [1915] = { + ["id"] = "explicit.stat_448592698|226", + ["text"] = "+# to Level of all Spell Totem Skills", + ["type"] = "explicit", + }, + [1916] = { + ["id"] = "explicit.stat_2954116742|57388", + ["text"] = "Allocates Overwhelming Strike", + ["type"] = "explicit", + }, + [1917] = { + ["id"] = "explicit.stat_3399401168", + ["text"] = "#% to Fire Spell Critical Hit Chance", + ["type"] = "explicit", + }, + [1918] = { + ["id"] = "explicit.stat_448592698|211", + ["text"] = "+# to Level of all Frost Darts Skills", + ["type"] = "explicit", + }, + [1919] = { + ["id"] = "explicit.stat_448592698|236", + ["text"] = "+# to Level of all Lunar Blessing Skills", + ["type"] = "explicit", + }, + [1920] = { + ["id"] = "explicit.stat_448592698|231", + ["text"] = "+# to Level of all Fury of the Mountain Skills", + ["type"] = "explicit", + }, + [1921] = { + ["id"] = "explicit.stat_878697053", + ["text"] = "#% increased maximum Divinity", + ["type"] = "explicit", + }, + [1922] = { + ["id"] = "explicit.stat_1148433552", + ["text"] = "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", + ["type"] = "explicit", + }, + [1923] = { + ["id"] = "explicit.stat_448592698|227", + ["text"] = "+# to Level of all Wing Blast Skills", + ["type"] = "explicit", + }, + [1924] = { + ["id"] = "explicit.stat_4266776872", + ["text"] = "Glancing Blows", + ["type"] = "explicit", + }, + [1925] = { + ["id"] = "explicit.stat_448592698|225", + ["text"] = "+# to Level of all Ferocious Roar Skills", + ["type"] = "explicit", + }, + [1926] = { + ["id"] = "explicit.stat_448592698|217", + ["text"] = "+# to Level of all Rolling Magma Skills", + ["type"] = "explicit", + }, + [1927] = { + ["id"] = "explicit.stat_3831171903|26", + ["text"] = "Crimson Assault", + ["type"] = "explicit", + }, + [1928] = { + ["id"] = "explicit.stat_2954116742|38535", + ["text"] = "Allocates Stormcharged", + ["type"] = "explicit", + }, + [1929] = { + ["id"] = "explicit.stat_1245896889", + ["text"] = "Life Recovery from Flasks can Overflow Maximum Life", + ["type"] = "explicit", + }, + [1930] = { + ["id"] = "explicit.stat_448592698|237", + ["text"] = "+# to Level of all Arctic Howl Skills", + ["type"] = "explicit", + }, + [1931] = { + ["id"] = "explicit.stat_2954116742|26107", + ["text"] = "Allocates Kite Runner", + ["type"] = "explicit", + }, + [1932] = { + ["id"] = "explicit.stat_448592698|234", + ["text"] = "+# to Level of all Devour Skills", + ["type"] = "explicit", + }, + [1933] = { + ["id"] = "explicit.stat_2942439603", + ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", + ["type"] = "explicit", + }, + [1934] = { + ["id"] = "explicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "explicit", + }, + [1935] = { + ["id"] = "explicit.stat_2954116742|28975", + ["text"] = "Allocates Pure Power", + ["type"] = "explicit", + }, + [1936] = { + ["id"] = "explicit.stat_1818915622", + ["text"] = "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", + ["type"] = "explicit", + }, + [1937] = { + ["id"] = "explicit.stat_2488361432", + ["text"] = "#% increased Monster Cast Speed", + ["type"] = "explicit", + }, + [1938] = { + ["id"] = "explicit.stat_2306522833", + ["text"] = "#% increased Monster Movement Speed", + ["type"] = "explicit", + }, + [1939] = { + ["id"] = "explicit.stat_1913583994", + ["text"] = "#% increased Monster Attack Speed", + ["type"] = "explicit", + }, + [1940] = { + ["id"] = "explicit.stat_3198163869", + ["text"] = "Raven-Touched", + ["type"] = "explicit", + }, + [1941] = { + ["id"] = "explicit.stat_3831171903|10", + ["text"] = "Mind Over Matter", + ["type"] = "explicit", + }, + [1942] = { + ["id"] = "explicit.stat_1133965702", + ["text"] = "#% increased Gold found in this Area", + ["type"] = "explicit", + }, + [1943] = { + ["id"] = "explicit.stat_1133965702", + ["text"] = "#% increased Gold found in your Maps", + ["type"] = "explicit", + }, + [1944] = { + ["id"] = "explicit.stat_3831171903|5", + ["text"] = "Blood Magic", + ["type"] = "explicit", + }, + [1945] = { + ["id"] = "explicit.stat_3831171903|17", + ["text"] = "Dance With Death", + ["type"] = "explicit", + }, + [1946] = { + ["id"] = "explicit.stat_3831171903|14", + ["text"] = "Resonance", + ["type"] = "explicit", + }, + [1947] = { + ["id"] = "explicit.stat_504210122", + ["text"] = "#% chance to gain an additional random Charge when you gain a Charge", + ["type"] = "explicit", + }, + [1948] = { + ["id"] = "explicit.stat_264262054|9", + ["text"] = "Legacy of Ruby", + ["type"] = "explicit", + }, + [1949] = { + ["id"] = "explicit.stat_3831171903|21", + ["text"] = "Iron Reflexes", + ["type"] = "explicit", + }, + [1950] = { + ["id"] = "explicit.stat_448592698|243", + ["text"] = "+# to Level of all Feral Invocation Skills", + ["type"] = "explicit", + }, + [1951] = { + ["id"] = "explicit.stat_2896801635", + ["text"] = "Convert 100% of maximum Energy Shield to maximum Divinity", + ["type"] = "explicit", + }, + [1952] = { + ["id"] = "explicit.stat_2954116742|62230", + ["text"] = "Allocates Patient Barrier", + ["type"] = "explicit", + }, + [1953] = { + ["id"] = "explicit.stat_886088880", + ["text"] = "Your Heavy Stun buildup empties #% faster", + ["type"] = "explicit", + }, + [1954] = { + ["id"] = "explicit.stat_321970274", + ["text"] = "#% of Physical Damage taken as Lightning while your Shield is raised", + ["type"] = "explicit", + }, + [1955] = { + ["id"] = "explicit.stat_3831171903|20", + ["text"] = "Vaal Pact", + ["type"] = "explicit", + }, + [1956] = { + ["id"] = "explicit.stat_3910614548", + ["text"] = "#% increased Attack and Cast Speed if you've summoned a Totem Recently", + ["type"] = "explicit", + }, + [1957] = { + ["id"] = "explicit.stat_448592698|220", + ["text"] = "+# to Level of all Wolf Pack Skills", + ["type"] = "explicit", + }, + [1958] = { + ["id"] = "explicit.stat_448592698|235", + ["text"] = "+# to Level of all Thrashing Vines Skills", + ["type"] = "explicit", + }, + [1959] = { + ["id"] = "explicit.stat_264262054|14", + ["text"] = "Legacy of Topaz", + ["type"] = "explicit", + }, + [1960] = { + ["id"] = "explicit.stat_970480050", + ["text"] = "Conquered Small Passive Skills also grant #% increased Armour", + ["type"] = "explicit", + }, + [1961] = { + ["id"] = "explicit.stat_1283490138", + ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", + ["type"] = "explicit", + }, + [1962] = { + ["id"] = "explicit.stat_448592698|233", + ["text"] = "+# to Level of all Lunar Assault Skills", + ["type"] = "explicit", + }, + [1963] = { + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Runic Ward", + ["type"] = "explicit", + }, + [1964] = { + ["id"] = "explicit.stat_3831171903|7", + ["text"] = "Pain Attunement", + ["type"] = "explicit", + }, + [1965] = { + ["id"] = "explicit.stat_2954116742|34473", + ["text"] = "Allocates Spaghettification", + ["type"] = "explicit", + }, + [1966] = { + ["id"] = "explicit.stat_2954116742|55193", + ["text"] = "Allocates Subterfuge Mask", + ["type"] = "explicit", + }, + [1967] = { + ["id"] = "explicit.stat_2357996603", + ["text"] = "#% increased Totem Duration", + ["type"] = "explicit", + }, + [1968] = { + ["id"] = "explicit.stat_3831171903|9", + ["text"] = "Eldritch Battery", + ["type"] = "explicit", + }, + [1969] = { + ["id"] = "explicit.stat_264262054|12", + ["text"] = "Legacy of Stibnite", + ["type"] = "explicit", + }, + [1970] = { + ["id"] = "explicit.stat_2954116742|56776", + ["text"] = "Allocates Cooked", + ["type"] = "explicit", + }, + [1971] = { + ["id"] = "explicit.stat_2954116742|46197", + ["text"] = "Allocates Careful Assassin", + ["type"] = "explicit", + }, + [1972] = { + ["id"] = "explicit.stat_3831171903|3", + ["text"] = "Unwavering Stance", + ["type"] = "explicit", + }, + [1973] = { + ["id"] = "explicit.stat_468694293", + ["text"] = "Conquered Small Passive Skills also grant #% increased Evasion Rating", + ["type"] = "explicit", + }, + [1974] = { + ["id"] = "explicit.stat_2954116742|28044", + ["text"] = "Allocates Coming Calamity", + ["type"] = "explicit", + }, + [1975] = { + ["id"] = "explicit.stat_1486714289", + ["text"] = "Minions have #% chance to inflict Gruelling Madness on Hit", + ["type"] = "explicit", + }, + [1976] = { + ["id"] = "explicit.stat_264262054|1", + ["text"] = "Legacy of Amethyst", + ["type"] = "explicit", + }, + [1977] = { + ["id"] = "explicit.stat_2954116742|60034", + ["text"] = "Allocates Falcon Dive", + ["type"] = "explicit", + }, + [1978] = { + ["id"] = "explicit.stat_264262054|11", + ["text"] = "Legacy of Silver", + ["type"] = "explicit", + }, + [1979] = { + ["id"] = "explicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "explicit", + }, + [1980] = { + ["id"] = "explicit.stat_2954116742|56265", + ["text"] = "Allocates Throatseeker", + ["type"] = "explicit", + }, + [1981] = { + ["id"] = "explicit.stat_2954116742|17340", + ["text"] = "Allocates Adrenaline Rush", + ["type"] = "explicit", + }, + [1982] = { + ["id"] = "explicit.stat_3998863698", + ["text"] = "Monsters have #% increased Freeze Buildup", + ["type"] = "explicit", + }, + [1983] = { + ["id"] = "explicit.stat_953593695", + ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", + ["type"] = "explicit", + }, + [1984] = { + ["id"] = "explicit.stat_2508044078", + ["text"] = "Monsters inflict #% increased Flammability Magnitude", + ["type"] = "explicit", + }, + [1985] = { + ["id"] = "explicit.stat_3190121041", + ["text"] = "#% of Volatility Physical Damage Taken as Cold Damage", + ["type"] = "explicit", + }, + [1986] = { + ["id"] = "explicit.stat_2475870935", + ["text"] = "Conquered Small Passive Skills also grant #% increased Stun Threshold", + ["type"] = "explicit", + }, + [1987] = { + ["id"] = "explicit.stat_264262054|3", + ["text"] = "Legacy of Bismuth", + ["type"] = "explicit", + }, + [1988] = { + ["id"] = "explicit.stat_2954116742|58016", + ["text"] = "Allocates All Natural", + ["type"] = "explicit", + }, + [1989] = { + ["id"] = "explicit.stat_2260055669", + ["text"] = "Freezes Enemies that are on Full Life", + ["type"] = "explicit", + }, + [1990] = { + ["id"] = "explicit.stat_448592698|222", + ["text"] = "+# to Level of all Rampage Skills", + ["type"] = "explicit", + }, + [1991] = { + ["id"] = "explicit.stat_4010198893", + ["text"] = "Gain Finality for # seconds per Combo expended when using Skills", + ["type"] = "explicit", + }, + [1992] = { + ["id"] = "explicit.stat_2954116742|1546", + ["text"] = "Allocates Spiral into Depression", + ["type"] = "explicit", + }, + [1993] = { + ["id"] = "explicit.stat_2954116742|116", + ["text"] = "Allocates Insightfulness", + ["type"] = "explicit", + }, + [1994] = { + ["id"] = "explicit.stat_2148576938", + ["text"] = "Gain Overencumbrance for 4 seconds when you Dodge Roll", + ["type"] = "explicit", + }, + [1995] = { + ["id"] = "explicit.stat_2954116742|39881", + ["text"] = "Allocates Staggering Palm", + ["type"] = "explicit", + }, + [1996] = { + ["id"] = "explicit.stat_2954116742|31172", + ["text"] = "Allocates Falcon Technique", + ["type"] = "explicit", + }, + [1997] = { + ["id"] = "explicit.stat_2954116742|40990", + ["text"] = "Allocates Exposed to the Storm", + ["type"] = "explicit", + }, + [1998] = { + ["id"] = "explicit.stat_2954116742|44566", + ["text"] = "Allocates Lightning Rod", + ["type"] = "explicit", + }, + [1999] = { + ["id"] = "explicit.stat_1485480327", + ["text"] = "Minions have #% increased Immobilisation buildup", + ["type"] = "explicit", + }, + [2000] = { + ["id"] = "explicit.stat_3076483222|30874", + ["text"] = "Sacrifice up to 10 Greater Regal Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2001] = { + ["id"] = "explicit.stat_1217651243", + ["text"] = "Breaches expand to at least # metre in radiusBreaches remain open while there are alive Breach Monsters", + ["type"] = "explicit", + }, + [2002] = { + ["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", + }, + [2003] = { + ["id"] = "explicit.stat_2954116742|36085", + ["text"] = "Allocates Serrated Edges", + ["type"] = "explicit", + }, + [2004] = { + ["id"] = "explicit.stat_448592698|232", + ["text"] = "+# to Level of all Cross Slash Skills", + ["type"] = "explicit", + }, + [2005] = { + ["id"] = "explicit.stat_2639983772", + ["text"] = "#% increased Totem Damage per Curse on you", + ["type"] = "explicit", + }, + [2006] = { + ["id"] = "explicit.stat_2954116742|52392", + ["text"] = "Allocates Singular Purpose", + ["type"] = "explicit", + }, + [2007] = { + ["id"] = "explicit.stat_2954116742|28267", + ["text"] = "Allocates Desensitisation", + ["type"] = "explicit", + }, + [2008] = { + ["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", + }, + [2009] = { + ["id"] = "explicit.stat_2954116742|32353", + ["text"] = "Allocates Swift Claw", + ["type"] = "explicit", + }, + [2010] = { + ["id"] = "explicit.stat_1797815732", + ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", + ["type"] = "explicit", + }, + [2011] = { + ["id"] = "explicit.stat_805298720", + ["text"] = "# to Level of all Curse Skills", + ["type"] = "explicit", + }, + [2012] = { + ["id"] = "explicit.stat_2954116742|59208", + ["text"] = "Allocates Frantic Fighter", + ["type"] = "explicit", + }, + [2013] = { + ["id"] = "explicit.stat_2954116742|44756", + ["text"] = "Allocates Marked Agility", + ["type"] = "explicit", + }, + [2014] = { + ["id"] = "explicit.stat_264262054|10", + ["text"] = "Legacy of Sapphire", + ["type"] = "explicit", + }, + [2015] = { + ["id"] = "explicit.stat_2462683918", + ["text"] = "#% increased Attack Damage while not on Low Mana", + ["type"] = "explicit", + }, + [2016] = { + ["id"] = "explicit.stat_2954116742|57204", + ["text"] = "Allocates Critical Exploit", + ["type"] = "explicit", + }, + [2017] = { + ["id"] = "explicit.stat_2954116742|13724", + ["text"] = "Allocates Deadly Force", + ["type"] = "explicit", + }, + [2018] = { + ["id"] = "explicit.stat_2954116742|59303", + ["text"] = "Allocates Lucky Rabbit Foot", + ["type"] = "explicit", + }, + [2019] = { + ["id"] = "explicit.stat_2954116742|28963", + ["text"] = "Allocates Chakra of Rhythm", + ["type"] = "explicit", + }, + [2020] = { + ["id"] = "explicit.stat_2954116742|45013", + ["text"] = "Allocates Finishing Blows", + ["type"] = "explicit", + }, + [2021] = { + ["id"] = "explicit.stat_2954116742|22864", + ["text"] = "Allocates Tainted Strike", + ["type"] = "explicit", + }, + [2022] = { + ["id"] = "explicit.stat_2954116742|16618", + ["text"] = "Allocates Jack of all Trades", + ["type"] = "explicit", + }, + [2023] = { + ["id"] = "explicit.stat_2954116742|6229", + ["text"] = "Allocates Push the Advantage", + ["type"] = "explicit", + }, + [2024] = { + ["id"] = "explicit.stat_2954116742|57190", + ["text"] = "Allocates Doomsayer", + ["type"] = "explicit", + }, + [2025] = { + ["id"] = "explicit.stat_2954116742|38053", + ["text"] = "Allocates Deafening Cries", + ["type"] = "explicit", + }, + [2026] = { + ["id"] = "explicit.stat_2954116742|48006", + ["text"] = "Allocates Devastation", + ["type"] = "explicit", + }, + [2027] = { + ["id"] = "explicit.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", + ["type"] = "explicit", + }, + [2028] = { + ["id"] = "explicit.stat_3481736410", + ["text"] = "#% increased Area of Effect if you've Killed Recently", + ["type"] = "explicit", + }, + [2029] = { + ["id"] = "explicit.stat_2954116742|9020", + ["text"] = "Allocates Giantslayer", + ["type"] = "explicit", + }, + [2030] = { + ["id"] = "explicit.stat_3076483222|42106", + ["text"] = "Sacrifice up to 5 Greater Chaos Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2031] = { + ["id"] = "explicit.stat_2954116742|58183", + ["text"] = "Allocates Blood Tearing", + ["type"] = "explicit", + }, + [2032] = { + ["id"] = "explicit.stat_264262054|2", + ["text"] = "Legacy of Basalt", + ["type"] = "explicit", + }, + [2033] = { + ["id"] = "explicit.stat_2954116742|42177", + ["text"] = "Allocates Blurred Motion", + ["type"] = "explicit", + }, + [2034] = { + ["id"] = "explicit.stat_2954116742|24655", + ["text"] = "Allocates Breath of Fire", + ["type"] = "explicit", + }, + [2035] = { + ["id"] = "explicit.stat_2954116742|21380", + ["text"] = "Allocates Preemptive Strike", + ["type"] = "explicit", + }, + [2036] = { + ["id"] = "explicit.stat_2954116742|16816", + ["text"] = "Allocates Pinpoint Shot", + ["type"] = "explicit", + }, + [2037] = { + ["id"] = "explicit.stat_2954116742|44330", + ["text"] = "Allocates Coated Arms", + ["type"] = "explicit", + }, + [2038] = { + ["id"] = "explicit.stat_2103621252", + ["text"] = "Eat a Soul when you Hit a Unique Enemy, no more than once every second", + ["type"] = "explicit", + }, + [2039] = { + ["id"] = "explicit.stat_2954116742|3985", + ["text"] = "Allocates Forces of Nature", + ["type"] = "explicit", + }, + [2040] = { + ["id"] = "explicit.stat_2954116742|13407", + ["text"] = "Allocates Heartbreaking", + ["type"] = "explicit", + }, + [2041] = { + ["id"] = "explicit.stat_1394184789", + ["text"] = "Remove Bleeding when you use a Life Flask", + ["type"] = "explicit", + }, + [2042] = { + ["id"] = "explicit.stat_2954116742|17854", + ["text"] = "Allocates Escape Velocity", + ["type"] = "explicit", + }, + [2043] = { + ["id"] = "explicit.stat_2954116742|19955", + ["text"] = "Allocates Endless Blizzard", + ["type"] = "explicit", + }, + [2044] = { + ["id"] = "explicit.stat_2954116742|30408", + ["text"] = "Allocates Efficient Contraptions", + ["type"] = "explicit", + }, + [2045] = { + ["id"] = "explicit.stat_2954116742|2394", + ["text"] = "Allocates Blade Flurry", + ["type"] = "explicit", + }, + [2046] = { + ["id"] = "explicit.stat_2954116742|43082", + ["text"] = "Allocates Acceleration", + ["type"] = "explicit", + }, + [2047] = { + ["id"] = "explicit.stat_2954116742|55149", + ["text"] = "Allocates Pure Chaos", + ["type"] = "explicit", + }, + [2048] = { + ["id"] = "explicit.stat_2954116742|24630", + ["text"] = "Allocates Fulmination", + ["type"] = "explicit", + }, + [2049] = { + ["id"] = "explicit.stat_2954116742|54814", + ["text"] = "Allocates Profane Commander", + ["type"] = "explicit", + }, + [2050] = { + ["id"] = "explicit.stat_4007938693", + ["text"] = "Triggers Level # Manifest Dancing Dervishes on Rampage", + ["type"] = "explicit", + }, + [2051] = { + ["id"] = "explicit.stat_3076483222|8084", + ["text"] = "Sacrifice up to 10 Greater Exalted Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2052] = { + ["id"] = "explicit.stat_2954116742|60138", + ["text"] = "Allocates Stylebender", + ["type"] = "explicit", + }, + [2053] = { + ["id"] = "explicit.stat_2954116742|60404", + ["text"] = "Allocates Perfect Opportunity", + ["type"] = "explicit", + }, + [2054] = { + ["id"] = "explicit.stat_2954116742|25513", + ["text"] = "Allocates Overwhelm", + ["type"] = "explicit", + }, + [2055] = { + ["id"] = "explicit.stat_2954116742|4985", + ["text"] = "Allocates Flip the Script", + ["type"] = "explicit", + }, + [2056] = { + ["id"] = "explicit.stat_3076483222|51981", + ["text"] = "Sacrifice up to 3 Perfect Regal Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2057] = { + ["id"] = "explicit.stat_2954116742|51707", + ["text"] = "Allocates Enhanced Reflexes", + ["type"] = "explicit", + }, + [2058] = { + ["id"] = "explicit.stat_2954116742|15083", + ["text"] = "Allocates Power Conduction", + ["type"] = "explicit", + }, + [2059] = { + ["id"] = "explicit.stat_2954116742|61338", + ["text"] = "Allocates Breath of Lightning", + ["type"] = "explicit", + }, + [2060] = { + ["id"] = "explicit.stat_2954116742|19337", + ["text"] = "Allocates Precision Salvo", + ["type"] = "explicit", + }, + [2061] = { + ["id"] = "explicit.stat_2954116742|17548", + ["text"] = "Allocates Moment of Truth", + ["type"] = "explicit", + }, + [2062] = { + ["id"] = "explicit.stat_1949833742", + ["text"] = "#% increased Daze Buildup", + ["type"] = "explicit", + }, + [2063] = { + ["id"] = "explicit.stat_2954116742|23939", + ["text"] = "Allocates Glazed Flesh", + ["type"] = "explicit", + }, + [2064] = { + ["id"] = "explicit.stat_2954116742|19715", + ["text"] = "Allocates Cremation", + ["type"] = "explicit", + }, + [2065] = { + ["id"] = "explicit.stat_2954116742|20677", + ["text"] = "Allocates For the Jugular", + ["type"] = "explicit", + }, + [2066] = { + ["id"] = "explicit.stat_2954116742|2138", + ["text"] = "Allocates Spiral into Insanity", + ["type"] = "explicit", + }, + [2067] = { + ["id"] = "explicit.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", + ["type"] = "explicit", + }, + [2068] = { + ["id"] = "explicit.stat_398335579", + ["text"] = "Cannot be used while Manifested", + ["type"] = "explicit", + }, + [2069] = { + ["id"] = "explicit.stat_2954116742|10398", + ["text"] = "Allocates Sudden Escalation", + ["type"] = "explicit", + }, + [2070] = { + ["id"] = "explicit.stat_2954116742|65265", + ["text"] = "Allocates Swift Interruption", + ["type"] = "explicit", + }, + [2071] = { + ["id"] = "explicit.stat_2954116742|50062", + ["text"] = "Allocates Barrier of Venarius", + ["type"] = "explicit", + }, + [2072] = { + ["id"] = "explicit.stat_2954116742|29514", + ["text"] = "Allocates Cluster Bombs", + ["type"] = "explicit", + }, + [2073] = { + ["id"] = "explicit.stat_2954116742|42077", + ["text"] = "Allocates Essence Infusion", + ["type"] = "explicit", + }, + [2074] = { + ["id"] = "explicit.stat_2954116742|7777", + ["text"] = "Allocates Breaking Point", + ["type"] = "explicit", + }, + [2075] = { + ["id"] = "explicit.stat_2954116742|5728", + ["text"] = "Allocates Ancient Aegis", + ["type"] = "explicit", + }, + [2076] = { + ["id"] = "explicit.stat_120969026", + ["text"] = "#% increased Magnitude of Poison you inflict while Poisoned", + ["type"] = "explicit", + }, + [2077] = { + ["id"] = "explicit.stat_3518449420", + ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", + ["type"] = "explicit", + }, + [2078] = { + ["id"] = "explicit.stat_2954116742|62310", + ["text"] = "Allocates Incendiary", + ["type"] = "explicit", + }, + [2079] = { + ["id"] = "explicit.stat_2954116742|51867", + ["text"] = "Allocates Finality", + ["type"] = "explicit", + }, + [2080] = { + ["id"] = "explicit.stat_2954116742|32507", + ["text"] = "Allocates Cut to the Bone", + ["type"] = "explicit", + }, + [2081] = { + ["id"] = "explicit.stat_1414945937", + ["text"] = "Manifested Dancing Dervishes die when Rampage ends", + ["type"] = "explicit", + }, + [2082] = { + ["id"] = "explicit.stat_1443502073", + ["text"] = "#% increased Effect of Prefixes", + ["type"] = "explicit", + }, + [2083] = { + ["id"] = "explicit.stat_2954116742|10772", + ["text"] = "Allocates Bloodthirsty", + ["type"] = "explicit", + }, + [2084] = { + ["id"] = "explicit.stat_2954116742|5703", + ["text"] = "Allocates Echoing Thunder", + ["type"] = "explicit", + }, + [2085] = { + ["id"] = "explicit.stat_2889807051", + ["text"] = "Melee Hits count as Rampage KillsRampage", + ["type"] = "explicit", + }, + [2086] = { + ["id"] = "explicit.stat_2954116742|10998", + ["text"] = "Allocates Strong Chin", + ["type"] = "explicit", + }, + [2087] = { + ["id"] = "explicit.stat_2954116742|48581", + ["text"] = "Allocates Exploit the Elements", + ["type"] = "explicit", + }, + [2088] = { + ["id"] = "explicit.stat_2954116742|30341", + ["text"] = "Allocates Master Fletching", + ["type"] = "explicit", + }, + [2089] = { + ["id"] = "explicit.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", + ["type"] = "explicit", + }, + [2090] = { + ["id"] = "explicit.stat_2954116742|56999", + ["text"] = "Allocates Locked On", + ["type"] = "explicit", + }, + [2091] = { + ["id"] = "explicit.stat_2954116742|19044", + ["text"] = "Allocates Arcane Intensity", + ["type"] = "explicit", + }, + [2092] = { + ["id"] = "explicit.stat_2954116742|11526", + ["text"] = "Allocates Sniper", + ["type"] = "explicit", + }, + [2093] = { + ["id"] = "explicit.stat_2954116742|9227", + ["text"] = "Allocates Focused Thrust", + ["type"] = "explicit", + }, + [2094] = { + ["id"] = "explicit.stat_2954116742|52191", + ["text"] = "Allocates Event Horizon", + ["type"] = "explicit", + }, + [2095] = { + ["id"] = "explicit.stat_2954116742|49661", + ["text"] = "Allocates Perfectly Placed Knife", + ["type"] = "explicit", + }, + [2096] = { + ["id"] = "explicit.stat_2954116742|63074", + ["text"] = "Allocates Dark Entries", + ["type"] = "explicit", + }, + [2097] = { + ["id"] = "explicit.stat_2954116742|22811", + ["text"] = "Allocates The Wild Cat", + ["type"] = "explicit", + }, + [2098] = { + ["id"] = "explicit.stat_2954116742|8273", + ["text"] = "Allocates Endless Circuit", + ["type"] = "explicit", + }, + [2099] = { + ["id"] = "explicit.stat_2954116742|45599", + ["text"] = "Allocates Lay Siege", + ["type"] = "explicit", + }, + [2100] = { + ["id"] = "explicit.stat_2954116742|18505", + ["text"] = "Allocates Crushing Verdict", + ["type"] = "explicit", + }, + [2101] = { + ["id"] = "explicit.stat_2954116742|62609", + ["text"] = "Allocates Ancestral Unity", + ["type"] = "explicit", + }, + [2102] = { + ["id"] = "explicit.stat_2954116742|31433", + ["text"] = "Allocates Catalysis", + ["type"] = "explicit", + }, + [2103] = { + ["id"] = "explicit.stat_2954116742|44299", + ["text"] = "Allocates Enhanced Barrier", + ["type"] = "explicit", + }, + [2104] = { + ["id"] = "explicit.stat_2954116742|63759", + ["text"] = "Allocates Stacking Toxins", + ["type"] = "explicit", + }, + [2105] = { + ["id"] = "explicit.stat_2954116742|42714", + ["text"] = "Allocates Thousand Cuts", + ["type"] = "explicit", + }, + [2106] = { + ["id"] = "explicit.stat_2954116742|51394", + ["text"] = "Allocates Unimpeded", + ["type"] = "explicit", + }, + [2107] = { + ["id"] = "explicit.stat_2954116742|3215", + ["text"] = "Allocates Melding", + ["type"] = "explicit", + }, + [2108] = { + ["id"] = "explicit.stat_2954116742|17029", + ["text"] = "Allocates Blade Catcher", + ["type"] = "explicit", + }, + [2109] = { + ["id"] = "explicit.stat_2954116742|24753", + ["text"] = "Allocates Determined Precision", + ["type"] = "explicit", + }, + [2110] = { + ["id"] = "explicit.stat_2954116742|41580", + ["text"] = "Allocates Maiming Strike", + ["type"] = "explicit", + }, + [2111] = { + ["id"] = "explicit.stat_2954116742|9968", + ["text"] = "Allocates Feel the Earth", + ["type"] = "explicit", + }, + [2112] = { + ["id"] = "explicit.stat_2954116742|32951", + ["text"] = "Allocates Preservation", + ["type"] = "explicit", + }, + [2113] = { + ["id"] = "explicit.stat_2954116742|6178", + ["text"] = "Allocates Power Shots", + ["type"] = "explicit", + }, + [2114] = { + ["id"] = "explicit.stat_2954116742|61601", + ["text"] = "Allocates True Strike", + ["type"] = "explicit", + }, + [2115] = { + ["id"] = "explicit.stat_2954116742|55180", + ["text"] = "Allocates Relentless Fallen", + ["type"] = "explicit", + }, + [2116] = { + ["id"] = "explicit.stat_2954116742|54911", + ["text"] = "Allocates Firestarter", + ["type"] = "explicit", + }, + [2117] = { + ["id"] = "explicit.stat_2954116742|57471", + ["text"] = "Allocates Hunker Down", + ["type"] = "explicit", + }, + [2118] = { + ["id"] = "explicit.stat_2954116742|41905", + ["text"] = "Allocates Gravedigger", + ["type"] = "explicit", + }, + [2119] = { + ["id"] = "explicit.stat_2954116742|38459", + ["text"] = "Allocates Disorientation", + ["type"] = "explicit", + }, + [2120] = { + ["id"] = "explicit.stat_2954116742|51820", + ["text"] = "Allocates Ancestral Conduits", + ["type"] = "explicit", + }, + [2121] = { + ["id"] = "explicit.stat_3841138199", + ["text"] = "#% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", + ["type"] = "explicit", + }, + [2122] = { + ["id"] = "explicit.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", + ["type"] = "explicit", + }, + [2123] = { + ["id"] = "explicit.stat_2954116742|30523", + ["text"] = "Allocates Dead can Dance", + ["type"] = "explicit", + }, + [2124] = { + ["id"] = "explicit.stat_2954116742|44952", + ["text"] = "Allocates Made to Last", + ["type"] = "explicit", + }, + [2125] = { + ["id"] = "explicit.stat_1079292660", + ["text"] = "#% increased Energy Shield Recharge Rate if you've Blocked Recently", + ["type"] = "explicit", + }, + [2126] = { + ["id"] = "explicit.stat_2954116742|9472", + ["text"] = "Allocates Catapult", + ["type"] = "explicit", + }, + [2127] = { + ["id"] = "explicit.stat_2954116742|42032", + ["text"] = "Allocates Escalating Mayhem", + ["type"] = "explicit", + }, + [2128] = { + ["id"] = "explicit.stat_2954116742|372", + ["text"] = "Allocates Heatproof", + ["type"] = "explicit", + }, + [2129] = { + ["id"] = "explicit.stat_2954116742|56453", + ["text"] = "Allocates Killer Instinct", + ["type"] = "explicit", + }, + [2130] = { + ["id"] = "explicit.stat_2954116742|38111", + ["text"] = "Allocates Pliable Flesh", + ["type"] = "explicit", + }, + [2131] = { + ["id"] = "explicit.stat_2954116742|35966", + ["text"] = "Allocates Heart Tissue", + ["type"] = "explicit", + }, + [2132] = { + ["id"] = "explicit.stat_2954116742|12337", + ["text"] = "Allocates Flash Storm", + ["type"] = "explicit", + }, + [2133] = { + ["id"] = "explicit.stat_2954116742|64119", + ["text"] = "Allocates Rapid Reload", + ["type"] = "explicit", + }, + [2134] = { + ["id"] = "explicit.stat_2954116742|15644", + ["text"] = "Allocates Shedding Skin", + ["type"] = "explicit", + }, + [2135] = { + ["id"] = "explicit.stat_2954116742|43423", + ["text"] = "Allocates Emboldened Avatar", + ["type"] = "explicit", + }, + [2136] = { + ["id"] = "explicit.stat_2954116742|35564", + ["text"] = "Allocates Turn the Clock Back", + ["type"] = "explicit", + }, + [2137] = { + ["id"] = "explicit.stat_2954116742|51871", + ["text"] = "Allocates Immortal Thirst", + ["type"] = "explicit", + }, + [2138] = { + ["id"] = "explicit.stat_2954116742|23738", + ["text"] = "Allocates Madness in the Bones", + ["type"] = "explicit", + }, + [2139] = { + ["id"] = "explicit.stat_2954116742|5802", + ["text"] = "Allocates Stand and Deliver", + ["type"] = "explicit", + }, + [2140] = { + ["id"] = "explicit.stat_2954116742|27176", + ["text"] = "Allocates The Power Within", + ["type"] = "explicit", + }, + [2141] = { + ["id"] = "explicit.stat_2954116742|8827", + ["text"] = "Allocates Fast Metabolism", + ["type"] = "explicit", + }, + [2142] = { + ["id"] = "explicit.stat_2954116742|54805", + ["text"] = "Allocates Hindered Capabilities", + ["type"] = "explicit", + }, + [2143] = { + ["id"] = "explicit.stat_1132041585", + ["text"] = "Virtuous", + ["type"] = "explicit", + }, + [2144] = { + ["id"] = "explicit.stat_2954116742|52618", + ["text"] = "Allocates Boon of the Beast", + ["type"] = "explicit", + }, + [2145] = { + ["id"] = "explicit.stat_2954116742|39369", + ["text"] = "Allocates Struck Through", + ["type"] = "explicit", + }, + [2146] = { + ["id"] = "explicit.stat_1753977518", + ["text"] = "#% of Thorns Damage Leeched as Life", + ["type"] = "explicit", + }, + [2147] = { + ["id"] = "explicit.stat_2954116742|57379", + ["text"] = "Allocates In Your Face", + ["type"] = "explicit", + }, + [2148] = { + ["id"] = "explicit.stat_2954116742|32071", + ["text"] = "Allocates Primal Growth", + ["type"] = "explicit", + }, + [2149] = { + ["id"] = "explicit.stat_2954116742|4534", + ["text"] = "Allocates Piercing Shot", + ["type"] = "explicit", + }, + [2150] = { + ["id"] = "explicit.stat_2954116742|64443", + ["text"] = "Allocates Impact Force", + ["type"] = "explicit", + }, + [2151] = { + ["id"] = "explicit.stat_2954116742|47316", + ["text"] = "Allocates Goring", + ["type"] = "explicit", + }, + [2152] = { + ["id"] = "explicit.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", + ["type"] = "explicit", + }, + [2153] = { + ["id"] = "explicit.stat_2954116742|59720", + ["text"] = "Allocates Beastial Skin", + ["type"] = "explicit", + }, + [2154] = { + ["id"] = "explicit.stat_2954116742|8810", + ["text"] = "Allocates Multitasking", + ["type"] = "explicit", + }, + [2155] = { + ["id"] = "explicit.stat_2954116742|29372", + ["text"] = "Allocates Sudden Infuriation", + ["type"] = "explicit", + }, + [2156] = { + ["id"] = "explicit.stat_2954116742|38614", + ["text"] = "Allocates Psychic Fragmentation", + ["type"] = "explicit", + }, + [2157] = { + ["id"] = "explicit.stat_2954116742|35876", + ["text"] = "Allocates Admonisher", + ["type"] = "explicit", + }, + [2158] = { + ["id"] = "explicit.stat_2954116742|7604", + ["text"] = "Allocates Rapid Strike", + ["type"] = "explicit", + }, + [2159] = { + ["id"] = "explicit.stat_2954116742|2486", + ["text"] = "Allocates Stars Aligned", + ["type"] = "explicit", + }, + [2160] = { + ["id"] = "explicit.stat_2954116742|61703", + ["text"] = "Allocates Sharpened Claw", + ["type"] = "explicit", + }, + [2161] = { + ["id"] = "explicit.stat_2954116742|34324", + ["text"] = "Allocates Spectral Ward", + ["type"] = "explicit", + }, + [2162] = { + ["id"] = "explicit.stat_2954116742|39567", + ["text"] = "Allocates Ingenuity", + ["type"] = "explicit", + }, + [2163] = { + ["id"] = "explicit.stat_2954116742|39347", + ["text"] = "Allocates Breaking Blows", + ["type"] = "explicit", + }, + [2164] = { + ["id"] = "explicit.stat_2954116742|47635", + ["text"] = "Allocates Overload", + ["type"] = "explicit", + }, + [2165] = { + ["id"] = "explicit.stat_2954116742|2113", + ["text"] = "Allocates Martial Artistry", + ["type"] = "explicit", + }, + [2166] = { + ["id"] = "explicit.stat_2954116742|17260", + ["text"] = "Allocates Piercing Claw", + ["type"] = "explicit", + }, + [2167] = { + ["id"] = "explicit.stat_2954116742|27687", + ["text"] = "Allocates Greatest Defence", + ["type"] = "explicit", + }, + [2168] = { + ["id"] = "explicit.stat_2886108529", + ["text"] = "Damage over Time cannot bypass your Energy Shield", + ["type"] = "explicit", + }, + [2169] = { + ["id"] = "explicit.stat_2954116742|49088", + ["text"] = "Allocates Splintering Force", + ["type"] = "explicit", + }, + [2170] = { + ["id"] = "explicit.stat_2954116742|46972", + ["text"] = "Allocates Arcane Mixtures", + ["type"] = "explicit", + }, + [2171] = { + ["id"] = "explicit.stat_2954116742|3894", + ["text"] = "Allocates Eldritch Will", + ["type"] = "explicit", + }, + [2172] = { + ["id"] = "explicit.stat_2954116742|18086", + ["text"] = "Allocates Breath of Ice", + ["type"] = "explicit", + }, + [2173] = { + ["id"] = "explicit.stat_2954116742|21349", + ["text"] = "Allocates The Quick Fox", + ["type"] = "explicit", + }, + [2174] = { + ["id"] = "explicit.stat_2954116742|8531", + ["text"] = "Allocates Leaping Ambush", + ["type"] = "explicit", + }, + [2175] = { + ["id"] = "explicit.stat_2954116742|39050", + ["text"] = "Allocates Exploit", + ["type"] = "explicit", + }, + [2176] = { + ["id"] = "explicit.stat_2954116742|3492", + ["text"] = "Allocates Void", + ["type"] = "explicit", + }, + [2177] = { + ["id"] = "explicit.stat_2954116742|21164", + ["text"] = "Allocates Fleshcrafting", + ["type"] = "explicit", + }, + [2178] = { + ["id"] = "explicit.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", + ["type"] = "explicit", + }, + [2179] = { + ["id"] = "explicit.stat_2189090852", + ["text"] = "#% increased maximum Divinity per Corrupted Item Equipped", + ["type"] = "explicit", + }, + [2180] = { + ["id"] = "explicit.stat_2954116742|55060", + ["text"] = "Allocates Shrapnel", + ["type"] = "explicit", + }, + [2181] = { + ["id"] = "explicit.stat_2954116742|21206", + ["text"] = "Allocates Explosive Impact", + ["type"] = "explicit", + }, + [2182] = { + ["id"] = "explicit.stat_2954116742|53935", + ["text"] = "Allocates Briny Carapace", + ["type"] = "explicit", + }, + [2183] = { + ["id"] = "explicit.stat_2954116742|2511", + ["text"] = "Allocates Sundering", + ["type"] = "explicit", + }, + [2184] = { + ["id"] = "explicit.stat_2954116742|49984", + ["text"] = "Allocates Spellblade", + ["type"] = "explicit", + }, + [2185] = { + ["id"] = "explicit.stat_2954116742|14294", + ["text"] = "Allocates Sacrificial Blood", + ["type"] = "explicit", + }, + [2186] = { + ["id"] = "explicit.stat_3249412463", + ["text"] = "Supported Minions' Strikes have Melee Splash", + ["type"] = "explicit", + }, + [2187] = { + ["id"] = "explicit.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", + ["type"] = "explicit", + }, + [2188] = { + ["id"] = "explicit.stat_2954116742|17664", + ["text"] = "Allocates Decisive Retreat", + ["type"] = "explicit", + }, + [2189] = { + ["id"] = "explicit.stat_2954116742|54998", + ["text"] = "Allocates Protraction", + ["type"] = "explicit", + }, + [2190] = { + ["id"] = "explicit.stat_2954116742|43088", + ["text"] = "Allocates Agonising Calamity", + ["type"] = "explicit", + }, + [2191] = { + ["id"] = "explicit.stat_774059442", + ["text"] = "# to maximum Runic Ward", + ["type"] = "explicit", + }, + [2192] = { + ["id"] = "explicit.stat_2954116742|5284", + ["text"] = "Allocates Shredding Force", + ["type"] = "explicit", + }, + [2193] = { + ["id"] = "explicit.stat_2954116742|17372", + ["text"] = "Allocates Reaching Strike", + ["type"] = "explicit", + }, + [2194] = { + ["id"] = "explicit.stat_2535713562", + ["text"] = "Recover #% of maximum Life per Poison affecting Enemies you Kill", + ["type"] = "explicit", + }, + [2195] = { + ["id"] = "explicit.stat_2954116742|26356", + ["text"] = "Allocates Primed to Explode", + ["type"] = "explicit", + }, + [2196] = { + ["id"] = "explicit.stat_2954116742|4031", + ["text"] = "Allocates Icebreaker", + ["type"] = "explicit", + }, + [2197] = { + ["id"] = "explicit.stat_2408276841", + ["text"] = "#% increased Energy Shield Recharge Rate per 4 Strength", + ["type"] = "explicit", + }, + [2198] = { + ["id"] = "explicit.stat_2954116742|50392", + ["text"] = "Allocates Brute Strength", + ["type"] = "explicit", + }, + [2199] = { + ["id"] = "explicit.stat_2954116742|36808", + ["text"] = "Allocates Spiked Shield", + ["type"] = "explicit", + }, + [2200] = { + ["id"] = "explicit.stat_3428124128", + ["text"] = "Delirious Monsters Killed in Area provide #% increased Reward Progress", + ["type"] = "explicit", + }, + [2201] = { + ["id"] = "explicit.stat_3428124128", + ["text"] = "Delirious Monsters killed in your Maps provide #% increased Reward Progress", + ["type"] = "explicit", + }, + [2202] = { + ["id"] = "explicit.stat_2954116742|7338", + ["text"] = "Allocates Abasement", + ["type"] = "explicit", + }, + [2203] = { + ["id"] = "explicit.stat_2954116742|55131", + ["text"] = "Allocates Light on your Feet", + ["type"] = "explicit", + }, + [2204] = { + ["id"] = "explicit.stat_2954116742|32664", + ["text"] = "Allocates Chakra of Breathing", + ["type"] = "explicit", + }, + [2205] = { + ["id"] = "explicit.stat_2954116742|51934", + ["text"] = "Allocates Invocated Efficiency", + ["type"] = "explicit", + }, + [2206] = { + ["id"] = "explicit.stat_2954116742|49618", + ["text"] = "Allocates Deadly Flourish", + ["type"] = "explicit", + }, + [2207] = { + ["id"] = "explicit.stat_2954116742|336", + ["text"] = "Allocates Storm Swell", + ["type"] = "explicit", + }, + [2208] = { + ["id"] = "explicit.stat_2224050171", + ["text"] = "Breaches in Area contain # additional Clasped Hand", + ["type"] = "explicit", + }, + [2209] = { + ["id"] = "explicit.stat_2224050171", + ["text"] = "Breaches in your Maps contain # additional Clasped Hand", + ["type"] = "explicit", + }, + [2210] = { + ["id"] = "explicit.stat_2954116742|15829", + ["text"] = "Allocates Siphon", + ["type"] = "explicit", + }, + [2211] = { + ["id"] = "explicit.stat_2954116742|22967", + ["text"] = "Allocates Vigilance", + ["type"] = "explicit", + }, + [2212] = { + ["id"] = "explicit.stat_2954116742|3567", + ["text"] = "Allocates Raw Mana", + ["type"] = "explicit", + }, + [2213] = { + ["id"] = "explicit.stat_2954116742|29527", + ["text"] = "Allocates First Approach", + ["type"] = "explicit", + }, + [2214] = { + ["id"] = "explicit.stat_2954116742|50673", + ["text"] = "Allocates Avoiding Deflection", + ["type"] = "explicit", + }, + [2215] = { + ["id"] = "explicit.stat_2954116742|25711", + ["text"] = "Allocates Thrill of Battle", + ["type"] = "explicit", + }, + [2216] = { + ["id"] = "explicit.stat_2954116742|63830", + ["text"] = "Allocates Marked for Sickness", + ["type"] = "explicit", + }, + [2217] = { + ["id"] = "explicit.stat_2954116742|35739", + ["text"] = "Allocates Crushing Judgement", + ["type"] = "explicit", + }, + [2218] = { + ["id"] = "explicit.stat_2954116742|20916", + ["text"] = "Allocates Blinding Strike", + ["type"] = "explicit", + }, + [2219] = { + ["id"] = "explicit.stat_2482970488", + ["text"] = "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", + ["type"] = "explicit", + }, + [2220] = { + ["id"] = "explicit.stat_2954116742|40399", + ["text"] = "Allocates Energise", + ["type"] = "explicit", + }, + [2221] = { + ["id"] = "explicit.stat_2954116742|53941", + ["text"] = "Allocates Shimmering", + ["type"] = "explicit", + }, + [2222] = { + ["id"] = "explicit.stat_2954116742|13738", + ["text"] = "Allocates Lightning Quick", + ["type"] = "explicit", + }, + [2223] = { + ["id"] = "explicit.stat_933768533", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield per Socket filled", + ["type"] = "explicit", + }, + [2224] = { + ["id"] = "explicit.stat_2954116742|10500", + ["text"] = "Allocates Dazing Blocks", + ["type"] = "explicit", + }, + [2225] = { + ["id"] = "explicit.stat_2954116742|10423", + ["text"] = "Allocates Exposed to the Inferno", + ["type"] = "explicit", + }, + [2226] = { + ["id"] = "explicit.stat_2954116742|50795", + ["text"] = "Allocates Careful Aim", + ["type"] = "explicit", + }, + [2227] = { + ["id"] = "explicit.stat_2954116742|17254", + ["text"] = "Allocates Spell Haste", + ["type"] = "explicit", + }, + [2228] = { + ["id"] = "explicit.stat_2954116742|56997", + ["text"] = "Allocates Heavy Contact", + ["type"] = "explicit", + }, + [2229] = { + ["id"] = "explicit.stat_2954116742|49150", + ["text"] = "Allocates Precise Invocations", + ["type"] = "explicit", + }, + [2230] = { + ["id"] = "explicit.stat_2954116742|52684", + ["text"] = "Allocates Eroding Chains", + ["type"] = "explicit", + }, + [2231] = { + ["id"] = "explicit.stat_2954116742|40166", + ["text"] = "Allocates Deep Trance", + ["type"] = "explicit", + }, + [2232] = { + ["id"] = "explicit.stat_2954116742|43944", + ["text"] = "Allocates Instability", + ["type"] = "explicit", + }, + [2233] = { + ["id"] = "explicit.stat_2954116742|55847", + ["text"] = "Allocates Ice Walls", + ["type"] = "explicit", + }, + [2234] = { + ["id"] = "explicit.stat_2954116742|9908", + ["text"] = "Allocates Price of Freedom", + ["type"] = "explicit", + }, + [2235] = { + ["id"] = "explicit.stat_2954116742|54990", + ["text"] = "Allocates Bloodletting", + ["type"] = "explicit", + }, + [2236] = { + ["id"] = "explicit.stat_2954116742|2745", + ["text"] = "Allocates The Noble Wolf", + ["type"] = "explicit", + }, + [2237] = { + ["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", + }, + [2238] = { + ["id"] = "explicit.stat_2954116742|47418", + ["text"] = "Allocates Warding Potions", + ["type"] = "explicit", + }, + [2239] = { + ["id"] = "explicit.stat_2954116742|17825", + ["text"] = "Allocates Tactical Retreat", + ["type"] = "explicit", + }, + [2240] = { + ["id"] = "explicit.stat_2954116742|25971", + ["text"] = "Allocates Tenfold Attacks", + ["type"] = "explicit", + }, + [2241] = { + ["id"] = "explicit.stat_2954116742|42245", + ["text"] = "Allocates Efficient Inscriptions", + ["type"] = "explicit", + }, + [2242] = { + ["id"] = "explicit.stat_2954116742|8483", + ["text"] = "Allocates Ruin", + ["type"] = "explicit", + }, + [2243] = { + ["id"] = "explicit.stat_2954116742|48418", + ["text"] = "Allocates Hefty Unit", + ["type"] = "explicit", + }, + [2244] = { + ["id"] = "explicit.stat_2954116742|23227", + ["text"] = "Allocates Initiative", + ["type"] = "explicit", + }, + [2245] = { + ["id"] = "explicit.stat_2954116742|57047", + ["text"] = "Allocates Polymathy", + ["type"] = "explicit", + }, + [2246] = { + ["id"] = "explicit.stat_2954116742|48617", + ["text"] = "Allocates Hunter", + ["type"] = "explicit", + }, + [2247] = { + ["id"] = "explicit.stat_2954116742|37806", + ["text"] = "Allocates Branching Bolts", + ["type"] = "explicit", + }, + [2248] = { + ["id"] = "explicit.stat_2954116742|43090", + ["text"] = "Allocates Electrotherapy", + ["type"] = "explicit", + }, + [2249] = { + ["id"] = "explicit.stat_2954116742|9652", + ["text"] = "Allocates Mending Deflection", + ["type"] = "explicit", + }, + [2250] = { + ["id"] = "explicit.stat_2954116742|55568", + ["text"] = "Allocates Forthcoming", + ["type"] = "explicit", + }, + [2251] = { + ["id"] = "explicit.stat_2954116742|48524", + ["text"] = "Allocates Blood Transfusion", + ["type"] = "explicit", + }, + [2252] = { + ["id"] = "explicit.stat_2954116742|31175", + ["text"] = "Allocates Grip of Evil", + ["type"] = "explicit", + }, + [2253] = { + ["id"] = "explicit.stat_2954116742|63585", + ["text"] = "Allocates Thunderstruck", + ["type"] = "explicit", + }, + [2254] = { + ["id"] = "explicit.stat_1174954559", + ["text"] = "Delirium Fog in Area lasts # additional seconds before dissipating", + ["type"] = "explicit", + }, + [2255] = { + ["id"] = "explicit.stat_1174954559", + ["text"] = "Delirium Fog in your Maps lasts # additional seconds before dissipating", + ["type"] = "explicit", + }, + [2256] = { + ["id"] = "explicit.stat_2954116742|19442", + ["text"] = "Allocates Prolonged Assault", + ["type"] = "explicit", + }, + [2257] = { + ["id"] = "explicit.stat_2954116742|23221", + ["text"] = "Allocates Trick Shot", + ["type"] = "explicit", + }, + [2258] = { + ["id"] = "explicit.stat_2954116742|34316", + ["text"] = "Allocates One with the River", + ["type"] = "explicit", + }, + [2259] = { + ["id"] = "explicit.stat_2954116742|5335", + ["text"] = "Allocates Shimmering Mirage", + ["type"] = "explicit", + }, + [2260] = { + ["id"] = "explicit.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", + ["type"] = "explicit", + }, + [2261] = { + ["id"] = "explicit.stat_2954116742|60692", + ["text"] = "Allocates Echoing Flames", + ["type"] = "explicit", + }, + [2262] = { + ["id"] = "explicit.stat_2954116742|11838", + ["text"] = "Allocates Dreamcatcher", + ["type"] = "explicit", + }, + [2263] = { + ["id"] = "explicit.stat_2954116742|2021", + ["text"] = "Allocates Wellspring", + ["type"] = "explicit", + }, + [2264] = { + ["id"] = "explicit.stat_2954116742|42981", + ["text"] = "Allocates Cruel Methods", + ["type"] = "explicit", + }, + [2265] = { + ["id"] = "explicit.stat_2954116742|38398", + ["text"] = "Allocates Apocalypse", + ["type"] = "explicit", + }, + [2266] = { + ["id"] = "explicit.stat_2954116742|934", + ["text"] = "Allocates Natural Immunity", + ["type"] = "explicit", + }, + [2267] = { + ["id"] = "explicit.stat_2954116742|18308", + ["text"] = "Allocates Bleeding Out", + ["type"] = "explicit", + }, + [2268] = { + ["id"] = "explicit.stat_2954116742|63037", + ["text"] = "Allocates Sigil of Fire", + ["type"] = "explicit", + }, + [2269] = { + ["id"] = "explicit.stat_2954116742|30456", + ["text"] = "Allocates High Alert", + ["type"] = "explicit", + }, + [2270] = { + ["id"] = "explicit.stat_2954116742|32932", + ["text"] = "Allocates Ichlotl's Inferno", + ["type"] = "explicit", + }, + [2271] = { + ["id"] = "explicit.stat_2954116742|4673", + ["text"] = "Allocates Hulking Smash", + ["type"] = "explicit", + }, + [2272] = { + ["id"] = "explicit.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", + ["type"] = "explicit", + }, + [2273] = { + ["id"] = "explicit.stat_2954116742|34543", + ["text"] = "Allocates The Frenzied Bear", + ["type"] = "explicit", + }, + [2274] = { + ["id"] = "explicit.stat_2954116742|11366", + ["text"] = "Allocates Volcanic Skin", + ["type"] = "explicit", + }, + [2275] = { + ["id"] = "explicit.stat_2954116742|20511", + ["text"] = "Allocates Cremating Cries", + ["type"] = "explicit", + }, + [2276] = { + ["id"] = "explicit.stat_2954116742|62803", + ["text"] = "Allocates Woodland Aspect", + ["type"] = "explicit", + }, + [2277] = { + ["id"] = "explicit.stat_2954116742|4627", + ["text"] = "Allocates Climate Change", + ["type"] = "explicit", + }, + [2278] = { + ["id"] = "explicit.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", + ["type"] = "explicit", + }, + [2279] = { + ["id"] = "explicit.stat_2954116742|4959", + ["text"] = "Allocates Heavy Frost", + ["type"] = "explicit", + }, + [2280] = { + ["id"] = "explicit.stat_2954116742|32543", + ["text"] = "Allocates Unhindered", + ["type"] = "explicit", + }, + [2281] = { + ["id"] = "explicit.stat_2954116742|2134", + ["text"] = "Allocates Toxic Tolerance", + ["type"] = "explicit", + }, + [2282] = { + ["id"] = "explicit.stat_2954116742|63579", + ["text"] = "Allocates Momentum", + ["type"] = "explicit", + }, + [2283] = { + ["id"] = "explicit.stat_2954116742|59214", + ["text"] = "Allocates Fated End", + ["type"] = "explicit", + }, + [2284] = { + ["id"] = "explicit.stat_2954116742|48014", + ["text"] = "Allocates Honourless", + ["type"] = "explicit", + }, + [2285] = { + ["id"] = "explicit.stat_2954116742|8904", + ["text"] = "Allocates Death from Afar", + ["type"] = "explicit", + }, + [2286] = { + ["id"] = "explicit.stat_2954116742|48658", + ["text"] = "Allocates Shattering", + ["type"] = "explicit", + }, + [2287] = { + ["id"] = "explicit.stat_2954116742|10681", + ["text"] = "Allocates Defensive Stance", + ["type"] = "explicit", + }, + [2288] = { + ["id"] = "explicit.stat_2954116742|38972", + ["text"] = "Allocates Restless Dead", + ["type"] = "explicit", + }, + [2289] = { + ["id"] = "explicit.stat_2954116742|46696", + ["text"] = "Allocates Impair", + ["type"] = "explicit", + }, + [2290] = { + ["id"] = "explicit.stat_2954116742|17229", + ["text"] = "Allocates Silent Guardian", + ["type"] = "explicit", + }, + [2291] = { + ["id"] = "explicit.stat_2954116742|46060", + ["text"] = "Allocates Voracious", + ["type"] = "explicit", + }, + [2292] = { + ["id"] = "explicit.stat_2954116742|40213", + ["text"] = "Allocates Taste for Blood", + ["type"] = "explicit", + }, + [2293] = { + ["id"] = "explicit.stat_1176947534", + ["text"] = "Undead Minions have #% reduced Reservation", + ["type"] = "explicit", + }, + [2294] = { + ["id"] = "explicit.stat_2954116742|13895", + ["text"] = "Allocates Precise Point", + ["type"] = "explicit", + }, + [2295] = { + ["id"] = "explicit.stat_2954116742|42347", + ["text"] = "Allocates Chakra of Sight", + ["type"] = "explicit", + }, + [2296] = { + ["id"] = "explicit.stat_2954116742|4709", + ["text"] = "Allocates Near Sighted", + ["type"] = "explicit", + }, + [2297] = { + ["id"] = "explicit.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", + ["type"] = "explicit", + }, + [2298] = { + ["id"] = "explicit.stat_2954116742|7163", + ["text"] = "Allocates Stimulants", + ["type"] = "explicit", + }, + [2299] = { + ["id"] = "explicit.stat_3198708642", + ["text"] = "#% of Lightning damage taken as Cold damage", + ["type"] = "explicit", + }, + [2300] = { + ["id"] = "explicit.stat_2954116742|12611", + ["text"] = "Allocates Harness the Elements", + ["type"] = "explicit", + }, + [2301] = { + ["id"] = "explicit.stat_2954116742|42354", + ["text"] = "Allocates Blinding Flash", + ["type"] = "explicit", + }, + [2302] = { + ["id"] = "explicit.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", + ["type"] = "explicit", + }, + [2303] = { + ["id"] = "explicit.stat_2954116742|55708", + ["text"] = "Allocates Electric Amplification", + ["type"] = "explicit", + }, + [2304] = { + ["id"] = "explicit.stat_2954116742|37872", + ["text"] = "Allocates Presence Present", + ["type"] = "explicit", + }, + [2305] = { + ["id"] = "explicit.stat_2954116742|36341", + ["text"] = "Allocates Cull the Hordes", + ["type"] = "explicit", + }, + [2306] = { + ["id"] = "explicit.stat_2954116742|10873", + ["text"] = "Allocates Bestial Rage", + ["type"] = "explicit", + }, + [2307] = { + ["id"] = "explicit.stat_1010703902", + ["text"] = "The Effect of Blind on you is reversed", + ["type"] = "explicit", + }, + [2308] = { + ["id"] = "explicit.stat_2954116742|15374", + ["text"] = "Allocates Hale Heart", + ["type"] = "explicit", + }, + [2309] = { + ["id"] = "explicit.stat_2954116742|16466", + ["text"] = "Allocates Mental Alacrity", + ["type"] = "explicit", + }, + [2310] = { + ["id"] = "explicit.stat_2954116742|36623", + ["text"] = "Allocates Convalescence", + ["type"] = "explicit", + }, + [2311] = { + ["id"] = "explicit.stat_2954116742|25482", + ["text"] = "Allocates Beef", + ["type"] = "explicit", + }, + [2312] = { + ["id"] = "explicit.stat_2954116742|8881", + ["text"] = "Allocates Unforgiving", + ["type"] = "explicit", + }, + [2313] = { + ["id"] = "explicit.stat_555706343", + ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + [2314] = { + ["id"] = "explicit.stat_2954116742|20397", + ["text"] = "Allocates Authority", + ["type"] = "explicit", + }, + [2315] = { + ["id"] = "explicit.stat_2954116742|48565", + ["text"] = "Allocates Bringer of Order", + ["type"] = "explicit", + }, + [2316] = { + ["id"] = "explicit.stat_2954116742|35792", + ["text"] = "Allocates Blood of Rage", + ["type"] = "explicit", + }, + [2317] = { + ["id"] = "explicit.stat_2954116742|53294", + ["text"] = "Allocates Burn Away", + ["type"] = "explicit", + }, + [2318] = { + ["id"] = "explicit.stat_2954116742|2843", + ["text"] = "Allocates Tolerant Equipment", + ["type"] = "explicit", + }, + [2319] = { + ["id"] = "explicit.stat_2954116742|55", + ["text"] = "Allocates Fast Acting Toxins", + ["type"] = "explicit", + }, + [2320] = { + ["id"] = "explicit.stat_323800555", + ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", + ["type"] = "explicit", + }, + [2321] = { + ["id"] = "explicit.stat_2954116742|23940", + ["text"] = "Allocates Fortified Aegis", + ["type"] = "explicit", + }, + [2322] = { + ["id"] = "explicit.stat_2954116742|12906", + ["text"] = "Allocates Sitting Duck", + ["type"] = "explicit", + }, + [2323] = { + ["id"] = "explicit.stat_2954116742|44293", + ["text"] = "Allocates Hastening Barrier", + ["type"] = "explicit", + }, + [2324] = { + ["id"] = "explicit.stat_1265767008", + ["text"] = "Your Minions are Gigantic if they have Revived Recently", + ["type"] = "explicit", + }, + [2325] = { + ["id"] = "explicit.stat_2954116742|7341", + ["text"] = "Allocates Ignore Pain", + ["type"] = "explicit", + }, + [2326] = { + ["id"] = "explicit.stat_2954116742|11826", + ["text"] = "Allocates Heavy Ammunition", + ["type"] = "explicit", + }, + [2327] = { + ["id"] = "explicit.stat_2954116742|42036", + ["text"] = "Allocates Off-Balancing Retort", + ["type"] = "explicit", + }, + [2328] = { + ["id"] = "explicit.stat_2954116742|2863", + ["text"] = "Allocates Perpetual Freeze", + ["type"] = "explicit", + }, + [2329] = { + ["id"] = "explicit.stat_2954116742|25362", + ["text"] = "Allocates Chakra of Impact", + ["type"] = "explicit", + }, + [2330] = { + ["id"] = "explicit.stat_2954116742|34300", + ["text"] = "Allocates Conservative Casting", + ["type"] = "explicit", + }, + [2331] = { + ["id"] = "explicit.stat_2954116742|54937", + ["text"] = "Allocates Vengeful Fury", + ["type"] = "explicit", + }, + [2332] = { + ["id"] = "explicit.stat_2954116742|10315", + ["text"] = "Allocates Easy Going", + ["type"] = "explicit", + }, + [2333] = { + ["id"] = "explicit.stat_2954116742|53150", + ["text"] = "Allocates Sharp Sight", + ["type"] = "explicit", + }, + [2334] = { + ["id"] = "explicit.stat_2954116742|61921", + ["text"] = "Allocates Storm Surge", + ["type"] = "explicit", + }, + [2335] = { + ["id"] = "explicit.stat_2954116742|33240", + ["text"] = "Allocates Lord of Horrors", + ["type"] = "explicit", + }, + [2336] = { + ["id"] = "explicit.stat_2954116742|51213", + ["text"] = "Allocates Wasting", + ["type"] = "explicit", + }, + [2337] = { + ["id"] = "explicit.stat_2954116742|5663", + ["text"] = "Allocates Endurance", + ["type"] = "explicit", + }, + [2338] = { + ["id"] = "explicit.stat_2954116742|59541", + ["text"] = "Allocates Necrotised Flesh", + ["type"] = "explicit", + }, + [2339] = { + ["id"] = "explicit.stat_2954116742|10265", + ["text"] = "Allocates Javelin", + ["type"] = "explicit", + }, + [2340] = { + ["id"] = "explicit.stat_2954116742|17330", + ["text"] = "Allocates Perforation", + ["type"] = "explicit", + }, + [2341] = { + ["id"] = "explicit.stat_2954116742|48103", + ["text"] = "Allocates Forcewave", + ["type"] = "explicit", + }, + [2342] = { + ["id"] = "explicit.stat_2954116742|38969", + ["text"] = "Allocates Finesse", + ["type"] = "explicit", + }, + [2343] = { + ["id"] = "explicit.stat_2954116742|51602", + ["text"] = "Allocates Unsight", + ["type"] = "explicit", + }, + [2344] = { + ["id"] = "explicit.stat_2954116742|32976", + ["text"] = "Allocates Gem Enthusiast", + ["type"] = "explicit", + }, + [2345] = { + ["id"] = "explicit.stat_2954116742|38888", + ["text"] = "Allocates Unerring Impact", + ["type"] = "explicit", + }, + [2346] = { + ["id"] = "explicit.stat_2954116742|30562", + ["text"] = "Allocates Inner Faith", + ["type"] = "explicit", + }, + [2347] = { + ["id"] = "explicit.stat_2954116742|43939", + ["text"] = "Allocates Melting Flames", + ["type"] = "explicit", + }, + [2348] = { + ["id"] = "explicit.stat_2954116742|47270", + ["text"] = "Allocates Inescapable Cold", + ["type"] = "explicit", + }, + [2349] = { + ["id"] = "explicit.stat_2954116742|47514", + ["text"] = "Allocates Dizzying Hits", + ["type"] = "explicit", + }, + [2350] = { + ["id"] = "explicit.stat_2954116742|27491", + ["text"] = "Allocates Heavy Buffer", + ["type"] = "explicit", + }, + [2351] = { + ["id"] = "explicit.stat_2954116742|54031", + ["text"] = "Allocates The Great Boar", + ["type"] = "explicit", + }, + [2352] = { + ["id"] = "explicit.stat_2954116742|5009", + ["text"] = "Allocates Seeing Stars", + ["type"] = "explicit", + }, + [2353] = { + ["id"] = "explicit.stat_2954116742|56493", + ["text"] = "Allocates Agile Succession", + ["type"] = "explicit", + }, + [2354] = { + ["id"] = "explicit.stat_2954116742|4716", + ["text"] = "Allocates Afterimage", + ["type"] = "explicit", + }, + [2355] = { + ["id"] = "explicit.stat_2954116742|15986", + ["text"] = "Allocates Building Toxins", + ["type"] = "explicit", + }, + [2356] = { + ["id"] = "explicit.stat_2954116742|41394", + ["text"] = "Allocates Invigorating Archon", + ["type"] = "explicit", + }, + [2357] = { + ["id"] = "explicit.stat_2954116742|48699", + ["text"] = "Allocates Frostwalker", + ["type"] = "explicit", + }, + [2358] = { + ["id"] = "explicit.stat_2954116742|16256", + ["text"] = "Allocates Ether Flow", + ["type"] = "explicit", + }, + [2359] = { + ["id"] = "explicit.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", + ["type"] = "explicit", + }, + [2360] = { + ["id"] = "explicit.stat_2201614328", + ["text"] = "Regenerate #% of maximum Life per second if you have been Hit Recently", + ["type"] = "explicit", + }, + [2361] = { + ["id"] = "explicit.stat_2954116742|34908", + ["text"] = "Allocates Staunch Deflection", + ["type"] = "explicit", + }, + [2362] = { + ["id"] = "explicit.stat_2954116742|63031", + ["text"] = "Allocates Glorious Anticipation", + ["type"] = "explicit", + }, + [2363] = { + ["id"] = "explicit.stat_2954116742|7651", + ["text"] = "Allocates Pierce the Heart", + ["type"] = "explicit", + }, + [2364] = { + ["id"] = "explicit.stat_2954116742|42959", + ["text"] = "Allocates Low Tolerance", + ["type"] = "explicit", + }, + [2365] = { + ["id"] = "explicit.stat_2954116742|31189", + ["text"] = "Allocates Unexpected Finesse", + ["type"] = "explicit", + }, + [2366] = { + ["id"] = "explicit.stat_2954116742|45713", + ["text"] = "Allocates Savouring", + ["type"] = "explicit", + }, + [2367] = { + ["id"] = "explicit.stat_2954116742|10295", + ["text"] = "Allocates Overzealous", + ["type"] = "explicit", + }, + [2368] = { + ["id"] = "explicit.stat_2954116742|5227", + ["text"] = "Allocates Escape Strategy", + ["type"] = "explicit", + }, + [2369] = { + ["id"] = "explicit.stat_2954116742|21537", + ["text"] = "Allocates Fervour", + ["type"] = "explicit", + }, + [2370] = { + ["id"] = "explicit.stat_2954116742|17955", + ["text"] = "Allocates Careful Consideration", + ["type"] = "explicit", + }, + [2371] = { + ["id"] = "explicit.stat_2954116742|41512", + ["text"] = "Allocates Heavy Weaponry", + ["type"] = "explicit", + }, + [2372] = { + ["id"] = "explicit.stat_2954116742|4331", + ["text"] = "Allocates Guided Hand", + ["type"] = "explicit", + }, + [2373] = { + ["id"] = "explicit.stat_2954116742|33978", + ["text"] = "Allocates Unstoppable Barrier", + ["type"] = "explicit", + }, + [2374] = { + ["id"] = "explicit.stat_2954116742|6544", + ["text"] = "Allocates Burning Strikes", + ["type"] = "explicit", + }, + [2375] = { + ["id"] = "explicit.stat_2954116742|35560", + ["text"] = "Allocates At your Command", + ["type"] = "explicit", + }, + [2376] = { + ["id"] = "explicit.stat_2954116742|11392", + ["text"] = "Allocates Molten Being", + ["type"] = "explicit", + }, + [2377] = { + ["id"] = "explicit.stat_2954116742|62185", + ["text"] = "Allocates Rattled", + ["type"] = "explicit", + }, + [2378] = { + ["id"] = "explicit.stat_2954116742|1104", + ["text"] = "Allocates Lust for Power", + ["type"] = "explicit", + }, + [2379] = { + ["id"] = "explicit.stat_2954116742|36931", + ["text"] = "Allocates Concussive Attack", + ["type"] = "explicit", + }, + [2380] = { + ["id"] = "explicit.stat_2954116742|32721", + ["text"] = "Allocates Distracted Target", + ["type"] = "explicit", + }, + [2381] = { + ["id"] = "explicit.stat_2954116742|41753", + ["text"] = "Allocates Evocational Practitioner", + ["type"] = "explicit", + }, + [2382] = { + ["id"] = "explicit.stat_2954116742|36333", + ["text"] = "Allocates Explosive Empowerment", + ["type"] = "explicit", + }, + [2383] = { + ["id"] = "explicit.stat_2954116742|26331", + ["text"] = "Allocates Harsh Winter", + ["type"] = "explicit", + }, + [2384] = { + ["id"] = "explicit.stat_2954116742|35918", + ["text"] = "Allocates One For All", + ["type"] = "explicit", + }, + [2385] = { + ["id"] = "explicit.stat_2954116742|23078", + ["text"] = "Allocates Holy Protector", + ["type"] = "explicit", + }, + [2386] = { + ["id"] = "explicit.stat_2954116742|56893", + ["text"] = "Allocates Thicket Warding", + ["type"] = "explicit", + }, + [2387] = { + ["id"] = "explicit.stat_2954116742|16150", + ["text"] = "Allocates Inspiring Ally", + ["type"] = "explicit", + }, + [2388] = { + ["id"] = "explicit.stat_2954116742|18959", + ["text"] = "Allocates Ruinic Helm", + ["type"] = "explicit", + }, + [2389] = { + ["id"] = "explicit.stat_2954116742|11774", + ["text"] = "Allocates The Spring Hare", + ["type"] = "explicit", + }, + [2390] = { + ["id"] = "explicit.stat_2954116742|2645", + ["text"] = "Allocates Skullcrusher", + ["type"] = "explicit", + }, + [2391] = { + ["id"] = "explicit.stat_2954116742|62034", + ["text"] = "Allocates Prism Guard", + ["type"] = "explicit", + }, + [2392] = { + ["id"] = "explicit.stat_2954116742|26070", + ["text"] = "Allocates Bolstering Yell", + ["type"] = "explicit", + }, + [2393] = { + ["id"] = "explicit.stat_2954116742|13457", + ["text"] = "Allocates Shadow Dancing", + ["type"] = "explicit", + }, + [2394] = { + ["id"] = "explicit.stat_2954116742|27626", + ["text"] = "Allocates Touch the Arcane", + ["type"] = "explicit", + }, + [2395] = { + ["id"] = "explicit.stat_2954116742|20414", + ["text"] = "Allocates Reprisal", + ["type"] = "explicit", + }, + [2396] = { + ["id"] = "explicit.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", + ["type"] = "explicit", + }, + [2397] = { + ["id"] = "explicit.stat_2954116742|27875", + ["text"] = "Allocates General Electric", + ["type"] = "explicit", + }, + [2398] = { + ["id"] = "explicit.stat_2954116742|17882", + ["text"] = "Allocates Volatile Grenades", + ["type"] = "explicit", + }, + [2399] = { + ["id"] = "explicit.stat_2954116742|44373", + ["text"] = "Allocates Wither Away", + ["type"] = "explicit", + }, + [2400] = { + ["id"] = "explicit.stat_2954116742|61444", + ["text"] = "Allocates Wasting Casts", + ["type"] = "explicit", + }, + [2401] = { + ["id"] = "explicit.stat_2954116742|62887", + ["text"] = "Allocates Living Death", + ["type"] = "explicit", + }, + [2402] = { + ["id"] = "explicit.stat_2954116742|38342", + ["text"] = "Allocates Stupefy", + ["type"] = "explicit", + }, + [2403] = { + ["id"] = "explicit.stat_2954116742|31364", + ["text"] = "Allocates Primal Protection", + ["type"] = "explicit", + }, + [2404] = { + ["id"] = "explicit.stat_2954116742|4547", + ["text"] = "Allocates Unnatural Resilience", + ["type"] = "explicit", + }, + [2405] = { + ["id"] = "explicit.stat_2954116742|45488", + ["text"] = "Allocates Cross Strike", + ["type"] = "explicit", + }, + [2406] = { + ["id"] = "explicit.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", + ["type"] = "explicit", + }, + [2407] = { + ["id"] = "explicit.stat_2954116742|32301", + ["text"] = "Allocates Frazzled", + ["type"] = "explicit", + }, + [2408] = { + ["id"] = "explicit.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", + ["type"] = "explicit", + }, + [2409] = { + ["id"] = "explicit.stat_2954116742|16499", + ["text"] = "Allocates Lingering Whispers", + ["type"] = "explicit", + }, + [2410] = { + ["id"] = "explicit.stat_2954116742|42045", + ["text"] = "Allocates Archon of the Blizzard", + ["type"] = "explicit", + }, + [2411] = { + ["id"] = "explicit.stat_2954116742|26518", + ["text"] = "Allocates Cold Nature", + ["type"] = "explicit", + }, + [2412] = { + ["id"] = "explicit.stat_2954116742|50485", + ["text"] = "Allocates Zone of Control", + ["type"] = "explicit", + }, + [2413] = { + ["id"] = "explicit.stat_2954116742|40985", + ["text"] = "Allocates Empowering Remnants", + ["type"] = "explicit", + }, + [2414] = { + ["id"] = "explicit.stat_2954116742|53527", + ["text"] = "Allocates Shattering Blow", + ["type"] = "explicit", + }, + [2415] = { + ["id"] = "explicit.stat_2954116742|56063", + ["text"] = "Allocates Lingering Horror", + ["type"] = "explicit", + }, + [2416] = { + ["id"] = "explicit.stat_2954116742|9421", + ["text"] = "Allocates Snowpiercer", + ["type"] = "explicit", + }, + [2417] = { + ["id"] = "explicit.stat_2954116742|10612", + ["text"] = "Allocates Embodiment of Frost", + ["type"] = "explicit", + }, + [2418] = { + ["id"] = "explicit.stat_2954116742|54148", + ["text"] = "Allocates Smoke Inhalation", + ["type"] = "explicit", + }, + [2419] = { + ["id"] = "explicit.stat_2954116742|17600", + ["text"] = "Allocates Thirsting Ally", + ["type"] = "explicit", + }, + [2420] = { + ["id"] = "explicit.stat_2954116742|40073", + ["text"] = "Allocates Drenched", + ["type"] = "explicit", + }, + [2421] = { + ["id"] = "explicit.stat_2954116742|2397", + ["text"] = "Allocates Last Stand", + ["type"] = "explicit", + }, + [2422] = { + ["id"] = "explicit.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", + ["type"] = "explicit", + }, + [2423] = { + ["id"] = "explicit.stat_2954116742|34553", + ["text"] = "Allocates Emboldening Lead", + ["type"] = "explicit", + }, + [2424] = { + ["id"] = "explicit.stat_1559935218", + ["text"] = "Causes Daze buildup equal to #% of Damage dealt", + ["type"] = "explicit", + }, + [2425] = { + ["id"] = "explicit.stat_2954116742|14934", + ["text"] = "Allocates Spiral into Mania", + ["type"] = "explicit", + }, + [2426] = { + ["id"] = "explicit.stat_2954116742|35369", + ["text"] = "Allocates Investing Energies", + ["type"] = "explicit", + }, + [2427] = { + ["id"] = "explicit.stat_2954116742|33887", + ["text"] = "Allocates Full Salvo", + ["type"] = "explicit", + }, + [2428] = { + ["id"] = "explicit.stat_2954116742|26291", + ["text"] = "Allocates Electrifying Nature", + ["type"] = "explicit", + }, + [2429] = { + ["id"] = "explicit.stat_2954116742|19156", + ["text"] = "Allocates Immaterial", + ["type"] = "explicit", + }, + [2430] = { + ["id"] = "explicit.stat_2954116742|24438", + ["text"] = "Allocates Hardened Wood", + ["type"] = "explicit", + }, + [2431] = { + ["id"] = "explicit.stat_2954116742|18419", + ["text"] = "Allocates Ancestral Mending", + ["type"] = "explicit", + }, + [2432] = { + ["id"] = "explicit.stat_2954116742|6655", + ["text"] = "Allocates Aggravation", + ["type"] = "explicit", + }, + [2433] = { + ["id"] = "explicit.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", + ["type"] = "explicit", + }, + [2434] = { + ["id"] = "explicit.stat_2954116742|58426", + ["text"] = "Allocates Pocket Sand", + ["type"] = "explicit", + }, + [2435] = { + ["id"] = "explicit.stat_2954116742|13542", + ["text"] = "Allocates Loose Flesh", + ["type"] = "explicit", + }, + [2436] = { + ["id"] = "explicit.stat_1484026495", + ["text"] = "+# maximum stacks of Puppet Master", + ["type"] = "explicit", + }, + [2437] = { + ["id"] = "explicit.stat_2954116742|40270", + ["text"] = "Allocates Frenetic", + ["type"] = "explicit", + }, + [2438] = { + ["id"] = "explicit.stat_2954116742|33093", + ["text"] = "Allocates Effervescent", + ["type"] = "explicit", + }, + [2439] = { + ["id"] = "explicit.stat_2954116742|14945", + ["text"] = "Allocates Growing Swarm", + ["type"] = "explicit", + }, + [2440] = { + ["id"] = "explicit.stat_2954116742|53823", + ["text"] = "Allocates Towering Shield", + ["type"] = "explicit", + }, + [2441] = { + ["id"] = "explicit.stat_2954116742|10602", + ["text"] = "Allocates Reaving", + ["type"] = "explicit", + }, + [2442] = { + ["id"] = "explicit.stat_2954116742|43139", + ["text"] = "Allocates Stormbreaker", + ["type"] = "explicit", + }, + [2443] = { + ["id"] = "explicit.stat_2954116742|58397", + ["text"] = "Allocates Proficiency", + ["type"] = "explicit", + }, + [2444] = { + ["id"] = "explicit.stat_2954116742|34308", + ["text"] = "Allocates Personal Touch", + ["type"] = "explicit", + }, + [2445] = { + ["id"] = "explicit.stat_2954116742|2335", + ["text"] = "Allocates Turn the Clock Forward", + ["type"] = "explicit", + }, + [2446] = { + ["id"] = "explicit.stat_2954116742|50687", + ["text"] = "Allocates Coursing Energy", + ["type"] = "explicit", + }, + [2447] = { + ["id"] = "explicit.stat_2954116742|52257", + ["text"] = "Allocates Conductive Embrace", + ["type"] = "explicit", + }, + [2448] = { + ["id"] = "explicit.stat_2954116742|27761", + ["text"] = "Allocates Counterstancing", + ["type"] = "explicit", + }, + [2449] = { + ["id"] = "explicit.stat_2954116742|24120", + ["text"] = "Allocates Mental Toughness", + ["type"] = "explicit", + }, + [2450] = { + ["id"] = "explicit.stat_2954116742|22626", + ["text"] = "Allocates Irreparable", + ["type"] = "explicit", + }, + [2451] = { + ["id"] = "explicit.stat_2954116742|27009", + ["text"] = "Allocates Lust for Sacrifice", + ["type"] = "explicit", + }, + [2452] = { + ["id"] = "explicit.stat_2954116742|65256", + ["text"] = "Allocates Widespread Coverage", + ["type"] = "explicit", + }, + [2453] = { + ["id"] = "explicit.stat_2954116742|47782", + ["text"] = "Allocates Steady Footing", + ["type"] = "explicit", + }, + [2454] = { + ["id"] = "explicit.stat_2954116742|30748", + ["text"] = "Allocates Controlled Chaos", + ["type"] = "explicit", + }, + [2455] = { + ["id"] = "explicit.stat_2954116742|43791", + ["text"] = "Allocates Rallying Icon", + ["type"] = "explicit", + }, + [2456] = { + ["id"] = "explicit.stat_2954116742|30392", + ["text"] = "Allocates Succour", + ["type"] = "explicit", + }, + [2457] = { + ["id"] = "explicit.stat_2954116742|32151", + ["text"] = "Allocates Crystalline Resistance", + ["type"] = "explicit", + }, + [2458] = { + ["id"] = "explicit.stat_2954116742|51169", + ["text"] = "Allocates Soul Bloom", + ["type"] = "explicit", + }, + [2459] = { + ["id"] = "explicit.stat_2954116742|27388", + ["text"] = "Allocates Aspiring Genius", + ["type"] = "explicit", + }, + [2460] = { + ["id"] = "explicit.stat_2954116742|58096", + ["text"] = "Allocates Lasting Incantations", + ["type"] = "explicit", + }, + [2461] = { + ["id"] = "explicit.stat_2954116742|64050", + ["text"] = "Allocates Marathon Runner", + ["type"] = "explicit", + }, + [2462] = { + ["id"] = "explicit.stat_2954116742|19249", + ["text"] = "Allocates Supportive Ancestors", + ["type"] = "explicit", + }, + [2463] = { + ["id"] = "explicit.stat_2954116742|39990", + ["text"] = "Allocates Chronomancy", + ["type"] = "explicit", + }, + [2464] = { + ["id"] = "explicit.stat_2954116742|35028", + ["text"] = "Allocates In the Thick of It", + ["type"] = "explicit", + }, + [2465] = { + ["id"] = "explicit.stat_3471443885", + ["text"] = "#% of Damage taken from Deflected Hits Recouped as Life", + ["type"] = "explicit", + }, + [2466] = { + ["id"] = "explicit.stat_2954116742|65160", + ["text"] = "Allocates Titanic", + ["type"] = "explicit", + }, + [2467] = { + ["id"] = "explicit.stat_2954116742|55835", + ["text"] = "Allocates Exposed to the Cosmos", + ["type"] = "explicit", + }, + [2468] = { + ["id"] = "explicit.stat_2954116742|11578", + ["text"] = "Allocates Spreading Shocks", + ["type"] = "explicit", + }, + [2469] = { + ["id"] = "explicit.stat_2954116742|42065", + ["text"] = "Allocates Surging Currents", + ["type"] = "explicit", + }, + [2470] = { + ["id"] = "explicit.stat_2954116742|3688", + ["text"] = "Allocates Dynamism", + ["type"] = "explicit", + }, + [2471] = { + ["id"] = "explicit.stat_2954116742|20008", + ["text"] = "Allocates Unleash Fire", + ["type"] = "explicit", + }, + [2472] = { + ["id"] = "explicit.stat_2954116742|15617", + ["text"] = "Allocates Heavy Drinker", + ["type"] = "explicit", + }, + [2473] = { + ["id"] = "explicit.stat_2954116742|51606", + ["text"] = "Allocates Freedom of Movement", + ["type"] = "explicit", + }, + [2474] = { + ["id"] = "explicit.stat_2954116742|46296", + ["text"] = "Allocates Short Shot", + ["type"] = "explicit", + }, + [2475] = { + ["id"] = "explicit.stat_2954116742|4931", + ["text"] = "Allocates Dependable Ward", + ["type"] = "explicit", + }, + [2476] = { + ["id"] = "explicit.stat_2954116742|16626", + ["text"] = "Allocates Impact Area", + ["type"] = "explicit", + }, + [2477] = { + ["id"] = "explicit.stat_2954116742|6514", + ["text"] = "Allocates Cacophony", + ["type"] = "explicit", + }, + [2478] = { + ["id"] = "explicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", + ["type"] = "explicit", + }, + [2479] = { + ["id"] = "explicit.stat_2954116742|8791", + ["text"] = "Allocates Sturdy Ally", + ["type"] = "explicit", + }, + [2480] = { + ["id"] = "explicit.stat_2954116742|3698", + ["text"] = "Allocates Spike Pit", + ["type"] = "explicit", + }, + [2481] = { + ["id"] = "explicit.stat_2954116742|39083", + ["text"] = "Allocates Blood Rush", + ["type"] = "explicit", + }, + [2482] = { + ["id"] = "explicit.stat_2954116742|5642", + ["text"] = "Allocates Behemoth", + ["type"] = "explicit", + }, + [2483] = { + ["id"] = "explicit.stat_2954116742|33059", + ["text"] = "Allocates Back in Action", + ["type"] = "explicit", + }, + [2484] = { + ["id"] = "explicit.stat_2954116742|750", + ["text"] = "Allocates Tribal Fury", + ["type"] = "explicit", + }, + [2485] = { + ["id"] = "explicit.stat_2954116742|14211", + ["text"] = "Allocates Shredding Contraptions", + ["type"] = "explicit", + }, + [2486] = { + ["id"] = "explicit.stat_2954116742|12822", + ["text"] = "Allocates Adaptable Assault", + ["type"] = "explicit", + }, + [2487] = { + ["id"] = "explicit.stat_2954116742|43677", + ["text"] = "Allocates Crippling Toxins", + ["type"] = "explicit", + }, + [2488] = { + ["id"] = "explicit.stat_2954116742|26339", + ["text"] = "Allocates Ancestral Artifice", + ["type"] = "explicit", + }, + [2489] = { + ["id"] = "explicit.stat_2954116742|29800", + ["text"] = "Allocates Shocking Limit", + ["type"] = "explicit", + }, + [2490] = { + ["id"] = "explicit.stat_2954116742|21748", + ["text"] = "Allocates Impending Doom", + ["type"] = "explicit", + }, + [2491] = { + ["id"] = "explicit.stat_2954116742|36630", + ["text"] = "Allocates Incision", + ["type"] = "explicit", + }, + [2492] = { + ["id"] = "explicit.stat_2954116742|53367", + ["text"] = "Allocates Symbol of Defiance", + ["type"] = "explicit", + }, + [2493] = { + ["id"] = "explicit.stat_2954116742|64415", + ["text"] = "Allocates Shattering Daze", + ["type"] = "explicit", + }, + [2494] = { + ["id"] = "explicit.stat_2954116742|22817", + ["text"] = "Allocates Inevitable Rupture", + ["type"] = "explicit", + }, + [2495] = { + ["id"] = "explicit.stat_2954116742|17150", + ["text"] = "Allocates General's Bindings", + ["type"] = "explicit", + }, + [2496] = { + ["id"] = "explicit.stat_2954116742|53030", + ["text"] = "Allocates Immolation", + ["type"] = "explicit", + }, + [2497] = { + ["id"] = "explicit.stat_2954116742|9896", + ["text"] = "Allocates Heartstopping Presence", + ["type"] = "explicit", + }, + [2498] = { + ["id"] = "explicit.stat_2954116742|52180", + ["text"] = "Allocates Trained Deflection", + ["type"] = "explicit", + }, + [2499] = { + ["id"] = "explicit.stat_2954116742|23736", + ["text"] = "Allocates Spray and Pray", + ["type"] = "explicit", + }, + [2500] = { + ["id"] = "explicit.stat_2954116742|32858", + ["text"] = "Allocates Dread Engineer's Concoction", + ["type"] = "explicit", + }, + [2501] = { + ["id"] = "explicit.stat_2954116742|59070", + ["text"] = "Allocates Enduring Archon", + ["type"] = "explicit", + }, + [2502] = { + ["id"] = "explicit.stat_2954116742|43854", + ["text"] = "Allocates All For One", + ["type"] = "explicit", + }, + [2503] = { + ["id"] = "explicit.stat_2954116742|60764", + ["text"] = "Allocates Feathered Fletching", + ["type"] = "explicit", + }, + [2504] = { + ["id"] = "explicit.stat_2954116742|40345", + ["text"] = "Allocates Master of Hexes", + ["type"] = "explicit", + }, + [2505] = { + ["id"] = "explicit.stat_2954116742|52229", + ["text"] = "Allocates Secrets of the Orb", + ["type"] = "explicit", + }, + [2506] = { + ["id"] = "explicit.stat_2954116742|32354", + ["text"] = "Allocates Defiance", + ["type"] = "explicit", + }, + [2507] = { + ["id"] = "explicit.stat_2954116742|42103", + ["text"] = "Allocates Enduring Deflection", + ["type"] = "explicit", + }, + [2508] = { + ["id"] = "explicit.stat_2954116742|47363", + ["text"] = "Allocates Colossal Weapon", + ["type"] = "explicit", + }, + [2509] = { + ["id"] = "explicit.stat_2954116742|24766", + ["text"] = "Allocates Paranoia", + ["type"] = "explicit", + }, + [2510] = { + ["id"] = "explicit.stat_2954116742|46683", + ["text"] = "Allocates Inherited Strength ", + ["type"] = "explicit", + }, + [2511] = { + ["id"] = "explicit.stat_2954116742|32799", + ["text"] = "Allocates Captivating Companionship", + ["type"] = "explicit", + }, + [2512] = { + ["id"] = "explicit.stat_3775736880", + ["text"] = "Gain 1 Fear Incarnate when you Cull a target", + ["type"] = "explicit", + }, + [2513] = { + ["id"] = "explicit.stat_2954116742|29899", + ["text"] = "Allocates Finish Them", + ["type"] = "explicit", + }, + [2514] = { + ["id"] = "explicit.stat_2954116742|52348", + ["text"] = "Allocates Carved Earth", + ["type"] = "explicit", + }, + [2515] = { + ["id"] = "explicit.stat_2954116742|41811", + ["text"] = "Allocates Shatter Palm", + ["type"] = "explicit", + }, + [2516] = { + ["id"] = "explicit.stat_2954116742|4447", + ["text"] = "Allocates Pin their Motivation", + ["type"] = "explicit", + }, + [2517] = { + ["id"] = "explicit.stat_2954116742|5332", + ["text"] = "Allocates Crystallised Immunities", + ["type"] = "explicit", + }, + [2518] = { + ["id"] = "explicit.stat_2954116742|17762", + ["text"] = "Allocates Vengeance", + ["type"] = "explicit", + }, + [2519] = { + ["id"] = "explicit.stat_2954116742|15606", + ["text"] = "Allocates Thrill of the Fight", + ["type"] = "explicit", + }, + [2520] = { + ["id"] = "explicit.stat_2954116742|35581", + ["text"] = "Allocates Near at Hand", + ["type"] = "explicit", + }, + [2521] = { + ["id"] = "explicit.stat_2954116742|18397", + ["text"] = "Allocates Savoured Blood", + ["type"] = "explicit", + }, + [2522] = { + ["id"] = "explicit.stat_2954116742|13823", + ["text"] = "Allocates Controlling Magic", + ["type"] = "explicit", + }, + [2523] = { + ["id"] = "explicit.stat_264262054|8", + ["text"] = "Legacy of Quicksilver", + ["type"] = "explicit", + }, + [2524] = { + ["id"] = "explicit.stat_2954116742|61741", + ["text"] = "Allocates Lasting Toxins", + ["type"] = "explicit", + }, + [2525] = { + ["id"] = "explicit.stat_2954116742|1352", + ["text"] = "Allocates Unbending", + ["type"] = "explicit", + }, + [2526] = { + ["id"] = "explicit.stat_2954116742|31826", + ["text"] = "Allocates Long Distance Relationship", + ["type"] = "explicit", + }, + [2527] = { + ["id"] = "explicit.stat_2954116742|62455", + ["text"] = "Allocates Bannerman", + ["type"] = "explicit", + }, + [2528] = { + ["id"] = "explicit.stat_2954116742|49550", + ["text"] = "Allocates Prolonged Fury", + ["type"] = "explicit", + }, + [2529] = { + ["id"] = "explicit.stat_2954116742|9444", + ["text"] = "Allocates One with the Storm", + ["type"] = "explicit", + }, + [2530] = { + ["id"] = "explicit.stat_2954116742|46499", + ["text"] = "Allocates Guts", + ["type"] = "explicit", + }, + [2531] = { + ["id"] = "explicit.stat_2954116742|14777", + ["text"] = "Allocates Bravado", + ["type"] = "explicit", + }, + [2532] = { + ["id"] = "explicit.stat_2954116742|27434", + ["text"] = "Allocates Archon of the Storm", + ["type"] = "explicit", + }, + [2533] = { + ["id"] = "explicit.stat_2954116742|64851", + ["text"] = "Allocates Flashy Parrying", + ["type"] = "explicit", + }, + [2534] = { + ["id"] = "explicit.stat_2954116742|43396", + ["text"] = "Allocates Ancestral Reach", + ["type"] = "explicit", + }, + [2535] = { + ["id"] = "explicit.stat_3526763442", + ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", + ["type"] = "explicit", + }, + [2536] = { + ["id"] = "explicit.stat_2954116742|8554", + ["text"] = "Allocates Burning Nature", + ["type"] = "explicit", + }, + [2537] = { + ["id"] = "explicit.stat_2954116742|50912", + ["text"] = "Allocates Imbibed Power", + ["type"] = "explicit", + }, + [2538] = { + ["id"] = "explicit.stat_2954116742|25619", + ["text"] = "Allocates Sand in the Eyes", + ["type"] = "explicit", + }, + [2539] = { + ["id"] = "explicit.stat_2954116742|38628", + ["text"] = "Allocates Escalating Toxins", + ["type"] = "explicit", + }, + [2540] = { + ["id"] = "explicit.stat_2954116742|63739", + ["text"] = "Allocates Vigorous Remnants", + ["type"] = "explicit", + }, + [2541] = { + ["id"] = "explicit.stat_315717203", + ["text"] = "Remnants you create affect Allies in your Presence as well as you when collected", + ["type"] = "explicit", + }, + [2542] = { + ["id"] = "explicit.stat_2954116742|53853", + ["text"] = "Allocates Backup Plan", + ["type"] = "explicit", + }, + [2543] = { + ["id"] = "explicit.stat_2954116742|48240", + ["text"] = "Allocates Quick Recovery", + ["type"] = "explicit", + }, + [2544] = { + ["id"] = "explicit.stat_2954116742|30720", + ["text"] = "Allocates Entropic Incarnation", + ["type"] = "explicit", + }, + [2545] = { + ["id"] = "explicit.stat_2954116742|12750", + ["text"] = "Allocates Vale Shelter", + ["type"] = "explicit", + }, + [2546] = { + ["id"] = "explicit.stat_2954116742|55308", + ["text"] = "Allocates Sling Shots", + ["type"] = "explicit", + }, + [2547] = { + ["id"] = "explicit.stat_2954116742|42302", + ["text"] = "Allocates Split Shot", + ["type"] = "explicit", + }, + [2548] = { + ["id"] = "explicit.stat_2954116742|8660", + ["text"] = "Allocates Reverberation", + ["type"] = "explicit", + }, + [2549] = { + ["id"] = "explicit.stat_2954116742|40117", + ["text"] = "Allocates Spiked Armour", + ["type"] = "explicit", + }, + [2550] = { + ["id"] = "explicit.stat_2954116742|65243", + ["text"] = "Allocates Enveloping Presence", + ["type"] = "explicit", + }, + [2551] = { + ["id"] = "explicit.stat_2954116742|35849", + ["text"] = "Allocates Thickened Arteries", + ["type"] = "explicit", + }, + [2552] = { + ["id"] = "explicit.stat_2954116742|23630", + ["text"] = "Allocates Self Immolation", + ["type"] = "explicit", + }, + [2553] = { + ["id"] = "explicit.stat_2954116742|27513", + ["text"] = "Allocates Material Solidification", + ["type"] = "explicit", + }, + [2554] = { + ["id"] = "explicit.stat_2954116742|40803", + ["text"] = "Allocates Sigil of Ice", + ["type"] = "explicit", + }, + [2555] = { + ["id"] = "explicit.stat_2954116742|21453", + ["text"] = "Allocates Breakage", + ["type"] = "explicit", + }, + [2556] = { + ["id"] = "explicit.stat_2954116742|28329", + ["text"] = "Allocates Pressure Points", + ["type"] = "explicit", + }, + [2557] = { + ["id"] = "explicit.stat_2954116742|13980", + ["text"] = "Allocates Split the Earth", + ["type"] = "explicit", + }, + [2558] = { + ["id"] = "explicit.stat_2954116742|42390", + ["text"] = "Allocates Overheating Blow", + ["type"] = "explicit", + }, + [2559] = { + ["id"] = "explicit.stat_2954116742|50884", + ["text"] = "Allocates Primal Sundering", + ["type"] = "explicit", + }, + [2560] = { + ["id"] = "explicit.stat_2954116742|40687", + ["text"] = "Allocates Lead by Example", + ["type"] = "explicit", + }, + [2561] = { + ["id"] = "explicit.stat_2954116742|13708", + ["text"] = "Allocates Curved Weapon", + ["type"] = "explicit", + }, + [2562] = { + ["id"] = "explicit.stat_2954116742|40480", + ["text"] = "Allocates Harmonic Generator", + ["type"] = "explicit", + }, + [2563] = { + ["id"] = "explicit.stat_2954116742|5594", + ["text"] = "Allocates Decrepifying Curse", + ["type"] = "explicit", + }, + [2564] = { + ["id"] = "explicit.stat_2954116742|52199", + ["text"] = "Allocates Overexposure", + ["type"] = "explicit", + }, + [2565] = { + ["id"] = "explicit.stat_2954116742|34425", + ["text"] = "Allocates Precise Volatility", + ["type"] = "explicit", + }, + [2566] = { + ["id"] = "explicit.stat_2954116742|36976", + ["text"] = "Allocates Marked for Death", + ["type"] = "explicit", + }, + [2567] = { + ["id"] = "explicit.stat_2954116742|50253", + ["text"] = "Allocates Aftershocks", + ["type"] = "explicit", + }, + [2568] = { + ["id"] = "explicit.stat_2954116742|37514", + ["text"] = "Allocates Whirling Assault", + ["type"] = "explicit", + }, + [2569] = { + ["id"] = "explicit.stat_1992191903", + ["text"] = "# to Level of all Mark Skills", + ["type"] = "explicit", + }, + [2570] = { + ["id"] = "explicit.stat_2954116742|5580", + ["text"] = "Allocates Watchtowers", + ["type"] = "explicit", + }, + [2571] = { + ["id"] = "explicit.stat_2954116742|40325", + ["text"] = "Allocates Resolution", + ["type"] = "explicit", + }, + [2572] = { + ["id"] = "explicit.stat_2954116742|4544", + ["text"] = "Allocates The Ancient Serpent", + ["type"] = "explicit", + }, + [2573] = { + ["id"] = "explicit.stat_2954116742|2575", + ["text"] = "Allocates Ancestral Alacrity", + ["type"] = "explicit", + }, + [2574] = { + ["id"] = "explicit.stat_325171970", + ["text"] = "#% increased Attack Speed while missing Runic Ward", + ["type"] = "explicit", + }, + [2575] = { + ["id"] = "explicit.stat_2954116742|46384", + ["text"] = "Allocates Wide Barrier", + ["type"] = "explicit", + }, + [2576] = { + ["id"] = "explicit.stat_2954116742|1823", + ["text"] = "Allocates Illuminated Crown", + ["type"] = "explicit", + }, + [2577] = { + ["id"] = "explicit.stat_2954116742|24483", + ["text"] = "Allocates Direct Approach", + ["type"] = "explicit", + }, + [2578] = { + ["id"] = "explicit.stat_2954116742|34340", + ["text"] = "Allocates Mass Rejuvenation", + ["type"] = "explicit", + }, + [2579] = { + ["id"] = "explicit.stat_2954116742|45244", + ["text"] = "Allocates Refills", + ["type"] = "explicit", + }, + [2580] = { + ["id"] = "explicit.stat_2954116742|37742", + ["text"] = "Allocates Manifold Method", + ["type"] = "explicit", + }, + [2581] = { + ["id"] = "explicit.stat_2954116742|34541", + ["text"] = "Allocates Energising Deflection", + ["type"] = "explicit", + }, + [2582] = { + ["id"] = "explicit.stat_2319832234", + ["text"] = "#% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["type"] = "explicit", + }, + [2583] = { + ["id"] = "explicit.stat_2954116742|58714", + ["text"] = "Allocates Grenadier", + ["type"] = "explicit", + }, + [2584] = { + ["id"] = "explicit.stat_2954116742|58215", + ["text"] = "Allocates Sanguimantic Rituals", + ["type"] = "explicit", + }, + [2585] = { + ["id"] = "explicit.stat_2954116742|55817", + ["text"] = "Allocates Alchemical Oil", + ["type"] = "explicit", + }, + [2586] = { + ["id"] = "explicit.stat_2954116742|12661", + ["text"] = "Allocates Asceticism", + ["type"] = "explicit", + }, + [2587] = { + ["id"] = "explicit.stat_2954116742|12964", + ["text"] = "Allocates Lone Warrior", + ["type"] = "explicit", + }, + [2588] = { + ["id"] = "explicit.stat_679019978", + ["text"] = "#% of Damage is taken from Mana before Life while not on Low Mana", + ["type"] = "explicit", + }, + [2589] = { + ["id"] = "explicit.stat_2954116742|64543", + ["text"] = "Allocates Unbound Forces", + ["type"] = "explicit", + }, + [2590] = { + ["id"] = "explicit.stat_2954116742|15030", + ["text"] = "Allocates Consistent Intake", + ["type"] = "explicit", + }, + [2591] = { + ["id"] = "explicit.stat_2954116742|65016", + ["text"] = "Allocates Intense Flames", + ["type"] = "explicit", + }, + [2592] = { + ["id"] = "explicit.stat_2954116742|64240", + ["text"] = "Allocates Battle Fever", + ["type"] = "explicit", + }, + [2593] = { + ["id"] = "explicit.stat_2954116742|52971", + ["text"] = "Allocates The Soul Meridian", + ["type"] = "explicit", + }, + [2594] = { + ["id"] = "explicit.stat_2954116742|19722", + ["text"] = "Allocates Thin Ice", + ["type"] = "explicit", + }, + [2595] = { + ["id"] = "explicit.stat_2954116742|9736", + ["text"] = "Allocates Insulated Treads", + ["type"] = "explicit", + }, + [2596] = { + ["id"] = "explicit.stat_2954116742|65193", + ["text"] = "Allocates Viciousness", + ["type"] = "explicit", + }, + [2597] = { + ["id"] = "explicit.stat_2954116742|26479", + ["text"] = "Allocates Steadfast Resolve", + ["type"] = "explicit", + }, + [2598] = { + ["id"] = "explicit.stat_2954116742|35324", + ["text"] = "Allocates Burnout", + ["type"] = "explicit", + }, + [2599] = { + ["id"] = "explicit.stat_2954116742|58939", + ["text"] = "Allocates Dispatch Foes", + ["type"] = "explicit", + }, + [2600] = { + ["id"] = "explicit.stat_2954116742|7275", + ["text"] = "Allocates Electrocuting Exposure", + ["type"] = "explicit", + }, + [2601] = { + ["id"] = "explicit.stat_2954116742|53566", + ["text"] = "Allocates Run and Gun", + ["type"] = "explicit", + }, + [2602] = { + ["id"] = "explicit.stat_2954116742|11376", + ["text"] = "Allocates Necrotic Touch", + ["type"] = "explicit", + }, + [2603] = { + ["id"] = "explicit.stat_2954116742|51509", + ["text"] = "Allocates Waters of Life", + ["type"] = "explicit", + }, + [2604] = { + ["id"] = "explicit.stat_2954116742|57785", + ["text"] = "Allocates Trained Turrets", + ["type"] = "explicit", + }, + [2605] = { + ["id"] = "explicit.stat_2954116742|24087", + ["text"] = "Allocates Everlasting Infusions", + ["type"] = "explicit", + }, + [2606] = { + ["id"] = "explicit.stat_2954116742|15114", + ["text"] = "Allocates Boundless Growth", + ["type"] = "explicit", + }, + [2607] = { + ["id"] = "explicit.stat_2954116742|35855", + ["text"] = "Allocates Fortifying Blood", + ["type"] = "explicit", + }, + [2608] = { + ["id"] = "explicit.stat_2954116742|61104", + ["text"] = "Allocates Staggering Wounds", + ["type"] = "explicit", + }, + [2609] = { + ["id"] = "explicit.stat_1359862146", + ["text"] = "Can Allocate Passive Skills from the Warrior's starting point", + ["type"] = "explicit", + }, + [2610] = { + ["id"] = "explicit.stat_2954116742|35477", + ["text"] = "Allocates Far Sighted", + ["type"] = "explicit", + }, + [2611] = { + ["id"] = "explicit.stat_2954116742|7668", + ["text"] = "Allocates Internal Bleeding", + ["type"] = "explicit", + }, + [2612] = { + ["id"] = "explicit.stat_2954116742|23764", + ["text"] = "Allocates Alternating Current", + ["type"] = "explicit", + }, + [2613] = { + ["id"] = "explicit.stat_2954116742|20251", + ["text"] = "Allocates Splitting Ground", + ["type"] = "explicit", + }, + [2614] = { + ["id"] = "explicit.stat_2954116742|33099", + ["text"] = "Allocates Hunter's Talisman", + ["type"] = "explicit", + }, + [2615] = { + ["id"] = "explicit.stat_2954116742|45632", + ["text"] = "Allocates Mind Eraser", + ["type"] = "explicit", + }, + [2616] = { + ["id"] = "explicit.stat_2954116742|57110", + ["text"] = "Allocates Infused Flesh", + ["type"] = "explicit", + }, + [2617] = { + ["id"] = "explicit.stat_2954116742|44917", + ["text"] = "Allocates Self Mortification", + ["type"] = "explicit", + }, + [2618] = { + ["id"] = "explicit.stat_4259875040", + ["text"] = "#% increased Magnitude of Impales inflicted with Spells", + ["type"] = "explicit", + }, + [2619] = { + ["id"] = "explicit.stat_54812069", + ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", + ["type"] = "explicit", + }, + [2620] = { + ["id"] = "explicit.stat_2954116742|47088", + ["text"] = "Allocates Sic 'Em", + ["type"] = "explicit", + }, + [2621] = { + ["id"] = "explicit.stat_2954116742|60619", + ["text"] = "Allocates Scales of the Wyvern", + ["type"] = "explicit", + }, + [2622] = { + ["id"] = "explicit.stat_2954116742|51105", + ["text"] = "Allocates Spirit Bond", + ["type"] = "explicit", + }, + [2623] = { + ["id"] = "explicit.stat_2954116742|11886", + ["text"] = "Allocates Mauling Stuns", + ["type"] = "explicit", + }, + [2624] = { + ["id"] = "explicit.stat_1002535626", + ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", + ["type"] = "explicit", + }, + [2625] = { + ["id"] = "explicit.stat_2954116742|8782", + ["text"] = "Allocates Empowering Infusions", + ["type"] = "explicit", + }, + [2626] = { + ["id"] = "explicit.stat_3742865955", + ["text"] = "Minions deal #% increased Damage with Command Skills", + ["type"] = "explicit", + }, + [2627] = { + ["id"] = "explicit.stat_797289402", + ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", + ["type"] = "explicit", + }, + [2628] = { + ["id"] = "explicit.stat_2954116742|37276", + ["text"] = "Allocates Battle Trance", + ["type"] = "explicit", + }, + [2629] = { + ["id"] = "explicit.stat_2954116742|28542", + ["text"] = "Allocates The Molten One's Gift", + ["type"] = "explicit", + }, + [2630] = { + ["id"] = "explicit.stat_2954116742|56767", + ["text"] = "Allocates Electrifying Daze", + ["type"] = "explicit", + }, + [2631] = { + ["id"] = "explicit.stat_4108426433", + ["text"] = "#% of Fire damage taken as Cold damage", + ["type"] = "explicit", + }, + [2632] = { + ["id"] = "explicit.stat_2954116742|8397", + ["text"] = "Allocates Empowering Remains", + ["type"] = "explicit", + }, + [2633] = { + ["id"] = "explicit.stat_2954116742|16790", + ["text"] = "Allocates Efficient Casting", + ["type"] = "explicit", + }, + [2634] = { + ["id"] = "explicit.stat_2954116742|48774", + ["text"] = "Allocates Taut Flesh", + ["type"] = "explicit", + }, + [2635] = { + ["id"] = "explicit.stat_2954116742|64650", + ["text"] = "Allocates Wary Dodging", + ["type"] = "explicit", + }, + [2636] = { + ["id"] = "explicit.stat_2954116742|63451", + ["text"] = "Allocates Cranial Impact", + ["type"] = "explicit", + }, + [2637] = { + ["id"] = "explicit.stat_2954116742|65023", + ["text"] = "Allocates Impenetrable Shell", + ["type"] = "explicit", + }, + [2638] = { + ["id"] = "explicit.stat_2954116742|46692", + ["text"] = "Allocates Efficient Alchemy", + ["type"] = "explicit", + }, + [2639] = { + ["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", + }, + [2640] = { + ["id"] = "explicit.stat_2954116742|1603", + ["text"] = "Allocates Storm Driven", + ["type"] = "explicit", + }, + [2641] = { + ["id"] = "explicit.stat_2954116742|27950", + ["text"] = "Allocates Polished Iron", + ["type"] = "explicit", + }, + [2642] = { + ["id"] = "explicit.stat_2954116742|29306", + ["text"] = "Allocates Chakra of Thought", + ["type"] = "explicit", + }, + [2643] = { + ["id"] = "explicit.stat_2954116742|6304", + ["text"] = "Allocates Stand Ground", + ["type"] = "explicit", + }, + [2644] = { + ["id"] = "explicit.stat_2954116742|55375", + ["text"] = "Allocates Licking Wounds", + ["type"] = "explicit", + }, + [2645] = { + ["id"] = "explicit.stat_2954116742|26447", + ["text"] = "Allocates Refocus", + ["type"] = "explicit", + }, + [2646] = { + ["id"] = "explicit.stat_2954116742|3188", + ["text"] = "Allocates Revenge", + ["type"] = "explicit", + }, + [2647] = { + ["id"] = "explicit.stat_2475221757", + ["text"] = "#% increased Effect of Suffixes", + ["type"] = "explicit", + }, + [2648] = { + ["id"] = "explicit.stat_2218479786", + ["text"] = "Can Allocate Passive Skills from the Shadow's starting point", + ["type"] = "explicit", + }, + [2649] = { + ["id"] = "explicit.stat_2954116742|9290", + ["text"] = "Allocates Rusted Pins", + ["type"] = "explicit", + }, + [2650] = { + ["id"] = "explicit.stat_2954116742|25211", + ["text"] = "Allocates Waning Hindrances", + ["type"] = "explicit", + }, + [2651] = { + ["id"] = "explicit.stat_2954116742|20388", + ["text"] = "Allocates Regenerative Flesh", + ["type"] = "explicit", + }, + [2652] = { + ["id"] = "explicit.stat_2954116742|63400", + ["text"] = "Allocates Chakra of Elements", + ["type"] = "explicit", + }, + [2653] = { + ["id"] = "explicit.stat_1067622524", + ["text"] = "Companions deal #% increased damage to your Marked targets", + ["type"] = "explicit", + }, + [2654] = { + ["id"] = "explicit.stat_2954116742|9328", + ["text"] = "Allocates Spirit of the Bear", + ["type"] = "explicit", + }, + [2655] = { + ["id"] = "explicit.stat_2954116742|46224", + ["text"] = "Allocates Arcane Alchemy", + ["type"] = "explicit", + }, + [2656] = { + ["id"] = "explicit.stat_2954116742|48215", + ["text"] = "Allocates Headshot", + ["type"] = "explicit", + }, + [2657] = { + ["id"] = "explicit.stat_2638381947", + ["text"] = "Skills from Corrupted Gems have #% increased Cost Efficiency during any Flask Effect", + ["type"] = "explicit", + }, + [2658] = { + ["id"] = "explicit.stat_2020463573", + ["text"] = "#% of Charges consumed by used Life Flasks are granted to your Charms", + ["type"] = "explicit", + }, + [2659] = { + ["id"] = "explicit.stat_2954116742|52245", + ["text"] = "Allocates Distant Dreamer", + ["type"] = "explicit", + }, + [2660] = { + ["id"] = "explicit.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", + ["type"] = "explicit", + }, + [2661] = { + ["id"] = "explicit.stat_2954116742|33542", + ["text"] = "Allocates Quick Fingers", + ["type"] = "explicit", + }, + [2662] = { + ["id"] = "explicit.stat_1571268546", + ["text"] = "#% increased Corrupted Charms effect duration", + ["type"] = "explicit", + }, + [2663] = { + ["id"] = "explicit.stat_3628041050", + ["text"] = "Enemies in your Presence gain 1 Gruelling Madness each second", + ["type"] = "explicit", + }, + [2664] = { + ["id"] = "explicit.stat_632698321", + ["text"] = "#% increased chance Vaal Beacons summon additional Monsters", + ["type"] = "explicit", + }, + [2665] = { + ["id"] = "explicit.stat_2954116742|16142", + ["text"] = "Allocates Deep Freeze", + ["type"] = "explicit", + }, + [2666] = { + ["id"] = "explicit.stat_469006068", + ["text"] = "Gain Guard equal to #% of missing Energy Shield for 4 seconds when you Dodge Roll", + ["type"] = "explicit", + }, + [2667] = { + ["id"] = "explicit.stat_504054855", + ["text"] = "#% faster Dodge Roll", + ["type"] = "explicit", + }, + [2668] = { + ["id"] = "explicit.stat_2954116742|61026", + ["text"] = "Allocates Crystalline Flesh", + ["type"] = "explicit", + }, + [2669] = { + ["id"] = "explicit.stat_2954116742|58198", + ["text"] = "Allocates Well of Power", + ["type"] = "explicit", + }, + [2670] = { + ["id"] = "explicit.stat_2954116742|18157", + ["text"] = "Allocates Tempered Defences", + ["type"] = "explicit", + }, + [2671] = { + ["id"] = "explicit.stat_2954116742|52803", + ["text"] = "Allocates Hale Traveller", + ["type"] = "explicit", + }, + [2672] = { + ["id"] = "explicit.stat_3774577097", + ["text"] = "You are Blind", + ["type"] = "explicit", + }, + [2673] = { + ["id"] = "explicit.stat_2954116742|1169", + ["text"] = "Allocates Urgent Call", + ["type"] = "explicit", + }, + [2674] = { + ["id"] = "explicit.stat_2954116742|44765", + ["text"] = "Allocates Distracting Presence", + ["type"] = "explicit", + }, + [2675] = { + ["id"] = "explicit.stat_2954116742|18485", + ["text"] = "Allocates Unstable Bond", + ["type"] = "explicit", + }, + [2676] = { + ["id"] = "explicit.stat_3116298775", + ["text"] = "Can Allocate Passive Skills from the Ranger's starting point", + ["type"] = "explicit", + }, + [2677] = { + ["id"] = "explicit.stat_3984146263", + ["text"] = "Tempest Bells are destroyed after an additional # Hits", + ["type"] = "explicit", + }, + [2678] = { + ["id"] = "explicit.stat_2954116742|27108", + ["text"] = "Allocates Mass Hysteria", + ["type"] = "explicit", + }, + [2679] = { + ["id"] = "explicit.stat_2954116742|12245", + ["text"] = "Allocates Arsonist", + ["type"] = "explicit", + }, + [2680] = { + ["id"] = "explicit.stat_3858572996", + ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", + ["type"] = "explicit", + }, + [2681] = { + ["id"] = "explicit.stat_2954116742|35031", + ["text"] = "Allocates Chakra of Life", + ["type"] = "explicit", + }, + [2682] = { + ["id"] = "explicit.stat_2954116742|33585", + ["text"] = "Allocates Unspoken Bond", + ["type"] = "explicit", + }, + [2683] = { + ["id"] = "explicit.stat_2954116742|5257", + ["text"] = "Allocates Echoing Frost", + ["type"] = "explicit", + }, + [2684] = { + ["id"] = "explicit.stat_2954116742|25620", + ["text"] = "Allocates Meat Recycling", + ["type"] = "explicit", + }, + [2685] = { + ["id"] = "explicit.stat_2954116742|51446", + ["text"] = "Allocates Leather Bound Gauntlets", + ["type"] = "explicit", + }, + [2686] = { + ["id"] = "explicit.stat_2951965588", + ["text"] = "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", + ["type"] = "explicit", + }, + [2687] = { + ["id"] = "explicit.stat_2954116742|31724", + ["text"] = "Allocates Iron Slippers", + ["type"] = "explicit", + }, + [2688] = { + ["id"] = "explicit.stat_2954116742|29762", + ["text"] = "Allocates Guttural Roar", + ["type"] = "explicit", + }, + [2689] = { + ["id"] = "explicit.stat_3273962791", + ["text"] = "# metres to Melee Strike Range while Unarmed", + ["type"] = "explicit", + }, + [2690] = { + ["id"] = "explicit.stat_2954116742|17725", + ["text"] = "Allocates Bonded Precision", + ["type"] = "explicit", + }, + [2691] = { + ["id"] = "explicit.stat_2954116742|36364", + ["text"] = "Allocates Electrocution", + ["type"] = "explicit", + }, + [2692] = { + ["id"] = "explicit.stat_2954116742|41935", + ["text"] = "Allocates Hide of the Bear", + ["type"] = "explicit", + }, + [2693] = { + ["id"] = "explicit.stat_2954116742|60464", + ["text"] = "Allocates Fan the Flames", + ["type"] = "explicit", + }, + [2694] = { + ["id"] = "explicit.stat_1347539079", + ["text"] = "#% Surpassing chance to fire an additional Projectile", + ["type"] = "explicit", + }, + [2695] = { + ["id"] = "explicit.stat_2954116742|45612", + ["text"] = "Allocates Defensive Reflexes", + ["type"] = "explicit", + }, + [2696] = { + ["id"] = "explicit.stat_2954116742|31773", + ["text"] = "Allocates Resurging Archon", + ["type"] = "explicit", + }, + [2697] = { + ["id"] = "explicit.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", + ["type"] = "explicit", + }, + [2698] = { + ["id"] = "explicit.stat_2954116742|33216", + ["text"] = "Allocates Deep Wounds", + ["type"] = "explicit", + }, + [2699] = { + ["id"] = "explicit.stat_2895378479", + ["text"] = "#% increased Effectiveness of Rare Breach Monsters", + ["type"] = "explicit", + }, + [2700] = { + ["id"] = "explicit.stat_2954116742|7847", + ["text"] = "Allocates The Fabled Stag", + ["type"] = "explicit", + }, + [2701] = { + ["id"] = "explicit.stat_589361270", + ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", + ["type"] = "explicit", + }, + [2702] = { + ["id"] = "explicit.stat_2954116742|4810", + ["text"] = "Allocates Sanguine Tolerance", + ["type"] = "explicit", + }, + [2703] = { + ["id"] = "explicit.stat_2954116742|20289", + ["text"] = "Allocates Frozen Claw", + ["type"] = "explicit", + }, + [2704] = { + ["id"] = "explicit.stat_2954116742|53683", + ["text"] = "Allocates Efficient Loading", + ["type"] = "explicit", + }, + [2705] = { + ["id"] = "explicit.stat_2954116742|51891", + ["text"] = "Allocates Lucidity", + ["type"] = "explicit", + }, + [2706] = { + ["id"] = "explicit.stat_971590056", + ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", + ["type"] = "explicit", + }, + [2707] = { + ["id"] = "explicit.stat_554145967", + ["text"] = "Recover # Runic Ward when a Charm is used", + ["type"] = "explicit", + }, + [2708] = { + ["id"] = "explicit.stat_2954116742|14602", + ["text"] = "Allocates Specialised Shots", + ["type"] = "explicit", + }, + [2709] = { + ["id"] = "explicit.stat_2954116742|7062", + ["text"] = "Allocates Reusable Ammunition", + ["type"] = "explicit", + }, + [2710] = { + ["id"] = "explicit.stat_1687542781", + ["text"] = "Notable Passive Skills in Radius also grant #% to Lightning Resistance", + ["type"] = "explicit", + }, + [2711] = { + ["id"] = "explicit.stat_2954116742|56714", + ["text"] = "Allocates Swift Flight", + ["type"] = "explicit", + }, + [2712] = { + ["id"] = "explicit.stat_2954116742|52764", + ["text"] = "Allocates Mystical Rage", + ["type"] = "explicit", + }, + [2713] = { + ["id"] = "explicit.stat_2954116742|24491", + ["text"] = "Allocates Invocated Echoes", + ["type"] = "explicit", + }, + [2714] = { + ["id"] = "explicit.stat_2954116742|39884", + ["text"] = "Allocates Searing Heat", + ["type"] = "explicit", + }, + [2715] = { + ["id"] = "explicit.stat_2954116742|63431", + ["text"] = "Allocates Leeching Toxins", + ["type"] = "explicit", + }, + [2716] = { + ["id"] = "explicit.stat_2954116742|38570", + ["text"] = "Allocates Demolitionist", + ["type"] = "explicit", + }, + [2717] = { + ["id"] = "explicit.stat_2954116742|53131", + ["text"] = "Allocates Tukohama's Brew", + ["type"] = "explicit", + }, + [2718] = { + ["id"] = "explicit.stat_1568848828", + ["text"] = "Recover # Runic Ward when you Block", + ["type"] = "explicit", + }, + [2719] = { + ["id"] = "explicit.stat_264262054|4", + ["text"] = "Legacy of Diamond", + ["type"] = "explicit", + }, + [2720] = { + ["id"] = "explicit.stat_2954116742|4579", + ["text"] = "Allocates Unbothering Cold", + ["type"] = "explicit", + }, + [2721] = { + ["id"] = "explicit.stat_1867725690", + ["text"] = "Hits with this Weapon have #% chance to Trigger Molten Shower per 25 Strength", + ["type"] = "explicit", + }, + [2722] = { + ["id"] = "explicit.stat_4056809290", + ["text"] = "Cannot inflict Elemental Ailments", + ["type"] = "explicit", + }, + [2723] = { + ["id"] = "explicit.stat_2954116742|37302", + ["text"] = "Allocates Kept at Bay", + ["type"] = "explicit", + }, + [2724] = { + ["id"] = "explicit.stat_2954116742|28408", + ["text"] = "Allocates Invigorating Hate", + ["type"] = "explicit", + }, + [2725] = { + ["id"] = "explicit.stat_2954116742|41972", + ["text"] = "Allocates Glaciation", + ["type"] = "explicit", + }, + [2726] = { + ["id"] = "explicit.stat_2954116742|42660", + ["text"] = "Allocates Commanding Rage", + ["type"] = "explicit", + }, + [2727] = { + ["id"] = "explicit.stat_2954116742|59433", + ["text"] = "Allocates Thirst for Endurance", + ["type"] = "explicit", + }, + [2728] = { + ["id"] = "explicit.stat_2954116742|56488", + ["text"] = "Allocates Glancing Deflection", + ["type"] = "explicit", + }, + [2729] = { + ["id"] = "explicit.stat_2678924815", + ["text"] = "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance", + ["type"] = "explicit", + }, + [2730] = { + ["id"] = "explicit.stat_2954116742|1502", + ["text"] = "Allocates Draiocht Cleansing", + ["type"] = "explicit", + }, + [2731] = { + ["id"] = "explicit.stat_2954116742|13844", + ["text"] = "Allocates Growing Peril", + ["type"] = "explicit", + }, + [2732] = { + ["id"] = "explicit.stat_2954116742|23244", + ["text"] = "Allocates Bounty Hunter", + ["type"] = "explicit", + }, + [2733] = { + ["id"] = "explicit.stat_195270549", + ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", + ["type"] = "explicit", + }, + [2734] = { + ["id"] = "explicit.stat_2954116742|14324", + ["text"] = "Allocates Arcane Blossom", + ["type"] = "explicit", + }, + [2735] = { + ["id"] = "explicit.stat_3574578302", + ["text"] = "#% increased Explicit Fire Modifier magnitudes", + ["type"] = "explicit", + }, + [2736] = { + ["id"] = "explicit.stat_3441501978", + ["text"] = "#% to Fire and Lightning Resistances", + ["type"] = "explicit", + }, + [2737] = { + ["id"] = "explicit.stat_2954116742|38895", + ["text"] = "Allocates Crystal Elixir", + ["type"] = "explicit", + }, + [2738] = { + ["id"] = "explicit.stat_825116955", + ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", + ["type"] = "explicit", + }, + [2739] = { + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "explicit", + }, + [2740] = { + ["id"] = "explicit.stat_3120508478", + ["text"] = "#% increased Damage against Immobilised Enemies", + ["type"] = "explicit", + }, + [2741] = { + ["id"] = "explicit.stat_2954116742|22532", + ["text"] = "Allocates Fearful Paralysis", + ["type"] = "explicit", + }, + [2742] = { + ["id"] = "explicit.stat_2954116742|26563", + ["text"] = "Allocates Bone Chains", + ["type"] = "explicit", + }, + [2743] = { + ["id"] = "explicit.stat_2954116742|45370", + ["text"] = "Allocates The Raging Ox", + ["type"] = "explicit", + }, + [2744] = { + ["id"] = "explicit.stat_1615901249", + ["text"] = "Invocated skills have #% increased Maximum Energy", + ["type"] = "explicit", + }, + [2745] = { + ["id"] = "explicit.stat_2954116742|38965", + ["text"] = "Allocates Infused Limits", + ["type"] = "explicit", + }, + [2746] = { + ["id"] = "explicit.stat_2954116742|51129", + ["text"] = "Allocates Pile On", + ["type"] = "explicit", + }, + [2747] = { + ["id"] = "explicit.stat_2954116742|31326", + ["text"] = "Allocates Slow Burn", + ["type"] = "explicit", + }, + [2748] = { + ["id"] = "explicit.stat_2954116742|14343", + ["text"] = "Allocates Deterioration", + ["type"] = "explicit", + }, + [2749] = { + ["id"] = "explicit.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", + ["type"] = "explicit", + }, + [2750] = { + ["id"] = "explicit.stat_2954116742|46365", + ["text"] = "Allocates Gigantic Following", + ["type"] = "explicit", + }, + [2751] = { + ["id"] = "explicit.stat_2416650879", + ["text"] = "#% increased Rage Cost Efficiency", + ["type"] = "explicit", + }, + [2752] = { + ["id"] = "explicit.stat_2954116742|9323", + ["text"] = "Allocates Craving Slaughter", + ["type"] = "explicit", + }, + [2753] = { + ["id"] = "explicit.stat_541021467", + ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", + ["type"] = "explicit", + }, + [2754] = { + ["id"] = "explicit.stat_2954116742|51868", + ["text"] = "Allocates Molten Carapace", + ["type"] = "explicit", + }, + [2755] = { + ["id"] = "explicit.stat_2954116742|31745", + ["text"] = "Allocates Lockdown", + ["type"] = "explicit", + }, + [2756] = { + ["id"] = "explicit.stat_1793470535", + ["text"] = "Curses you inflict ignore Curse limit", + ["type"] = "explicit", + }, + [2757] = { + ["id"] = "explicit.stat_2954116742|7395", + ["text"] = "Allocates Retaliation", + ["type"] = "explicit", + }, + [2758] = { + ["id"] = "explicit.stat_1014398896", + ["text"] = "#% increased Spell Damage during any Flask Effect", + ["type"] = "explicit", + }, + [2759] = { + ["id"] = "explicit.stat_1548338404", + ["text"] = "Spell Hits Gain #% of Damage as Extra Physical Damage per Curse on target", + ["type"] = "explicit", + }, + [2760] = { + ["id"] = "explicit.stat_3121133045", + ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", + ["type"] = "explicit", + }, + [2761] = { + ["id"] = "explicit.stat_933355817", + ["text"] = "#% to gain Archon of Undeath when you create an Offering", + ["type"] = "explicit", + }, + [2762] = { + ["id"] = "explicit.stat_3128773415", + ["text"] = "Your speed is Unaffected by Slows while Sprinting", + ["type"] = "explicit", + }, + [2763] = { + ["id"] = "explicit.stat_2954116742|19644", + ["text"] = "Allocates Left Hand of Darkness", + ["type"] = "explicit", + }, + [2764] = { + ["id"] = "explicit.stat_2954116742|40292", + ["text"] = "Allocates Nimble Strength", + ["type"] = "explicit", + }, + [2765] = { + ["id"] = "explicit.stat_2954116742|7782", + ["text"] = "Allocates Rupturing Pins", + ["type"] = "explicit", + }, + [2766] = { + ["id"] = "explicit.stat_2954116742|32128", + ["text"] = "Allocates Flow of Time", + ["type"] = "explicit", + }, + [2767] = { + ["id"] = "explicit.stat_2954116742|42760", + ["text"] = "Allocates Chakra of Stability", + ["type"] = "explicit", + }, + [2768] = { + ["id"] = "explicit.stat_2954116742|59589", + ["text"] = "Allocates Heavy Armour", + ["type"] = "explicit", + }, + [2769] = { + ["id"] = "explicit.stat_2954116742|6133", + ["text"] = "Allocates Core of the Guardian", + ["type"] = "explicit", + }, + [2770] = { + ["id"] = "explicit.stat_2954116742|29288", + ["text"] = "Allocates Deadly Invocations", + ["type"] = "explicit", + }, + [2771] = { + ["id"] = "explicit.stat_2424163939", + ["text"] = "Physical Damage of Enemies Hitting you is Lucky", + ["type"] = "explicit", + }, + [2772] = { + ["id"] = "explicit.stat_2954116742|46024", + ["text"] = "Allocates Sigil of Lightning", + ["type"] = "explicit", + }, + [2773] = { + ["id"] = "explicit.stat_2954116742|36507", + ["text"] = "Allocates Vile Mending", + ["type"] = "explicit", + }, + [2774] = { + ["id"] = "explicit.stat_2538411280", + ["text"] = "Skills which Empower an Attack have #% chance to not count that Attack", + ["type"] = "explicit", + }, + [2775] = { + ["id"] = "explicit.stat_3832076641", + ["text"] = "Used when you release a skill with Perfect Timing", + ["type"] = "explicit", + }, + [2776] = { + ["id"] = "explicit.stat_2954116742|2344", + ["text"] = "Allocates Dimensional Weakspot", + ["type"] = "explicit", + }, + [2777] = { + ["id"] = "explicit.stat_3359496001", + ["text"] = "Can Allocate Passive Skills from the Sorceress's starting point", + ["type"] = "explicit", + }, + [2778] = { + ["id"] = "explicit.stat_2954116742|48734", + ["text"] = "Allocates The Howling Primate", + ["type"] = "explicit", + }, + [2779] = { + ["id"] = "explicit.stat_3621874554", + ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", + ["type"] = "explicit", + }, + [2780] = { + ["id"] = "explicit.stat_2939415499", + ["text"] = "#% more Curse Magnitudes", + ["type"] = "explicit", + }, + [2781] = { + ["id"] = "explicit.stat_1335369947", + ["text"] = "#% increased Explicit Physical Modifier magnitudes", + ["type"] = "explicit", + }, + [2782] = { + ["id"] = "explicit.stat_2954116742|17303", + ["text"] = "Allocates Utility Ordnance", + ["type"] = "explicit", + }, + [2783] = { + ["id"] = "explicit.stat_2954116742|53187", + ["text"] = "Allocates Warlord Berserker", + ["type"] = "explicit", + }, + [2784] = { + ["id"] = "explicit.stat_2653175601", + ["text"] = "Spell Hits Gain #% of Damage as Extra Chaos Damage per Curse on target", + ["type"] = "explicit", + }, + [2785] = { + ["id"] = "explicit.stat_3422093970", + ["text"] = "#% chance for Remnants you pick up to count as picking up an additional Remnant", + ["type"] = "explicit", + }, + [2786] = { + ["id"] = "explicit.stat_2954116742|20495", + ["text"] = "Allocates Dark Entropy", + ["type"] = "explicit", + }, + [2787] = { + ["id"] = "explicit.stat_3753008264", + ["text"] = "#% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", + ["type"] = "explicit", + }, + [2788] = { + ["id"] = "explicit.stat_1311130924", + ["text"] = "#% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", + ["type"] = "explicit", + }, + [2789] = { + ["id"] = "explicit.stat_2954116742|46124", + ["text"] = "Allocates Arcane Remnants", + ["type"] = "explicit", + }, + [2790] = { + ["id"] = "explicit.stat_2954116742|28482", + ["text"] = "Allocates Total Incineration", + ["type"] = "explicit", + }, + [2791] = { + ["id"] = "explicit.stat_2954116742|48974", + ["text"] = "Allocates Altered Brain Chemistry", + ["type"] = "explicit", + }, + [2792] = { + ["id"] = "explicit.stat_3891355829|3", + ["text"] = "Upgrades Radius to Very Large", + ["type"] = "explicit", + }, + [2793] = { + ["id"] = "explicit.stat_2954116742|4295", + ["text"] = "Allocates Adverse Growth", + ["type"] = "explicit", + }, + [2794] = { + ["id"] = "explicit.stat_264262054|13", + ["text"] = "Legacy of Sulphur", + ["type"] = "explicit", + }, + [2795] = { + ["id"] = "explicit.stat_264262054|7", + ["text"] = "Legacy of Jade", + ["type"] = "explicit", + }, + [2796] = { + ["id"] = "explicit.stat_2954116742|9187", + ["text"] = "Allocates Escalation", + ["type"] = "explicit", + }, + [2797] = { + ["id"] = "explicit.stat_2954116742|26214", + ["text"] = "Allocates Dominion", + ["type"] = "explicit", + }, + [2798] = { + ["id"] = "explicit.stat_343703314", + ["text"] = "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill", + ["type"] = "explicit", + }, + [2799] = { + ["id"] = "explicit.stat_3430033313", + ["text"] = "Off-hand Hits inflict Runefather's Challenge", + ["type"] = "explicit", + }, + [2800] = { + ["id"] = "explicit.stat_2954116742|61404", + ["text"] = "Allocates Equilibrium", + ["type"] = "explicit", + }, + [2801] = { + ["id"] = "explicit.stat_231689132", + ["text"] = "#% increased Explicit Elemental Damage Modifier magnitudes", + ["type"] = "explicit", + }, + [2802] = { + ["id"] = "explicit.stat_2954116742|15443", + ["text"] = "Allocates Endured Suffering", + ["type"] = "explicit", + }, + [2803] = { + ["id"] = "explicit.stat_2954116742|37408", + ["text"] = "Allocates Staunching", + ["type"] = "explicit", + }, + [2804] = { + ["id"] = "explicit.stat_2954116742|33229", + ["text"] = "Allocates Haemorrhaging Cuts", + ["type"] = "explicit", + }, + [2805] = { + ["id"] = "explicit.stat_2954116742|60083", + ["text"] = "Allocates Pin and Run", + ["type"] = "explicit", + }, + [2806] = { + ["id"] = "explicit.stat_2954116742|2999", + ["text"] = "Allocates Final Barrage", + ["type"] = "explicit", + }, + [2807] = { + ["id"] = "explicit.stat_2954116742|38479", + ["text"] = "Allocates Close Confines", + ["type"] = "explicit", + }, + [2808] = { + ["id"] = "explicit.stat_2954116742|63255", + ["text"] = "Allocates Savagery", + ["type"] = "explicit", + }, + [2809] = { + ["id"] = "explicit.stat_2954116742|1420", + ["text"] = "Allocates Dizzying Sweep", + ["type"] = "explicit", + }, + [2810] = { + ["id"] = "explicit.stat_2954116742|54640", + ["text"] = "Allocates Constricting", + ["type"] = "explicit", + }, + [2811] = { + ["id"] = "explicit.stat_2954116742|57805", + ["text"] = "Allocates Clear Space", + ["type"] = "explicit", + }, + [2812] = { + ["id"] = "explicit.stat_2954116742|7302", + ["text"] = "Allocates Echoing Pulse", + ["type"] = "explicit", + }, + [2813] = { + ["id"] = "explicit.stat_2954116742|20686", + ["text"] = "Allocates Paragon", + ["type"] = "explicit", + }, + [2814] = { + ["id"] = "explicit.stat_2954116742|53607", + ["text"] = "Allocates Fortified Location", + ["type"] = "explicit", + }, + [2815] = { + ["id"] = "explicit.stat_1683568809", + ["text"] = "Convert #% of Fire Damage with Mace Skills to Cold Damage", + ["type"] = "explicit", + }, + [2816] = { + ["id"] = "explicit.stat_566086661", + ["text"] = "Attacks with this Weapon have Added Cold Damage equal to #% to #% of maximum Mana", + ["type"] = "explicit", + }, + [2817] = { + ["id"] = "explicit.stat_2954116742|24240", + ["text"] = "Allocates Time Manipulation", + ["type"] = "explicit", + }, + [2818] = { + ["id"] = "explicit.stat_1092555766", + ["text"] = "Life Leech recovers based on your Lightning damage as well as Physical damage", + ["type"] = "explicit", + }, + [2819] = { + ["id"] = "explicit.stat_145581225", + ["text"] = "#% increased Cast Speed during any Flask Effect", + ["type"] = "explicit", + }, + [2820] = { + ["id"] = "explicit.stat_1972391381", + ["text"] = "#% increased Explicit Resistance Modifier magnitudes", + ["type"] = "explicit", + }, + [2821] = { + ["id"] = "explicit.stat_738592688", + ["text"] = "Can Allocate Passive Skills from the Mercenary's starting point", + ["type"] = "explicit", + }, + [2822] = { + ["id"] = "explicit.stat_2381897042", + ["text"] = "#% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", + ["type"] = "explicit", + }, + [2823] = { + ["id"] = "explicit.stat_1321054058", + ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", + ["type"] = "explicit", + }, + [2824] = { + ["id"] = "explicit.stat_264262054|6", + ["text"] = "Legacy of Granite", + ["type"] = "explicit", + }, + [2825] = { + ["id"] = "explicit.stat_2954116742|30395", + ["text"] = "Allocates Howling Beast", + ["type"] = "explicit", + }, + [2826] = { + ["id"] = "explicit.stat_2954116742|47420", + ["text"] = "Allocates Expendable Army", + ["type"] = "explicit", + }, + [2827] = { + ["id"] = "explicit.stat_2954116742|9535", + ["text"] = "Allocates Brinerot Ferocity", + ["type"] = "explicit", + }, + [2828] = { + ["id"] = "explicit.stat_2954116742|35417", + ["text"] = "Allocates Wyvern's Breath", + ["type"] = "explicit", + }, + [2829] = { + ["id"] = "explicit.stat_2954116742|47560", + ["text"] = "Allocates Multi Shot", + ["type"] = "explicit", + }, + [2830] = { + ["id"] = "explicit.stat_2954116742|63541", + ["text"] = "Allocates Brush Off", + ["type"] = "explicit", + }, + [2831] = { + ["id"] = "explicit.stat_2954116742|42070", + ["text"] = "Allocates Saqawal's Guidance", + ["type"] = "explicit", + }, + [2832] = { + ["id"] = "explicit.stat_2954116742|28613", + ["text"] = "Allocates Roaring Cries", + ["type"] = "explicit", + }, + [2833] = { + ["id"] = "explicit.stat_3384867265", + ["text"] = "Sealed Skills have #% increased Seal gain frequency", + ["type"] = "explicit", + }, + [2834] = { + ["id"] = "explicit.stat_2954116742|20416", + ["text"] = "Allocates Grit", + ["type"] = "explicit", + }, + [2835] = { + ["id"] = "explicit.stat_73032170", + ["text"] = "Minions have #% increased Skill Speed with Command Skills", + ["type"] = "explicit", + }, + [2836] = { + ["id"] = "explicit.stat_2954116742|8896", + ["text"] = "Allocates Agile Sprinter", + ["type"] = "explicit", + }, + [2837] = { + ["id"] = "explicit.stat_2954116742|45874", + ["text"] = "Allocates Proliferating Weeds", + ["type"] = "explicit", + }, + [2838] = { + ["id"] = "explicit.stat_2954116742|20032", + ["text"] = "Allocates Erraticism", + ["type"] = "explicit", + }, + [2839] = { + ["id"] = "explicit.stat_2954116742|60269", + ["text"] = "Allocates Roil", + ["type"] = "explicit", + }, + [2840] = { + ["id"] = "explicit.stat_1180552088", + ["text"] = "#% increased effect of Archon Buffs on you", + ["type"] = "explicit", + }, + [2841] = { + ["id"] = "explicit.stat_2954116742|10029", + ["text"] = "Allocates Repulsion", + ["type"] = "explicit", + }, + [2842] = { + ["id"] = "explicit.stat_3929993388", + ["text"] = "Allocates # Sinister Jewel sockets", + ["type"] = "explicit", + }, + [2843] = { + ["id"] = "explicit.stat_2954116742|19236", + ["text"] = "Allocates Projectile Bulwark", + ["type"] = "explicit", + }, + [2844] = { + ["id"] = "explicit.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["type"] = "explicit", + }, + [2845] = { + ["id"] = "explicit.stat_3587953142", + ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", + ["type"] = "explicit", + }, + [2846] = { + ["id"] = "explicit.stat_1147913864", + ["text"] = "Lose #% Life per second while you have no Runic Ward during Effect", + ["type"] = "explicit", + }, + [2847] = { + ["id"] = "explicit.stat_1315418254", + ["text"] = "Zealot's Oath", + ["type"] = "explicit", + }, + [2848] = { + ["id"] = "explicit.stat_1312381104", + ["text"] = "Regenerate # Life per second for every 10 Intelligence", + ["type"] = "explicit", + }, + [2849] = { + ["id"] = "explicit.stat_2954116742|13515", + ["text"] = "Allocates Stormwalker", + ["type"] = "explicit", + }, + [2850] = { + ["id"] = "explicit.stat_2954116742|3921", + ["text"] = "Allocates Fate Finding", + ["type"] = "explicit", + }, + [2851] = { + ["id"] = "explicit.stat_2954116742|53185", + ["text"] = "Allocates The Winter Owl", + ["type"] = "explicit", + }, + [2852] = { + ["id"] = "explicit.stat_915546383", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["type"] = "explicit", + }, + [2853] = { + ["id"] = "explicit.stat_2954116742|43711", + ["text"] = "Allocates Thornhide", + ["type"] = "explicit", + }, + [2854] = { + ["id"] = "explicit.stat_2954116742|58817", + ["text"] = "Allocates Artillery Strike", + ["type"] = "explicit", + }, + [2855] = { + ["id"] = "explicit.stat_2954116742|10774", + ["text"] = "Allocates Unyielding", + ["type"] = "explicit", + }, + [2856] = { + ["id"] = "explicit.stat_2954116742|35618", + ["text"] = "Allocates Cold Coat", + ["type"] = "explicit", + }, + [2857] = { + ["id"] = "explicit.stat_2954116742|59938", + ["text"] = "Allocates Against the Elements", + ["type"] = "explicit", + }, + [2858] = { + ["id"] = "explicit.stat_2954116742|38329", + ["text"] = "Allocates Biting Frost", + ["type"] = "explicit", + }, + [2859] = { + ["id"] = "explicit.stat_2954116742|43250", + ["text"] = "Allocates Adaptive Skin", + ["type"] = "explicit", + }, + [2860] = { + ["id"] = "explicit.stat_2954116742|44974", + ["text"] = "Allocates Hail", + ["type"] = "explicit", + }, + [2861] = { + ["id"] = "explicit.stat_2954116742|45177", + ["text"] = "Allocates Strike True", + ["type"] = "explicit", + }, + [2862] = { + ["id"] = "explicit.stat_2954116742|12998", + ["text"] = "Allocates Warm the Heart", + ["type"] = "explicit", + }, + [2863] = { + ["id"] = "explicit.stat_2954116742|44753", + ["text"] = "Allocates One With Flame", + ["type"] = "explicit", + }, + [2864] = { + ["id"] = "explicit.stat_2954116742|49740", + ["text"] = "Allocates Shattered Crystal", + ["type"] = "explicit", + }, + [2865] = { + ["id"] = "explicit.stat_2954116742|59387", + ["text"] = "Allocates Infusion of Power", + ["type"] = "explicit", + }, + [2866] = { + ["id"] = "explicit.stat_2954116742|1506", + ["text"] = "Allocates Remnant Attraction", + ["type"] = "explicit", + }, + [2867] = { + ["id"] = "explicit.stat_2954116742|26104", + ["text"] = "Allocates Spirit of the Wyvern", + ["type"] = "explicit", + }, + [2868] = { + ["id"] = "explicit.stat_3076483222|56025", + ["text"] = "Sacrifice up to 3 Perfect Chaos Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2869] = { + ["id"] = "explicit.stat_2954116742|56860", + ["text"] = "Allocates Resolute Reprisal", + ["type"] = "explicit", + }, + [2870] = { + ["id"] = "explicit.stat_2954116742|29881", + ["text"] = "Allocates Surging Beast", + ["type"] = "explicit", + }, + [2871] = { + ["id"] = "explicit.stat_2954116742|9928", + ["text"] = "Allocates Embracing Frost", + ["type"] = "explicit", + }, + [2872] = { + ["id"] = "explicit.stat_2954116742|28441", + ["text"] = "Allocates Frantic Swings", + ["type"] = "explicit", + }, + [2873] = { + ["id"] = "explicit.stat_2954116742|31129", + ["text"] = "Allocates Lifelong Friend", + ["type"] = "explicit", + }, + [2874] = { + ["id"] = "explicit.stat_2954116742|60992", + ["text"] = "Allocates Nurturing Guardian", + ["type"] = "explicit", + }, + [2875] = { + ["id"] = "explicit.stat_2954116742|45329", + ["text"] = "Allocates Delayed Danger", + ["type"] = "explicit", + }, + [2876] = { + ["id"] = "explicit.stat_2954116742|43633", + ["text"] = "Allocates Energising Archon", + ["type"] = "explicit", + }, + [2877] = { + ["id"] = "explicit.stat_2954116742|33922", + ["text"] = "Allocates Stripped Defences", + ["type"] = "explicit", + }, + [2878] = { + ["id"] = "explicit.stat_2954116742|42813", + ["text"] = "Allocates Tides of Change", + ["type"] = "explicit", + }, + [2879] = { + ["id"] = "explicit.stat_2954116742|261", + ["text"] = "Allocates Toxic Sludge", + ["type"] = "explicit", + }, + [2880] = { + ["id"] = "explicit.stat_1688294122", + ["text"] = "Can Allocate Passive Skills from the Templar's starting point", + ["type"] = "explicit", + }, + [2881] = { + ["id"] = "explicit.stat_2954116742|12412", + ["text"] = "Allocates Temporal Mastery", + ["type"] = "explicit", + }, + [2882] = { + ["id"] = "explicit.stat_2954116742|28892", + ["text"] = "Allocates Primal Rage", + ["type"] = "explicit", + }, + [2883] = { + ["id"] = "explicit.stat_2954116742|8957", + ["text"] = "Allocates Right Hand of Darkness", + ["type"] = "explicit", + }, + [2884] = { + ["id"] = "explicit.stat_2625554454", + ["text"] = "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", + ["type"] = "explicit", + }, + [2885] = { + ["id"] = "explicit.stat_2388936716", + ["text"] = "Area has #% chance to contain a Strongbox", + ["type"] = "explicit", + }, + [2886] = { + ["id"] = "explicit.stat_2388936716", + ["text"] = "Your Maps have #% chance to contain a Strongbox", + ["type"] = "explicit", + }, + [2887] = { + ["id"] = "explicit.stat_4032948616", + ["text"] = "#% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", + ["type"] = "explicit", + }, + [2888] = { + ["id"] = "explicit.stat_2954116742|53921", + ["text"] = "Allocates Unbreaking", + ["type"] = "explicit", + }, + [2889] = { + ["id"] = "explicit.stat_2954116742|21784", + ["text"] = "Allocates Pack Encouragement", + ["type"] = "explicit", + }, + [2890] = { + ["id"] = "explicit.stat_3200877707", + ["text"] = "Skills have a #% chance to not consume Glory", + ["type"] = "explicit", + }, + [2891] = { + ["id"] = "explicit.stat_2954116742|41620", + ["text"] = "Allocates Bear's Roar", + ["type"] = "explicit", + }, + [2892] = { + ["id"] = "explicit.stat_2954116742|7128", + ["text"] = "Allocates Dangerous Blossom", + ["type"] = "explicit", + }, + [2893] = { + ["id"] = "explicit.stat_2954116742|65468", + ["text"] = "Allocates Repeating Explosives", + ["type"] = "explicit", + }, + [2894] = { + ["id"] = "explicit.stat_2954116742|33730", + ["text"] = "Allocates Focused Channel", + ["type"] = "explicit", + }, + [2895] = { + ["id"] = "explicit.stat_2954116742|24062", + ["text"] = "Allocates Immortal Infamy", + ["type"] = "explicit", + }, + [2896] = { + ["id"] = "explicit.stat_2954116742|7542", + ["text"] = "Allocates Encompassing Domain", + ["type"] = "explicit", + }, + [2897] = { + ["id"] = "explicit.stat_2954116742|37244", + ["text"] = "Allocates Shield Expertise", + ["type"] = "explicit", + }, + [2898] = { + ["id"] = "explicit.stat_2954116742|9009", + ["text"] = "Allocates Return to Nature", + ["type"] = "explicit", + }, + [2899] = { + ["id"] = "explicit.stat_2954116742|37266", + ["text"] = "Allocates Nourishing Ally", + ["type"] = "explicit", + }, + [2900] = { + ["id"] = "explicit.stat_2954116742|7449", + ["text"] = "Allocates Splinters", + ["type"] = "explicit", + }, + [2901] = { + ["id"] = "explicit.stat_2954116742|32448", + ["text"] = "Allocates Shockproof", + ["type"] = "explicit", + }, + [2902] = { + ["id"] = "explicit.stat_2954116742|5686", + ["text"] = "Allocates Chillproof", + ["type"] = "explicit", + }, + [2903] = { + ["id"] = "explicit.stat_2954116742|53265", + ["text"] = "Allocates Nature's Bite", + ["type"] = "explicit", + }, + [2904] = { + ["id"] = "explicit.stat_2954116742|24764", + ["text"] = "Allocates Infusing Power", + ["type"] = "explicit", + }, + [2905] = { + ["id"] = "explicit.stat_2954116742|47441", + ["text"] = "Allocates Stigmata", + ["type"] = "explicit", + }, + [2906] = { + ["id"] = "explicit.stat_2954116742|5410", + ["text"] = "Allocates Channelled Heritage", + ["type"] = "explicit", + }, + [2907] = { + ["id"] = "explicit.stat_3076483222|6774", + ["text"] = "Sacrifice up to 3 Perfect Exalted Orbs to receive double on Trial completion", + ["type"] = "explicit", + }, + [2908] = { + ["id"] = "explicit.stat_2954116742|46182", + ["text"] = "Allocates Intense Dose", + ["type"] = "explicit", + }, + [2909] = { + ["id"] = "explicit.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", + ["type"] = "explicit", + }, + [2910] = { + ["id"] = "explicit.stat_2571125745", + ["text"] = "Area has #% chance to contain a Shrine", + ["type"] = "explicit", + }, + [2911] = { + ["id"] = "explicit.stat_2571125745", + ["text"] = "Your Maps have #% chance to contain a Shrine", + ["type"] = "explicit", + }, + [2912] = { + ["id"] = "explicit.stat_2954116742|94", + ["text"] = "Allocates Efficient Killing", + ["type"] = "explicit", + }, + [2913] = { + ["id"] = "explicit.stat_2954116742|64525", + ["text"] = "Allocates Easy Target", + ["type"] = "explicit", + }, + [2914] = { + ["id"] = "explicit.stat_2954116742|43584", + ["text"] = "Allocates Flare", + ["type"] = "explicit", + }, + [2915] = { + ["id"] = "explicit.stat_2954116742|45777", + ["text"] = "Allocates Hidden Barb", + ["type"] = "explicit", + }, + [2916] = { + ["id"] = "explicit.stat_2954116742|13524", + ["text"] = "Allocates Everlasting Glory", + ["type"] = "explicit", + }, + [2917] = { + ["id"] = "explicit.stat_2954116742|3348", + ["text"] = "Allocates Spirit of the Wolf", + ["type"] = "explicit", + }, + [2918] = { + ["id"] = "explicit.stat_2954116742|19546", + ["text"] = "Allocates Favourable Odds", + ["type"] = "explicit", + }, + [2919] = { + ["id"] = "explicit.stat_2954116742|10727", + ["text"] = "Allocates Emboldening Casts", + ["type"] = "explicit", + }, + [2920] = { + ["id"] = "explicit.stat_2954116742|50715", + ["text"] = "Allocates Frozen Limit", + ["type"] = "explicit", + }, + [2921] = { + ["id"] = "explicit.stat_2954116742|30546", + ["text"] = "Allocates Electrified Claw", + ["type"] = "explicit", + }, + [2922] = { + ["id"] = "explicit.stat_2971398565", + ["text"] = "Divine Flight", + ["type"] = "explicit", + }, + [2923] = { + ["id"] = "explicit.stat_2954116742|36100", + ["text"] = "Allocates Molten Claw", + ["type"] = "explicit", + }, + [2924] = { + ["id"] = "explicit.stat_2954116742|1087", + ["text"] = "Allocates Shockwaves", + ["type"] = "explicit", + }, + [2925] = { + ["id"] = "explicit.stat_3624940721", + ["text"] = "#% increased Explicit Lightning Modifier magnitudes", + ["type"] = "explicit", + }, + [2926] = { + ["id"] = "explicit.stat_2954116742|23362", + ["text"] = "Allocates Slippery Ice", + ["type"] = "explicit", + }, + [2927] = { + ["id"] = "explicit.stat_2954116742|10499", + ["text"] = "Allocates Necromantic Ward", + ["type"] = "explicit", + }, + [2928] = { + ["id"] = "explicit.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", + ["type"] = "explicit", + }, + [2929] = { + ["id"] = "explicit.stat_2954116742|56988", + ["text"] = "Allocates Electric Blood", + ["type"] = "explicit", + }, + [2930] = { + ["id"] = "explicit.stat_2954116742|48649", + ["text"] = "Allocates Insulating Hide", + ["type"] = "explicit", + }, + [2931] = { + ["id"] = "explicit.stat_2954116742|56016", + ["text"] = "Allocates Passthrough Rounds", + ["type"] = "explicit", + }, + [2932] = { + ["id"] = "explicit.stat_2954116742|31925", + ["text"] = "Allocates Warding Fetish", + ["type"] = "explicit", + }, + [2933] = { + ["id"] = "explicit.stat_2954116742|43829", + ["text"] = "Allocates Advanced Munitions", + ["type"] = "explicit", + }, + [2934] = { + ["id"] = "explicit.stat_2954116742|62963", + ["text"] = "Allocates Flamewalker", + ["type"] = "explicit", + }, + [2935] = { + ["id"] = "explicit.stat_2954116742|50023", + ["text"] = "Allocates Invigorating Grandeur", + ["type"] = "explicit", + }, + [2936] = { + ["id"] = "explicit.stat_2954116742|49214", + ["text"] = "Allocates Blood of the Wolf", + ["type"] = "explicit", + }, + [2937] = { + ["id"] = "explicit.stat_2954116742|15991", + ["text"] = "Allocates Embodiment of Lightning", + ["type"] = "explicit", + }, + [2938] = { + ["id"] = "explicit.stat_2954116742|338", + ["text"] = "Allocates Invocated Limit", + ["type"] = "explicit", + }, + [2939] = { + ["id"] = "explicit.stat_1910297038", + ["text"] = "Withered you inflict also increases Fire Damage taken", + ["type"] = "explicit", + }, + [2940] = { + ["id"] = "explicit.stat_2954116742|8607", + ["text"] = "Allocates Lavianga's Brew", + ["type"] = "explicit", + }, + [2941] = { + ["id"] = "explicit.stat_2954116742|25753", + ["text"] = "Allocates Blazing Arms", + ["type"] = "explicit", + }, + [2942] = { + ["id"] = "explicit.stat_2954116742|8916", + ["text"] = "Allocates Bashing Beast", + ["type"] = "explicit", + }, + [2943] = { + ["id"] = "explicit.stat_2954116742|32655", + ["text"] = "Allocates Hunting Companion", + ["type"] = "explicit", + }, + [2944] = { + ["id"] = "explicit.stat_2954116742|57921", + ["text"] = "Allocates Wolf's Howl", + ["type"] = "explicit", + }, + [2945] = { + ["id"] = "explicit.stat_1416292992", + ["text"] = "Has # Charm Slot", + ["type"] = "explicit", + }, + [2946] = { + ["id"] = "explicit.stat_2954116742|60273", + ["text"] = "Allocates Hindering Obstacles", + ["type"] = "explicit", + }, + [2947] = { + ["id"] = "explicit.stat_4098286334", + ["text"] = "Area has #% chance to contain an Essence", + ["type"] = "explicit", + }, + [2948] = { + ["id"] = "explicit.stat_4098286334", + ["text"] = "Your Maps have #% chance to contain an Essence", + ["type"] = "explicit", + }, + [2949] = { + ["id"] = "explicit.stat_2954116742|2814", + ["text"] = "Allocates Engineered Blaze", + ["type"] = "explicit", + }, + [2950] = { + ["id"] = "explicit.stat_2897413282", + ["text"] = "# to all Attributes", + ["type"] = "explicit", + }, + [2951] = { + ["id"] = "explicit.stat_2241560081", + ["text"] = "#% increased Attack Speed per 25 Dexterity", + ["type"] = "explicit", + }, + [2952] = { + ["id"] = "explicit.stat_2954116742|64659", + ["text"] = "Allocates Lasting Boons", + ["type"] = "explicit", + }, + [2953] = { + ["id"] = "explicit.stat_2954116742|61354", + ["text"] = "Allocates Infernal Limit", + ["type"] = "explicit", + }, + [2954] = { + ["id"] = "explicit.stat_2954116742|56388", + ["text"] = "Allocates Reinforced Rallying", + ["type"] = "explicit", + }, + [2955] = { + ["id"] = "explicit.stat_1314787770", + ["text"] = "Map Boss has +#% chance to drop a Waystone of the current tier or higher", + ["type"] = "explicit", + }, + [2956] = { + ["id"] = "explicit.stat_2954116742|18496", + ["text"] = "Allocates Lasting Trauma", + ["type"] = "explicit", + }, + [2957] = { + ["id"] = "explicit.stat_1157523820", + ["text"] = "#% chance for Slam Skills to cause an additional Aftershock", + ["type"] = "explicit", + }, + [2958] = { + ["id"] = "explicit.stat_2954116742|57617", + ["text"] = "Allocates Shifted Strikes", + ["type"] = "explicit", + }, + [2959] = { + ["id"] = "explicit.stat_2954116742|45751", + ["text"] = "Allocates Frightening Shield", + ["type"] = "explicit", + }, + [2960] = { + ["id"] = "explicit.stat_2954116742|55450", + ["text"] = "Allocates Rallying Form", + ["type"] = "explicit", + }, + [2961] = { + ["id"] = "explicit.stat_2954116742|56237", + ["text"] = "Allocates Enhancing Attacks", + ["type"] = "explicit", + }, + [2962] = { + ["id"] = "explicit.stat_2954116742|56112", + ["text"] = "Allocates Extinguishing Exhalation", + ["type"] = "explicit", + }, + [2963] = { + ["id"] = "explicit.stat_2954116742|48925", + ["text"] = "Allocates Blessing of the Moon", + ["type"] = "explicit", + }, + [2964] = { + ["id"] = "explicit.stat_2954116742|20558", + ["text"] = "Allocates Among the Hordes", + ["type"] = "explicit", + }, + [2965] = { + ["id"] = "explicit.stat_3005701891", + ["text"] = "Inflict Cold Exposure on Hit", + ["type"] = "explicit", + }, + }, + ["id"] = "explicit", + ["label"] = "Explicit", + }, + [3] = { + ["entries"] = { + [1] = { + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", + }, + [2] = { + ["id"] = "implicit.stat_275498888", + ["text"] = "Maximum Quality is #%", + ["type"] = "implicit", + }, + [3] = { + ["id"] = "implicit.stat_4041853756", + ["text"] = "Adds Irradiated to a Map # use remaining", + ["type"] = "implicit", + }, + [4] = { + ["id"] = "implicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "implicit", + }, + [5] = { + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "implicit", + }, + [6] = { + ["id"] = "implicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "implicit", + }, + [7] = { + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + [8] = { + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "implicit", + }, + [9] = { + ["id"] = "implicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "implicit", + }, + [10] = { + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "implicit", + }, + [11] = { + ["id"] = "implicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "implicit", + }, + [12] = { + ["id"] = "implicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "implicit", + }, + [13] = { + ["id"] = "implicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "implicit", + }, + [14] = { + ["id"] = "implicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "implicit", + }, + [15] = { + ["id"] = "implicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "implicit", + }, + [16] = { + ["id"] = "implicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "implicit", + }, + [17] = { + ["id"] = "implicit.stat_2219129443", + ["text"] = "Adds an Otherworldy Breach to a Map # use remaining", + ["type"] = "implicit", + }, + [18] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + [19] = { + ["id"] = "implicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "implicit", + }, + [20] = { + ["id"] = "implicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "implicit", + }, + [21] = { + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", + }, + [22] = { + ["id"] = "implicit.stat_958696139", + ["text"] = "Grants 1 additional Skill Slot", + ["type"] = "implicit", + }, + [23] = { + ["id"] = "implicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "implicit", + }, + [24] = { + ["id"] = "implicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "implicit", + }, + [25] = { + ["id"] = "implicit.stat_3879011313", + ["text"] = "Adds a Mirror of Delirium to a Map # use remaining", + ["type"] = "implicit", + }, + [26] = { + ["id"] = "implicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "implicit", + }, + [27] = { + ["id"] = "implicit.stat_3376302538", + ["text"] = "Empowers the Map Boss of a Map # use remaining", + ["type"] = "implicit", + }, + [28] = { + ["id"] = "implicit.stat_462041840", + ["text"] = "#% of Flask Recovery applied Instantly", + ["type"] = "implicit", + }, + [29] = { + ["id"] = "implicit.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", + ["type"] = "implicit", + }, + [30] = { + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", + }, + [31] = { + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "implicit", + }, + [32] = { + ["id"] = "implicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "implicit", + }, + [33] = { + ["id"] = "implicit.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "implicit", + }, + [34] = { + ["id"] = "implicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "implicit", + }, + [35] = { + ["id"] = "implicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "implicit", + }, + [36] = { + ["id"] = "implicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "implicit", + }, + [37] = { + ["id"] = "implicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "implicit", + }, + [38] = { + ["id"] = "implicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "implicit", + }, + [39] = { + ["id"] = "implicit.stat_1416292992", + ["text"] = "Has # Charm Slot", + ["type"] = "implicit", + }, + [40] = { + ["id"] = "implicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "implicit", + }, + [41] = { + ["id"] = "implicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "implicit", + }, + [42] = { + ["id"] = "implicit.stat_731781020", + ["text"] = "Flasks gain # charges per Second", + ["type"] = "implicit", + }, + [43] = { + ["id"] = "implicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "implicit", + }, + [44] = { + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", + }, + [45] = { + ["id"] = "implicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "implicit", + }, + [46] = { + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "implicit", + }, + [47] = { + ["id"] = "implicit.stat_1541903247", + ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", + ["type"] = "implicit", + }, + [48] = { + ["id"] = "implicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "implicit", + }, + [49] = { + ["id"] = "implicit.stat_3166002380", + ["text"] = "Adds Ritual Altars to a Map # use remaining", + ["type"] = "implicit", + }, + [50] = { + ["id"] = "implicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "implicit", + }, + [51] = { + ["id"] = "implicit.stat_1803308202", + ["text"] = "#% increased Bolt Speed", + ["type"] = "implicit", + }, + [52] = { + ["id"] = "implicit.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "implicit", + }, + [53] = { + ["id"] = "implicit.stat_1207554355", + ["text"] = "#% increased Arrow Speed", + ["type"] = "implicit", + }, + [54] = { + ["id"] = "implicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "implicit", + }, + [55] = { + ["id"] = "implicit.stat_1714888636", + ["text"] = "Adds a Kalguuran Expedition to a Map # use remaining", + ["type"] = "implicit", + }, + [56] = { + ["id"] = "implicit.stat_2994271459", + ["text"] = "Used when you take Cold damage from a Hit", + ["type"] = "implicit", + }, + [57] = { + ["id"] = "implicit.stat_3854901951", + ["text"] = "Used when you take Fire damage from a Hit", + ["type"] = "implicit", + }, + [58] = { + ["id"] = "implicit.stat_2016937536", + ["text"] = "Used when you take Lightning damage from a Hit", + ["type"] = "implicit", + }, + [59] = { + ["id"] = "implicit.stat_1028592286", + ["text"] = "#% chance to Chain an additional time", + ["type"] = "implicit", + }, + [60] = { + ["id"] = "implicit.stat_1810482573", + ["text"] = "Used when you become Stunned", + ["type"] = "implicit", + }, + [61] = { + ["id"] = "implicit.stat_3675300253", + ["text"] = "Strikes deal Splash Damage", + ["type"] = "implicit", + }, + [62] = { + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "implicit", + }, + [63] = { + ["id"] = "implicit.stat_1691862754", + ["text"] = "Used when you become Frozen", + ["type"] = "implicit", + }, + [64] = { + ["id"] = "implicit.stat_2933846633", + ["text"] = "Dazes on Hit", + ["type"] = "implicit", + }, + [65] = { + ["id"] = "implicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "implicit", + }, + [66] = { + ["id"] = "implicit.stat_1412682799", + ["text"] = "Used when you become Poisoned", + ["type"] = "implicit", + }, + [67] = { + ["id"] = "implicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "implicit", + }, + [68] = { + ["id"] = "implicit.stat_2778646494", + ["text"] = "Used when you are affected by a Slow", + ["type"] = "implicit", + }, + [69] = { + ["id"] = "implicit.stat_3676540188", + ["text"] = "Used when you start Bleeding", + ["type"] = "implicit", + }, + [70] = { + ["id"] = "implicit.stat_4010341289", + ["text"] = "Used when you kill a Rare or Unique enemy", + ["type"] = "implicit", + }, + [71] = { + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "implicit", + }, + [72] = { + ["id"] = "implicit.stat_585126960", + ["text"] = "Used when you become Ignited", + ["type"] = "implicit", + }, + [73] = { + ["id"] = "implicit.stat_3699444296", + ["text"] = "Used when you become Shocked", + ["type"] = "implicit", + }, + [74] = { + ["id"] = "implicit.stat_3954735777", + ["text"] = "#% chance to Poison on Hit with Attacks", + ["type"] = "implicit", + }, + [75] = { + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + [76] = { + ["id"] = "implicit.stat_2055966527", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + [77] = { + ["id"] = "implicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "implicit", + }, + [78] = { + ["id"] = "implicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "implicit", + }, + [79] = { + ["id"] = "implicit.stat_3310778564", + ["text"] = "Used when you take Chaos damage from a Hit", + ["type"] = "implicit", + }, + [80] = { + ["id"] = "implicit.stat_1539368271", + ["text"] = "#% increased Expedition Explosive Placement Range", + ["type"] = "implicit", + }, + [81] = { + ["id"] = "implicit.stat_1915989164", + ["text"] = "Area contains #% increased number of Monster Markers", + ["type"] = "implicit", + }, + [82] = { + ["id"] = "implicit.stat_4219583418", + ["text"] = "#% increased quantity of Artifacts dropped by Monsters", + ["type"] = "implicit", + }, + [83] = { + ["id"] = "implicit.stat_4219583418", + ["text"] = "#% increased quantity of Artifacts dropped by Monsters in your Maps", + ["type"] = "implicit", + }, + [84] = { + ["id"] = "implicit.stat_1871805225", + ["text"] = "Remnants have #% chance to have an additional Suffix Modifier", + ["type"] = "implicit", + }, + [85] = { + ["id"] = "implicit.stat_1871805225", + ["text"] = "Remnants in your Maps have #% chance to have an additional Suffix Modifier", + ["type"] = "implicit", + }, + [86] = { + ["id"] = "implicit.stat_3289828378", + ["text"] = "#% increased Expedition Explosive Radius", + ["type"] = "implicit", + }, + [87] = { + ["id"] = "implicit.stat_1640965354", + ["text"] = "Area contains #% increased number of Runic Monster Markers", + ["type"] = "implicit", + }, + [88] = { + ["id"] = "implicit.stat_1640965354", + ["text"] = "#% increased number of Runic Monster Markers", + ["type"] = "implicit", + }, + [89] = { + ["id"] = "implicit.stat_2991413918", + ["text"] = "Area contains #% increased number of Remnants", + ["type"] = "implicit", + }, + [90] = { + ["id"] = "implicit.stat_3051490307", + ["text"] = "#% increased number of Explosives", + ["type"] = "implicit", + }, + [91] = { + ["id"] = "implicit.stat_3051490307", + ["text"] = "#% increased number of Expedition Explosives", + ["type"] = "implicit", + }, + [92] = { + ["id"] = "implicit.stat_4160330571", + ["text"] = "Area contains # additional Chest Marker", + ["type"] = "implicit", + }, + [93] = { + ["id"] = "implicit.stat_4160330571", + ["text"] = "Expedition encounters in your Maps contain # additional Chest Marker", + ["type"] = "implicit", + }, + [94] = { + ["id"] = "implicit.stat_2369421690", + ["text"] = "Adds Abysses to a Map # use remaining", + ["type"] = "implicit", + }, + [95] = { + ["id"] = "implicit.stat_2646093132", + ["text"] = "Inflict Abyssal Wasting on Hit", + ["type"] = "implicit", + }, + [96] = { + ["id"] = "implicit.stat_3398402065", + ["text"] = "#% increased Projectile Range", + ["type"] = "implicit", + }, + [97] = { + ["id"] = "implicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "implicit", + }, + [98] = { + ["id"] = "implicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "implicit", + }, + [99] = { + ["id"] = "implicit.stat_718638445", + ["text"] = "# Suffix Modifier allowed", + ["type"] = "implicit", + }, + [100] = { + ["id"] = "implicit.stat_3663551379", + ["text"] = "Cannot load or fire Ammunition", + ["type"] = "implicit", + }, + [101] = { + ["id"] = "implicit.stat_3182714256", + ["text"] = "# Prefix Modifier allowed", + ["type"] = "implicit", + }, + [102] = { + ["id"] = "implicit.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "implicit", + }, + [103] = { + ["id"] = "implicit.stat_535217483", + ["text"] = "#% increased Projectile Speed with this Weapon", + ["type"] = "implicit", + }, + [104] = { + ["id"] = "implicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "implicit", + }, + [105] = { + ["id"] = "implicit.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "implicit", + }, + [106] = { + ["id"] = "implicit.stat_1503146834", + ["text"] = "Crushes Enemies on Hit", + ["type"] = "implicit", + }, + [107] = { + ["id"] = "implicit.stat_3239978999", + ["text"] = "Excavated Chests have a #% chance to contain twice as many Items", + ["type"] = "implicit", + }, + [108] = { + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "implicit", + }, + [109] = { + ["id"] = "implicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "implicit", + }, + [110] = { + ["id"] = "implicit.stat_4126210832", + ["text"] = "Always Hits", + ["type"] = "implicit", + }, + [111] = { + ["id"] = "implicit.stat_2590797182", + ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", + ["type"] = "implicit", + }, + [112] = { + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + [113] = { + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", + }, + [114] = { + ["id"] = "implicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "implicit", + }, + [115] = { + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "implicit", + }, + [116] = { + ["id"] = "implicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "implicit", + }, + [117] = { + ["id"] = "implicit.stat_2251279027", + ["text"] = "# to Level of all Corrupted Skill Gems", + ["type"] = "implicit", + }, + [118] = { + ["id"] = "implicit.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", + ["type"] = "implicit", + }, + [119] = { + ["id"] = "implicit.stat_3035440454", + ["text"] = "Adds Vaal Beacons to a Map # use remaining", + ["type"] = "implicit", + }, + [120] = { + ["id"] = "implicit.stat_2039822488", + ["text"] = "#% to Maximum Quality", + ["type"] = "implicit", + }, + [121] = { + ["id"] = "implicit.stat_3441501978", + ["text"] = "#% to Fire and Lightning Resistances", + ["type"] = "implicit", + }, + [122] = { + ["id"] = "implicit.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", + ["type"] = "implicit", + }, + [123] = { + ["id"] = "implicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "implicit", + }, + [124] = { + ["id"] = "implicit.stat_4277795662", + ["text"] = "#% to Cold and Lightning Resistances", + ["type"] = "implicit", + }, + [125] = { + ["id"] = "implicit.stat_1856590738", + ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", + ["type"] = "implicit", + }, + [126] = { + ["id"] = "implicit.stat_4077843608", + ["text"] = "Has 1 Socket", + ["type"] = "implicit", + }, + [127] = { + ["id"] = "implicit.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", + ["type"] = "implicit", + }, + [128] = { + ["id"] = "implicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "implicit", + }, + [129] = { + ["id"] = "implicit.stat_1879206848", + ["text"] = "#% increased effect of Fully Broken Armour", + ["type"] = "implicit", + }, + [130] = { + ["id"] = "implicit.stat_1725749947", + ["text"] = "Grants # Rage on Hit", + ["type"] = "implicit", + }, + [131] = { + ["id"] = "implicit.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "implicit", + }, + [132] = { + ["id"] = "implicit.stat_129891052", + ["text"] = "Can roll Ring Modifiers", + ["type"] = "implicit", + }, + [133] = { + ["id"] = "implicit.stat_1574531783", + ["text"] = "Culling Strike (Local)", + ["type"] = "implicit", + }, + [134] = { + ["id"] = "implicit.stat_1458343515", + ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", + ["type"] = "implicit", + }, + [135] = { + ["id"] = "implicit.stat_3336230913", + ["text"] = "# to maximum Runic Ward", + ["type"] = "implicit", + }, + [136] = { + ["id"] = "implicit.stat_1050883682", + ["text"] = "Has no Accuracy Penalty from Range", + ["type"] = "implicit", + }, + [137] = { + ["id"] = "implicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", + ["type"] = "implicit", + }, + [138] = { + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "implicit", + }, + [139] = { + ["id"] = "implicit.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", + ["type"] = "implicit", + }, + [140] = { + ["id"] = "implicit.stat_774059442", + ["text"] = "# to maximum Runic Ward", + ["type"] = "implicit", + }, + [141] = { + ["id"] = "implicit.stat_1559935218", + ["text"] = "Causes Daze buildup equal to #% of Damage dealt", + ["type"] = "implicit", + }, + [142] = { + ["id"] = "implicit.stat_254952842", + ["text"] = "Catalysts can be applied to this item", + ["type"] = "implicit", + }, + [143] = { + ["id"] = "implicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "implicit", + }, + [144] = { + ["id"] = "implicit.stat_2915988346", + ["text"] = "#% to Fire and Cold Resistances", + ["type"] = "implicit", + }, + [145] = { + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "implicit", + }, + [146] = { + ["id"] = "implicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "implicit", + }, + [147] = { + ["id"] = "implicit.stat_4270348114", + ["text"] = "Breaks # Armour on Critical Hit", + ["type"] = "implicit", + }, + [148] = { + ["id"] = "implicit.stat_4273473110", + ["text"] = "#% increased maximum Runic Ward", + ["type"] = "implicit", + }, + [149] = { + ["id"] = "implicit.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "implicit", + }, + [150] = { + ["id"] = "implicit.stat_1568848828", + ["text"] = "Recover # Runic Ward when you Block", + ["type"] = "implicit", + }, + [151] = { + ["id"] = "implicit.stat_1078455967", + ["text"] = "# to Level of all Cold Skills", + ["type"] = "implicit", + }, + [152] = { + ["id"] = "implicit.stat_4169430079", + ["text"] = "#% increased Maximum Life for each Corrupted Item Equipped", + ["type"] = "implicit", + }, + [153] = { + ["id"] = "implicit.stat_2264295449", + ["text"] = "# metres to Melee Strike Range", + ["type"] = "implicit", + }, + [154] = { + ["id"] = "implicit.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "implicit", + }, + [155] = { + ["id"] = "implicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", + ["type"] = "implicit", + }, + [156] = { + ["id"] = "implicit.stat_2728425538", + ["text"] = "Skills Gain #% of damage as Extra Lightning damage per 50 Runic Ward Cost", + ["type"] = "implicit", + }, + [157] = { + ["id"] = "implicit.stat_2733960806", + ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", + ["type"] = "implicit", + }, + [158] = { + ["id"] = "implicit.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "implicit", + }, + [159] = { + ["id"] = "implicit.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "implicit", + }, + [160] = { + ["id"] = "implicit.stat_3627052716", + ["text"] = "#% of Lightning Damage Converted to Cold Damage", + ["type"] = "implicit", + }, + [161] = { + ["id"] = "implicit.stat_1961849903", + ["text"] = "Cannot use Projectile Attacks", + ["type"] = "implicit", + }, + [162] = { + ["id"] = "implicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "implicit", + }, + [163] = { + ["id"] = "implicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "implicit", + }, + [164] = { + ["id"] = "implicit.stat_1451444093", + ["text"] = "Bifurcates Critical Hits", + ["type"] = "implicit", + }, + [165] = { + ["id"] = "implicit.stat_3544050945", + ["text"] = "#% of Spell Mana Cost Converted to Life Cost", + ["type"] = "implicit", + }, + [166] = { + ["id"] = "implicit.stat_1137147997", + ["text"] = "Unblockable", + ["type"] = "implicit", + }, + [167] = { + ["id"] = "implicit.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "implicit", + }, + [168] = { + ["id"] = "implicit.stat_3691641145", + ["text"] = "#% increased Damage taken", + ["type"] = "implicit", + }, + }, + ["id"] = "implicit", + ["label"] = "Implicit", + }, + [4] = { + ["entries"] = { + [1] = { + ["id"] = "fractured.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", + ["type"] = "fractured", + }, + [2] = { + ["id"] = "fractured.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "fractured", + }, + [3] = { + ["id"] = "fractured.stat_518292764", + ["text"] = "#% to Critical Hit Chance", + ["type"] = "fractured", + }, + [4] = { + ["id"] = "fractured.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "fractured", + }, + [5] = { + ["id"] = "fractured.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "fractured", + }, + [6] = { + ["id"] = "fractured.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", + ["type"] = "fractured", + }, + [7] = { + ["id"] = "fractured.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "fractured", + }, + [8] = { + ["id"] = "fractured.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "fractured", + }, + [9] = { + ["id"] = "fractured.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "fractured", + }, + [10] = { + ["id"] = "fractured.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "fractured", + }, + [11] = { + ["id"] = "fractured.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + ["type"] = "fractured", + }, + [12] = { + ["id"] = "fractured.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "fractured", + }, + [13] = { + ["id"] = "fractured.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "fractured", + }, + [14] = { + ["id"] = "fractured.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "fractured", + }, + [15] = { + ["id"] = "fractured.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "fractured", + }, + [16] = { + ["id"] = "fractured.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "fractured", + }, + [17] = { + ["id"] = "fractured.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "fractured", + }, + [18] = { + ["id"] = "fractured.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "fractured", + }, + [19] = { + ["id"] = "fractured.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "fractured", + }, + [20] = { + ["id"] = "fractured.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "fractured", + }, + [21] = { + ["id"] = "fractured.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "fractured", + }, + [22] = { + ["id"] = "fractured.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "fractured", + }, + [23] = { + ["id"] = "fractured.stat_9187492", + ["text"] = "# to Level of all Melee Skills", + ["type"] = "fractured", + }, + [24] = { + ["id"] = "fractured.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "fractured", + }, + [25] = { + ["id"] = "fractured.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", + ["type"] = "fractured", + }, + [26] = { + ["id"] = "fractured.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "fractured", + }, + [27] = { + ["id"] = "fractured.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "fractured", + }, + [28] = { + ["id"] = "fractured.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "fractured", + }, + [29] = { + ["id"] = "fractured.stat_3891355829|2", + ["text"] = "Upgrades Radius to Large", + ["type"] = "fractured", + }, + [30] = { + ["id"] = "fractured.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "fractured", + }, + [31] = { + ["id"] = "fractured.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "fractured", + }, + [32] = { + ["id"] = "fractured.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "fractured", + }, + [33] = { + ["id"] = "fractured.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", + ["type"] = "fractured", + }, + [34] = { + ["id"] = "fractured.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", + ["type"] = "fractured", + }, + [35] = { + ["id"] = "fractured.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "fractured", + }, + [36] = { + ["id"] = "fractured.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "fractured", + }, + [37] = { + ["id"] = "fractured.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "fractured", + }, + [38] = { + ["id"] = "fractured.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "fractured", + }, + [39] = { + ["id"] = "fractured.stat_2081918629", + ["text"] = "#% increased effect of Socketed Augment Items", + ["type"] = "fractured", + }, + [40] = { + ["id"] = "fractured.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "fractured", + }, + [41] = { + ["id"] = "fractured.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "fractured", + }, + [42] = { + ["id"] = "fractured.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "fractured", + }, + [43] = { + ["id"] = "fractured.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "fractured", + }, + [44] = { + ["id"] = "fractured.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "fractured", + }, + [45] = { + ["id"] = "fractured.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "fractured", + }, + [46] = { + ["id"] = "fractured.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "fractured", + }, + [47] = { + ["id"] = "fractured.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["type"] = "fractured", + }, + [48] = { + ["id"] = "fractured.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "fractured", + }, + [49] = { + ["id"] = "fractured.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", + ["type"] = "fractured", + }, + [50] = { + ["id"] = "fractured.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "fractured", + }, + [51] = { + ["id"] = "fractured.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", + ["type"] = "fractured", + }, + [52] = { + ["id"] = "fractured.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "fractured", + }, + [53] = { + ["id"] = "fractured.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "fractured", + }, + [54] = { + ["id"] = "fractured.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "fractured", + }, + [55] = { + ["id"] = "fractured.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "fractured", + }, + [56] = { + ["id"] = "fractured.stat_1104825894", + ["text"] = "#% faster Curse Activation", + ["type"] = "fractured", + }, + [57] = { + ["id"] = "fractured.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "fractured", + }, + [58] = { + ["id"] = "fractured.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "fractured", + }, + [59] = { + ["id"] = "fractured.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "fractured", + }, + [60] = { + ["id"] = "fractured.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "fractured", + }, + [61] = { + ["id"] = "fractured.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["type"] = "fractured", + }, + [62] = { + ["id"] = "fractured.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "fractured", + }, + [63] = { + ["id"] = "fractured.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "fractured", + }, + [64] = { + ["id"] = "fractured.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "fractured", + }, + [65] = { + ["id"] = "fractured.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["type"] = "fractured", + }, + [66] = { + ["id"] = "fractured.stat_3035140377", + ["text"] = "# to Level of all Attack Skills", + ["type"] = "fractured", + }, + [67] = { + ["id"] = "fractured.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "fractured", + }, + [68] = { + ["id"] = "fractured.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "fractured", + }, + [69] = { + ["id"] = "fractured.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "fractured", + }, + [70] = { + ["id"] = "fractured.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "fractured", + }, + [71] = { + ["id"] = "fractured.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "fractured", + }, + [72] = { + ["id"] = "fractured.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "fractured", + }, + [73] = { + ["id"] = "fractured.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "fractured", + }, + [74] = { + ["id"] = "fractured.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["type"] = "fractured", + }, + [75] = { + ["id"] = "fractured.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "fractured", + }, + [76] = { + ["id"] = "fractured.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "fractured", + }, + [77] = { + ["id"] = "fractured.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "fractured", + }, + [78] = { + ["id"] = "fractured.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "fractured", + }, + [79] = { + ["id"] = "fractured.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "fractured", + }, + [80] = { + ["id"] = "fractured.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "fractured", + }, + [81] = { + ["id"] = "fractured.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["type"] = "fractured", + }, + [82] = { + ["id"] = "fractured.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["type"] = "fractured", + }, + [83] = { + ["id"] = "fractured.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "fractured", + }, + [84] = { + ["id"] = "fractured.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "fractured", + }, + [85] = { + ["id"] = "fractured.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "fractured", + }, + [86] = { + ["id"] = "fractured.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["type"] = "fractured", + }, + [87] = { + ["id"] = "fractured.stat_3484657501", + ["text"] = "# to Armour (Local)", + ["type"] = "fractured", + }, + [88] = { + ["id"] = "fractured.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "fractured", + }, + [89] = { + ["id"] = "fractured.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["type"] = "fractured", + }, + [90] = { + ["id"] = "fractured.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "fractured", + }, + [91] = { + ["id"] = "fractured.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", + ["type"] = "fractured", + }, + [92] = { + ["id"] = "fractured.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["type"] = "fractured", + }, + [93] = { + ["id"] = "fractured.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", + ["type"] = "fractured", + }, + [94] = { + ["id"] = "fractured.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "fractured", + }, + [95] = { + ["id"] = "fractured.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "fractured", + }, + [96] = { + ["id"] = "fractured.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", + ["type"] = "fractured", + }, + [97] = { + ["id"] = "fractured.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "fractured", + }, + [98] = { + ["id"] = "fractured.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "fractured", + }, + [99] = { + ["id"] = "fractured.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "fractured", + }, + [100] = { + ["id"] = "fractured.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "fractured", + }, + [101] = { + ["id"] = "fractured.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["type"] = "fractured", + }, + [102] = { + ["id"] = "fractured.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["type"] = "fractured", + }, + [103] = { + ["id"] = "fractured.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", + ["type"] = "fractured", + }, + [104] = { + ["id"] = "fractured.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "fractured", + }, + [105] = { + ["id"] = "fractured.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "fractured", + }, + [106] = { + ["id"] = "fractured.stat_4180952808", + ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + ["type"] = "fractured", + }, + [107] = { + ["id"] = "fractured.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "fractured", + }, + [108] = { + ["id"] = "fractured.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "fractured", + }, + [109] = { + ["id"] = "fractured.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "fractured", + }, + [110] = { + ["id"] = "fractured.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "fractured", + }, + [111] = { + ["id"] = "fractured.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "fractured", + }, + [112] = { + ["id"] = "fractured.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", + ["type"] = "fractured", + }, + [113] = { + ["id"] = "fractured.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "fractured", + }, + [114] = { + ["id"] = "fractured.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["type"] = "fractured", + }, + [115] = { + ["id"] = "fractured.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", + ["type"] = "fractured", + }, + [116] = { + ["id"] = "fractured.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "fractured", + }, + [117] = { + ["id"] = "fractured.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["type"] = "fractured", + }, + [118] = { + ["id"] = "fractured.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "fractured", + }, + [119] = { + ["id"] = "fractured.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "fractured", + }, + [120] = { + ["id"] = "fractured.stat_1177404658", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield", + ["type"] = "fractured", + }, + [121] = { + ["id"] = "fractured.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "fractured", + }, + [122] = { + ["id"] = "fractured.stat_3891355829|1", + ["text"] = "Upgrades Radius to Medium", + ["type"] = "fractured", + }, + [123] = { + ["id"] = "fractured.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "fractured", + }, + [124] = { + ["id"] = "fractured.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "fractured", + }, + [125] = { + ["id"] = "fractured.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["type"] = "fractured", + }, + [126] = { + ["id"] = "fractured.stat_748522257", + ["text"] = "#% increased Stun Duration", + ["type"] = "fractured", + }, + [127] = { + ["id"] = "fractured.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "fractured", + }, + [128] = { + ["id"] = "fractured.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["type"] = "fractured", + }, + [129] = { + ["id"] = "fractured.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", + ["type"] = "fractured", + }, + [130] = { + ["id"] = "fractured.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "fractured", + }, + [131] = { + ["id"] = "fractured.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "fractured", + }, + [132] = { + ["id"] = "fractured.stat_1653682082", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "fractured", + }, + [133] = { + ["id"] = "fractured.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["type"] = "fractured", + }, + [134] = { + ["id"] = "fractured.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "fractured", + }, + [135] = { + ["id"] = "fractured.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", + ["type"] = "fractured", + }, + [136] = { + ["id"] = "fractured.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["type"] = "fractured", + }, + [137] = { + ["id"] = "fractured.stat_3579898587", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["type"] = "fractured", + }, + [138] = { + ["id"] = "fractured.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["type"] = "fractured", + }, + [139] = { + ["id"] = "fractured.stat_4092130601", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "fractured", + }, + [140] = { + ["id"] = "fractured.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", + ["type"] = "fractured", + }, + [141] = { + ["id"] = "fractured.stat_2696027455", + ["text"] = "#% increased Damage with Spears", + ["type"] = "fractured", + }, + [142] = { + ["id"] = "fractured.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "fractured", + }, + [143] = { + ["id"] = "fractured.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["type"] = "fractured", + }, + [144] = { + ["id"] = "fractured.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "fractured", + }, + [145] = { + ["id"] = "fractured.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "fractured", + }, + [146] = { + ["id"] = "fractured.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "fractured", + }, + [147] = { + ["id"] = "fractured.stat_4188894176", + ["text"] = "#% increased Damage with Bows", + ["type"] = "fractured", + }, + [148] = { + ["id"] = "fractured.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["type"] = "fractured", + }, + [149] = { + ["id"] = "fractured.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["type"] = "fractured", + }, + [150] = { + ["id"] = "fractured.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "fractured", + }, + [151] = { + ["id"] = "fractured.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "fractured", + }, + [152] = { + ["id"] = "fractured.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", + ["type"] = "fractured", + }, + [153] = { + ["id"] = "fractured.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["type"] = "fractured", + }, + [154] = { + ["id"] = "fractured.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["type"] = "fractured", + }, + [155] = { + ["id"] = "fractured.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "fractured", + }, + [156] = { + ["id"] = "fractured.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "fractured", + }, + [157] = { + ["id"] = "fractured.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "fractured", + }, + [158] = { + ["id"] = "fractured.stat_99927264", + ["text"] = "#% reduced Shock duration on you", + ["type"] = "fractured", + }, + [159] = { + ["id"] = "fractured.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "fractured", + }, + [160] = { + ["id"] = "fractured.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "fractured", + }, + [161] = { + ["id"] = "fractured.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "fractured", + }, + [162] = { + ["id"] = "fractured.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "fractured", + }, + [163] = { + ["id"] = "fractured.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "fractured", + }, + [164] = { + ["id"] = "fractured.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["type"] = "fractured", + }, + [165] = { + ["id"] = "fractured.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["type"] = "fractured", + }, + [166] = { + ["id"] = "fractured.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "fractured", + }, + [167] = { + ["id"] = "fractured.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["type"] = "fractured", + }, + [168] = { + ["id"] = "fractured.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "fractured", + }, + [169] = { + ["id"] = "fractured.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "fractured", + }, + [170] = { + ["id"] = "fractured.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", + ["type"] = "fractured", + }, + [171] = { + ["id"] = "fractured.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["type"] = "fractured", + }, + [172] = { + ["id"] = "fractured.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["type"] = "fractured", + }, + [173] = { + ["id"] = "fractured.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "fractured", + }, + [174] = { + ["id"] = "fractured.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "fractured", + }, + [175] = { + ["id"] = "fractured.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "fractured", + }, + [176] = { + ["id"] = "fractured.stat_1692879867", + ["text"] = "#% increased Duration of Bleeding on You", + ["type"] = "fractured", + }, + [177] = { + ["id"] = "fractured.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", + ["type"] = "fractured", + }, + [178] = { + ["id"] = "fractured.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["type"] = "fractured", + }, + [179] = { + ["id"] = "fractured.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "fractured", + }, + [180] = { + ["id"] = "fractured.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "fractured", + }, + [181] = { + ["id"] = "fractured.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "fractured", + }, + [182] = { + ["id"] = "fractured.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", + ["type"] = "fractured", + }, + [183] = { + ["id"] = "fractured.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "fractured", + }, + [184] = { + ["id"] = "fractured.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["type"] = "fractured", + }, + [185] = { + ["id"] = "fractured.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["type"] = "fractured", + }, + [186] = { + ["id"] = "fractured.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", + ["type"] = "fractured", + }, + [187] = { + ["id"] = "fractured.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["type"] = "fractured", + }, + [188] = { + ["id"] = "fractured.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "fractured", + }, + [189] = { + ["id"] = "fractured.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "fractured", + }, + [190] = { + ["id"] = "fractured.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["type"] = "fractured", + }, + [191] = { + ["id"] = "fractured.stat_3668351662", + ["text"] = "#% increased Shock Duration", + ["type"] = "fractured", + }, + [192] = { + ["id"] = "fractured.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "fractured", + }, + [193] = { + ["id"] = "fractured.stat_3106718406", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + ["type"] = "fractured", + }, + [194] = { + ["id"] = "fractured.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["type"] = "fractured", + }, + [195] = { + ["id"] = "fractured.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["type"] = "fractured", + }, + [196] = { + ["id"] = "fractured.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", + ["type"] = "fractured", + }, + [197] = { + ["id"] = "fractured.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["type"] = "fractured", + }, + [198] = { + ["id"] = "fractured.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["type"] = "fractured", + }, + [199] = { + ["id"] = "fractured.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", + ["type"] = "fractured", + }, + [200] = { + ["id"] = "fractured.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["type"] = "fractured", + }, + [201] = { + ["id"] = "fractured.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["type"] = "fractured", + }, + [202] = { + ["id"] = "fractured.stat_335885735", + ["text"] = "Bears the Mark of the Abyssal Lord", + ["type"] = "fractured", + }, + [203] = { + ["id"] = "fractured.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["type"] = "fractured", + }, + [204] = { + ["id"] = "fractured.stat_4032352472", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + ["type"] = "fractured", + }, + [205] = { + ["id"] = "fractured.stat_517664839", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + ["type"] = "fractured", + }, + [206] = { + ["id"] = "fractured.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "fractured", + }, + [207] = { + ["id"] = "fractured.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", + ["type"] = "fractured", + }, + [208] = { + ["id"] = "fractured.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "fractured", + }, + [209] = { + ["id"] = "fractured.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["type"] = "fractured", + }, + [210] = { + ["id"] = "fractured.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["type"] = "fractured", + }, + [211] = { + ["id"] = "fractured.stat_3628935286", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + ["type"] = "fractured", + }, + [212] = { + ["id"] = "fractured.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["type"] = "fractured", + }, + [213] = { + ["id"] = "fractured.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["type"] = "fractured", + }, + [214] = { + ["id"] = "fractured.stat_3225608889", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + ["type"] = "fractured", + }, + [215] = { + ["id"] = "fractured.stat_2849546516", + ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["type"] = "fractured", + }, + [216] = { + ["id"] = "fractured.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", + ["type"] = "fractured", + }, + [217] = { + ["id"] = "fractured.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "fractured", + }, + [218] = { + ["id"] = "fractured.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "fractured", + }, + [219] = { + ["id"] = "fractured.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", + ["type"] = "fractured", + }, + [220] = { + ["id"] = "fractured.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["type"] = "fractured", + }, + [221] = { + ["id"] = "fractured.stat_3169585282", + ["text"] = "Allies in your Presence have # to Accuracy Rating", + ["type"] = "fractured", + }, + [222] = { + ["id"] = "fractured.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", + ["type"] = "fractured", + }, + [223] = { + ["id"] = "fractured.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["type"] = "fractured", + }, + [224] = { + ["id"] = "fractured.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "fractured", + }, + [225] = { + ["id"] = "fractured.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", + ["type"] = "fractured", + }, + [226] = { + ["id"] = "fractured.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "fractured", + }, + [227] = { + ["id"] = "fractured.stat_2954116742|50562", + ["text"] = "Allocates Barbaric Strength", + ["type"] = "fractured", + }, + [228] = { + ["id"] = "fractured.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["type"] = "fractured", + }, + [229] = { + ["id"] = "fractured.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "fractured", + }, + [230] = { + ["id"] = "fractured.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "fractured", + }, + [231] = { + ["id"] = "fractured.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "fractured", + }, + [232] = { + ["id"] = "fractured.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["type"] = "fractured", + }, + [233] = { + ["id"] = "fractured.stat_3669820740", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + ["type"] = "fractured", + }, + [234] = { + ["id"] = "fractured.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["type"] = "fractured", + }, + [235] = { + ["id"] = "fractured.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["type"] = "fractured", + }, + [236] = { + ["id"] = "fractured.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", + ["type"] = "fractured", + }, + [237] = { + ["id"] = "fractured.stat_821948283", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + ["type"] = "fractured", + }, + [238] = { + ["id"] = "fractured.stat_980177976", + ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["type"] = "fractured", + }, + [239] = { + ["id"] = "fractured.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", + ["type"] = "fractured", + }, + [240] = { + ["id"] = "fractured.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["type"] = "fractured", + }, + [241] = { + ["id"] = "fractured.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "fractured", + }, + [242] = { + ["id"] = "fractured.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "fractured", + }, + [243] = { + ["id"] = "fractured.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "fractured", + }, + [244] = { + ["id"] = "fractured.stat_2272980012", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["type"] = "fractured", + }, + [245] = { + ["id"] = "fractured.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "fractured", + }, + [246] = { + ["id"] = "fractured.stat_2840989393", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + ["type"] = "fractured", + }, + [247] = { + ["id"] = "fractured.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "fractured", + }, + [248] = { + ["id"] = "fractured.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", + ["type"] = "fractured", + }, + [249] = { + ["id"] = "fractured.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", + ["type"] = "fractured", + }, + [250] = { + ["id"] = "fractured.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["type"] = "fractured", + }, + [251] = { + ["id"] = "fractured.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["type"] = "fractured", + }, + [252] = { + ["id"] = "fractured.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", + ["type"] = "fractured", + }, + [253] = { + ["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", + }, + [254] = { + ["id"] = "fractured.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["type"] = "fractured", + }, + [255] = { + ["id"] = "fractured.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["type"] = "fractured", + }, + [256] = { + ["id"] = "fractured.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "fractured", + }, + [257] = { + ["id"] = "fractured.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "fractured", + }, + [258] = { + ["id"] = "fractured.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "fractured", + }, + [259] = { + ["id"] = "fractured.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "fractured", + }, + [260] = { + ["id"] = "fractured.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "fractured", + }, + [261] = { + ["id"] = "fractured.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["type"] = "fractured", + }, + [262] = { + ["id"] = "fractured.stat_3473929743", + ["text"] = "#% increased Pin Buildup", + ["type"] = "fractured", + }, + [263] = { + ["id"] = "fractured.stat_2954116742|28975", + ["text"] = "Allocates Pure Power", + ["type"] = "fractured", + }, + [264] = { + ["id"] = "fractured.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "fractured", + }, + [265] = { + ["id"] = "fractured.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["type"] = "fractured", + }, + [266] = { + ["id"] = "fractured.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", + ["type"] = "fractured", + }, + [267] = { + ["id"] = "fractured.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["type"] = "fractured", + }, + [268] = { + ["id"] = "fractured.stat_693237939", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "fractured", + }, + [269] = { + ["id"] = "fractured.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", + ["type"] = "fractured", + }, + [270] = { + ["id"] = "fractured.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "fractured", + }, + [271] = { + ["id"] = "fractured.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", + ["type"] = "fractured", + }, + [272] = { + ["id"] = "fractured.stat_3774951878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["type"] = "fractured", + }, + [273] = { + ["id"] = "fractured.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["type"] = "fractured", + }, + [274] = { + ["id"] = "fractured.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "fractured", + }, + [275] = { + ["id"] = "fractured.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "fractured", + }, + [276] = { + ["id"] = "fractured.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["type"] = "fractured", + }, + [277] = { + ["id"] = "fractured.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + ["type"] = "fractured", + }, + [278] = { + ["id"] = "fractured.stat_462424929", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["type"] = "fractured", + }, + [279] = { + ["id"] = "fractured.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["type"] = "fractured", + }, + [280] = { + ["id"] = "fractured.stat_4215035940", + ["text"] = "On Corruption, Item gains two Enchantments", + ["type"] = "fractured", + }, + [281] = { + ["id"] = "fractured.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["type"] = "fractured", + }, + [282] = { + ["id"] = "fractured.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", + ["type"] = "fractured", + }, + [283] = { + ["id"] = "fractured.stat_3700202631", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + ["type"] = "fractured", + }, + [284] = { + ["id"] = "fractured.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "fractured", + }, + [285] = { + ["id"] = "fractured.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "fractured", + }, + [286] = { + ["id"] = "fractured.stat_1697951953", + ["text"] = "#% increased Hazard Damage", + ["type"] = "fractured", + }, + [287] = { + ["id"] = "fractured.stat_2954116742|57388", + ["text"] = "Allocates Overwhelming Strike", + ["type"] = "fractured", + }, + [288] = { + ["id"] = "fractured.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["type"] = "fractured", + }, + [289] = { + ["id"] = "fractured.stat_2954116742|7809", + ["text"] = "Allocates Wild Storm", + ["type"] = "fractured", + }, + [290] = { + ["id"] = "fractured.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["type"] = "fractured", + }, + [291] = { + ["id"] = "fractured.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["type"] = "fractured", + }, + [292] = { + ["id"] = "fractured.stat_2638756573", + ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + ["type"] = "fractured", + }, + [293] = { + ["id"] = "fractured.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "fractured", + }, + [294] = { + ["id"] = "fractured.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", + ["type"] = "fractured", + }, + [295] = { + ["id"] = "fractured.stat_61644361", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["type"] = "fractured", + }, + [296] = { + ["id"] = "fractured.stat_2954116742|55193", + ["text"] = "Allocates Subterfuge Mask", + ["type"] = "fractured", + }, + [297] = { + ["id"] = "fractured.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["type"] = "fractured", + }, + [298] = { + ["id"] = "fractured.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", + ["type"] = "fractured", + }, + [299] = { + ["id"] = "fractured.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["type"] = "fractured", + }, + [300] = { + ["id"] = "fractured.stat_3028809864", + ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "fractured", + }, + [301] = { + ["id"] = "fractured.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["type"] = "fractured", + }, + [302] = { + ["id"] = "fractured.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "fractured", + }, + [303] = { + ["id"] = "fractured.stat_3752589831", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["type"] = "fractured", + }, + [304] = { + ["id"] = "fractured.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + ["type"] = "fractured", + }, + [305] = { + ["id"] = "fractured.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "fractured", + }, + [306] = { + ["id"] = "fractured.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["type"] = "fractured", + }, + [307] = { + ["id"] = "fractured.stat_1323216174", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "fractured", + }, + [308] = { + ["id"] = "fractured.stat_147764878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "fractured", + }, + [309] = { + ["id"] = "fractured.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "fractured", + }, + [310] = { + ["id"] = "fractured.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["type"] = "fractured", + }, + [311] = { + ["id"] = "fractured.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["type"] = "fractured", + }, + [312] = { + ["id"] = "fractured.stat_3173882956", + ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["type"] = "fractured", + }, + [313] = { + ["id"] = "fractured.stat_412709880", + ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + ["type"] = "fractured", + }, + [314] = { + ["id"] = "fractured.stat_2954116742|39881", + ["text"] = "Allocates Staggering Palm", + ["type"] = "fractured", + }, + [315] = { + ["id"] = "fractured.stat_2954116742|27303", + ["text"] = "Allocates Vulgar Methods", + ["type"] = "fractured", + }, + [316] = { + ["id"] = "fractured.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", + ["type"] = "fractured", + }, + [317] = { + ["id"] = "fractured.stat_793875384", + ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", + ["type"] = "fractured", + }, + [318] = { + ["id"] = "fractured.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["type"] = "fractured", + }, + [319] = { + ["id"] = "fractured.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "fractured", + }, + [320] = { + ["id"] = "fractured.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["type"] = "fractured", + }, + [321] = { + ["id"] = "fractured.stat_2954116742|22864", + ["text"] = "Allocates Tainted Strike", + ["type"] = "fractured", + }, + [322] = { + ["id"] = "fractured.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["type"] = "fractured", + }, + [323] = { + ["id"] = "fractured.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["type"] = "fractured", + }, + [324] = { + ["id"] = "fractured.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "fractured", + }, + [325] = { + ["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", + }, + [326] = { + ["id"] = "fractured.stat_1569159338", + ["text"] = "#% increased Parry Damage", + ["type"] = "fractured", + }, + [327] = { + ["id"] = "fractured.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["type"] = "fractured", + }, + [328] = { + ["id"] = "fractured.stat_2610562860", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + ["type"] = "fractured", + }, + [329] = { + ["id"] = "fractured.stat_654207792", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "fractured", + }, + [330] = { + ["id"] = "fractured.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "fractured", + }, + [331] = { + ["id"] = "fractured.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "fractured", + }, + [332] = { + ["id"] = "fractured.stat_2954116742|38535", + ["text"] = "Allocates Stormcharged", + ["type"] = "fractured", + }, + [333] = { + ["id"] = "fractured.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "fractured", + }, + [334] = { + ["id"] = "fractured.stat_4258720395", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "fractured", + }, + [335] = { + ["id"] = "fractured.stat_2954116742|26107", + ["text"] = "Allocates Kite Runner", + ["type"] = "fractured", + }, + [336] = { + ["id"] = "fractured.stat_266564538", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + ["type"] = "fractured", + }, + [337] = { + ["id"] = "fractured.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["type"] = "fractured", + }, + [338] = { + ["id"] = "fractured.stat_3749502527", + ["text"] = "#% chance to gain Volatility on Kill", + ["type"] = "fractured", + }, + [339] = { + ["id"] = "fractured.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", + ["type"] = "fractured", + }, + [340] = { + ["id"] = "fractured.stat_2954116742|31172", + ["text"] = "Allocates Falcon Technique", + ["type"] = "fractured", + }, + [341] = { + ["id"] = "fractured.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["type"] = "fractured", + }, + [342] = { + ["id"] = "fractured.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "fractured", + }, + [343] = { + ["id"] = "fractured.stat_2954116742|56265", + ["text"] = "Allocates Throatseeker", + ["type"] = "fractured", + }, + [344] = { + ["id"] = "fractured.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "fractured", + }, + [345] = { + ["id"] = "fractured.stat_2954116742|62230", + ["text"] = "Allocates Patient Barrier", + ["type"] = "fractured", + }, + [346] = { + ["id"] = "fractured.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "fractured", + }, + [347] = { + ["id"] = "fractured.stat_3596695232", + ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "fractured", + }, + [348] = { + ["id"] = "fractured.stat_3666476747", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + ["type"] = "fractured", + }, + [349] = { + ["id"] = "fractured.stat_2954116742|30132", + ["text"] = "Allocates Wrapped Quiver", + ["type"] = "fractured", + }, + [350] = { + ["id"] = "fractured.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["type"] = "fractured", + }, + [351] = { + ["id"] = "fractured.stat_391602279", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["type"] = "fractured", + }, + [352] = { + ["id"] = "fractured.stat_2523933828", + ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "fractured", + }, + [353] = { + ["id"] = "fractured.stat_3146310524", + ["text"] = "Dazes on Hit", + ["type"] = "fractured", + }, + [354] = { + ["id"] = "fractured.stat_2954116742|56776", + ["text"] = "Allocates Cooked", + ["type"] = "fractured", + }, + [355] = { + ["id"] = "fractured.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "fractured", + }, + [356] = { + ["id"] = "fractured.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["type"] = "fractured", + }, + [357] = { + ["id"] = "fractured.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "fractured", + }, + [358] = { + ["id"] = "fractured.stat_2954116742|60034", + ["text"] = "Allocates Falcon Dive", + ["type"] = "fractured", + }, + [359] = { + ["id"] = "fractured.stat_3243034867", + ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", + ["type"] = "fractured", + }, + [360] = { + ["id"] = "fractured.stat_2954116742|58016", + ["text"] = "Allocates All Natural", + ["type"] = "fractured", + }, + [361] = { + ["id"] = "fractured.stat_2580617872", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["type"] = "fractured", + }, + [362] = { + ["id"] = "fractured.stat_2954116742|1546", + ["text"] = "Allocates Spiral into Depression", + ["type"] = "fractured", + }, + [363] = { + ["id"] = "fractured.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["type"] = "fractured", + }, + [364] = { + ["id"] = "fractured.stat_2954116742|19044", + ["text"] = "Allocates Arcane Intensity", + ["type"] = "fractured", + }, + [365] = { + ["id"] = "fractured.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + ["type"] = "fractured", + }, + [366] = { + ["id"] = "fractured.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "fractured", + }, + [367] = { + ["id"] = "fractured.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "fractured", + }, + [368] = { + ["id"] = "fractured.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "fractured", + }, + [369] = { + ["id"] = "fractured.stat_2954116742|55149", + ["text"] = "Allocates Pure Chaos", + ["type"] = "fractured", + }, + [370] = { + ["id"] = "fractured.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", + ["type"] = "fractured", + }, + [371] = { + ["id"] = "fractured.stat_2954116742|116", + ["text"] = "Allocates Insightfulness", + ["type"] = "fractured", + }, + [372] = { + ["id"] = "fractured.stat_2954116742|57204", + ["text"] = "Allocates Critical Exploit", + ["type"] = "fractured", + }, + [373] = { + ["id"] = "fractured.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["type"] = "fractured", + }, + [374] = { + ["id"] = "fractured.stat_2954116742|44566", + ["text"] = "Allocates Lightning Rod", + ["type"] = "fractured", + }, + [375] = { + ["id"] = "fractured.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["type"] = "fractured", + }, + [376] = { + ["id"] = "fractured.stat_2954116742|5703", + ["text"] = "Allocates Echoing Thunder", + ["type"] = "fractured", + }, + [377] = { + ["id"] = "fractured.stat_2954116742|12337", + ["text"] = "Allocates Flash Storm", + ["type"] = "fractured", + }, + [378] = { + ["id"] = "fractured.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", + ["type"] = "fractured", + }, + [379] = { + ["id"] = "fractured.stat_2954116742|36085", + ["text"] = "Allocates Serrated Edges", + ["type"] = "fractured", + }, + [380] = { + ["id"] = "fractured.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", + ["type"] = "fractured", + }, + [381] = { + ["id"] = "fractured.stat_2954116742|46060", + ["text"] = "Allocates Voracious", + ["type"] = "fractured", + }, + [382] = { + ["id"] = "fractured.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", + ["type"] = "fractured", + }, + [383] = { + ["id"] = "fractured.stat_2954116742|44299", + ["text"] = "Allocates Enhanced Barrier", + ["type"] = "fractured", + }, + [384] = { + ["id"] = "fractured.stat_2954116742|19955", + ["text"] = "Allocates Endless Blizzard", + ["type"] = "fractured", + }, + [385] = { + ["id"] = "fractured.stat_2954116742|5802", + ["text"] = "Allocates Stand and Deliver", + ["type"] = "fractured", + }, + [386] = { + ["id"] = "fractured.stat_2954116742|34473", + ["text"] = "Allocates Spaghettification", + ["type"] = "fractured", + }, + [387] = { + ["id"] = "fractured.stat_2954116742|372", + ["text"] = "Allocates Heatproof", + ["type"] = "fractured", + }, + [388] = { + ["id"] = "fractured.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "fractured", + }, + [389] = { + ["id"] = "fractured.stat_2954116742|41580", + ["text"] = "Allocates Maiming Strike", + ["type"] = "fractured", + }, + [390] = { + ["id"] = "fractured.stat_2954116742|25513", + ["text"] = "Allocates Overwhelm", + ["type"] = "fractured", + }, + [391] = { + ["id"] = "fractured.stat_2954116742|5728", + ["text"] = "Allocates Ancient Aegis", + ["type"] = "fractured", + }, + [392] = { + ["id"] = "fractured.stat_2954116742|18505", + ["text"] = "Allocates Crushing Verdict", + ["type"] = "fractured", + }, + [393] = { + ["id"] = "fractured.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["type"] = "fractured", + }, + [394] = { + ["id"] = "fractured.stat_2954116742|21380", + ["text"] = "Allocates Preemptive Strike", + ["type"] = "fractured", + }, + [395] = { + ["id"] = "fractured.stat_2954116742|43082", + ["text"] = "Allocates Acceleration", + ["type"] = "fractured", + }, + [396] = { + ["id"] = "fractured.stat_2954116742|8827", + ["text"] = "Allocates Fast Metabolism", + ["type"] = "fractured", + }, + [397] = { + ["id"] = "fractured.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "fractured", + }, + [398] = { + ["id"] = "fractured.stat_2954116742|2394", + ["text"] = "Allocates Blade Flurry", + ["type"] = "fractured", + }, + [399] = { + ["id"] = "fractured.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", + ["type"] = "fractured", + }, + [400] = { + ["id"] = "fractured.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["type"] = "fractured", + }, + [401] = { + ["id"] = "fractured.stat_2954116742|19715", + ["text"] = "Allocates Cremation", + ["type"] = "fractured", + }, + [402] = { + ["id"] = "fractured.stat_2954116742|46972", + ["text"] = "Allocates Arcane Mixtures", + ["type"] = "fractured", + }, + [403] = { + ["id"] = "fractured.stat_4147897060", + ["text"] = "#% increased Block chance", + ["type"] = "fractured", + }, + [404] = { + ["id"] = "fractured.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "fractured", + }, + [405] = { + ["id"] = "fractured.stat_2954116742|40990", + ["text"] = "Allocates Exposed to the Storm", + ["type"] = "fractured", + }, + [406] = { + ["id"] = "fractured.stat_2954116742|6229", + ["text"] = "Allocates Push the Advantage", + ["type"] = "fractured", + }, + [407] = { + ["id"] = "fractured.stat_2954116742|17340", + ["text"] = "Allocates Adrenaline Rush", + ["type"] = "fractured", + }, + [408] = { + ["id"] = "fractured.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["type"] = "fractured", + }, + [409] = { + ["id"] = "fractured.stat_2954116742|28044", + ["text"] = "Allocates Coming Calamity", + ["type"] = "fractured", + }, + [410] = { + ["id"] = "fractured.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "fractured", + }, + [411] = { + ["id"] = "fractured.stat_4258000627", + ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", + ["type"] = "fractured", + }, + [412] = { + ["id"] = "fractured.stat_2954116742|15083", + ["text"] = "Allocates Power Conduction", + ["type"] = "fractured", + }, + [413] = { + ["id"] = "fractured.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["type"] = "fractured", + }, + [414] = { + ["id"] = "fractured.stat_2954116742|44756", + ["text"] = "Allocates Marked Agility", + ["type"] = "fractured", + }, + [415] = { + ["id"] = "fractured.stat_2954116742|64119", + ["text"] = "Allocates Rapid Reload", + ["type"] = "fractured", + }, + [416] = { + ["id"] = "fractured.stat_3065378291", + ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["type"] = "fractured", + }, + [417] = { + ["id"] = "fractured.stat_2954116742|13724", + ["text"] = "Allocates Deadly Force", + ["type"] = "fractured", + }, + [418] = { + ["id"] = "fractured.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "fractured", + }, + [419] = { + ["id"] = "fractured.stat_1892122971", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "fractured", + }, + [420] = { + ["id"] = "fractured.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "fractured", + }, + [421] = { + ["id"] = "fractured.stat_2954116742|46197", + ["text"] = "Allocates Careful Assassin", + ["type"] = "fractured", + }, + [422] = { + ["id"] = "fractured.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", + ["type"] = "fractured", + }, + [423] = { + ["id"] = "fractured.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", + ["type"] = "fractured", + }, + [424] = { + ["id"] = "fractured.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["type"] = "fractured", + }, + [425] = { + ["id"] = "fractured.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "fractured", + }, + [426] = { + ["id"] = "fractured.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["type"] = "fractured", + }, + [427] = { + ["id"] = "fractured.stat_2954116742|11826", + ["text"] = "Allocates Heavy Ammunition", + ["type"] = "fractured", + }, + [428] = { + ["id"] = "fractured.stat_2954116742|43944", + ["text"] = "Allocates Instability", + ["type"] = "fractured", + }, + [429] = { + ["id"] = "fractured.stat_2954116742|10265", + ["text"] = "Allocates Javelin", + ["type"] = "fractured", + }, + [430] = { + ["id"] = "fractured.stat_2954116742|6178", + ["text"] = "Allocates Power Shots", + ["type"] = "fractured", + }, + [431] = { + ["id"] = "fractured.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["type"] = "fractured", + }, + [432] = { + ["id"] = "fractured.stat_2954116742|62034", + ["text"] = "Allocates Prism Guard", + ["type"] = "fractured", + }, + [433] = { + ["id"] = "fractured.stat_2954116742|9968", + ["text"] = "Allocates Feel the Earth", + ["type"] = "fractured", + }, + [434] = { + ["id"] = "fractured.stat_2954116742|2138", + ["text"] = "Allocates Spiral into Insanity", + ["type"] = "fractured", + }, + [435] = { + ["id"] = "fractured.stat_2954116742|3688", + ["text"] = "Allocates Dynamism", + ["type"] = "fractured", + }, + [436] = { + ["id"] = "fractured.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["type"] = "fractured", + }, + [437] = { + ["id"] = "fractured.stat_2954116742|16816", + ["text"] = "Allocates Pinpoint Shot", + ["type"] = "fractured", + }, + [438] = { + ["id"] = "fractured.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", + ["type"] = "fractured", + }, + [439] = { + ["id"] = "fractured.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["type"] = "fractured", + }, + [440] = { + ["id"] = "fractured.stat_2954116742|48581", + ["text"] = "Allocates Exploit the Elements", + ["type"] = "fractured", + }, + [441] = { + ["id"] = "fractured.stat_2954116742|54814", + ["text"] = "Allocates Profane Commander", + ["type"] = "fractured", + }, + [442] = { + ["id"] = "fractured.stat_2392824305", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + ["type"] = "fractured", + }, + [443] = { + ["id"] = "fractured.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "fractured", + }, + [444] = { + ["id"] = "fractured.stat_2954116742|13407", + ["text"] = "Allocates Heartbreaking", + ["type"] = "fractured", + }, + [445] = { + ["id"] = "fractured.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["type"] = "fractured", + }, + [446] = { + ["id"] = "fractured.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", + ["type"] = "fractured", + }, + [447] = { + ["id"] = "fractured.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "fractured", + }, + [448] = { + ["id"] = "fractured.stat_2954116742|27491", + ["text"] = "Allocates Heavy Buffer", + ["type"] = "fractured", + }, + [449] = { + ["id"] = "fractured.stat_2954116742|3985", + ["text"] = "Allocates Forces of Nature", + ["type"] = "fractured", + }, + [450] = { + ["id"] = "fractured.stat_2954116742|11526", + ["text"] = "Allocates Sniper", + ["type"] = "fractured", + }, + [451] = { + ["id"] = "fractured.stat_2954116742|29372", + ["text"] = "Allocates Sudden Infuriation", + ["type"] = "fractured", + }, + [452] = { + ["id"] = "fractured.stat_2954116742|29527", + ["text"] = "Allocates First Approach", + ["type"] = "fractured", + }, + [453] = { + ["id"] = "fractured.stat_2954116742|20677", + ["text"] = "Allocates For the Jugular", + ["type"] = "fractured", + }, + [454] = { + ["id"] = "fractured.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["type"] = "fractured", + }, + [455] = { + ["id"] = "fractured.stat_2954116742|32353", + ["text"] = "Allocates Swift Claw", + ["type"] = "fractured", + }, + [456] = { + ["id"] = "fractured.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "fractured", + }, + [457] = { + ["id"] = "fractured.stat_2954116742|9472", + ["text"] = "Allocates Catapult", + ["type"] = "fractured", + }, + [458] = { + ["id"] = "fractured.stat_2954116742|34324", + ["text"] = "Allocates Spectral Ward", + ["type"] = "fractured", + }, + [459] = { + ["id"] = "fractured.stat_2954116742|10681", + ["text"] = "Allocates Defensive Stance", + ["type"] = "fractured", + }, + [460] = { + ["id"] = "fractured.stat_2954116742|51707", + ["text"] = "Allocates Enhanced Reflexes", + ["type"] = "fractured", + }, + [461] = { + ["id"] = "fractured.stat_2954116742|57379", + ["text"] = "Allocates In Your Face", + ["type"] = "fractured", + }, + [462] = { + ["id"] = "fractured.stat_2954116742|39369", + ["text"] = "Allocates Struck Through", + ["type"] = "fractured", + }, + [463] = { + ["id"] = "fractured.stat_2954116742|8273", + ["text"] = "Allocates Endless Circuit", + ["type"] = "fractured", + }, + [464] = { + ["id"] = "fractured.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "fractured", + }, + [465] = { + ["id"] = "fractured.stat_2334956771", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "fractured", + }, + [466] = { + ["id"] = "fractured.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["type"] = "fractured", + }, + [467] = { + ["id"] = "fractured.stat_2954116742|17548", + ["text"] = "Allocates Moment of Truth", + ["type"] = "fractured", + }, + [468] = { + ["id"] = "fractured.stat_2954116742|51867", + ["text"] = "Allocates Finality", + ["type"] = "fractured", + }, + [469] = { + ["id"] = "fractured.stat_2954116742|52618", + ["text"] = "Allocates Boon of the Beast", + ["type"] = "fractured", + }, + [470] = { + ["id"] = "fractured.stat_2954116742|9020", + ["text"] = "Allocates Giantslayer", + ["type"] = "fractured", + }, + [471] = { + ["id"] = "fractured.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["type"] = "fractured", + }, + [472] = { + ["id"] = "fractured.stat_2954116742|30562", + ["text"] = "Allocates Inner Faith", + ["type"] = "fractured", + }, + [473] = { + ["id"] = "fractured.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["type"] = "fractured", + }, + [474] = { + ["id"] = "fractured.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", + ["type"] = "fractured", + }, + [475] = { + ["id"] = "fractured.stat_2954116742|45599", + ["text"] = "Allocates Lay Siege", + ["type"] = "fractured", + }, + [476] = { + ["id"] = "fractured.stat_2954116742|44330", + ["text"] = "Allocates Coated Arms", + ["type"] = "fractured", + }, + [477] = { + ["id"] = "fractured.stat_2954116742|36341", + ["text"] = "Allocates Cull the Hordes", + ["type"] = "fractured", + }, + [478] = { + ["id"] = "fractured.stat_2954116742|4709", + ["text"] = "Allocates Near Sighted", + ["type"] = "fractured", + }, + [479] = { + ["id"] = "fractured.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["type"] = "fractured", + }, + [480] = { + ["id"] = "fractured.stat_2954116742|1823", + ["text"] = "Allocates Illuminated Crown", + ["type"] = "fractured", + }, + [481] = { + ["id"] = "fractured.stat_2954116742|16618", + ["text"] = "Allocates Jack of all Trades", + ["type"] = "fractured", + }, + [482] = { + ["id"] = "fractured.stat_2954116742|8531", + ["text"] = "Allocates Leaping Ambush", + ["type"] = "fractured", + }, + [483] = { + ["id"] = "fractured.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", + ["type"] = "fractured", + }, + [484] = { + ["id"] = "fractured.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", + ["type"] = "fractured", + }, + [485] = { + ["id"] = "fractured.stat_2954116742|52392", + ["text"] = "Allocates Singular Purpose", + ["type"] = "fractured", + }, + [486] = { + ["id"] = "fractured.stat_2954116742|35966", + ["text"] = "Allocates Heart Tissue", + ["type"] = "fractured", + }, + [487] = { + ["id"] = "fractured.stat_2954116742|10998", + ["text"] = "Allocates Strong Chin", + ["type"] = "fractured", + }, + [488] = { + ["id"] = "fractured.stat_2954116742|47316", + ["text"] = "Allocates Goring", + ["type"] = "fractured", + }, + [489] = { + ["id"] = "fractured.stat_2954116742|65265", + ["text"] = "Allocates Swift Interruption", + ["type"] = "fractured", + }, + [490] = { + ["id"] = "fractured.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["type"] = "fractured", + }, + [491] = { + ["id"] = "fractured.stat_2954116742|934", + ["text"] = "Allocates Natural Immunity", + ["type"] = "fractured", + }, + [492] = { + ["id"] = "fractured.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "fractured", + }, + [493] = { + ["id"] = "fractured.stat_2954116742|37514", + ["text"] = "Allocates Whirling Assault", + ["type"] = "fractured", + }, + [494] = { + ["id"] = "fractured.stat_2954116742|47363", + ["text"] = "Allocates Colossal Weapon", + ["type"] = "fractured", + }, + [495] = { + ["id"] = "fractured.stat_2954116742|55180", + ["text"] = "Allocates Relentless Fallen", + ["type"] = "fractured", + }, + [496] = { + ["id"] = "fractured.stat_2954116742|62609", + ["text"] = "Allocates Ancestral Unity", + ["type"] = "fractured", + }, + [497] = { + ["id"] = "fractured.stat_2954116742|36623", + ["text"] = "Allocates Convalescence", + ["type"] = "fractured", + }, + [498] = { + ["id"] = "fractured.stat_2954116742|2021", + ["text"] = "Allocates Wellspring", + ["type"] = "fractured", + }, + [499] = { + ["id"] = "fractured.stat_2954116742|42077", + ["text"] = "Allocates Essence Infusion", + ["type"] = "fractured", + }, + [500] = { + ["id"] = "fractured.stat_2954116742|13980", + ["text"] = "Allocates Split the Earth", + ["type"] = "fractured", + }, + [501] = { + ["id"] = "fractured.stat_2954116742|63037", + ["text"] = "Allocates Sigil of Fire", + ["type"] = "fractured", + }, + [502] = { + ["id"] = "fractured.stat_2954116742|37872", + ["text"] = "Allocates Presence Present", + ["type"] = "fractured", + }, + [503] = { + ["id"] = "fractured.stat_2954116742|42065", + ["text"] = "Allocates Surging Currents", + ["type"] = "fractured", + }, + [504] = { + ["id"] = "fractured.stat_2954116742|47635", + ["text"] = "Allocates Overload", + ["type"] = "fractured", + }, + [505] = { + ["id"] = "fractured.stat_2954116742|30408", + ["text"] = "Allocates Efficient Contraptions", + ["type"] = "fractured", + }, + [506] = { + ["id"] = "fractured.stat_2954116742|22967", + ["text"] = "Allocates Vigilance", + ["type"] = "fractured", + }, + [507] = { + ["id"] = "fractured.stat_2954116742|50062", + ["text"] = "Allocates Barrier of Venarius", + ["type"] = "fractured", + }, + [508] = { + ["id"] = "fractured.stat_2954116742|23939", + ["text"] = "Allocates Glazed Flesh", + ["type"] = "fractured", + }, + [509] = { + ["id"] = "fractured.stat_2954116742|7338", + ["text"] = "Allocates Abasement", + ["type"] = "fractured", + }, + [510] = { + ["id"] = "fractured.stat_2954116742|56999", + ["text"] = "Allocates Locked On", + ["type"] = "fractured", + }, + [511] = { + ["id"] = "fractured.stat_2954116742|25482", + ["text"] = "Allocates Beef", + ["type"] = "fractured", + }, + [512] = { + ["id"] = "fractured.stat_2954116742|5663", + ["text"] = "Allocates Endurance", + ["type"] = "fractured", + }, + [513] = { + ["id"] = "fractured.stat_2954116742|60764", + ["text"] = "Allocates Feathered Fletching", + ["type"] = "fractured", + }, + [514] = { + ["id"] = "fractured.stat_2954116742|3894", + ["text"] = "Allocates Eldritch Will", + ["type"] = "fractured", + }, + [515] = { + ["id"] = "fractured.stat_2954116742|32071", + ["text"] = "Allocates Primal Growth", + ["type"] = "fractured", + }, + [516] = { + ["id"] = "fractured.stat_2954116742|57471", + ["text"] = "Allocates Hunker Down", + ["type"] = "fractured", + }, + [517] = { + ["id"] = "fractured.stat_1301765461", + ["text"] = "#% to Maximum Chaos Resistance", + ["type"] = "fractured", + }, + [518] = { + ["id"] = "fractured.stat_2954116742|17882", + ["text"] = "Allocates Volatile Grenades", + ["type"] = "fractured", + }, + [519] = { + ["id"] = "fractured.stat_2954116742|8904", + ["text"] = "Allocates Death from Afar", + ["type"] = "fractured", + }, + [520] = { + ["id"] = "fractured.stat_2954116742|54911", + ["text"] = "Allocates Firestarter", + ["type"] = "fractured", + }, + [521] = { + ["id"] = "fractured.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", + ["type"] = "fractured", + }, + [522] = { + ["id"] = "fractured.stat_2954116742|52191", + ["text"] = "Allocates Event Horizon", + ["type"] = "fractured", + }, + [523] = { + ["id"] = "fractured.stat_2954116742|13738", + ["text"] = "Allocates Lightning Quick", + ["type"] = "fractured", + }, + [524] = { + ["id"] = "fractured.stat_2954116742|7777", + ["text"] = "Allocates Breaking Point", + ["type"] = "fractured", + }, + [525] = { + ["id"] = "fractured.stat_2954116742|13895", + ["text"] = "Allocates Precise Point", + ["type"] = "fractured", + }, + [526] = { + ["id"] = "fractured.stat_2954116742|336", + ["text"] = "Allocates Storm Swell", + ["type"] = "fractured", + }, + [527] = { + ["id"] = "fractured.stat_2954116742|39050", + ["text"] = "Allocates Exploit", + ["type"] = "fractured", + }, + [528] = { + ["id"] = "fractured.stat_2954116742|33240", + ["text"] = "Allocates Lord of Horrors", + ["type"] = "fractured", + }, + [529] = { + ["id"] = "fractured.stat_2954116742|17260", + ["text"] = "Allocates Piercing Claw", + ["type"] = "fractured", + }, + [530] = { + ["id"] = "fractured.stat_2954116742|38459", + ["text"] = "Allocates Disorientation", + ["type"] = "fractured", + }, + [531] = { + ["id"] = "fractured.stat_2954116742|41512", + ["text"] = "Allocates Heavy Weaponry", + ["type"] = "fractured", + }, + [532] = { + ["id"] = "fractured.stat_2954116742|51820", + ["text"] = "Allocates Ancestral Conduits", + ["type"] = "fractured", + }, + [533] = { + ["id"] = "fractured.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", + ["type"] = "fractured", + }, + [534] = { + ["id"] = "fractured.stat_2954116742|53941", + ["text"] = "Allocates Shimmering", + ["type"] = "fractured", + }, + [535] = { + ["id"] = "fractured.stat_2954116742|53823", + ["text"] = "Allocates Towering Shield", + ["type"] = "fractured", + }, + [536] = { + ["id"] = "fractured.stat_554690751", + ["text"] = "Players are periodically Cursed with Elemental Weakness", + ["type"] = "fractured", + }, + [537] = { + ["id"] = "fractured.stat_2954116742|53030", + ["text"] = "Allocates Immolation", + ["type"] = "fractured", + }, + [538] = { + ["id"] = "fractured.stat_2954116742|17330", + ["text"] = "Allocates Perforation", + ["type"] = "fractured", + }, + [539] = { + ["id"] = "fractured.stat_2954116742|25971", + ["text"] = "Allocates Tenfold Attacks", + ["type"] = "fractured", + }, + [540] = { + ["id"] = "fractured.stat_2954116742|53853", + ["text"] = "Allocates Backup Plan", + ["type"] = "fractured", + }, + [541] = { + ["id"] = "fractured.stat_2954116742|21349", + ["text"] = "Allocates The Quick Fox", + ["type"] = "fractured", + }, + [542] = { + ["id"] = "fractured.stat_2954116742|28267", + ["text"] = "Allocates Desensitisation", + ["type"] = "fractured", + }, + [543] = { + ["id"] = "fractured.stat_2954116742|27176", + ["text"] = "Allocates The Power Within", + ["type"] = "fractured", + }, + [544] = { + ["id"] = "fractured.stat_2954116742|55", + ["text"] = "Allocates Fast Acting Toxins", + ["type"] = "fractured", + }, + [545] = { + ["id"] = "fractured.stat_2954116742|16499", + ["text"] = "Allocates Lingering Whispers", + ["type"] = "fractured", + }, + [546] = { + ["id"] = "fractured.stat_2954116742|63759", + ["text"] = "Allocates Stacking Toxins", + ["type"] = "fractured", + }, + [547] = { + ["id"] = "fractured.stat_2954116742|19337", + ["text"] = "Allocates Precision Salvo", + ["type"] = "fractured", + }, + [548] = { + ["id"] = "fractured.stat_2954116742|31826", + ["text"] = "Allocates Long Distance Relationship", + ["type"] = "fractured", + }, + [549] = { + ["id"] = "fractured.stat_2954116742|55708", + ["text"] = "Allocates Electric Amplification", + ["type"] = "fractured", + }, + [550] = { + ["id"] = "fractured.stat_2954116742|57190", + ["text"] = "Allocates Doomsayer", + ["type"] = "fractured", + }, + [551] = { + ["id"] = "fractured.stat_2954116742|59303", + ["text"] = "Allocates Lucky Rabbit Foot", + ["type"] = "fractured", + }, + [552] = { + ["id"] = "fractured.stat_1181419800", + ["text"] = "#% increased Damage with Maces", + ["type"] = "fractured", + }, + [553] = { + ["id"] = "fractured.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["type"] = "fractured", + }, + [554] = { + ["id"] = "fractured.stat_2954116742|2511", + ["text"] = "Allocates Sundering", + ["type"] = "fractured", + }, + [555] = { + ["id"] = "fractured.stat_2954116742|3215", + ["text"] = "Allocates Melding", + ["type"] = "fractured", + }, + [556] = { + ["id"] = "fractured.stat_2954116742|17854", + ["text"] = "Allocates Escape Velocity", + ["type"] = "fractured", + }, + [557] = { + ["id"] = "fractured.stat_2954116742|32976", + ["text"] = "Allocates Gem Enthusiast", + ["type"] = "fractured", + }, + [558] = { + ["id"] = "fractured.stat_2954116742|61338", + ["text"] = "Allocates Breath of Lightning", + ["type"] = "fractured", + }, + [559] = { + ["id"] = "fractured.stat_2954116742|64240", + ["text"] = "Allocates Battle Fever", + ["type"] = "fractured", + }, + [560] = { + ["id"] = "fractured.stat_2954116742|61703", + ["text"] = "Allocates Sharpened Claw", + ["type"] = "fractured", + }, + [561] = { + ["id"] = "fractured.stat_2954116742|59720", + ["text"] = "Allocates Beastial Skin", + ["type"] = "fractured", + }, + [562] = { + ["id"] = "fractured.stat_2954116742|30523", + ["text"] = "Allocates Dead can Dance", + ["type"] = "fractured", + }, + [563] = { + ["id"] = "fractured.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["type"] = "fractured", + }, + [564] = { + ["id"] = "fractured.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", + ["type"] = "fractured", + }, + [565] = { + ["id"] = "fractured.stat_2954116742|2645", + ["text"] = "Allocates Skullcrusher", + ["type"] = "fractured", + }, + [566] = { + ["id"] = "fractured.stat_2954116742|40166", + ["text"] = "Allocates Deep Trance", + ["type"] = "fractured", + }, + [567] = { + ["id"] = "fractured.stat_1129429646", + ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + ["type"] = "fractured", + }, + [568] = { + ["id"] = "fractured.stat_2954116742|24630", + ["text"] = "Allocates Fulmination", + ["type"] = "fractured", + }, + [569] = { + ["id"] = "fractured.stat_2954116742|25711", + ["text"] = "Allocates Thrill of Battle", + ["type"] = "fractured", + }, + [570] = { + ["id"] = "fractured.stat_2954116742|17372", + ["text"] = "Allocates Reaching Strike", + ["type"] = "fractured", + }, + [571] = { + ["id"] = "fractured.stat_2954116742|50884", + ["text"] = "Allocates Primal Sundering", + ["type"] = "fractured", + }, + [572] = { + ["id"] = "fractured.stat_2954116742|49984", + ["text"] = "Allocates Spellblade", + ["type"] = "fractured", + }, + [573] = { + ["id"] = "fractured.stat_2954116742|42177", + ["text"] = "Allocates Blurred Motion", + ["type"] = "fractured", + }, + [574] = { + ["id"] = "fractured.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", + ["type"] = "fractured", + }, + [575] = { + ["id"] = "fractured.stat_2954116742|62803", + ["text"] = "Allocates Woodland Aspect", + ["type"] = "fractured", + }, + [576] = { + ["id"] = "fractured.stat_2954116742|30456", + ["text"] = "Allocates High Alert", + ["type"] = "fractured", + }, + [577] = { + ["id"] = "fractured.stat_2954116742|21537", + ["text"] = "Allocates Fervour", + ["type"] = "fractured", + }, + [578] = { + ["id"] = "fractured.stat_2954116742|50392", + ["text"] = "Allocates Brute Strength", + ["type"] = "fractured", + }, + [579] = { + ["id"] = "fractured.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", + ["type"] = "fractured", + }, + [580] = { + ["id"] = "fractured.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "fractured", + }, + [581] = { + ["id"] = "fractured.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "fractured", + }, + [582] = { + ["id"] = "fractured.stat_2954116742|11774", + ["text"] = "Allocates The Spring Hare", + ["type"] = "fractured", + }, + [583] = { + ["id"] = "fractured.stat_2954116742|35560", + ["text"] = "Allocates At your Command", + ["type"] = "fractured", + }, + [584] = { + ["id"] = "fractured.stat_2954116742|60404", + ["text"] = "Allocates Perfect Opportunity", + ["type"] = "fractured", + }, + [585] = { + ["id"] = "fractured.stat_2954116742|8554", + ["text"] = "Allocates Burning Nature", + ["type"] = "fractured", + }, + [586] = { + ["id"] = "fractured.stat_2954116742|58426", + ["text"] = "Allocates Pocket Sand", + ["type"] = "fractured", + }, + [587] = { + ["id"] = "fractured.stat_2954116742|43677", + ["text"] = "Allocates Crippling Toxins", + ["type"] = "fractured", + }, + [588] = { + ["id"] = "fractured.stat_2954116742|12611", + ["text"] = "Allocates Harness the Elements", + ["type"] = "fractured", + }, + [589] = { + ["id"] = "fractured.stat_3477720557", + ["text"] = "Area has patches of Shocked Ground", + ["type"] = "fractured", + }, + [590] = { + ["id"] = "fractured.stat_1347539079", + ["text"] = "#% Surpassing chance to fire an additional Projectile", + ["type"] = "fractured", + }, + [591] = { + ["id"] = "fractured.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", + ["type"] = "fractured", + }, + [592] = { + ["id"] = "fractured.stat_2954116742|33887", + ["text"] = "Allocates Full Salvo", + ["type"] = "fractured", + }, + [593] = { + ["id"] = "fractured.stat_2954116742|17955", + ["text"] = "Allocates Careful Consideration", + ["type"] = "fractured", + }, + [594] = { + ["id"] = "fractured.stat_2954116742|65023", + ["text"] = "Allocates Impenetrable Shell", + ["type"] = "fractured", + }, + [595] = { + ["id"] = "fractured.stat_2954116742|5284", + ["text"] = "Allocates Shredding Force", + ["type"] = "fractured", + }, + [596] = { + ["id"] = "fractured.stat_2954116742|39567", + ["text"] = "Allocates Ingenuity", + ["type"] = "fractured", + }, + [597] = { + ["id"] = "fractured.stat_2954116742|46224", + ["text"] = "Allocates Arcane Alchemy", + ["type"] = "fractured", + }, + [598] = { + ["id"] = "fractured.stat_2954116742|4031", + ["text"] = "Allocates Icebreaker", + ["type"] = "fractured", + }, + [599] = { + ["id"] = "fractured.stat_2954116742|38628", + ["text"] = "Allocates Escalating Toxins", + ["type"] = "fractured", + }, + [600] = { + ["id"] = "fractured.stat_2954116742|47514", + ["text"] = "Allocates Dizzying Hits", + ["type"] = "fractured", + }, + [601] = { + ["id"] = "fractured.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["type"] = "fractured", + }, + [602] = { + ["id"] = "fractured.stat_2954116742|35876", + ["text"] = "Allocates Admonisher", + ["type"] = "fractured", + }, + [603] = { + ["id"] = "fractured.stat_2954116742|44765", + ["text"] = "Allocates Distracting Presence", + ["type"] = "fractured", + }, + [604] = { + ["id"] = "fractured.stat_2954116742|13542", + ["text"] = "Allocates Loose Flesh", + ["type"] = "fractured", + }, + [605] = { + ["id"] = "fractured.stat_2954116742|30720", + ["text"] = "Allocates Entropic Incarnation", + ["type"] = "fractured", + }, + [606] = { + ["id"] = "fractured.stat_2954116742|28329", + ["text"] = "Allocates Pressure Points", + ["type"] = "fractured", + }, + [607] = { + ["id"] = "fractured.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", + ["type"] = "fractured", + }, + [608] = { + ["id"] = "fractured.stat_2954116742|40270", + ["text"] = "Allocates Frenetic", + ["type"] = "fractured", + }, + [609] = { + ["id"] = "fractured.stat_2954116742|6655", + ["text"] = "Allocates Aggravation", + ["type"] = "fractured", + }, + [610] = { + ["id"] = "fractured.stat_2954116742|22817", + ["text"] = "Allocates Inevitable Rupture", + ["type"] = "fractured", + }, + [611] = { + ["id"] = "fractured.stat_2954116742|6544", + ["text"] = "Allocates Burning Strikes", + ["type"] = "fractured", + }, + [612] = { + ["id"] = "fractured.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["type"] = "fractured", + }, + [613] = { + ["id"] = "fractured.stat_2954116742|57047", + ["text"] = "Allocates Polymathy", + ["type"] = "fractured", + }, + [614] = { + ["id"] = "fractured.stat_565784293", + ["text"] = "#% increased Knockback Distance", + ["type"] = "fractured", + }, + [615] = { + ["id"] = "fractured.stat_3429148113", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "fractured", + }, + [616] = { + ["id"] = "fractured.stat_2954116742|7604", + ["text"] = "Allocates Rapid Strike", + ["type"] = "fractured", + }, + [617] = { + ["id"] = "fractured.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + ["type"] = "fractured", + }, + [618] = { + ["id"] = "fractured.stat_2954116742|64543", + ["text"] = "Allocates Unbound Forces", + ["type"] = "fractured", + }, + [619] = { + ["id"] = "fractured.stat_2954116742|19442", + ["text"] = "Allocates Prolonged Assault", + ["type"] = "fractured", + }, + [620] = { + ["id"] = "fractured.stat_2954116742|10398", + ["text"] = "Allocates Sudden Escalation", + ["type"] = "fractured", + }, + [621] = { + ["id"] = "fractured.stat_2954116742|28482", + ["text"] = "Allocates Total Incineration", + ["type"] = "fractured", + }, + [622] = { + ["id"] = "fractured.stat_2954116742|42347", + ["text"] = "Allocates Chakra of Sight", + ["type"] = "fractured", + }, + [623] = { + ["id"] = "fractured.stat_2954116742|40117", + ["text"] = "Allocates Spiked Armour", + ["type"] = "fractured", + }, + [624] = { + ["id"] = "fractured.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", + ["type"] = "fractured", + }, + [625] = { + ["id"] = "fractured.stat_2954116742|1104", + ["text"] = "Allocates Lust for Power", + ["type"] = "fractured", + }, + [626] = { + ["id"] = "fractured.stat_2954116742|51891", + ["text"] = "Allocates Lucidity", + ["type"] = "fractured", + }, + [627] = { + ["id"] = "fractured.stat_2954116742|32354", + ["text"] = "Allocates Defiance", + ["type"] = "fractured", + }, + [628] = { + ["id"] = "fractured.stat_2954116742|15644", + ["text"] = "Allocates Shedding Skin", + ["type"] = "fractured", + }, + [629] = { + ["id"] = "fractured.stat_2954116742|20414", + ["text"] = "Allocates Reprisal", + ["type"] = "fractured", + }, + [630] = { + ["id"] = "fractured.stat_2954116742|63074", + ["text"] = "Allocates Dark Entries", + ["type"] = "fractured", + }, + [631] = { + ["id"] = "fractured.stat_2954116742|48418", + ["text"] = "Allocates Hefty Unit", + ["type"] = "fractured", + }, + [632] = { + ["id"] = "fractured.stat_2954116742|51871", + ["text"] = "Allocates Immortal Thirst", + ["type"] = "fractured", + }, + [633] = { + ["id"] = "fractured.stat_2954116742|14211", + ["text"] = "Allocates Shredding Contraptions", + ["type"] = "fractured", + }, + [634] = { + ["id"] = "fractured.stat_2954116742|38053", + ["text"] = "Allocates Deafening Cries", + ["type"] = "fractured", + }, + [635] = { + ["id"] = "fractured.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["type"] = "fractured", + }, + [636] = { + ["id"] = "fractured.stat_2954116742|23227", + ["text"] = "Allocates Initiative", + ["type"] = "fractured", + }, + [637] = { + ["id"] = "fractured.stat_2954116742|16466", + ["text"] = "Allocates Mental Alacrity", + ["type"] = "fractured", + }, + [638] = { + ["id"] = "fractured.stat_2954116742|49550", + ["text"] = "Allocates Prolonged Fury", + ["type"] = "fractured", + }, + [639] = { + ["id"] = "fractured.stat_2954116742|17229", + ["text"] = "Allocates Silent Guardian", + ["type"] = "fractured", + }, + [640] = { + ["id"] = "fractured.stat_2954116742|39347", + ["text"] = "Allocates Breaking Blows", + ["type"] = "fractured", + }, + [641] = { + ["id"] = "fractured.stat_2954116742|53935", + ["text"] = "Allocates Briny Carapace", + ["type"] = "fractured", + }, + [642] = { + ["id"] = "fractured.stat_2954116742|21164", + ["text"] = "Allocates Fleshcrafting", + ["type"] = "fractured", + }, + [643] = { + ["id"] = "fractured.stat_2954116742|15030", + ["text"] = "Allocates Consistent Intake", + ["type"] = "fractured", + }, + [644] = { + ["id"] = "fractured.stat_2954116742|63255", + ["text"] = "Allocates Savagery", + ["type"] = "fractured", + }, + [645] = { + ["id"] = "fractured.stat_2954116742|53294", + ["text"] = "Allocates Burn Away", + ["type"] = "fractured", + }, + [646] = { + ["id"] = "fractured.stat_2954116742|17150", + ["text"] = "Allocates General's Bindings", + ["type"] = "fractured", + }, + [647] = { + ["id"] = "fractured.stat_2954116742|46365", + ["text"] = "Allocates Gigantic Following", + ["type"] = "fractured", + }, + [648] = { + ["id"] = "fractured.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", + ["type"] = "fractured", + }, + [649] = { + ["id"] = "fractured.stat_2954116742|14934", + ["text"] = "Allocates Spiral into Mania", + ["type"] = "fractured", + }, + [650] = { + ["id"] = "fractured.stat_2954116742|7651", + ["text"] = "Allocates Pierce the Heart", + ["type"] = "fractured", + }, + [651] = { + ["id"] = "fractured.stat_2954116742|34300", + ["text"] = "Allocates Conservative Casting", + ["type"] = "fractured", + }, + [652] = { + ["id"] = "fractured.stat_2954116742|3567", + ["text"] = "Allocates Raw Mana", + ["type"] = "fractured", + }, + [653] = { + ["id"] = "fractured.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "fractured", + }, + [654] = { + ["id"] = "fractured.stat_2954116742|30392", + ["text"] = "Allocates Succour", + ["type"] = "fractured", + }, + [655] = { + ["id"] = "fractured.stat_2954116742|56714", + ["text"] = "Allocates Swift Flight", + ["type"] = "fractured", + }, + [656] = { + ["id"] = "fractured.stat_2954116742|56997", + ["text"] = "Allocates Heavy Contact", + ["type"] = "fractured", + }, + [657] = { + ["id"] = "fractured.stat_1416406066", + ["text"] = "#% increased Spirit", + ["type"] = "fractured", + }, + [658] = { + ["id"] = "fractured.stat_2954116742|56453", + ["text"] = "Allocates Killer Instinct", + ["type"] = "fractured", + }, + [659] = { + ["id"] = "fractured.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["type"] = "fractured", + }, + [660] = { + ["id"] = "fractured.stat_2954116742|42354", + ["text"] = "Allocates Blinding Flash", + ["type"] = "fractured", + }, + [661] = { + ["id"] = "fractured.stat_2954116742|47782", + ["text"] = "Allocates Steady Footing", + ["type"] = "fractured", + }, + [662] = { + ["id"] = "fractured.stat_2954116742|21206", + ["text"] = "Allocates Explosive Impact", + ["type"] = "fractured", + }, + [663] = { + ["id"] = "fractured.stat_2954116742|40399", + ["text"] = "Allocates Energise", + ["type"] = "fractured", + }, + [664] = { + ["id"] = "fractured.stat_2954116742|65160", + ["text"] = "Allocates Titanic", + ["type"] = "fractured", + }, + [665] = { + ["id"] = "fractured.stat_2954116742|35369", + ["text"] = "Allocates Investing Energies", + ["type"] = "fractured", + }, + [666] = { + ["id"] = "fractured.stat_2954116742|64851", + ["text"] = "Allocates Flashy Parrying", + ["type"] = "fractured", + }, + [667] = { + ["id"] = "fractured.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", + ["type"] = "fractured", + }, + [668] = { + ["id"] = "fractured.stat_2954116742|40803", + ["text"] = "Allocates Sigil of Ice", + ["type"] = "fractured", + }, + [669] = { + ["id"] = "fractured.stat_2954116742|62185", + ["text"] = "Allocates Rattled", + ["type"] = "fractured", + }, + [670] = { + ["id"] = "fractured.stat_2954116742|47270", + ["text"] = "Allocates Inescapable Cold", + ["type"] = "fractured", + }, + [671] = { + ["id"] = "fractured.stat_2954116742|34308", + ["text"] = "Allocates Personal Touch", + ["type"] = "fractured", + }, + [672] = { + ["id"] = "fractured.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", + ["type"] = "fractured", + }, + [673] = { + ["id"] = "fractured.stat_2954116742|35855", + ["text"] = "Allocates Fortifying Blood", + ["type"] = "fractured", + }, + [674] = { + ["id"] = "fractured.stat_2954116742|32951", + ["text"] = "Allocates Preservation", + ["type"] = "fractured", + }, + [675] = { + ["id"] = "fractured.stat_2954116742|17725", + ["text"] = "Allocates Bonded Precision", + ["type"] = "fractured", + }, + [676] = { + ["id"] = "fractured.stat_2954116742|36976", + ["text"] = "Allocates Marked for Death", + ["type"] = "fractured", + }, + [677] = { + ["id"] = "fractured.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["type"] = "fractured", + }, + [678] = { + ["id"] = "fractured.stat_2954116742|48699", + ["text"] = "Allocates Frostwalker", + ["type"] = "fractured", + }, + [679] = { + ["id"] = "fractured.stat_2954116742|64443", + ["text"] = "Allocates Impact Force", + ["type"] = "fractured", + }, + [680] = { + ["id"] = "fractured.stat_2954116742|2486", + ["text"] = "Allocates Stars Aligned", + ["type"] = "fractured", + }, + [681] = { + ["id"] = "fractured.stat_2954116742|38398", + ["text"] = "Allocates Apocalypse", + ["type"] = "fractured", + }, + [682] = { + ["id"] = "fractured.stat_2954116742|10295", + ["text"] = "Allocates Overzealous", + ["type"] = "fractured", + }, + [683] = { + ["id"] = "fractured.stat_2954116742|59208", + ["text"] = "Allocates Frantic Fighter", + ["type"] = "fractured", + }, + [684] = { + ["id"] = "fractured.stat_2954116742|52199", + ["text"] = "Allocates Overexposure", + ["type"] = "fractured", + }, + [685] = { + ["id"] = "fractured.stat_3395186672", + ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["type"] = "fractured", + }, + [686] = { + ["id"] = "fractured.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", + ["type"] = "fractured", + }, + [687] = { + ["id"] = "fractured.stat_2954116742|27626", + ["text"] = "Allocates Touch the Arcane", + ["type"] = "fractured", + }, + [688] = { + ["id"] = "fractured.stat_2954116742|10602", + ["text"] = "Allocates Reaving", + ["type"] = "fractured", + }, + [689] = { + ["id"] = "fractured.stat_2954116742|65193", + ["text"] = "Allocates Viciousness", + ["type"] = "fractured", + }, + [690] = { + ["id"] = "fractured.stat_2954116742|28963", + ["text"] = "Allocates Chakra of Rhythm", + ["type"] = "fractured", + }, + [691] = { + ["id"] = "fractured.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "fractured", + }, + [692] = { + ["id"] = "fractured.stat_2954116742|21453", + ["text"] = "Allocates Breakage", + ["type"] = "fractured", + }, + [693] = { + ["id"] = "fractured.stat_2954116742|45488", + ["text"] = "Allocates Cross Strike", + ["type"] = "fractured", + }, + [694] = { + ["id"] = "fractured.stat_2954116742|2999", + ["text"] = "Allocates Final Barrage", + ["type"] = "fractured", + }, + [695] = { + ["id"] = "fractured.stat_2954116742|11392", + ["text"] = "Allocates Molten Being", + ["type"] = "fractured", + }, + [696] = { + ["id"] = "fractured.stat_2954116742|20032", + ["text"] = "Allocates Erraticism", + ["type"] = "fractured", + }, + [697] = { + ["id"] = "fractured.stat_2954116742|45244", + ["text"] = "Allocates Refills", + ["type"] = "fractured", + }, + [698] = { + ["id"] = "fractured.stat_2954116742|55131", + ["text"] = "Allocates Light on your Feet", + ["type"] = "fractured", + }, + [699] = { + ["id"] = "fractured.stat_2954116742|56893", + ["text"] = "Allocates Thicket Warding", + ["type"] = "fractured", + }, + [700] = { + ["id"] = "fractured.stat_2954116742|62887", + ["text"] = "Allocates Living Death", + ["type"] = "fractured", + }, + [701] = { + ["id"] = "fractured.stat_2954116742|8810", + ["text"] = "Allocates Multitasking", + ["type"] = "fractured", + }, + [702] = { + ["id"] = "fractured.stat_2954116742|7341", + ["text"] = "Allocates Ignore Pain", + ["type"] = "fractured", + }, + [703] = { + ["id"] = "fractured.stat_2954116742|51602", + ["text"] = "Allocates Unsight", + ["type"] = "fractured", + }, + [704] = { + ["id"] = "fractured.stat_2954116742|57805", + ["text"] = "Allocates Clear Space", + ["type"] = "fractured", + }, + [705] = { + ["id"] = "fractured.stat_2954116742|10423", + ["text"] = "Allocates Exposed to the Inferno", + ["type"] = "fractured", + }, + [706] = { + ["id"] = "fractured.stat_2954116742|61601", + ["text"] = "Allocates True Strike", + ["type"] = "fractured", + }, + [707] = { + ["id"] = "fractured.stat_2954116742|46024", + ["text"] = "Allocates Sigil of Lightning", + ["type"] = "fractured", + }, + [708] = { + ["id"] = "fractured.stat_2954116742|32664", + ["text"] = "Allocates Chakra of Breathing", + ["type"] = "fractured", + }, + [709] = { + ["id"] = "fractured.stat_2954116742|53150", + ["text"] = "Allocates Sharp Sight", + ["type"] = "fractured", + }, + [710] = { + ["id"] = "fractured.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "fractured", + }, + [711] = { + ["id"] = "fractured.stat_2954116742|58397", + ["text"] = "Allocates Proficiency", + ["type"] = "fractured", + }, + [712] = { + ["id"] = "fractured.stat_4142814612", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + ["type"] = "fractured", + }, + [713] = { + ["id"] = "fractured.stat_2954116742|42959", + ["text"] = "Allocates Low Tolerance", + ["type"] = "fractured", + }, + [714] = { + ["id"] = "fractured.stat_2954116742|40480", + ["text"] = "Allocates Harmonic Generator", + ["type"] = "fractured", + }, + [715] = { + ["id"] = "fractured.stat_2954116742|27513", + ["text"] = "Allocates Material Solidification", + ["type"] = "fractured", + }, + [716] = { + ["id"] = "fractured.stat_2954116742|49618", + ["text"] = "Allocates Deadly Flourish", + ["type"] = "fractured", + }, + [717] = { + ["id"] = "fractured.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "fractured", + }, + [718] = { + ["id"] = "fractured.stat_2954116742|62310", + ["text"] = "Allocates Incendiary", + ["type"] = "fractured", + }, + [719] = { + ["id"] = "fractured.stat_2954116742|30341", + ["text"] = "Allocates Master Fletching", + ["type"] = "fractured", + }, + [720] = { + ["id"] = "fractured.stat_2954116742|51509", + ["text"] = "Allocates Waters of Life", + ["type"] = "fractured", + }, + [721] = { + ["id"] = "fractured.stat_2690740379", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + ["type"] = "fractured", + }, + [722] = { + ["id"] = "fractured.stat_2954116742|22626", + ["text"] = "Allocates Irreparable", + ["type"] = "fractured", + }, + [723] = { + ["id"] = "fractured.stat_2954116742|38972", + ["text"] = "Allocates Restless Dead", + ["type"] = "fractured", + }, + [724] = { + ["id"] = "fractured.stat_1276056105", + ["text"] = "#% increased Gold found in this Area (Gold Piles)", + ["type"] = "fractured", + }, + [725] = { + ["id"] = "fractured.stat_1276056105", + ["text"] = "#% increased Gold found in your Maps (Gold Piles)", + ["type"] = "fractured", + }, + [726] = { + ["id"] = "fractured.stat_2954116742|36630", + ["text"] = "Allocates Incision", + ["type"] = "fractured", + }, + [727] = { + ["id"] = "fractured.stat_2954116742|7062", + ["text"] = "Allocates Reusable Ammunition", + ["type"] = "fractured", + }, + [728] = { + ["id"] = "fractured.stat_2954116742|4716", + ["text"] = "Allocates Afterimage", + ["type"] = "fractured", + }, + [729] = { + ["id"] = "fractured.stat_2954116742|54937", + ["text"] = "Allocates Vengeful Fury", + ["type"] = "fractured", + }, + [730] = { + ["id"] = "fractured.stat_2954116742|6133", + ["text"] = "Allocates Core of the Guardian", + ["type"] = "fractured", + }, + [731] = { + ["id"] = "fractured.stat_2954116742|47418", + ["text"] = "Allocates Warding Potions", + ["type"] = "fractured", + }, + [732] = { + ["id"] = "fractured.stat_2709646369", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + ["type"] = "fractured", + }, + [733] = { + ["id"] = "fractured.stat_2954116742|58183", + ["text"] = "Allocates Blood Tearing", + ["type"] = "fractured", + }, + [734] = { + ["id"] = "fractured.stat_512071314", + ["text"] = "Monsters deal #% of Damage as Extra Lightning", + ["type"] = "fractured", + }, + [735] = { + ["id"] = "fractured.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", + ["type"] = "fractured", + }, + [736] = { + ["id"] = "fractured.stat_2954116742|35849", + ["text"] = "Allocates Thickened Arteries", + ["type"] = "fractured", + }, + [737] = { + ["id"] = "fractured.stat_2954116742|10612", + ["text"] = "Allocates Embodiment of Frost", + ["type"] = "fractured", + }, + [738] = { + ["id"] = "fractured.stat_2954116742|49661", + ["text"] = "Allocates Perfectly Placed Knife", + ["type"] = "fractured", + }, + [739] = { + ["id"] = "fractured.stat_2954116742|31433", + ["text"] = "Allocates Catalysis", + ["type"] = "fractured", + }, + [740] = { + ["id"] = "fractured.stat_2954116742|12750", + ["text"] = "Allocates Vale Shelter", + ["type"] = "fractured", + }, + [741] = { + ["id"] = "fractured.stat_2954116742|2134", + ["text"] = "Allocates Toxic Tolerance", + ["type"] = "fractured", + }, + [742] = { + ["id"] = "fractured.stat_2954116742|46692", + ["text"] = "Allocates Efficient Alchemy", + ["type"] = "fractured", + }, + [743] = { + ["id"] = "fractured.stat_2954116742|35792", + ["text"] = "Allocates Blood of Rage", + ["type"] = "fractured", + }, + [744] = { + ["id"] = "fractured.stat_2954116742|29514", + ["text"] = "Allocates Cluster Bombs", + ["type"] = "fractured", + }, + [745] = { + ["id"] = "fractured.stat_2954116742|38895", + ["text"] = "Allocates Crystal Elixir", + ["type"] = "fractured", + }, + [746] = { + ["id"] = "fractured.stat_2954116742|46384", + ["text"] = "Allocates Wide Barrier", + ["type"] = "fractured", + }, + [747] = { + ["id"] = "fractured.stat_2954116742|48565", + ["text"] = "Allocates Bringer of Order", + ["type"] = "fractured", + }, + [748] = { + ["id"] = "fractured.stat_2954116742|50795", + ["text"] = "Allocates Careful Aim", + ["type"] = "fractured", + }, + [749] = { + ["id"] = "fractured.stat_2954116742|14324", + ["text"] = "Allocates Arcane Blossom", + ["type"] = "fractured", + }, + [750] = { + ["id"] = "fractured.stat_2954116742|43139", + ["text"] = "Allocates Stormbreaker", + ["type"] = "fractured", + }, + [751] = { + ["id"] = "fractured.stat_2954116742|35477", + ["text"] = "Allocates Far Sighted", + ["type"] = "fractured", + }, + [752] = { + ["id"] = "fractured.stat_2954116742|15617", + ["text"] = "Allocates Heavy Drinker", + ["type"] = "fractured", + }, + [753] = { + ["id"] = "fractured.stat_2954116742|61921", + ["text"] = "Allocates Storm Surge", + ["type"] = "fractured", + }, + [754] = { + ["id"] = "fractured.stat_2954116742|11838", + ["text"] = "Allocates Dreamcatcher", + ["type"] = "fractured", + }, + [755] = { + ["id"] = "fractured.stat_3399401168", + ["text"] = "#% to Fire Spell Critical Hit Chance", + ["type"] = "fractured", + }, + [756] = { + ["id"] = "fractured.stat_2954116742|53367", + ["text"] = "Allocates Symbol of Defiance", + ["type"] = "fractured", + }, + [757] = { + ["id"] = "fractured.stat_2954116742|2575", + ["text"] = "Allocates Ancestral Alacrity", + ["type"] = "fractured", + }, + [758] = { + ["id"] = "fractured.stat_2954116742|23736", + ["text"] = "Allocates Spray and Pray", + ["type"] = "fractured", + }, + [759] = { + ["id"] = "fractured.stat_2954116742|15374", + ["text"] = "Allocates Hale Heart", + ["type"] = "fractured", + }, + [760] = { + ["id"] = "fractured.stat_2954116742|23940", + ["text"] = "Allocates Fortified Aegis", + ["type"] = "fractured", + }, + [761] = { + ["id"] = "fractured.stat_2954116742|22811", + ["text"] = "Allocates The Wild Cat", + ["type"] = "fractured", + }, + [762] = { + ["id"] = "fractured.stat_2954116742|46696", + ["text"] = "Allocates Impair", + ["type"] = "fractured", + }, + [763] = { + ["id"] = "fractured.stat_2954116742|38342", + ["text"] = "Allocates Stupefy", + ["type"] = "fractured", + }, + [764] = { + ["id"] = "fractured.stat_2954116742|45013", + ["text"] = "Allocates Finishing Blows", + ["type"] = "fractured", + }, + [765] = { + ["id"] = "fractured.stat_1972391381", + ["text"] = "#% increased Explicit Resistance Modifier magnitudes", + ["type"] = "fractured", + }, + [766] = { + ["id"] = "fractured.stat_4225700219", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", + ["type"] = "fractured", + }, + [767] = { + ["id"] = "fractured.stat_2954116742|40213", + ["text"] = "Allocates Taste for Blood", + ["type"] = "fractured", + }, + [768] = { + ["id"] = "fractured.stat_2954116742|51934", + ["text"] = "Allocates Invocated Efficiency", + ["type"] = "fractured", + }, + [769] = { + ["id"] = "fractured.stat_2954116742|16626", + ["text"] = "Allocates Impact Area", + ["type"] = "fractured", + }, + [770] = { + ["id"] = "fractured.stat_1879340377", + ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", + ["type"] = "fractured", + }, + [771] = { + ["id"] = "fractured.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", + ["type"] = "fractured", + }, + [772] = { + ["id"] = "fractured.stat_2954116742|40073", + ["text"] = "Allocates Drenched", + ["type"] = "fractured", + }, + [773] = { + ["id"] = "fractured.stat_2954116742|17825", + ["text"] = "Allocates Tactical Retreat", + ["type"] = "fractured", + }, + [774] = { + ["id"] = "fractured.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["type"] = "fractured", + }, + [775] = { + ["id"] = "fractured.stat_2954116742|17762", + ["text"] = "Allocates Vengeance", + ["type"] = "fractured", + }, + [776] = { + ["id"] = "fractured.stat_2954116742|58939", + ["text"] = "Allocates Dispatch Foes", + ["type"] = "fractured", + }, + [777] = { + ["id"] = "fractured.stat_2954116742|33059", + ["text"] = "Allocates Back in Action", + ["type"] = "fractured", + }, + [778] = { + ["id"] = "fractured.stat_2954116742|27009", + ["text"] = "Allocates Lust for Sacrifice", + ["type"] = "fractured", + }, + [779] = { + ["id"] = "fractured.stat_2954116742|16256", + ["text"] = "Allocates Ether Flow", + ["type"] = "fractured", + }, + [780] = { + ["id"] = "fractured.stat_2954116742|54640", + ["text"] = "Allocates Constricting", + ["type"] = "fractured", + }, + [781] = { + ["id"] = "fractured.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["type"] = "fractured", + }, + [782] = { + ["id"] = "fractured.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["type"] = "fractured", + }, + [783] = { + ["id"] = "fractured.stat_2954116742|60138", + ["text"] = "Allocates Stylebender", + ["type"] = "fractured", + }, + [784] = { + ["id"] = "fractured.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["type"] = "fractured", + }, + [785] = { + ["id"] = "fractured.stat_2954116742|9227", + ["text"] = "Allocates Focused Thrust", + ["type"] = "fractured", + }, + [786] = { + ["id"] = "fractured.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", + ["type"] = "fractured", + }, + [787] = { + ["id"] = "fractured.stat_1585769763", + ["text"] = "#% increased Blind Effect", + ["type"] = "fractured", + }, + [788] = { + ["id"] = "fractured.stat_2954116742|38969", + ["text"] = "Allocates Finesse", + ["type"] = "fractured", + }, + [789] = { + ["id"] = "fractured.stat_2954116742|51394", + ["text"] = "Allocates Unimpeded", + ["type"] = "fractured", + }, + [790] = { + ["id"] = "fractured.stat_2954116742|17664", + ["text"] = "Allocates Decisive Retreat", + ["type"] = "fractured", + }, + [791] = { + ["id"] = "fractured.stat_2954116742|20397", + ["text"] = "Allocates Authority", + ["type"] = "fractured", + }, + [792] = { + ["id"] = "fractured.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", + ["type"] = "fractured", + }, + [793] = { + ["id"] = "fractured.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", + ["type"] = "fractured", + }, + [794] = { + ["id"] = "fractured.stat_2954116742|12661", + ["text"] = "Allocates Asceticism", + ["type"] = "fractured", + }, + [795] = { + ["id"] = "fractured.stat_2954116742|35028", + ["text"] = "Allocates In the Thick of It", + ["type"] = "fractured", + }, + [796] = { + ["id"] = "fractured.stat_2954116742|4627", + ["text"] = "Allocates Climate Change", + ["type"] = "fractured", + }, + [797] = { + ["id"] = "fractured.stat_2954116742|42245", + ["text"] = "Allocates Efficient Inscriptions", + ["type"] = "fractured", + }, + [798] = { + ["id"] = "fractured.stat_2954116742|58714", + ["text"] = "Allocates Grenadier", + ["type"] = "fractured", + }, + [799] = { + ["id"] = "fractured.stat_2954116742|26291", + ["text"] = "Allocates Electrifying Nature", + ["type"] = "fractured", + }, + [800] = { + ["id"] = "fractured.stat_2954116742|24240", + ["text"] = "Allocates Time Manipulation", + ["type"] = "fractured", + }, + [801] = { + ["id"] = "fractured.stat_2954116742|28542", + ["text"] = "Allocates The Molten One's Gift", + ["type"] = "fractured", + }, + [802] = { + ["id"] = "fractured.stat_2954116742|44952", + ["text"] = "Allocates Made to Last", + ["type"] = "fractured", + }, + [803] = { + ["id"] = "fractured.stat_2954116742|29306", + ["text"] = "Allocates Chakra of Thought", + ["type"] = "fractured", + }, + [804] = { + ["id"] = "fractured.stat_2954116742|19236", + ["text"] = "Allocates Projectile Bulwark", + ["type"] = "fractured", + }, + [805] = { + ["id"] = "fractured.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", + ["type"] = "fractured", + }, + [806] = { + ["id"] = "fractured.stat_2954116742|3921", + ["text"] = "Allocates Fate Finding", + ["type"] = "fractured", + }, + [807] = { + ["id"] = "fractured.stat_2954116742|5257", + ["text"] = "Allocates Echoing Frost", + ["type"] = "fractured", + }, + [808] = { + ["id"] = "fractured.stat_2954116742|36333", + ["text"] = "Allocates Explosive Empowerment", + ["type"] = "fractured", + }, + [809] = { + ["id"] = "fractured.stat_2954116742|42813", + ["text"] = "Allocates Tides of Change", + ["type"] = "fractured", + }, + [810] = { + ["id"] = "fractured.stat_2306522833", + ["text"] = "#% increased Monster Movement Speed", + ["type"] = "fractured", + }, + [811] = { + ["id"] = "fractured.stat_2954116742|37266", + ["text"] = "Allocates Nourishing Ally", + ["type"] = "fractured", + }, + [812] = { + ["id"] = "fractured.stat_2954116742|56493", + ["text"] = "Allocates Agile Succession", + ["type"] = "fractured", + }, + [813] = { + ["id"] = "fractured.stat_2954116742|57785", + ["text"] = "Allocates Trained Turrets", + ["type"] = "fractured", + }, + [814] = { + ["id"] = "fractured.stat_2954116742|5410", + ["text"] = "Allocates Channelled Heritage", + ["type"] = "fractured", + }, + [815] = { + ["id"] = "fractured.stat_2954116742|8660", + ["text"] = "Allocates Reverberation", + ["type"] = "fractured", + }, + [816] = { + ["id"] = "fractured.stat_2954116742|64050", + ["text"] = "Allocates Marathon Runner", + ["type"] = "fractured", + }, + [817] = { + ["id"] = "fractured.stat_2954116742|53187", + ["text"] = "Allocates Warlord Berserker", + ["type"] = "fractured", + }, + [818] = { + ["id"] = "fractured.stat_2954116742|29762", + ["text"] = "Allocates Guttural Roar", + ["type"] = "fractured", + }, + [819] = { + ["id"] = "fractured.stat_2954116742|12412", + ["text"] = "Allocates Temporal Mastery", + ["type"] = "fractured", + }, + [820] = { + ["id"] = "fractured.stat_2954116742|56488", + ["text"] = "Allocates Glancing Deflection", + ["type"] = "fractured", + }, + [821] = { + ["id"] = "fractured.stat_2954116742|36931", + ["text"] = "Allocates Concussive Attack", + ["type"] = "fractured", + }, + [822] = { + ["id"] = "fractured.stat_2954116742|59214", + ["text"] = "Allocates Fated End", + ["type"] = "fractured", + }, + [823] = { + ["id"] = "fractured.stat_2954116742|35031", + ["text"] = "Allocates Chakra of Life", + ["type"] = "fractured", + }, + [824] = { + ["id"] = "fractured.stat_2954116742|13515", + ["text"] = "Allocates Stormwalker", + ["type"] = "fractured", + }, + [825] = { + ["id"] = "fractured.stat_2954116742|64415", + ["text"] = "Allocates Shattering Daze", + ["type"] = "fractured", + }, + [826] = { + ["id"] = "fractured.stat_2954116742|16150", + ["text"] = "Allocates Inspiring Ally", + ["type"] = "fractured", + }, + [827] = { + ["id"] = "fractured.stat_2954116742|18308", + ["text"] = "Allocates Bleeding Out", + ["type"] = "fractured", + }, + [828] = { + ["id"] = "fractured.stat_2954116742|3492", + ["text"] = "Allocates Void", + ["type"] = "fractured", + }, + [829] = { + ["id"] = "fractured.stat_2954116742|11376", + ["text"] = "Allocates Necrotic Touch", + ["type"] = "fractured", + }, + [830] = { + ["id"] = "fractured.stat_2954116742|46296", + ["text"] = "Allocates Short Shot", + ["type"] = "fractured", + }, + [831] = { + ["id"] = "fractured.stat_4101943684", + ["text"] = "Monsters have #% increased Stun Threshold", + ["type"] = "fractured", + }, + [832] = { + ["id"] = "fractured.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "fractured", + }, + [833] = { + ["id"] = "fractured.stat_2954116742|53185", + ["text"] = "Allocates The Winter Owl", + ["type"] = "fractured", + }, + [834] = { + ["id"] = "fractured.stat_2954116742|50673", + ["text"] = "Allocates Avoiding Deflection", + ["type"] = "fractured", + }, + [835] = { + ["id"] = "fractured.stat_2954116742|7163", + ["text"] = "Allocates Stimulants", + ["type"] = "fractured", + }, + [836] = { + ["id"] = "fractured.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "fractured", + }, + [837] = { + ["id"] = "fractured.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "fractured", + }, + [838] = { + ["id"] = "fractured.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "fractured", + }, + [839] = { + ["id"] = "fractured.stat_2954116742|8607", + ["text"] = "Allocates Lavianga's Brew", + ["type"] = "fractured", + }, + [840] = { + ["id"] = "fractured.stat_2954116742|8957", + ["text"] = "Allocates Right Hand of Darkness", + ["type"] = "fractured", + }, + [841] = { + ["id"] = "fractured.stat_2954116742|18086", + ["text"] = "Allocates Breath of Ice", + ["type"] = "fractured", + }, + [842] = { + ["id"] = "fractured.stat_2954116742|27875", + ["text"] = "Allocates General Electric", + ["type"] = "fractured", + }, + [843] = { + ["id"] = "fractured.stat_2550456553", + ["text"] = "Rare Monsters have # additional Modifier", + ["type"] = "fractured", + }, + [844] = { + ["id"] = "fractured.stat_2550456553", + ["text"] = "Rare Monsters in your Maps have # additional Modifier", + ["type"] = "fractured", + }, + [845] = { + ["id"] = "fractured.stat_2954116742|35581", + ["text"] = "Allocates Near at Hand", + ["type"] = "fractured", + }, + [846] = { + ["id"] = "fractured.stat_2954116742|48014", + ["text"] = "Allocates Honourless", + ["type"] = "fractured", + }, + [847] = { + ["id"] = "fractured.stat_2954116742|50715", + ["text"] = "Allocates Frozen Limit", + ["type"] = "fractured", + }, + [848] = { + ["id"] = "fractured.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", + ["type"] = "fractured", + }, + [849] = { + ["id"] = "fractured.stat_4181072906", + ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", + ["type"] = "fractured", + }, + [850] = { + ["id"] = "fractured.stat_2200661314", + ["text"] = "Monsters deal #% of Damage as Extra Chaos", + ["type"] = "fractured", + }, + [851] = { + ["id"] = "fractured.stat_2954116742|65468", + ["text"] = "Allocates Repeating Explosives", + ["type"] = "fractured", + }, + [852] = { + ["id"] = "fractured.stat_349586058", + ["text"] = "Area has patches of Chilled Ground", + ["type"] = "fractured", + }, + [853] = { + ["id"] = "fractured.stat_2954116742|2863", + ["text"] = "Allocates Perpetual Freeze", + ["type"] = "fractured", + }, + [854] = { + ["id"] = "fractured.stat_2954116742|47420", + ["text"] = "Allocates Expendable Army", + ["type"] = "fractured", + }, + [855] = { + ["id"] = "fractured.stat_2954116742|65243", + ["text"] = "Allocates Enveloping Presence", + ["type"] = "fractured", + }, + [856] = { + ["id"] = "fractured.stat_2954116742|24120", + ["text"] = "Allocates Mental Toughness", + ["type"] = "fractured", + }, + [857] = { + ["id"] = "fractured.stat_3222482040", + ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", + ["type"] = "fractured", + }, + [858] = { + ["id"] = "fractured.stat_2954116742|24438", + ["text"] = "Allocates Hardened Wood", + ["type"] = "fractured", + }, + [859] = { + ["id"] = "fractured.stat_2954116742|28613", + ["text"] = "Allocates Roaring Cries", + ["type"] = "fractured", + }, + [860] = { + ["id"] = "fractured.stat_2954116742|18485", + ["text"] = "Allocates Unstable Bond", + ["type"] = "fractured", + }, + [861] = { + ["id"] = "fractured.stat_2954116742|23362", + ["text"] = "Allocates Slippery Ice", + ["type"] = "fractured", + }, + [862] = { + ["id"] = "fractured.stat_2954116742|34543", + ["text"] = "Allocates The Frenzied Bear", + ["type"] = "fractured", + }, + [863] = { + ["id"] = "fractured.stat_2954116742|54990", + ["text"] = "Allocates Bloodletting", + ["type"] = "fractured", + }, + [864] = { + ["id"] = "fractured.stat_2954116742|37302", + ["text"] = "Allocates Kept at Bay", + ["type"] = "fractured", + }, + [865] = { + ["id"] = "fractured.stat_2954116742|60464", + ["text"] = "Allocates Fan the Flames", + ["type"] = "fractured", + }, + [866] = { + ["id"] = "fractured.stat_318092306", + ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", + ["type"] = "fractured", + }, + [867] = { + ["id"] = "fractured.stat_2954116742|7302", + ["text"] = "Allocates Echoing Pulse", + ["type"] = "fractured", + }, + [868] = { + ["id"] = "fractured.stat_1054098949", + ["text"] = "+#% Monster Elemental Resistances", + ["type"] = "fractured", + }, + [869] = { + ["id"] = "fractured.stat_2954116742|15443", + ["text"] = "Allocates Endured Suffering", + ["type"] = "fractured", + }, + [870] = { + ["id"] = "fractured.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "fractured", + }, + [871] = { + ["id"] = "fractured.stat_2954116742|43088", + ["text"] = "Allocates Agonising Calamity", + ["type"] = "fractured", + }, + [872] = { + ["id"] = "fractured.stat_3873704640", + ["text"] = "#% increased Magic Monsters", + ["type"] = "fractured", + }, + [873] = { + ["id"] = "fractured.stat_941368244", + ["text"] = "Players have #% more Cooldown Recovery Rate", + ["type"] = "fractured", + }, + [874] = { + ["id"] = "fractured.stat_2954116742|3188", + ["text"] = "Allocates Revenge", + ["type"] = "fractured", + }, + [875] = { + ["id"] = "fractured.stat_2954116742|5009", + ["text"] = "Allocates Seeing Stars", + ["type"] = "fractured", + }, + [876] = { + ["id"] = "fractured.stat_2954116742|26518", + ["text"] = "Allocates Cold Nature", + ["type"] = "fractured", + }, + [877] = { + ["id"] = "fractured.stat_2954116742|750", + ["text"] = "Allocates Tribal Fury", + ["type"] = "fractured", + }, + [878] = { + ["id"] = "fractured.stat_2954116742|27434", + ["text"] = "Allocates Archon of the Storm", + ["type"] = "fractured", + }, + [879] = { + ["id"] = "fractured.stat_2954116742|15114", + ["text"] = "Allocates Boundless Growth", + ["type"] = "fractured", + }, + [880] = { + ["id"] = "fractured.stat_2954116742|58096", + ["text"] = "Allocates Lasting Incantations", + ["type"] = "fractured", + }, + [881] = { + ["id"] = "fractured.stat_1629357380", + ["text"] = "Players are periodically Cursed with Temporal Chains", + ["type"] = "fractured", + }, + [882] = { + ["id"] = "fractured.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "fractured", + }, + [883] = { + ["id"] = "fractured.stat_2954116742|33229", + ["text"] = "Allocates Haemorrhaging Cuts", + ["type"] = "fractured", + }, + [884] = { + ["id"] = "fractured.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", + ["type"] = "fractured", + }, + [885] = { + ["id"] = "fractured.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", + ["type"] = "fractured", + }, + [886] = { + ["id"] = "fractured.stat_2954116742|65016", + ["text"] = "Allocates Intense Flames", + ["type"] = "fractured", + }, + [887] = { + ["id"] = "fractured.stat_337935900", + ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", + ["type"] = "fractured", + }, + [888] = { + ["id"] = "fractured.stat_2954116742|39990", + ["text"] = "Allocates Chronomancy", + ["type"] = "fractured", + }, + [889] = { + ["id"] = "fractured.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["type"] = "fractured", + }, + [890] = { + ["id"] = "fractured.stat_3998863698", + ["text"] = "Monsters have #% increased Freeze Buildup", + ["type"] = "fractured", + }, + [891] = { + ["id"] = "fractured.stat_2954116742|58215", + ["text"] = "Allocates Sanguimantic Rituals", + ["type"] = "fractured", + }, + [892] = { + ["id"] = "fractured.stat_2954116742|9908", + ["text"] = "Allocates Price of Freedom", + ["type"] = "fractured", + }, + [893] = { + ["id"] = "fractured.stat_2954116742|40985", + ["text"] = "Allocates Empowering Remnants", + ["type"] = "fractured", + }, + [894] = { + ["id"] = "fractured.stat_2954116742|34316", + ["text"] = "Allocates One with the River", + ["type"] = "fractured", + }, + [895] = { + ["id"] = "fractured.stat_2954116742|9421", + ["text"] = "Allocates Snowpiercer", + ["type"] = "fractured", + }, + [896] = { + ["id"] = "fractured.stat_2954116742|17254", + ["text"] = "Allocates Spell Haste", + ["type"] = "fractured", + }, + [897] = { + ["id"] = "fractured.stat_2954116742|18496", + ["text"] = "Allocates Lasting Trauma", + ["type"] = "fractured", + }, + [898] = { + ["id"] = "fractured.stat_2954116742|20416", + ["text"] = "Allocates Grit", + ["type"] = "fractured", + }, + [899] = { + ["id"] = "fractured.stat_2949706590", + ["text"] = "Area contains # additional packs of Iron Guards", + ["type"] = "fractured", + }, + [900] = { + ["id"] = "fractured.stat_2954116742|45612", + ["text"] = "Allocates Defensive Reflexes", + ["type"] = "fractured", + }, + [901] = { + ["id"] = "fractured.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", + ["type"] = "fractured", + }, + [902] = { + ["id"] = "fractured.stat_2954116742|20251", + ["text"] = "Allocates Splitting Ground", + ["type"] = "fractured", + }, + [903] = { + ["id"] = "fractured.stat_2954116742|23764", + ["text"] = "Allocates Alternating Current", + ["type"] = "fractured", + }, + [904] = { + ["id"] = "fractured.stat_2508044078", + ["text"] = "Monsters inflict #% increased Flammability Magnitude", + ["type"] = "fractured", + }, + [905] = { + ["id"] = "fractured.stat_2954116742|32448", + ["text"] = "Allocates Shockproof", + ["type"] = "fractured", + }, + [906] = { + ["id"] = "fractured.stat_2954116742|41753", + ["text"] = "Allocates Evocational Practitioner", + ["type"] = "fractured", + }, + [907] = { + ["id"] = "fractured.stat_2954116742|1603", + ["text"] = "Allocates Storm Driven", + ["type"] = "fractured", + }, + [908] = { + ["id"] = "fractured.stat_2954116742|2113", + ["text"] = "Allocates Martial Artistry", + ["type"] = "fractured", + }, + [909] = { + ["id"] = "fractured.stat_2539290279", + ["text"] = "Monsters are Armoured", + ["type"] = "fractured", + }, + [910] = { + ["id"] = "fractured.stat_2954116742|9444", + ["text"] = "Allocates One with the Storm", + ["type"] = "fractured", + }, + [911] = { + ["id"] = "fractured.stat_2954116742|37276", + ["text"] = "Allocates Battle Trance", + ["type"] = "fractured", + }, + [912] = { + ["id"] = "fractured.stat_2506820610", + ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", + ["type"] = "fractured", + }, + [913] = { + ["id"] = "fractured.stat_2954116742|59070", + ["text"] = "Allocates Enduring Archon", + ["type"] = "fractured", + }, + [914] = { + ["id"] = "fractured.stat_2954116742|61404", + ["text"] = "Allocates Equilibrium", + ["type"] = "fractured", + }, + [915] = { + ["id"] = "fractured.stat_2954116742|23630", + ["text"] = "Allocates Self Immolation", + ["type"] = "fractured", + }, + [916] = { + ["id"] = "fractured.stat_2954116742|25619", + ["text"] = "Allocates Sand in the Eyes", + ["type"] = "fractured", + }, + [917] = { + ["id"] = "fractured.stat_2954116742|48617", + ["text"] = "Allocates Hunter", + ["type"] = "fractured", + }, + [918] = { + ["id"] = "fractured.stat_2954116742|61741", + ["text"] = "Allocates Lasting Toxins", + ["type"] = "fractured", + }, + [919] = { + ["id"] = "fractured.stat_2954116742|33978", + ["text"] = "Allocates Unstoppable Barrier", + ["type"] = "fractured", + }, + [920] = { + ["id"] = "fractured.stat_2954116742|19722", + ["text"] = "Allocates Thin Ice", + ["type"] = "fractured", + }, + [921] = { + ["id"] = "fractured.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", + ["type"] = "fractured", + }, + [922] = { + ["id"] = "fractured.stat_2954116742|36364", + ["text"] = "Allocates Electrocution", + ["type"] = "fractured", + }, + [923] = { + ["id"] = "fractured.stat_1984618452", + ["text"] = "Monsters have #% increased Shock Chance", + ["type"] = "fractured", + }, + [924] = { + ["id"] = "fractured.stat_95249895", + ["text"] = "#% more Monster Life", + ["type"] = "fractured", + }, + [925] = { + ["id"] = "fractured.stat_2954116742|60692", + ["text"] = "Allocates Echoing Flames", + ["type"] = "fractured", + }, + [926] = { + ["id"] = "fractured.stat_2954116742|23738", + ["text"] = "Allocates Madness in the Bones", + ["type"] = "fractured", + }, + [927] = { + ["id"] = "fractured.stat_2954116742|13457", + ["text"] = "Allocates Shadow Dancing", + ["type"] = "fractured", + }, + [928] = { + ["id"] = "fractured.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", + ["type"] = "fractured", + }, + [929] = { + ["id"] = "fractured.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", + ["type"] = "fractured", + }, + [930] = { + ["id"] = "fractured.stat_2954116742|8896", + ["text"] = "Allocates Agile Sprinter", + ["type"] = "fractured", + }, + [931] = { + ["id"] = "fractured.stat_2954116742|40325", + ["text"] = "Allocates Resolution", + ["type"] = "fractured", + }, + [932] = { + ["id"] = "fractured.stat_2954116742|5642", + ["text"] = "Allocates Behemoth", + ["type"] = "fractured", + }, + [933] = { + ["id"] = "fractured.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", + ["type"] = "fractured", + }, + [934] = { + ["id"] = "fractured.stat_2954116742|56063", + ["text"] = "Allocates Lingering Horror", + ["type"] = "fractured", + }, + [935] = { + ["id"] = "fractured.stat_2954116742|27388", + ["text"] = "Allocates Aspiring Genius", + ["type"] = "fractured", + }, + [936] = { + ["id"] = "fractured.stat_2954116742|38111", + ["text"] = "Allocates Pliable Flesh", + ["type"] = "fractured", + }, + [937] = { + ["id"] = "fractured.stat_3793155082", + ["text"] = "#% increased Rare Monsters", + ["type"] = "fractured", + }, + [938] = { + ["id"] = "fractured.stat_2954116742|48215", + ["text"] = "Allocates Headshot", + ["type"] = "fractured", + }, + [939] = { + ["id"] = "fractured.stat_2954116742|20388", + ["text"] = "Allocates Regenerative Flesh", + ["type"] = "fractured", + }, + [940] = { + ["id"] = "fractured.stat_2954116742|5227", + ["text"] = "Allocates Escape Strategy", + ["type"] = "fractured", + }, + [941] = { + ["id"] = "fractured.stat_2954116742|55847", + ["text"] = "Allocates Ice Walls", + ["type"] = "fractured", + }, + [942] = { + ["id"] = "fractured.stat_2954116742|63400", + ["text"] = "Allocates Chakra of Elements", + ["type"] = "fractured", + }, + [943] = { + ["id"] = "fractured.stat_1913583994", + ["text"] = "#% increased Monster Attack Speed", + ["type"] = "fractured", + }, + [944] = { + ["id"] = "fractured.stat_2954116742|12998", + ["text"] = "Allocates Warm the Heart", + ["type"] = "fractured", + }, + [945] = { + ["id"] = "fractured.stat_2954116742|13823", + ["text"] = "Allocates Controlling Magic", + ["type"] = "fractured", + }, + [946] = { + ["id"] = "fractured.stat_2954116742|30546", + ["text"] = "Allocates Electrified Claw", + ["type"] = "fractured", + }, + [947] = { + ["id"] = "fractured.stat_2954116742|60992", + ["text"] = "Allocates Nurturing Guardian", + ["type"] = "fractured", + }, + [948] = { + ["id"] = "fractured.stat_2954116742|41811", + ["text"] = "Allocates Shatter Palm", + ["type"] = "fractured", + }, + [949] = { + ["id"] = "fractured.stat_2954116742|1352", + ["text"] = "Allocates Unbending", + ["type"] = "fractured", + }, + [950] = { + ["id"] = "fractured.stat_2954116742|94", + ["text"] = "Allocates Efficient Killing", + ["type"] = "fractured", + }, + [951] = { + ["id"] = "fractured.stat_2954116742|15991", + ["text"] = "Allocates Embodiment of Lightning", + ["type"] = "fractured", + }, + [952] = { + ["id"] = "fractured.stat_2954116742|48524", + ["text"] = "Allocates Blood Transfusion", + ["type"] = "fractured", + }, + [953] = { + ["id"] = "fractured.stat_2954116742|1169", + ["text"] = "Allocates Urgent Call", + ["type"] = "fractured", + }, + [954] = { + ["id"] = "fractured.stat_2954116742|60083", + ["text"] = "Allocates Pin and Run", + ["type"] = "fractured", + }, + [955] = { + ["id"] = "fractured.stat_1890519597", + ["text"] = "#% increased Monster Damage", + ["type"] = "fractured", + }, + [956] = { + ["id"] = "fractured.stat_2954116742|7395", + ["text"] = "Allocates Retaliation", + ["type"] = "fractured", + }, + [957] = { + ["id"] = "fractured.stat_95221307", + ["text"] = "Monsters have #% chance to Poison on Hit", + ["type"] = "fractured", + }, + [958] = { + ["id"] = "fractured.stat_2954116742|32507", + ["text"] = "Allocates Cut to the Bone", + ["type"] = "fractured", + }, + [959] = { + ["id"] = "fractured.stat_2954116742|27108", + ["text"] = "Allocates Mass Hysteria", + ["type"] = "fractured", + }, + [960] = { + ["id"] = "fractured.stat_2954116742|63830", + ["text"] = "Allocates Marked for Sickness", + ["type"] = "fractured", + }, + [961] = { + ["id"] = "fractured.stat_2887760183", + ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", + ["type"] = "fractured", + }, + [962] = { + ["id"] = "fractured.stat_2954116742|49088", + ["text"] = "Allocates Splintering Force", + ["type"] = "fractured", + }, + [963] = { + ["id"] = "fractured.stat_2954116742|29899", + ["text"] = "Allocates Finish Them", + ["type"] = "fractured", + }, + [964] = { + ["id"] = "fractured.stat_2954116742|56112", + ["text"] = "Allocates Extinguishing Exhalation", + ["type"] = "fractured", + }, + [965] = { + ["id"] = "fractured.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", + ["type"] = "fractured", + }, + [966] = { + ["id"] = "fractured.stat_2954116742|10029", + ["text"] = "Allocates Repulsion", + ["type"] = "fractured", + }, + [967] = { + ["id"] = "fractured.stat_300723956", + ["text"] = "Attack Hits apply Incision", + ["type"] = "fractured", + }, + [968] = { + ["id"] = "fractured.stat_2954116742|33216", + ["text"] = "Allocates Deep Wounds", + ["type"] = "fractured", + }, + [969] = { + ["id"] = "fractured.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", + ["type"] = "fractured", + }, + [970] = { + ["id"] = "fractured.stat_2954116742|37742", + ["text"] = "Allocates Manifold Method", + ["type"] = "fractured", + }, + [971] = { + ["id"] = "fractured.stat_2954116742|32721", + ["text"] = "Allocates Distracted Target", + ["type"] = "fractured", + }, + [972] = { + ["id"] = "fractured.stat_2954116742|24753", + ["text"] = "Allocates Determined Precision", + ["type"] = "fractured", + }, + [973] = { + ["id"] = "fractured.stat_2954116742|5332", + ["text"] = "Allocates Crystallised Immunities", + ["type"] = "fractured", + }, + [974] = { + ["id"] = "fractured.stat_2954116742|38479", + ["text"] = "Allocates Close Confines", + ["type"] = "fractured", + }, + [975] = { + ["id"] = "fractured.stat_2954116742|14294", + ["text"] = "Allocates Sacrificial Blood", + ["type"] = "fractured", + }, + [976] = { + ["id"] = "fractured.stat_2954116742|35739", + ["text"] = "Allocates Crushing Judgement", + ["type"] = "fractured", + }, + [977] = { + ["id"] = "fractured.stat_2954116742|48734", + ["text"] = "Allocates The Howling Primate", + ["type"] = "fractured", + }, + [978] = { + ["id"] = "fractured.stat_2954116742|17029", + ["text"] = "Allocates Blade Catcher", + ["type"] = "fractured", + }, + [979] = { + ["id"] = "fractured.stat_2954116742|48006", + ["text"] = "Allocates Devastation", + ["type"] = "fractured", + }, + [980] = { + ["id"] = "fractured.stat_2954116742|43829", + ["text"] = "Allocates Advanced Munitions", + ["type"] = "fractured", + }, + [981] = { + ["id"] = "fractured.stat_2954116742|11366", + ["text"] = "Allocates Volcanic Skin", + ["type"] = "fractured", + }, + [982] = { + ["id"] = "fractured.stat_2954116742|31745", + ["text"] = "Allocates Lockdown", + ["type"] = "fractured", + }, + [983] = { + ["id"] = "fractured.stat_2954116742|50687", + ["text"] = "Allocates Coursing Energy", + ["type"] = "fractured", + }, + [984] = { + ["id"] = "fractured.stat_2954116742|44917", + ["text"] = "Allocates Self Mortification", + ["type"] = "fractured", + }, + [985] = { + ["id"] = "fractured.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", + ["type"] = "fractured", + }, + [986] = { + ["id"] = "fractured.stat_2954116742|7668", + ["text"] = "Allocates Internal Bleeding", + ["type"] = "fractured", + }, + [987] = { + ["id"] = "fractured.stat_3796523155", + ["text"] = "#% less effect of Curses on Monsters", + ["type"] = "fractured", + }, + [988] = { + ["id"] = "fractured.stat_2954116742|51606", + ["text"] = "Allocates Freedom of Movement", + ["type"] = "fractured", + }, + [989] = { + ["id"] = "fractured.stat_2954116742|42045", + ["text"] = "Allocates Archon of the Blizzard", + ["type"] = "fractured", + }, + [990] = { + ["id"] = "fractured.stat_2954116742|16790", + ["text"] = "Allocates Efficient Casting", + ["type"] = "fractured", + }, + [991] = { + ["id"] = "fractured.stat_2954116742|19156", + ["text"] = "Allocates Immaterial", + ["type"] = "fractured", + }, + [992] = { + ["id"] = "fractured.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "fractured", + }, + [993] = { + ["id"] = "fractured.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "fractured", + }, + [994] = { + ["id"] = "fractured.stat_2954116742|14945", + ["text"] = "Allocates Growing Swarm", + ["type"] = "fractured", + }, + [995] = { + ["id"] = "fractured.stat_2954116742|4673", + ["text"] = "Allocates Hulking Smash", + ["type"] = "fractured", + }, + [996] = { + ["id"] = "fractured.stat_2954116742|42036", + ["text"] = "Allocates Off-Balancing Retort", + ["type"] = "fractured", + }, + [997] = { + ["id"] = "fractured.stat_2954116742|2814", + ["text"] = "Allocates Engineered Blaze", + ["type"] = "fractured", + }, + [998] = { + ["id"] = "fractured.stat_57434274", + ["text"] = "#% increased Experience gain", + ["type"] = "fractured", + }, + [999] = { + ["id"] = "fractured.stat_57434274", + ["text"] = "#% increased Experience gain in your Maps", + ["type"] = "fractured", + }, + [1000] = { + ["id"] = "fractured.stat_2954116742|63579", + ["text"] = "Allocates Momentum", + ["type"] = "fractured", + }, + [1001] = { + ["id"] = "fractured.stat_2954116742|17303", + ["text"] = "Allocates Utility Ordnance", + ["type"] = "fractured", + }, + [1002] = { + ["id"] = "fractured.stat_2954116742|36507", + ["text"] = "Allocates Vile Mending", + ["type"] = "fractured", + }, + [1003] = { + ["id"] = "fractured.stat_2954116742|2397", + ["text"] = "Allocates Last Stand", + ["type"] = "fractured", + }, + [1004] = { + ["id"] = "fractured.stat_2954116742|29288", + ["text"] = "Allocates Deadly Invocations", + ["type"] = "fractured", + }, + [1005] = { + ["id"] = "fractured.stat_2954116742|31189", + ["text"] = "Allocates Unexpected Finesse", + ["type"] = "fractured", + }, + [1006] = { + ["id"] = "fractured.stat_2549889921", + ["text"] = "Players gain #% reduced Flask Charges", + ["type"] = "fractured", + }, + [1007] = { + ["id"] = "fractured.stat_2954116742|60269", + ["text"] = "Allocates Roil", + ["type"] = "fractured", + }, + [1008] = { + ["id"] = "fractured.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["type"] = "fractured", + }, + [1009] = { + ["id"] = "fractured.stat_2954116742|31326", + ["text"] = "Allocates Slow Burn", + ["type"] = "fractured", + }, + [1010] = { + ["id"] = "fractured.stat_2954116742|26356", + ["text"] = "Allocates Primed to Explode", + ["type"] = "fractured", + }, + [1011] = { + ["id"] = "fractured.stat_2954116742|35618", + ["text"] = "Allocates Cold Coat", + ["type"] = "fractured", + }, + [1012] = { + ["id"] = "fractured.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", + ["type"] = "fractured", + }, + [1013] = { + ["id"] = "fractured.stat_2954116742|26070", + ["text"] = "Allocates Bolstering Yell", + ["type"] = "fractured", + }, + [1014] = { + ["id"] = "fractured.stat_115425161", + ["text"] = "Monsters have #% increased Stun Buildup", + ["type"] = "fractured", + }, + [1015] = { + ["id"] = "fractured.stat_2488361432", + ["text"] = "#% increased Monster Cast Speed", + ["type"] = "fractured", + }, + [1016] = { + ["id"] = "fractured.stat_1834658952", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "fractured", + }, + [1017] = { + ["id"] = "fractured.stat_2954116742|24483", + ["text"] = "Allocates Direct Approach", + ["type"] = "fractured", + }, + [1018] = { + ["id"] = "fractured.stat_2954116742|15829", + ["text"] = "Allocates Siphon", + ["type"] = "fractured", + }, + [1019] = { + ["id"] = "fractured.stat_133340941", + ["text"] = "Area has patches of Ignited Ground", + ["type"] = "fractured", + }, + [1020] = { + ["id"] = "fractured.stat_2954116742|10315", + ["text"] = "Allocates Easy Going", + ["type"] = "fractured", + }, + [1021] = { + ["id"] = "fractured.stat_2954116742|63585", + ["text"] = "Allocates Thunderstruck", + ["type"] = "fractured", + }, + [1022] = { + ["id"] = "fractured.stat_2954116742|5335", + ["text"] = "Allocates Shimmering Mirage", + ["type"] = "fractured", + }, + [1023] = { + ["id"] = "fractured.stat_2954116742|23244", + ["text"] = "Allocates Bounty Hunter", + ["type"] = "fractured", + }, + [1024] = { + ["id"] = "fractured.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["type"] = "fractured", + }, + [1025] = { + ["id"] = "fractured.stat_1994551050", + ["text"] = "Monsters have #% increased Ailment Threshold", + ["type"] = "fractured", + }, + [1026] = { + ["id"] = "fractured.stat_2954116742|44293", + ["text"] = "Allocates Hastening Barrier", + ["type"] = "fractured", + }, + [1027] = { + ["id"] = "fractured.stat_2954116742|12822", + ["text"] = "Allocates Adaptable Assault", + ["type"] = "fractured", + }, + [1028] = { + ["id"] = "fractured.stat_2954116742|63431", + ["text"] = "Allocates Leeching Toxins", + ["type"] = "fractured", + }, + [1029] = { + ["id"] = "fractured.stat_2954116742|18397", + ["text"] = "Allocates Savoured Blood", + ["type"] = "fractured", + }, + [1030] = { + ["id"] = "fractured.stat_2954116742|28441", + ["text"] = "Allocates Frantic Swings", + ["type"] = "fractured", + }, + [1031] = { + ["id"] = "fractured.stat_2954116742|43423", + ["text"] = "Allocates Emboldened Avatar", + ["type"] = "fractured", + }, + [1032] = { + ["id"] = "fractured.stat_2954116742|4810", + ["text"] = "Allocates Sanguine Tolerance", + ["type"] = "fractured", + }, + [1033] = { + ["id"] = "fractured.stat_2954116742|19249", + ["text"] = "Allocates Supportive Ancestors", + ["type"] = "fractured", + }, + [1034] = { + ["id"] = "fractured.stat_2954116742|53921", + ["text"] = "Allocates Unbreaking", + ["type"] = "fractured", + }, + [1035] = { + ["id"] = "fractured.stat_2954116742|36808", + ["text"] = "Allocates Spiked Shield", + ["type"] = "fractured", + }, + [1036] = { + ["id"] = "fractured.stat_2954116742|8881", + ["text"] = "Allocates Unforgiving", + ["type"] = "fractured", + }, + [1037] = { + ["id"] = "fractured.stat_2954116742|8397", + ["text"] = "Allocates Empowering Remains", + ["type"] = "fractured", + }, + [1038] = { + ["id"] = "fractured.stat_2954116742|41972", + ["text"] = "Allocates Glaciation", + ["type"] = "fractured", + }, + [1039] = { + ["id"] = "fractured.stat_2954116742|20916", + ["text"] = "Allocates Blinding Strike", + ["type"] = "fractured", + }, + [1040] = { + ["id"] = "fractured.stat_211727", + ["text"] = "Monsters deal #% of Damage as Extra Cold", + ["type"] = "fractured", + }, + [1041] = { + ["id"] = "fractured.stat_2954116742|37806", + ["text"] = "Allocates Branching Bolts", + ["type"] = "fractured", + }, + [1042] = { + ["id"] = "fractured.stat_2954116742|51169", + ["text"] = "Allocates Soul Bloom", + ["type"] = "fractured", + }, + [1043] = { + ["id"] = "fractured.stat_2954116742|52245", + ["text"] = "Allocates Distant Dreamer", + ["type"] = "fractured", + }, + [1044] = { + ["id"] = "fractured.stat_2954116742|10873", + ["text"] = "Allocates Bestial Rage", + ["type"] = "fractured", + }, + [1045] = { + ["id"] = "fractured.stat_2954116742|52971", + ["text"] = "Allocates The Soul Meridian", + ["type"] = "fractured", + }, + [1046] = { + ["id"] = "fractured.stat_2954116742|53566", + ["text"] = "Allocates Run and Gun", + ["type"] = "fractured", + }, + [1047] = { + ["id"] = "fractured.stat_2954116742|43090", + ["text"] = "Allocates Electrotherapy", + ["type"] = "fractured", + }, + [1048] = { + ["id"] = "fractured.stat_2954116742|39083", + ["text"] = "Allocates Blood Rush", + ["type"] = "fractured", + }, + [1049] = { + ["id"] = "fractured.stat_2954116742|21748", + ["text"] = "Allocates Impending Doom", + ["type"] = "fractured", + }, + [1050] = { + ["id"] = "fractured.stat_2954116742|48658", + ["text"] = "Allocates Shattering", + ["type"] = "fractured", + }, + [1051] = { + ["id"] = "fractured.stat_2954116742|50023", + ["text"] = "Allocates Invigorating Grandeur", + ["type"] = "fractured", + }, + [1052] = { + ["id"] = "fractured.stat_2954116742|48103", + ["text"] = "Allocates Forcewave", + ["type"] = "fractured", + }, + [1053] = { + ["id"] = "fractured.stat_2954116742|4959", + ["text"] = "Allocates Heavy Frost", + ["type"] = "fractured", + }, + [1054] = { + ["id"] = "fractured.stat_2954116742|12906", + ["text"] = "Allocates Sitting Duck", + ["type"] = "fractured", + }, + [1055] = { + ["id"] = "fractured.stat_1714706956", + ["text"] = "#% increased Magic Pack Size", + ["type"] = "fractured", + }, + [1056] = { + ["id"] = "fractured.stat_2954116742|42981", + ["text"] = "Allocates Cruel Methods", + ["type"] = "fractured", + }, + [1057] = { + ["id"] = "fractured.stat_2954116742|24655", + ["text"] = "Allocates Breath of Fire", + ["type"] = "fractured", + }, + [1058] = { + ["id"] = "fractured.stat_2753083623", + ["text"] = "Monsters have #% increased Critical Hit Chance", + ["type"] = "fractured", + }, + [1059] = { + ["id"] = "fractured.stat_2954116742|40687", + ["text"] = "Allocates Lead by Example", + ["type"] = "fractured", + }, + [1060] = { + ["id"] = "fractured.stat_2954116742|52180", + ["text"] = "Allocates Trained Deflection", + ["type"] = "fractured", + }, + [1061] = { + ["id"] = "fractured.stat_1588049749", + ["text"] = "Monsters have #% increased Accuracy Rating", + ["type"] = "fractured", + }, + [1062] = { + ["id"] = "fractured.stat_92381065", + ["text"] = "Monsters deal #% of Damage as Extra Fire", + ["type"] = "fractured", + }, + [1063] = { + ["id"] = "fractured.stat_1898978455", + ["text"] = "Monster Damage Penetrates #% Elemental Resistances", + ["type"] = "fractured", + }, + [1064] = { + ["id"] = "fractured.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "fractured", + }, + [1065] = { + ["id"] = "fractured.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "fractured", + }, + [1066] = { + ["id"] = "fractured.stat_2954116742|19546", + ["text"] = "Allocates Favourable Odds", + ["type"] = "fractured", + }, + [1067] = { + ["id"] = "fractured.stat_2954116742|24764", + ["text"] = "Allocates Infusing Power", + ["type"] = "fractured", + }, + [1068] = { + ["id"] = "fractured.stat_2029171424", + ["text"] = "Players are periodically Cursed with Enfeeble", + ["type"] = "fractured", + }, + [1069] = { + ["id"] = "fractured.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + ["type"] = "fractured", + }, + [1070] = { + ["id"] = "fractured.stat_2954116742|38614", + ["text"] = "Allocates Psychic Fragmentation", + ["type"] = "fractured", + }, + [1071] = { + ["id"] = "fractured.stat_2954116742|55060", + ["text"] = "Allocates Shrapnel", + ["type"] = "fractured", + }, + [1072] = { + ["id"] = "fractured.stat_2954116742|43939", + ["text"] = "Allocates Melting Flames", + ["type"] = "fractured", + }, + [1073] = { + ["id"] = "fractured.stat_2954116742|33093", + ["text"] = "Allocates Effervescent", + ["type"] = "fractured", + }, + [1074] = { + ["id"] = "fractured.stat_2954116742|11578", + ["text"] = "Allocates Spreading Shocks", + ["type"] = "fractured", + }, + [1075] = { + ["id"] = "fractured.stat_2954116742|61026", + ["text"] = "Allocates Crystalline Flesh", + ["type"] = "fractured", + }, + [1076] = { + ["id"] = "fractured.stat_2954116742|2335", + ["text"] = "Allocates Turn the Clock Forward", + ["type"] = "fractured", + }, + [1077] = { + ["id"] = "fractured.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["type"] = "fractured", + }, + [1078] = { + ["id"] = "fractured.stat_2954116742|38888", + ["text"] = "Allocates Unerring Impact", + ["type"] = "fractured", + }, + [1079] = { + ["id"] = "fractured.stat_2570249991", + ["text"] = "Monsters are Evasive", + ["type"] = "fractured", + }, + [1080] = { + ["id"] = "fractured.stat_57326096", + ["text"] = "Monsters have #% Critical Damage Bonus", + ["type"] = "fractured", + }, + [1081] = { + ["id"] = "fractured.stat_2954116742|32301", + ["text"] = "Allocates Frazzled", + ["type"] = "fractured", + }, + [1082] = { + ["id"] = "fractured.stat_2954116742|14343", + ["text"] = "Allocates Deterioration", + ["type"] = "fractured", + }, + [1083] = { + ["id"] = "fractured.stat_2954116742|7847", + ["text"] = "Allocates The Fabled Stag", + ["type"] = "fractured", + }, + [1084] = { + ["id"] = "fractured.stat_2954116742|4331", + ["text"] = "Allocates Guided Hand", + ["type"] = "fractured", + }, + [1085] = { + ["id"] = "fractured.stat_2954116742|41394", + ["text"] = "Allocates Invigorating Archon", + ["type"] = "fractured", + }, + [1086] = { + ["id"] = "fractured.stat_2954116742|32151", + ["text"] = "Allocates Crystalline Resistance", + ["type"] = "fractured", + }, + [1087] = { + ["id"] = "fractured.stat_2954116742|9736", + ["text"] = "Allocates Insulated Treads", + ["type"] = "fractured", + }, + [1088] = { + ["id"] = "fractured.stat_2954116742|25362", + ["text"] = "Allocates Chakra of Impact", + ["type"] = "fractured", + }, + [1089] = { + ["id"] = "fractured.stat_2954116742|45713", + ["text"] = "Allocates Savouring", + ["type"] = "fractured", + }, + [1090] = { + ["id"] = "fractured.stat_2954116742|15986", + ["text"] = "Allocates Building Toxins", + ["type"] = "fractured", + }, + [1091] = { + ["id"] = "fractured.stat_2954116742|7275", + ["text"] = "Allocates Electrocuting Exposure", + ["type"] = "fractured", + }, + [1092] = { + ["id"] = "fractured.stat_30438393", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + ["type"] = "fractured", + }, + }, + ["id"] = "fractured", + ["label"] = "Fractured", + }, + [5] = { + ["entries"] = { + [1] = { + ["id"] = "crafted.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "crafted", + }, + [2] = { + ["id"] = "crafted.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "crafted", + }, + [3] = { + ["id"] = "crafted.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "crafted", + }, + [4] = { + ["id"] = "crafted.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "crafted", + }, + [5] = { + ["id"] = "crafted.stat_518292764", + ["text"] = "#% to Critical Hit Chance", + ["type"] = "crafted", + }, + [6] = { + ["id"] = "crafted.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "crafted", + }, + [7] = { + ["id"] = "crafted.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "crafted", + }, + [8] = { + ["id"] = "crafted.stat_3035140377", + ["text"] = "# to Level of all Attack Skills", + ["type"] = "crafted", + }, + [9] = { + ["id"] = "crafted.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "crafted", + }, + [10] = { + ["id"] = "crafted.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "crafted", + }, + [11] = { + ["id"] = "crafted.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "crafted", + }, + [12] = { + ["id"] = "crafted.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "crafted", + }, + [13] = { + ["id"] = "crafted.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "crafted", + }, + [14] = { + ["id"] = "crafted.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["type"] = "crafted", + }, + [15] = { + ["id"] = "crafted.stat_1177404658", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield", + ["type"] = "crafted", + }, + [16] = { + ["id"] = "crafted.stat_3336230913", + ["text"] = "# to maximum Runic Ward", + ["type"] = "crafted", + }, + [17] = { + ["id"] = "crafted.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "crafted", + }, + [18] = { + ["id"] = "crafted.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "crafted", + }, + [19] = { + ["id"] = "crafted.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", + ["type"] = "crafted", + }, + [20] = { + ["id"] = "crafted.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "crafted", + }, + [21] = { + ["id"] = "crafted.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "crafted", + }, + [22] = { + ["id"] = "crafted.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "crafted", + }, + [23] = { + ["id"] = "crafted.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "crafted", + }, + [24] = { + ["id"] = "crafted.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "crafted", + }, + [25] = { + ["id"] = "crafted.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "crafted", + }, + [26] = { + ["id"] = "crafted.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["type"] = "crafted", + }, + [27] = { + ["id"] = "crafted.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", + ["type"] = "crafted", + }, + [28] = { + ["id"] = "crafted.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "crafted", + }, + [29] = { + ["id"] = "crafted.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "crafted", + }, + [30] = { + ["id"] = "crafted.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "crafted", + }, + [31] = { + ["id"] = "crafted.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "crafted", + }, + [32] = { + ["id"] = "crafted.stat_4273473110", + ["text"] = "#% increased maximum Runic Ward", + ["type"] = "crafted", + }, + [33] = { + ["id"] = "crafted.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "crafted", + }, + [34] = { + ["id"] = "crafted.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "crafted", + }, + [35] = { + ["id"] = "crafted.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "crafted", + }, + [36] = { + ["id"] = "crafted.stat_325171970", + ["text"] = "#% increased Attack Speed while missing Runic Ward", + ["type"] = "crafted", + }, + [37] = { + ["id"] = "crafted.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "crafted", + }, + [38] = { + ["id"] = "crafted.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "crafted", + }, + [39] = { + ["id"] = "crafted.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "crafted", + }, + [40] = { + ["id"] = "crafted.stat_1058934731", + ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", + ["type"] = "crafted", + }, + [41] = { + ["id"] = "crafted.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "crafted", + }, + [42] = { + ["id"] = "crafted.stat_335885735", + ["text"] = "Bears the Mark of the Abyssal Lord", + ["type"] = "crafted", + }, + [43] = { + ["id"] = "crafted.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "crafted", + }, + [44] = { + ["id"] = "crafted.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "crafted", + }, + [45] = { + ["id"] = "crafted.stat_1028592286", + ["text"] = "#% chance to Chain an additional time", + ["type"] = "crafted", + }, + [46] = { + ["id"] = "crafted.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", + ["type"] = "crafted", + }, + [47] = { + ["id"] = "crafted.stat_1158842087", + ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", + ["type"] = "crafted", + }, + [48] = { + ["id"] = "crafted.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "crafted", + }, + [49] = { + ["id"] = "crafted.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "crafted", + }, + [50] = { + ["id"] = "crafted.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "crafted", + }, + [51] = { + ["id"] = "crafted.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "crafted", + }, + [52] = { + ["id"] = "crafted.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "crafted", + }, + [53] = { + ["id"] = "crafted.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["type"] = "crafted", + }, + [54] = { + ["id"] = "crafted.stat_589361270", + ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", + ["type"] = "crafted", + }, + [55] = { + ["id"] = "crafted.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "crafted", + }, + [56] = { + ["id"] = "crafted.stat_3482326075", + ["text"] = "Remnants can be collected from #% further away", + ["type"] = "crafted", + }, + [57] = { + ["id"] = "crafted.stat_2840930496", + ["text"] = "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", + ["type"] = "crafted", + }, + [58] = { + ["id"] = "crafted.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "crafted", + }, + [59] = { + ["id"] = "crafted.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "crafted", + }, + [60] = { + ["id"] = "crafted.stat_4147510958", + ["text"] = "Sealed Skills have # to maximum Seals", + ["type"] = "crafted", + }, + [61] = { + ["id"] = "crafted.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", + ["type"] = "crafted", + }, + [62] = { + ["id"] = "crafted.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "crafted", + }, + [63] = { + ["id"] = "crafted.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "crafted", + }, + [64] = { + ["id"] = "crafted.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "crafted", + }, + [65] = { + ["id"] = "crafted.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "crafted", + }, + [66] = { + ["id"] = "crafted.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "crafted", + }, + [67] = { + ["id"] = "crafted.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "crafted", + }, + [68] = { + ["id"] = "crafted.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", + ["type"] = "crafted", + }, + [69] = { + ["id"] = "crafted.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", + ["type"] = "crafted", + }, + [70] = { + ["id"] = "crafted.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "crafted", + }, + [71] = { + ["id"] = "crafted.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["type"] = "crafted", + }, + [72] = { + ["id"] = "crafted.stat_953593695", + ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", + ["type"] = "crafted", + }, + [73] = { + ["id"] = "crafted.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "crafted", + }, + [74] = { + ["id"] = "crafted.stat_1967040409", + ["text"] = "Spell Skills have #% increased Area of Effect", + ["type"] = "crafted", + }, + [75] = { + ["id"] = "crafted.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "crafted", + }, + [76] = { + ["id"] = "crafted.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "crafted", + }, + [77] = { + ["id"] = "crafted.stat_1797815732", + ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", + ["type"] = "crafted", + }, + [78] = { + ["id"] = "crafted.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["type"] = "crafted", + }, + [79] = { + ["id"] = "crafted.stat_323800555", + ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", + ["type"] = "crafted", + }, + [80] = { + ["id"] = "crafted.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["type"] = "crafted", + }, + [81] = { + ["id"] = "crafted.stat_933355817", + ["text"] = "#% to gain Archon of Undeath when you create an Offering", + ["type"] = "crafted", + }, + [82] = { + ["id"] = "crafted.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["type"] = "crafted", + }, + [83] = { + ["id"] = "crafted.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "crafted", + }, + [84] = { + ["id"] = "crafted.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["type"] = "crafted", + }, + [85] = { + ["id"] = "crafted.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["type"] = "crafted", + }, + [86] = { + ["id"] = "crafted.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "crafted", + }, + [87] = { + ["id"] = "crafted.stat_2074866941", + ["text"] = "#% increased Exposure Effect", + ["type"] = "crafted", + }, + [88] = { + ["id"] = "crafted.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["type"] = "crafted", + }, + [89] = { + ["id"] = "crafted.stat_73032170", + ["text"] = "Minions have #% increased Skill Speed with Command Skills", + ["type"] = "crafted", + }, + [90] = { + ["id"] = "crafted.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["type"] = "crafted", + }, + [91] = { + ["id"] = "crafted.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "crafted", + }, + [92] = { + ["id"] = "crafted.stat_1568848828", + ["text"] = "Recover # Runic Ward when you Block", + ["type"] = "crafted", + }, + [93] = { + ["id"] = "crafted.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["type"] = "crafted", + }, + [94] = { + ["id"] = "crafted.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "crafted", + }, + [95] = { + ["id"] = "crafted.stat_825116955", + ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", + ["type"] = "crafted", + }, + [96] = { + ["id"] = "crafted.stat_1002535626", + ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", + ["type"] = "crafted", + }, + [97] = { + ["id"] = "crafted.stat_1484026495", + ["text"] = "+# maximum stacks of Puppet Master", + ["type"] = "crafted", + }, + [98] = { + ["id"] = "crafted.stat_2954116742|7809", + ["text"] = "Allocates Wild Storm", + ["type"] = "crafted", + }, + [99] = { + ["id"] = "crafted.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "crafted", + }, + [100] = { + ["id"] = "crafted.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["type"] = "crafted", + }, + [101] = { + ["id"] = "crafted.stat_2954116742|45612", + ["text"] = "Allocates Defensive Reflexes", + ["type"] = "crafted", + }, + [102] = { + ["id"] = "crafted.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["type"] = "crafted", + }, + [103] = { + ["id"] = "crafted.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["type"] = "crafted", + }, + [104] = { + ["id"] = "crafted.stat_830161081", + ["text"] = "#% increased Runic Ward", + ["type"] = "crafted", + }, + [105] = { + ["id"] = "crafted.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["type"] = "crafted", + }, + [106] = { + ["id"] = "crafted.stat_2954116742|62185", + ["text"] = "Allocates Rattled", + ["type"] = "crafted", + }, + [107] = { + ["id"] = "crafted.stat_2954116742|60992", + ["text"] = "Allocates Nurturing Guardian", + ["type"] = "crafted", + }, + [108] = { + ["id"] = "crafted.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", + ["type"] = "crafted", + }, + [109] = { + ["id"] = "crafted.stat_2954116742|51602", + ["text"] = "Allocates Unsight", + ["type"] = "crafted", + }, + [110] = { + ["id"] = "crafted.stat_195270549", + ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", + ["type"] = "crafted", + }, + [111] = { + ["id"] = "crafted.stat_2954116742|30395", + ["text"] = "Allocates Howling Beast", + ["type"] = "crafted", + }, + [112] = { + ["id"] = "crafted.stat_1180552088", + ["text"] = "#% increased effect of Archon Buffs on you", + ["type"] = "crafted", + }, + [113] = { + ["id"] = "crafted.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "crafted", + }, + [114] = { + ["id"] = "crafted.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "crafted", + }, + [115] = { + ["id"] = "crafted.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", + ["type"] = "crafted", + }, + [116] = { + ["id"] = "crafted.stat_2954116742|18496", + ["text"] = "Allocates Lasting Trauma", + ["type"] = "crafted", + }, + [117] = { + ["id"] = "crafted.stat_2954116742|1420", + ["text"] = "Allocates Dizzying Sweep", + ["type"] = "crafted", + }, + [118] = { + ["id"] = "crafted.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["type"] = "crafted", + }, + [119] = { + ["id"] = "crafted.stat_3191479793", + ["text"] = "Offering Skills have #% increased Buff effect", + ["type"] = "crafted", + }, + [120] = { + ["id"] = "crafted.stat_3249412463", + ["text"] = "Supported Minions' Strikes have Melee Splash", + ["type"] = "crafted", + }, + [121] = { + ["id"] = "crafted.stat_1615901249", + ["text"] = "Invocated skills have #% increased Maximum Energy", + ["type"] = "crafted", + }, + [122] = { + ["id"] = "crafted.stat_2954116742|52803", + ["text"] = "Allocates Hale Traveller", + ["type"] = "crafted", + }, + [123] = { + ["id"] = "crafted.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "crafted", + }, + [124] = { + ["id"] = "crafted.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "crafted", + }, + [125] = { + ["id"] = "crafted.stat_4215035940", + ["text"] = "On Corruption, Item gains two Enchantments", + ["type"] = "crafted", + }, + [126] = { + ["id"] = "crafted.stat_2954116742|61921", + ["text"] = "Allocates Storm Surge", + ["type"] = "crafted", + }, + [127] = { + ["id"] = "crafted.stat_2954116742|35849", + ["text"] = "Allocates Thickened Arteries", + ["type"] = "crafted", + }, + [128] = { + ["id"] = "crafted.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["type"] = "crafted", + }, + [129] = { + ["id"] = "crafted.stat_2954116742|42177", + ["text"] = "Allocates Blurred Motion", + ["type"] = "crafted", + }, + [130] = { + ["id"] = "crafted.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", + ["type"] = "crafted", + }, + [131] = { + ["id"] = "crafted.stat_3587953142", + ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", + ["type"] = "crafted", + }, + [132] = { + ["id"] = "crafted.stat_2954116742|31745", + ["text"] = "Allocates Lockdown", + ["type"] = "crafted", + }, + [133] = { + ["id"] = "crafted.stat_1443502073", + ["text"] = "#% increased Effect of Prefixes", + ["type"] = "crafted", + }, + [134] = { + ["id"] = "crafted.stat_2954116742|9290", + ["text"] = "Allocates Rusted Pins", + ["type"] = "crafted", + }, + [135] = { + ["id"] = "crafted.stat_2954116742|40480", + ["text"] = "Allocates Harmonic Generator", + ["type"] = "crafted", + }, + [136] = { + ["id"] = "crafted.stat_1972391381", + ["text"] = "#% increased Explicit Resistance Modifier magnitudes", + ["type"] = "crafted", + }, + [137] = { + ["id"] = "crafted.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", + ["type"] = "crafted", + }, + [138] = { + ["id"] = "crafted.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", + ["type"] = "crafted", + }, + [139] = { + ["id"] = "crafted.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", + ["type"] = "crafted", + }, + [140] = { + ["id"] = "crafted.stat_2954116742|34324", + ["text"] = "Allocates Spectral Ward", + ["type"] = "crafted", + }, + [141] = { + ["id"] = "crafted.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", + ["type"] = "crafted", + }, + [142] = { + ["id"] = "crafted.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "crafted", + }, + [143] = { + ["id"] = "crafted.stat_2954116742|19715", + ["text"] = "Allocates Cremation", + ["type"] = "crafted", + }, + [144] = { + ["id"] = "crafted.stat_2954116742|24120", + ["text"] = "Allocates Mental Toughness", + ["type"] = "crafted", + }, + [145] = { + ["id"] = "crafted.stat_2954116742|13407", + ["text"] = "Allocates Heartbreaking", + ["type"] = "crafted", + }, + [146] = { + ["id"] = "crafted.stat_2954116742|65256", + ["text"] = "Allocates Widespread Coverage", + ["type"] = "crafted", + }, + [147] = { + ["id"] = "crafted.stat_2954116742|46683", + ["text"] = "Allocates Inherited Strength ", + ["type"] = "crafted", + }, + [148] = { + ["id"] = "crafted.stat_758893621", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "crafted", + }, + [149] = { + ["id"] = "crafted.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "crafted", + }, + [150] = { + ["id"] = "crafted.stat_2954116742|2745", + ["text"] = "Allocates The Noble Wolf", + ["type"] = "crafted", + }, + [151] = { + ["id"] = "crafted.stat_2954116742|50687", + ["text"] = "Allocates Coursing Energy", + ["type"] = "crafted", + }, + [152] = { + ["id"] = "crafted.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "crafted", + }, + [153] = { + ["id"] = "crafted.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["type"] = "crafted", + }, + [154] = { + ["id"] = "crafted.stat_2954116742|1169", + ["text"] = "Allocates Urgent Call", + ["type"] = "crafted", + }, + [155] = { + ["id"] = "crafted.stat_971590056", + ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", + ["type"] = "crafted", + }, + [156] = { + ["id"] = "crafted.stat_554145967", + ["text"] = "Recover # Runic Ward when a Charm is used", + ["type"] = "crafted", + }, + [157] = { + ["id"] = "crafted.stat_2954116742|55308", + ["text"] = "Allocates Sling Shots", + ["type"] = "crafted", + }, + [158] = { + ["id"] = "crafted.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["type"] = "crafted", + }, + [159] = { + ["id"] = "crafted.stat_2954116742|26339", + ["text"] = "Allocates Ancestral Artifice", + ["type"] = "crafted", + }, + [160] = { + ["id"] = "crafted.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "crafted", + }, + [161] = { + ["id"] = "crafted.stat_2954116742|45177", + ["text"] = "Allocates Strike True", + ["type"] = "crafted", + }, + [162] = { + ["id"] = "crafted.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["type"] = "crafted", + }, + [163] = { + ["id"] = "crafted.stat_2954116742|6178", + ["text"] = "Allocates Power Shots", + ["type"] = "crafted", + }, + [164] = { + ["id"] = "crafted.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["type"] = "crafted", + }, + [165] = { + ["id"] = "crafted.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", + ["type"] = "crafted", + }, + [166] = { + ["id"] = "crafted.stat_541021467", + ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", + ["type"] = "crafted", + }, + [167] = { + ["id"] = "crafted.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", + ["type"] = "crafted", + }, + [168] = { + ["id"] = "crafted.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", + ["type"] = "crafted", + }, + [169] = { + ["id"] = "crafted.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["type"] = "crafted", + }, + [170] = { + ["id"] = "crafted.stat_2954116742|17260", + ["text"] = "Allocates Piercing Claw", + ["type"] = "crafted", + }, + [171] = { + ["id"] = "crafted.stat_2954116742|51213", + ["text"] = "Allocates Wasting", + ["type"] = "crafted", + }, + [172] = { + ["id"] = "crafted.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", + ["type"] = "crafted", + }, + [173] = { + ["id"] = "crafted.stat_2954116742|30562", + ["text"] = "Allocates Inner Faith", + ["type"] = "crafted", + }, + [174] = { + ["id"] = "crafted.stat_2954116742|52199", + ["text"] = "Allocates Overexposure", + ["type"] = "crafted", + }, + [175] = { + ["id"] = "crafted.stat_2954116742|37742", + ["text"] = "Allocates Manifold Method", + ["type"] = "crafted", + }, + [176] = { + ["id"] = "crafted.stat_2954116742|52764", + ["text"] = "Allocates Mystical Rage", + ["type"] = "crafted", + }, + [177] = { + ["id"] = "crafted.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", + ["type"] = "crafted", + }, + [178] = { + ["id"] = "crafted.stat_3121133045", + ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", + ["type"] = "crafted", + }, + [179] = { + ["id"] = "crafted.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["type"] = "crafted", + }, + [180] = { + ["id"] = "crafted.stat_2081918629", + ["text"] = "#% increased effect of Socketed Augment Items", + ["type"] = "crafted", + }, + [181] = { + ["id"] = "crafted.stat_3526763442", + ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", + ["type"] = "crafted", + }, + [182] = { + ["id"] = "crafted.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "crafted", + }, + [183] = { + ["id"] = "crafted.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", + ["type"] = "crafted", + }, + [184] = { + ["id"] = "crafted.stat_2954116742|41620", + ["text"] = "Allocates Bear's Roar", + ["type"] = "crafted", + }, + [185] = { + ["id"] = "crafted.stat_2954116742|57617", + ["text"] = "Allocates Shifted Strikes", + ["type"] = "crafted", + }, + [186] = { + ["id"] = "crafted.stat_2954116742|26214", + ["text"] = "Allocates Dominion", + ["type"] = "crafted", + }, + [187] = { + ["id"] = "crafted.stat_2954116742|11376", + ["text"] = "Allocates Necrotic Touch", + ["type"] = "crafted", + }, + [188] = { + ["id"] = "crafted.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "crafted", + }, + [189] = { + ["id"] = "crafted.stat_2954116742|38972", + ["text"] = "Allocates Restless Dead", + ["type"] = "crafted", + }, + [190] = { + ["id"] = "crafted.stat_2954116742|42714", + ["text"] = "Allocates Thousand Cuts", + ["type"] = "crafted", + }, + [191] = { + ["id"] = "crafted.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", + ["type"] = "crafted", + }, + [192] = { + ["id"] = "crafted.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", + ["type"] = "crafted", + }, + [193] = { + ["id"] = "crafted.stat_3621874554", + ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", + ["type"] = "crafted", + }, + [194] = { + ["id"] = "crafted.stat_2954116742|48699", + ["text"] = "Allocates Frostwalker", + ["type"] = "crafted", + }, + [195] = { + ["id"] = "crafted.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["type"] = "crafted", + }, + [196] = { + ["id"] = "crafted.stat_3518449420", + ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", + ["type"] = "crafted", + }, + [197] = { + ["id"] = "crafted.stat_2954116742|64050", + ["text"] = "Allocates Marathon Runner", + ["type"] = "crafted", + }, + [198] = { + ["id"] = "crafted.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "crafted", + }, + [199] = { + ["id"] = "crafted.stat_2954116742|20414", + ["text"] = "Allocates Reprisal", + ["type"] = "crafted", + }, + [200] = { + ["id"] = "crafted.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["type"] = "crafted", + }, + [201] = { + ["id"] = "crafted.stat_2039822488", + ["text"] = "#% to Maximum Quality", + ["type"] = "crafted", + }, + [202] = { + ["id"] = "crafted.stat_1823942939", + ["text"] = "# to maximum number of Summoned Ballista Totems", + ["type"] = "crafted", + }, + [203] = { + ["id"] = "crafted.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["type"] = "crafted", + }, + [204] = { + ["id"] = "crafted.stat_2951965588", + ["text"] = "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", + ["type"] = "crafted", + }, + [205] = { + ["id"] = "crafted.stat_2954116742|23738", + ["text"] = "Allocates Madness in the Bones", + ["type"] = "crafted", + }, + [206] = { + ["id"] = "crafted.stat_3891355829|3", + ["text"] = "Upgrades Radius to Very Large", + ["type"] = "crafted", + }, + [207] = { + ["id"] = "crafted.stat_2954116742|47363", + ["text"] = "Allocates Colossal Weapon", + ["type"] = "crafted", + }, + [208] = { + ["id"] = "crafted.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["type"] = "crafted", + }, + [209] = { + ["id"] = "crafted.stat_2954116742|51868", + ["text"] = "Allocates Molten Carapace", + ["type"] = "crafted", + }, + [210] = { + ["id"] = "crafted.stat_2954116742|20495", + ["text"] = "Allocates Dark Entropy", + ["type"] = "crafted", + }, + [211] = { + ["id"] = "crafted.stat_2954116742|27761", + ["text"] = "Allocates Counterstancing", + ["type"] = "crafted", + }, + [212] = { + ["id"] = "crafted.stat_2954116742|57785", + ["text"] = "Allocates Trained Turrets", + ["type"] = "crafted", + }, + [213] = { + ["id"] = "crafted.stat_2954116742|17229", + ["text"] = "Allocates Silent Guardian", + ["type"] = "crafted", + }, + [214] = { + ["id"] = "crafted.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "crafted", + }, + [215] = { + ["id"] = "crafted.stat_2954116742|17854", + ["text"] = "Allocates Escape Velocity", + ["type"] = "crafted", + }, + [216] = { + ["id"] = "crafted.stat_2897413282", + ["text"] = "# to all Attributes", + ["type"] = "crafted", + }, + [217] = { + ["id"] = "crafted.stat_2954116742|4544", + ["text"] = "Allocates The Ancient Serpent", + ["type"] = "crafted", + }, + [218] = { + ["id"] = "crafted.stat_2954116742|3921", + ["text"] = "Allocates Fate Finding", + ["type"] = "crafted", + }, + [219] = { + ["id"] = "crafted.stat_2954116742|32128", + ["text"] = "Allocates Flow of Time", + ["type"] = "crafted", + }, + [220] = { + ["id"] = "crafted.stat_54812069", + ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", + ["type"] = "crafted", + }, + [221] = { + ["id"] = "crafted.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", + ["type"] = "crafted", + }, + [222] = { + ["id"] = "crafted.stat_4097212302", + ["text"] = "# to maximum number of Elemental Infusions", + ["type"] = "crafted", + }, + [223] = { + ["id"] = "crafted.stat_2954116742|6304", + ["text"] = "Allocates Stand Ground", + ["type"] = "crafted", + }, + [224] = { + ["id"] = "crafted.stat_2475221757", + ["text"] = "#% increased Effect of Suffixes", + ["type"] = "crafted", + }, + [225] = { + ["id"] = "crafted.stat_2954116742|26104", + ["text"] = "Allocates Spirit of the Wyvern", + ["type"] = "crafted", + }, + [226] = { + ["id"] = "crafted.stat_2954116742|4810", + ["text"] = "Allocates Sanguine Tolerance", + ["type"] = "crafted", + }, + [227] = { + ["id"] = "crafted.stat_1265767008", + ["text"] = "Your Minions are Gigantic if they have Revived Recently", + ["type"] = "crafted", + }, + [228] = { + ["id"] = "crafted.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "crafted", + }, + [229] = { + ["id"] = "crafted.stat_2954116742|56860", + ["text"] = "Allocates Resolute Reprisal", + ["type"] = "crafted", + }, + [230] = { + ["id"] = "crafted.stat_2954116742|58714", + ["text"] = "Allocates Grenadier", + ["type"] = "crafted", + }, + [231] = { + ["id"] = "crafted.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["type"] = "crafted", + }, + [232] = { + ["id"] = "crafted.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "crafted", + }, + [233] = { + ["id"] = "crafted.stat_2158617060", + ["text"] = "#% increased Archon Buff duration", + ["type"] = "crafted", + }, + [234] = { + ["id"] = "crafted.stat_2954116742|7163", + ["text"] = "Allocates Stimulants", + ["type"] = "crafted", + }, + [235] = { + ["id"] = "crafted.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", + ["type"] = "crafted", + }, + [236] = { + ["id"] = "crafted.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["type"] = "crafted", + }, + [237] = { + ["id"] = "crafted.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "crafted", + }, + [238] = { + ["id"] = "crafted.stat_2954116742|60464", + ["text"] = "Allocates Fan the Flames", + ["type"] = "crafted", + }, + [239] = { + ["id"] = "crafted.stat_2954116742|42245", + ["text"] = "Allocates Efficient Inscriptions", + ["type"] = "crafted", + }, + [240] = { + ["id"] = "crafted.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", + ["type"] = "crafted", + }, + [241] = { + ["id"] = "crafted.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", + ["type"] = "crafted", + }, + [242] = { + ["id"] = "crafted.stat_2954116742|13844", + ["text"] = "Allocates Growing Peril", + ["type"] = "crafted", + }, + [243] = { + ["id"] = "crafted.stat_2749595652", + ["text"] = "#% chance for Skills to retain 40% of Glory on use", + ["type"] = "crafted", + }, + [244] = { + ["id"] = "crafted.stat_2954116742|11826", + ["text"] = "Allocates Heavy Ammunition", + ["type"] = "crafted", + }, + [245] = { + ["id"] = "crafted.stat_2954116742|4547", + ["text"] = "Allocates Unnatural Resilience", + ["type"] = "crafted", + }, + [246] = { + ["id"] = "crafted.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "crafted", + }, + [247] = { + ["id"] = "crafted.stat_3984146263", + ["text"] = "Tempest Bells are destroyed after an additional # Hits", + ["type"] = "crafted", + }, + [248] = { + ["id"] = "crafted.stat_2954116742|52618", + ["text"] = "Allocates Boon of the Beast", + ["type"] = "crafted", + }, + [249] = { + ["id"] = "crafted.stat_555706343", + ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", + ["type"] = "crafted", + }, + [250] = { + ["id"] = "crafted.stat_2954116742|56493", + ["text"] = "Allocates Agile Succession", + ["type"] = "crafted", + }, + [251] = { + ["id"] = "crafted.stat_797289402", + ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", + ["type"] = "crafted", + }, + [252] = { + ["id"] = "crafted.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["type"] = "crafted", + }, + [253] = { + ["id"] = "crafted.stat_2954116742|11578", + ["text"] = "Allocates Spreading Shocks", + ["type"] = "crafted", + }, + [254] = { + ["id"] = "crafted.stat_2954116742|11774", + ["text"] = "Allocates The Spring Hare", + ["type"] = "crafted", + }, + [255] = { + ["id"] = "crafted.stat_2954116742|41394", + ["text"] = "Allocates Invigorating Archon", + ["type"] = "crafted", + }, + [256] = { + ["id"] = "crafted.stat_2954116742|36085", + ["text"] = "Allocates Serrated Edges", + ["type"] = "crafted", + }, + [257] = { + ["id"] = "crafted.stat_3399401168", + ["text"] = "#% to Fire Spell Critical Hit Chance", + ["type"] = "crafted", + }, + [258] = { + ["id"] = "crafted.stat_2954116742|14602", + ["text"] = "Allocates Specialised Shots", + ["type"] = "crafted", + }, + [259] = { + ["id"] = "crafted.stat_1687542781", + ["text"] = "Notable Passive Skills in Radius also grant #% to Lightning Resistance", + ["type"] = "crafted", + }, + [260] = { + ["id"] = "crafted.stat_2954116742|18505", + ["text"] = "Allocates Crushing Verdict", + ["type"] = "crafted", + }, + [261] = { + ["id"] = "crafted.stat_2954116742|14294", + ["text"] = "Allocates Sacrificial Blood", + ["type"] = "crafted", + }, + [262] = { + ["id"] = "crafted.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "crafted", + }, + [263] = { + ["id"] = "crafted.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "crafted", + }, + [264] = { + ["id"] = "crafted.stat_2954116742|20686", + ["text"] = "Allocates Paragon", + ["type"] = "crafted", + }, + [265] = { + ["id"] = "crafted.stat_2954116742|49550", + ["text"] = "Allocates Prolonged Fury", + ["type"] = "crafted", + }, + [266] = { + ["id"] = "crafted.stat_2954116742|35031", + ["text"] = "Allocates Chakra of Life", + ["type"] = "crafted", + }, + [267] = { + ["id"] = "crafted.stat_2954116742|60034", + ["text"] = "Allocates Falcon Dive", + ["type"] = "crafted", + }, + [268] = { + ["id"] = "crafted.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "crafted", + }, + [269] = { + ["id"] = "crafted.stat_2954116742|44293", + ["text"] = "Allocates Hastening Barrier", + ["type"] = "crafted", + }, + [270] = { + ["id"] = "crafted.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "crafted", + }, + [271] = { + ["id"] = "crafted.stat_2954116742|9535", + ["text"] = "Allocates Brinerot Ferocity", + ["type"] = "crafted", + }, + [272] = { + ["id"] = "crafted.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", + ["type"] = "crafted", + }, + [273] = { + ["id"] = "crafted.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", + ["type"] = "crafted", + }, + [274] = { + ["id"] = "crafted.stat_2954116742|3894", + ["text"] = "Allocates Eldritch Will", + ["type"] = "crafted", + }, + [275] = { + ["id"] = "crafted.stat_2954116742|61601", + ["text"] = "Allocates True Strike", + ["type"] = "crafted", + }, + [276] = { + ["id"] = "crafted.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", + ["type"] = "crafted", + }, + [277] = { + ["id"] = "crafted.stat_2954116742|42660", + ["text"] = "Allocates Commanding Rage", + ["type"] = "crafted", + }, + [278] = { + ["id"] = "crafted.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "crafted", + }, + [279] = { + ["id"] = "crafted.stat_2954116742|48617", + ["text"] = "Allocates Hunter", + ["type"] = "crafted", + }, + [280] = { + ["id"] = "crafted.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", + ["type"] = "crafted", + }, + [281] = { + ["id"] = "crafted.stat_2954116742|52971", + ["text"] = "Allocates The Soul Meridian", + ["type"] = "crafted", + }, + }, + ["id"] = "crafted", + ["label"] = "Crafted", + }, + [6] = { + ["entries"] = { + [1] = { + ["id"] = "enchant.stat_1715784068", + ["text"] = "Players in Area are #% Delirious", + ["type"] = "enchant", + }, + [2] = { + ["id"] = "enchant.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "enchant", + }, + [3] = { + ["id"] = "enchant.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "enchant", + }, + [4] = { + ["id"] = "enchant.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "enchant", + }, + [5] = { + ["id"] = "enchant.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "enchant", + }, + [6] = { + ["id"] = "enchant.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "enchant", + }, + [7] = { + ["id"] = "enchant.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "enchant", + }, + [8] = { + ["id"] = "enchant.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "enchant", + }, + [9] = { + ["id"] = "enchant.stat_3138466258", + ["text"] = "#% increased Tablets found in Area", + ["type"] = "enchant", + }, + [10] = { + ["id"] = "enchant.stat_3138466258", + ["text"] = "#% increased Quantity of Tablets found", + ["type"] = "enchant", + }, + [11] = { + ["id"] = "enchant.stat_3732878551", + ["text"] = "Rare Monsters have a #% Surpassing chance to have an additional Modifier", + ["type"] = "enchant", + }, + [12] = { + ["id"] = "enchant.stat_3732878551", + ["text"] = "Rare Monsters in your Maps have a #% Surpassing chance to have an additional Modifier", + ["type"] = "enchant", + }, + [13] = { + ["id"] = "enchant.stat_3371085671", + ["text"] = "Unique Monsters have # additional Rare Modifier", + ["type"] = "enchant", + }, + [14] = { + ["id"] = "enchant.stat_3371085671", + ["text"] = "Unique Monsters in your Maps have # additional Rare Modifier", + ["type"] = "enchant", + }, + [15] = { + ["id"] = "enchant.stat_3836551197", + ["text"] = "#% increased Stack size of Simulacrum Splinters found in Area", + ["type"] = "enchant", + }, + [16] = { + ["id"] = "enchant.stat_3836551197", + ["text"] = "#% increased Stack size of Simulacrum Splinters found in your Maps", + ["type"] = "enchant", + }, + [17] = { + ["id"] = "enchant.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "enchant", + }, + [18] = { + ["id"] = "enchant.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "enchant", + }, + [19] = { + ["id"] = "enchant.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "enchant", + }, + [20] = { + ["id"] = "enchant.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "enchant", + }, + [21] = { + ["id"] = "enchant.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "enchant", + }, + [22] = { + ["id"] = "enchant.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "enchant", + }, + [23] = { + ["id"] = "enchant.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "enchant", + }, + [24] = { + ["id"] = "enchant.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "enchant", + }, + [25] = { + ["id"] = "enchant.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "enchant", + }, + [26] = { + ["id"] = "enchant.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "enchant", + }, + [27] = { + ["id"] = "enchant.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "enchant", + }, + [28] = { + ["id"] = "enchant.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "enchant", + }, + [29] = { + ["id"] = "enchant.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "enchant", + }, + [30] = { + ["id"] = "enchant.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "enchant", + }, + [31] = { + ["id"] = "enchant.stat_3429557654", + ["text"] = "Immune to Maim", + ["type"] = "enchant", + }, + [32] = { + ["id"] = "enchant.stat_721014846", + ["text"] = "You cannot be Hindered", + ["type"] = "enchant", + }, + [33] = { + ["id"] = "enchant.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "enchant", + }, + [34] = { + ["id"] = "enchant.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "enchant", + }, + [35] = { + ["id"] = "enchant.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "enchant", + }, + [36] = { + ["id"] = "enchant.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "enchant", + }, + [37] = { + ["id"] = "enchant.stat_227523295", + ["text"] = "# to Maximum Power Charges", + ["type"] = "enchant", + }, + [38] = { + ["id"] = "enchant.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "enchant", + }, + [39] = { + ["id"] = "enchant.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "enchant", + }, + [40] = { + ["id"] = "enchant.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "enchant", + }, + [41] = { + ["id"] = "enchant.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "enchant", + }, + [42] = { + ["id"] = "enchant.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "enchant", + }, + [43] = { + ["id"] = "enchant.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "enchant", + }, + [44] = { + ["id"] = "enchant.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "enchant", + }, + [45] = { + ["id"] = "enchant.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "enchant", + }, + [46] = { + ["id"] = "enchant.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "enchant", + }, + [47] = { + ["id"] = "enchant.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "enchant", + }, + [48] = { + ["id"] = "enchant.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "enchant", + }, + [49] = { + ["id"] = "enchant.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "enchant", + }, + [50] = { + ["id"] = "enchant.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "enchant", + }, + [51] = { + ["id"] = "enchant.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "enchant", + }, + [52] = { + ["id"] = "enchant.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "enchant", + }, + [53] = { + ["id"] = "enchant.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "enchant", + }, + [54] = { + ["id"] = "enchant.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "enchant", + }, + [55] = { + ["id"] = "enchant.stat_2954116742|57190", + ["text"] = "Allocates Doomsayer", + ["type"] = "enchant", + }, + [56] = { + ["id"] = "enchant.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "enchant", + }, + [57] = { + ["id"] = "enchant.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "enchant", + }, + [58] = { + ["id"] = "enchant.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "enchant", + }, + [59] = { + ["id"] = "enchant.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "enchant", + }, + [60] = { + ["id"] = "enchant.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "enchant", + }, + [61] = { + ["id"] = "enchant.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "enchant", + }, + [62] = { + ["id"] = "enchant.stat_1725749947", + ["text"] = "Grants # Rage on Hit", + ["type"] = "enchant", + }, + [63] = { + ["id"] = "enchant.stat_2954116742|30456", + ["text"] = "Allocates High Alert", + ["type"] = "enchant", + }, + [64] = { + ["id"] = "enchant.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", + ["type"] = "enchant", + }, + [65] = { + ["id"] = "enchant.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "enchant", + }, + [66] = { + ["id"] = "enchant.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", + ["type"] = "enchant", + }, + [67] = { + ["id"] = "enchant.stat_3650992555", + ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", + ["type"] = "enchant", + }, + [68] = { + ["id"] = "enchant.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "enchant", + }, + [69] = { + ["id"] = "enchant.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "enchant", + }, + [70] = { + ["id"] = "enchant.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "enchant", + }, + [71] = { + ["id"] = "enchant.stat_2954116742|34473", + ["text"] = "Allocates Spaghettification", + ["type"] = "enchant", + }, + [72] = { + ["id"] = "enchant.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "enchant", + }, + [73] = { + ["id"] = "enchant.stat_9187492", + ["text"] = "# to Level of all Melee Skills", + ["type"] = "enchant", + }, + [74] = { + ["id"] = "enchant.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "enchant", + }, + [75] = { + ["id"] = "enchant.stat_2954116742|57388", + ["text"] = "Allocates Overwhelming Strike", + ["type"] = "enchant", + }, + [76] = { + ["id"] = "enchant.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "enchant", + }, + [77] = { + ["id"] = "enchant.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", + ["type"] = "enchant", + }, + [78] = { + ["id"] = "enchant.stat_2954116742|38535", + ["text"] = "Allocates Stormcharged", + ["type"] = "enchant", + }, + [79] = { + ["id"] = "enchant.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "enchant", + }, + [80] = { + ["id"] = "enchant.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "enchant", + }, + [81] = { + ["id"] = "enchant.stat_2954116742|42177", + ["text"] = "Allocates Blurred Motion", + ["type"] = "enchant", + }, + [82] = { + ["id"] = "enchant.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "enchant", + }, + [83] = { + ["id"] = "enchant.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "enchant", + }, + [84] = { + ["id"] = "enchant.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "enchant", + }, + [85] = { + ["id"] = "enchant.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "enchant", + }, + [86] = { + ["id"] = "enchant.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "enchant", + }, + [87] = { + ["id"] = "enchant.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", + ["type"] = "enchant", + }, + [88] = { + ["id"] = "enchant.stat_185580205", + ["text"] = "Charms gain # charge per Second", + ["type"] = "enchant", + }, + [89] = { + ["id"] = "enchant.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", + ["type"] = "enchant", + }, + [90] = { + ["id"] = "enchant.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "enchant", + }, + [91] = { + ["id"] = "enchant.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "enchant", + }, + [92] = { + ["id"] = "enchant.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "enchant", + }, + [93] = { + ["id"] = "enchant.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "enchant", + }, + [94] = { + ["id"] = "enchant.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "enchant", + }, + [95] = { + ["id"] = "enchant.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "enchant", + }, + [96] = { + ["id"] = "enchant.stat_2954116742|116", + ["text"] = "Allocates Insightfulness", + ["type"] = "enchant", + }, + [97] = { + ["id"] = "enchant.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "enchant", + }, + [98] = { + ["id"] = "enchant.stat_2954116742|44566", + ["text"] = "Allocates Lightning Rod", + ["type"] = "enchant", + }, + [99] = { + ["id"] = "enchant.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "enchant", + }, + [100] = { + ["id"] = "enchant.stat_2954116742|34300", + ["text"] = "Allocates Conservative Casting", + ["type"] = "enchant", + }, + [101] = { + ["id"] = "enchant.stat_2954116742|32301", + ["text"] = "Allocates Frazzled", + ["type"] = "enchant", + }, + [102] = { + ["id"] = "enchant.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "enchant", + }, + [103] = { + ["id"] = "enchant.stat_2954116742|4534", + ["text"] = "Allocates Piercing Shot", + ["type"] = "enchant", + }, + [104] = { + ["id"] = "enchant.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", + ["type"] = "enchant", + }, + [105] = { + ["id"] = "enchant.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "enchant", + }, + [106] = { + ["id"] = "enchant.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "enchant", + }, + [107] = { + ["id"] = "enchant.stat_2954116742|27303", + ["text"] = "Allocates Vulgar Methods", + ["type"] = "enchant", + }, + [108] = { + ["id"] = "enchant.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "enchant", + }, + [109] = { + ["id"] = "enchant.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "enchant", + }, + [110] = { + ["id"] = "enchant.stat_480796730", + ["text"] = "#% to maximum Block chance", + ["type"] = "enchant", + }, + [111] = { + ["id"] = "enchant.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "enchant", + }, + [112] = { + ["id"] = "enchant.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "enchant", + }, + [113] = { + ["id"] = "enchant.stat_2954116742|55193", + ["text"] = "Allocates Subterfuge Mask", + ["type"] = "enchant", + }, + [114] = { + ["id"] = "enchant.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "enchant", + }, + [115] = { + ["id"] = "enchant.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "enchant", + }, + [116] = { + ["id"] = "enchant.stat_2954116742|11826", + ["text"] = "Allocates Heavy Ammunition", + ["type"] = "enchant", + }, + [117] = { + ["id"] = "enchant.stat_2954116742|28975", + ["text"] = "Allocates Pure Power", + ["type"] = "enchant", + }, + [118] = { + ["id"] = "enchant.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", + ["type"] = "enchant", + }, + [119] = { + ["id"] = "enchant.stat_2954116742|33099", + ["text"] = "Allocates Hunter's Talisman", + ["type"] = "enchant", + }, + [120] = { + ["id"] = "enchant.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "enchant", + }, + [121] = { + ["id"] = "enchant.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "enchant", + }, + [122] = { + ["id"] = "enchant.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", + ["type"] = "enchant", + }, + [123] = { + ["id"] = "enchant.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "enchant", + }, + [124] = { + ["id"] = "enchant.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", + ["type"] = "enchant", + }, + [125] = { + ["id"] = "enchant.stat_2954116742|37266", + ["text"] = "Allocates Nourishing Ally", + ["type"] = "enchant", + }, + [126] = { + ["id"] = "enchant.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", + ["type"] = "enchant", + }, + [127] = { + ["id"] = "enchant.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "enchant", + }, + [128] = { + ["id"] = "enchant.stat_2954116742|50562", + ["text"] = "Allocates Barbaric Strength", + ["type"] = "enchant", + }, + [129] = { + ["id"] = "enchant.stat_2954116742|4031", + ["text"] = "Allocates Icebreaker", + ["type"] = "enchant", + }, + [130] = { + ["id"] = "enchant.stat_2954116742|61703", + ["text"] = "Allocates Sharpened Claw", + ["type"] = "enchant", + }, + [131] = { + ["id"] = "enchant.stat_2954116742|15829", + ["text"] = "Allocates Siphon", + ["type"] = "enchant", + }, + [132] = { + ["id"] = "enchant.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "enchant", + }, + [133] = { + ["id"] = "enchant.stat_2954116742|65160", + ["text"] = "Allocates Titanic", + ["type"] = "enchant", + }, + [134] = { + ["id"] = "enchant.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "enchant", + }, + [135] = { + ["id"] = "enchant.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "enchant", + }, + [136] = { + ["id"] = "enchant.stat_2954116742|5728", + ["text"] = "Allocates Ancient Aegis", + ["type"] = "enchant", + }, + [137] = { + ["id"] = "enchant.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "enchant", + }, + [138] = { + ["id"] = "enchant.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "enchant", + }, + [139] = { + ["id"] = "enchant.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "enchant", + }, + [140] = { + ["id"] = "enchant.stat_2954116742|64851", + ["text"] = "Allocates Flashy Parrying", + ["type"] = "enchant", + }, + [141] = { + ["id"] = "enchant.stat_2954116742|24120", + ["text"] = "Allocates Mental Toughness", + ["type"] = "enchant", + }, + [142] = { + ["id"] = "enchant.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "enchant", + }, + [143] = { + ["id"] = "enchant.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "enchant", + }, + [144] = { + ["id"] = "enchant.stat_2954116742|26291", + ["text"] = "Allocates Electrifying Nature", + ["type"] = "enchant", + }, + [145] = { + ["id"] = "enchant.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", + ["type"] = "enchant", + }, + [146] = { + ["id"] = "enchant.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + [147] = { + ["id"] = "enchant.stat_2954116742|45599", + ["text"] = "Allocates Lay Siege", + ["type"] = "enchant", + }, + [148] = { + ["id"] = "enchant.stat_2954116742|23227", + ["text"] = "Allocates Initiative", + ["type"] = "enchant", + }, + [149] = { + ["id"] = "enchant.stat_2954116742|56453", + ["text"] = "Allocates Killer Instinct", + ["type"] = "enchant", + }, + [150] = { + ["id"] = "enchant.stat_2954116742|7809", + ["text"] = "Allocates Wild Storm", + ["type"] = "enchant", + }, + [151] = { + ["id"] = "enchant.stat_2954116742|21380", + ["text"] = "Allocates Preemptive Strike", + ["type"] = "enchant", + }, + [152] = { + ["id"] = "enchant.stat_4283407333", + ["text"] = "# to Level of all Skills", + ["type"] = "enchant", + }, + [153] = { + ["id"] = "enchant.stat_2954116742|22864", + ["text"] = "Allocates Tainted Strike", + ["type"] = "enchant", + }, + [154] = { + ["id"] = "enchant.stat_2954116742|59720", + ["text"] = "Allocates Beastial Skin", + ["type"] = "enchant", + }, + [155] = { + ["id"] = "enchant.stat_2954116742|31172", + ["text"] = "Allocates Falcon Technique", + ["type"] = "enchant", + }, + [156] = { + ["id"] = "enchant.stat_2954116742|43082", + ["text"] = "Allocates Acceleration", + ["type"] = "enchant", + }, + [157] = { + ["id"] = "enchant.stat_2954116742|9736", + ["text"] = "Allocates Insulated Treads", + ["type"] = "enchant", + }, + [158] = { + ["id"] = "enchant.stat_2954116742|62230", + ["text"] = "Allocates Patient Barrier", + ["type"] = "enchant", + }, + [159] = { + ["id"] = "enchant.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "enchant", + }, + [160] = { + ["id"] = "enchant.stat_2954116742|64543", + ["text"] = "Allocates Unbound Forces", + ["type"] = "enchant", + }, + [161] = { + ["id"] = "enchant.stat_2954116742|57204", + ["text"] = "Allocates Critical Exploit", + ["type"] = "enchant", + }, + [162] = { + ["id"] = "enchant.stat_2954116742|36085", + ["text"] = "Allocates Serrated Edges", + ["type"] = "enchant", + }, + [163] = { + ["id"] = "enchant.stat_2954116742|40166", + ["text"] = "Allocates Deep Trance", + ["type"] = "enchant", + }, + [164] = { + ["id"] = "enchant.stat_2954116742|44917", + ["text"] = "Allocates Self Mortification", + ["type"] = "enchant", + }, + [165] = { + ["id"] = "enchant.stat_2954116742|8827", + ["text"] = "Allocates Fast Metabolism", + ["type"] = "enchant", + }, + [166] = { + ["id"] = "enchant.stat_2954116742|29527", + ["text"] = "Allocates First Approach", + ["type"] = "enchant", + }, + [167] = { + ["id"] = "enchant.stat_2954116742|42077", + ["text"] = "Allocates Essence Infusion", + ["type"] = "enchant", + }, + [168] = { + ["id"] = "enchant.stat_2954116742|40480", + ["text"] = "Allocates Harmonic Generator", + ["type"] = "enchant", + }, + [169] = { + ["id"] = "enchant.stat_2954116742|45612", + ["text"] = "Allocates Defensive Reflexes", + ["type"] = "enchant", + }, + [170] = { + ["id"] = "enchant.stat_2954116742|63074", + ["text"] = "Allocates Dark Entries", + ["type"] = "enchant", + }, + [171] = { + ["id"] = "enchant.stat_2954116742|32354", + ["text"] = "Allocates Defiance", + ["type"] = "enchant", + }, + [172] = { + ["id"] = "enchant.stat_2954116742|15374", + ["text"] = "Allocates Hale Heart", + ["type"] = "enchant", + }, + [173] = { + ["id"] = "enchant.stat_2954116742|32071", + ["text"] = "Allocates Primal Growth", + ["type"] = "enchant", + }, + [174] = { + ["id"] = "enchant.stat_2954116742|58016", + ["text"] = "Allocates All Natural", + ["type"] = "enchant", + }, + [175] = { + ["id"] = "enchant.stat_2954116742|56776", + ["text"] = "Allocates Cooked", + ["type"] = "enchant", + }, + [176] = { + ["id"] = "enchant.stat_2954116742|19044", + ["text"] = "Allocates Arcane Intensity", + ["type"] = "enchant", + }, + [177] = { + ["id"] = "enchant.stat_2954116742|18496", + ["text"] = "Allocates Lasting Trauma", + ["type"] = "enchant", + }, + [178] = { + ["id"] = "enchant.stat_2954116742|58939", + ["text"] = "Allocates Dispatch Foes", + ["type"] = "enchant", + }, + [179] = { + ["id"] = "enchant.stat_2954116742|4295", + ["text"] = "Allocates Adverse Growth", + ["type"] = "enchant", + }, + [180] = { + ["id"] = "enchant.stat_2954116742|16618", + ["text"] = "Allocates Jack of all Trades", + ["type"] = "enchant", + }, + [181] = { + ["id"] = "enchant.stat_2954116742|11578", + ["text"] = "Allocates Spreading Shocks", + ["type"] = "enchant", + }, + [182] = { + ["id"] = "enchant.stat_2954116742|51606", + ["text"] = "Allocates Freedom of Movement", + ["type"] = "enchant", + }, + [183] = { + ["id"] = "enchant.stat_2954116742|8531", + ["text"] = "Allocates Leaping Ambush", + ["type"] = "enchant", + }, + [184] = { + ["id"] = "enchant.stat_2954116742|372", + ["text"] = "Allocates Heatproof", + ["type"] = "enchant", + }, + [185] = { + ["id"] = "enchant.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", + ["type"] = "enchant", + }, + [186] = { + ["id"] = "enchant.stat_2954116742|48006", + ["text"] = "Allocates Devastation", + ["type"] = "enchant", + }, + [187] = { + ["id"] = "enchant.stat_2954116742|10681", + ["text"] = "Allocates Defensive Stance", + ["type"] = "enchant", + }, + [188] = { + ["id"] = "enchant.stat_2954116742|57047", + ["text"] = "Allocates Polymathy", + ["type"] = "enchant", + }, + [189] = { + ["id"] = "enchant.stat_2954116742|53853", + ["text"] = "Allocates Backup Plan", + ["type"] = "enchant", + }, + [190] = { + ["id"] = "enchant.stat_2954116742|16256", + ["text"] = "Allocates Ether Flow", + ["type"] = "enchant", + }, + [191] = { + ["id"] = "enchant.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", + ["type"] = "enchant", + }, + [192] = { + ["id"] = "enchant.stat_2954116742|17955", + ["text"] = "Allocates Careful Consideration", + ["type"] = "enchant", + }, + [193] = { + ["id"] = "enchant.stat_2954116742|61601", + ["text"] = "Allocates True Strike", + ["type"] = "enchant", + }, + [194] = { + ["id"] = "enchant.stat_2954116742|38888", + ["text"] = "Allocates Unerring Impact", + ["type"] = "enchant", + }, + [195] = { + ["id"] = "enchant.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "enchant", + }, + [196] = { + ["id"] = "enchant.stat_2954116742|3215", + ["text"] = "Allocates Melding", + ["type"] = "enchant", + }, + [197] = { + ["id"] = "enchant.stat_2954116742|50687", + ["text"] = "Allocates Coursing Energy", + ["type"] = "enchant", + }, + [198] = { + ["id"] = "enchant.stat_2954116742|25482", + ["text"] = "Allocates Beef", + ["type"] = "enchant", + }, + [199] = { + ["id"] = "enchant.stat_2954116742|26107", + ["text"] = "Allocates Kite Runner", + ["type"] = "enchant", + }, + [200] = { + ["id"] = "enchant.stat_2954116742|50795", + ["text"] = "Allocates Careful Aim", + ["type"] = "enchant", + }, + [201] = { + ["id"] = "enchant.stat_2954116742|49618", + ["text"] = "Allocates Deadly Flourish", + ["type"] = "enchant", + }, + [202] = { + ["id"] = "enchant.stat_2954116742|42302", + ["text"] = "Allocates Split Shot", + ["type"] = "enchant", + }, + [203] = { + ["id"] = "enchant.stat_2954116742|50062", + ["text"] = "Allocates Barrier of Venarius", + ["type"] = "enchant", + }, + [204] = { + ["id"] = "enchant.stat_2954116742|46060", + ["text"] = "Allocates Voracious", + ["type"] = "enchant", + }, + [205] = { + ["id"] = "enchant.stat_2954116742|33059", + ["text"] = "Allocates Back in Action", + ["type"] = "enchant", + }, + [206] = { + ["id"] = "enchant.stat_2954116742|46224", + ["text"] = "Allocates Arcane Alchemy", + ["type"] = "enchant", + }, + [207] = { + ["id"] = "enchant.stat_2954116742|57110", + ["text"] = "Allocates Infused Flesh", + ["type"] = "enchant", + }, + [208] = { + ["id"] = "enchant.stat_2954116742|53150", + ["text"] = "Allocates Sharp Sight", + ["type"] = "enchant", + }, + [209] = { + ["id"] = "enchant.stat_2954116742|2511", + ["text"] = "Allocates Sundering", + ["type"] = "enchant", + }, + [210] = { + ["id"] = "enchant.stat_2954116742|22967", + ["text"] = "Allocates Vigilance", + ["type"] = "enchant", + }, + [211] = { + ["id"] = "enchant.stat_2954116742|9472", + ["text"] = "Allocates Catapult", + ["type"] = "enchant", + }, + [212] = { + ["id"] = "enchant.stat_2954116742|65193", + ["text"] = "Allocates Viciousness", + ["type"] = "enchant", + }, + [213] = { + ["id"] = "enchant.stat_2954116742|1546", + ["text"] = "Allocates Spiral into Depression", + ["type"] = "enchant", + }, + [214] = { + ["id"] = "enchant.stat_2954116742|65265", + ["text"] = "Allocates Swift Interruption", + ["type"] = "enchant", + }, + [215] = { + ["id"] = "enchant.stat_2954116742|63585", + ["text"] = "Allocates Thunderstruck", + ["type"] = "enchant", + }, + [216] = { + ["id"] = "enchant.stat_2954116742|15617", + ["text"] = "Allocates Heavy Drinker", + ["type"] = "enchant", + }, + [217] = { + ["id"] = "enchant.stat_2954116742|4716", + ["text"] = "Allocates Afterimage", + ["type"] = "enchant", + }, + [218] = { + ["id"] = "enchant.stat_2954116742|42354", + ["text"] = "Allocates Blinding Flash", + ["type"] = "enchant", + }, + [219] = { + ["id"] = "enchant.stat_2954116742|55060", + ["text"] = "Allocates Shrapnel", + ["type"] = "enchant", + }, + [220] = { + ["id"] = "enchant.stat_2954116742|48565", + ["text"] = "Allocates Bringer of Order", + ["type"] = "enchant", + }, + [221] = { + ["id"] = "enchant.stat_2954116742|27108", + ["text"] = "Allocates Mass Hysteria", + ["type"] = "enchant", + }, + [222] = { + ["id"] = "enchant.stat_2954116742|27388", + ["text"] = "Allocates Aspiring Genius", + ["type"] = "enchant", + }, + [223] = { + ["id"] = "enchant.stat_2954116742|25619", + ["text"] = "Allocates Sand in the Eyes", + ["type"] = "enchant", + }, + [224] = { + ["id"] = "enchant.stat_2954116742|34340", + ["text"] = "Allocates Mass Rejuvenation", + ["type"] = "enchant", + }, + [225] = { + ["id"] = "enchant.stat_2954116742|9908", + ["text"] = "Allocates Price of Freedom", + ["type"] = "enchant", + }, + [226] = { + ["id"] = "enchant.stat_2954116742|37806", + ["text"] = "Allocates Branching Bolts", + ["type"] = "enchant", + }, + [227] = { + ["id"] = "enchant.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", + ["type"] = "enchant", + }, + [228] = { + ["id"] = "enchant.stat_2954116742|60269", + ["text"] = "Allocates Roil", + ["type"] = "enchant", + }, + [229] = { + ["id"] = "enchant.stat_2954116742|16466", + ["text"] = "Allocates Mental Alacrity", + ["type"] = "enchant", + }, + [230] = { + ["id"] = "enchant.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", + ["type"] = "enchant", + }, + [231] = { + ["id"] = "enchant.stat_2954116742|58397", + ["text"] = "Allocates Proficiency", + ["type"] = "enchant", + }, + [232] = { + ["id"] = "enchant.stat_2954116742|19955", + ["text"] = "Allocates Endless Blizzard", + ["type"] = "enchant", + }, + [233] = { + ["id"] = "enchant.stat_2954116742|8660", + ["text"] = "Allocates Reverberation", + ["type"] = "enchant", + }, + [234] = { + ["id"] = "enchant.stat_2954116742|34324", + ["text"] = "Allocates Spectral Ward", + ["type"] = "enchant", + }, + [235] = { + ["id"] = "enchant.stat_2954116742|8810", + ["text"] = "Allocates Multitasking", + ["type"] = "enchant", + }, + [236] = { + ["id"] = "enchant.stat_2954116742|41512", + ["text"] = "Allocates Heavy Weaponry", + ["type"] = "enchant", + }, + [237] = { + ["id"] = "enchant.stat_2954116742|53294", + ["text"] = "Allocates Burn Away", + ["type"] = "enchant", + }, + [238] = { + ["id"] = "enchant.stat_2954116742|46197", + ["text"] = "Allocates Careful Assassin", + ["type"] = "enchant", + }, + [239] = { + ["id"] = "enchant.stat_2954116742|30341", + ["text"] = "Allocates Master Fletching", + ["type"] = "enchant", + }, + [240] = { + ["id"] = "enchant.stat_2954116742|25513", + ["text"] = "Allocates Overwhelm", + ["type"] = "enchant", + }, + [241] = { + ["id"] = "enchant.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", + ["type"] = "enchant", + }, + [242] = { + ["id"] = "enchant.stat_2954116742|38972", + ["text"] = "Allocates Restless Dead", + ["type"] = "enchant", + }, + [243] = { + ["id"] = "enchant.stat_2954116742|10998", + ["text"] = "Allocates Strong Chin", + ["type"] = "enchant", + }, + [244] = { + ["id"] = "enchant.stat_2954116742|4959", + ["text"] = "Allocates Heavy Frost", + ["type"] = "enchant", + }, + [245] = { + ["id"] = "enchant.stat_2954116742|19156", + ["text"] = "Allocates Immaterial", + ["type"] = "enchant", + }, + [246] = { + ["id"] = "enchant.stat_2954116742|53030", + ["text"] = "Allocates Immolation", + ["type"] = "enchant", + }, + [247] = { + ["id"] = "enchant.stat_2954116742|17600", + ["text"] = "Allocates Thirsting Ally", + ["type"] = "enchant", + }, + [248] = { + ["id"] = "enchant.stat_2954116742|37514", + ["text"] = "Allocates Whirling Assault", + ["type"] = "enchant", + }, + [249] = { + ["id"] = "enchant.stat_2954116742|46972", + ["text"] = "Allocates Arcane Mixtures", + ["type"] = "enchant", + }, + [250] = { + ["id"] = "enchant.stat_2954116742|40213", + ["text"] = "Allocates Taste for Blood", + ["type"] = "enchant", + }, + [251] = { + ["id"] = "enchant.stat_2954116742|28329", + ["text"] = "Allocates Pressure Points", + ["type"] = "enchant", + }, + [252] = { + ["id"] = "enchant.stat_2954116742|15644", + ["text"] = "Allocates Shedding Skin", + ["type"] = "enchant", + }, + [253] = { + ["id"] = "enchant.stat_2954116742|55149", + ["text"] = "Allocates Pure Chaos", + ["type"] = "enchant", + }, + [254] = { + ["id"] = "enchant.stat_2954116742|18505", + ["text"] = "Allocates Crushing Verdict", + ["type"] = "enchant", + }, + [255] = { + ["id"] = "enchant.stat_2954116742|17882", + ["text"] = "Allocates Volatile Grenades", + ["type"] = "enchant", + }, + [256] = { + ["id"] = "enchant.stat_2954116742|4673", + ["text"] = "Allocates Hulking Smash", + ["type"] = "enchant", + }, + [257] = { + ["id"] = "enchant.stat_2954116742|20916", + ["text"] = "Allocates Blinding Strike", + ["type"] = "enchant", + }, + [258] = { + ["id"] = "enchant.stat_2954116742|21206", + ["text"] = "Allocates Explosive Impact", + ["type"] = "enchant", + }, + [259] = { + ["id"] = "enchant.stat_2954116742|4709", + ["text"] = "Allocates Near Sighted", + ["type"] = "enchant", + }, + [260] = { + ["id"] = "enchant.stat_2954116742|38479", + ["text"] = "Allocates Close Confines", + ["type"] = "enchant", + }, + [261] = { + ["id"] = "enchant.stat_2954116742|52392", + ["text"] = "Allocates Singular Purpose", + ["type"] = "enchant", + }, + [262] = { + ["id"] = "enchant.stat_2954116742|54998", + ["text"] = "Allocates Protraction", + ["type"] = "enchant", + }, + [263] = { + ["id"] = "enchant.stat_2954116742|5284", + ["text"] = "Allocates Shredding Force", + ["type"] = "enchant", + }, + [264] = { + ["id"] = "enchant.stat_2954116742|10265", + ["text"] = "Allocates Javelin", + ["type"] = "enchant", + }, + [265] = { + ["id"] = "enchant.stat_2954116742|60083", + ["text"] = "Allocates Pin and Run", + ["type"] = "enchant", + }, + [266] = { + ["id"] = "enchant.stat_2954116742|37244", + ["text"] = "Allocates Shield Expertise", + ["type"] = "enchant", + }, + [267] = { + ["id"] = "enchant.stat_2954116742|17340", + ["text"] = "Allocates Adrenaline Rush", + ["type"] = "enchant", + }, + [268] = { + ["id"] = "enchant.stat_2954116742|53823", + ["text"] = "Allocates Towering Shield", + ["type"] = "enchant", + }, + [269] = { + ["id"] = "enchant.stat_2954116742|18397", + ["text"] = "Allocates Savoured Blood", + ["type"] = "enchant", + }, + [270] = { + ["id"] = "enchant.stat_2954116742|24753", + ["text"] = "Allocates Determined Precision", + ["type"] = "enchant", + }, + [271] = { + ["id"] = "enchant.stat_2954116742|17260", + ["text"] = "Allocates Piercing Claw", + ["type"] = "enchant", + }, + [272] = { + ["id"] = "enchant.stat_2954116742|2394", + ["text"] = "Allocates Blade Flurry", + ["type"] = "enchant", + }, + [273] = { + ["id"] = "enchant.stat_2954116742|10873", + ["text"] = "Allocates Bestial Rage", + ["type"] = "enchant", + }, + [274] = { + ["id"] = "enchant.stat_2954116742|20677", + ["text"] = "Allocates For the Jugular", + ["type"] = "enchant", + }, + [275] = { + ["id"] = "enchant.stat_2954116742|40270", + ["text"] = "Allocates Frenetic", + ["type"] = "enchant", + }, + [276] = { + ["id"] = "enchant.stat_2954116742|24483", + ["text"] = "Allocates Direct Approach", + ["type"] = "enchant", + }, + [277] = { + ["id"] = "enchant.stat_2954116742|65023", + ["text"] = "Allocates Impenetrable Shell", + ["type"] = "enchant", + }, + [278] = { + ["id"] = "enchant.stat_2954116742|11838", + ["text"] = "Allocates Dreamcatcher", + ["type"] = "enchant", + }, + [279] = { + ["id"] = "enchant.stat_2954116742|35369", + ["text"] = "Allocates Investing Energies", + ["type"] = "enchant", + }, + [280] = { + ["id"] = "enchant.stat_2954116742|31326", + ["text"] = "Allocates Slow Burn", + ["type"] = "enchant", + }, + [281] = { + ["id"] = "enchant.stat_2954116742|1087", + ["text"] = "Allocates Shockwaves", + ["type"] = "enchant", + }, + [282] = { + ["id"] = "enchant.stat_2954116742|7668", + ["text"] = "Allocates Internal Bleeding", + ["type"] = "enchant", + }, + [283] = { + ["id"] = "enchant.stat_2954116742|23764", + ["text"] = "Allocates Alternating Current", + ["type"] = "enchant", + }, + [284] = { + ["id"] = "enchant.stat_2954116742|53935", + ["text"] = "Allocates Briny Carapace", + ["type"] = "enchant", + }, + [285] = { + ["id"] = "enchant.stat_2954116742|38398", + ["text"] = "Allocates Apocalypse", + ["type"] = "enchant", + }, + [286] = { + ["id"] = "enchant.stat_2954116742|7651", + ["text"] = "Allocates Pierce the Heart", + ["type"] = "enchant", + }, + [287] = { + ["id"] = "enchant.stat_2954116742|7163", + ["text"] = "Allocates Stimulants", + ["type"] = "enchant", + }, + [288] = { + ["id"] = "enchant.stat_2954116742|13542", + ["text"] = "Allocates Loose Flesh", + ["type"] = "enchant", + }, + [289] = { + ["id"] = "enchant.stat_2954116742|12611", + ["text"] = "Allocates Harness the Elements", + ["type"] = "enchant", + }, + [290] = { + ["id"] = "enchant.stat_2954116742|24240", + ["text"] = "Allocates Time Manipulation", + ["type"] = "enchant", + }, + [291] = { + ["id"] = "enchant.stat_2954116742|48974", + ["text"] = "Allocates Altered Brain Chemistry", + ["type"] = "enchant", + }, + [292] = { + ["id"] = "enchant.stat_2954116742|17330", + ["text"] = "Allocates Perforation", + ["type"] = "enchant", + }, + [293] = { + ["id"] = "enchant.stat_2954116742|14945", + ["text"] = "Allocates Growing Swarm", + ["type"] = "enchant", + }, + [294] = { + ["id"] = "enchant.stat_2954116742|16626", + ["text"] = "Allocates Impact Area", + ["type"] = "enchant", + }, + [295] = { + ["id"] = "enchant.stat_2954116742|2021", + ["text"] = "Allocates Wellspring", + ["type"] = "enchant", + }, + [296] = { + ["id"] = "enchant.stat_2954116742|39083", + ["text"] = "Allocates Blood Rush", + ["type"] = "enchant", + }, + [297] = { + ["id"] = "enchant.stat_2954116742|37872", + ["text"] = "Allocates Presence Present", + ["type"] = "enchant", + }, + [298] = { + ["id"] = "enchant.stat_2954116742|55568", + ["text"] = "Allocates Forthcoming", + ["type"] = "enchant", + }, + [299] = { + ["id"] = "enchant.stat_2954116742|34308", + ["text"] = "Allocates Personal Touch", + ["type"] = "enchant", + }, + [300] = { + ["id"] = "enchant.stat_2954116742|49550", + ["text"] = "Allocates Prolonged Fury", + ["type"] = "enchant", + }, + [301] = { + ["id"] = "enchant.stat_2954116742|6133", + ["text"] = "Allocates Core of the Guardian", + ["type"] = "enchant", + }, + [302] = { + ["id"] = "enchant.stat_2954116742|35855", + ["text"] = "Allocates Fortifying Blood", + ["type"] = "enchant", + }, + [303] = { + ["id"] = "enchant.stat_2954116742|13738", + ["text"] = "Allocates Lightning Quick", + ["type"] = "enchant", + }, + [304] = { + ["id"] = "enchant.stat_2954116742|5580", + ["text"] = "Allocates Watchtowers", + ["type"] = "enchant", + }, + [305] = { + ["id"] = "enchant.stat_2954116742|37742", + ["text"] = "Allocates Manifold Method", + ["type"] = "enchant", + }, + [306] = { + ["id"] = "enchant.stat_2954116742|57471", + ["text"] = "Allocates Hunker Down", + ["type"] = "enchant", + }, + [307] = { + ["id"] = "enchant.stat_2954116742|39369", + ["text"] = "Allocates Struck Through", + ["type"] = "enchant", + }, + [308] = { + ["id"] = "enchant.stat_2954116742|48774", + ["text"] = "Allocates Taut Flesh", + ["type"] = "enchant", + }, + [309] = { + ["id"] = "enchant.stat_2954116742|27950", + ["text"] = "Allocates Polished Iron", + ["type"] = "enchant", + }, + [310] = { + ["id"] = "enchant.stat_2954116742|8791", + ["text"] = "Allocates Sturdy Ally", + ["type"] = "enchant", + }, + [311] = { + ["id"] = "enchant.stat_2954116742|5663", + ["text"] = "Allocates Endurance", + ["type"] = "enchant", + }, + [312] = { + ["id"] = "enchant.stat_2954116742|38053", + ["text"] = "Allocates Deafening Cries", + ["type"] = "enchant", + }, + [313] = { + ["id"] = "enchant.stat_2954116742|26518", + ["text"] = "Allocates Cold Nature", + ["type"] = "enchant", + }, + [314] = { + ["id"] = "enchant.stat_2954116742|3921", + ["text"] = "Allocates Fate Finding", + ["type"] = "enchant", + }, + [315] = { + ["id"] = "enchant.stat_2954116742|39990", + ["text"] = "Allocates Chronomancy", + ["type"] = "enchant", + }, + [316] = { + ["id"] = "enchant.stat_2954116742|27687", + ["text"] = "Allocates Greatest Defence", + ["type"] = "enchant", + }, + [317] = { + ["id"] = "enchant.stat_2954116742|51105", + ["text"] = "Allocates Spirit Bond", + ["type"] = "enchant", + }, + [318] = { + ["id"] = "enchant.stat_2954116742|47418", + ["text"] = "Allocates Warding Potions", + ["type"] = "enchant", + }, + [319] = { + ["id"] = "enchant.stat_2954116742|57805", + ["text"] = "Allocates Clear Space", + ["type"] = "enchant", + }, + [320] = { + ["id"] = "enchant.stat_2954116742|46696", + ["text"] = "Allocates Impair", + ["type"] = "enchant", + }, + [321] = { + ["id"] = "enchant.stat_2954116742|25620", + ["text"] = "Allocates Meat Recycling", + ["type"] = "enchant", + }, + [322] = { + ["id"] = "enchant.stat_2954116742|38895", + ["text"] = "Allocates Crystal Elixir", + ["type"] = "enchant", + }, + [323] = { + ["id"] = "enchant.stat_2954116742|6229", + ["text"] = "Allocates Push the Advantage", + ["type"] = "enchant", + }, + [324] = { + ["id"] = "enchant.stat_2954116742|20032", + ["text"] = "Allocates Erraticism", + ["type"] = "enchant", + }, + [325] = { + ["id"] = "enchant.stat_2954116742|57379", + ["text"] = "Allocates In Your Face", + ["type"] = "enchant", + }, + [326] = { + ["id"] = "enchant.stat_2954116742|4931", + ["text"] = "Allocates Dependable Ward", + ["type"] = "enchant", + }, + [327] = { + ["id"] = "enchant.stat_2954116742|51707", + ["text"] = "Allocates Enhanced Reflexes", + ["type"] = "enchant", + }, + [328] = { + ["id"] = "enchant.stat_2954116742|56997", + ["text"] = "Allocates Heavy Contact", + ["type"] = "enchant", + }, + [329] = { + ["id"] = "enchant.stat_2954116742|20388", + ["text"] = "Allocates Regenerative Flesh", + ["type"] = "enchant", + }, + [330] = { + ["id"] = "enchant.stat_2954116742|44330", + ["text"] = "Allocates Coated Arms", + ["type"] = "enchant", + }, + [331] = { + ["id"] = "enchant.stat_2954116742|10423", + ["text"] = "Allocates Exposed to the Inferno", + ["type"] = "enchant", + }, + [332] = { + ["id"] = "enchant.stat_2954116742|6514", + ["text"] = "Allocates Cacophony", + ["type"] = "enchant", + }, + [333] = { + ["id"] = "enchant.stat_2954116742|2138", + ["text"] = "Allocates Spiral into Insanity", + ["type"] = "enchant", + }, + [334] = { + ["id"] = "enchant.stat_2954116742|45488", + ["text"] = "Allocates Cross Strike", + ["type"] = "enchant", + }, + [335] = { + ["id"] = "enchant.stat_2954116742|6304", + ["text"] = "Allocates Stand Ground", + ["type"] = "enchant", + }, + [336] = { + ["id"] = "enchant.stat_2954116742|61444", + ["text"] = "Allocates Wasting Casts", + ["type"] = "enchant", + }, + [337] = { + ["id"] = "enchant.stat_2954116742|19722", + ["text"] = "Allocates Thin Ice", + ["type"] = "enchant", + }, + [338] = { + ["id"] = "enchant.stat_2954116742|5227", + ["text"] = "Allocates Escape Strategy", + ["type"] = "enchant", + }, + [339] = { + ["id"] = "enchant.stat_2954116742|55847", + ["text"] = "Allocates Ice Walls", + ["type"] = "enchant", + }, + [340] = { + ["id"] = "enchant.stat_2954116742|16816", + ["text"] = "Allocates Pinpoint Shot", + ["type"] = "enchant", + }, + [341] = { + ["id"] = "enchant.stat_2954116742|38614", + ["text"] = "Allocates Psychic Fragmentation", + ["type"] = "enchant", + }, + [342] = { + ["id"] = "enchant.stat_2954116742|10295", + ["text"] = "Allocates Overzealous", + ["type"] = "enchant", + }, + [343] = { + ["id"] = "enchant.stat_2954116742|19442", + ["text"] = "Allocates Prolonged Assault", + ["type"] = "enchant", + }, + [344] = { + ["id"] = "enchant.stat_2954116742|51820", + ["text"] = "Allocates Ancestral Conduits", + ["type"] = "enchant", + }, + [345] = { + ["id"] = "enchant.stat_2954116742|55", + ["text"] = "Allocates Fast Acting Toxins", + ["type"] = "enchant", + }, + [346] = { + ["id"] = "enchant.stat_2954116742|47363", + ["text"] = "Allocates Colossal Weapon", + ["type"] = "enchant", + }, + [347] = { + ["id"] = "enchant.stat_2954116742|29762", + ["text"] = "Allocates Guttural Roar", + ["type"] = "enchant", + }, + [348] = { + ["id"] = "enchant.stat_2954116742|45013", + ["text"] = "Allocates Finishing Blows", + ["type"] = "enchant", + }, + [349] = { + ["id"] = "enchant.stat_2954116742|4627", + ["text"] = "Allocates Climate Change", + ["type"] = "enchant", + }, + [350] = { + ["id"] = "enchant.stat_2954116742|49984", + ["text"] = "Allocates Spellblade", + ["type"] = "enchant", + }, + [351] = { + ["id"] = "enchant.stat_2954116742|11376", + ["text"] = "Allocates Necrotic Touch", + ["type"] = "enchant", + }, + [352] = { + ["id"] = "enchant.stat_2954116742|63451", + ["text"] = "Allocates Cranial Impact", + ["type"] = "enchant", + }, + [353] = { + ["id"] = "enchant.stat_2954116742|26339", + ["text"] = "Allocates Ancestral Artifice", + ["type"] = "enchant", + }, + [354] = { + ["id"] = "enchant.stat_2954116742|7302", + ["text"] = "Allocates Echoing Pulse", + ["type"] = "enchant", + }, + [355] = { + ["id"] = "enchant.stat_2954116742|8483", + ["text"] = "Allocates Ruin", + ["type"] = "enchant", + }, + [356] = { + ["id"] = "enchant.stat_2954116742|28963", + ["text"] = "Allocates Chakra of Rhythm", + ["type"] = "enchant", + }, + [357] = { + ["id"] = "enchant.stat_2954116742|49661", + ["text"] = "Allocates Perfectly Placed Knife", + ["type"] = "enchant", + }, + [358] = { + ["id"] = "enchant.stat_2954116742|10772", + ["text"] = "Allocates Bloodthirsty", + ["type"] = "enchant", + }, + [359] = { + ["id"] = "enchant.stat_2954116742|43939", + ["text"] = "Allocates Melting Flames", + ["type"] = "enchant", + }, + [360] = { + ["id"] = "enchant.stat_2954116742|54911", + ["text"] = "Allocates Firestarter", + ["type"] = "enchant", + }, + [361] = { + ["id"] = "enchant.stat_2954116742|35849", + ["text"] = "Allocates Thickened Arteries", + ["type"] = "enchant", + }, + [362] = { + ["id"] = "enchant.stat_2954116742|28482", + ["text"] = "Allocates Total Incineration", + ["type"] = "enchant", + }, + [363] = { + ["id"] = "enchant.stat_2954116742|25711", + ["text"] = "Allocates Thrill of Battle", + ["type"] = "enchant", + }, + [364] = { + ["id"] = "enchant.stat_2954116742|21164", + ["text"] = "Allocates Fleshcrafting", + ["type"] = "enchant", + }, + [365] = { + ["id"] = "enchant.stat_2954116742|45632", + ["text"] = "Allocates Mind Eraser", + ["type"] = "enchant", + }, + [366] = { + ["id"] = "enchant.stat_2954116742|2999", + ["text"] = "Allocates Final Barrage", + ["type"] = "enchant", + }, + [367] = { + ["id"] = "enchant.stat_2954116742|1823", + ["text"] = "Allocates Illuminated Crown", + ["type"] = "enchant", + }, + [368] = { + ["id"] = "enchant.stat_2954116742|36507", + ["text"] = "Allocates Vile Mending", + ["type"] = "enchant", + }, + [369] = { + ["id"] = "enchant.stat_2954116742|7062", + ["text"] = "Allocates Reusable Ammunition", + ["type"] = "enchant", + }, + [370] = { + ["id"] = "enchant.stat_2954116742|58714", + ["text"] = "Allocates Grenadier", + ["type"] = "enchant", + }, + [371] = { + ["id"] = "enchant.stat_2954116742|33216", + ["text"] = "Allocates Deep Wounds", + ["type"] = "enchant", + }, + [372] = { + ["id"] = "enchant.stat_2954116742|62185", + ["text"] = "Allocates Rattled", + ["type"] = "enchant", + }, + [373] = { + ["id"] = "enchant.stat_2954116742|23940", + ["text"] = "Allocates Fortified Aegis", + ["type"] = "enchant", + }, + [374] = { + ["id"] = "enchant.stat_2954116742|51602", + ["text"] = "Allocates Unsight", + ["type"] = "enchant", + }, + [375] = { + ["id"] = "enchant.stat_2954116742|13724", + ["text"] = "Allocates Deadly Force", + ["type"] = "enchant", + }, + [376] = { + ["id"] = "enchant.stat_2954116742|61404", + ["text"] = "Allocates Equilibrium", + ["type"] = "enchant", + }, + [377] = { + ["id"] = "enchant.stat_2954116742|46024", + ["text"] = "Allocates Sigil of Lightning", + ["type"] = "enchant", + }, + [378] = { + ["id"] = "enchant.stat_2954116742|11526", + ["text"] = "Allocates Sniper", + ["type"] = "enchant", + }, + [379] = { + ["id"] = "enchant.stat_2954116742|33093", + ["text"] = "Allocates Effervescent", + ["type"] = "enchant", + }, + [380] = { + ["id"] = "enchant.stat_2954116742|56999", + ["text"] = "Allocates Locked On", + ["type"] = "enchant", + }, + [381] = { + ["id"] = "enchant.stat_2954116742|31175", + ["text"] = "Allocates Grip of Evil", + ["type"] = "enchant", + }, + [382] = { + ["id"] = "enchant.stat_2954116742|31925", + ["text"] = "Allocates Warding Fetish", + ["type"] = "enchant", + }, + [383] = { + ["id"] = "enchant.stat_2954116742|46692", + ["text"] = "Allocates Efficient Alchemy", + ["type"] = "enchant", + }, + [384] = { + ["id"] = "enchant.stat_2954116742|1352", + ["text"] = "Allocates Unbending", + ["type"] = "enchant", + }, + [385] = { + ["id"] = "enchant.stat_2954116742|49088", + ["text"] = "Allocates Splintering Force", + ["type"] = "enchant", + }, + [386] = { + ["id"] = "enchant.stat_2954116742|43090", + ["text"] = "Allocates Electrotherapy", + ["type"] = "enchant", + }, + [387] = { + ["id"] = "enchant.stat_2954116742|8904", + ["text"] = "Allocates Death from Afar", + ["type"] = "enchant", + }, + [388] = { + ["id"] = "enchant.stat_2954116742|51446", + ["text"] = "Allocates Leather Bound Gauntlets", + ["type"] = "enchant", + }, + [389] = { + ["id"] = "enchant.stat_2954116742|62609", + ["text"] = "Allocates Ancestral Unity", + ["type"] = "enchant", + }, + [390] = { + ["id"] = "enchant.stat_2954116742|7395", + ["text"] = "Allocates Retaliation", + ["type"] = "enchant", + }, + [391] = { + ["id"] = "enchant.stat_2954116742|3698", + ["text"] = "Allocates Spike Pit", + ["type"] = "enchant", + }, + [392] = { + ["id"] = "enchant.stat_2954116742|64240", + ["text"] = "Allocates Battle Fever", + ["type"] = "enchant", + }, + [393] = { + ["id"] = "enchant.stat_2954116742|63255", + ["text"] = "Allocates Savagery", + ["type"] = "enchant", + }, + [394] = { + ["id"] = "enchant.stat_2954116742|58426", + ["text"] = "Allocates Pocket Sand", + ["type"] = "enchant", + }, + [395] = { + ["id"] = "enchant.stat_2954116742|63830", + ["text"] = "Allocates Marked for Sickness", + ["type"] = "enchant", + }, + [396] = { + ["id"] = "enchant.stat_2954116742|18419", + ["text"] = "Allocates Ancestral Mending", + ["type"] = "enchant", + }, + [397] = { + ["id"] = "enchant.stat_2954116742|59541", + ["text"] = "Allocates Necrotised Flesh", + ["type"] = "enchant", + }, + [398] = { + ["id"] = "enchant.stat_2954116742|19236", + ["text"] = "Allocates Projectile Bulwark", + ["type"] = "enchant", + }, + [399] = { + ["id"] = "enchant.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", + ["type"] = "enchant", + }, + [400] = { + ["id"] = "enchant.stat_2954116742|36808", + ["text"] = "Allocates Spiked Shield", + ["type"] = "enchant", + }, + [401] = { + ["id"] = "enchant.stat_2954116742|43711", + ["text"] = "Allocates Thornhide", + ["type"] = "enchant", + }, + [402] = { + ["id"] = "enchant.stat_2954116742|38628", + ["text"] = "Allocates Escalating Toxins", + ["type"] = "enchant", + }, + [403] = { + ["id"] = "enchant.stat_2954116742|9227", + ["text"] = "Allocates Focused Thrust", + ["type"] = "enchant", + }, + [404] = { + ["id"] = "enchant.stat_2954116742|17229", + ["text"] = "Allocates Silent Guardian", + ["type"] = "enchant", + }, + [405] = { + ["id"] = "enchant.stat_2954116742|62887", + ["text"] = "Allocates Living Death", + ["type"] = "enchant", + }, + [406] = { + ["id"] = "enchant.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", + ["type"] = "enchant", + }, + [407] = { + ["id"] = "enchant.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", + ["type"] = "enchant", + }, + [408] = { + ["id"] = "enchant.stat_2954116742|10398", + ["text"] = "Allocates Sudden Escalation", + ["type"] = "enchant", + }, + [409] = { + ["id"] = "enchant.stat_2954116742|38342", + ["text"] = "Allocates Stupefy", + ["type"] = "enchant", + }, + [410] = { + ["id"] = "enchant.stat_2954116742|14324", + ["text"] = "Allocates Arcane Blossom", + ["type"] = "enchant", + }, + [411] = { + ["id"] = "enchant.stat_2954116742|2486", + ["text"] = "Allocates Stars Aligned", + ["type"] = "enchant", + }, + [412] = { + ["id"] = "enchant.stat_2954116742|30523", + ["text"] = "Allocates Dead can Dance", + ["type"] = "enchant", + }, + [413] = { + ["id"] = "enchant.stat_2954116742|10602", + ["text"] = "Allocates Reaving", + ["type"] = "enchant", + }, + [414] = { + ["id"] = "enchant.stat_2954116742|27491", + ["text"] = "Allocates Heavy Buffer", + ["type"] = "enchant", + }, + [415] = { + ["id"] = "enchant.stat_2954116742|31364", + ["text"] = "Allocates Primal Protection", + ["type"] = "enchant", + }, + [416] = { + ["id"] = "enchant.stat_2954116742|25971", + ["text"] = "Allocates Tenfold Attacks", + ["type"] = "enchant", + }, + [417] = { + ["id"] = "enchant.stat_2954116742|13980", + ["text"] = "Allocates Split the Earth", + ["type"] = "enchant", + }, + [418] = { + ["id"] = "enchant.stat_2954116742|41972", + ["text"] = "Allocates Glaciation", + ["type"] = "enchant", + }, + [419] = { + ["id"] = "enchant.stat_2954116742|14934", + ["text"] = "Allocates Spiral into Mania", + ["type"] = "enchant", + }, + [420] = { + ["id"] = "enchant.stat_2954116742|20416", + ["text"] = "Allocates Grit", + ["type"] = "enchant", + }, + [421] = { + ["id"] = "enchant.stat_2954116742|36976", + ["text"] = "Allocates Marked for Death", + ["type"] = "enchant", + }, + [422] = { + ["id"] = "enchant.stat_2954116742|59589", + ["text"] = "Allocates Heavy Armour", + ["type"] = "enchant", + }, + [423] = { + ["id"] = "enchant.stat_2954116742|46296", + ["text"] = "Allocates Short Shot", + ["type"] = "enchant", + }, + [424] = { + ["id"] = "enchant.stat_2954116742|29372", + ["text"] = "Allocates Sudden Infuriation", + ["type"] = "enchant", + }, + [425] = { + ["id"] = "enchant.stat_2954116742|33240", + ["text"] = "Allocates Lord of Horrors", + ["type"] = "enchant", + }, + [426] = { + ["id"] = "enchant.stat_2954116742|35876", + ["text"] = "Allocates Admonisher", + ["type"] = "enchant", + }, + [427] = { + ["id"] = "enchant.stat_2954116742|51871", + ["text"] = "Allocates Immortal Thirst", + ["type"] = "enchant", + }, + [428] = { + ["id"] = "enchant.stat_2954116742|46499", + ["text"] = "Allocates Guts", + ["type"] = "enchant", + }, + [429] = { + ["id"] = "enchant.stat_2954116742|50253", + ["text"] = "Allocates Aftershocks", + ["type"] = "enchant", + }, + [430] = { + ["id"] = "enchant.stat_2954116742|52348", + ["text"] = "Allocates Carved Earth", + ["type"] = "enchant", + }, + [431] = { + ["id"] = "enchant.stat_2954116742|23221", + ["text"] = "Allocates Trick Shot", + ["type"] = "enchant", + }, + [432] = { + ["id"] = "enchant.stat_2954116742|56063", + ["text"] = "Allocates Lingering Horror", + ["type"] = "enchant", + }, + [433] = { + ["id"] = "enchant.stat_2954116742|40117", + ["text"] = "Allocates Spiked Armour", + ["type"] = "enchant", + }, + [434] = { + ["id"] = "enchant.stat_2954116742|35966", + ["text"] = "Allocates Heart Tissue", + ["type"] = "enchant", + }, + [435] = { + ["id"] = "enchant.stat_2954116742|48103", + ["text"] = "Allocates Forcewave", + ["type"] = "enchant", + }, + [436] = { + ["id"] = "enchant.stat_2954116742|4985", + ["text"] = "Allocates Flip the Script", + ["type"] = "enchant", + }, + [437] = { + ["id"] = "enchant.stat_2954116742|2575", + ["text"] = "Allocates Ancestral Alacrity", + ["type"] = "enchant", + }, + [438] = { + ["id"] = "enchant.stat_2954116742|22626", + ["text"] = "Allocates Irreparable", + ["type"] = "enchant", + }, + [439] = { + ["id"] = "enchant.stat_2954116742|13895", + ["text"] = "Allocates Precise Point", + ["type"] = "enchant", + }, + [440] = { + ["id"] = "enchant.stat_2954116742|35477", + ["text"] = "Allocates Far Sighted", + ["type"] = "enchant", + }, + [441] = { + ["id"] = "enchant.stat_2954116742|17854", + ["text"] = "Allocates Escape Velocity", + ["type"] = "enchant", + }, + [442] = { + ["id"] = "enchant.stat_2954116742|5257", + ["text"] = "Allocates Echoing Frost", + ["type"] = "enchant", + }, + [443] = { + ["id"] = "enchant.stat_2954116742|61026", + ["text"] = "Allocates Crystalline Flesh", + ["type"] = "enchant", + }, + [444] = { + ["id"] = "enchant.stat_2954116742|31433", + ["text"] = "Allocates Catalysis", + ["type"] = "enchant", + }, + [445] = { + ["id"] = "enchant.stat_2954116742|3492", + ["text"] = "Allocates Void", + ["type"] = "enchant", + }, + [446] = { + ["id"] = "enchant.stat_2954116742|39347", + ["text"] = "Allocates Breaking Blows", + ["type"] = "enchant", + }, + [447] = { + ["id"] = "enchant.stat_2954116742|19715", + ["text"] = "Allocates Cremation", + ["type"] = "enchant", + }, + [448] = { + ["id"] = "enchant.stat_2954116742|62310", + ["text"] = "Allocates Incendiary", + ["type"] = "enchant", + }, + [449] = { + ["id"] = "enchant.stat_2954116742|43396", + ["text"] = "Allocates Ancestral Reach", + ["type"] = "enchant", + }, + [450] = { + ["id"] = "enchant.stat_2954116742|26331", + ["text"] = "Allocates Harsh Winter", + ["type"] = "enchant", + }, + [451] = { + ["id"] = "enchant.stat_2954116742|1169", + ["text"] = "Allocates Urgent Call", + ["type"] = "enchant", + }, + [452] = { + ["id"] = "enchant.stat_2954116742|23738", + ["text"] = "Allocates Madness in the Bones", + ["type"] = "enchant", + }, + [453] = { + ["id"] = "enchant.stat_2954116742|44756", + ["text"] = "Allocates Marked Agility", + ["type"] = "enchant", + }, + [454] = { + ["id"] = "enchant.stat_2954116742|32507", + ["text"] = "Allocates Cut to the Bone", + ["type"] = "enchant", + }, + [455] = { + ["id"] = "enchant.stat_2954116742|11366", + ["text"] = "Allocates Volcanic Skin", + ["type"] = "enchant", + }, + [456] = { + ["id"] = "enchant.stat_2954116742|61741", + ["text"] = "Allocates Lasting Toxins", + ["type"] = "enchant", + }, + [457] = { + ["id"] = "enchant.stat_2954116742|3188", + ["text"] = "Allocates Revenge", + ["type"] = "enchant", + }, + [458] = { + ["id"] = "enchant.stat_2954116742|6178", + ["text"] = "Allocates Power Shots", + ["type"] = "enchant", + }, + [459] = { + ["id"] = "enchant.stat_2954116742|26070", + ["text"] = "Allocates Bolstering Yell", + ["type"] = "enchant", + }, + [460] = { + ["id"] = "enchant.stat_2954116742|12750", + ["text"] = "Allocates Vale Shelter", + ["type"] = "enchant", + }, + [461] = { + ["id"] = "enchant.stat_2954116742|30392", + ["text"] = "Allocates Succour", + ["type"] = "enchant", + }, + [462] = { + ["id"] = "enchant.stat_2954116742|9968", + ["text"] = "Allocates Feel the Earth", + ["type"] = "enchant", + }, + [463] = { + ["id"] = "enchant.stat_2954116742|17548", + ["text"] = "Allocates Moment of Truth", + ["type"] = "enchant", + }, + [464] = { + ["id"] = "enchant.stat_2954116742|53921", + ["text"] = "Allocates Unbreaking", + ["type"] = "enchant", + }, + [465] = { + ["id"] = "enchant.stat_2954116742|60764", + ["text"] = "Allocates Feathered Fletching", + ["type"] = "enchant", + }, + [466] = { + ["id"] = "enchant.stat_2954116742|46384", + ["text"] = "Allocates Wide Barrier", + ["type"] = "enchant", + }, + [467] = { + ["id"] = "enchant.stat_2954116742|47782", + ["text"] = "Allocates Steady Footing", + ["type"] = "enchant", + }, + [468] = { + ["id"] = "enchant.stat_2954116742|55180", + ["text"] = "Allocates Relentless Fallen", + ["type"] = "enchant", + }, + [469] = { + ["id"] = "enchant.stat_2954116742|17029", + ["text"] = "Allocates Blade Catcher", + ["type"] = "enchant", + }, + [470] = { + ["id"] = "enchant.stat_2954116742|47441", + ["text"] = "Allocates Stigmata", + ["type"] = "enchant", + }, + [471] = { + ["id"] = "enchant.stat_2954116742|2645", + ["text"] = "Allocates Skullcrusher", + ["type"] = "enchant", + }, + [472] = { + ["id"] = "enchant.stat_2954116742|42959", + ["text"] = "Allocates Low Tolerance", + ["type"] = "enchant", + }, + [473] = { + ["id"] = "enchant.stat_2954116742|24438", + ["text"] = "Allocates Hardened Wood", + ["type"] = "enchant", + }, + [474] = { + ["id"] = "enchant.stat_2954116742|21537", + ["text"] = "Allocates Fervour", + ["type"] = "enchant", + }, + [475] = { + ["id"] = "enchant.stat_2954116742|53527", + ["text"] = "Allocates Shattering Blow", + ["type"] = "enchant", + }, + [476] = { + ["id"] = "enchant.stat_2954116742|29514", + ["text"] = "Allocates Cluster Bombs", + ["type"] = "enchant", + }, + [477] = { + ["id"] = "enchant.stat_2954116742|35324", + ["text"] = "Allocates Burnout", + ["type"] = "enchant", + }, + [478] = { + ["id"] = "enchant.stat_2954116742|45713", + ["text"] = "Allocates Savouring", + ["type"] = "enchant", + }, + [479] = { + ["id"] = "enchant.stat_2954116742|44373", + ["text"] = "Allocates Wither Away", + ["type"] = "enchant", + }, + [480] = { + ["id"] = "enchant.stat_2954116742|35028", + ["text"] = "Allocates In the Thick of It", + ["type"] = "enchant", + }, + [481] = { + ["id"] = "enchant.stat_2954116742|8273", + ["text"] = "Allocates Endless Circuit", + ["type"] = "enchant", + }, + [482] = { + ["id"] = "enchant.stat_2954116742|48014", + ["text"] = "Allocates Honourless", + ["type"] = "enchant", + }, + [483] = { + ["id"] = "enchant.stat_2954116742|41905", + ["text"] = "Allocates Gravedigger", + ["type"] = "enchant", + }, + [484] = { + ["id"] = "enchant.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", + ["type"] = "enchant", + }, + [485] = { + ["id"] = "enchant.stat_2954116742|47635", + ["text"] = "Allocates Overload", + ["type"] = "enchant", + }, + [486] = { + ["id"] = "enchant.stat_2954116742|2335", + ["text"] = "Allocates Turn the Clock Forward", + ["type"] = "enchant", + }, + [487] = { + ["id"] = "enchant.stat_2954116742|42036", + ["text"] = "Allocates Off-Balancing Retort", + ["type"] = "enchant", + }, + [488] = { + ["id"] = "enchant.stat_2954116742|14777", + ["text"] = "Allocates Bravado", + ["type"] = "enchant", + }, + [489] = { + ["id"] = "enchant.stat_2954116742|43423", + ["text"] = "Allocates Emboldened Avatar", + ["type"] = "enchant", + }, + [490] = { + ["id"] = "enchant.stat_2954116742|24655", + ["text"] = "Allocates Breath of Fire", + ["type"] = "enchant", + }, + [491] = { + ["id"] = "enchant.stat_2954116742|62803", + ["text"] = "Allocates Woodland Aspect", + ["type"] = "enchant", + }, + [492] = { + ["id"] = "enchant.stat_2954116742|21453", + ["text"] = "Allocates Breakage", + ["type"] = "enchant", + }, + [493] = { + ["id"] = "enchant.stat_2954116742|6544", + ["text"] = "Allocates Burning Strikes", + ["type"] = "enchant", + }, + [494] = { + ["id"] = "enchant.stat_2954116742|58096", + ["text"] = "Allocates Lasting Incantations", + ["type"] = "enchant", + }, + [495] = { + ["id"] = "enchant.stat_2954116742|8881", + ["text"] = "Allocates Unforgiving", + ["type"] = "enchant", + }, + [496] = { + ["id"] = "enchant.stat_2954116742|27626", + ["text"] = "Allocates Touch the Arcane", + ["type"] = "enchant", + }, + [497] = { + ["id"] = "enchant.stat_2954116742|26447", + ["text"] = "Allocates Refocus", + ["type"] = "enchant", + }, + [498] = { + ["id"] = "enchant.stat_2954116742|23078", + ["text"] = "Allocates Holy Protector", + ["type"] = "enchant", + }, + [499] = { + ["id"] = "enchant.stat_2954116742|35564", + ["text"] = "Allocates Turn the Clock Back", + ["type"] = "enchant", + }, + [500] = { + ["id"] = "enchant.stat_2954116742|63431", + ["text"] = "Allocates Leeching Toxins", + ["type"] = "enchant", + }, + [501] = { + ["id"] = "enchant.stat_2954116742|44952", + ["text"] = "Allocates Made to Last", + ["type"] = "enchant", + }, + [502] = { + ["id"] = "enchant.stat_2954116742|65468", + ["text"] = "Allocates Repeating Explosives", + ["type"] = "enchant", + }, + [503] = { + ["id"] = "enchant.stat_2954116742|28044", + ["text"] = "Allocates Coming Calamity", + ["type"] = "enchant", + }, + [504] = { + ["id"] = "enchant.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", + ["type"] = "enchant", + }, + [505] = { + ["id"] = "enchant.stat_2954116742|20414", + ["text"] = "Allocates Reprisal", + ["type"] = "enchant", + }, + [506] = { + ["id"] = "enchant.stat_2954116742|60138", + ["text"] = "Allocates Stylebender", + ["type"] = "enchant", + }, + [507] = { + ["id"] = "enchant.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", + ["type"] = "enchant", + }, + [508] = { + ["id"] = "enchant.stat_2954116742|7777", + ["text"] = "Allocates Breaking Point", + ["type"] = "enchant", + }, + [509] = { + ["id"] = "enchant.stat_2954116742|3567", + ["text"] = "Allocates Raw Mana", + ["type"] = "enchant", + }, + [510] = { + ["id"] = "enchant.stat_2954116742|3985", + ["text"] = "Allocates Forces of Nature", + ["type"] = "enchant", + }, + [511] = { + ["id"] = "enchant.stat_2954116742|40803", + ["text"] = "Allocates Sigil of Ice", + ["type"] = "enchant", + }, + [512] = { + ["id"] = "enchant.stat_2954116742|5802", + ["text"] = "Allocates Stand and Deliver", + ["type"] = "enchant", + }, + [513] = { + ["id"] = "enchant.stat_2954116742|51129", + ["text"] = "Allocates Pile On", + ["type"] = "enchant", + }, + [514] = { + ["id"] = "enchant.stat_2954116742|54148", + ["text"] = "Allocates Smoke Inhalation", + ["type"] = "enchant", + }, + [515] = { + ["id"] = "enchant.stat_2954116742|48658", + ["text"] = "Allocates Shattering", + ["type"] = "enchant", + }, + [516] = { + ["id"] = "enchant.stat_2954116742|8957", + ["text"] = "Allocates Right Hand of Darkness", + ["type"] = "enchant", + }, + [517] = { + ["id"] = "enchant.stat_2954116742|55835", + ["text"] = "Allocates Exposed to the Cosmos", + ["type"] = "enchant", + }, + [518] = { + ["id"] = "enchant.stat_2954116742|63759", + ["text"] = "Allocates Stacking Toxins", + ["type"] = "enchant", + }, + [519] = { + ["id"] = "enchant.stat_2954116742|9444", + ["text"] = "Allocates One with the Storm", + ["type"] = "enchant", + }, + [520] = { + ["id"] = "enchant.stat_2954116742|19249", + ["text"] = "Allocates Supportive Ancestors", + ["type"] = "enchant", + }, + [521] = { + ["id"] = "enchant.stat_2954116742|14343", + ["text"] = "Allocates Deterioration", + ["type"] = "enchant", + }, + [522] = { + ["id"] = "enchant.stat_2954116742|60692", + ["text"] = "Allocates Echoing Flames", + ["type"] = "enchant", + }, + [523] = { + ["id"] = "enchant.stat_2954116742|9187", + ["text"] = "Allocates Escalation", + ["type"] = "enchant", + }, + [524] = { + ["id"] = "enchant.stat_2954116742|56893", + ["text"] = "Allocates Thicket Warding", + ["type"] = "enchant", + }, + [525] = { + ["id"] = "enchant.stat_2954116742|20397", + ["text"] = "Allocates Authority", + ["type"] = "enchant", + }, + [526] = { + ["id"] = "enchant.stat_2954116742|40325", + ["text"] = "Allocates Resolution", + ["type"] = "enchant", + }, + [527] = { + ["id"] = "enchant.stat_2954116742|52618", + ["text"] = "Allocates Boon of the Beast", + ["type"] = "enchant", + }, + [528] = { + ["id"] = "enchant.stat_2954116742|13823", + ["text"] = "Allocates Controlling Magic", + ["type"] = "enchant", + }, + [529] = { + ["id"] = "enchant.stat_2954116742|58183", + ["text"] = "Allocates Blood Tearing", + ["type"] = "enchant", + }, + [530] = { + ["id"] = "enchant.stat_2954116742|28267", + ["text"] = "Allocates Desensitisation", + ["type"] = "enchant", + }, + [531] = { + ["id"] = "enchant.stat_2954116742|7341", + ["text"] = "Allocates Ignore Pain", + ["type"] = "enchant", + }, + [532] = { + ["id"] = "enchant.stat_2954116742|13407", + ["text"] = "Allocates Heartbreaking", + ["type"] = "enchant", + }, + [533] = { + ["id"] = "enchant.stat_2954116742|42390", + ["text"] = "Allocates Overheating Blow", + ["type"] = "enchant", + }, + [534] = { + ["id"] = "enchant.stat_2954116742|13457", + ["text"] = "Allocates Shadow Dancing", + ["type"] = "enchant", + }, + [535] = { + ["id"] = "enchant.stat_2954116742|54990", + ["text"] = "Allocates Bloodletting", + ["type"] = "enchant", + }, + [536] = { + ["id"] = "enchant.stat_2954116742|35739", + ["text"] = "Allocates Crushing Judgement", + ["type"] = "enchant", + }, + [537] = { + ["id"] = "enchant.stat_2954116742|48240", + ["text"] = "Allocates Quick Recovery", + ["type"] = "enchant", + }, + [538] = { + ["id"] = "enchant.stat_2954116742|5703", + ["text"] = "Allocates Echoing Thunder", + ["type"] = "enchant", + }, + [539] = { + ["id"] = "enchant.stat_2954116742|40990", + ["text"] = "Allocates Exposed to the Storm", + ["type"] = "enchant", + }, + [540] = { + ["id"] = "enchant.stat_2954116742|64443", + ["text"] = "Allocates Impact Force", + ["type"] = "enchant", + }, + [541] = { + ["id"] = "enchant.stat_2954116742|31189", + ["text"] = "Allocates Unexpected Finesse", + ["type"] = "enchant", + }, + [542] = { + ["id"] = "enchant.stat_2954116742|19644", + ["text"] = "Allocates Left Hand of Darkness", + ["type"] = "enchant", + }, + [543] = { + ["id"] = "enchant.stat_2954116742|33887", + ["text"] = "Allocates Full Salvo", + ["type"] = "enchant", + }, + [544] = { + ["id"] = "enchant.stat_2954116742|37276", + ["text"] = "Allocates Battle Trance", + ["type"] = "enchant", + }, + [545] = { + ["id"] = "enchant.stat_2954116742|51934", + ["text"] = "Allocates Invocated Efficiency", + ["type"] = "enchant", + }, + [546] = { + ["id"] = "enchant.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", + ["type"] = "enchant", + }, + [547] = { + ["id"] = "enchant.stat_2954116742|51509", + ["text"] = "Allocates Waters of Life", + ["type"] = "enchant", + }, + [548] = { + ["id"] = "enchant.stat_2954116742|51891", + ["text"] = "Allocates Lucidity", + ["type"] = "enchant", + }, + [549] = { + ["id"] = "enchant.stat_2954116742|18086", + ["text"] = "Allocates Breath of Ice", + ["type"] = "enchant", + }, + [550] = { + ["id"] = "enchant.stat_2954116742|336", + ["text"] = "Allocates Storm Swell", + ["type"] = "enchant", + }, + [551] = { + ["id"] = "enchant.stat_2954116742|8554", + ["text"] = "Allocates Burning Nature", + ["type"] = "enchant", + }, + [552] = { + ["id"] = "enchant.stat_2954116742|59303", + ["text"] = "Allocates Lucky Rabbit Foot", + ["type"] = "enchant", + }, + [553] = { + ["id"] = "enchant.stat_2954116742|12337", + ["text"] = "Allocates Flash Storm", + ["type"] = "enchant", + }, + [554] = { + ["id"] = "enchant.stat_2954116742|23362", + ["text"] = "Allocates Slippery Ice", + ["type"] = "enchant", + }, + [555] = { + ["id"] = "enchant.stat_2954116742|17150", + ["text"] = "Allocates General's Bindings", + ["type"] = "enchant", + }, + [556] = { + ["id"] = "enchant.stat_2954116742|39881", + ["text"] = "Allocates Staggering Palm", + ["type"] = "enchant", + }, + [557] = { + ["id"] = "enchant.stat_2954116742|27009", + ["text"] = "Allocates Lust for Sacrifice", + ["type"] = "enchant", + }, + [558] = { + ["id"] = "enchant.stat_2954116742|43677", + ["text"] = "Allocates Crippling Toxins", + ["type"] = "enchant", + }, + [559] = { + ["id"] = "enchant.stat_2954116742|33978", + ["text"] = "Allocates Unstoppable Barrier", + ["type"] = "enchant", + }, + [560] = { + ["id"] = "enchant.stat_2954116742|7604", + ["text"] = "Allocates Rapid Strike", + ["type"] = "enchant", + }, + [561] = { + ["id"] = "enchant.stat_2954116742|59214", + ["text"] = "Allocates Fated End", + ["type"] = "enchant", + }, + [562] = { + ["id"] = "enchant.stat_2954116742|32664", + ["text"] = "Allocates Chakra of Breathing", + ["type"] = "enchant", + }, + [563] = { + ["id"] = "enchant.stat_2954116742|39567", + ["text"] = "Allocates Ingenuity", + ["type"] = "enchant", + }, + [564] = { + ["id"] = "enchant.stat_2954116742|64119", + ["text"] = "Allocates Rapid Reload", + ["type"] = "enchant", + }, + [565] = { + ["id"] = "enchant.stat_2954116742|54937", + ["text"] = "Allocates Vengeful Fury", + ["type"] = "enchant", + }, + [566] = { + ["id"] = "enchant.stat_2954116742|934", + ["text"] = "Allocates Natural Immunity", + ["type"] = "enchant", + }, + [567] = { + ["id"] = "enchant.stat_2954116742|36364", + ["text"] = "Allocates Electrocution", + ["type"] = "enchant", + }, + [568] = { + ["id"] = "enchant.stat_2954116742|42813", + ["text"] = "Allocates Tides of Change", + ["type"] = "enchant", + }, + [569] = { + ["id"] = "enchant.stat_2954116742|51394", + ["text"] = "Allocates Unimpeded", + ["type"] = "enchant", + }, + [570] = { + ["id"] = "enchant.stat_2954116742|24630", + ["text"] = "Allocates Fulmination", + ["type"] = "enchant", + }, + [571] = { + ["id"] = "enchant.stat_2954116742|10029", + ["text"] = "Allocates Repulsion", + ["type"] = "enchant", + }, + [572] = { + ["id"] = "enchant.stat_2954116742|17254", + ["text"] = "Allocates Spell Haste", + ["type"] = "enchant", + }, + [573] = { + ["id"] = "enchant.stat_2954116742|30720", + ["text"] = "Allocates Entropic Incarnation", + ["type"] = "enchant", + }, + [574] = { + ["id"] = "enchant.stat_2954116742|36623", + ["text"] = "Allocates Convalescence", + ["type"] = "enchant", + }, + [575] = { + ["id"] = "enchant.stat_2954116742|48581", + ["text"] = "Allocates Exploit the Elements", + ["type"] = "enchant", + }, + [576] = { + ["id"] = "enchant.stat_2954116742|38969", + ["text"] = "Allocates Finesse", + ["type"] = "enchant", + }, + [577] = { + ["id"] = "enchant.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", + ["type"] = "enchant", + }, + [578] = { + ["id"] = "enchant.stat_2954116742|60464", + ["text"] = "Allocates Fan the Flames", + ["type"] = "enchant", + }, + [579] = { + ["id"] = "enchant.stat_2954116742|40345", + ["text"] = "Allocates Master of Hexes", + ["type"] = "enchant", + }, + [580] = { + ["id"] = "enchant.stat_2954116742|51213", + ["text"] = "Allocates Wasting", + ["type"] = "enchant", + }, + [581] = { + ["id"] = "enchant.stat_2954116742|42981", + ["text"] = "Allocates Cruel Methods", + ["type"] = "enchant", + }, + [582] = { + ["id"] = "enchant.stat_2954116742|32353", + ["text"] = "Allocates Swift Claw", + ["type"] = "enchant", + }, + [583] = { + ["id"] = "enchant.stat_2954116742|53941", + ["text"] = "Allocates Shimmering", + ["type"] = "enchant", + }, + [584] = { + ["id"] = "enchant.stat_2954116742|42065", + ["text"] = "Allocates Surging Currents", + ["type"] = "enchant", + }, + [585] = { + ["id"] = "enchant.stat_2954116742|2863", + ["text"] = "Allocates Perpetual Freeze", + ["type"] = "enchant", + }, + [586] = { + ["id"] = "enchant.stat_2954116742|27875", + ["text"] = "Allocates General Electric", + ["type"] = "enchant", + }, + [587] = { + ["id"] = "enchant.stat_2954116742|9020", + ["text"] = "Allocates Giantslayer", + ["type"] = "enchant", + }, + [588] = { + ["id"] = "enchant.stat_2954116742|12998", + ["text"] = "Allocates Warm the Heart", + ["type"] = "enchant", + }, + [589] = { + ["id"] = "enchant.stat_2954116742|23939", + ["text"] = "Allocates Glazed Flesh", + ["type"] = "enchant", + }, + [590] = { + ["id"] = "enchant.stat_2954116742|36341", + ["text"] = "Allocates Cull the Hordes", + ["type"] = "enchant", + }, + [591] = { + ["id"] = "enchant.stat_2954116742|41580", + ["text"] = "Allocates Maiming Strike", + ["type"] = "enchant", + }, + [592] = { + ["id"] = "enchant.stat_2954116742|16499", + ["text"] = "Allocates Lingering Whispers", + ["type"] = "enchant", + }, + [593] = { + ["id"] = "enchant.stat_2954116742|41811", + ["text"] = "Allocates Shatter Palm", + ["type"] = "enchant", + }, + [594] = { + ["id"] = "enchant.stat_2954116742|35581", + ["text"] = "Allocates Near at Hand", + ["type"] = "enchant", + }, + [595] = { + ["id"] = "enchant.stat_2954116742|9421", + ["text"] = "Allocates Snowpiercer", + ["type"] = "enchant", + }, + [596] = { + ["id"] = "enchant.stat_2954116742|45244", + ["text"] = "Allocates Refills", + ["type"] = "enchant", + }, + [597] = { + ["id"] = "enchant.stat_2954116742|17372", + ["text"] = "Allocates Reaching Strike", + ["type"] = "enchant", + }, + [598] = { + ["id"] = "enchant.stat_2954116742|24062", + ["text"] = "Allocates Immortal Infamy", + ["type"] = "enchant", + }, + [599] = { + ["id"] = "enchant.stat_2954116742|61921", + ["text"] = "Allocates Storm Surge", + ["type"] = "enchant", + }, + [600] = { + ["id"] = "enchant.stat_2954116742|27176", + ["text"] = "Allocates The Power Within", + ["type"] = "enchant", + }, + [601] = { + ["id"] = "enchant.stat_2954116742|4447", + ["text"] = "Allocates Pin their Motivation", + ["type"] = "enchant", + }, + [602] = { + ["id"] = "enchant.stat_2954116742|1104", + ["text"] = "Allocates Lust for Power", + ["type"] = "enchant", + }, + [603] = { + ["id"] = "enchant.stat_2954116742|32951", + ["text"] = "Allocates Preservation", + ["type"] = "enchant", + }, + [604] = { + ["id"] = "enchant.stat_2954116742|65016", + ["text"] = "Allocates Intense Flames", + ["type"] = "enchant", + }, + [605] = { + ["id"] = "enchant.stat_2954116742|32976", + ["text"] = "Allocates Gem Enthusiast", + ["type"] = "enchant", + }, + [606] = { + ["id"] = "enchant.stat_2954116742|13708", + ["text"] = "Allocates Curved Weapon", + ["type"] = "enchant", + }, + [607] = { + ["id"] = "enchant.stat_2954116742|15986", + ["text"] = "Allocates Building Toxins", + ["type"] = "enchant", + }, + [608] = { + ["id"] = "enchant.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", + ["type"] = "enchant", + }, + [609] = { + ["id"] = "enchant.stat_2954116742|17762", + ["text"] = "Allocates Vengeance", + ["type"] = "enchant", + }, + [610] = { + ["id"] = "enchant.stat_2954116742|44765", + ["text"] = "Allocates Distracting Presence", + ["type"] = "enchant", + }, + [611] = { + ["id"] = "enchant.stat_2954116742|6655", + ["text"] = "Allocates Aggravation", + ["type"] = "enchant", + }, + [612] = { + ["id"] = "enchant.stat_2954116742|52191", + ["text"] = "Allocates Event Horizon", + ["type"] = "enchant", + }, + [613] = { + ["id"] = "enchant.stat_2954116742|37408", + ["text"] = "Allocates Staunching", + ["type"] = "enchant", + }, + [614] = { + ["id"] = "enchant.stat_2954116742|54805", + ["text"] = "Allocates Hindered Capabilities", + ["type"] = "enchant", + }, + [615] = { + ["id"] = "enchant.stat_2954116742|52199", + ["text"] = "Allocates Overexposure", + ["type"] = "enchant", + }, + [616] = { + ["id"] = "enchant.stat_2954116742|12661", + ["text"] = "Allocates Asceticism", + ["type"] = "enchant", + }, + [617] = { + ["id"] = "enchant.stat_2954116742|30562", + ["text"] = "Allocates Inner Faith", + ["type"] = "enchant", + }, + [618] = { + ["id"] = "enchant.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", + ["type"] = "enchant", + }, + [619] = { + ["id"] = "enchant.stat_2954116742|3894", + ["text"] = "Allocates Eldritch Will", + ["type"] = "enchant", + }, + [620] = { + ["id"] = "enchant.stat_2954116742|47270", + ["text"] = "Allocates Inescapable Cold", + ["type"] = "enchant", + }, + [621] = { + ["id"] = "enchant.stat_2954116742|43829", + ["text"] = "Allocates Advanced Munitions", + ["type"] = "enchant", + }, + [622] = { + ["id"] = "enchant.stat_2954116742|38111", + ["text"] = "Allocates Pliable Flesh", + ["type"] = "enchant", + }, + [623] = { + ["id"] = "enchant.stat_2954116742|63037", + ["text"] = "Allocates Sigil of Fire", + ["type"] = "enchant", + }, + [624] = { + ["id"] = "enchant.stat_2954116742|60034", + ["text"] = "Allocates Falcon Dive", + ["type"] = "enchant", + }, + [625] = { + ["id"] = "enchant.stat_2954116742|5009", + ["text"] = "Allocates Seeing Stars", + ["type"] = "enchant", + }, + [626] = { + ["id"] = "enchant.stat_2954116742|40399", + ["text"] = "Allocates Energise", + ["type"] = "enchant", + }, + [627] = { + ["id"] = "enchant.stat_2954116742|39050", + ["text"] = "Allocates Exploit", + ["type"] = "enchant", + }, + [628] = { + ["id"] = "enchant.stat_2954116742|40073", + ["text"] = "Allocates Drenched", + ["type"] = "enchant", + }, + [629] = { + ["id"] = "enchant.stat_2954116742|61338", + ["text"] = "Allocates Breath of Lightning", + ["type"] = "enchant", + }, + [630] = { + ["id"] = "enchant.stat_2954116742|44299", + ["text"] = "Allocates Enhanced Barrier", + ["type"] = "enchant", + }, + [631] = { + ["id"] = "enchant.stat_2954116742|15083", + ["text"] = "Allocates Power Conduction", + ["type"] = "enchant", + }, + [632] = { + ["id"] = "enchant.stat_2954116742|62034", + ["text"] = "Allocates Prism Guard", + ["type"] = "enchant", + }, + [633] = { + ["id"] = "enchant.stat_2954116742|56265", + ["text"] = "Allocates Throatseeker", + ["type"] = "enchant", + }, + [634] = { + ["id"] = "enchant.stat_2954116742|47316", + ["text"] = "Allocates Goring", + ["type"] = "enchant", + }, + [635] = { + ["id"] = "enchant.stat_2954116742|52803", + ["text"] = "Allocates Hale Traveller", + ["type"] = "enchant", + }, + [636] = { + ["id"] = "enchant.stat_2954116742|34316", + ["text"] = "Allocates One with the River", + ["type"] = "enchant", + }, + [637] = { + ["id"] = "enchant.stat_2954116742|3688", + ["text"] = "Allocates Dynamism", + ["type"] = "enchant", + }, + [638] = { + ["id"] = "enchant.stat_2954116742|43139", + ["text"] = "Allocates Stormbreaker", + ["type"] = "enchant", + }, + [639] = { + ["id"] = "enchant.stat_2954116742|60404", + ["text"] = "Allocates Perfect Opportunity", + ["type"] = "enchant", + }, + [640] = { + ["id"] = "enchant.stat_2954116742|18308", + ["text"] = "Allocates Bleeding Out", + ["type"] = "enchant", + }, + [641] = { + ["id"] = "enchant.stat_2954116742|21748", + ["text"] = "Allocates Impending Doom", + ["type"] = "enchant", + }, + [642] = { + ["id"] = "enchant.stat_2954116742|52971", + ["text"] = "Allocates The Soul Meridian", + ["type"] = "enchant", + }, + [643] = { + ["id"] = "enchant.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", + ["type"] = "enchant", + }, + [644] = { + ["id"] = "enchant.stat_2954116742|55708", + ["text"] = "Allocates Electric Amplification", + ["type"] = "enchant", + }, + [645] = { + ["id"] = "enchant.stat_2954116742|50485", + ["text"] = "Allocates Zone of Control", + ["type"] = "enchant", + }, + [646] = { + ["id"] = "enchant.stat_2954116742|48418", + ["text"] = "Allocates Hefty Unit", + ["type"] = "enchant", + }, + [647] = { + ["id"] = "enchant.stat_2954116742|51169", + ["text"] = "Allocates Soul Bloom", + ["type"] = "enchant", + }, + [648] = { + ["id"] = "enchant.stat_2954116742|2113", + ["text"] = "Allocates Martial Artistry", + ["type"] = "enchant", + }, + [649] = { + ["id"] = "enchant.stat_2954116742|49740", + ["text"] = "Allocates Shattered Crystal", + ["type"] = "enchant", + }, + [650] = { + ["id"] = "enchant.stat_2954116742|4547", + ["text"] = "Allocates Unnatural Resilience", + ["type"] = "enchant", + }, + [651] = { + ["id"] = "enchant.stat_2954116742|31826", + ["text"] = "Allocates Long Distance Relationship", + ["type"] = "enchant", + }, + [652] = { + ["id"] = "enchant.stat_2954116742|30132", + ["text"] = "Allocates Wrapped Quiver", + ["type"] = "enchant", + }, + [653] = { + ["id"] = "enchant.stat_2954116742|17664", + ["text"] = "Allocates Decisive Retreat", + ["type"] = "enchant", + }, + [654] = { + ["id"] = "enchant.stat_2954116742|51867", + ["text"] = "Allocates Finality", + ["type"] = "enchant", + }, + [655] = { + ["id"] = "enchant.stat_2954116742|16150", + ["text"] = "Allocates Inspiring Ally", + ["type"] = "enchant", + }, + [656] = { + ["id"] = "enchant.stat_2954116742|54814", + ["text"] = "Allocates Profane Commander", + ["type"] = "enchant", + }, + [657] = { + ["id"] = "enchant.stat_2954116742|31129", + ["text"] = "Allocates Lifelong Friend", + ["type"] = "enchant", + }, + [658] = { + ["id"] = "enchant.stat_2954116742|61104", + ["text"] = "Allocates Staggering Wounds", + ["type"] = "enchant", + }, + [659] = { + ["id"] = "enchant.stat_2954116742|65243", + ["text"] = "Allocates Enveloping Presence", + ["type"] = "enchant", + }, + [660] = { + ["id"] = "enchant.stat_2954116742|22817", + ["text"] = "Allocates Inevitable Rupture", + ["type"] = "enchant", + }, + [661] = { + ["id"] = "enchant.stat_2954116742|14294", + ["text"] = "Allocates Sacrificial Blood", + ["type"] = "enchant", + }, + [662] = { + ["id"] = "enchant.stat_2954116742|10315", + ["text"] = "Allocates Easy Going", + ["type"] = "enchant", + }, + [663] = { + ["id"] = "enchant.stat_2954116742|36630", + ["text"] = "Allocates Incision", + ["type"] = "enchant", + }, + [664] = { + ["id"] = "enchant.stat_2954116742|27761", + ["text"] = "Allocates Counterstancing", + ["type"] = "enchant", + }, + [665] = { + ["id"] = "enchant.stat_2954116742|50884", + ["text"] = "Allocates Primal Sundering", + ["type"] = "enchant", + }, + [666] = { + ["id"] = "enchant.stat_2954116742|7338", + ["text"] = "Allocates Abasement", + ["type"] = "enchant", + }, + [667] = { + ["id"] = "enchant.stat_2954116742|43944", + ["text"] = "Allocates Instability", + ["type"] = "enchant", + }, + [668] = { + ["id"] = "enchant.stat_2954116742|5335", + ["text"] = "Allocates Shimmering Mirage", + ["type"] = "enchant", + }, + [669] = { + ["id"] = "enchant.stat_2954116742|42032", + ["text"] = "Allocates Escalating Mayhem", + ["type"] = "enchant", + }, + [670] = { + ["id"] = "enchant.stat_2954116742|42714", + ["text"] = "Allocates Thousand Cuts", + ["type"] = "enchant", + }, + [671] = { + ["id"] = "enchant.stat_2954116742|32655", + ["text"] = "Allocates Hunting Companion", + ["type"] = "enchant", + }, + [672] = { + ["id"] = "enchant.stat_2954116742|19337", + ["text"] = "Allocates Precision Salvo", + ["type"] = "enchant", + }, + [673] = { + ["id"] = "enchant.stat_2954116742|21349", + ["text"] = "Allocates The Quick Fox", + ["type"] = "enchant", + }, + [674] = { + ["id"] = "enchant.stat_2954116742|60992", + ["text"] = "Allocates Nurturing Guardian", + ["type"] = "enchant", + }, + [675] = { + ["id"] = "enchant.stat_2954116742|33585", + ["text"] = "Allocates Unspoken Bond", + ["type"] = "enchant", + }, + [676] = { + ["id"] = "enchant.stat_2954116742|15030", + ["text"] = "Allocates Consistent Intake", + ["type"] = "enchant", + }, + [677] = { + ["id"] = "enchant.stat_2954116742|20008", + ["text"] = "Allocates Unleash Fire", + ["type"] = "enchant", + }, + [678] = { + ["id"] = "enchant.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", + ["type"] = "enchant", + }, + [679] = { + ["id"] = "enchant.stat_2954116742|14211", + ["text"] = "Allocates Shredding Contraptions", + ["type"] = "enchant", + }, + [680] = { + ["id"] = "enchant.stat_2954116742|62455", + ["text"] = "Allocates Bannerman", + ["type"] = "enchant", + }, + [681] = { + ["id"] = "enchant.stat_2954116742|12822", + ["text"] = "Allocates Adaptable Assault", + ["type"] = "enchant", + }, + [682] = { + ["id"] = "enchant.stat_2954116742|30408", + ["text"] = "Allocates Efficient Contraptions", + ["type"] = "enchant", + }, + [683] = { + ["id"] = "enchant.stat_2954116742|32543", + ["text"] = "Allocates Unhindered", + ["type"] = "enchant", + }, + [684] = { + ["id"] = "enchant.stat_2954116742|58198", + ["text"] = "Allocates Well of Power", + ["type"] = "enchant", + }, + [685] = { + ["id"] = "enchant.stat_2954116742|56493", + ["text"] = "Allocates Agile Succession", + ["type"] = "enchant", + }, + [686] = { + ["id"] = "enchant.stat_2954116742|38459", + ["text"] = "Allocates Disorientation", + ["type"] = "enchant", + }, + [687] = { + ["id"] = "enchant.stat_2954116742|30748", + ["text"] = "Allocates Controlled Chaos", + ["type"] = "enchant", + }, + [688] = { + ["id"] = "enchant.stat_2954116742|43791", + ["text"] = "Allocates Rallying Icon", + ["type"] = "enchant", + }, + [689] = { + ["id"] = "enchant.stat_2954116742|53367", + ["text"] = "Allocates Symbol of Defiance", + ["type"] = "enchant", + }, + [690] = { + ["id"] = "enchant.stat_2954116742|55131", + ["text"] = "Allocates Light on your Feet", + ["type"] = "enchant", + }, + [691] = { + ["id"] = "enchant.stat_2954116742|16790", + ["text"] = "Allocates Efficient Casting", + ["type"] = "enchant", + }, + [692] = { + ["id"] = "enchant.stat_2954116742|18485", + ["text"] = "Allocates Unstable Bond", + ["type"] = "enchant", + }, + [693] = { + ["id"] = "enchant.stat_2954116742|5332", + ["text"] = "Allocates Crystallised Immunities", + ["type"] = "enchant", + }, + [694] = { + ["id"] = "enchant.stat_2954116742|36931", + ["text"] = "Allocates Concussive Attack", + ["type"] = "enchant", + }, + [695] = { + ["id"] = "enchant.stat_2954116742|57785", + ["text"] = "Allocates Trained Turrets", + ["type"] = "enchant", + }, + [696] = { + ["id"] = "enchant.stat_2954116742|63579", + ["text"] = "Allocates Momentum", + ["type"] = "enchant", + }, + [697] = { + ["id"] = "enchant.stat_2954116742|25362", + ["text"] = "Allocates Chakra of Impact", + ["type"] = "enchant", + }, + [698] = { + ["id"] = "enchant.stat_2954116742|63400", + ["text"] = "Allocates Chakra of Elements", + ["type"] = "enchant", + }, + [699] = { + ["id"] = "enchant.stat_2954116742|48215", + ["text"] = "Allocates Headshot", + ["type"] = "enchant", + }, + [700] = { + ["id"] = "enchant.stat_2954116742|44293", + ["text"] = "Allocates Hastening Barrier", + ["type"] = "enchant", + }, + [701] = { + ["id"] = "enchant.stat_2954116742|13515", + ["text"] = "Allocates Stormwalker", + ["type"] = "enchant", + }, + [702] = { + ["id"] = "enchant.stat_2954116742|5642", + ["text"] = "Allocates Behemoth", + ["type"] = "enchant", + }, + [703] = { + ["id"] = "enchant.stat_2954116742|48617", + ["text"] = "Allocates Hunter", + ["type"] = "enchant", + }, + [704] = { + ["id"] = "enchant.stat_2954116742|35560", + ["text"] = "Allocates At your Command", + ["type"] = "enchant", + }, + [705] = { + ["id"] = "enchant.stat_2954116742|53187", + ["text"] = "Allocates Warlord Berserker", + ["type"] = "enchant", + }, + [706] = { + ["id"] = "enchant.stat_2954116742|94", + ["text"] = "Allocates Efficient Killing", + ["type"] = "enchant", + }, + [707] = { + ["id"] = "enchant.stat_2954116742|46683", + ["text"] = "Allocates Inherited Strength ", + ["type"] = "enchant", + }, + [708] = { + ["id"] = "enchant.stat_2954116742|58817", + ["text"] = "Allocates Artillery Strike", + ["type"] = "enchant", + }, + [709] = { + ["id"] = "enchant.stat_2954116742|41753", + ["text"] = "Allocates Evocational Practitioner", + ["type"] = "enchant", + }, + [710] = { + ["id"] = "enchant.stat_2954116742|31745", + ["text"] = "Allocates Lockdown", + ["type"] = "enchant", + }, + [711] = { + ["id"] = "enchant.stat_2954116742|56488", + ["text"] = "Allocates Glancing Deflection", + ["type"] = "enchant", + }, + [712] = { + ["id"] = "enchant.stat_2954116742|40687", + ["text"] = "Allocates Lead by Example", + ["type"] = "enchant", + }, + [713] = { + ["id"] = "enchant.stat_2954116742|34425", + ["text"] = "Allocates Precise Volatility", + ["type"] = "enchant", + }, + [714] = { + ["id"] = "enchant.stat_2954116742|56016", + ["text"] = "Allocates Passthrough Rounds", + ["type"] = "enchant", + }, + [715] = { + ["id"] = "enchant.stat_2954116742|24764", + ["text"] = "Allocates Infusing Power", + ["type"] = "enchant", + }, + [716] = { + ["id"] = "enchant.stat_2954116742|28542", + ["text"] = "Allocates The Molten One's Gift", + ["type"] = "enchant", + }, + [717] = { + ["id"] = "enchant.stat_2954116742|53566", + ["text"] = "Allocates Run and Gun", + ["type"] = "enchant", + }, + [718] = { + ["id"] = "enchant.stat_2954116742|49150", + ["text"] = "Allocates Precise Invocations", + ["type"] = "enchant", + }, + [719] = { + ["id"] = "enchant.stat_2954116742|60273", + ["text"] = "Allocates Hindering Obstacles", + ["type"] = "enchant", + }, + [720] = { + ["id"] = "enchant.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", + ["type"] = "enchant", + }, + [721] = { + ["id"] = "enchant.stat_2954116742|45370", + ["text"] = "Allocates The Raging Ox", + ["type"] = "enchant", + }, + [722] = { + ["id"] = "enchant.stat_2954116742|52257", + ["text"] = "Allocates Conductive Embrace", + ["type"] = "enchant", + }, + [723] = { + ["id"] = "enchant.stat_2954116742|42103", + ["text"] = "Allocates Enduring Deflection", + ["type"] = "enchant", + }, + [724] = { + ["id"] = "enchant.stat_2954116742|26563", + ["text"] = "Allocates Bone Chains", + ["type"] = "enchant", + }, + [725] = { + ["id"] = "enchant.stat_2954116742|22532", + ["text"] = "Allocates Fearful Paralysis", + ["type"] = "enchant", + }, + [726] = { + ["id"] = "enchant.stat_2954116742|12964", + ["text"] = "Allocates Lone Warrior", + ["type"] = "enchant", + }, + [727] = { + ["id"] = "enchant.stat_2954116742|10500", + ["text"] = "Allocates Dazing Blocks", + ["type"] = "enchant", + }, + [728] = { + ["id"] = "enchant.stat_2954116742|17303", + ["text"] = "Allocates Utility Ordnance", + ["type"] = "enchant", + }, + [729] = { + ["id"] = "enchant.stat_2954116742|64650", + ["text"] = "Allocates Wary Dodging", + ["type"] = "enchant", + }, + [730] = { + ["id"] = "enchant.stat_2954116742|9290", + ["text"] = "Allocates Rusted Pins", + ["type"] = "enchant", + }, + [731] = { + ["id"] = "enchant.stat_2954116742|48734", + ["text"] = "Allocates The Howling Primate", + ["type"] = "enchant", + }, + [732] = { + ["id"] = "enchant.stat_2954116742|48699", + ["text"] = "Allocates Frostwalker", + ["type"] = "enchant", + }, + [733] = { + ["id"] = "enchant.stat_2954116742|65256", + ["text"] = "Allocates Widespread Coverage", + ["type"] = "enchant", + }, + [734] = { + ["id"] = "enchant.stat_2954116742|47514", + ["text"] = "Allocates Dizzying Hits", + ["type"] = "enchant", + }, + [735] = { + ["id"] = "enchant.stat_2954116742|61354", + ["text"] = "Allocates Infernal Limit", + ["type"] = "enchant", + }, + [736] = { + ["id"] = "enchant.stat_2954116742|24491", + ["text"] = "Allocates Invocated Echoes", + ["type"] = "enchant", + }, + [737] = { + ["id"] = "enchant.stat_2954116742|45177", + ["text"] = "Allocates Strike True", + ["type"] = "enchant", + }, + [738] = { + ["id"] = "enchant.stat_2954116742|27513", + ["text"] = "Allocates Material Solidification", + ["type"] = "enchant", + }, + [739] = { + ["id"] = "enchant.stat_2954116742|10612", + ["text"] = "Allocates Embodiment of Frost", + ["type"] = "enchant", + }, + [740] = { + ["id"] = "enchant.stat_2954116742|53185", + ["text"] = "Allocates The Winter Owl", + ["type"] = "enchant", + }, + [741] = { + ["id"] = "enchant.stat_2954116742|11392", + ["text"] = "Allocates Molten Being", + ["type"] = "enchant", + }, + [742] = { + ["id"] = "enchant.stat_2954116742|63031", + ["text"] = "Allocates Glorious Anticipation", + ["type"] = "enchant", + }, + [743] = { + ["id"] = "enchant.stat_2954116742|54031", + ["text"] = "Allocates The Great Boar", + ["type"] = "enchant", + }, + [744] = { + ["id"] = "enchant.stat_2954116742|50392", + ["text"] = "Allocates Brute Strength", + ["type"] = "enchant", + }, + [745] = { + ["id"] = "enchant.stat_2954116742|59070", + ["text"] = "Allocates Enduring Archon", + ["type"] = "enchant", + }, + [746] = { + ["id"] = "enchant.stat_2954116742|8896", + ["text"] = "Allocates Agile Sprinter", + ["type"] = "enchant", + }, + [747] = { + ["id"] = "enchant.stat_2954116742|34541", + ["text"] = "Allocates Energising Deflection", + ["type"] = "enchant", + }, + [748] = { + ["id"] = "enchant.stat_2954116742|64659", + ["text"] = "Allocates Lasting Boons", + ["type"] = "enchant", + }, + [749] = { + ["id"] = "enchant.stat_2954116742|34908", + ["text"] = "Allocates Staunch Deflection", + ["type"] = "enchant", + }, + [750] = { + ["id"] = "enchant.stat_2954116742|8782", + ["text"] = "Allocates Empowering Infusions", + ["type"] = "enchant", + }, + [751] = { + ["id"] = "enchant.stat_2954116742|56767", + ["text"] = "Allocates Electrifying Daze", + ["type"] = "enchant", + }, + [752] = { + ["id"] = "enchant.stat_2954116742|27434", + ["text"] = "Allocates Archon of the Storm", + ["type"] = "enchant", + }, + [753] = { + ["id"] = "enchant.stat_2954116742|35792", + ["text"] = "Allocates Blood of Rage", + ["type"] = "enchant", + }, + [754] = { + ["id"] = "enchant.stat_2954116742|62963", + ["text"] = "Allocates Flamewalker", + ["type"] = "enchant", + }, + [755] = { + ["id"] = "enchant.stat_2954116742|32799", + ["text"] = "Allocates Captivating Companionship", + ["type"] = "enchant", + }, + [756] = { + ["id"] = "enchant.stat_2954116742|43088", + ["text"] = "Allocates Agonising Calamity", + ["type"] = "enchant", + }, + [757] = { + ["id"] = "enchant.stat_2954116742|51868", + ["text"] = "Allocates Molten Carapace", + ["type"] = "enchant", + }, + [758] = { + ["id"] = "enchant.stat_2954116742|43854", + ["text"] = "Allocates All For One", + ["type"] = "enchant", + }, + [759] = { + ["id"] = "enchant.stat_2954116742|37302", + ["text"] = "Allocates Kept at Bay", + ["type"] = "enchant", + }, + [760] = { + ["id"] = "enchant.stat_2954116742|23736", + ["text"] = "Allocates Spray and Pray", + ["type"] = "enchant", + }, + [761] = { + ["id"] = "enchant.stat_2954116742|43633", + ["text"] = "Allocates Energising Archon", + ["type"] = "enchant", + }, + [762] = { + ["id"] = "enchant.stat_2954116742|18157", + ["text"] = "Allocates Tempered Defences", + ["type"] = "enchant", + }, + [763] = { + ["id"] = "enchant.stat_2954116742|12906", + ["text"] = "Allocates Sitting Duck", + ["type"] = "enchant", + }, + [764] = { + ["id"] = "enchant.stat_2954116742|2843", + ["text"] = "Allocates Tolerant Equipment", + ["type"] = "enchant", + }, + [765] = { + ["id"] = "enchant.stat_2954116742|5686", + ["text"] = "Allocates Chillproof", + ["type"] = "enchant", + }, + [766] = { + ["id"] = "enchant.stat_2954116742|22811", + ["text"] = "Allocates The Wild Cat", + ["type"] = "enchant", + }, + [767] = { + ["id"] = "enchant.stat_2954116742|4579", + ["text"] = "Allocates Unbothering Cold", + ["type"] = "enchant", + }, + [768] = { + ["id"] = "enchant.stat_2954116742|56988", + ["text"] = "Allocates Electric Blood", + ["type"] = "enchant", + }, + [769] = { + ["id"] = "enchant.stat_2954116742|10774", + ["text"] = "Allocates Unyielding", + ["type"] = "enchant", + }, + [770] = { + ["id"] = "enchant.stat_2954116742|52180", + ["text"] = "Allocates Trained Deflection", + ["type"] = "enchant", + }, + [771] = { + ["id"] = "enchant.stat_2954116742|52245", + ["text"] = "Allocates Distant Dreamer", + ["type"] = "enchant", + }, + [772] = { + ["id"] = "enchant.stat_2954116742|29306", + ["text"] = "Allocates Chakra of Thought", + ["type"] = "enchant", + }, + [773] = { + ["id"] = "enchant.stat_2954116742|35031", + ["text"] = "Allocates Chakra of Life", + ["type"] = "enchant", + }, + [774] = { + ["id"] = "enchant.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", + ["type"] = "enchant", + }, + [775] = { + ["id"] = "enchant.stat_2954116742|12412", + ["text"] = "Allocates Temporal Mastery", + ["type"] = "enchant", + }, + [776] = { + ["id"] = "enchant.stat_2954116742|28613", + ["text"] = "Allocates Roaring Cries", + ["type"] = "enchant", + }, + [777] = { + ["id"] = "enchant.stat_2954116742|52229", + ["text"] = "Allocates Secrets of the Orb", + ["type"] = "enchant", + }, + [778] = { + ["id"] = "enchant.stat_2954116742|28441", + ["text"] = "Allocates Frantic Swings", + ["type"] = "enchant", + }, + [779] = { + ["id"] = "enchant.stat_2954116742|750", + ["text"] = "Allocates Tribal Fury", + ["type"] = "enchant", + }, + [780] = { + ["id"] = "enchant.stat_2954116742|50912", + ["text"] = "Allocates Imbibed Power", + ["type"] = "enchant", + }, + [781] = { + ["id"] = "enchant.stat_2954116742|50673", + ["text"] = "Allocates Avoiding Deflection", + ["type"] = "enchant", + }, + [782] = { + ["id"] = "enchant.stat_2954116742|64525", + ["text"] = "Allocates Easy Target", + ["type"] = "enchant", + }, + [783] = { + ["id"] = "enchant.stat_2954116742|34543", + ["text"] = "Allocates The Frenzied Bear", + ["type"] = "enchant", + }, + [784] = { + ["id"] = "enchant.stat_2954116742|46124", + ["text"] = "Allocates Arcane Remnants", + ["type"] = "enchant", + }, + [785] = { + ["id"] = "enchant.stat_2954116742|53607", + ["text"] = "Allocates Fortified Location", + ["type"] = "enchant", + }, + [786] = { + ["id"] = "enchant.stat_2954116742|36333", + ["text"] = "Allocates Explosive Empowerment", + ["type"] = "enchant", + }, + [787] = { + ["id"] = "enchant.stat_2954116742|33229", + ["text"] = "Allocates Haemorrhaging Cuts", + ["type"] = "enchant", + }, + [788] = { + ["id"] = "enchant.stat_2954116742|32721", + ["text"] = "Allocates Distracted Target", + ["type"] = "enchant", + }, + [789] = { + ["id"] = "enchant.stat_2954116742|24087", + ["text"] = "Allocates Everlasting Infusions", + ["type"] = "enchant", + }, + [790] = { + ["id"] = "enchant.stat_2954116742|53131", + ["text"] = "Allocates Tukohama's Brew", + ["type"] = "enchant", + }, + [791] = { + ["id"] = "enchant.stat_2954116742|29288", + ["text"] = "Allocates Deadly Invocations", + ["type"] = "enchant", + }, + [792] = { + ["id"] = "enchant.stat_2954116742|15991", + ["text"] = "Allocates Embodiment of Lightning", + ["type"] = "enchant", + }, + [793] = { + ["id"] = "enchant.stat_2954116742|32151", + ["text"] = "Allocates Crystalline Resistance", + ["type"] = "enchant", + }, + [794] = { + ["id"] = "enchant.stat_2954116742|46365", + ["text"] = "Allocates Gigantic Following", + ["type"] = "enchant", + }, + [795] = { + ["id"] = "enchant.stat_2954116742|63739", + ["text"] = "Allocates Vigorous Remnants", + ["type"] = "enchant", + }, + [796] = { + ["id"] = "enchant.stat_2954116742|41394", + ["text"] = "Allocates Invigorating Archon", + ["type"] = "enchant", + }, + [797] = { + ["id"] = "enchant.stat_2954116742|17825", + ["text"] = "Allocates Tactical Retreat", + ["type"] = "enchant", + }, + [798] = { + ["id"] = "enchant.stat_2954116742|38965", + ["text"] = "Allocates Infused Limits", + ["type"] = "enchant", + }, + [799] = { + ["id"] = "enchant.stat_2954116742|42760", + ["text"] = "Allocates Chakra of Stability", + ["type"] = "enchant", + }, + [800] = { + ["id"] = "enchant.stat_2954116742|47088", + ["text"] = "Allocates Sic 'Em", + ["type"] = "enchant", + }, + [801] = { + ["id"] = "enchant.stat_2954116742|5410", + ["text"] = "Allocates Channelled Heritage", + ["type"] = "enchant", + }, + [802] = { + ["id"] = "enchant.stat_2954116742|31773", + ["text"] = "Allocates Resurging Archon", + ["type"] = "enchant", + }, + [803] = { + ["id"] = "enchant.stat_2954116742|2397", + ["text"] = "Allocates Last Stand", + ["type"] = "enchant", + }, + [804] = { + ["id"] = "enchant.stat_2954116742|5594", + ["text"] = "Allocates Decrepifying Curse", + ["type"] = "enchant", + }, + [805] = { + ["id"] = "enchant.stat_2954116742|7782", + ["text"] = "Allocates Rupturing Pins", + ["type"] = "enchant", + }, + [806] = { + ["id"] = "enchant.stat_2954116742|52764", + ["text"] = "Allocates Mystical Rage", + ["type"] = "enchant", + }, + [807] = { + ["id"] = "enchant.stat_2954116742|15443", + ["text"] = "Allocates Endured Suffering", + ["type"] = "enchant", + }, + [808] = { + ["id"] = "enchant.stat_2954116742|19546", + ["text"] = "Allocates Favourable Odds", + ["type"] = "enchant", + }, + [809] = { + ["id"] = "enchant.stat_2954116742|42245", + ["text"] = "Allocates Efficient Inscriptions", + ["type"] = "enchant", + }, + [810] = { + ["id"] = "enchant.stat_2954116742|2134", + ["text"] = "Allocates Toxic Tolerance", + ["type"] = "enchant", + }, + [811] = { + ["id"] = "enchant.stat_2954116742|58215", + ["text"] = "Allocates Sanguimantic Rituals", + ["type"] = "enchant", + }, + [812] = { + ["id"] = "enchant.stat_2954116742|338", + ["text"] = "Allocates Invocated Limit", + ["type"] = "enchant", + }, + [813] = { + ["id"] = "enchant.stat_2954116742|10499", + ["text"] = "Allocates Necromantic Ward", + ["type"] = "enchant", + }, + [814] = { + ["id"] = "enchant.stat_2954116742|7275", + ["text"] = "Allocates Electrocuting Exposure", + ["type"] = "enchant", + }, + [815] = { + ["id"] = "enchant.stat_2954116742|59208", + ["text"] = "Allocates Frantic Fighter", + ["type"] = "enchant", + }, + [816] = { + ["id"] = "enchant.stat_2954116742|56860", + ["text"] = "Allocates Resolute Reprisal", + ["type"] = "enchant", + }, + [817] = { + ["id"] = "enchant.stat_2954116742|33922", + ["text"] = "Allocates Stripped Defences", + ["type"] = "enchant", + }, + [818] = { + ["id"] = "enchant.stat_2954116742|50715", + ["text"] = "Allocates Frozen Limit", + ["type"] = "enchant", + }, + [819] = { + ["id"] = "enchant.stat_2954116742|64050", + ["text"] = "Allocates Marathon Runner", + ["type"] = "enchant", + }, + [820] = { + ["id"] = "enchant.stat_2954116742|7847", + ["text"] = "Allocates The Fabled Stag", + ["type"] = "enchant", + }, + [821] = { + ["id"] = "enchant.stat_2954116742|38570", + ["text"] = "Allocates Demolitionist", + ["type"] = "enchant", + }, + [822] = { + ["id"] = "enchant.stat_2954116742|48524", + ["text"] = "Allocates Blood Transfusion", + ["type"] = "enchant", + }, + [823] = { + ["id"] = "enchant.stat_2954116742|9896", + ["text"] = "Allocates Heartstopping Presence", + ["type"] = "enchant", + }, + [824] = { + ["id"] = "enchant.stat_2954116742|8397", + ["text"] = "Allocates Empowering Remains", + ["type"] = "enchant", + }, + [825] = { + ["id"] = "enchant.stat_2954116742|45751", + ["text"] = "Allocates Frightening Shield", + ["type"] = "enchant", + }, + [826] = { + ["id"] = "enchant.stat_2954116742|53683", + ["text"] = "Allocates Efficient Loading", + ["type"] = "enchant", + }, + [827] = { + ["id"] = "enchant.stat_2954116742|4331", + ["text"] = "Allocates Guided Hand", + ["type"] = "enchant", + }, + [828] = { + ["id"] = "enchant.stat_2954116742|9652", + ["text"] = "Allocates Mending Deflection", + ["type"] = "enchant", + }, + [829] = { + ["id"] = "enchant.stat_2954116742|35918", + ["text"] = "Allocates One For All", + ["type"] = "enchant", + }, + [830] = { + ["id"] = "enchant.stat_2954116742|29899", + ["text"] = "Allocates Finish Them", + ["type"] = "enchant", + }, + [831] = { + ["id"] = "enchant.stat_2954116742|1603", + ["text"] = "Allocates Storm Driven", + ["type"] = "enchant", + }, + [832] = { + ["id"] = "enchant.stat_2954116742|24766", + ["text"] = "Allocates Paranoia", + ["type"] = "enchant", + }, + [833] = { + ["id"] = "enchant.stat_2954116742|13524", + ["text"] = "Allocates Everlasting Glory", + ["type"] = "enchant", + }, + [834] = { + ["id"] = "enchant.stat_2954116742|14602", + ["text"] = "Allocates Specialised Shots", + ["type"] = "enchant", + }, + [835] = { + ["id"] = "enchant.stat_2954116742|34553", + ["text"] = "Allocates Emboldening Lead", + ["type"] = "enchant", + }, + [836] = { + ["id"] = "enchant.stat_2954116742|8607", + ["text"] = "Allocates Lavianga's Brew", + ["type"] = "enchant", + }, + [837] = { + ["id"] = "enchant.stat_2954116742|29800", + ["text"] = "Allocates Shocking Limit", + ["type"] = "enchant", + }, + [838] = { + ["id"] = "enchant.stat_2954116742|42347", + ["text"] = "Allocates Chakra of Sight", + ["type"] = "enchant", + }, + [839] = { + ["id"] = "enchant.stat_2954116742|64415", + ["text"] = "Allocates Shattering Daze", + ["type"] = "enchant", + }, + [840] = { + ["id"] = "enchant.stat_2954116742|4544", + ["text"] = "Allocates The Ancient Serpent", + ["type"] = "enchant", + }, + [841] = { + ["id"] = "enchant.stat_2954116742|49214", + ["text"] = "Allocates Blood of the Wolf", + ["type"] = "enchant", + }, + [842] = { + ["id"] = "enchant.stat_2954116742|11774", + ["text"] = "Allocates The Spring Hare", + ["type"] = "enchant", + }, + [843] = { + ["id"] = "enchant.stat_2954116742|20511", + ["text"] = "Allocates Cremating Cries", + ["type"] = "enchant", + }, + [844] = { + ["id"] = "enchant.stat_2954116742|63541", + ["text"] = "Allocates Brush Off", + ["type"] = "enchant", + }, + [845] = { + ["id"] = "enchant.stat_2954116742|52684", + ["text"] = "Allocates Eroding Chains", + ["type"] = "enchant", + }, + [846] = { + ["id"] = "enchant.stat_2954116742|40292", + ["text"] = "Allocates Nimble Strength", + ["type"] = "enchant", + }, + [847] = { + ["id"] = "enchant.stat_2954116742|41935", + ["text"] = "Allocates Hide of the Bear", + ["type"] = "enchant", + }, + [848] = { + ["id"] = "enchant.stat_2954116742|56112", + ["text"] = "Allocates Extinguishing Exhalation", + ["type"] = "enchant", + }, + [849] = { + ["id"] = "enchant.stat_2954116742|52568", + ["text"] = "Allocates Bond of the Owl", + ["type"] = "enchant", + }, + [850] = { + ["id"] = "enchant.stat_2954116742|31724", + ["text"] = "Allocates Iron Slippers", + ["type"] = "enchant", + }, + [851] = { + ["id"] = "enchant.stat_2954116742|25211", + ["text"] = "Allocates Waning Hindrances", + ["type"] = "enchant", + }, + [852] = { + ["id"] = "enchant.stat_2954116742|57617", + ["text"] = "Allocates Shifted Strikes", + ["type"] = "enchant", + }, + [853] = { + ["id"] = "enchant.stat_2954116742|4810", + ["text"] = "Allocates Sanguine Tolerance", + ["type"] = "enchant", + }, + [854] = { + ["id"] = "enchant.stat_2954116742|56388", + ["text"] = "Allocates Reinforced Rallying", + ["type"] = "enchant", + }, + [855] = { + ["id"] = "enchant.stat_2954116742|20251", + ["text"] = "Allocates Splitting Ground", + ["type"] = "enchant", + }, + [856] = { + ["id"] = "enchant.stat_2954116742|50023", + ["text"] = "Allocates Invigorating Grandeur", + ["type"] = "enchant", + }, + [857] = { + ["id"] = "enchant.stat_2954116742|28408", + ["text"] = "Allocates Invigorating Hate", + ["type"] = "enchant", + }, + [858] = { + ["id"] = "enchant.stat_2954116742|25361", + ["text"] = "Allocates Resolute Reach", + ["type"] = "enchant", + }, + [859] = { + ["id"] = "enchant.stat_2954116742|2745", + ["text"] = "Allocates The Noble Wolf", + ["type"] = "enchant", + }, + [860] = { + ["id"] = "enchant.stat_2954116742|26356", + ["text"] = "Allocates Primed to Explode", + ["type"] = "enchant", + }, + [861] = { + ["id"] = "enchant.stat_2954116742|45329", + ["text"] = "Allocates Delayed Danger", + ["type"] = "enchant", + }, + [862] = { + ["id"] = "enchant.stat_2954116742|32448", + ["text"] = "Allocates Shockproof", + ["type"] = "enchant", + }, + [863] = { + ["id"] = "enchant.stat_2954116742|21784", + ["text"] = "Allocates Pack Encouragement", + ["type"] = "enchant", + }, + [864] = { + ["id"] = "enchant.stat_2954116742|46182", + ["text"] = "Allocates Intense Dose", + ["type"] = "enchant", + }, + [865] = { + ["id"] = "enchant.stat_2954116742|23630", + ["text"] = "Allocates Self Immolation", + ["type"] = "enchant", + }, + [866] = { + ["id"] = "enchant.stat_2954116742|47420", + ["text"] = "Allocates Expendable Army", + ["type"] = "enchant", + }, + [867] = { + ["id"] = "enchant.stat_2954116742|23244", + ["text"] = "Allocates Bounty Hunter", + ["type"] = "enchant", + }, + [868] = { + ["id"] = "enchant.stat_2954116742|30546", + ["text"] = "Allocates Electrified Claw", + ["type"] = "enchant", + }, + [869] = { + ["id"] = "enchant.stat_2954116742|9928", + ["text"] = "Allocates Embracing Frost", + ["type"] = "enchant", + }, + [870] = { + ["id"] = "enchant.stat_2954116742|48649", + ["text"] = "Allocates Insulating Hide", + ["type"] = "enchant", + }, + [871] = { + ["id"] = "enchant.stat_2954116742|42660", + ["text"] = "Allocates Commanding Rage", + ["type"] = "enchant", + }, + [872] = { + ["id"] = "enchant.stat_2954116742|17725", + ["text"] = "Allocates Bonded Precision", + ["type"] = "enchant", + }, + [873] = { + ["id"] = "enchant.stat_2954116742|57921", + ["text"] = "Allocates Wolf's Howl", + ["type"] = "enchant", + }, + [874] = { + ["id"] = "enchant.stat_2954116742|15606", + ["text"] = "Allocates Thrill of the Fight", + ["type"] = "enchant", + }, + [875] = { + ["id"] = "enchant.stat_2954116742|35618", + ["text"] = "Allocates Cold Coat", + ["type"] = "enchant", + }, + [876] = { + ["id"] = "enchant.stat_2954116742|10727", + ["text"] = "Allocates Emboldening Casts", + ["type"] = "enchant", + }, + [877] = { + ["id"] = "enchant.stat_2954116742|42045", + ["text"] = "Allocates Archon of the Blizzard", + ["type"] = "enchant", + }, + [878] = { + ["id"] = "enchant.stat_2954116742|7449", + ["text"] = "Allocates Splinters", + ["type"] = "enchant", + }, + [879] = { + ["id"] = "enchant.stat_2954116742|40985", + ["text"] = "Allocates Empowering Remnants", + ["type"] = "enchant", + }, + [880] = { + ["id"] = "enchant.stat_2954116742|59433", + ["text"] = "Allocates Thirst for Endurance", + ["type"] = "enchant", + }, + [881] = { + ["id"] = "enchant.stat_2954116742|20289", + ["text"] = "Allocates Frozen Claw", + ["type"] = "enchant", + }, + [882] = { + ["id"] = "enchant.stat_2954116742|55817", + ["text"] = "Allocates Alchemical Oil", + ["type"] = "enchant", + }, + [883] = { + ["id"] = "enchant.stat_2954116742|25753", + ["text"] = "Allocates Blazing Arms", + ["type"] = "enchant", + }, + [884] = { + ["id"] = "enchant.stat_2954116742|1861", + ["text"] = "Allocates Knight of Tarcus", + ["type"] = "enchant", + }, + [885] = { + ["id"] = "enchant.stat_2954116742|13489", + ["text"] = "Allocates Unbreakable", + ["type"] = "enchant", + }, + [886] = { + ["id"] = "enchant.stat_2954116742|44753", + ["text"] = "Allocates One With Flame", + ["type"] = "enchant", + }, + [887] = { + ["id"] = "enchant.stat_2954116742|55450", + ["text"] = "Allocates Rallying Form", + ["type"] = "enchant", + }, + [888] = { + ["id"] = "enchant.stat_2954116742|59781", + ["text"] = "Allocates Embodiment of Death", + ["type"] = "enchant", + }, + [889] = { + ["id"] = "enchant.stat_2954116742|26479", + ["text"] = "Allocates Steadfast Resolve", + ["type"] = "enchant", + }, + [890] = { + ["id"] = "enchant.stat_2954116742|43250", + ["text"] = "Allocates Adaptive Skin", + ["type"] = "enchant", + }, + [891] = { + ["id"] = "enchant.stat_2954116742|21251", + ["text"] = "Allocates Replenishing Horde", + ["type"] = "enchant", + }, + [892] = { + ["id"] = "enchant.stat_2954116742|712", + ["text"] = "Allocates Bond of the Ape", + ["type"] = "enchant", + }, + [893] = { + ["id"] = "enchant.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", + ["type"] = "enchant", + }, + [894] = { + ["id"] = "enchant.stat_2954116742|18959", + ["text"] = "Allocates Ruinic Helm", + ["type"] = "enchant", + }, + [895] = { + ["id"] = "enchant.stat_2954116742|39884", + ["text"] = "Allocates Searing Heat", + ["type"] = "enchant", + }, + [896] = { + ["id"] = "enchant.stat_2954116742|14258", + ["text"] = "Allocates Puppet Master chance", + ["type"] = "enchant", + }, + [897] = { + ["id"] = "enchant.stat_2954116742|11184", + ["text"] = "Allocates Zarokh's Gift", + ["type"] = "enchant", + }, + [898] = { + ["id"] = "enchant.stat_2954116742|61309", + ["text"] = "Allocates Redblade Discipline", + ["type"] = "enchant", + }, + [899] = { + ["id"] = "enchant.stat_2954116742|1420", + ["text"] = "Allocates Dizzying Sweep", + ["type"] = "enchant", + }, + [900] = { + ["id"] = "enchant.stat_2954116742|21213", + ["text"] = "Allocates Cirel of Tarth's Light", + ["type"] = "enchant", + }, + [901] = { + ["id"] = "enchant.stat_2954116742|56666", + ["text"] = "Allocates Thaumaturgic Generator", + ["type"] = "enchant", + }, + [902] = { + ["id"] = "enchant.stat_2954116742|9323", + ["text"] = "Allocates Craving Slaughter", + ["type"] = "enchant", + }, + [903] = { + ["id"] = "enchant.stat_2954116742|32858", + ["text"] = "Allocates Dread Engineer's Concoction", + ["type"] = "enchant", + }, + [904] = { + ["id"] = "enchant.stat_2954116742|59938", + ["text"] = "Allocates Against the Elements", + ["type"] = "enchant", + }, + [905] = { + ["id"] = "enchant.stat_2954116742|49356", + ["text"] = "Allocates First Principle of the Hollow", + ["type"] = "enchant", + }, + [906] = { + ["id"] = "enchant.stat_2954116742|22726", + ["text"] = "Allocates Storm's Rebuke", + ["type"] = "enchant", + }, + [907] = { + ["id"] = "enchant.stat_2954116742|1506", + ["text"] = "Allocates Remnant Attraction", + ["type"] = "enchant", + }, + [908] = { + ["id"] = "enchant.stat_2954116742|59657", + ["text"] = "Allocates First Teachings of the Keeper", + ["type"] = "enchant", + }, + [909] = { + ["id"] = "enchant.stat_2954116742|33542", + ["text"] = "Allocates Quick Fingers", + ["type"] = "enchant", + }, + [910] = { + ["id"] = "enchant.stat_2954116742|47853", + ["text"] = "Allocates Bond of the Mamba", + ["type"] = "enchant", + }, + [911] = { + ["id"] = "enchant.stat_2954116742|17696", + ["text"] = "Allocates Augmented Flesh", + ["type"] = "enchant", + }, + [912] = { + ["id"] = "enchant.stat_2954116742|44974", + ["text"] = "Allocates Hail", + ["type"] = "enchant", + }, + [913] = { + ["id"] = "enchant.stat_2954116742|32932", + ["text"] = "Allocates Ichlotl's Inferno", + ["type"] = "enchant", + }, + [914] = { + ["id"] = "enchant.stat_2954116742|59438", + ["text"] = "Allocates Flow of Life", + ["type"] = "enchant", + }, + [915] = { + ["id"] = "enchant.stat_2954116742|42070", + ["text"] = "Allocates Saqawal's Guidance", + ["type"] = "enchant", + }, + [916] = { + ["id"] = "enchant.stat_2954116742|59387", + ["text"] = "Allocates Infusion of Power", + ["type"] = "enchant", + }, + [917] = { + ["id"] = "enchant.stat_2954116742|7542", + ["text"] = "Allocates Encompassing Domain", + ["type"] = "enchant", + }, + [918] = { + ["id"] = "enchant.stat_2954116742|15825", + ["text"] = "Allocates Bhatair's Storm", + ["type"] = "enchant", + }, + [919] = { + ["id"] = "enchant.stat_2954116742|45777", + ["text"] = "Allocates Hidden Barb", + ["type"] = "enchant", + }, + [920] = { + ["id"] = "enchant.stat_2954116742|58894", + ["text"] = "Allocates Dominus' Providence", + ["type"] = "enchant", + }, + [921] = { + ["id"] = "enchant.stat_2954116742|39911", + ["text"] = "Allocates Frantic Reach", + ["type"] = "enchant", + }, + [922] = { + ["id"] = "enchant.stat_2954116742|7128", + ["text"] = "Allocates Dangerous Blossom", + ["type"] = "enchant", + }, + [923] = { + ["id"] = "enchant.stat_2954116742|2344", + ["text"] = "Allocates Dimensional Weakspot", + ["type"] = "enchant", + }, + [924] = { + ["id"] = "enchant.stat_2954116742|13844", + ["text"] = "Allocates Growing Peril", + ["type"] = "enchant", + }, + [925] = { + ["id"] = "enchant.stat_2954116742|26104", + ["text"] = "Allocates Spirit of the Wyvern", + ["type"] = "enchant", + }, + [926] = { + ["id"] = "enchant.stat_2954116742|62431", + ["text"] = "Allocates Anticipation", + ["type"] = "enchant", + }, + [927] = { + ["id"] = "enchant.stat_2954116742|41620", + ["text"] = "Allocates Bear's Roar", + ["type"] = "enchant", + }, + [928] = { + ["id"] = "enchant.stat_2954116742|48925", + ["text"] = "Allocates Blessing of the Moon", + ["type"] = "enchant", + }, + [929] = { + ["id"] = "enchant.stat_2954116742|5191", + ["text"] = "Allocates Bond of the Wolf", + ["type"] = "enchant", + }, + [930] = { + ["id"] = "enchant.stat_2954116742|36100", + ["text"] = "Allocates Molten Claw", + ["type"] = "enchant", + }, + [931] = { + ["id"] = "enchant.stat_2954116742|11886", + ["text"] = "Allocates Mauling Stuns", + ["type"] = "enchant", + }, + [932] = { + ["id"] = "enchant.stat_2954116742|9535", + ["text"] = "Allocates Brinerot Ferocity", + ["type"] = "enchant", + }, + [933] = { + ["id"] = "enchant.stat_2954116742|55308", + ["text"] = "Allocates Sling Shots", + ["type"] = "enchant", + }, + [934] = { + ["id"] = "enchant.stat_2954116742|31955", + ["text"] = "Allocates Voll's Protection", + ["type"] = "enchant", + }, + [935] = { + ["id"] = "enchant.stat_2954116742|261", + ["text"] = "Allocates Toxic Sludge", + ["type"] = "enchant", + }, + [936] = { + ["id"] = "enchant.stat_2954116742|26214", + ["text"] = "Allocates Dominion", + ["type"] = "enchant", + }, + [937] = { + ["id"] = "enchant.stat_2954116742|16142", + ["text"] = "Allocates Deep Freeze", + ["type"] = "enchant", + }, + [938] = { + ["id"] = "enchant.stat_2954116742|32128", + ["text"] = "Allocates Flow of Time", + ["type"] = "enchant", + }, + [939] = { + ["id"] = "enchant.stat_2017682521", + ["text"] = "#% increased Pack Size", + ["type"] = "enchant", + }, + [940] = { + ["id"] = "enchant.stat_2954116742|56237", + ["text"] = "Allocates Enhancing Attacks", + ["type"] = "enchant", + }, + [941] = { + ["id"] = "enchant.stat_2954116742|8916", + ["text"] = "Allocates Bashing Beast", + ["type"] = "enchant", + }, + [942] = { + ["id"] = "enchant.stat_2954116742|29881", + ["text"] = "Allocates Surging Beast", + ["type"] = "enchant", + }, + [943] = { + ["id"] = "enchant.stat_2954116742|55375", + ["text"] = "Allocates Licking Wounds", + ["type"] = "enchant", + }, + [944] = { + ["id"] = "enchant.stat_2954116742|35417", + ["text"] = "Allocates Wyvern's Breath", + ["type"] = "enchant", + }, + [945] = { + ["id"] = "enchant.stat_2954116742|28892", + ["text"] = "Allocates Primal Rage", + ["type"] = "enchant", + }, + [946] = { + ["id"] = "enchant.stat_2954116742|20558", + ["text"] = "Allocates Among the Hordes", + ["type"] = "enchant", + }, + [947] = { + ["id"] = "enchant.stat_2954116742|9328", + ["text"] = "Allocates Spirit of the Bear", + ["type"] = "enchant", + }, + [948] = { + ["id"] = "enchant.stat_3793155082", + ["text"] = "#% increased Rare Monsters", + ["type"] = "enchant", + }, + [949] = { + ["id"] = "enchant.stat_2954116742|15114", + ["text"] = "Allocates Boundless Growth", + ["type"] = "enchant", + }, + [950] = { + ["id"] = "enchant.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", + ["type"] = "enchant", + }, + [951] = { + ["id"] = "enchant.stat_2954116742|2814", + ["text"] = "Allocates Engineered Blaze", + ["type"] = "enchant", + }, + [952] = { + ["id"] = "enchant.stat_2954116742|1502", + ["text"] = "Allocates Draiocht Cleansing", + ["type"] = "enchant", + }, + [953] = { + ["id"] = "enchant.stat_2954116742|43584", + ["text"] = "Allocates Flare", + ["type"] = "enchant", + }, + [954] = { + ["id"] = "enchant.stat_2954116742|37967", + ["text"] = "Allocates Desert's Scorn", + ["type"] = "enchant", + }, + [955] = { + ["id"] = "enchant.stat_2954116742|60619", + ["text"] = "Allocates Scales of the Wyvern", + ["type"] = "enchant", + }, + [956] = { + ["id"] = "enchant.stat_2306002879", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "enchant", + }, + [957] = { + ["id"] = "enchant.stat_3873704640", + ["text"] = "#% increased Magic Monsters", + ["type"] = "enchant", + }, + [958] = { + ["id"] = "enchant.stat_2954116742|33730", + ["text"] = "Allocates Focused Channel", + ["type"] = "enchant", + }, + [959] = { + ["id"] = "enchant.stat_2954116742|53265", + ["text"] = "Allocates Nature's Bite", + ["type"] = "enchant", + }, + [960] = { + ["id"] = "enchant.stat_2954116742|24736", + ["text"] = "Allocates Knight of Chitus", + ["type"] = "enchant", + }, + [961] = { + ["id"] = "enchant.stat_2954116742|47560", + ["text"] = "Allocates Multi Shot", + ["type"] = "enchant", + }, + [962] = { + ["id"] = "enchant.stat_2954116742|45874", + ["text"] = "Allocates Proliferating Weeds", + ["type"] = "enchant", + }, + [963] = { + ["id"] = "enchant.stat_2954116742|12245", + ["text"] = "Allocates Arsonist", + ["type"] = "enchant", + }, + [964] = { + ["id"] = "enchant.stat_2954116742|56714", + ["text"] = "Allocates Swift Flight", + ["type"] = "enchant", + }, + [965] = { + ["id"] = "enchant.stat_2954116742|38329", + ["text"] = "Allocates Biting Frost", + ["type"] = "enchant", + }, + [966] = { + ["id"] = "enchant.stat_2954116742|26926", + ["text"] = "Allocates Archon of Undeath", + ["type"] = "enchant", + }, + [967] = { + ["id"] = "enchant.stat_2954116742|9009", + ["text"] = "Allocates Return to Nature", + ["type"] = "enchant", + }, + [968] = { + ["id"] = "enchant.stat_2954116742|54640", + ["text"] = "Allocates Constricting", + ["type"] = "enchant", + }, + [969] = { + ["id"] = "enchant.stat_2954116742|44573", + ["text"] = "Allocates Disciplined Training", + ["type"] = "enchant", + }, + [970] = { + ["id"] = "enchant.stat_2954116742|30395", + ["text"] = "Allocates Howling Beast", + ["type"] = "enchant", + }, + [971] = { + ["id"] = "enchant.stat_2954116742|3348", + ["text"] = "Allocates Spirit of the Wolf", + ["type"] = "enchant", + }, + [972] = { + ["id"] = "enchant.stat_2954116742|64770", + ["text"] = "Allocates Morgana, the Storm Seer", + ["type"] = "enchant", + }, + [973] = { + ["id"] = "enchant.stat_2954116742|50239", + ["text"] = "Allocates Mutewind Agility", + ["type"] = "enchant", + }, + [974] = { + ["id"] = "enchant.stat_2954116742|35743", + ["text"] = "Allocates Saqawal's Hide", + ["type"] = "enchant", + }, + [975] = { + ["id"] = "enchant.stat_2954116742|37846", + ["text"] = "Allocates Bastion of Light", + ["type"] = "enchant", + }, + [976] = { + ["id"] = "enchant.stat_2954116742|39568", + ["text"] = "Allocates Magnum Opus", + ["type"] = "enchant", + }, + [977] = { + ["id"] = "enchant.stat_2954116742|9863", + ["text"] = "Allocates Knight of Izaro", + ["type"] = "enchant", + }, + [978] = { + ["id"] = "enchant.stat_2954116742|10169", + ["text"] = "Allocates Unfettered", + ["type"] = "enchant", + }, + [979] = { + ["id"] = "enchant.stat_2954116742|34617", + ["text"] = "Allocates Conall the Hunted", + ["type"] = "enchant", + }, + [980] = { + ["id"] = "enchant.stat_2954116742|20686", + ["text"] = "Allocates Paragon", + ["type"] = "enchant", + }, + [981] = { + ["id"] = "enchant.stat_2954116742|35046", + ["text"] = "Allocates Mystic Avalanche", + ["type"] = "enchant", + }, + [982] = { + ["id"] = "enchant.stat_2954116742|62210", + ["text"] = "Allocates Puppet Master chance", + ["type"] = "enchant", + }, + [983] = { + ["id"] = "enchant.stat_2954116742|20495", + ["text"] = "Allocates Dark Entropy", + ["type"] = "enchant", + }, + [984] = { + ["id"] = "enchant.stat_2954116742|27704", + ["text"] = "Allocates Grace of the Ancestors", + ["type"] = "enchant", + }, + [985] = { + ["id"] = "enchant.stat_2954116742|1448", + ["text"] = "Allocates Bond of the Cat", + ["type"] = "enchant", + }, + [986] = { + ["id"] = "enchant.stat_2954116742|4091", + ["text"] = "Allocates Left Ventricle", + ["type"] = "enchant", + }, + [987] = { + ["id"] = "enchant.stat_2954116742|33400", + ["text"] = "Allocates Reverberating Parry", + ["type"] = "enchant", + }, + [988] = { + ["id"] = "enchant.stat_2954116742|27779", + ["text"] = "Allocates Lord of the Squall", + ["type"] = "enchant", + }, + [989] = { + ["id"] = "enchant.stat_2954116742|34478", + ["text"] = "Allocates Bond of the Viper", + ["type"] = "enchant", + }, + [990] = { + ["id"] = "enchant.stat_2954116742|62237", + ["text"] = "Allocates Saqawal's Talon", + ["type"] = "enchant", + }, + [991] = { + ["id"] = "enchant.stat_2954116742|3663", + ["text"] = "Allocates Kaom's Blessing", + ["type"] = "enchant", + }, + }, + ["id"] = "enchant", + ["label"] = "Enchant", + }, + [7] = { + ["entries"] = { + [1] = { + ["id"] = "rune.stat_2280525771", + ["text"] = "Bonded: # to maximum Life", + ["type"] = "augment", + }, + [2] = { + ["id"] = "rune.stat_2926029365", + ["text"] = "Bonded: # to maximum Mana", + ["type"] = "augment", + }, + [3] = { + ["id"] = "rune.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "augment", + }, + [4] = { + ["id"] = "rune.stat_1039491398", + ["text"] = "Bonded: #% increased effect of Fully Broken Armour", + ["type"] = "augment", + }, + [5] = { + ["id"] = "rune.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "augment", + }, + [6] = { + ["id"] = "rune.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "augment", + }, + [7] = { + ["id"] = "rune.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "augment", + }, + [8] = { + ["id"] = "rune.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "augment", + }, + [9] = { + ["id"] = "rune.stat_2430860292", + ["text"] = "Bonded: #% increased Magnitude of Shock you inflict", + ["type"] = "augment", + }, + [10] = { + ["id"] = "rune.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "augment", + }, + [11] = { + ["id"] = "rune.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "augment", + }, + [12] = { + ["id"] = "rune.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "augment", + }, + [13] = { + ["id"] = "rune.stat_1817052494", + ["text"] = "Bonded: #% increased Freeze Buildup", + ["type"] = "augment", + }, + [14] = { + ["id"] = "rune.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "augment", + }, + [15] = { + ["id"] = "rune.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "augment", + }, + [16] = { + ["id"] = "rune.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "augment", + }, + [17] = { + ["id"] = "rune.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "augment", + }, + [18] = { + ["id"] = "rune.stat_1857162058", + ["text"] = "Bonded: #% increased Ignite Magnitude", + ["type"] = "augment", + }, + [19] = { + ["id"] = "rune.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "augment", + }, + [20] = { + ["id"] = "rune.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "augment", + }, + [21] = { + ["id"] = "rune.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "augment", + }, + [22] = { + ["id"] = "rune.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "augment", + }, + [23] = { + ["id"] = "rune.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "augment", + }, + [24] = { + ["id"] = "rune.stat_3990135792", + ["text"] = "Bonded: Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", + ["type"] = "augment", + }, + [25] = { + ["id"] = "rune.stat_2310741722", + ["text"] = "#% increased Life and Mana Recovery from Flasks", + ["type"] = "augment", + }, + [26] = { + ["id"] = "rune.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "augment", + }, + [27] = { + ["id"] = "rune.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "augment", + }, + [28] = { + ["id"] = "rune.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "augment", + }, + [29] = { + ["id"] = "rune.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "augment", + }, + [30] = { + ["id"] = "rune.stat_2246411426", + ["text"] = "Bonded: #% increased maximum Life", + ["type"] = "augment", + }, + [31] = { + ["id"] = "rune.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "augment", + }, + [32] = { + ["id"] = "rune.stat_1586906534", + ["text"] = "Bonded: #% increased maximum Mana", + ["type"] = "augment", + }, + [33] = { + ["id"] = "rune.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "augment", + }, + [34] = { + ["id"] = "rune.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "augment", + }, + [35] = { + ["id"] = "rune.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "augment", + }, + [36] = { + ["id"] = "rune.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "augment", + }, + [37] = { + ["id"] = "rune.stat_3788647247", + ["text"] = "Bonded: #% to Maximum Lightning Resistance", + ["type"] = "augment", + }, + [38] = { + ["id"] = "rune.stat_859085781", + ["text"] = "Bonded: Attacks have #% to Critical Hit Chance", + ["type"] = "augment", + }, + [39] = { + ["id"] = "rune.stat_90012347", + ["text"] = "Adds # to # Lightning Damage against Shocked Enemies", + ["type"] = "augment", + }, + [40] = { + ["id"] = "rune.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "augment", + }, + [41] = { + ["id"] = "rune.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "augment", + }, + [42] = { + ["id"] = "rune.stat_731403740", + ["text"] = "Gain #% of Damage as Extra Damage of all Elements", + ["type"] = "augment", + }, + [43] = { + ["id"] = "rune.stat_3823333703", + ["text"] = "Bonded: #% increased Damage against Immobilised Enemies", + ["type"] = "augment", + }, + [44] = { + ["id"] = "rune.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "augment", + }, + [45] = { + ["id"] = "rune.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "augment", + }, + [46] = { + ["id"] = "rune.stat_975988108", + ["text"] = "Bonded: Archon recovery period expires #% faster", + ["type"] = "augment", + }, + [47] = { + ["id"] = "rune.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "augment", + }, + [48] = { + ["id"] = "rune.stat_1981392722", + ["text"] = "Bonded: Regenerate #% of maximum Life per second", + ["type"] = "augment", + }, + [49] = { + ["id"] = "rune.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "augment", + }, + [50] = { + ["id"] = "rune.stat_2561960218", + ["text"] = "Bonded: #% of Skill Mana Costs Converted to Life Costs", + ["type"] = "augment", + }, + [51] = { + ["id"] = "rune.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "augment", + }, + [52] = { + ["id"] = "rune.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "augment", + }, + [53] = { + ["id"] = "rune.stat_2913012734", + ["text"] = "Convert #% of Requirements to Intelligence", + ["type"] = "augment", + }, + [54] = { + ["id"] = "rune.stat_1712188793", + ["text"] = "Bonded: #% chance to gain an additional random Charge when you gain a Charge", + ["type"] = "augment", + }, + [55] = { + ["id"] = "rune.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "augment", + }, + [56] = { + ["id"] = "rune.stat_232299587", + ["text"] = "Bonded: #% increased Cooldown Recovery Rate", + ["type"] = "augment", + }, + [57] = { + ["id"] = "rune.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "augment", + }, + [58] = { + ["id"] = "rune.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "augment", + }, + [59] = { + ["id"] = "rune.stat_2546200564", + ["text"] = "Bonded: #% increased Duration of Elemental Ailments on Enemies", + ["type"] = "augment", + }, + [60] = { + ["id"] = "rune.stat_4221147896", + ["text"] = "Bonded: #% increased Critical Damage Bonus", + ["type"] = "augment", + }, + [61] = { + ["id"] = "rune.stat_165746512", + ["text"] = "Bonded: #% increased Slowing Potency of Debuffs on You", + ["type"] = "augment", + }, + [62] = { + ["id"] = "rune.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "augment", + }, + [63] = { + ["id"] = "rune.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "augment", + }, + [64] = { + ["id"] = "rune.stat_1482283017", + ["text"] = "Bonded: Fissure Skills have +# to Limit", + ["type"] = "augment", + }, + [65] = { + ["id"] = "rune.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "augment", + }, + [66] = { + ["id"] = "rune.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "augment", + }, + [67] = { + ["id"] = "rune.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "augment", + }, + [68] = { + ["id"] = "rune.stat_3738367433", + ["text"] = "Bonded: Adds # to # Physical Damage to Attacks", + ["type"] = "augment", + }, + [69] = { + ["id"] = "rune.stat_3412619569", + ["text"] = "Bonded: #% increased Damage while Shapeshifted", + ["type"] = "augment", + }, + [70] = { + ["id"] = "rune.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "augment", + }, + [71] = { + ["id"] = "rune.stat_1611856026", + ["text"] = "Bonded: Minions have #% increased Cooldown Recovery Rate for Command Skills", + ["type"] = "augment", + }, + [72] = { + ["id"] = "rune.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "augment", + }, + [73] = { + ["id"] = "rune.stat_3909696841", + ["text"] = "Bonded: #% chance when collecting an Elemental Infusion to gain anadditional Elemental Infusion of the same type", + ["type"] = "augment", + }, + [74] = { + ["id"] = "rune.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "augment", + }, + [75] = { + ["id"] = "rune.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "augment", + }, + [76] = { + ["id"] = "rune.stat_2077615515", + ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", + ["type"] = "augment", + }, + [77] = { + ["id"] = "rune.stat_635535560", + ["text"] = "Bonded: Gain #% of Damage as Extra Physical Damage", + ["type"] = "augment", + }, + [78] = { + ["id"] = "rune.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "augment", + }, + [79] = { + ["id"] = "rune.stat_532897212", + ["text"] = "Bonded: #% increased Mana Cost Efficiency while on Low Mana", + ["type"] = "augment", + }, + [80] = { + ["id"] = "rune.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "augment", + }, + [81] = { + ["id"] = "rune.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "augment", + }, + [82] = { + ["id"] = "rune.stat_1496740334", + ["text"] = "Convert #% of Requirements to Dexterity", + ["type"] = "augment", + }, + [83] = { + ["id"] = "rune.stat_243313994", + ["text"] = "Bonded: # to Level of all Attack Skills", + ["type"] = "augment", + }, + [84] = { + ["id"] = "rune.stat_1631975646", + ["text"] = "Bonded: #% increased Projectile Speed", + ["type"] = "augment", + }, + [85] = { + ["id"] = "rune.stat_408302348", + ["text"] = "Bonded: #% to Maximum Fire Resistance", + ["type"] = "augment", + }, + [86] = { + ["id"] = "rune.stat_2704225257", + ["text"] = "# to Spirit", + ["type"] = "augment", + }, + [87] = { + ["id"] = "rune.stat_3308150554", + ["text"] = "Bonded: Adds # to # Fire damage to Attacks", + ["type"] = "augment", + }, + [88] = { + ["id"] = "rune.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", + ["type"] = "augment", + }, + [89] = { + ["id"] = "rune.stat_4042480703", + ["text"] = "Bonded: #% to Maximum Cold Resistance", + ["type"] = "augment", + }, + [90] = { + ["id"] = "rune.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["type"] = "augment", + }, + [91] = { + ["id"] = "rune.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", + ["type"] = "augment", + }, + [92] = { + ["id"] = "rune.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "augment", + }, + [93] = { + ["id"] = "rune.stat_839375491", + ["text"] = "Bonded: Minions Revive #% faster", + ["type"] = "augment", + }, + [94] = { + ["id"] = "rune.stat_4254029169", + ["text"] = "Bonded: Meta Skills have #% increased Reservation Efficiency", + ["type"] = "augment", + }, + [95] = { + ["id"] = "rune.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "augment", + }, + [96] = { + ["id"] = "rune.stat_3435915371", + ["text"] = "Bonded: #% increased Spirit Reservation Efficiency", + ["type"] = "augment", + }, + [97] = { + ["id"] = "rune.stat_2729035954", + ["text"] = "Bonded: #% increased Reservation Efficiency of Companion Skills", + ["type"] = "augment", + }, + [98] = { + ["id"] = "rune.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "augment", + }, + [99] = { + ["id"] = "rune.stat_610569665", + ["text"] = "# to Spirit per 2 Levels", + ["type"] = "augment", + }, + [100] = { + ["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", + }, + [101] = { + ["id"] = "rune.stat_807013157", + ["text"] = "Bonded: Every Rage also grants #% increased Spell Damage", + ["type"] = "augment", + }, + [102] = { + ["id"] = "rune.stat_1556124492", + ["text"] = "Convert #% of Requirements to Strength", + ["type"] = "augment", + }, + [103] = { + ["id"] = "rune.stat_782230869", + ["text"] = "#% increased Magnitude of Non-Damaging Ailments you inflict", + ["type"] = "augment", + }, + [104] = { + ["id"] = "rune.stat_1299166504", + ["text"] = "Bonded: #% increased Reservation Efficiency of Herald Skills", + ["type"] = "augment", + }, + [105] = { + ["id"] = "rune.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "augment", + }, + [106] = { + ["id"] = "rune.stat_1381474422", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", + ["type"] = "augment", + }, + [107] = { + ["id"] = "rune.stat_2986637363", + ["text"] = "Bonded: #% increased Duration of Damaging Ailments on Enemies", + ["type"] = "augment", + }, + [108] = { + ["id"] = "rune.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "augment", + }, + [109] = { + ["id"] = "rune.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["type"] = "augment", + }, + [110] = { + ["id"] = "rune.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "augment", + }, + [111] = { + ["id"] = "rune.stat_774059442", + ["text"] = "# to maximum Runic Ward", + ["type"] = "augment", + }, + [112] = { + ["id"] = "rune.stat_263495202", + ["text"] = "#% increased Cost Efficiency", + ["type"] = "augment", + }, + [113] = { + ["id"] = "rune.stat_1597408611", + ["text"] = "Bonded: Prevent #% of Damage from Deflected Hits", + ["type"] = "augment", + }, + [114] = { + ["id"] = "rune.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "augment", + }, + [115] = { + ["id"] = "rune.stat_1382805233", + ["text"] = "#% increased Deflection Rating while moving", + ["type"] = "augment", + }, + [116] = { + ["id"] = "rune.stat_3266426611", + ["text"] = "Bonded: #% increased Thorns damage", + ["type"] = "augment", + }, + [117] = { + ["id"] = "rune.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "augment", + }, + [118] = { + ["id"] = "rune.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "augment", + }, + [119] = { + ["id"] = "rune.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "augment", + }, + [120] = { + ["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", + }, + [121] = { + ["id"] = "rune.stat_2269618934", + ["text"] = "Bonded: Gain #% of maximum Life as Extra maximum Runic Ward", + ["type"] = "augment", + }, + [122] = { + ["id"] = "rune.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "augment", + }, + [123] = { + ["id"] = "rune.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "augment", + }, + [124] = { + ["id"] = "rune.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", + ["type"] = "augment", + }, + [125] = { + ["id"] = "rune.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "augment", + }, + [126] = { + ["id"] = "rune.stat_1756854510", + ["text"] = "Bonded: #% increased Stun Recovery", + ["type"] = "augment", + }, + [127] = { + ["id"] = "rune.stat_831559873", + ["text"] = "Bonded: #% increased Guard gained", + ["type"] = "augment", + }, + [128] = { + ["id"] = "rune.stat_542243093", + ["text"] = "Bonded: #% increased Warcry Cooldown Recovery Rate", + ["type"] = "augment", + }, + [129] = { + ["id"] = "rune.stat_3898665772", + ["text"] = "Bonded: #% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "augment", + }, + [130] = { + ["id"] = "rune.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "augment", + }, + [131] = { + ["id"] = "rune.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "augment", + }, + [132] = { + ["id"] = "rune.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "augment", + }, + [133] = { + ["id"] = "rune.stat_1419386315", + ["text"] = "Bonded: Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "augment", + }, + [134] = { + ["id"] = "rune.stat_757050353", + ["text"] = "# to # Lightning Thorns damage", + ["type"] = "augment", + }, + [135] = { + ["id"] = "rune.stat_674141348", + ["text"] = "Bonded: #% increased Attack Damage while Shapeshifted", + ["type"] = "augment", + }, + [136] = { + ["id"] = "rune.stat_144568384", + ["text"] = "Bonded: #% increased Skill Speed while Shapeshifted", + ["type"] = "augment", + }, + [137] = { + ["id"] = "rune.stat_2100249038", + ["text"] = "Bonded: #% of Maximum Life Converted to Energy Shield", + ["type"] = "augment", + }, + [138] = { + ["id"] = "rune.stat_310945763", + ["text"] = "#% increased Life Cost Efficiency", + ["type"] = "augment", + }, + [139] = { + ["id"] = "rune.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "augment", + }, + [140] = { + ["id"] = "rune.stat_3311629379", + ["text"] = "Bonded: #% increased Critical Hit Chance while Shapeshifted", + ["type"] = "augment", + }, + [141] = { + ["id"] = "rune.stat_953010920", + ["text"] = "Bonded: #% to all Elemental Resistances", + ["type"] = "augment", + }, + [142] = { + ["id"] = "rune.stat_3144895835", + ["text"] = "Bonded: #% increased Magnitude of Bleeding on You", + ["type"] = "augment", + }, + [143] = { + ["id"] = "rune.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "augment", + }, + [144] = { + ["id"] = "rune.stat_2134854700", + ["text"] = "Bonded: #% chance for Damage of Enemies Hitting you to be Unlucky", + ["type"] = "augment", + }, + [145] = { + ["id"] = "rune.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "augment", + }, + [146] = { + ["id"] = "rune.stat_2336012075", + ["text"] = "Bonded: #% increased Mana Cost Efficiency", + ["type"] = "augment", + }, + [147] = { + ["id"] = "rune.stat_1984310483", + ["text"] = "Enemies you Curse take #% increased Damage", + ["type"] = "augment", + }, + [148] = { + ["id"] = "rune.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "augment", + }, + [149] = { + ["id"] = "rune.stat_763465498", + ["text"] = "Bonded: #% increased Charm Charges gained", + ["type"] = "augment", + }, + [150] = { + ["id"] = "rune.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", + ["type"] = "augment", + }, + [151] = { + ["id"] = "rune.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "augment", + }, + [152] = { + ["id"] = "rune.stat_3854332662", + ["text"] = "Bonded: #% increased Area of Effect of Curses", + ["type"] = "augment", + }, + [153] = { + ["id"] = "rune.stat_830161081", + ["text"] = "#% increased Runic Ward", + ["type"] = "augment", + }, + [154] = { + ["id"] = "rune.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "augment", + }, + [155] = { + ["id"] = "rune.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", + ["type"] = "augment", + }, + [156] = { + ["id"] = "rune.stat_2453678274", + ["text"] = "Bonded: #% increased Crossbow Reload Speed", + ["type"] = "augment", + }, + [157] = { + ["id"] = "rune.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "augment", + }, + [158] = { + ["id"] = "rune.stat_3449499156", + ["text"] = "Bonded: Minions have #% increased Area of Effect", + ["type"] = "augment", + }, + [159] = { + ["id"] = "rune.stat_538981065", + ["text"] = "Grenades have #% chance to activate a second time", + ["type"] = "augment", + }, + [160] = { + ["id"] = "rune.stat_827242569", + ["text"] = "Bonded: # to maximum Energy Shield", + ["type"] = "augment", + }, + [161] = { + ["id"] = "rune.stat_2352183092", + ["text"] = "Bonded: #% increased Mana Recovery rate while your Companion is in your Presence", + ["type"] = "augment", + }, + [162] = { + ["id"] = "rune.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "augment", + }, + [163] = { + ["id"] = "rune.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "augment", + }, + [164] = { + ["id"] = "rune.stat_3484657501", + ["text"] = "# to Armour (Local)", + ["type"] = "augment", + }, + [165] = { + ["id"] = "rune.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "augment", + }, + [166] = { + ["id"] = "rune.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "augment", + }, + [167] = { + ["id"] = "rune.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "augment", + }, + [168] = { + ["id"] = "rune.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "augment", + }, + [169] = { + ["id"] = "rune.stat_217649179", + ["text"] = "Bonded: #% increased Curse Magnitudes", + ["type"] = "augment", + }, + [170] = { + ["id"] = "rune.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "augment", + }, + [171] = { + ["id"] = "rune.stat_1236190486", + ["text"] = "Bonded: #% increased effect of Archon Buffs on you", + ["type"] = "augment", + }, + [172] = { + ["id"] = "rune.stat_3227486464", + ["text"] = "Bonded: Remnants you create have #% increased effect", + ["type"] = "augment", + }, + [173] = { + ["id"] = "rune.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "augment", + }, + [174] = { + ["id"] = "rune.stat_3351086592", + ["text"] = "Bonded: #% to Chaos Resistance", + ["type"] = "augment", + }, + [175] = { + ["id"] = "rune.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "augment", + }, + [176] = { + ["id"] = "rune.stat_1570901920", + ["text"] = "Bonded: Gain #% of Physical Damage as extra Chaos Damage", + ["type"] = "augment", + }, + [177] = { + ["id"] = "rune.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "augment", + }, + [178] = { + ["id"] = "rune.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "augment", + }, + [179] = { + ["id"] = "rune.stat_1755296234", + ["text"] = "Targets can be affected by # of your Poisons at the same time", + ["type"] = "augment", + }, + [180] = { + ["id"] = "rune.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "augment", + }, + [181] = { + ["id"] = "rune.stat_2916861134", + ["text"] = "#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", + ["type"] = "augment", + }, + [182] = { + ["id"] = "rune.stat_3286003349", + ["text"] = "Bonded: Storm Skills have +# to Limit", + ["type"] = "augment", + }, + [183] = { + ["id"] = "rune.stat_554899692", + ["text"] = "# Charm Slot (Global)", + ["type"] = "augment", + }, + [184] = { + ["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", + }, + [185] = { + ["id"] = "rune.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "augment", + }, + [186] = { + ["id"] = "rune.stat_258119672", + ["text"] = "# metre to Dodge Roll distance", + ["type"] = "augment", + }, + [187] = { + ["id"] = "rune.stat_2074866941", + ["text"] = "#% increased Exposure Effect", + ["type"] = "augment", + }, + [188] = { + ["id"] = "rune.stat_2200571612", + ["text"] = "#% of Armour also applies to Lightning Damage", + ["type"] = "augment", + }, + [189] = { + ["id"] = "rune.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "augment", + }, + [190] = { + ["id"] = "rune.stat_3331247603", + ["text"] = "Bonded: #% increased amount of Life Leeched", + ["type"] = "augment", + }, + [191] = { + ["id"] = "rune.stat_3891661462", + ["text"] = "Bonded: #% increased Magnitude of Non-Damaging Ailments you inflict", + ["type"] = "augment", + }, + [192] = { + ["id"] = "rune.stat_915264788", + ["text"] = "#% increased Thorns Critical Hit Chance", + ["type"] = "augment", + }, + [193] = { + ["id"] = "rune.stat_3373098634", + ["text"] = "Bonded: Remnants can be collected from #% further away", + ["type"] = "augment", + }, + [194] = { + ["id"] = "rune.stat_3414796717", + ["text"] = "Bonded: #% increased Attack Speed", + ["type"] = "augment", + }, + [195] = { + ["id"] = "rune.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "augment", + }, + [196] = { + ["id"] = "rune.stat_649025131", + ["text"] = "#% increased Movement Speed when on Low Life", + ["type"] = "augment", + }, + [197] = { + ["id"] = "rune.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "augment", + }, + [198] = { + ["id"] = "rune.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "augment", + }, + [199] = { + ["id"] = "rune.stat_264750496", + ["text"] = "Bonded: #% of Damage taken Recouped as Life", + ["type"] = "augment", + }, + [200] = { + ["id"] = "rune.stat_4258524206", + ["text"] = "#% chance to build an additional Combo on Hit", + ["type"] = "augment", + }, + [201] = { + ["id"] = "rune.stat_826685275", + ["text"] = "Bonded: #% of Armour also applies to Elemental Damage while Shapeshifted", + ["type"] = "augment", + }, + [202] = { + ["id"] = "rune.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "augment", + }, + [203] = { + ["id"] = "rune.stat_1947060170", + ["text"] = "#% of Armour also applies to Cold Damage", + ["type"] = "augment", + }, + [204] = { + ["id"] = "rune.stat_3897831687", + ["text"] = "#% of Armour also applies to Fire Damage", + ["type"] = "augment", + }, + [205] = { + ["id"] = "rune.stat_2573124363", + ["text"] = "Bonded: # to Armour", + ["type"] = "augment", + }, + [206] = { + ["id"] = "rune.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "augment", + }, + [207] = { + ["id"] = "rune.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", + ["type"] = "augment", + }, + [208] = { + ["id"] = "rune.stat_51757548", + ["text"] = "Bonded: #% increased Armour and Evasion Rating when on Low Life", + ["type"] = "augment", + }, + [209] = { + ["id"] = "rune.stat_3742865955", + ["text"] = "Minions deal #% increased Damage with Command Skills", + ["type"] = "augment", + }, + [210] = { + ["id"] = "rune.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "augment", + }, + [211] = { + ["id"] = "rune.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "augment", + }, + [212] = { + ["id"] = "rune.stat_1555237944", + ["text"] = "#% chance when you gain a Charge to gain an additional Charge", + ["type"] = "augment", + }, + [213] = { + ["id"] = "rune.stat_3533065815", + ["text"] = "Bonded: # to Evasion Rating", + ["type"] = "augment", + }, + [214] = { + ["id"] = "rune.stat_3537994888", + ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", + ["type"] = "augment", + }, + [215] = { + ["id"] = "rune.stat_687156079", + ["text"] = "# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", + ["type"] = "augment", + }, + [216] = { + ["id"] = "rune.stat_2608793552", + ["text"] = "Attacks Break Armour equal to #% of maximum Runic Ward", + ["type"] = "augment", + }, + [217] = { + ["id"] = "rune.stat_851475033", + ["text"] = "Bonded: #% increased Armour if you haven't Dodge Rolled Recently", + ["type"] = "augment", + }, + [218] = { + ["id"] = "rune.stat_1197632982", + ["text"] = "# to Armour per 1 Spirit", + ["type"] = "augment", + }, + [219] = { + ["id"] = "rune.stat_282990844", + ["text"] = "+# to Deflection Rating per 10 maximum Runic Ward", + ["type"] = "augment", + }, + [220] = { + ["id"] = "rune.stat_1112792773", + ["text"] = "Bonded: #% increased Immobilisation buildup", + ["type"] = "augment", + }, + [221] = { + ["id"] = "rune.stat_4012965551", + ["text"] = "Bonded: Banner Skills have #% increased Aura Magnitudes", + ["type"] = "augment", + }, + [222] = { + ["id"] = "rune.stat_3378643287", + ["text"] = "Bonded: #% increased Exposure Effect", + ["type"] = "augment", + }, + [223] = { + ["id"] = "rune.stat_1728593484", + ["text"] = "Bonded: Minions deal #% increased Damage", + ["type"] = "augment", + }, + [224] = { + ["id"] = "rune.stat_1433756169", + ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", + ["type"] = "augment", + }, + [225] = { + ["id"] = "rune.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "augment", + }, + [226] = { + ["id"] = "rune.stat_540694930", + ["text"] = "Minions in your Presence have Onslaught while you are on Low Runic Ward", + ["type"] = "augment", + }, + [227] = { + ["id"] = "rune.stat_3678845069", + ["text"] = "Attacks with this Weapon have #% chance to inflict Exposure", + ["type"] = "augment", + }, + [228] = { + ["id"] = "rune.stat_4058681894", + ["text"] = "You have no Critical Damage Bonus", + ["type"] = "augment", + }, + [229] = { + ["id"] = "rune.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", + ["type"] = "augment", + }, + [230] = { + ["id"] = "rune.stat_1528013281", + ["text"] = "Bonded: Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "augment", + }, + [231] = { + ["id"] = "rune.stat_162036024", + ["text"] = "1% increased Energy Shield Recharge Rate per # maximum Runic Ward", + ["type"] = "augment", + }, + [232] = { + ["id"] = "rune.stat_3448627618", + ["text"] = "Bonded: #% to Cold Resistance", + ["type"] = "augment", + }, + [233] = { + ["id"] = "rune.stat_2410766865", + ["text"] = "Bonded: #% increased Life Regeneration rate while Shapeshifted", + ["type"] = "augment", + }, + [234] = { + ["id"] = "rune.stat_3473409233", + ["text"] = "Lose #% of maximum Life per second while Sprinting", + ["type"] = "augment", + }, + [235] = { + ["id"] = "rune.stat_1911097163", + ["text"] = "Allies in your Presence Regenerate #% of your Maximum Life per second", + ["type"] = "augment", + }, + [236] = { + ["id"] = "rune.stat_1999910726", + ["text"] = "Remnants you create have #% increased effect", + ["type"] = "augment", + }, + [237] = { + ["id"] = "rune.stat_4129869957", + ["text"] = "Bonded: #% increased Endurance, Frenzy and Power Charge Duration", + ["type"] = "augment", + }, + [238] = { + ["id"] = "rune.stat_553018427", + ["text"] = "#% increased Mana Cost Efficiency of Command Skills", + ["type"] = "augment", + }, + [239] = { + ["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", + }, + [240] = { + ["id"] = "rune.stat_1342402057", + ["text"] = "Bonded: #% increased Reservation Efficiency of Minion Skills", + ["type"] = "augment", + }, + [241] = { + ["id"] = "rune.stat_1228682002", + ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", + ["type"] = "augment", + }, + [242] = { + ["id"] = "rune.stat_1919509054", + ["text"] = "Your Energy Shield Recharge starts when your Minions are Reformed", + ["type"] = "augment", + }, + [243] = { + ["id"] = "rune.stat_103706408", + ["text"] = "Rolls only the minimum or maximum Damage value for Physical Damage", + ["type"] = "augment", + }, + [244] = { + ["id"] = "rune.stat_3837226732", + ["text"] = "Bonded: #% increased Attack Speed while missing Runic Ward", + ["type"] = "augment", + }, + [245] = { + ["id"] = "rune.stat_267552601", + ["text"] = "Spell damage Penetrates #% of enemy Elemental Resistances while on Low Runic Ward", + ["type"] = "augment", + }, + [246] = { + ["id"] = "rune.stat_4128954176", + ["text"] = "Bonded: #% increased Elemental Ailment Threshold", + ["type"] = "augment", + }, + [247] = { + ["id"] = "rune.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "augment", + }, + [248] = { + ["id"] = "rune.stat_3037261703", + ["text"] = "Bonded: #% increased Elemental Damage", + ["type"] = "augment", + }, + [249] = { + ["id"] = "rune.stat_1020945697", + ["text"] = "#% less maximum Life", + ["type"] = "augment", + }, + [250] = { + ["id"] = "rune.stat_935518591", + ["text"] = "Critical Hit chance is Lucky against Parried enemies", + ["type"] = "augment", + }, + [251] = { + ["id"] = "rune.stat_2876843277", + ["text"] = "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", + ["type"] = "augment", + }, + [252] = { + ["id"] = "rune.stat_2586152168", + ["text"] = "Archon recovery period expires #% faster", + ["type"] = "augment", + }, + [253] = { + ["id"] = "rune.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "augment", + }, + [254] = { + ["id"] = "rune.stat_280497929", + ["text"] = "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", + ["type"] = "augment", + }, + [255] = { + ["id"] = "rune.stat_4063732952", + ["text"] = "#% increased Spell Damage while your Companion is in your Presence", + ["type"] = "augment", + }, + [256] = { + ["id"] = "rune.stat_1433896639", + ["text"] = "Transforms all Fire and Cold modifiers on the item into equivalent Lightning modifiers", + ["type"] = "augment", + }, + [257] = { + ["id"] = "rune.stat_1823959929", + ["text"] = "Bonded: Recover #% of maximum Life when one of your Minions is Revived", + ["type"] = "augment", + }, + [258] = { + ["id"] = "rune.stat_4058552370", + ["text"] = "Bonded: Invocated Spells have #% chance to consume half as much Energy", + ["type"] = "augment", + }, + [259] = { + ["id"] = "rune.stat_3040571529", + ["text"] = "#% increased Deflection Rating", + ["type"] = "augment", + }, + [260] = { + ["id"] = "rune.stat_1678831767", + ["text"] = "Recover # Life when you Block", + ["type"] = "augment", + }, + [261] = { + ["id"] = "rune.stat_2691854696", + ["text"] = "Bonded: Damage of Enemies Hitting you is Unlucky ifyour Runic Ward has been damaged Recently", + ["type"] = "augment", + }, + [262] = { + ["id"] = "rune.stat_2589309582", + ["text"] = "Bonded: #% increased Lightning Damage", + ["type"] = "augment", + }, + [263] = { + ["id"] = "rune.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", + ["type"] = "augment", + }, + [264] = { + ["id"] = "rune.stat_1441491952", + ["text"] = "Bonded: #% reduced Shock duration on you", + ["type"] = "augment", + }, + [265] = { + ["id"] = "rune.stat_3801067695", + ["text"] = "#% reduced effect of Shock on you", + ["type"] = "augment", + }, + [266] = { + ["id"] = "rune.stat_1392112423", + ["text"] = "#% increased Armour and Evasion Rating while on Low Runic Ward", + ["type"] = "augment", + }, + [267] = { + ["id"] = "rune.stat_901007505", + ["text"] = "Bonded: Minions have #% to all Elemental Resistances", + ["type"] = "augment", + }, + [268] = { + ["id"] = "rune.stat_3151560620", + ["text"] = "#% increased Damage per each different Companion in your Presence", + ["type"] = "augment", + }, + [269] = { + ["id"] = "rune.stat_3515226849", + ["text"] = "Recover #% of maximum Runic Ward when one of your Reviving Minions is Killed", + ["type"] = "augment", + }, + [270] = { + ["id"] = "rune.stat_2248594298", + ["text"] = "Bonded: When Volatility on you explodes, you regain an equivalent amount of Volatility", + ["type"] = "augment", + }, + [271] = { + ["id"] = "rune.stat_889552744", + ["text"] = "Minions take #% of Physical Damage as Lightning Damage", + ["type"] = "augment", + }, + [272] = { + ["id"] = "rune.stat_3570773271", + ["text"] = "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", + ["type"] = "augment", + }, + [273] = { + ["id"] = "rune.stat_2905013875", + ["text"] = "Bonded: Recover #% of Maximum Mana when you collect a Remnant", + ["type"] = "augment", + }, + [274] = { + ["id"] = "rune.stat_3482326075", + ["text"] = "Remnants can be collected from #% further away", + ["type"] = "augment", + }, + [275] = { + ["id"] = "rune.stat_1404850498", + ["text"] = "Bonded: #% to all Maximum Elemental Resistances while on full Runic Ward", + ["type"] = "augment", + }, + [276] = { + ["id"] = "rune.stat_602344904", + ["text"] = "Transforms all Cold and Lightning modifiers on the item into equivalent Fire modifiers", + ["type"] = "augment", + }, + [277] = { + ["id"] = "rune.stat_3134782172", + ["text"] = "Bonded: Regenerate #% of maximum Energy Shield per second", + ["type"] = "augment", + }, + [278] = { + ["id"] = "rune.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["type"] = "augment", + }, + [279] = { + ["id"] = "rune.stat_1799351208", + ["text"] = "Bonded: Allies in your Presence Regenerate #% of your Maximum Life per second", + ["type"] = "augment", + }, + [280] = { + ["id"] = "rune.stat_1624833382", + ["text"] = "Transforms all Fire, Cold and Lightning modifiers on the item into equivalent Chaos modifiers", + ["type"] = "augment", + }, + [281] = { + ["id"] = "rune.stat_155735928", + ["text"] = "Bonded: #% increased Glory generation", + ["type"] = "augment", + }, + [282] = { + ["id"] = "rune.stat_2328443419", + ["text"] = "#% chance to create an additional Remnant", + ["type"] = "augment", + }, + [283] = { + ["id"] = "rune.stat_2051864330", + ["text"] = "Bonded: #% increased Life Regeneration rate", + ["type"] = "augment", + }, + [284] = { + ["id"] = "rune.stat_3444646646", + ["text"] = "Gain # Druidic Prowess when you Heavy Stun a Rare or Unique Enemy", + ["type"] = "augment", + }, + [285] = { + ["id"] = "rune.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", + ["type"] = "augment", + }, + [286] = { + ["id"] = "rune.stat_4168500604", + ["text"] = "Bonded: #% increased Life and Mana Recovery from Flasks", + ["type"] = "augment", + }, + [287] = { + ["id"] = "rune.stat_1539508682", + ["text"] = "Companions in your Presence have #% to all Elemental Resistances", + ["type"] = "augment", + }, + [288] = { + ["id"] = "rune.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "augment", + }, + [289] = { + ["id"] = "rune.stat_4065951768", + ["text"] = "#% increased Skill Effect Duration with Plant Skills", + ["type"] = "augment", + }, + [290] = { + ["id"] = "rune.stat_451260031", + ["text"] = "Bonded: # to maximum number of Elemental Infusions", + ["type"] = "augment", + }, + [291] = { + ["id"] = "rune.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "augment", + }, + [292] = { + ["id"] = "rune.stat_2448633171", + ["text"] = "#% of Damage taken bypasses Energy Shield", + ["type"] = "augment", + }, + [293] = { + ["id"] = "rune.stat_1816212773", + ["text"] = "Bonded: Companions have #% increased Area of Effect", + ["type"] = "augment", + }, + [294] = { + ["id"] = "rune.stat_731781020", + ["text"] = "Flasks gain # charges per Second", + ["type"] = "augment", + }, + [295] = { + ["id"] = "rune.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", + ["type"] = "augment", + }, + [296] = { + ["id"] = "rune.stat_594547430", + ["text"] = "Remove a Damaging Ailment when you use a Command Skill", + ["type"] = "augment", + }, + [297] = { + ["id"] = "rune.stat_2829985691", + ["text"] = "#% increased Armour, Evasion and Energy Shield while your Companion is in your Presence", + ["type"] = "augment", + }, + [298] = { + ["id"] = "rune.stat_2502507413", + ["text"] = "Bonded: #% increased Fire Damage", + ["type"] = "augment", + }, + [299] = { + ["id"] = "rune.stat_330530785", + ["text"] = "#% increased Immobilisation buildup", + ["type"] = "augment", + }, + [300] = { + ["id"] = "rune.stat_3734640451", + ["text"] = "Adds # to # Cold Damage against Chilled Enemies", + ["type"] = "augment", + }, + [301] = { + ["id"] = "rune.stat_1777925108", + ["text"] = "Bonded: #% increased Attack Speed while your Companion is in your Presence", + ["type"] = "augment", + }, + [302] = { + ["id"] = "rune.stat_921688168", + ["text"] = "Bonded: # to Maximum Power Charges", + ["type"] = "augment", + }, + [303] = { + ["id"] = "rune.stat_477534953", + ["text"] = "Bonded: #% increased Block chance", + ["type"] = "augment", + }, + [304] = { + ["id"] = "rune.stat_3145796865", + ["text"] = "Mana Recovery from Regeneration is also applied to Runic Ward", + ["type"] = "augment", + }, + [305] = { + ["id"] = "rune.stat_2390027291", + ["text"] = "When socketed, transforms all Fire and Lightning modifiers to equivalent Cold modifiers", + ["type"] = "augment", + }, + [306] = { + ["id"] = "rune.stat_1256853273", + ["text"] = "Bonded: Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "augment", + }, + [307] = { + ["id"] = "rune.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "augment", + }, + [308] = { + ["id"] = "rune.stat_3816212813", + ["text"] = "Bonded: Gain # Rage on Melee Hit", + ["type"] = "augment", + }, + [309] = { + ["id"] = "rune.stat_227512798", + ["text"] = "Bonded: #% increased Chaos Damage", + ["type"] = "augment", + }, + [310] = { + ["id"] = "rune.stat_2339851060", + ["text"] = "Bonded: # to Maximum Endurance Charges", + ["type"] = "augment", + }, + [311] = { + ["id"] = "rune.stat_1693515857", + ["text"] = "Gain #% of Damage as Extra Physical Damage per ten percent missing Mana", + ["type"] = "augment", + }, + [312] = { + ["id"] = "rune.stat_4282982513", + ["text"] = "Increases and Reductions to Movement Speed also apply to Energy Shield Recharge Rate", + ["type"] = "augment", + }, + [313] = { + ["id"] = "rune.stat_2420303482", + ["text"] = "Bonded: Regenerate # Runic Ward per second", + ["type"] = "augment", + }, + [314] = { + ["id"] = "rune.stat_1396011622", + ["text"] = "Bonded: #% increased Runic Ward Regeneration Rate if you've dealt a Critical Hit Recently", + ["type"] = "augment", + }, + [315] = { + ["id"] = "rune.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "augment", + }, + [316] = { + ["id"] = "rune.stat_2663359259", + ["text"] = "#% increased total Power counted by Warcries", + ["type"] = "augment", + }, + [317] = { + ["id"] = "rune.stat_3132681620", + ["text"] = "Can roll Chronomancy modifiers", + ["type"] = "augment", + }, + [318] = { + ["id"] = "rune.stat_1585886916", + ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", + ["type"] = "augment", + }, + [319] = { + ["id"] = "rune.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "augment", + }, + [320] = { + ["id"] = "rune.stat_1279298634", + ["text"] = "Bonded: #% increased Effect of Non-Damaging Ailments on you", + ["type"] = "augment", + }, + [321] = { + ["id"] = "rune.stat_3814102597", + ["text"] = "All damage taken bypasses Runic Ward", + ["type"] = "augment", + }, + [322] = { + ["id"] = "rune.stat_2838678452", + ["text"] = "+# to Stun Threshold per 10 maximum Runic Ward", + ["type"] = "augment", + }, + [323] = { + ["id"] = "rune.stat_632743438", + ["text"] = "Allies in your Presence have #% increased Movement Speed", + ["type"] = "augment", + }, + [324] = { + ["id"] = "rune.stat_2681952497", + ["text"] = "Plants have a #% chance to immediately Overgrow when they enter your Presence for the first time", + ["type"] = "augment", + }, + [325] = { + ["id"] = "rune.stat_3634438849", + ["text"] = "Bonded: #% increased maximum Runic Ward", + ["type"] = "augment", + }, + [326] = { + ["id"] = "rune.stat_2191621386", + ["text"] = "#% of Armour also applies to Chaos Damage while on full Energy Shield", + ["type"] = "augment", + }, + [327] = { + ["id"] = "rune.stat_2882351629", + ["text"] = "Companions deal #% more Damage for each different type of dead Companion you have", + ["type"] = "augment", + }, + [328] = { + ["id"] = "rune.stat_3291917242", + ["text"] = "Bonded: #% chance for Charms you use to not consume Charges", + ["type"] = "augment", + }, + [329] = { + ["id"] = "rune.stat_1937310173", + ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", + ["type"] = "augment", + }, + [330] = { + ["id"] = "rune.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["type"] = "augment", + }, + [331] = { + ["id"] = "rune.stat_3793026369", + ["text"] = "Bonded: Plants have a #% chance to immediately Overgrow when they enter your Presence for the first time", + ["type"] = "augment", + }, + [332] = { + ["id"] = "rune.stat_1963398329", + ["text"] = "Can have # additional Crafted Modifier", + ["type"] = "augment", + }, + [333] = { + ["id"] = "rune.stat_129783399", + ["text"] = "Bonded: Minions have #% additional Physical Damage Reduction", + ["type"] = "augment", + }, + [334] = { + ["id"] = "rune.stat_3903510399", + ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", + ["type"] = "augment", + }, + [335] = { + ["id"] = "rune.stat_2547063279", + ["text"] = "Can roll Decay modifiers", + ["type"] = "augment", + }, + [336] = { + ["id"] = "rune.stat_1984345909", + ["text"] = "Bonded: #% increased Withered Magnitude", + ["type"] = "augment", + }, + [337] = { + ["id"] = "rune.stat_2942439603", + ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", + ["type"] = "augment", + }, + [338] = { + ["id"] = "rune.stat_457982334", + ["text"] = "Bonded: #% increased Global Armour, Evasion and Energy Shield", + ["type"] = "augment", + }, + [339] = { + ["id"] = "rune.stat_4200448078", + ["text"] = "Companions in your Presence Gain #% of Damage as Extra Damage of a random Element", + ["type"] = "augment", + }, + [340] = { + ["id"] = "rune.stat_466741396", + ["text"] = "Bonded: #% increased Stun Threshold", + ["type"] = "augment", + }, + [341] = { + ["id"] = "rune.stat_751944209", + ["text"] = "#% increased Stun Threshold if you've been Stunned Recently", + ["type"] = "augment", + }, + [342] = { + ["id"] = "rune.stat_597420223", + ["text"] = "Bonded: #% increased Stun buildup while Shapeshifted", + ["type"] = "augment", + }, + [343] = { + ["id"] = "rune.stat_750452124", + ["text"] = "Bonded: Companions have #% increased maximum Life", + ["type"] = "augment", + }, + [344] = { + ["id"] = "rune.stat_2233558630", + ["text"] = "Bonded: #% increased Cold Damage", + ["type"] = "augment", + }, + [345] = { + ["id"] = "rune.stat_3087034595", + ["text"] = "#% increased Block chance while your Companion is in your Presence", + ["type"] = "augment", + }, + [346] = { + ["id"] = "rune.stat_3294435116", + ["text"] = "Bonded: #% to Lightning Resistance", + ["type"] = "augment", + }, + [347] = { + ["id"] = "rune.stat_1995345015", + ["text"] = "Gain maximum Runic Ward equal to #% of this Weapon's maximum damage", + ["type"] = "augment", + }, + [348] = { + ["id"] = "rune.stat_762761075", + ["text"] = "#% less Mana Regeneration Rate", + ["type"] = "augment", + }, + [349] = { + ["id"] = "rune.stat_666077204", + ["text"] = "Companions have #% increased Attack Speed", + ["type"] = "augment", + }, + [350] = { + ["id"] = "rune.stat_3617669804", + ["text"] = "Gain #% of Damage as Extra Damage of a random Element", + ["type"] = "augment", + }, + [351] = { + ["id"] = "rune.stat_2652394701", + ["text"] = "Companions in your Presence gain # Rage on hit", + ["type"] = "augment", + }, + [352] = { + ["id"] = "rune.stat_1963589548", + ["text"] = "Every 4 seconds, gain Guard equal to #% of maximum Runic Ward for 2 seconds", + ["type"] = "augment", + }, + [353] = { + ["id"] = "rune.stat_1480688478", + ["text"] = "One of your Persistent Minions revives when an Offering expires", + ["type"] = "augment", + }, + [354] = { + ["id"] = "rune.stat_2231410646", + ["text"] = "A random Skill that requires Glory generates #% of its maximum Glory when your Marks Activate", + ["type"] = "augment", + }, + [355] = { + ["id"] = "rune.stat_2897413282", + ["text"] = "# to all Attributes", + ["type"] = "augment", + }, + [356] = { + ["id"] = "rune.stat_1770091046", + ["text"] = "Can roll Berserking modifiers", + ["type"] = "augment", + }, + [357] = { + ["id"] = "rune.stat_3972229254", + ["text"] = "#% of Armour also applies to Chaos Damage", + ["type"] = "augment", + }, + [358] = { + ["id"] = "rune.stat_769693350", + ["text"] = "Bonded: # Maximum Life per Level", + ["type"] = "augment", + }, + [359] = { + ["id"] = "rune.stat_864484981", + ["text"] = "Bonded: Temporary Minion Skills have # to Limit of Minions summoned", + ["type"] = "augment", + }, + [360] = { + ["id"] = "rune.stat_818877178", + ["text"] = "#% increased Parried Debuff Magnitude", + ["type"] = "augment", + }, + [361] = { + ["id"] = "rune.stat_3986710072", + ["text"] = "Bonded: # to Maximum Frenzy Charges", + ["type"] = "augment", + }, + [362] = { + ["id"] = "rune.stat_201058524", + ["text"] = "Bonded: #% increased Archon Buff duration", + ["type"] = "augment", + }, + [363] = { + ["id"] = "rune.stat_1134865274", + ["text"] = "Bonded: #% to Quality of all Skills", + ["type"] = "augment", + }, + [364] = { + ["id"] = "rune.stat_726496846", + ["text"] = "Idols socketed in this item gain the benefits of their Bonded modifiers", + ["type"] = "augment", + }, + [365] = { + ["id"] = "rune.stat_859452080", + ["text"] = "Bonded: #% to maximum Block chance", + ["type"] = "augment", + }, + [366] = { + ["id"] = "rune.stat_3203854378", + ["text"] = "#% increased Attack Speed if you have Blocked Recently", + ["type"] = "augment", + }, + [367] = { + ["id"] = "rune.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "augment", + }, + [368] = { + ["id"] = "rune.stat_201332984", + ["text"] = "Can roll Marksman modifiers", + ["type"] = "augment", + }, + [369] = { + ["id"] = "rune.stat_2418344131", + ["text"] = "Bonded: #% increased Projectile Damage", + ["type"] = "augment", + }, + [370] = { + ["id"] = "rune.stat_1549287843", + ["text"] = "Projectiles have #% chance to Fork", + ["type"] = "augment", + }, + [371] = { + ["id"] = "rune.stat_1811977226", + ["text"] = "Gain Onslaught for # seconds when your Marks Activate", + ["type"] = "augment", + }, + [372] = { + ["id"] = "rune.stat_4224773381", + ["text"] = "Bonded: #% increased Endurance Charge Duration", + ["type"] = "augment", + }, + [373] = { + ["id"] = "rune.stat_901336307", + ["text"] = "Gain 1 Endurance Charge on reaching Low Life, only once every 2 seconds", + ["type"] = "augment", + }, + [374] = { + ["id"] = "rune.stat_3863682550", + ["text"] = "Gain Guard equal to #% of maximum Life for 4 seconds on taking Savage Hit", + ["type"] = "augment", + }, + [375] = { + ["id"] = "rune.stat_95238288", + ["text"] = "Bonded: #% increased Damage for each type of Elemental Ailment on Enemy", + ["type"] = "augment", + }, + [376] = { + ["id"] = "rune.stat_834058335", + ["text"] = "Bonded: Minions have #% increased Movement Speed", + ["type"] = "augment", + }, + [377] = { + ["id"] = "rune.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "augment", + }, + [378] = { + ["id"] = "rune.stat_2889034188", + ["text"] = "Targets that are Blinded, Maimed, and Bleeding cannot Evade your Hits", + ["type"] = "augment", + }, + [379] = { + ["id"] = "rune.stat_1416406066", + ["text"] = "#% increased Spirit", + ["type"] = "augment", + }, + [380] = { + ["id"] = "rune.stat_262946222", + ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", + ["type"] = "augment", + }, + [381] = { + ["id"] = "rune.stat_1773391344", + ["text"] = "Bonded: Invocated skills have #% increased Maximum Energy", + ["type"] = "augment", + }, + [382] = { + ["id"] = "rune.stat_2804691275", + ["text"] = "Bonded: Buffs on you expire #% faster", + ["type"] = "augment", + }, + [383] = { + ["id"] = "rune.stat_2001460689", + ["text"] = "Bonded: Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "augment", + }, + [384] = { + ["id"] = "rune.stat_1350120957", + ["text"] = "Bonded: #% faster Curse Activation", + ["type"] = "augment", + }, + [385] = { + ["id"] = "rune.stat_627339348", + ["text"] = "Adds # to # Fire Damage to Attacks against Ignited Enemies", + ["type"] = "augment", + }, + [386] = { + ["id"] = "rune.stat_858934954", + ["text"] = "Bonded: Allies in your Presence Gain #% of Damage as Extra Chaos Damage", + ["type"] = "augment", + }, + [387] = { + ["id"] = "rune.stat_386720106", + ["text"] = "Gain #% of maximum Life as Extra maximum Runic Ward", + ["type"] = "augment", + }, + [388] = { + ["id"] = "rune.stat_2342427527", + ["text"] = "Bonded: Companions in your Presence have #% to Chaos Resistance", + ["type"] = "augment", + }, + [389] = { + ["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", + }, + [390] = { + ["id"] = "rune.stat_2122116143", + ["text"] = "Bonded: #% increased Life Recovery Rate while your Companion is in your Presence", + ["type"] = "augment", + }, + [391] = { + ["id"] = "rune.stat_1568578715", + ["text"] = "Bonded: Charms gain # charge per Second", + ["type"] = "augment", + }, + [392] = { + ["id"] = "rune.stat_1779262102", + ["text"] = "#% increased Mana Recovery rate while your Companion is in your Presence", + ["type"] = "augment", + }, + [393] = { + ["id"] = "rune.stat_1927467683", + ["text"] = "Can roll Soul modifiers", + ["type"] = "augment", + }, + [394] = { + ["id"] = "rune.stat_1676950499", + ["text"] = "Can roll Destruction modifiers", + ["type"] = "augment", + }, + [395] = { + ["id"] = "rune.stat_718638445", + ["text"] = "# Suffix Modifier allowed", + ["type"] = "augment", + }, + [396] = { + ["id"] = "rune.stat_678691134", + ["text"] = "Bonded: #% increased Blind Effect", + ["type"] = "augment", + }, + [397] = { + ["id"] = "rune.stat_2579974553", + ["text"] = "Runic Ward Regeneration Rate is doubled", + ["type"] = "augment", + }, + [398] = { + ["id"] = "rune.stat_2651867031", + ["text"] = "Bonded: #% increased Critical Hit Chance", + ["type"] = "augment", + }, + [399] = { + ["id"] = "rune.stat_3370077792", + ["text"] = "Enemies you Critically Hit get #% increased Life Regeneration Rate for 4 seconds", + ["type"] = "augment", + }, + [400] = { + ["id"] = "rune.stat_1879206848", + ["text"] = "#% increased effect of Fully Broken Armour", + ["type"] = "augment", + }, + [401] = { + ["id"] = "rune.stat_25786091", + ["text"] = "Enemies have no Critical Damage Bonus for # seconds after you Blind them", + ["type"] = "augment", + }, + [402] = { + ["id"] = "rune.stat_1323701627", + ["text"] = "When you generate a Power Charge, Allies in your Presence generate that Charge instead", + ["type"] = "augment", + }, + [403] = { + ["id"] = "rune.stat_3745435177", + ["text"] = "Bonded: #% increased maximum Energy Shield if you've consumed a Power Charge Recently", + ["type"] = "augment", + }, + [404] = { + ["id"] = "rune.stat_1073847159", + ["text"] = "# to Spirit per Idol socketed in your Equipment", + ["type"] = "augment", + }, + [405] = { + ["id"] = "rune.stat_2012253422", + ["text"] = "Bonded: #% increased Spirit", + ["type"] = "augment", + }, + [406] = { + ["id"] = "rune.stat_3557924960", + ["text"] = "Gain #% of Damage as Extra Damage of a random Element perRune Socketed in Equipped Items", + ["type"] = "augment", + }, + [407] = { + ["id"] = "rune.stat_3037356641", + ["text"] = "Bonded: #% increased Armour if you've consumed an Endurance Charge Recently", + ["type"] = "augment", + }, + [408] = { + ["id"] = "rune.stat_3257561708", + ["text"] = "When you generate an Endurance Charge, Allies in your Presence generate that Charge instead", + ["type"] = "augment", + }, + [409] = { + ["id"] = "rune.stat_1083521623", + ["text"] = "Bonded: Break #% increased Armour", + ["type"] = "augment", + }, + [410] = { + ["id"] = "rune.stat_2959554008", + ["text"] = "Bonded: #% increased Evasion Rating if you've consumed a Frenzy Charge Recently", + ["type"] = "augment", + }, + [411] = { + ["id"] = "rune.stat_4106964676", + ["text"] = "Bonded: #% increased Movement Speed", + ["type"] = "augment", + }, + [412] = { + ["id"] = "rune.stat_3143918757", + ["text"] = "#% increased Glory generation", + ["type"] = "augment", + }, + [413] = { + ["id"] = "rune.stat_1933674044", + ["text"] = "Destroys all Augment Sockets on the item to create a Jewel Socket", + ["type"] = "augment", + }, + [414] = { + ["id"] = "rune.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + ["type"] = "augment", + }, + [415] = { + ["id"] = "rune.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", + ["type"] = "augment", + }, + [416] = { + ["id"] = "rune.stat_3353733343", + ["text"] = "When you generate a Frenzy Charge, Allies in your Presence generate that Charge instead", + ["type"] = "augment", + }, + [417] = { + ["id"] = "rune.stat_3128773415", + ["text"] = "Your speed is Unaffected by Slows while Sprinting", + ["type"] = "augment", + }, + [418] = { + ["id"] = "rune.stat_1751756891", + ["text"] = "Bonded: #% increased Runic Ward Cost Efficiency", + ["type"] = "augment", + }, + [419] = { + ["id"] = "rune.stat_3035971497", + ["text"] = "Attacks spend #% of your maximum Runic Ward if possible to gain that much added Physical damage", + ["type"] = "augment", + }, + [420] = { + ["id"] = "rune.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "augment", + }, + [421] = { + ["id"] = "rune.stat_3842722415", + ["text"] = "Bonded: #% increased Movement Speed while Sprinting", + ["type"] = "augment", + }, + [422] = { + ["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", + }, + [423] = { + ["id"] = "rune.stat_2530800730", + ["text"] = "Bonded: #% increased Skill Effect Duration with Plant Skills", + ["type"] = "augment", + }, + [424] = { + ["id"] = "rune.stat_3038857346", + ["text"] = "Bonded: #% increased Stun Buildup", + ["type"] = "augment", + }, + [425] = { + ["id"] = "rune.stat_3724971246", + ["text"] = "Bonded: #% increased Area of Effect for Attacks", + ["type"] = "augment", + }, + [426] = { + ["id"] = "rune.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "augment", + }, + [427] = { + ["id"] = "rune.stat_3655769732", + ["text"] = "#% to Quality of all Skills", + ["type"] = "augment", + }, + [428] = { + ["id"] = "rune.stat_2590797182", + ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", + ["type"] = "augment", + }, + [429] = { + ["id"] = "rune.stat_2045949233", + ["text"] = "#% chance for Slam Skills you use yourself to cause an additional Aftershock", + ["type"] = "augment", + }, + [430] = { + ["id"] = "rune.stat_3835589934", + ["text"] = "Bonded: #% increased Damage while your Companion is in your Presence", + ["type"] = "augment", + }, + [431] = { + ["id"] = "rune.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", + ["type"] = "augment", + }, + }, + ["id"] = "rune", + ["label"] = "Augment", + }, + [8] = { + ["entries"] = { + [1] = { + ["id"] = "desecrated.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "desecrated", + }, + [2] = { + ["id"] = "desecrated.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "desecrated", + }, + [3] = { + ["id"] = "desecrated.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", + ["type"] = "desecrated", + }, + [4] = { + ["id"] = "desecrated.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "desecrated", + }, + [5] = { + ["id"] = "desecrated.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "desecrated", + }, + [6] = { + ["id"] = "desecrated.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "desecrated", + }, + [7] = { + ["id"] = "desecrated.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "desecrated", + }, + [8] = { + ["id"] = "desecrated.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "desecrated", + }, + [9] = { + ["id"] = "desecrated.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", + ["type"] = "desecrated", + }, + [10] = { + ["id"] = "desecrated.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "desecrated", + }, + [11] = { + ["id"] = "desecrated.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "desecrated", + }, + [12] = { + ["id"] = "desecrated.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "desecrated", + }, + [13] = { + ["id"] = "desecrated.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "desecrated", + }, + [14] = { + ["id"] = "desecrated.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "desecrated", + }, + [15] = { + ["id"] = "desecrated.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", + ["type"] = "desecrated", + }, + [16] = { + ["id"] = "desecrated.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "desecrated", + }, + [17] = { + ["id"] = "desecrated.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", + ["type"] = "desecrated", + }, + [18] = { + ["id"] = "desecrated.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", + ["type"] = "desecrated", + }, + [19] = { + ["id"] = "desecrated.stat_1195319608", + ["text"] = "#% increased Energy Shield from Equipped Body Armour", + ["type"] = "desecrated", + }, + [20] = { + ["id"] = "desecrated.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "desecrated", + }, + [21] = { + ["id"] = "desecrated.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "desecrated", + }, + [22] = { + ["id"] = "desecrated.stat_3465022881", + ["text"] = "#% to Lightning and Chaos Resistances", + ["type"] = "desecrated", + }, + [23] = { + ["id"] = "desecrated.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "desecrated", + }, + [24] = { + ["id"] = "desecrated.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "desecrated", + }, + [25] = { + ["id"] = "desecrated.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "desecrated", + }, + [26] = { + ["id"] = "desecrated.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "desecrated", + }, + [27] = { + ["id"] = "desecrated.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "desecrated", + }, + [28] = { + ["id"] = "desecrated.stat_378817135", + ["text"] = "#% to Fire and Chaos Resistances", + ["type"] = "desecrated", + }, + [29] = { + ["id"] = "desecrated.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "desecrated", + }, + [30] = { + ["id"] = "desecrated.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "desecrated", + }, + [31] = { + ["id"] = "desecrated.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "desecrated", + }, + [32] = { + ["id"] = "desecrated.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "desecrated", + }, + [33] = { + ["id"] = "desecrated.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "desecrated", + }, + [34] = { + ["id"] = "desecrated.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", + ["type"] = "desecrated", + }, + [35] = { + ["id"] = "desecrated.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", + ["type"] = "desecrated", + }, + [36] = { + ["id"] = "desecrated.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "desecrated", + }, + [37] = { + ["id"] = "desecrated.stat_3484657501", + ["text"] = "# to Armour (Local)", + ["type"] = "desecrated", + }, + [38] = { + ["id"] = "desecrated.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "desecrated", + }, + [39] = { + ["id"] = "desecrated.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", + ["type"] = "desecrated", + }, + [40] = { + ["id"] = "desecrated.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "desecrated", + }, + [41] = { + ["id"] = "desecrated.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "desecrated", + }, + [42] = { + ["id"] = "desecrated.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "desecrated", + }, + [43] = { + ["id"] = "desecrated.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "desecrated", + }, + [44] = { + ["id"] = "desecrated.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "desecrated", + }, + [45] = { + ["id"] = "desecrated.stat_1062208444", + ["text"] = "#% increased Armour (Local)", + ["type"] = "desecrated", + }, + [46] = { + ["id"] = "desecrated.stat_3393628375", + ["text"] = "#% to Cold and Chaos Resistances", + ["type"] = "desecrated", + }, + [47] = { + ["id"] = "desecrated.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "desecrated", + }, + [48] = { + ["id"] = "desecrated.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "desecrated", + }, + [49] = { + ["id"] = "desecrated.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "desecrated", + }, + [50] = { + ["id"] = "desecrated.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "desecrated", + }, + [51] = { + ["id"] = "desecrated.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "desecrated", + }, + [52] = { + ["id"] = "desecrated.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "desecrated", + }, + [53] = { + ["id"] = "desecrated.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", + ["type"] = "desecrated", + }, + [54] = { + ["id"] = "desecrated.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["type"] = "desecrated", + }, + [55] = { + ["id"] = "desecrated.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "desecrated", + }, + [56] = { + ["id"] = "desecrated.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "desecrated", + }, + [57] = { + ["id"] = "desecrated.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["type"] = "desecrated", + }, + [58] = { + ["id"] = "desecrated.stat_53386210", + ["text"] = "#% increased Spirit Reservation Efficiency", + ["type"] = "desecrated", + }, + [59] = { + ["id"] = "desecrated.stat_3176481473", + ["text"] = "#% increased Spell Damage while on Full Energy Shield", + ["type"] = "desecrated", + }, + [60] = { + ["id"] = "desecrated.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", + ["type"] = "desecrated", + }, + [61] = { + ["id"] = "desecrated.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "desecrated", + }, + [62] = { + ["id"] = "desecrated.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "desecrated", + }, + [63] = { + ["id"] = "desecrated.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "desecrated", + }, + [64] = { + ["id"] = "desecrated.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "desecrated", + }, + [65] = { + ["id"] = "desecrated.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "desecrated", + }, + [66] = { + ["id"] = "desecrated.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "desecrated", + }, + [67] = { + ["id"] = "desecrated.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "desecrated", + }, + [68] = { + ["id"] = "desecrated.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "desecrated", + }, + [69] = { + ["id"] = "desecrated.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "desecrated", + }, + [70] = { + ["id"] = "desecrated.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "desecrated", + }, + [71] = { + ["id"] = "desecrated.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "desecrated", + }, + [72] = { + ["id"] = "desecrated.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "desecrated", + }, + [73] = { + ["id"] = "desecrated.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "desecrated", + }, + [74] = { + ["id"] = "desecrated.stat_518292764", + ["text"] = "#% to Critical Hit Chance", + ["type"] = "desecrated", + }, + [75] = { + ["id"] = "desecrated.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["type"] = "desecrated", + }, + [76] = { + ["id"] = "desecrated.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "desecrated", + }, + [77] = { + ["id"] = "desecrated.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "desecrated", + }, + [78] = { + ["id"] = "desecrated.stat_2704225257", + ["text"] = "# to Spirit", + ["type"] = "desecrated", + }, + [79] = { + ["id"] = "desecrated.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "desecrated", + }, + [80] = { + ["id"] = "desecrated.stat_693180608", + ["text"] = "#% increased Damage while your Companion is in your Presence", + ["type"] = "desecrated", + }, + [81] = { + ["id"] = "desecrated.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "desecrated", + }, + [82] = { + ["id"] = "desecrated.stat_2604619892", + ["text"] = "#% increased Duration of Elemental Ailments on Enemies", + ["type"] = "desecrated", + }, + [83] = { + ["id"] = "desecrated.stat_1535626285", + ["text"] = "# to Strength and Intelligence", + ["type"] = "desecrated", + }, + [84] = { + ["id"] = "desecrated.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "desecrated", + }, + [85] = { + ["id"] = "desecrated.stat_1373860425", + ["text"] = "#% increased Spell Damage with Spells that cost Life", + ["type"] = "desecrated", + }, + [86] = { + ["id"] = "desecrated.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "desecrated", + }, + [87] = { + ["id"] = "desecrated.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "desecrated", + }, + [88] = { + ["id"] = "desecrated.stat_3490187949", + ["text"] = "Area contains # additional Abysses", + ["type"] = "desecrated", + }, + [89] = { + ["id"] = "desecrated.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "desecrated", + }, + [90] = { + ["id"] = "desecrated.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "desecrated", + }, + [91] = { + ["id"] = "desecrated.stat_1136768410", + ["text"] = "#% increased Cast Speed when on Low Life", + ["type"] = "desecrated", + }, + [92] = { + ["id"] = "desecrated.stat_538848803", + ["text"] = "# to Strength and Dexterity", + ["type"] = "desecrated", + }, + [93] = { + ["id"] = "desecrated.stat_666077204", + ["text"] = "Companions have #% increased Attack Speed", + ["type"] = "desecrated", + }, + [94] = { + ["id"] = "desecrated.stat_3509362078", + ["text"] = "#% increased Evasion Rating from Equipped Body Armour", + ["type"] = "desecrated", + }, + [95] = { + ["id"] = "desecrated.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "desecrated", + }, + [96] = { + ["id"] = "desecrated.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "desecrated", + }, + [97] = { + ["id"] = "desecrated.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", + ["type"] = "desecrated", + }, + [98] = { + ["id"] = "desecrated.stat_3544050945", + ["text"] = "#% of Spell Mana Cost Converted to Life Cost", + ["type"] = "desecrated", + }, + [99] = { + ["id"] = "desecrated.stat_9187492", + ["text"] = "# to Level of all Melee Skills", + ["type"] = "desecrated", + }, + [100] = { + ["id"] = "desecrated.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "desecrated", + }, + [101] = { + ["id"] = "desecrated.stat_3932115504", + ["text"] = "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", + ["type"] = "desecrated", + }, + [102] = { + ["id"] = "desecrated.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "desecrated", + }, + [103] = { + ["id"] = "desecrated.stat_4246007234", + ["text"] = "#% increased Attack Damage while on Low Life", + ["type"] = "desecrated", + }, + [104] = { + ["id"] = "desecrated.stat_1177404658", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield", + ["type"] = "desecrated", + }, + [105] = { + ["id"] = "desecrated.stat_2706625504", + ["text"] = "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", + ["type"] = "desecrated", + }, + [106] = { + ["id"] = "desecrated.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "desecrated", + }, + [107] = { + ["id"] = "desecrated.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "desecrated", + }, + [108] = { + ["id"] = "desecrated.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["type"] = "desecrated", + }, + [109] = { + ["id"] = "desecrated.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "desecrated", + }, + [110] = { + ["id"] = "desecrated.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "desecrated", + }, + [111] = { + ["id"] = "desecrated.stat_2300185227", + ["text"] = "# to Dexterity and Intelligence", + ["type"] = "desecrated", + }, + [112] = { + ["id"] = "desecrated.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "desecrated", + }, + [113] = { + ["id"] = "desecrated.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "desecrated", + }, + [114] = { + ["id"] = "desecrated.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "desecrated", + }, + [115] = { + ["id"] = "desecrated.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "desecrated", + }, + [116] = { + ["id"] = "desecrated.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "desecrated", + }, + [117] = { + ["id"] = "desecrated.stat_4256531808", + ["text"] = "Abyss Pits in Area are twice as likely to have Rewards", + ["type"] = "desecrated", + }, + [118] = { + ["id"] = "desecrated.stat_2337295272", + ["text"] = "Minions deal #% increased Damage if you've Hit Recently", + ["type"] = "desecrated", + }, + [119] = { + ["id"] = "desecrated.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "desecrated", + }, + [120] = { + ["id"] = "desecrated.stat_2158617060", + ["text"] = "#% increased Archon Buff duration", + ["type"] = "desecrated", + }, + [121] = { + ["id"] = "desecrated.stat_3891355829|1", + ["text"] = "Upgrades Radius to Medium", + ["type"] = "desecrated", + }, + [122] = { + ["id"] = "desecrated.stat_4188894176", + ["text"] = "#% increased Damage with Bows", + ["type"] = "desecrated", + }, + [123] = { + ["id"] = "desecrated.stat_1168851547", + ["text"] = "Natural Rare Monsters in Area have # extra Abyssal Modifier", + ["type"] = "desecrated", + }, + [124] = { + ["id"] = "desecrated.stat_944630113", + ["text"] = "Abysses spawn #% increased Monsters", + ["type"] = "desecrated", + }, + [125] = { + ["id"] = "desecrated.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["type"] = "desecrated", + }, + [126] = { + ["id"] = "desecrated.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "desecrated", + }, + [127] = { + ["id"] = "desecrated.stat_360553763", + ["text"] = "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", + ["type"] = "desecrated", + }, + [128] = { + ["id"] = "desecrated.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "desecrated", + }, + [129] = { + ["id"] = "desecrated.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "desecrated", + }, + [130] = { + ["id"] = "desecrated.stat_2468595624", + ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies within 2m", + ["type"] = "desecrated", + }, + [131] = { + ["id"] = "desecrated.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", + ["type"] = "desecrated", + }, + [132] = { + ["id"] = "desecrated.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "desecrated", + }, + [133] = { + ["id"] = "desecrated.stat_2825946427", + ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", + ["type"] = "desecrated", + }, + [134] = { + ["id"] = "desecrated.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "desecrated", + }, + [135] = { + ["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", + }, + [136] = { + ["id"] = "desecrated.stat_3131442032", + ["text"] = "#% increased Grenade Damage", + ["type"] = "desecrated", + }, + [137] = { + ["id"] = "desecrated.stat_3561837752", + ["text"] = "#% of Leech is Instant", + ["type"] = "desecrated", + }, + [138] = { + ["id"] = "desecrated.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "desecrated", + }, + [139] = { + ["id"] = "desecrated.stat_299996", + ["text"] = "#% increased Attack Speed while your Companion is in your Presence", + ["type"] = "desecrated", + }, + [140] = { + ["id"] = "desecrated.stat_2573406169", + ["text"] = "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", + ["type"] = "desecrated", + }, + [141] = { + ["id"] = "desecrated.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "desecrated", + }, + [142] = { + ["id"] = "desecrated.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "desecrated", + }, + [143] = { + ["id"] = "desecrated.stat_2741291867", + ["text"] = "Area is overrun by the Abyssal", + ["type"] = "desecrated", + }, + [144] = { + ["id"] = "desecrated.stat_656461285", + ["text"] = "#% increased Intelligence", + ["type"] = "desecrated", + }, + [145] = { + ["id"] = "desecrated.stat_1015576579", + ["text"] = "#% increased Armour from Equipped Body Armour", + ["type"] = "desecrated", + }, + [146] = { + ["id"] = "desecrated.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", + ["type"] = "desecrated", + }, + [147] = { + ["id"] = "desecrated.stat_243380454", + ["text"] = "# additional Rare Monsters are spawned from Abysses", + ["type"] = "desecrated", + }, + [148] = { + ["id"] = "desecrated.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "desecrated", + }, + [149] = { + ["id"] = "desecrated.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "desecrated", + }, + [150] = { + ["id"] = "desecrated.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", + ["type"] = "desecrated", + }, + [151] = { + ["id"] = "desecrated.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "desecrated", + }, + [152] = { + ["id"] = "desecrated.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "desecrated", + }, + [153] = { + ["id"] = "desecrated.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["type"] = "desecrated", + }, + [154] = { + ["id"] = "desecrated.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "desecrated", + }, + [155] = { + ["id"] = "desecrated.stat_2586152168", + ["text"] = "Archon recovery period expires #% faster", + ["type"] = "desecrated", + }, + [156] = { + ["id"] = "desecrated.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "desecrated", + }, + [157] = { + ["id"] = "desecrated.stat_1850249186", + ["text"] = "#% increased Spell Damage per 100 maximum Mana", + ["type"] = "desecrated", + }, + [158] = { + ["id"] = "desecrated.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", + ["type"] = "desecrated", + }, + [159] = { + ["id"] = "desecrated.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", + ["type"] = "desecrated", + }, + [160] = { + ["id"] = "desecrated.stat_3491815140", + ["text"] = "#% increased Spell Damage per 100 Maximum Life", + ["type"] = "desecrated", + }, + [161] = { + ["id"] = "desecrated.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", + ["type"] = "desecrated", + }, + [162] = { + ["id"] = "desecrated.stat_2278777540", + ["text"] = "Abysses lead to an Abyssal Depths", + ["type"] = "desecrated", + }, + [163] = { + ["id"] = "desecrated.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "desecrated", + }, + [164] = { + ["id"] = "desecrated.stat_324210709", + ["text"] = "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", + ["type"] = "desecrated", + }, + [165] = { + ["id"] = "desecrated.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "desecrated", + }, + [166] = { + ["id"] = "desecrated.stat_436406826", + ["text"] = "Players are Marked for Death for # secondsafter killing a Rare or Unique monster", + ["type"] = "desecrated", + }, + [167] = { + ["id"] = "desecrated.stat_1827854662", + ["text"] = "Area contains an additional Incubator Queen", + ["type"] = "desecrated", + }, + [168] = { + ["id"] = "desecrated.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "desecrated", + }, + [169] = { + ["id"] = "desecrated.stat_1999910726", + ["text"] = "Remnants you create have #% increased effect", + ["type"] = "desecrated", + }, + [170] = { + ["id"] = "desecrated.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["type"] = "desecrated", + }, + [171] = { + ["id"] = "desecrated.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "desecrated", + }, + [172] = { + ["id"] = "desecrated.stat_2975078312", + ["text"] = "Abyssal Monsters grant #% increased Experience", + ["type"] = "desecrated", + }, + [173] = { + ["id"] = "desecrated.stat_2975078312", + ["text"] = "Abyss Monsters in your Maps grant #% increased Experience", + ["type"] = "desecrated", + }, + [174] = { + ["id"] = "desecrated.stat_1381474422", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", + ["type"] = "desecrated", + }, + [175] = { + ["id"] = "desecrated.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "desecrated", + }, + [176] = { + ["id"] = "desecrated.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", + ["type"] = "desecrated", + }, + [177] = { + ["id"] = "desecrated.stat_2466011626", + ["text"] = "#% chance for Lightning Damage with Hits to be Lucky", + ["type"] = "desecrated", + }, + [178] = { + ["id"] = "desecrated.stat_414821772", + ["text"] = "Increases and Reductions to Projectile Speed also apply to Damage with Bows", + ["type"] = "desecrated", + }, + [179] = { + ["id"] = "desecrated.stat_2725205297", + ["text"] = "#% increased Magnitude of Unholy Might buffs you grant", + ["type"] = "desecrated", + }, + [180] = { + ["id"] = "desecrated.stat_314741699", + ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", + ["type"] = "desecrated", + }, + [181] = { + ["id"] = "desecrated.stat_734614379", + ["text"] = "#% increased Strength", + ["type"] = "desecrated", + }, + [182] = { + ["id"] = "desecrated.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", + ["type"] = "desecrated", + }, + [183] = { + ["id"] = "desecrated.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "desecrated", + }, + [184] = { + ["id"] = "desecrated.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", + ["type"] = "desecrated", + }, + [185] = { + ["id"] = "desecrated.stat_3891355829|2", + ["text"] = "Upgrades Radius to Large", + ["type"] = "desecrated", + }, + [186] = { + ["id"] = "desecrated.stat_2074866941", + ["text"] = "#% increased Exposure Effect", + ["type"] = "desecrated", + }, + [187] = { + ["id"] = "desecrated.stat_4270096386", + ["text"] = "Hits have #% increased Critical Hit Chance against you", + ["type"] = "desecrated", + }, + [188] = { + ["id"] = "desecrated.stat_4157613372", + ["text"] = "Abyss Pits have #% chance to spawn all Monsters as at least Magic", + ["type"] = "desecrated", + }, + [189] = { + ["id"] = "desecrated.stat_1388221282", + ["text"] = "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", + ["type"] = "desecrated", + }, + [190] = { + ["id"] = "desecrated.stat_3350279336", + ["text"] = "#% increased Cost Efficiency of Attacks", + ["type"] = "desecrated", + }, + [191] = { + ["id"] = "desecrated.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "desecrated", + }, + [192] = { + ["id"] = "desecrated.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "desecrated", + }, + [193] = { + ["id"] = "desecrated.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["type"] = "desecrated", + }, + [194] = { + ["id"] = "desecrated.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "desecrated", + }, + [195] = { + ["id"] = "desecrated.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["type"] = "desecrated", + }, + [196] = { + ["id"] = "desecrated.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "desecrated", + }, + [197] = { + ["id"] = "desecrated.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "desecrated", + }, + [198] = { + ["id"] = "desecrated.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "desecrated", + }, + [199] = { + ["id"] = "desecrated.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", + ["type"] = "desecrated", + }, + [200] = { + ["id"] = "desecrated.stat_1365232741", + ["text"] = "#% increased Grenade Duration", + ["type"] = "desecrated", + }, + [201] = { + ["id"] = "desecrated.stat_3007552094", + ["text"] = "You have Unholy Might", + ["type"] = "desecrated", + }, + [202] = { + ["id"] = "desecrated.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "desecrated", + }, + [203] = { + ["id"] = "desecrated.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["type"] = "desecrated", + }, + [204] = { + ["id"] = "desecrated.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["type"] = "desecrated", + }, + [205] = { + ["id"] = "desecrated.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "desecrated", + }, + [206] = { + ["id"] = "desecrated.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "desecrated", + }, + [207] = { + ["id"] = "desecrated.stat_3040571529", + ["text"] = "#% increased Deflection Rating", + ["type"] = "desecrated", + }, + [208] = { + ["id"] = "desecrated.stat_3668351662", + ["text"] = "#% increased Shock Duration", + ["type"] = "desecrated", + }, + [209] = { + ["id"] = "desecrated.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "desecrated", + }, + [210] = { + ["id"] = "desecrated.stat_1751584857", + ["text"] = "Monsters inflict # Grasping Vine on Hit", + ["type"] = "desecrated", + }, + [211] = { + ["id"] = "desecrated.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "desecrated", + }, + [212] = { + ["id"] = "desecrated.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["type"] = "desecrated", + }, + [213] = { + ["id"] = "desecrated.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", + ["type"] = "desecrated", + }, + [214] = { + ["id"] = "desecrated.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "desecrated", + }, + [215] = { + ["id"] = "desecrated.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "desecrated", + }, + [216] = { + ["id"] = "desecrated.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "desecrated", + }, + [217] = { + ["id"] = "desecrated.stat_1967040409", + ["text"] = "Spell Skills have #% increased Area of Effect", + ["type"] = "desecrated", + }, + [218] = { + ["id"] = "desecrated.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "desecrated", + }, + [219] = { + ["id"] = "desecrated.stat_1692879867", + ["text"] = "#% increased Duration of Bleeding on You", + ["type"] = "desecrated", + }, + [220] = { + ["id"] = "desecrated.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", + ["type"] = "desecrated", + }, + [221] = { + ["id"] = "desecrated.stat_1078309513", + ["text"] = "Invocated Spells deal #% increased Damage", + ["type"] = "desecrated", + }, + [222] = { + ["id"] = "desecrated.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", + ["type"] = "desecrated", + }, + [223] = { + ["id"] = "desecrated.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", + ["type"] = "desecrated", + }, + [224] = { + ["id"] = "desecrated.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", + ["type"] = "desecrated", + }, + [225] = { + ["id"] = "desecrated.stat_232701452", + ["text"] = "#% increased Freeze Buildup if you've consumed an Power Charge Recently", + ["type"] = "desecrated", + }, + [226] = { + ["id"] = "desecrated.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "desecrated", + }, + [227] = { + ["id"] = "desecrated.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "desecrated", + }, + [228] = { + ["id"] = "desecrated.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["type"] = "desecrated", + }, + [229] = { + ["id"] = "desecrated.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", + ["type"] = "desecrated", + }, + [230] = { + ["id"] = "desecrated.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", + ["type"] = "desecrated", + }, + [231] = { + ["id"] = "desecrated.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["type"] = "desecrated", + }, + [232] = { + ["id"] = "desecrated.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", + ["type"] = "desecrated", + }, + [233] = { + ["id"] = "desecrated.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "desecrated", + }, + [234] = { + ["id"] = "desecrated.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["type"] = "desecrated", + }, + [235] = { + ["id"] = "desecrated.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", + ["type"] = "desecrated", + }, + [236] = { + ["id"] = "desecrated.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", + ["type"] = "desecrated", + }, + [237] = { + ["id"] = "desecrated.stat_2896115339", + ["text"] = "#% of Elemental Damage taken Recouped as Energy Shield", + ["type"] = "desecrated", + }, + [238] = { + ["id"] = "desecrated.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["type"] = "desecrated", + }, + [239] = { + ["id"] = "desecrated.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["type"] = "desecrated", + }, + [240] = { + ["id"] = "desecrated.stat_916833363", + ["text"] = "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", + ["type"] = "desecrated", + }, + [241] = { + ["id"] = "desecrated.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "desecrated", + }, + [242] = { + ["id"] = "desecrated.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["type"] = "desecrated", + }, + [243] = { + ["id"] = "desecrated.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["type"] = "desecrated", + }, + [244] = { + ["id"] = "desecrated.stat_2589572664", + ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Mana", + ["type"] = "desecrated", + }, + [245] = { + ["id"] = "desecrated.stat_4097212302", + ["text"] = "# to maximum number of Elemental Infusions", + ["type"] = "desecrated", + }, + [246] = { + ["id"] = "desecrated.stat_599320227", + ["text"] = "#% chance for Trigger skills to refund half of Energy Spent", + ["type"] = "desecrated", + }, + [247] = { + ["id"] = "desecrated.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "desecrated", + }, + [248] = { + ["id"] = "desecrated.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["type"] = "desecrated", + }, + [249] = { + ["id"] = "desecrated.stat_2696027455", + ["text"] = "#% increased Damage with Spears", + ["type"] = "desecrated", + }, + [250] = { + ["id"] = "desecrated.stat_4258524206", + ["text"] = "#% chance to build an additional Combo on Hit", + ["type"] = "desecrated", + }, + [251] = { + ["id"] = "desecrated.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "desecrated", + }, + [252] = { + ["id"] = "desecrated.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "desecrated", + }, + [253] = { + ["id"] = "desecrated.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "desecrated", + }, + [254] = { + ["id"] = "desecrated.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["type"] = "desecrated", + }, + [255] = { + ["id"] = "desecrated.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", + ["type"] = "desecrated", + }, + [256] = { + ["id"] = "desecrated.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", + ["type"] = "desecrated", + }, + [257] = { + ["id"] = "desecrated.stat_710476746", + ["text"] = "#% increased Reload Speed", + ["type"] = "desecrated", + }, + [258] = { + ["id"] = "desecrated.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["type"] = "desecrated", + }, + [259] = { + ["id"] = "desecrated.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "desecrated", + }, + [260] = { + ["id"] = "desecrated.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "desecrated", + }, + [261] = { + ["id"] = "desecrated.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "desecrated", + }, + [262] = { + ["id"] = "desecrated.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "desecrated", + }, + [263] = { + ["id"] = "desecrated.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["type"] = "desecrated", + }, + [264] = { + ["id"] = "desecrated.stat_1327522346", + ["text"] = "#% increased Mana Regeneration Rate while moving", + ["type"] = "desecrated", + }, + [265] = { + ["id"] = "desecrated.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["type"] = "desecrated", + }, + [266] = { + ["id"] = "desecrated.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "desecrated", + }, + [267] = { + ["id"] = "desecrated.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "desecrated", + }, + [268] = { + ["id"] = "desecrated.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["type"] = "desecrated", + }, + [269] = { + ["id"] = "desecrated.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "desecrated", + }, + [270] = { + ["id"] = "desecrated.stat_3146310524", + ["text"] = "Dazes on Hit", + ["type"] = "desecrated", + }, + [271] = { + ["id"] = "desecrated.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["type"] = "desecrated", + }, + [272] = { + ["id"] = "desecrated.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "desecrated", + }, + [273] = { + ["id"] = "desecrated.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", + ["type"] = "desecrated", + }, + [274] = { + ["id"] = "desecrated.stat_3413635271", + ["text"] = "#% increased Reservation Efficiency of Companion Skills", + ["type"] = "desecrated", + }, + [275] = { + ["id"] = "desecrated.stat_2760344900", + ["text"] = "#% chance when you Reload a Crossbow to be immediate", + ["type"] = "desecrated", + }, + [276] = { + ["id"] = "desecrated.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "desecrated", + }, + [277] = { + ["id"] = "desecrated.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "desecrated", + }, + [278] = { + ["id"] = "desecrated.stat_2590797182", + ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", + ["type"] = "desecrated", + }, + [279] = { + ["id"] = "desecrated.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "desecrated", + }, + [280] = { + ["id"] = "desecrated.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "desecrated", + }, + [281] = { + ["id"] = "desecrated.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "desecrated", + }, + [282] = { + ["id"] = "desecrated.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["type"] = "desecrated", + }, + [283] = { + ["id"] = "desecrated.stat_3482326075", + ["text"] = "Remnants can be collected from #% further away", + ["type"] = "desecrated", + }, + [284] = { + ["id"] = "desecrated.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", + ["type"] = "desecrated", + }, + [285] = { + ["id"] = "desecrated.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["type"] = "desecrated", + }, + [286] = { + ["id"] = "desecrated.stat_517664839", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + ["type"] = "desecrated", + }, + [287] = { + ["id"] = "desecrated.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "desecrated", + }, + [288] = { + ["id"] = "desecrated.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "desecrated", + }, + [289] = { + ["id"] = "desecrated.stat_3480095574", + ["text"] = "Charms applied to you have #% increased Effect", + ["type"] = "desecrated", + }, + [290] = { + ["id"] = "desecrated.stat_446027070", + ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Hit", + ["type"] = "desecrated", + }, + [291] = { + ["id"] = "desecrated.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["type"] = "desecrated", + }, + [292] = { + ["id"] = "desecrated.stat_1697191405", + ["text"] = "#% increased Reservation Efficiency of Herald Skills", + ["type"] = "desecrated", + }, + [293] = { + ["id"] = "desecrated.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["type"] = "desecrated", + }, + [294] = { + ["id"] = "desecrated.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", + ["type"] = "desecrated", + }, + [295] = { + ["id"] = "desecrated.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", + ["type"] = "desecrated", + }, + [296] = { + ["id"] = "desecrated.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["type"] = "desecrated", + }, + [297] = { + ["id"] = "desecrated.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "desecrated", + }, + [298] = { + ["id"] = "desecrated.stat_3563080185", + ["text"] = "#% increased Culling Strike Threshold", + ["type"] = "desecrated", + }, + [299] = { + ["id"] = "desecrated.stat_1365079333", + ["text"] = "Players steal the Eaten Souls of Slain Rare Monsters in Area", + ["type"] = "desecrated", + }, + [300] = { + ["id"] = "desecrated.stat_1266185101", + ["text"] = "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", + ["type"] = "desecrated", + }, + [301] = { + ["id"] = "desecrated.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", + ["type"] = "desecrated", + }, + [302] = { + ["id"] = "desecrated.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", + ["type"] = "desecrated", + }, + [303] = { + ["id"] = "desecrated.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "desecrated", + }, + [304] = { + ["id"] = "desecrated.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "desecrated", + }, + [305] = { + ["id"] = "desecrated.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "desecrated", + }, + [306] = { + ["id"] = "desecrated.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "desecrated", + }, + [307] = { + ["id"] = "desecrated.stat_3655769732", + ["text"] = "#% to Quality of all Skills", + ["type"] = "desecrated", + }, + [308] = { + ["id"] = "desecrated.stat_1914226331", + ["text"] = "#% increased Cast Speed while on Full Mana", + ["type"] = "desecrated", + }, + [309] = { + ["id"] = "desecrated.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", + ["type"] = "desecrated", + }, + [310] = { + ["id"] = "desecrated.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "desecrated", + }, + [311] = { + ["id"] = "desecrated.stat_943702197", + ["text"] = "Minions gain #% of their maximum Life as Extra maximum Energy Shield", + ["type"] = "desecrated", + }, + [312] = { + ["id"] = "desecrated.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", + ["type"] = "desecrated", + }, + [313] = { + ["id"] = "desecrated.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "desecrated", + }, + [314] = { + ["id"] = "desecrated.stat_330530785", + ["text"] = "#% increased Immobilisation buildup", + ["type"] = "desecrated", + }, + [315] = { + ["id"] = "desecrated.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "desecrated", + }, + [316] = { + ["id"] = "desecrated.stat_1949851472", + ["text"] = "#% chance when a Charm is used to use another Charm without consuming Charges", + ["type"] = "desecrated", + }, + [317] = { + ["id"] = "desecrated.stat_310945763", + ["text"] = "#% increased Life Cost Efficiency", + ["type"] = "desecrated", + }, + [318] = { + ["id"] = "desecrated.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["type"] = "desecrated", + }, + [319] = { + ["id"] = "desecrated.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", + ["type"] = "desecrated", + }, + [320] = { + ["id"] = "desecrated.stat_160888068", + ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Life", + ["type"] = "desecrated", + }, + [321] = { + ["id"] = "desecrated.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "desecrated", + }, + [322] = { + ["id"] = "desecrated.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "desecrated", + }, + [323] = { + ["id"] = "desecrated.stat_3868118796", + ["text"] = "Attacks Chain an additional time", + ["type"] = "desecrated", + }, + [324] = { + ["id"] = "desecrated.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["type"] = "desecrated", + }, + [325] = { + ["id"] = "desecrated.stat_99927264", + ["text"] = "#% reduced Shock duration on you", + ["type"] = "desecrated", + }, + [326] = { + ["id"] = "desecrated.stat_3028809864", + ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "desecrated", + }, + [327] = { + ["id"] = "desecrated.stat_263495202", + ["text"] = "#% increased Cost Efficiency", + ["type"] = "desecrated", + }, + [328] = { + ["id"] = "desecrated.stat_1104825894", + ["text"] = "#% faster Curse Activation", + ["type"] = "desecrated", + }, + [329] = { + ["id"] = "desecrated.stat_4283407333", + ["text"] = "# to Level of all Skills", + ["type"] = "desecrated", + }, + [330] = { + ["id"] = "desecrated.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "desecrated", + }, + [331] = { + ["id"] = "desecrated.stat_1781372024", + ["text"] = "Recover #% of maximum Life on Killing a Poisoned Enemy", + ["type"] = "desecrated", + }, + [332] = { + ["id"] = "desecrated.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "desecrated", + }, + [333] = { + ["id"] = "desecrated.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["type"] = "desecrated", + }, + [334] = { + ["id"] = "desecrated.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "desecrated", + }, + [335] = { + ["id"] = "desecrated.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "desecrated", + }, + [336] = { + ["id"] = "desecrated.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "desecrated", + }, + [337] = { + ["id"] = "desecrated.stat_3190283174", + ["text"] = "Area has patches of Mana Siphoning Ground", + ["type"] = "desecrated", + }, + [338] = { + ["id"] = "desecrated.stat_2543331226", + ["text"] = "#% increased Damage while you have a Totem", + ["type"] = "desecrated", + }, + [339] = { + ["id"] = "desecrated.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["type"] = "desecrated", + }, + [340] = { + ["id"] = "desecrated.stat_3473929743", + ["text"] = "#% increased Pin Buildup", + ["type"] = "desecrated", + }, + [341] = { + ["id"] = "desecrated.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", + ["type"] = "desecrated", + }, + [342] = { + ["id"] = "desecrated.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["type"] = "desecrated", + }, + [343] = { + ["id"] = "desecrated.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", + ["type"] = "desecrated", + }, + [344] = { + ["id"] = "desecrated.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", + ["type"] = "desecrated", + }, + [345] = { + ["id"] = "desecrated.stat_2474424958", + ["text"] = "Spell Skills have # to maximum number of Summoned Totems", + ["type"] = "desecrated", + }, + [346] = { + ["id"] = "desecrated.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", + ["type"] = "desecrated", + }, + [347] = { + ["id"] = "desecrated.stat_4274247770", + ["text"] = "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", + ["type"] = "desecrated", + }, + [348] = { + ["id"] = "desecrated.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "desecrated", + }, + [349] = { + ["id"] = "desecrated.stat_3950000557", + ["text"] = "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", + ["type"] = "desecrated", + }, + [350] = { + ["id"] = "desecrated.stat_538981065", + ["text"] = "Grenades have #% chance to activate a second time", + ["type"] = "desecrated", + }, + [351] = { + ["id"] = "desecrated.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "desecrated", + }, + [352] = { + ["id"] = "desecrated.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["type"] = "desecrated", + }, + [353] = { + ["id"] = "desecrated.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["type"] = "desecrated", + }, + [354] = { + ["id"] = "desecrated.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", + ["type"] = "desecrated", + }, + [355] = { + ["id"] = "desecrated.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "desecrated", + }, + [356] = { + ["id"] = "desecrated.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "desecrated", + }, + [357] = { + ["id"] = "desecrated.stat_3711973554", + ["text"] = "Invocated Spells have #% chance to consume half as much Energy", + ["type"] = "desecrated", + }, + [358] = { + ["id"] = "desecrated.stat_2705185939", + ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["type"] = "desecrated", + }, + [359] = { + ["id"] = "desecrated.stat_4033618138", + ["text"] = "Recover #% of Maximum Life when you expend at least 10 Combo", + ["type"] = "desecrated", + }, + [360] = { + ["id"] = "desecrated.stat_3972229254", + ["text"] = "#% of Armour also applies to Chaos Damage", + ["type"] = "desecrated", + }, + [361] = { + ["id"] = "desecrated.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["type"] = "desecrated", + }, + [362] = { + ["id"] = "desecrated.stat_300723956", + ["text"] = "Attack Hits apply Incision", + ["type"] = "desecrated", + }, + [363] = { + ["id"] = "desecrated.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["type"] = "desecrated", + }, + [364] = { + ["id"] = "desecrated.stat_1261076060", + ["text"] = "#% increased Life Regeneration rate during Effect of any Life Flask", + ["type"] = "desecrated", + }, + [365] = { + ["id"] = "desecrated.stat_1518586897", + ["text"] = "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", + ["type"] = "desecrated", + }, + [366] = { + ["id"] = "desecrated.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["type"] = "desecrated", + }, + [367] = { + ["id"] = "desecrated.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["type"] = "desecrated", + }, + [368] = { + ["id"] = "desecrated.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", + ["type"] = "desecrated", + }, + [369] = { + ["id"] = "desecrated.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["type"] = "desecrated", + }, + [370] = { + ["id"] = "desecrated.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "desecrated", + }, + [371] = { + ["id"] = "desecrated.stat_2399592398", + ["text"] = "Abysses lead to an Abyssal Boss", + ["type"] = "desecrated", + }, + [372] = { + ["id"] = "desecrated.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["type"] = "desecrated", + }, + [373] = { + ["id"] = "desecrated.stat_147764878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "desecrated", + }, + [374] = { + ["id"] = "desecrated.stat_501873429", + ["text"] = "#% chance for Charms you use to not consume Charges", + ["type"] = "desecrated", + }, + [375] = { + ["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", + }, + [376] = { + ["id"] = "desecrated.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["type"] = "desecrated", + }, + [377] = { + ["id"] = "desecrated.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "desecrated", + }, + [378] = { + ["id"] = "desecrated.stat_3396435291", + ["text"] = "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", + ["type"] = "desecrated", + }, + [379] = { + ["id"] = "desecrated.stat_3927679277", + ["text"] = "#% chance when collecting an Elemental Infusion to gain anadditional Elemental Infusion of the same type", + ["type"] = "desecrated", + }, + [380] = { + ["id"] = "desecrated.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", + ["type"] = "desecrated", + }, + [381] = { + ["id"] = "desecrated.stat_1823942939", + ["text"] = "# to maximum number of Summoned Ballista Totems", + ["type"] = "desecrated", + }, + [382] = { + ["id"] = "desecrated.stat_2272980012", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["type"] = "desecrated", + }, + [383] = { + ["id"] = "desecrated.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "desecrated", + }, + [384] = { + ["id"] = "desecrated.stat_4032352472", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + ["type"] = "desecrated", + }, + [385] = { + ["id"] = "desecrated.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "desecrated", + }, + [386] = { + ["id"] = "desecrated.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", + ["type"] = "desecrated", + }, + [387] = { + ["id"] = "desecrated.stat_3700202631", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + ["type"] = "desecrated", + }, + [388] = { + ["id"] = "desecrated.stat_4121454694", + ["text"] = "Recover #% of maximum Mana when a Charm is used", + ["type"] = "desecrated", + }, + [389] = { + ["id"] = "desecrated.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["type"] = "desecrated", + }, + [390] = { + ["id"] = "desecrated.stat_2715190555", + ["text"] = "#% to Thorns Critical Hit Chance", + ["type"] = "desecrated", + }, + [391] = { + ["id"] = "desecrated.stat_3669820740", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + ["type"] = "desecrated", + }, + [392] = { + ["id"] = "desecrated.stat_242637938", + ["text"] = "#% increased chance to inflict Bleeding", + ["type"] = "desecrated", + }, + [393] = { + ["id"] = "desecrated.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["type"] = "desecrated", + }, + [394] = { + ["id"] = "desecrated.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["type"] = "desecrated", + }, + [395] = { + ["id"] = "desecrated.stat_185580205", + ["text"] = "Charms gain # charge per Second", + ["type"] = "desecrated", + }, + [396] = { + ["id"] = "desecrated.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "desecrated", + }, + [397] = { + ["id"] = "desecrated.stat_2408625104", + ["text"] = "Players and their Minions deal no damage for 3 out of every 10 seconds", + ["type"] = "desecrated", + }, + [398] = { + ["id"] = "desecrated.stat_2544540062", + ["text"] = "Skills which create Fissures have a #% chance to create an additional Fissure", + ["type"] = "desecrated", + }, + [399] = { + ["id"] = "desecrated.stat_1286199571", + ["text"] = "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", + ["type"] = "desecrated", + }, + [400] = { + ["id"] = "desecrated.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["type"] = "desecrated", + }, + [401] = { + ["id"] = "desecrated.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["type"] = "desecrated", + }, + [402] = { + ["id"] = "desecrated.stat_748522257", + ["text"] = "#% increased Stun Duration", + ["type"] = "desecrated", + }, + [403] = { + ["id"] = "desecrated.stat_3481083201", + ["text"] = "#% increased chance to Poison", + ["type"] = "desecrated", + }, + [404] = { + ["id"] = "desecrated.stat_514290151", + ["text"] = "Gain #% of Maximum Mana as Armour", + ["type"] = "desecrated", + }, + [405] = { + ["id"] = "desecrated.stat_3274422940", + ["text"] = "#% increased Ice Crystal Life", + ["type"] = "desecrated", + }, + [406] = { + ["id"] = "desecrated.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["type"] = "desecrated", + }, + [407] = { + ["id"] = "desecrated.stat_4136346606", + ["text"] = "#% increased Spell Damage while wielding a Melee Weapon", + ["type"] = "desecrated", + }, + [408] = { + ["id"] = "desecrated.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["type"] = "desecrated", + }, + [409] = { + ["id"] = "desecrated.stat_656291658", + ["text"] = "#% increased Cast Speed when on Full Life", + ["type"] = "desecrated", + }, + [410] = { + ["id"] = "desecrated.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["type"] = "desecrated", + }, + [411] = { + ["id"] = "desecrated.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "desecrated", + }, + [412] = { + ["id"] = "desecrated.stat_2479683456", + ["text"] = "Minions Regenerate #% of maximum Life per second", + ["type"] = "desecrated", + }, + [413] = { + ["id"] = "desecrated.stat_2250681686", + ["text"] = "Grenade Skills have +# Cooldown Use", + ["type"] = "desecrated", + }, + [414] = { + ["id"] = "desecrated.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", + ["type"] = "desecrated", + }, + [415] = { + ["id"] = "desecrated.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "desecrated", + }, + [416] = { + ["id"] = "desecrated.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "desecrated", + }, + [417] = { + ["id"] = "desecrated.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["type"] = "desecrated", + }, + [418] = { + ["id"] = "desecrated.stat_2013356568", + ["text"] = "Melee Attack Skills have # to maximum number of Summoned Totems", + ["type"] = "desecrated", + }, + [419] = { + ["id"] = "desecrated.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["type"] = "desecrated", + }, + [420] = { + ["id"] = "desecrated.stat_2639966148", + ["text"] = "Minions Revive #% faster", + ["type"] = "desecrated", + }, + [421] = { + ["id"] = "desecrated.stat_752930724", + ["text"] = "Equipment and Skill Gems have #% increased Attribute Requirements", + ["type"] = "desecrated", + }, + [422] = { + ["id"] = "desecrated.stat_1746561819", + ["text"] = "Enemies Hindered by you take #% increased Chaos Damage", + ["type"] = "desecrated", + }, + [423] = { + ["id"] = "desecrated.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["type"] = "desecrated", + }, + [424] = { + ["id"] = "desecrated.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", + ["type"] = "desecrated", + }, + [425] = { + ["id"] = "desecrated.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["type"] = "desecrated", + }, + [426] = { + ["id"] = "desecrated.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["type"] = "desecrated", + }, + [427] = { + ["id"] = "desecrated.stat_212649958", + ["text"] = "Enemies Hindered by you take #% increased Elemental Damage", + ["type"] = "desecrated", + }, + [428] = { + ["id"] = "desecrated.stat_4092130601", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "desecrated", + }, + [429] = { + ["id"] = "desecrated.stat_3666476747", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + ["type"] = "desecrated", + }, + [430] = { + ["id"] = "desecrated.stat_3871530702", + ["text"] = "Conquered Attribute Passive Skills also grant # to Strength", + ["type"] = "desecrated", + }, + [431] = { + ["id"] = "desecrated.stat_1793740180", + ["text"] = "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", + ["type"] = "desecrated", + }, + [432] = { + ["id"] = "desecrated.stat_3313255158", + ["text"] = "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", + ["type"] = "desecrated", + }, + [433] = { + ["id"] = "desecrated.stat_3106718406", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + ["type"] = "desecrated", + }, + [434] = { + ["id"] = "desecrated.stat_693237939", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "desecrated", + }, + [435] = { + ["id"] = "desecrated.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["type"] = "desecrated", + }, + [436] = { + ["id"] = "desecrated.stat_2083058281", + ["text"] = "Enemies you Mark take #% increased Damage", + ["type"] = "desecrated", + }, + [437] = { + ["id"] = "desecrated.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["type"] = "desecrated", + }, + [438] = { + ["id"] = "desecrated.stat_1653682082", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "desecrated", + }, + [439] = { + ["id"] = "desecrated.stat_2849546516", + ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["type"] = "desecrated", + }, + [440] = { + ["id"] = "desecrated.stat_2552484522", + ["text"] = "Conquered Attribute Passive Skills also grant # to all Attributes", + ["type"] = "desecrated", + }, + [441] = { + ["id"] = "desecrated.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["type"] = "desecrated", + }, + [442] = { + ["id"] = "desecrated.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "desecrated", + }, + [443] = { + ["id"] = "desecrated.stat_3628935286", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + ["type"] = "desecrated", + }, + [444] = { + ["id"] = "desecrated.stat_412709880", + ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + ["type"] = "desecrated", + }, + [445] = { + ["id"] = "desecrated.stat_2610562860", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + ["type"] = "desecrated", + }, + [446] = { + ["id"] = "desecrated.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", + ["type"] = "desecrated", + }, + [447] = { + ["id"] = "desecrated.stat_3596695232", + ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "desecrated", + }, + [448] = { + ["id"] = "desecrated.stat_1323216174", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "desecrated", + }, + [449] = { + ["id"] = "desecrated.stat_3065378291", + ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["type"] = "desecrated", + }, + [450] = { + ["id"] = "desecrated.stat_2749595652", + ["text"] = "#% chance for Skills to retain 40% of Glory on use", + ["type"] = "desecrated", + }, + [451] = { + ["id"] = "desecrated.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "desecrated", + }, + [452] = { + ["id"] = "desecrated.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["type"] = "desecrated", + }, + [453] = { + ["id"] = "desecrated.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "desecrated", + }, + [454] = { + ["id"] = "desecrated.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "desecrated", + }, + [455] = { + ["id"] = "desecrated.stat_1697951953", + ["text"] = "#% increased Hazard Damage", + ["type"] = "desecrated", + }, + [456] = { + ["id"] = "desecrated.stat_1119086588", + ["text"] = "Conquered Attribute Passive Skills also grant # to Tribute", + ["type"] = "desecrated", + }, + [457] = { + ["id"] = "desecrated.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "desecrated", + }, + [458] = { + ["id"] = "desecrated.stat_3116427713", + ["text"] = "Conquered Attribute Passive Skills also grant # to Intelligence", + ["type"] = "desecrated", + }, + [459] = { + ["id"] = "desecrated.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", + ["type"] = "desecrated", + }, + [460] = { + ["id"] = "desecrated.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", + ["type"] = "desecrated", + }, + [461] = { + ["id"] = "desecrated.stat_3308030688", + ["text"] = "#% increased Mana Regeneration Rate while stationary", + ["type"] = "desecrated", + }, + [462] = { + ["id"] = "desecrated.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "desecrated", + }, + [463] = { + ["id"] = "desecrated.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["type"] = "desecrated", + }, + [464] = { + ["id"] = "desecrated.stat_1103616075", + ["text"] = "Break Armour equal to #% of Physical Damage dealt", + ["type"] = "desecrated", + }, + [465] = { + ["id"] = "desecrated.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["type"] = "desecrated", + }, + [466] = { + ["id"] = "desecrated.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["type"] = "desecrated", + }, + [467] = { + ["id"] = "desecrated.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "desecrated", + }, + [468] = { + ["id"] = "desecrated.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "desecrated", + }, + [469] = { + ["id"] = "desecrated.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", + ["type"] = "desecrated", + }, + [470] = { + ["id"] = "desecrated.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "desecrated", + }, + [471] = { + ["id"] = "desecrated.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "desecrated", + }, + [472] = { + ["id"] = "desecrated.stat_258119672", + ["text"] = "# metre to Dodge Roll distance", + ["type"] = "desecrated", + }, + [473] = { + ["id"] = "desecrated.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["type"] = "desecrated", + }, + [474] = { + ["id"] = "desecrated.stat_2840989393", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + ["type"] = "desecrated", + }, + [475] = { + ["id"] = "desecrated.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + ["type"] = "desecrated", + }, + [476] = { + ["id"] = "desecrated.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", + ["type"] = "desecrated", + }, + [477] = { + ["id"] = "desecrated.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["type"] = "desecrated", + }, + [478] = { + ["id"] = "desecrated.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "desecrated", + }, + [479] = { + ["id"] = "desecrated.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["type"] = "desecrated", + }, + [480] = { + ["id"] = "desecrated.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["type"] = "desecrated", + }, + [481] = { + ["id"] = "desecrated.stat_4240116297", + ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Damage", + ["type"] = "desecrated", + }, + [482] = { + ["id"] = "desecrated.stat_4180952808", + ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + ["type"] = "desecrated", + }, + [483] = { + ["id"] = "desecrated.stat_980177976", + ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["type"] = "desecrated", + }, + [484] = { + ["id"] = "desecrated.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["type"] = "desecrated", + }, + [485] = { + ["id"] = "desecrated.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["type"] = "desecrated", + }, + [486] = { + ["id"] = "desecrated.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "desecrated", + }, + [487] = { + ["id"] = "desecrated.stat_4258000627", + ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", + ["type"] = "desecrated", + }, + [488] = { + ["id"] = "desecrated.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["type"] = "desecrated", + }, + [489] = { + ["id"] = "desecrated.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["type"] = "desecrated", + }, + [490] = { + ["id"] = "desecrated.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", + ["type"] = "desecrated", + }, + [491] = { + ["id"] = "desecrated.stat_287294012", + ["text"] = "# to # Fire Thorns damage per 100 maximum Life", + ["type"] = "desecrated", + }, + [492] = { + ["id"] = "desecrated.stat_3191479793", + ["text"] = "Offering Skills have #% increased Buff effect", + ["type"] = "desecrated", + }, + [493] = { + ["id"] = "desecrated.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["type"] = "desecrated", + }, + [494] = { + ["id"] = "desecrated.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["type"] = "desecrated", + }, + [495] = { + ["id"] = "desecrated.stat_462424929", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["type"] = "desecrated", + }, + [496] = { + ["id"] = "desecrated.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "desecrated", + }, + [497] = { + ["id"] = "desecrated.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["type"] = "desecrated", + }, + [498] = { + ["id"] = "desecrated.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "desecrated", + }, + [499] = { + ["id"] = "desecrated.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["type"] = "desecrated", + }, + [500] = { + ["id"] = "desecrated.stat_3429148113", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "desecrated", + }, + [501] = { + ["id"] = "desecrated.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["type"] = "desecrated", + }, + [502] = { + ["id"] = "desecrated.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "desecrated", + }, + [503] = { + ["id"] = "desecrated.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["type"] = "desecrated", + }, + [504] = { + ["id"] = "desecrated.stat_3225608889", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + ["type"] = "desecrated", + }, + [505] = { + ["id"] = "desecrated.stat_2523933828", + ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "desecrated", + }, + [506] = { + ["id"] = "desecrated.stat_1045789614", + ["text"] = "#% increased Critical Hit Chance against Marked Enemies", + ["type"] = "desecrated", + }, + [507] = { + ["id"] = "desecrated.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["type"] = "desecrated", + }, + [508] = { + ["id"] = "desecrated.stat_3038857426", + ["text"] = "Conquered Small Passive Skills also grant #% increased Spell damage", + ["type"] = "desecrated", + }, + [509] = { + ["id"] = "desecrated.stat_821948283", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + ["type"] = "desecrated", + }, + [510] = { + ["id"] = "desecrated.stat_3839676903", + ["text"] = "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", + ["type"] = "desecrated", + }, + [511] = { + ["id"] = "desecrated.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", + ["type"] = "desecrated", + }, + [512] = { + ["id"] = "desecrated.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["type"] = "desecrated", + }, + [513] = { + ["id"] = "desecrated.stat_2392824305", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + ["type"] = "desecrated", + }, + [514] = { + ["id"] = "desecrated.stat_2991045011", + ["text"] = "Recover #% of Maximum Mana when you expend at least 10 Combo", + ["type"] = "desecrated", + }, + [515] = { + ["id"] = "desecrated.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["type"] = "desecrated", + }, + [516] = { + ["id"] = "desecrated.stat_359357545", + ["text"] = "Enemies Hindered by you take #% increased Physical Damage", + ["type"] = "desecrated", + }, + [517] = { + ["id"] = "desecrated.stat_3143918757", + ["text"] = "#% increased Glory generation", + ["type"] = "desecrated", + }, + [518] = { + ["id"] = "desecrated.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", + ["type"] = "desecrated", + }, + [519] = { + ["id"] = "desecrated.stat_3566150527", + ["text"] = "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", + ["type"] = "desecrated", + }, + [520] = { + ["id"] = "desecrated.stat_4257790560", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", + ["type"] = "desecrated", + }, + [521] = { + ["id"] = "desecrated.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["type"] = "desecrated", + }, + [522] = { + ["id"] = "desecrated.stat_4258720395", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "desecrated", + }, + [523] = { + ["id"] = "desecrated.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", + ["type"] = "desecrated", + }, + [524] = { + ["id"] = "desecrated.stat_1181419800", + ["text"] = "#% increased Damage with Maces", + ["type"] = "desecrated", + }, + [525] = { + ["id"] = "desecrated.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["type"] = "desecrated", + }, + [526] = { + ["id"] = "desecrated.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", + ["type"] = "desecrated", + }, + [527] = { + ["id"] = "desecrated.stat_2334956771", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "desecrated", + }, + [528] = { + ["id"] = "desecrated.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["type"] = "desecrated", + }, + [529] = { + ["id"] = "desecrated.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "desecrated", + }, + [530] = { + ["id"] = "desecrated.stat_654207792", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "desecrated", + }, + [531] = { + ["id"] = "desecrated.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", + ["type"] = "desecrated", + }, + [532] = { + ["id"] = "desecrated.stat_1569159338", + ["text"] = "#% increased Parry Damage", + ["type"] = "desecrated", + }, + [533] = { + ["id"] = "desecrated.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", + ["type"] = "desecrated", + }, + [534] = { + ["id"] = "desecrated.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", + ["type"] = "desecrated", + }, + [535] = { + ["id"] = "desecrated.stat_569299859", + ["text"] = "#% to all maximum Resistances", + ["type"] = "desecrated", + }, + [536] = { + ["id"] = "desecrated.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["type"] = "desecrated", + }, + [537] = { + ["id"] = "desecrated.stat_85367160", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", + ["type"] = "desecrated", + }, + [538] = { + ["id"] = "desecrated.stat_8816597", + ["text"] = "Conquered Small Passive Skills also grant #% increased Attack damage", + ["type"] = "desecrated", + }, + [539] = { + ["id"] = "desecrated.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["type"] = "desecrated", + }, + [540] = { + ["id"] = "desecrated.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["type"] = "desecrated", + }, + [541] = { + ["id"] = "desecrated.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["type"] = "desecrated", + }, + [542] = { + ["id"] = "desecrated.stat_2135541924", + ["text"] = "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", + ["type"] = "desecrated", + }, + [543] = { + ["id"] = "desecrated.stat_3774951878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["type"] = "desecrated", + }, + [544] = { + ["id"] = "desecrated.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["type"] = "desecrated", + }, + [545] = { + ["id"] = "desecrated.stat_4147897060", + ["text"] = "#% increased Block chance", + ["type"] = "desecrated", + }, + [546] = { + ["id"] = "desecrated.stat_1829333149", + ["text"] = "Conquered Small Passive Skills also grant #% increased Physical damage", + ["type"] = "desecrated", + }, + [547] = { + ["id"] = "desecrated.stat_2580617872", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["type"] = "desecrated", + }, + [548] = { + ["id"] = "desecrated.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["type"] = "desecrated", + }, + [549] = { + ["id"] = "desecrated.stat_2601021356", + ["text"] = "Conquered Small Passive Skills also grant #% increased Chaos damage", + ["type"] = "desecrated", + }, + [550] = { + ["id"] = "desecrated.stat_3395186672", + ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["type"] = "desecrated", + }, + [551] = { + ["id"] = "desecrated.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["type"] = "desecrated", + }, + [552] = { + ["id"] = "desecrated.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["type"] = "desecrated", + }, + [553] = { + ["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", + }, + [554] = { + ["id"] = "desecrated.stat_2690740379", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + ["type"] = "desecrated", + }, + [555] = { + ["id"] = "desecrated.stat_2709646369", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + ["type"] = "desecrated", + }, + [556] = { + ["id"] = "desecrated.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", + ["type"] = "desecrated", + }, + [557] = { + ["id"] = "desecrated.stat_61644361", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["type"] = "desecrated", + }, + [558] = { + ["id"] = "desecrated.stat_3579898587", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["type"] = "desecrated", + }, + [559] = { + ["id"] = "desecrated.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["type"] = "desecrated", + }, + [560] = { + ["id"] = "desecrated.stat_391602279", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["type"] = "desecrated", + }, + [561] = { + ["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", + }, + [562] = { + ["id"] = "desecrated.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["type"] = "desecrated", + }, + [563] = { + ["id"] = "desecrated.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["type"] = "desecrated", + }, + [564] = { + ["id"] = "desecrated.stat_1034611536", + ["text"] = "Notable Passive Skills in Radius also grant Charms gain # charge per Second", + ["type"] = "desecrated", + }, + [565] = { + ["id"] = "desecrated.stat_3752589831", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["type"] = "desecrated", + }, + [566] = { + ["id"] = "desecrated.stat_2780670304", + ["text"] = "Conquered Small Passive Skills also grant #% increased Energy Shield", + ["type"] = "desecrated", + }, + [567] = { + ["id"] = "desecrated.stat_266564538", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + ["type"] = "desecrated", + }, + [568] = { + ["id"] = "desecrated.stat_1834658952", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "desecrated", + }, + [569] = { + ["id"] = "desecrated.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", + ["type"] = "desecrated", + }, + [570] = { + ["id"] = "desecrated.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", + ["type"] = "desecrated", + }, + [571] = { + ["id"] = "desecrated.stat_1938221597", + ["text"] = "Conquered Attribute Passive Skills also grant # to Dexterity", + ["type"] = "desecrated", + }, + [572] = { + ["id"] = "desecrated.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", + ["type"] = "desecrated", + }, + [573] = { + ["id"] = "desecrated.stat_1054098949", + ["text"] = "+#% Monster Elemental Resistances", + ["type"] = "desecrated", + }, + [574] = { + ["id"] = "desecrated.stat_2638756573", + ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + ["type"] = "desecrated", + }, + [575] = { + ["id"] = "desecrated.stat_565784293", + ["text"] = "#% increased Knockback Distance", + ["type"] = "desecrated", + }, + [576] = { + ["id"] = "desecrated.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["type"] = "desecrated", + }, + [577] = { + ["id"] = "desecrated.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", + ["type"] = "desecrated", + }, + [578] = { + ["id"] = "desecrated.stat_4264952559", + ["text"] = "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", + ["type"] = "desecrated", + }, + [579] = { + ["id"] = "desecrated.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "desecrated", + }, + [580] = { + ["id"] = "desecrated.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["type"] = "desecrated", + }, + [581] = { + ["id"] = "desecrated.stat_3343033032", + ["text"] = "Conquered Small Passive Skills also grant Minions deal #% increased damage", + ["type"] = "desecrated", + }, + [582] = { + ["id"] = "desecrated.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["type"] = "desecrated", + }, + [583] = { + ["id"] = "desecrated.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["type"] = "desecrated", + }, + [584] = { + ["id"] = "desecrated.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", + ["type"] = "desecrated", + }, + [585] = { + ["id"] = "desecrated.stat_818877178", + ["text"] = "#% increased Parried Debuff Magnitude", + ["type"] = "desecrated", + }, + [586] = { + ["id"] = "desecrated.stat_1689748350", + ["text"] = "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", + ["type"] = "desecrated", + }, + [587] = { + ["id"] = "desecrated.stat_3173882956", + ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["type"] = "desecrated", + }, + [588] = { + ["id"] = "desecrated.stat_3939216292", + ["text"] = "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", + ["type"] = "desecrated", + }, + [589] = { + ["id"] = "desecrated.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["type"] = "desecrated", + }, + [590] = { + ["id"] = "desecrated.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["type"] = "desecrated", + }, + [591] = { + ["id"] = "desecrated.stat_1585769763", + ["text"] = "#% increased Blind Effect", + ["type"] = "desecrated", + }, + [592] = { + ["id"] = "desecrated.stat_1148433552", + ["text"] = "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", + ["type"] = "desecrated", + }, + [593] = { + ["id"] = "desecrated.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "desecrated", + }, + [594] = { + ["id"] = "desecrated.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["type"] = "desecrated", + }, + [595] = { + ["id"] = "desecrated.stat_3877264671", + ["text"] = "Monster have #% increased Elemental Ailment Application", + ["type"] = "desecrated", + }, + [596] = { + ["id"] = "desecrated.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "desecrated", + }, + [597] = { + ["id"] = "desecrated.stat_1994551050", + ["text"] = "Monsters have #% increased Ailment Threshold", + ["type"] = "desecrated", + }, + [598] = { + ["id"] = "desecrated.stat_4043376133", + ["text"] = "#% increased Magnitude of Abyssal Wasting you inflict", + ["type"] = "desecrated", + }, + [599] = { + ["id"] = "desecrated.stat_4101943684", + ["text"] = "Monsters have #% increased Stun Threshold", + ["type"] = "desecrated", + }, + [600] = { + ["id"] = "desecrated.stat_2116424886", + ["text"] = "#% increased Life Regeneration Rate while moving", + ["type"] = "desecrated", + }, + [601] = { + ["id"] = "desecrated.stat_211727", + ["text"] = "Monsters deal #% of Damage as Extra Cold", + ["type"] = "desecrated", + }, + [602] = { + ["id"] = "desecrated.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "desecrated", + }, + [603] = { + ["id"] = "desecrated.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", + ["type"] = "desecrated", + }, + [604] = { + ["id"] = "desecrated.stat_30438393", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + ["type"] = "desecrated", + }, + [605] = { + ["id"] = "desecrated.stat_554690751", + ["text"] = "Players are periodically Cursed with Elemental Weakness", + ["type"] = "desecrated", + }, + [606] = { + ["id"] = "desecrated.stat_480796730", + ["text"] = "#% to maximum Block chance", + ["type"] = "desecrated", + }, + [607] = { + ["id"] = "desecrated.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["type"] = "desecrated", + }, + [608] = { + ["id"] = "desecrated.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["type"] = "desecrated", + }, + [609] = { + ["id"] = "desecrated.stat_1818915622", + ["text"] = "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", + ["type"] = "desecrated", + }, + [610] = { + ["id"] = "desecrated.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["type"] = "desecrated", + }, + [611] = { + ["id"] = "desecrated.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["type"] = "desecrated", + }, + [612] = { + ["id"] = "desecrated.stat_2887760183", + ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", + ["type"] = "desecrated", + }, + [613] = { + ["id"] = "desecrated.stat_4181072906", + ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", + ["type"] = "desecrated", + }, + [614] = { + ["id"] = "desecrated.stat_95249895", + ["text"] = "#% more Monster Life", + ["type"] = "desecrated", + }, + [615] = { + ["id"] = "desecrated.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["type"] = "desecrated", + }, + [616] = { + ["id"] = "desecrated.stat_941368244", + ["text"] = "Players have #% more Cooldown Recovery Rate", + ["type"] = "desecrated", + }, + [617] = { + ["id"] = "desecrated.stat_3694078435", + ["text"] = "You take #% of damage from Blocked Hits with a raised Shield", + ["type"] = "desecrated", + }, + [618] = { + ["id"] = "desecrated.stat_1892122971", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "desecrated", + }, + [619] = { + ["id"] = "desecrated.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "desecrated", + }, + [620] = { + ["id"] = "desecrated.stat_321970274", + ["text"] = "#% of Physical Damage taken as Lightning while your Shield is raised", + ["type"] = "desecrated", + }, + [621] = { + ["id"] = "desecrated.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["type"] = "desecrated", + }, + [622] = { + ["id"] = "desecrated.stat_886088880", + ["text"] = "Your Heavy Stun buildup empties #% faster", + ["type"] = "desecrated", + }, + [623] = { + ["id"] = "desecrated.stat_349586058", + ["text"] = "Area has patches of Chilled Ground", + ["type"] = "desecrated", + }, + [624] = { + ["id"] = "desecrated.stat_2029171424", + ["text"] = "Players are periodically Cursed with Enfeeble", + ["type"] = "desecrated", + }, + [625] = { + ["id"] = "desecrated.stat_2539290279", + ["text"] = "Monsters are Armoured", + ["type"] = "desecrated", + }, + [626] = { + ["id"] = "desecrated.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["type"] = "desecrated", + }, + [627] = { + ["id"] = "desecrated.stat_1283490138", + ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", + ["type"] = "desecrated", + }, + [628] = { + ["id"] = "desecrated.stat_337935900", + ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", + ["type"] = "desecrated", + }, + [629] = { + ["id"] = "desecrated.stat_3796523155", + ["text"] = "#% less effect of Curses on Monsters", + ["type"] = "desecrated", + }, + [630] = { + ["id"] = "desecrated.stat_92381065", + ["text"] = "Monsters deal #% of Damage as Extra Fire", + ["type"] = "desecrated", + }, + [631] = { + ["id"] = "desecrated.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + ["type"] = "desecrated", + }, + [632] = { + ["id"] = "desecrated.stat_468694293", + ["text"] = "Conquered Small Passive Skills also grant #% increased Evasion Rating", + ["type"] = "desecrated", + }, + [633] = { + ["id"] = "desecrated.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["type"] = "desecrated", + }, + [634] = { + ["id"] = "desecrated.stat_1544773869", + ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", + ["type"] = "desecrated", + }, + [635] = { + ["id"] = "desecrated.stat_2549889921", + ["text"] = "Players gain #% reduced Flask Charges", + ["type"] = "desecrated", + }, + [636] = { + ["id"] = "desecrated.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["type"] = "desecrated", + }, + [637] = { + ["id"] = "desecrated.stat_512071314", + ["text"] = "Monsters deal #% of Damage as Extra Lightning", + ["type"] = "desecrated", + }, + [638] = { + ["id"] = "desecrated.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["type"] = "desecrated", + }, + [639] = { + ["id"] = "desecrated.stat_970480050", + ["text"] = "Conquered Small Passive Skills also grant #% increased Armour", + ["type"] = "desecrated", + }, + [640] = { + ["id"] = "desecrated.stat_2753083623", + ["text"] = "Monsters have #% increased Critical Hit Chance", + ["type"] = "desecrated", + }, + [641] = { + ["id"] = "desecrated.stat_57326096", + ["text"] = "Monsters have #% Critical Damage Bonus", + ["type"] = "desecrated", + }, + [642] = { + ["id"] = "desecrated.stat_3998863698", + ["text"] = "Monsters have #% increased Freeze Buildup", + ["type"] = "desecrated", + }, + [643] = { + ["id"] = "desecrated.stat_1984618452", + ["text"] = "Monsters have #% increased Shock Chance", + ["type"] = "desecrated", + }, + [644] = { + ["id"] = "desecrated.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "desecrated", + }, + [645] = { + ["id"] = "desecrated.stat_2200661314", + ["text"] = "Monsters deal #% of Damage as Extra Chaos", + ["type"] = "desecrated", + }, + [646] = { + ["id"] = "desecrated.stat_1301765461", + ["text"] = "#% to Maximum Chaos Resistance", + ["type"] = "desecrated", + }, + [647] = { + ["id"] = "desecrated.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + ["type"] = "desecrated", + }, + [648] = { + ["id"] = "desecrated.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["type"] = "desecrated", + }, + [649] = { + ["id"] = "desecrated.stat_3909654181", + ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", + ["type"] = "desecrated", + }, + [650] = { + ["id"] = "desecrated.stat_2508044078", + ["text"] = "Monsters inflict #% increased Flammability Magnitude", + ["type"] = "desecrated", + }, + [651] = { + ["id"] = "desecrated.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + ["type"] = "desecrated", + }, + [652] = { + ["id"] = "desecrated.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["type"] = "desecrated", + }, + [653] = { + ["id"] = "desecrated.stat_115425161", + ["text"] = "Monsters have #% increased Stun Buildup", + ["type"] = "desecrated", + }, + [654] = { + ["id"] = "desecrated.stat_4142814612", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + ["type"] = "desecrated", + }, + [655] = { + ["id"] = "desecrated.stat_2550456553", + ["text"] = "Rare Monsters have # additional Modifier", + ["type"] = "desecrated", + }, + [656] = { + ["id"] = "desecrated.stat_2550456553", + ["text"] = "Rare Monsters in your Maps have # additional Modifier", + ["type"] = "desecrated", + }, + [657] = { + ["id"] = "desecrated.stat_1588049749", + ["text"] = "Monsters have #% increased Accuracy Rating", + ["type"] = "desecrated", + }, + [658] = { + ["id"] = "desecrated.stat_95221307", + ["text"] = "Monsters have #% chance to Poison on Hit", + ["type"] = "desecrated", + }, + [659] = { + ["id"] = "desecrated.stat_2475870935", + ["text"] = "Conquered Small Passive Skills also grant #% increased Stun Threshold", + ["type"] = "desecrated", + }, + [660] = { + ["id"] = "desecrated.stat_318092306", + ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", + ["type"] = "desecrated", + }, + [661] = { + ["id"] = "desecrated.stat_1879340377", + ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", + ["type"] = "desecrated", + }, + [662] = { + ["id"] = "desecrated.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", + ["type"] = "desecrated", + }, + [663] = { + ["id"] = "desecrated.stat_2570249991", + ["text"] = "Monsters are Evasive", + ["type"] = "desecrated", + }, + [664] = { + ["id"] = "desecrated.stat_3376488707", + ["text"] = "#% maximum Player Resistances", + ["type"] = "desecrated", + }, + [665] = { + ["id"] = "desecrated.stat_3222482040", + ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", + ["type"] = "desecrated", + }, + [666] = { + ["id"] = "desecrated.stat_3477720557", + ["text"] = "Area has patches of Shocked Ground", + ["type"] = "desecrated", + }, + [667] = { + ["id"] = "desecrated.stat_1890519597", + ["text"] = "#% increased Monster Damage", + ["type"] = "desecrated", + }, + [668] = { + ["id"] = "desecrated.stat_1309819744", + ["text"] = "Monsters fire # additional Projectiles", + ["type"] = "desecrated", + }, + [669] = { + ["id"] = "desecrated.stat_2506820610", + ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", + ["type"] = "desecrated", + }, + [670] = { + ["id"] = "desecrated.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["type"] = "desecrated", + }, + [671] = { + ["id"] = "desecrated.stat_133340941", + ["text"] = "Area has patches of Ignited Ground", + ["type"] = "desecrated", + }, + [672] = { + ["id"] = "desecrated.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["type"] = "desecrated", + }, + [673] = { + ["id"] = "desecrated.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + ["type"] = "desecrated", + }, + [674] = { + ["id"] = "desecrated.stat_3592067990", + ["text"] = "Area contains # additional packs of Plagued Monsters", + ["type"] = "desecrated", + }, + [675] = { + ["id"] = "desecrated.stat_1436812886", + ["text"] = "Area contains # additional packs of Ezomyte Monsters", + ["type"] = "desecrated", + }, + [676] = { + ["id"] = "desecrated.stat_1079292660", + ["text"] = "#% increased Energy Shield Recharge Rate if you've Blocked Recently", + ["type"] = "desecrated", + }, + [677] = { + ["id"] = "desecrated.stat_240445958", + ["text"] = "Area contains # additional packs of Undead", + ["type"] = "desecrated", + }, + [678] = { + ["id"] = "desecrated.stat_1898978455", + ["text"] = "Monster Damage Penetrates #% Elemental Resistances", + ["type"] = "desecrated", + }, + [679] = { + ["id"] = "desecrated.stat_1629357380", + ["text"] = "Players are periodically Cursed with Temporal Chains", + ["type"] = "desecrated", + }, + [680] = { + ["id"] = "desecrated.stat_4181857719", + ["text"] = "Area contains # additional packs of Vaal Monsters", + ["type"] = "desecrated", + }, + [681] = { + ["id"] = "desecrated.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "desecrated", + }, + [682] = { + ["id"] = "desecrated.stat_3309089125", + ["text"] = "Area contains # additional packs of Bramble Monsters", + ["type"] = "desecrated", + }, + [683] = { + ["id"] = "desecrated.stat_3757259819", + ["text"] = "Area contains # additional packs of Beasts", + ["type"] = "desecrated", + }, + [684] = { + ["id"] = "desecrated.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", + ["type"] = "desecrated", + }, + [685] = { + ["id"] = "desecrated.stat_797289402", + ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", + ["type"] = "desecrated", + }, + [686] = { + ["id"] = "desecrated.stat_3399401168", + ["text"] = "#% to Fire Spell Critical Hit Chance", + ["type"] = "desecrated", + }, + [687] = { + ["id"] = "desecrated.stat_2949706590", + ["text"] = "Area contains # additional packs of Iron Guards", + ["type"] = "desecrated", + }, + [688] = { + ["id"] = "desecrated.stat_758893621", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "desecrated", + }, + [689] = { + ["id"] = "desecrated.stat_4259875040", + ["text"] = "#% increased Magnitude of Impales inflicted with Spells", + ["type"] = "desecrated", + }, + [690] = { + ["id"] = "desecrated.stat_1058934731", + ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", + ["type"] = "desecrated", + }, + [691] = { + ["id"] = "desecrated.stat_73032170", + ["text"] = "Minions have #% increased Skill Speed with Command Skills", + ["type"] = "desecrated", + }, + [692] = { + ["id"] = "desecrated.stat_825116955", + ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", + ["type"] = "desecrated", + }, + [693] = { + ["id"] = "desecrated.stat_323800555", + ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", + ["type"] = "desecrated", + }, + [694] = { + ["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", + }, + [695] = { + ["id"] = "desecrated.stat_1265767008", + ["text"] = "Your Minions are Gigantic if they have Revived Recently", + ["type"] = "desecrated", + }, + [696] = { + ["id"] = "desecrated.stat_4147510958", + ["text"] = "Sealed Skills have # to maximum Seals", + ["type"] = "desecrated", + }, + [697] = { + ["id"] = "desecrated.stat_2783157569", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", + ["type"] = "desecrated", + }, + [698] = { + ["id"] = "desecrated.stat_3384867265", + ["text"] = "Sealed Skills have #% increased Seal gain frequency", + ["type"] = "desecrated", + }, + [699] = { + ["id"] = "desecrated.stat_4130878258", + ["text"] = "Area contains # additional packs of Faridun Monsters", + ["type"] = "desecrated", + }, + [700] = { + ["id"] = "desecrated.stat_971590056", + ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", + ["type"] = "desecrated", + }, + [701] = { + ["id"] = "desecrated.stat_1321054058", + ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", + ["type"] = "desecrated", + }, + [702] = { + ["id"] = "desecrated.stat_195270549", + ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", + ["type"] = "desecrated", + }, + [703] = { + ["id"] = "desecrated.stat_1347539079", + ["text"] = "#% Surpassing chance to fire an additional Projectile", + ["type"] = "desecrated", + }, + [704] = { + ["id"] = "desecrated.stat_3526763442", + ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", + ["type"] = "desecrated", + }, + [705] = { + ["id"] = "desecrated.stat_1797815732", + ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", + ["type"] = "desecrated", + }, + [706] = { + ["id"] = "desecrated.stat_3249412463", + ["text"] = "Supported Minions' Strikes have Melee Splash", + ["type"] = "desecrated", + }, + [707] = { + ["id"] = "desecrated.stat_3858572996", + ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", + ["type"] = "desecrated", + }, + [708] = { + ["id"] = "desecrated.stat_953593695", + ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", + ["type"] = "desecrated", + }, + [709] = { + ["id"] = "desecrated.stat_1689473577", + ["text"] = "Area contains # additional packs of Transcended Monsters", + ["type"] = "desecrated", + }, + [710] = { + ["id"] = "desecrated.stat_1615901249", + ["text"] = "Invocated skills have #% increased Maximum Energy", + ["type"] = "desecrated", + }, + [711] = { + ["id"] = "desecrated.stat_1002535626", + ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", + ["type"] = "desecrated", + }, + [712] = { + ["id"] = "desecrated.stat_3793155082", + ["text"] = "#% increased Rare Monsters", + ["type"] = "desecrated", + }, + [713] = { + ["id"] = "desecrated.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "desecrated", + }, + [714] = { + ["id"] = "desecrated.stat_1913583994", + ["text"] = "#% increased Monster Attack Speed", + ["type"] = "desecrated", + }, + [715] = { + ["id"] = "desecrated.stat_3873704640", + ["text"] = "#% increased Magic Monsters", + ["type"] = "desecrated", + }, + [716] = { + ["id"] = "desecrated.stat_3200877707", + ["text"] = "Skills have a #% chance to not consume Glory", + ["type"] = "desecrated", + }, + [717] = { + ["id"] = "desecrated.stat_2488361432", + ["text"] = "#% increased Monster Cast Speed", + ["type"] = "desecrated", + }, + [718] = { + ["id"] = "desecrated.stat_555706343", + ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", + ["type"] = "desecrated", + }, + [719] = { + ["id"] = "desecrated.stat_1180552088", + ["text"] = "#% increased effect of Archon Buffs on you", + ["type"] = "desecrated", + }, + [720] = { + ["id"] = "desecrated.stat_2306522833", + ["text"] = "#% increased Monster Movement Speed", + ["type"] = "desecrated", + }, + }, + ["id"] = "desecrated", + ["label"] = "Desecrated", + }, + [9] = { + ["entries"] = { + [1] = { + ["id"] = "sanctum.stat_767926824", + ["text"] = "Zarokh, the Temporal drops Blessed Bonds", + ["type"] = "sanctum", + }, + [2] = { + ["id"] = "sanctum.stat_3840591093", + ["text"] = "Zarokh, the Temporal drops Against the Darkness", + ["type"] = "sanctum", + }, + [3] = { + ["id"] = "sanctum.stat_2878762585", + ["text"] = "#% chance to Avoid Resolve loss from Enemy Hits", + ["type"] = "sanctum", + }, + [4] = { + ["id"] = "sanctum.stat_4057192895", + ["text"] = "Gain # Sacred Water when you complete a Room", + ["type"] = "sanctum", + }, + [5] = { + ["id"] = "sanctum.stat_3376488707", + ["text"] = "#% to all Maximum Resistances", + ["type"] = "sanctum", + }, + [6] = { + ["id"] = "sanctum.stat_1307773596", + ["text"] = "Aureus Coins are converted to Experience upon defeating the Herald of the Scourge", + ["type"] = "sanctum", + }, + [7] = { + ["id"] = "sanctum.stat_315260783", + ["text"] = "Aureus Coins are converted to Relics upon defeating the Herald of the Scourge", + ["type"] = "sanctum", + }, + [8] = { + ["id"] = "sanctum.stat_1019656601", + ["text"] = "Aureus Coins are converted to Tainted Currency upon defeating the Herald of the Scourge", + ["type"] = "sanctum", + }, + [9] = { + ["id"] = "sanctum.stat_2149490821", + ["text"] = "Zarokh, the Temporal deals #% more Damage", + ["type"] = "sanctum", + }, + [10] = { + ["id"] = "sanctum.stat_2226900052", + ["text"] = "Zarokh, the Temporal takes #% more Damage", + ["type"] = "sanctum", + }, + [11] = { + ["id"] = "sanctum.stat_1175354969", + ["text"] = "The Herald of the Scourge drops an additional Invocation", + ["type"] = "sanctum", + }, + [12] = { + ["id"] = "sanctum.stat_3878191575", + ["text"] = "Zarokh, the Temporal drops an additional Barya", + ["type"] = "sanctum", + }, + [13] = { + ["id"] = "sanctum.stat_502549687", + ["text"] = "Duplicates up to # random Offer Reward upon defeating the Herald of the Scourge", + ["type"] = "sanctum", + }, + [14] = { + ["id"] = "sanctum.stat_3909654181", + ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", + ["type"] = "sanctum", + }, + [15] = { + ["id"] = "sanctum.stat_3114474137", + ["text"] = "Monsters take #% increased Damage", + ["type"] = "sanctum", + }, + [16] = { + ["id"] = "sanctum.stat_1890519597", + ["text"] = "Monsters deal #% increased Damage", + ["type"] = "sanctum", + }, + [17] = { + ["id"] = "sanctum.stat_1737465970", + ["text"] = "#% increased Armour", + ["type"] = "sanctum", + }, + [18] = { + ["id"] = "sanctum.stat_3470883829", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "sanctum", + }, + [19] = { + ["id"] = "sanctum.stat_2948404493", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "sanctum", + }, + [20] = { + ["id"] = "sanctum.stat_978111083", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "sanctum", + }, + [21] = { + ["id"] = "sanctum.stat_1016362888", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "sanctum", + }, + [22] = { + ["id"] = "sanctum.stat_698936647", + ["text"] = "Your Armour, Evasion and Energy Shield are zero", + ["type"] = "sanctum", + }, + [23] = { + ["id"] = "sanctum.stat_1040593638", + ["text"] = "# metre to Dodge Roll distance", + ["type"] = "sanctum", + }, + [24] = { + ["id"] = "sanctum.stat_1707887759", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "sanctum", + }, + [25] = { + ["id"] = "sanctum.stat_3882471944", + ["text"] = "#% increased Evasion Rating", + ["type"] = "sanctum", + }, + [26] = { + ["id"] = "sanctum.stat_1200789871", + ["text"] = "#% increased maximum Life", + ["type"] = "sanctum", + }, + [27] = { + ["id"] = "sanctum.stat_1416455556", + ["text"] = "#% increased Movement Speed", + ["type"] = "sanctum", + }, + [28] = { + ["id"] = "sanctum.stat_3128852541", + ["text"] = "#% to All Resistances", + ["type"] = "sanctum", + }, + [29] = { + ["id"] = "sanctum.stat_3134588943", + ["text"] = "#% increased chance to avoid Honour loss from Enemy Melee Hits", + ["type"] = "sanctum", + }, + [30] = { + ["id"] = "sanctum.stat_1798691236", + ["text"] = "#% increased chance to Avoid Resolve Loss from Enemy Projectile Hits", + ["type"] = "sanctum", + }, + [31] = { + ["id"] = "sanctum.stat_2284543592", + ["text"] = "#% chance to Avoid Resolve loss from Enemy Hits if you've been Hit Recently", + ["type"] = "sanctum", + }, + [32] = { + ["id"] = "sanctum.stat_3226329527", + ["text"] = "Bosses take #% increased Damage", + ["type"] = "sanctum", + }, + [33] = { + ["id"] = "sanctum.stat_2469854926", + ["text"] = "Zarokh, the Temporal drops Temporalis", + ["type"] = "sanctum", + }, + [34] = { + ["id"] = "sanctum.stat_2821715641", + ["text"] = "Zarokh, the Temporal drops Sekhema's Resolve", + ["type"] = "sanctum", + }, + [35] = { + ["id"] = "sanctum.stat_3059754769", + ["text"] = "Zarokh, the Temporal drops Sandstorm Visage", + ["type"] = "sanctum", + }, + [36] = { + ["id"] = "sanctum.stat_2207905451", + ["text"] = "Bosses deal #% increased Damage", + ["type"] = "sanctum", + }, + [37] = { + ["id"] = "sanctum.stat_408585189", + ["text"] = "Rare Monsters take #% increased Damage", + ["type"] = "sanctum", + }, + [38] = { + ["id"] = "sanctum.stat_199414195", + ["text"] = "Rare Monsters deal #% increased Damage", + ["type"] = "sanctum", + }, + [39] = { + ["id"] = "sanctum.stat_729354668", + ["text"] = "#% increased quantity of Keys dropped by Monsters", + ["type"] = "sanctum", + }, + [40] = { + ["id"] = "sanctum.stat_1680962389", + ["text"] = "#% increased quantity of Relics dropped by Monsters", + ["type"] = "sanctum", + }, + [41] = { + ["id"] = "sanctum.stat_1388771661", + ["text"] = "#% increased Resolve Aegis", + ["type"] = "sanctum", + }, + [42] = { + ["id"] = "sanctum.stat_3889616543", + ["text"] = "Resolve Aegis Recovers #% faster while not losing Resolve", + ["type"] = "sanctum", + }, + [43] = { + ["id"] = "sanctum.stat_3621177126", + ["text"] = "Resolve Mitigation from Enemy Hits is based on #% of Armour", + ["type"] = "sanctum", + }, + [44] = { + ["id"] = "sanctum.stat_774484840", + ["text"] = "#% chance for Resolve Mitigation to be doubled when Hit by an Enemy", + ["type"] = "sanctum", + }, + [45] = { + ["id"] = "sanctum.stat_3554921410", + ["text"] = "Traps deal #% increased Damage", + ["type"] = "sanctum", + }, + [46] = { + ["id"] = "sanctum.stat_3170238729", + ["text"] = "When you gain a Key #% chance to gain another", + ["type"] = "sanctum", + }, + [47] = { + ["id"] = "sanctum.stat_3096543632", + ["text"] = "#% to Maximum Honour Resistance", + ["type"] = "sanctum", + }, + [48] = { + ["id"] = "sanctum.stat_1960517795", + ["text"] = "#% chance to Avoid gaining an Affliction", + ["type"] = "sanctum", + }, + [49] = { + ["id"] = "sanctum.stat_2545161750", + ["text"] = "Cannot restore Honour", + ["type"] = "sanctum", + }, + [50] = { + ["id"] = "sanctum.stat_3870327403", + ["text"] = "#% chance if you were to lose all your Honour to have 1 Honour instead", + ["type"] = "sanctum", + }, + [51] = { + ["id"] = "sanctum.stat_2155917449", + ["text"] = "#% chance for each of your Keys to upgrade on completing a Floor", + ["type"] = "sanctum", + }, + [52] = { + ["id"] = "sanctum.stat_2410906123", + ["text"] = "# Resolve Aegis", + ["type"] = "sanctum", + }, + [53] = { + ["id"] = "sanctum.stat_142859883", + ["text"] = "#% Resolve Mitigation from Enemy Hits", + ["type"] = "sanctum", + }, + [54] = { + ["id"] = "sanctum.stat_2363402715", + ["text"] = "Fountains have #% chance to grant double Sacred Water", + ["type"] = "sanctum", + }, + [55] = { + ["id"] = "sanctum.stat_3237367570", + ["text"] = "Rooms are unknown on the Trial Map", + ["type"] = "sanctum", + }, + [56] = { + ["id"] = "sanctum.stat_2287831219", + ["text"] = "#% to Honour Resistance", + ["type"] = "sanctum", + }, + [57] = { + ["id"] = "sanctum.stat_1583320325", + ["text"] = "#% increased Honour restored", + ["type"] = "sanctum", + }, + [58] = { + ["id"] = "sanctum.stat_2150725270", + ["text"] = "Damage taken cannot be Absorbed", + ["type"] = "sanctum", + }, + [59] = { + ["id"] = "sanctum.stat_386901949", + ["text"] = "An additional Room is revealed on the Trial Map", + ["type"] = "sanctum", + }, + [60] = { + ["id"] = "sanctum.stat_3970123360", + ["text"] = "#% increased maximum Honour", + ["type"] = "sanctum", + }, + [61] = { + ["id"] = "sanctum.stat_4191312223", + ["text"] = "Maximum Honour is 1", + ["type"] = "sanctum", + }, + [62] = { + ["id"] = "sanctum.stat_290775436", + ["text"] = "The Merchant has an additional Choice", + ["type"] = "sanctum", + }, + [63] = { + ["id"] = "sanctum.stat_3096446459", + ["text"] = "#% increased Merchant Prices", + ["type"] = "sanctum", + }, + [64] = { + ["id"] = "sanctum.stat_231205265", + ["text"] = "Monsters have #% chance to drop double Sacred Water", + ["type"] = "sanctum", + }, + [65] = { + ["id"] = "sanctum.stat_2283325632", + ["text"] = "Cannot have Boons", + ["type"] = "sanctum", + }, + [66] = { + ["id"] = "sanctum.stat_3865020351", + ["text"] = "Restore # Honour on killing a Boss", + ["type"] = "sanctum", + }, + [67] = { + ["id"] = "sanctum.stat_2492340460", + ["text"] = "Restore # Honour on venerating a Maraketh Shrine", + ["type"] = "sanctum", + }, + [68] = { + ["id"] = "sanctum.stat_521869848", + ["text"] = "Restore # Honour on picking up a Key", + ["type"] = "sanctum", + }, + [69] = { + ["id"] = "sanctum.stat_2114314842", + ["text"] = "Restore # Honour on room completion", + ["type"] = "sanctum", + }, + [70] = { + ["id"] = "sanctum.stat_2393318075", + ["text"] = "Gain # Sacred Water at the start of the Trial", + ["type"] = "sanctum", + }, + [71] = { + ["id"] = "sanctum.stat_1512067281", + ["text"] = "Cannot be used with Trials below level #", + ["type"] = "sanctum", + }, + [72] = { + ["id"] = "sanctum.stat_3182333322", + ["text"] = "This item is destroyed when applied to a Trial", + ["type"] = "sanctum", + }, + [73] = { + ["id"] = "sanctum.sanctum_effect_62326", + ["text"] = "Has Honed Claws", + ["type"] = "sanctum", + }, + [74] = { + ["id"] = "sanctum.sanctum_effect_15442", + ["text"] = "Has Fright Mask", + ["type"] = "sanctum", + }, + [75] = { + ["id"] = "sanctum.sanctum_effect_41921", + ["text"] = "Has Deadly Snare", + ["type"] = "sanctum", + }, + [76] = { + ["id"] = "sanctum.sanctum_effect_62584", + ["text"] = "Has Dark Pit", + ["type"] = "sanctum", + }, + [77] = { + ["id"] = "sanctum.sanctum_effect_21680", + ["text"] = "Has Low Rivers", + ["type"] = "sanctum", + }, + [78] = { + ["id"] = "sanctum.sanctum_effect_40008", + ["text"] = "Has Blunt Sword", + ["type"] = "sanctum", + }, + [79] = { + ["id"] = "sanctum.sanctum_effect_56047", + ["text"] = "Has Rapid Quicksand", + ["type"] = "sanctum", + }, + [80] = { + ["id"] = "sanctum.sanctum_effect_16773", + ["text"] = "Has UNUSED", + ["type"] = "sanctum", + }, + [81] = { + ["id"] = "sanctum.sanctum_effect_13820", + ["text"] = "Has Hare Foot", + ["type"] = "sanctum", + }, + [82] = { + ["id"] = "sanctum.sanctum_effect_44476", + ["text"] = "Has Flooding Rivers", + ["type"] = "sanctum", + }, + [83] = { + ["id"] = "sanctum.sanctum_effect_46242", + ["text"] = "Has Reparations", + ["type"] = "sanctum", + }, + [84] = { + ["id"] = "sanctum.sanctum_effect_61003", + ["text"] = "Has Leaking Waterskin", + ["type"] = "sanctum", + }, + [85] = { + ["id"] = "sanctum.sanctum_effect_35767", + ["text"] = "Has Gate Toll", + ["type"] = "sanctum", + }, + [86] = { + ["id"] = "sanctum.sanctum_effect_59642", + ["text"] = "Has Death Toll", + ["type"] = "sanctum", + }, + [87] = { + ["id"] = "sanctum.sanctum_effect_35912", + ["text"] = "Has Exhausted Wells", + ["type"] = "sanctum", + }, + [88] = { + ["id"] = "sanctum.sanctum_effect_13875", + ["text"] = "Has Spiked Shell", + ["type"] = "sanctum", + }, + [89] = { + ["id"] = "sanctum.sanctum_effect_359", + ["text"] = "Has Hungry Fangs", + ["type"] = "sanctum", + }, + [90] = { + ["id"] = "sanctum.sanctum_effect_19039", + ["text"] = "Has Branded Balbalakh", + ["type"] = "sanctum", + }, + [91] = { + ["id"] = "sanctum.sanctum_effect_9350", + ["text"] = "Has Suspected Sympathiser", + ["type"] = "sanctum", + }, + [92] = { + ["id"] = "sanctum.sanctum_effect_4682", + ["text"] = "Has Honoured Challenger", + ["type"] = "sanctum", + }, + [93] = { + ["id"] = "sanctum.sanctum_effect_34448", + ["text"] = "Has Black Smoke", + ["type"] = "sanctum", + }, + [94] = { + ["id"] = "sanctum.sanctum_effect_44243", + ["text"] = "Has Scrying Crystal", + ["type"] = "sanctum", + }, + [95] = { + ["id"] = "sanctum.sanctum_effect_34561", + ["text"] = "Has Trade Tariff", + ["type"] = "sanctum", + }, + [96] = { + ["id"] = "sanctum.sanctum_effect_24536", + ["text"] = "Has Silver Tongue", + ["type"] = "sanctum", + }, + [97] = { + ["id"] = "sanctum.sanctum_effect_44836", + ["text"] = "Has Imperial Seal", + ["type"] = "sanctum", + }, + [98] = { + ["id"] = "sanctum.sanctum_effect_38171", + ["text"] = "Has Garukhan's Favour", + ["type"] = "sanctum", + }, + [99] = { + ["id"] = "sanctum.sanctum_effect_20573", + ["text"] = "Has Winter Drought", + ["type"] = "sanctum", + }, + [100] = { + ["id"] = "sanctum.sanctum_effect_24603", + ["text"] = "Has Earned Honour", + ["type"] = "sanctum", + }, + [101] = { + ["id"] = "sanctum.sanctum_effect_47837", + ["text"] = "Has Ahkeli's Guard", + ["type"] = "sanctum", + }, + [102] = { + ["id"] = "sanctum.sanctum_effect_3157", + ["text"] = "Has Glowing Orb", + ["type"] = "sanctum", + }, + [103] = { + ["id"] = "sanctum.sanctum_effect_43384", + ["text"] = "Has Veiled Sight", + ["type"] = "sanctum", + }, + [104] = { + ["id"] = "sanctum.sanctum_effect_17084", + ["text"] = "Has Red Smoke", + ["type"] = "sanctum", + }, + [105] = { + ["id"] = "sanctum.sanctum_effect_1198", + ["text"] = "Has Golden Smoke", + ["type"] = "sanctum", + }, + [106] = { + ["id"] = "sanctum.sanctum_effect_28906", + ["text"] = "Has Purple Smoke", + ["type"] = "sanctum", + }, + [107] = { + ["id"] = "sanctum.sanctum_effect_32300", + ["text"] = "Has Ghastly Scythe", + ["type"] = "sanctum", + }, + [108] = { + ["id"] = "sanctum.sanctum_effect_44077", + ["text"] = "Has Orbala's Leathers", + ["type"] = "sanctum", + }, + [109] = { + ["id"] = "sanctum.sanctum_effect_34499", + ["text"] = "Has Sekhema's Cloak", + ["type"] = "sanctum", + }, + [110] = { + ["id"] = "sanctum.sanctum_effect_13598", + ["text"] = "Has Dekhara's Necklace", + ["type"] = "sanctum", + }, + [111] = { + ["id"] = "sanctum.sanctum_effect_50613", + ["text"] = "Has Unassuming Brick", + ["type"] = "sanctum", + }, + [112] = { + ["id"] = "sanctum.sanctum_effect_30866", + ["text"] = "Has Moment's Peace", + ["type"] = "sanctum", + }, + [113] = { + ["id"] = "sanctum.sanctum_effect_53929", + ["text"] = "Has Spiked Exit", + ["type"] = "sanctum", + }, + [114] = { + ["id"] = "sanctum.sanctum_effect_48875", + ["text"] = "Has Tattered Blindfold", + ["type"] = "sanctum", + }, + [115] = { + ["id"] = "sanctum.sanctum_effect_38381", + ["text"] = "Has Unquenched Thirst", + ["type"] = "sanctum", + }, + [116] = { + ["id"] = "sanctum.sanctum_effect_5501", + ["text"] = "Has Dishonoured Tattoo", + ["type"] = "sanctum", + }, + [117] = { + ["id"] = "sanctum.sanctum_effect_45401", + ["text"] = "Has Diverted River", + ["type"] = "sanctum", + }, + [118] = { + ["id"] = "sanctum.sanctum_effect_31580", + ["text"] = "Has Raincaller", + ["type"] = "sanctum", + }, + [119] = { + ["id"] = "sanctum.sanctum_effect_14131", + ["text"] = "Has Deceptive Mirror", + ["type"] = "sanctum", + }, + [120] = { + ["id"] = "sanctum.sanctum_effect_34171", + ["text"] = "Has Haemorrhage", + ["type"] = "sanctum", + }, + [121] = { + ["id"] = "sanctum.sanctum_effect_9121", + ["text"] = "Has All-Seeing Eye", + ["type"] = "sanctum", + }, + [122] = { + ["id"] = "sanctum.sanctum_effect_51140", + ["text"] = "Has Lustrous Pearl", + ["type"] = "sanctum", + }, + [123] = { + ["id"] = "sanctum.sanctum_effect_57507", + ["text"] = "Has Viscous Ichor", + ["type"] = "sanctum", + }, + [124] = { + ["id"] = "sanctum.sanctum_effect_46977", + ["text"] = "Has Wooden Effigy", + ["type"] = "sanctum", + }, + [125] = { + ["id"] = "sanctum.sanctum_effect_41741", + ["text"] = "Has Sanguine Vial", + ["type"] = "sanctum", + }, + [126] = { + ["id"] = "sanctum.sanctum_effect_29924", + ["text"] = "Has Ornate Dagger", + ["type"] = "sanctum", + }, + [127] = { + ["id"] = "sanctum.sanctum_effect_6090", + ["text"] = "Has Assassin's Blade", + ["type"] = "sanctum", + }, + [128] = { + ["id"] = "sanctum.sanctum_effect_38167", + ["text"] = "Has Enchanted Urn", + ["type"] = "sanctum", + }, + [129] = { + ["id"] = "sanctum.sanctum_effect_59406", + ["text"] = "Has Adrenaline Vial", + ["type"] = "sanctum", + }, + [130] = { + ["id"] = "sanctum.sanctum_effect_45428", + ["text"] = "Has Mirror of Fortune", + ["type"] = "sanctum", + }, + [131] = { + ["id"] = "sanctum.sanctum_effect_54204", + ["text"] = "Has Orbala Statuette", + ["type"] = "sanctum", + }, + [132] = { + ["id"] = "sanctum.sanctum_effect_28826", + ["text"] = "Has Holy Water", + ["type"] = "sanctum", + }, + [133] = { + ["id"] = "sanctum.sanctum_effect_40142", + ["text"] = "Has Fountain of Youth", + ["type"] = "sanctum", + }, + [134] = { + ["id"] = "sanctum.sanctum_effect_51458", + ["text"] = "Has Silver Chalice", + ["type"] = "sanctum", + }, + [135] = { + ["id"] = "sanctum.sanctum_effect_41498", + ["text"] = "Has Black Pearl", + ["type"] = "sanctum", + }, + [136] = { + ["id"] = "sanctum.sanctum_effect_52622", + ["text"] = "Has Balbala's Gift", + ["type"] = "sanctum", + }, + [137] = { + ["id"] = "sanctum.sanctum_effect_60796", + ["text"] = "Has Chipped Dice", + ["type"] = "sanctum", + }, + [138] = { + ["id"] = "sanctum.sanctum_effect_3716", + ["text"] = "Has Upward Path", + ["type"] = "sanctum", + }, + [139] = { + ["id"] = "sanctum.sanctum_effect_27130", + ["text"] = "Has Sacred Mirror", + ["type"] = "sanctum", + }, + [140] = { + ["id"] = "sanctum.sanctum_effect_30042", + ["text"] = "Has Crystal Shard", + ["type"] = "sanctum", + }, + [141] = { + ["id"] = "sanctum.sanctum_effect_379", + ["text"] = "Has Lustrous Lacquer", + ["type"] = "sanctum", + }, + [142] = { + ["id"] = "sanctum.sanctum_effect_18125", + ["text"] = "Has Forgotten Traditions", + ["type"] = "sanctum", + }, + [143] = { + ["id"] = "sanctum.sanctum_effect_35605", + ["text"] = "Has Season of Famine", + ["type"] = "sanctum", + }, + [144] = { + ["id"] = "sanctum.sanctum_effect_56996", + ["text"] = "Has Myriad Aspersions", + ["type"] = "sanctum", + }, + [145] = { + ["id"] = "sanctum.sanctum_effect_32085", + ["text"] = "Has Costly Aid", + ["type"] = "sanctum", + }, + [146] = { + ["id"] = "sanctum.sanctum_effect_25062", + ["text"] = "Has Chains of Binding", + ["type"] = "sanctum", + }, + [147] = { + ["id"] = "sanctum.sanctum_effect_9853", + ["text"] = "Has Untouchable", + ["type"] = "sanctum", + }, + [148] = { + ["id"] = "sanctum.sanctum_effect_30450", + ["text"] = "Has Rusted Mallet", + ["type"] = "sanctum", + }, + [149] = { + ["id"] = "sanctum.sanctum_effect_24131", + ["text"] = "Has Weakened Flesh", + ["type"] = "sanctum", + }, + [150] = { + ["id"] = "sanctum.sanctum_effect_28313", + ["text"] = "Has Fiendish Wings", + ["type"] = "sanctum", + }, + [151] = { + ["id"] = "sanctum.sanctum_effect_30473", + ["text"] = "Has Worn Sandals", + ["type"] = "sanctum", + }, + [152] = { + ["id"] = "sanctum.sanctum_effect_43834", + ["text"] = "Has Orb of Negation", + ["type"] = "sanctum", + }, + [153] = { + ["id"] = "sanctum.sanctum_effect_55120", + ["text"] = "Has Tradition's Demand", + ["type"] = "sanctum", + }, + [154] = { + ["id"] = "sanctum.sanctum_effect_6958", + ["text"] = "Has Chiselled Stone", + ["type"] = "sanctum", + }, + [155] = { + ["id"] = "sanctum.sanctum_effect_45600", + ["text"] = "Has Glass Shard", + ["type"] = "sanctum", + }, + [156] = { + ["id"] = "sanctum.sanctum_effect_35578", + ["text"] = "Has Iron Manacles", + ["type"] = "sanctum", + }, + [157] = { + ["id"] = "sanctum.sanctum_effect_48487", + ["text"] = "Has Sharpened Arrowhead", + ["type"] = "sanctum", + }, + [158] = { + ["id"] = "sanctum.sanctum_effect_16335", + ["text"] = "Has Shattered Shield", + ["type"] = "sanctum", + }, + [159] = { + ["id"] = "sanctum.sanctum_effect_55502", + ["text"] = "Has Corrosive Concoction", + ["type"] = "sanctum", + }, + [160] = { + ["id"] = "sanctum.sanctum_effect_62382", + ["text"] = "Has Pledge to the Guileful", + ["type"] = "sanctum", + }, + [161] = { + ["id"] = "sanctum.sanctum_effect_27532", + ["text"] = "Has Pledge to the Powerful", + ["type"] = "sanctum", + }, + [162] = { + ["id"] = "sanctum.sanctum_effect_60079", + ["text"] = "Has Pledge to the Deserted", + ["type"] = "sanctum", + }, + [163] = { + ["id"] = "sanctum.sanctum_effect_48548", + ["text"] = "Has Pledge to the Afflicted", + ["type"] = "sanctum", + }, + [164] = { + ["id"] = "sanctum.sanctum_effect_0", + ["text"] = "Has ", + ["type"] = "sanctum", + }, + }, + ["id"] = "sanctum", + ["label"] = "Sanctum", + }, + [10] = { + ["entries"] = { + [1] = { + ["id"] = "skill.shield_block", + ["text"] = "Grants Skill: Level # Raise Shield", + ["type"] = "skill", + }, + [2] = { + ["id"] = "skill.mana_drain", + ["text"] = "Grants Skill: Level # Mana Drain", + ["type"] = "skill", + }, + [3] = { + ["id"] = "skill.power_siphon", + ["text"] = "Grants Skill: Level # Power Siphon", + ["type"] = "skill", + }, + [4] = { + ["id"] = "skill.summon_skeleton_warrior", + ["text"] = "Grants Skill: Level # Skeletal Warrior Minion", + ["type"] = "skill", + }, + [5] = { + ["id"] = "skill.sigil_of_power", + ["text"] = "Grants Skill: Level # Sigil of Power", + ["type"] = "skill", + }, + [6] = { + ["id"] = "skill.lightning_bolt", + ["text"] = "Grants Skill: Level # Lightning Bolt", + ["type"] = "skill", + }, + [7] = { + ["id"] = "skill.malice", + ["text"] = "Grants Skill: Level # Malice", + ["type"] = "skill", + }, + [8] = { + ["id"] = "skill.volatile_dead", + ["text"] = "Grants Skill: Level # Volatile Dead", + ["type"] = "skill", + }, + [9] = { + ["id"] = "skill.firebolt", + ["text"] = "Grants Skill: Level # Firebolt", + ["type"] = "skill", + }, + [10] = { + ["id"] = "skill.chaosbolt", + ["text"] = "Grants Skill: Level # Chaos Bolt", + ["type"] = "skill", + }, + [11] = { + ["id"] = "skill.bone_blast", + ["text"] = "Grants Skill: Level # Bone Blast", + ["type"] = "skill", + }, + [12] = { + ["id"] = "skill.freezing_shards", + ["text"] = "Grants Skill: Level # Freezing Shards", + ["type"] = "skill", + }, + [13] = { + ["id"] = "skill.discipline", + ["text"] = "Grants Skill: Level # Discipline", + ["type"] = "skill", + }, + [14] = { + ["id"] = "skill.living_bomb_player", + ["text"] = "Grants Skill: Level # Living Bomb", + ["type"] = "skill", + }, + [15] = { + ["id"] = "skill.spellslinger_invocation", + ["text"] = "Grants Skill: Level # Spellslinger", + ["type"] = "skill", + }, + [16] = { + ["id"] = "skill.unique_dusk_vigil_triggered_blazing_cluster", + ["text"] = "Grants Skill: Level # Ember Fusillade", + ["type"] = "skill", + }, + [17] = { + ["id"] = "skill.purity_of_fire", + ["text"] = "Grants Skill: Level # Purity of Fire", + ["type"] = "skill", + }, + [18] = { + ["id"] = "skill.unique_earthbound_triggered_spark", + ["text"] = "Grants Skill: Level # Spark", + ["type"] = "skill", + }, + [19] = { + ["id"] = "skill.purity_of_lightning", + ["text"] = "Grants Skill: Level # Purity of Lightning", + ["type"] = "skill", + }, + [20] = { + ["id"] = "skill.unique_breach_lightning_bolt", + ["text"] = "Grants Skill: Level # Lightning Bolt", + ["type"] = "skill", + }, + [21] = { + ["id"] = "skill.purity_of_ice", + ["text"] = "Grants Skill: Level # Purity of Ice", + ["type"] = "skill", + }, + [22] = { + ["id"] = "skill.corpse_cloud_triggered", + ["text"] = "Grants Skill: Level # Decompose", + ["type"] = "skill", + }, + [23] = { + ["id"] = "skill.parry", + ["text"] = "Grants Skill: Level # Parry", + ["type"] = "skill", + }, + [24] = { + ["id"] = "skill.reap", + ["text"] = "Grants Skill: Level # Reap", + ["type"] = "skill", + }, + [25] = { + ["id"] = "skill.galvanic_field", + ["text"] = "Grants Skill: Level # Galvanic Field", + ["type"] = "skill", + }, + [26] = { + ["id"] = "skill.solar_orb", + ["text"] = "Grants Skill: Level # Solar Orb", + ["type"] = "skill", + }, + [27] = { + ["id"] = "skill.consecrate", + ["text"] = "Grants Skill: Level # Consecrate", + ["type"] = "skill", + }, + [28] = { + ["id"] = "skill.fulmination", + ["text"] = "Grants Skill: Level # Fulmination", + ["type"] = "skill", + }, + [29] = { + ["id"] = "skill.corpse_cloud", + ["text"] = "Grants Skill: Level # Decompose", + ["type"] = "skill", + }, + [30] = { + ["id"] = "skill.cast_on_block", + ["text"] = "Grants Skill: Level # Cast on Block", + ["type"] = "skill", + }, + [31] = { + ["id"] = "skill.unleash", + ["text"] = "Grants Skill: Level # Unleash", + ["type"] = "skill", + }, + [32] = { + ["id"] = "skill.enervating_nova", + ["text"] = "Grants Skill: Level # Enervating Nova", + ["type"] = "skill", + }, + [33] = { + ["id"] = "skill.feast_of_flesh", + ["text"] = "Grants Skill: Level # Feast of Flesh", + ["type"] = "skill", + }, + [34] = { + ["id"] = "skill.hyena_cackle", + ["text"] = "Grants Skill: Level # Cackling Companions", + ["type"] = "skill", + }, + [35] = { + ["id"] = "skill.sanguine_revelry", + ["text"] = "Grants Skill: Level # Sanguine Revelry", + ["type"] = "skill", + }, + [36] = { + ["id"] = "skill.phantasmal_arrow", + ["text"] = "Grants Skill: Level # Phantasmal Arrow", + ["type"] = "skill", + }, + [37] = { + ["id"] = "skill.gemini_surge", + ["text"] = "Grants Skill: Level # Gemini Surge", + ["type"] = "skill", + }, + [38] = { + ["id"] = "skill.herald_of_ash", + ["text"] = "Grants Skill: Level # Herald of Ash", + ["type"] = "skill", + }, + [39] = { + ["id"] = "skill.cast_on_charm_use", + ["text"] = "Grants Skill: Level # Cast on Charm Use", + ["type"] = "skill", + }, + [40] = { + ["id"] = "skill.black_powder_blitz_reservation", + ["text"] = "Grants Skill: Level # Black Powder Blitz", + ["type"] = "skill", + }, + [41] = { + ["id"] = "skill.future_past", + ["text"] = "Grants Skill: Level # Future-Past", + ["type"] = "skill", + }, + [42] = { + ["id"] = "skill.blink", + ["text"] = "Grants Skill: Level # Blink", + ["type"] = "skill", + }, + [43] = { + ["id"] = "skill.life_remnants", + ["text"] = "Grants Skill: Level # Life Remnants", + ["type"] = "skill", + }, + [44] = { + ["id"] = "skill.herald_of_ice", + ["text"] = "Grants Skill: Level # Herald of Ice", + ["type"] = "skill", + }, + [45] = { + ["id"] = "skill.herald_of_thunder", + ["text"] = "Grants Skill: Level # Herald of Thunder", + ["type"] = "skill", + }, + [46] = { + ["id"] = "skill.cast_lightning_spell_on_hit", + ["text"] = "Grants Skill: Level # Thundergod's Wrath", + ["type"] = "skill", + }, + [47] = { + ["id"] = "skill.requiem_ammo", + ["text"] = "Grants Skill: Level # Compose Requiem", + ["type"] = "skill", + }, + [48] = { + ["id"] = "skill.exploding_poison_toad", + ["text"] = "Grants Skill: Level # Bursting Fen Toad", + ["type"] = "skill", + }, + [49] = { + ["id"] = "skill.crackling_palm", + ["text"] = "Grants Skill: Level # Crackling Palm", + ["type"] = "skill", + }, + [50] = { + ["id"] = "skill.scattering_calamity", + ["text"] = "Grants Skill: Level # His Scattering Calamity", + ["type"] = "skill", + }, + [51] = { + ["id"] = "skill.withering_presence", + ["text"] = "Grants Skill: Level # Withering Presence", + ["type"] = "skill", + }, + [52] = { + ["id"] = "skill.pinnacle_of_power", + ["text"] = "Grants Skill: Level # Pinnacle of Power", + ["type"] = "skill", + }, + [53] = { + ["id"] = "skill.valakos_charge", + ["text"] = "Grants Skill: Level # Valako's Charge", + ["type"] = "skill", + }, + [54] = { + ["id"] = "skill.runic_tempering", + ["text"] = "Grants Skill: Level # Runic Tempering", + ["type"] = "skill", + }, + [55] = { + ["id"] = "skill.icestorm", + ["text"] = "Grants Skill: Level # Icestorm", + ["type"] = "skill", + }, + [56] = { + ["id"] = "skill.chaos_surge", + ["text"] = "Grants Skill: Level # Chaotic Surge", + ["type"] = "skill", + }, + [57] = { + ["id"] = "skill.vile_disruption", + ["text"] = "Grants Skill: Level # His Vile Intrusion", + ["type"] = "skill", + }, + [58] = { + ["id"] = "skill.his_foul_emergence", + ["text"] = "Grants Skill: Level # His Foul Emergence", + ["type"] = "skill", + }, + [59] = { + ["id"] = "skill.molten_crash", + ["text"] = "Grants Skill: Level # Molten Crash", + ["type"] = "skill", + }, + [60] = { + ["id"] = "skill.grave_command", + ["text"] = "Grants Skill: Level # His Grave Command", + ["type"] = "skill", + }, + [61] = { + ["id"] = "skill.heart_of_ice", + ["text"] = "Grants Skill: Level # Heart of Ice", + ["type"] = "skill", + }, + [62] = { + ["id"] = "skill.his_winnowing_flame", + ["text"] = "Grants Skill: Level # His Winnowing Flame", + ["type"] = "skill", + }, + [63] = { + ["id"] = "skill.atziri_herald", + ["text"] = "Grants Skill: Level # Herald of the Royal Queen", + ["type"] = "skill", + }, + [64] = { + ["id"] = "skill.sigil_of_life", + ["text"] = "Grants Skill: Level # Rite of Restoration", + ["type"] = "skill", + }, + [65] = { + ["id"] = "skill.mirror_of_refraction", + ["text"] = "Grants Skill: Level # Mirror of Refraction", + ["type"] = "skill", + }, + [66] = { + ["id"] = "skill.shattering_spite", + ["text"] = "Grants Skill: Level # Shattering Spite", + ["type"] = "skill", + }, + [67] = { + ["id"] = "skill.triggered_molten_shower", + ["text"] = "Grants Skill: Level # Molten Shower", + ["type"] = "skill", + }, + [68] = { + ["id"] = "skill.impurity", + ["text"] = "Grants Skill: Level # Impurity", + ["type"] = "skill", + }, + [69] = { + ["id"] = "skill.harbinger_of_madness", + ["text"] = "Grants Skill: Level # Harbinger of Madness", + ["type"] = "skill", + }, + [70] = { + ["id"] = "skill.spirit_vessel_companion", + ["text"] = "Grants Skill: Level # Spirit Vessel", + ["type"] = "skill", + }, + [71] = { + ["id"] = "skill.summon_mist_raven", + ["text"] = "Grants Skill: Level # Mist Raven", + ["type"] = "skill", + }, + [72] = { + ["id"] = "skill.coiling_bolts", + ["text"] = "Grants Skill: Level # Coiling Bolts", + ["type"] = "skill", + }, + [73] = { + ["id"] = "skill.elemental_invocation", + ["text"] = "Grants Skill: Level # Elemental Invocation", + ["type"] = "skill", + }, + [74] = { + ["id"] = "skill.crushing_fear", + ["text"] = "Grants Skill: Level # Crushing Fear", + ["type"] = "skill", + }, + [75] = { + ["id"] = "skill.sacrifice", + ["text"] = "Grants Skill: Level # Sacrifice", + ["type"] = "skill", + }, + [76] = { + ["id"] = "skill.archmage", + ["text"] = "Grants Skill: Level # Archmage", + ["type"] = "skill", + }, + [77] = { + ["id"] = "skill.summon_rhoa_mount", + ["text"] = "Grants Skill: Level # Rhoa Mount", + ["type"] = "skill", + }, + [78] = { + ["id"] = "skill.fireball", + ["text"] = "Grants Skill: Level # Fireball", + ["type"] = "skill", + }, + [79] = { + ["id"] = "skill.elemental_conflux", + ["text"] = "Grants Skill: Level # Elemental Conflux", + ["type"] = "skill", + }, + [80] = { + ["id"] = "skill.azmerian_swarm", + ["text"] = "Grants Skill: Level # Azmerian Swarms", + ["type"] = "skill", + }, + [81] = { + ["id"] = "skill.feral_invocation", + ["text"] = "Grants Skill: Level # Feral Invocation", + ["type"] = "skill", + }, + [82] = { + ["id"] = "skill.overwhelming_presence", + ["text"] = "Grants Skill: Level # Overwhelming Presence", + ["type"] = "skill", + }, + [83] = { + ["id"] = "skill.starborn_onslaught", + ["text"] = "Grants Skill: Level # Starborn Onslaught", + ["type"] = "skill", + }, + [84] = { + ["id"] = "skill.raging_spirits", + ["text"] = "Grants Skill: Level # Raging Spirits", + ["type"] = "skill", + }, + [85] = { + ["id"] = "skill.scavenged_plating", + ["text"] = "Grants Skill: Level # Scavenged Plating", + ["type"] = "skill", + }, + [86] = { + ["id"] = "skill.shard_scavenger", + ["text"] = "Grants Skill: Level # Shard Scavenger", + ["type"] = "skill", + }, + [87] = { + ["id"] = "skill.time_of_need", + ["text"] = "Grants Skill: Level # Time of Need", + ["type"] = "skill", + }, + [88] = { + ["id"] = "skill.wind_dancer", + ["text"] = "Grants Skill: Level # Wind Dancer", + ["type"] = "skill", + }, + [89] = { + ["id"] = "skill.dread_banner_reservation", + ["text"] = "Grants Skill: Level # Dread Banner", + ["type"] = "skill", + }, + [90] = { + ["id"] = "skill.magma_barrier", + ["text"] = "Grants Skill: Level # Magma Barrier", + ["type"] = "skill", + }, + [91] = { + ["id"] = "skill.ancient_gifts", + ["text"] = "Grants Skill: Level # Wildwood's Gifts", + ["type"] = "skill", + }, + [92] = { + ["id"] = "skill.combat_frenzy", + ["text"] = "Grants Skill: Level # Combat Frenzy", + ["type"] = "skill", + }, + [93] = { + ["id"] = "skill.cast_on_critical_strike", + ["text"] = "Grants Skill: Level # Cast on Critical", + ["type"] = "skill", + }, + [94] = { + ["id"] = "skill.cast_on_minion_death", + ["text"] = "Grants Skill: Level # Cast on Minion Death", + ["type"] = "skill", + }, + [95] = { + ["id"] = "skill.ghost_dance", + ["text"] = "Grants Skill: Level # Ghost Dance", + ["type"] = "skill", + }, + [96] = { + ["id"] = "skill.berserk", + ["text"] = "Grants Skill: Level # Berserk", + ["type"] = "skill", + }, + [97] = { + ["id"] = "skill.ravenous_swarm", + ["text"] = "Grants Skill: Level # Ravenous Swarm", + ["type"] = "skill", + }, + [98] = { + ["id"] = "skill.savage_fury", + ["text"] = "Grants Skill: Level # Savage Fury", + ["type"] = "skill", + }, + [99] = { + ["id"] = "skill.righteous_descent", + ["text"] = "Grants Skill: Level # Righteous Descent", + ["type"] = "skill", + }, + [100] = { + ["id"] = "skill.herald_of_plague", + ["text"] = "Grants Skill: Level # Herald of Plague", + ["type"] = "skill", + }, + [101] = { + ["id"] = "skill.trail_of_caltrops", + ["text"] = "Grants Skill: Level # Trail of Caltrops", + ["type"] = "skill", + }, + [102] = { + ["id"] = "skill.summon_spiraling_conspiracy", + ["text"] = "Grants Skill: Level # Spiraling Conspiracy", + ["type"] = "skill", + }, + [103] = { + ["id"] = "skill.siphon_elements", + ["text"] = "Grants Skill: Level # Siphon Elements", + ["type"] = "skill", + }, + [104] = { + ["id"] = "skill.herald_of_blood", + ["text"] = "Grants Skill: Level # Herald of Blood", + ["type"] = "skill", + }, + [105] = { + ["id"] = "skill.cast_on_dodge", + ["text"] = "Grants Skill: Level # Cast on Dodge", + ["type"] = "skill", + }, + [106] = { + ["id"] = "skill.alchemists_boon", + ["text"] = "Grants Skill: Level # Alchemist's Boon", + ["type"] = "skill", + }, + [107] = { + ["id"] = "skill.reapers_invocation", + ["text"] = "Grants Skill: Level # Reaper's Invocation", + ["type"] = "skill", + }, + [108] = { + ["id"] = "skill.barrier_invocation", + ["text"] = "Grants Skill: Level # Barrier Invocation", + ["type"] = "skill", + }, + [109] = { + ["id"] = "skill.summon_azmerian_wolf", + ["text"] = "Grants Skill: Level # Azmerian Wolf", + ["type"] = "skill", + }, + [110] = { + ["id"] = "skill.trinity", + ["text"] = "Grants Skill: Level # Trinity", + ["type"] = "skill", + }, + [111] = { + ["id"] = "skill.blink_reservation", + ["text"] = "Grants Skill: Level # Blink", + ["type"] = "skill", + }, + [112] = { + ["id"] = "skill.defiance_banner_reservation", + ["text"] = "Grants Skill: Level # Defiance Banner", + ["type"] = "skill", + }, + [113] = { + ["id"] = "skill.new_new_arctic_armour", + ["text"] = "Grants Skill: Level # Arctic Armour", + ["type"] = "skill", + }, + [114] = { + ["id"] = "skill.nightfall_soaring_midnight", + ["text"] = "Grants Skill: Level # Soaring Midnight", + ["type"] = "skill", + }, + [115] = { + ["id"] = "skill.eternal_rage", + ["text"] = "Grants Skill: Level # Eternal Rage", + ["type"] = "skill", + }, + [116] = { + ["id"] = "skill.war_banner_reservation", + ["text"] = "Grants Skill: Level # War Banner", + ["type"] = "skill", + }, + [117] = { + ["id"] = "skill.barkskin", + ["text"] = "Grants Skill: Level # Barkskin", + ["type"] = "skill", + }, + [118] = { + ["id"] = "skill.convalescence", + ["text"] = "Grants Skill: Level # Convalescence", + ["type"] = "skill", + }, + [119] = { + ["id"] = "skill.attrition", + ["text"] = "Grants Skill: Level # Attrition", + ["type"] = "skill", + }, + [120] = { + ["id"] = "skill.charge_regulation", + ["text"] = "Grants Skill: Level # Charge Regulation", + ["type"] = "skill", + }, + [121] = { + ["id"] = "skill.mirage_archer", + ["text"] = "Grants Skill: Level # Mirage Archer", + ["type"] = "skill", + }, + [122] = { + ["id"] = "skill.briarpatch", + ["text"] = "Grants Skill: Level # Briarpatch", + ["type"] = "skill", + }, + [123] = { + ["id"] = "skill.midnight_star", + ["text"] = "Grants Skill: Level # Midnight Zenith", + ["type"] = "skill", + }, + [124] = { + ["id"] = "skill.iron_ward", + ["text"] = "Grants Skill: Level # Iron Ward", + ["type"] = "skill", + }, + [125] = { + ["id"] = "skill.plague_bearer", + ["text"] = "Grants Skill: Level # Plague Bearer", + ["type"] = "skill", + }, + [126] = { + ["id"] = "skill.lingering_illusion", + ["text"] = "Grants Skill: Level # Lingering Illusion", + ["type"] = "skill", + }, + [127] = { + ["id"] = "skill.mana_remnants", + ["text"] = "Grants Skill: Level # Mana Remnants", + ["type"] = "skill", + }, + [128] = { + ["id"] = "skill.cast_on_elemental_ailment", + ["text"] = "Grants Skill: Level # Cast on Elemental Ailment", + ["type"] = "skill", + }, + [129] = { + ["id"] = "skill.wolf_pack", + ["text"] = "Grants Skill: Level # Wolf Pack", + ["type"] = "skill", + }, + }, + ["id"] = "skill", + ["label"] = "Skill", + }, +} \ No newline at end of file diff --git a/src/Data/trade_site_stats.json b/src/Data/trade_site_stats.json deleted file mode 100644 index 83a1bc2ae..000000000 --- a/src/Data/trade_site_stats.json +++ /dev/null @@ -1,32204 +0,0 @@ -{ - "result": [ - { - "id": "pseudo", - "label": "Pseudo", - "entries": [ - { - "id": "pseudo.pseudo_total_cold_resistance", - "text": "+#% total to Cold Resistance", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_total_fire_resistance", - "text": "+#% total to Fire Resistance", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_total_lightning_resistance", - "text": "+#% total to Lightning Resistance", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_total_elemental_resistance", - "text": "+#% total Elemental Resistance", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_total_chaos_resistance", - "text": "+#% total to Chaos Resistance", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_total_resistance", - "text": "+#% total Resistance", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_count_resistances", - "text": "# total Resistances", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_count_elemental_resistances", - "text": "# total Elemental Resistances", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_total_all_elemental_resistances", - "text": "+#% total to all Elemental Resistances", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_total_strength", - "text": "+# total to Strength", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_total_dexterity", - "text": "+# total to Dexterity", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_total_intelligence", - "text": "+# total to Intelligence", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_total_all_attributes", - "text": "+# total to all Attributes", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_total_attributes", - "text": "+# total to Attributes", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_total_life", - "text": "+# total maximum Life", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_total_mana", - "text": "+# total maximum Mana", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_total_energy_shield", - "text": "+# total maximum Energy Shield", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_increased_energy_shield", - "text": "#% total increased maximum Energy Shield", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_increased_movement_speed", - "text": "#% increased Movement Speed", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_enchant_mods", - "text": "# Enchant Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_implicit_mods", - "text": "# Implicit Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_prefix_mods", - "text": "# Prefix Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_suffix_mods", - "text": "# Suffix Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_affix_mods", - "text": "# Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_desecrated_prefix_mods", - "text": "# Desecrated Prefix Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_desecrated_suffix_mods", - "text": "# Desecrated Suffix Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_desecrated_mods", - "text": "# Desecrated Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_unrevealed_prefix_mods", - "text": "# Unrevealed Prefix Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_unrevealed_suffix_mods", - "text": "# Unrevealed Suffix Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_unrevealed_mods", - "text": "# Unrevealed Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_empty_prefix_mods", - "text": "# Empty Prefix Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_empty_suffix_mods", - "text": "# Empty Suffix Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_empty_affix_mods", - "text": "# Empty Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_fractured_mods", - "text": "# Fractured Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_crafted_mods", - "text": "# Crafted Modifiers", - "type": "pseudo" - }, - { - "id": "pseudo.pseudo_number_of_uses_remaining", - "text": "# uses remaining (Tablets)", - "type": "pseudo" - } - ] - }, - { - "id": "explicit", - "label": "Explicit", - "entries": [ - { - "id": "explicit.stat_1050105434", - "text": "# to maximum Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_3299347043", - "text": "# to maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_3372524247", - "text": "#% to Fire Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_4220027924", - "text": "#% to Cold Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_1671376347", - "text": "#% to Lightning Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_3917489142", - "text": "#% increased Rarity of Items found", - "type": "explicit" - }, - { - "id": "explicit.stat_328541901", - "text": "# to Intelligence", - "type": "explicit" - }, - { - "id": "explicit.stat_3261801346", - "text": "# to Dexterity", - "type": "explicit" - }, - { - "id": "explicit.stat_4080418644", - "text": "# to Strength", - "type": "explicit" - }, - { - "id": "explicit.stat_3325883026", - "text": "# Life Regeneration per second", - "type": "explicit" - }, - { - "id": "explicit.stat_789117908", - "text": "#% increased Mana Regeneration Rate", - "type": "explicit" - }, - { - "id": "explicit.stat_803737631", - "text": "# to Accuracy Rating", - "type": "explicit" - }, - { - "id": "explicit.stat_2974417149", - "text": "#% increased Spell Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_4052037485", - "text": "# to maximum Energy Shield (Local)", - "type": "explicit" - }, - { - "id": "explicit.stat_3032590688", - "text": "Adds # to # Physical Damage to Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_4015621042", - "text": "#% increased Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2891184298", - "text": "#% increased Cast Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_1368271171", - "text": "Gain # Mana per enemy killed", - "type": "explicit" - }, - { - "id": "explicit.stat_3695891184", - "text": "Gain # Life per enemy killed", - "type": "explicit" - }, - { - "id": "explicit.stat_2901986750", - "text": "#% to all Elemental Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_915769802", - "text": "# to Stun Threshold", - "type": "explicit" - }, - { - "id": "explicit.stat_1509134228", - "text": "#% increased Physical Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3639275092", - "text": "#% increased Attribute Requirements", - "type": "explicit" - }, - { - "id": "explicit.stat_53045048", - "text": "# to Evasion Rating (Local)", - "type": "explicit" - }, - { - "id": "explicit.stat_2923486259", - "text": "#% to Chaos Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_2482852589", - "text": "#% increased maximum Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_3981240776", - "text": "# to Spirit", - "type": "explicit" - }, - { - "id": "explicit.stat_2250533757", - "text": "#% increased Movement Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_691932474", - "text": "# to Accuracy Rating (Local)", - "type": "explicit" - }, - { - "id": "explicit.stat_1754445556", - "text": "Adds # to # Lightning damage to Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_2231156303", - "text": "#% increased Lightning Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3489782002", - "text": "# to maximum Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2144192055", - "text": "# to Evasion Rating", - "type": "explicit" - }, - { - "id": "explicit.stat_1263695895", - "text": "#% increased Light Radius", - "type": "explicit" - }, - { - "id": "explicit.stat_4067062424", - "text": "Adds # to # Cold damage to Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_124859000", - "text": "#% increased Evasion Rating (Local)", - "type": "explicit" - }, - { - "id": "explicit.stat_2106365538", - "text": "#% increased Evasion Rating", - "type": "explicit" - }, - { - "id": "explicit.stat_3291658075", - "text": "#% increased Cold Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1573130764", - "text": "Adds # to # Fire damage to Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_587431675", - "text": "#% increased Critical Hit Chance", - "type": "explicit" - }, - { - "id": "explicit.stat_1379411836", - "text": "# to all Attributes", - "type": "explicit" - }, - { - "id": "explicit.stat_3484657501", - "text": "# to Armour (Local)", - "type": "explicit" - }, - { - "id": "explicit.stat_1940865751", - "text": "Adds # to # Physical Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2866361420", - "text": "#% increased Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_3556824919", - "text": "#% increased Critical Damage Bonus", - "type": "explicit" - }, - { - "id": "explicit.stat_1062208444", - "text": "#% increased Armour (Local)", - "type": "explicit" - }, - { - "id": "explicit.stat_1999113824", - "text": "#% increased Evasion and Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_3962278098", - "text": "#% increased Fire Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3336890334", - "text": "Adds # to # Lightning Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2881298780", - "text": "# to # Physical Thorns damage", - "type": "explicit" - }, - { - "id": "explicit.stat_736967255", - "text": "#% increased Chaos Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3321629045", - "text": "#% increased Armour and Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2451402625", - "text": "#% increased Armour and Evasion", - "type": "explicit" - }, - { - "id": "explicit.stat_709508406", - "text": "Adds # to # Fire Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3873704640", - "text": "#% increased Magic Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_1037193709", - "text": "Adds # to # Cold Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3793155082", - "text": "#% increased Rare Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_2968503605", - "text": "#% increased Flammability Magnitude", - "type": "explicit" - }, - { - "id": "explicit.stat_737908626", - "text": "#% increased Critical Hit Chance for Spells", - "type": "explicit" - }, - { - "id": "explicit.stat_210067635", - "text": "#% increased Attack Speed (Local)", - "type": "explicit" - }, - { - "id": "explicit.stat_1202301673", - "text": "# to Level of all Projectile Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_681332047", - "text": "#% increased Attack Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_9187492", - "text": "# to Level of all Melee Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1276056105", - "text": "#% increased Gold found in this Area (Gold Piles)", - "type": "explicit" - }, - { - "id": "explicit.stat_1276056105", - "text": "#% increased Gold found in your Maps (Gold Piles)", - "type": "explicit" - }, - { - "id": "explicit.stat_387439868", - "text": "#% increased Elemental Damage with Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_2162097452", - "text": "# to Level of all Minion Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_274716455", - "text": "#% increased Critical Spell Damage Bonus", - "type": "explicit" - }, - { - "id": "explicit.stat_518292764", - "text": "#% to Critical Hit Chance", - "type": "explicit" - }, - { - "id": "explicit.stat_2694482655", - "text": "#% to Critical Damage Bonus", - "type": "explicit" - }, - { - "id": "explicit.stat_3141070085", - "text": "#% increased Elemental Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_707457662", - "text": "Leech #% of Physical Attack Damage as Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_3759663284", - "text": "#% increased Projectile Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_2557965901", - "text": "Leech #% of Physical Attack Damage as Life", - "type": "explicit" - }, - { - "id": "explicit.stat_809229260", - "text": "# to Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_124131830", - "text": "# to Level of all Spell Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1389754388", - "text": "#% increased Charm Effect Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_1444556985", - "text": "#% of Damage taken Recouped as Life", - "type": "explicit" - }, - { - "id": "explicit.stat_3278136794", - "text": "Gain #% of Damage as Extra Lightning Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_669069897", - "text": "Leeches #% of Physical Damage as Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_55876295", - "text": "Leeches #% of Physical Damage as Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2194114101", - "text": "#% increased Critical Hit Chance for Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_2339757871", - "text": "#% increased Energy Shield Recharge Rate", - "type": "explicit" - }, - { - "id": "explicit.stat_3714003708", - "text": "#% increased Critical Damage Bonus for Attack Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1589917703", - "text": "Minions deal #% increased Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2505884597", - "text": "Gain #% of Damage as Extra Cold Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3015669065", - "text": "Gain #% of Damage as Extra Fire Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1839076647", - "text": "#% increased Projectile Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_57434274", - "text": "#% increased Experience gain", - "type": "explicit" - }, - { - "id": "explicit.stat_57434274", - "text": "#% increased Experience gain in your Maps", - "type": "explicit" - }, - { - "id": "explicit.stat_770672621", - "text": "Minions have #% increased maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_293638271", - "text": "#% increased chance to Shock", - "type": "explicit" - }, - { - "id": "explicit.stat_3984865854", - "text": "#% increased Spirit", - "type": "explicit" - }, - { - "id": "explicit.stat_1782086450", - "text": "#% faster start of Energy Shield Recharge", - "type": "explicit" - }, - { - "id": "explicit.stat_821021828", - "text": "Grants # Life per Enemy Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_2112395885", - "text": "#% increased amount of Life Leeched", - "type": "explicit" - }, - { - "id": "explicit.stat_239367161", - "text": "#% increased Stun Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_2843214518", - "text": "#% increased Attack Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1714706956", - "text": "#% increased Magic Pack Size", - "type": "explicit" - }, - { - "id": "explicit.stat_1836676211", - "text": "#% increased Flask Charges gained", - "type": "explicit" - }, - { - "id": "explicit.stat_2624927319", - "text": "#% increased number of Monster Packs", - "type": "explicit" - }, - { - "id": "explicit.stat_2624927319", - "text": "#% increased number of Monster Packs in your Maps", - "type": "explicit" - }, - { - "id": "explicit.stat_3417711605", - "text": "Damage Penetrates #% Cold Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_624954515", - "text": "#% increased Accuracy Rating", - "type": "explicit" - }, - { - "id": "explicit.stat_3585532255", - "text": "#% increased Charm Charges gained", - "type": "explicit" - }, - { - "id": "explicit.stat_51994685", - "text": "#% increased Flask Life Recovery rate", - "type": "explicit" - }, - { - "id": "explicit.stat_473429811", - "text": "#% increased Freeze Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_791928121", - "text": "Causes #% increased Stun Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_748522257", - "text": "#% increased Stun Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_1545858329", - "text": "# to Level of all Lightning Spell Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1412217137", - "text": "#% increased Flask Mana Recovery rate", - "type": "explicit" - }, - { - "id": "explicit.stat_44972811", - "text": "#% increased Life Regeneration rate", - "type": "explicit" - }, - { - "id": "explicit.stat_680068163", - "text": "#% increased Stun Threshold", - "type": "explicit" - }, - { - "id": "explicit.stat_2487305362", - "text": "#% increased Magnitude of Poison you inflict", - "type": "explicit" - }, - { - "id": "explicit.stat_2481353198", - "text": "#% increased Block chance (Local)", - "type": "explicit" - }, - { - "id": "explicit.stat_472520716", - "text": "#% of Damage taken Recouped as Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_3791899485", - "text": "#% increased Ignite Magnitude", - "type": "explicit" - }, - { - "id": "explicit.stat_4188894176", - "text": "#% increased Damage with Bows", - "type": "explicit" - }, - { - "id": "explicit.stat_2306002879", - "text": "#% increased Rarity of Items found", - "type": "explicit" - }, - { - "id": "explicit.stat_1241625305", - "text": "#% increased Damage with Bow Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_818778753", - "text": "Damage Penetrates #% Lightning Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_1002362373", - "text": "#% increased Melee Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1310194496", - "text": "#% increased Global Physical Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2023107756", - "text": "Recover #% of maximum Life on Kill", - "type": "explicit" - }, - { - "id": "explicit.stat_427684353", - "text": "#% increased Damage with Crossbows", - "type": "explicit" - }, - { - "id": "explicit.stat_280731498", - "text": "#% increased Area of Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_2390685262", - "text": "#% increased Quantity of Items found", - "type": "explicit" - }, - { - "id": "explicit.stat_2748665614", - "text": "#% increased maximum Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_2777224821", - "text": "#% increased Quantity of Waystones found", - "type": "explicit" - }, - { - "id": "explicit.stat_4045894391", - "text": "#% increased Damage with Quarterstaves", - "type": "explicit" - }, - { - "id": "explicit.stat_821241191", - "text": "#% increased Life Recovery from Flasks", - "type": "explicit" - }, - { - "id": "explicit.stat_1366840608", - "text": "#% increased Charges", - "type": "explicit" - }, - { - "id": "explicit.stat_4147897060", - "text": "#% increased Block chance", - "type": "explicit" - }, - { - "id": "explicit.stat_3091578504", - "text": "Minions have #% increased Attack and Cast Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_2709367754", - "text": "Gain # Rage on Melee Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_2174054121", - "text": "#% chance to inflict Bleeding on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_3759735052", - "text": "#% increased Attack Speed with Bows", - "type": "explicit" - }, - { - "id": "explicit.stat_983749596", - "text": "#% increased maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_986397080", - "text": "#% reduced Ignite Duration on you", - "type": "explicit" - }, - { - "id": "explicit.stat_3668351662", - "text": "#% increased Shock Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_1423639565", - "text": "Minions have #% to all Elemental Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_1692879867", - "text": "#% increased Duration of Bleeding on You", - "type": "explicit" - }, - { - "id": "explicit.stat_416040624", - "text": "Gain additional Stun Threshold equal to #% of maximum Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_3292710273", - "text": "Gain # Rage when Hit by an Enemy", - "type": "explicit" - }, - { - "id": "explicit.stat_2029171424", - "text": "Players are periodically Cursed with Enfeeble", - "type": "explicit" - }, - { - "id": "explicit.stat_1316278494", - "text": "#% increased Warcry Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_1829102168", - "text": "#% increased Duration of Damaging Ailments on Enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_4101943684", - "text": "Monsters have #% increased Stun Threshold", - "type": "explicit" - }, - { - "id": "explicit.stat_1994551050", - "text": "Monsters have #% increased Ailment Threshold", - "type": "explicit" - }, - { - "id": "explicit.stat_2222186378", - "text": "#% increased Mana Recovery from Flasks", - "type": "explicit" - }, - { - "id": "explicit.stat_591105508", - "text": "# to Level of all Fire Spell Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1054098949", - "text": "+#% Monster Elemental Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_1135928777", - "text": "#% increased Attack Speed with Crossbows", - "type": "explicit" - }, - { - "id": "explicit.stat_795138349", - "text": "#% chance to Poison on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_644456512", - "text": "#% reduced Flask Charges used", - "type": "explicit" - }, - { - "id": "explicit.stat_99927264", - "text": "#% reduced Shock duration on you", - "type": "explicit" - }, - { - "id": "explicit.stat_57326096", - "text": "Monsters have #% Critical Damage Bonus", - "type": "explicit" - }, - { - "id": "explicit.stat_95249895", - "text": "#% more Monster Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2753083623", - "text": "Monsters have #% increased Critical Hit Chance", - "type": "explicit" - }, - { - "id": "explicit.stat_554690751", - "text": "Players are periodically Cursed with Elemental Weakness", - "type": "explicit" - }, - { - "id": "explicit.stat_211727", - "text": "Monsters deal #% of Damage as Extra Cold", - "type": "explicit" - }, - { - "id": "explicit.stat_512071314", - "text": "Monsters deal #% of Damage as Extra Lightning", - "type": "explicit" - }, - { - "id": "explicit.stat_1629357380", - "text": "Players are periodically Cursed with Temporal Chains", - "type": "explicit" - }, - { - "id": "explicit.stat_92381065", - "text": "Monsters deal #% of Damage as Extra Fire", - "type": "explicit" - }, - { - "id": "explicit.stat_3909654181", - "text": "Monsters have #% increased Attack, Cast and Movement Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_3301100256", - "text": "#% increased Poison Duration on you", - "type": "explicit" - }, - { - "id": "explicit.stat_3067892458", - "text": "Triggered Spells deal #% increased Spell Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1890519597", - "text": "#% increased Monster Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3544800472", - "text": "#% increased Elemental Ailment Threshold", - "type": "explicit" - }, - { - "id": "explicit.stat_3196823591", - "text": "#% increased Charges gained", - "type": "explicit" - }, - { - "id": "explicit.stat_2839066308", - "text": "#% increased amount of Mana Leeched", - "type": "explicit" - }, - { - "id": "explicit.stat_798469000", - "text": "#% increased amount of Rare Chests", - "type": "explicit" - }, - { - "id": "explicit.stat_388617051", - "text": "#% increased Charges per use", - "type": "explicit" - }, - { - "id": "explicit.stat_2898517796", - "text": "#% increased amount of Magic Chests", - "type": "explicit" - }, - { - "id": "explicit.stat_3283482523", - "text": "#% increased Attack Speed with Quarterstaves", - "type": "explicit" - }, - { - "id": "explicit.stat_3174700878", - "text": "#% increased Energy Shield from Equipped Focus", - "type": "explicit" - }, - { - "id": "explicit.stat_1798257884", - "text": "Allies in your Presence deal #% increased Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3377888098", - "text": "#% increased Skill Effect Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_4159248054", - "text": "#% increased Warcry Cooldown Recovery Rate", - "type": "explicit" - }, - { - "id": "explicit.stat_3374165039", - "text": "#% increased Totem Placement speed", - "type": "explicit" - }, - { - "id": "explicit.stat_4010677958", - "text": "Allies in your Presence Regenerate # Life per second", - "type": "explicit" - }, - { - "id": "explicit.stat_1181419800", - "text": "#% increased Damage with Maces", - "type": "explicit" - }, - { - "id": "explicit.stat_3851254963", - "text": "#% increased Totem Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2321178454", - "text": "#% chance to Pierce an Enemy", - "type": "explicit" - }, - { - "id": "explicit.stat_2160282525", - "text": "#% reduced Freeze Duration on you", - "type": "explicit" - }, - { - "id": "explicit.stat_1874553720", - "text": "#% reduced Chill Duration on you", - "type": "explicit" - }, - { - "id": "explicit.stat_872504239", - "text": "#% increased Stun Buildup with Maces", - "type": "explicit" - }, - { - "id": "explicit.stat_2653955271", - "text": "Damage Penetrates #% Fire Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_440490623", - "text": "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_3741323227", - "text": "#% increased Flask Effect Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_565784293", - "text": "#% increased Knockback Distance", - "type": "explicit" - }, - { - "id": "explicit.stat_4181072906", - "text": "Players have #% less Recovery Rate of Life and Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_686254215", - "text": "#% increased Totem Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2254480358", - "text": "# to Level of all Cold Spell Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_153777645", - "text": "#% increased Area of Effect of Curses", - "type": "explicit" - }, - { - "id": "explicit.stat_21071013", - "text": "Herald Skills deal #% increased Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3233599707", - "text": "#% increased Weapon Swap Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_1570770415", - "text": "#% reduced Charm Charges used", - "type": "explicit" - }, - { - "id": "explicit.stat_2527686725", - "text": "#% increased Magnitude of Shock you inflict", - "type": "explicit" - }, - { - "id": "explicit.stat_3166958180", - "text": "#% increased Magnitude of Bleeding you inflict", - "type": "explicit" - }, - { - "id": "explicit.stat_1852872083", - "text": "#% increased Damage with Hits against Rare and Unique Enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_1303248024", - "text": "#% increased Magnitude of Ailments you inflict", - "type": "explicit" - }, - { - "id": "explicit.stat_700317374", - "text": "#% increased Amount Recovered", - "type": "explicit" - }, - { - "id": "explicit.stat_3119612865", - "text": "Minions have #% additional Physical Damage Reduction", - "type": "explicit" - }, - { - "id": "explicit.stat_133340941", - "text": "Area has patches of Ignited Ground", - "type": "explicit" - }, - { - "id": "explicit.stat_3998863698", - "text": "Monsters have #% increased Freeze Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_3376488707", - "text": "#% maximum Player Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_2508044078", - "text": "Monsters inflict #% increased Flammability Magnitude", - "type": "explicit" - }, - { - "id": "explicit.stat_1898978455", - "text": "Monster Damage Penetrates #% Elemental Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_2768835289", - "text": "#% increased Spell Physical Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_627767961", - "text": "#% increased Damage while you have an active Charm", - "type": "explicit" - }, - { - "id": "explicit.stat_115425161", - "text": "Monsters have #% increased Stun Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_2582079000", - "text": "# Charm Slot", - "type": "explicit" - }, - { - "id": "explicit.stat_95221307", - "text": "Monsters have #% chance to Poison on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_2570249991", - "text": "Monsters are Evasive", - "type": "explicit" - }, - { - "id": "explicit.stat_2549889921", - "text": "Players gain #% reduced Flask Charges", - "type": "explicit" - }, - { - "id": "explicit.stat_337935900", - "text": "Monsters take #% reduced Extra Damage from Critical Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_2887760183", - "text": "Monsters gain #% of maximum Life as Extra maximum Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2506820610", - "text": "Monsters have #% chance to inflict Bleeding on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_3169585282", - "text": "Allies in your Presence have # to Accuracy Rating", - "type": "explicit" - }, - { - "id": "explicit.stat_3787460122", - "text": "Offerings have #% increased Maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2539290279", - "text": "Monsters are Armoured", - "type": "explicit" - }, - { - "id": "explicit.stat_1718147982", - "text": "#% increased Minion Accuracy Rating", - "type": "explicit" - }, - { - "id": "explicit.stat_3477720557", - "text": "Area has patches of Shocked Ground", - "type": "explicit" - }, - { - "id": "explicit.stat_349586058", - "text": "Area has patches of Chilled Ground", - "type": "explicit" - }, - { - "id": "explicit.stat_1604736568", - "text": "Recover #% of maximum Mana on Kill (Jewel)", - "type": "explicit" - }, - { - "id": "explicit.stat_2017682521", - "text": "#% increased Pack Size", - "type": "explicit" - }, - { - "id": "explicit.stat_1854213750", - "text": "Minions have #% increased Critical Damage Bonus", - "type": "explicit" - }, - { - "id": "explicit.stat_2347036682", - "text": "Allies in your Presence deal # to # added Attack Cold Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2797971005", - "text": "Gain # Life per Enemy Hit with Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_3485067555", - "text": "#% increased Chill Duration on Enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_4236566306", - "text": "Meta Skills gain #% increased Energy", - "type": "explicit" - }, - { - "id": "explicit.stat_689816330", - "text": "Area has #% increased chance to contain Shrines", - "type": "explicit" - }, - { - "id": "explicit.stat_689816330", - "text": "#% increased chance of Shrines", - "type": "explicit" - }, - { - "id": "explicit.stat_491450213", - "text": "Minions have #% increased Critical Hit Chance", - "type": "explicit" - }, - { - "id": "explicit.stat_1873752457", - "text": "Gains # Charges per Second", - "type": "explicit" - }, - { - "id": "explicit.stat_169946467", - "text": "#% increased Accuracy Rating with Bows", - "type": "explicit" - }, - { - "id": "explicit.stat_4279535856", - "text": "Area has #% increased chance to contain Strongboxes", - "type": "explicit" - }, - { - "id": "explicit.stat_4279535856", - "text": "#% increased chance of Strongboxes", - "type": "explicit" - }, - { - "id": "explicit.stat_4226189338", - "text": "# to Level of all Chaos Spell Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1200678966", - "text": "#% increased bonuses gained from Equipped Quiver", - "type": "explicit" - }, - { - "id": "explicit.stat_1825943485", - "text": "Area has #% increased chance to contain Essences", - "type": "explicit" - }, - { - "id": "explicit.stat_1825943485", - "text": "#% increased chance of Essences", - "type": "explicit" - }, - { - "id": "explicit.stat_3824372849", - "text": "#% increased Curse Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_1772247089", - "text": "#% increased chance to inflict Ailments", - "type": "explicit" - }, - { - "id": "explicit.stat_828533480", - "text": "#% Chance to gain a Charge when you kill an enemy", - "type": "explicit" - }, - { - "id": "explicit.stat_3780644166", - "text": "#% increased Freeze Threshold", - "type": "explicit" - }, - { - "id": "explicit.stat_2854751904", - "text": "Allies in your Presence deal # to # added Attack Lightning Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_849987426", - "text": "Allies in your Presence deal # to # added Attack Fire Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3732878551", - "text": "Rare Monsters have a #% Surpassing chance to have an additional Modifier", - "type": "explicit" - }, - { - "id": "explicit.stat_3732878551", - "text": "Rare Monsters in your Maps have a #% Surpassing chance to have an additional Modifier", - "type": "explicit" - }, - { - "id": "explicit.stat_656461285", - "text": "#% increased Intelligence", - "type": "explicit" - }, - { - "id": "explicit.stat_4139681126", - "text": "#% increased Dexterity", - "type": "explicit" - }, - { - "id": "explicit.stat_734614379", - "text": "#% increased Strength", - "type": "explicit" - }, - { - "id": "explicit.stat_1998951374", - "text": "Allies in your Presence have #% increased Attack Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_3192728503", - "text": "#% increased Crossbow Reload Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_970213192", - "text": "#% increased Skill Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_1697447343", - "text": "#% increased Freeze Buildup with Quarterstaves", - "type": "explicit" - }, - { - "id": "explicit.stat_289128254", - "text": "Allies in your Presence have #% increased Cast Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_1600707273", - "text": "# to Level of all Physical Spell Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2594634307", - "text": "Mark Skills have #% increased Skill Effect Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_1250712710", - "text": "Allies in your Presence have #% increased Critical Hit Chance", - "type": "explicit" - }, - { - "id": "explicit.stat_1238227257", - "text": "Debuffs on you expire #% faster", - "type": "explicit" - }, - { - "id": "explicit.stat_1062710370", - "text": "#% increased Duration of Ignite, Shock and Chill on Enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_3057012405", - "text": "Allies in your Presence have #% increased Critical Damage Bonus", - "type": "explicit" - }, - { - "id": "explicit.stat_1574590649", - "text": "Allies in your Presence deal # to # added Attack Physical Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_318953428", - "text": "#% chance to Blind Enemies on Hit with Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_1714971114", - "text": "Mark Skills have #% increased Use Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_4095671657", - "text": "#% to Maximum Fire Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_1594812856", - "text": "#% increased Damage with Warcries", - "type": "explicit" - }, - { - "id": "explicit.stat_1569101201", - "text": "Empowered Attacks deal #% increased Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1315743832", - "text": "#% increased Thorns damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3473929743", - "text": "#% increased Pin Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_3850614073", - "text": "Allies in your Presence have #% to all Elemental Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_2011656677", - "text": "#% increased Poison Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_889691035", - "text": "#% increased Attack Speed per 10 Dexterity", - "type": "explicit" - }, - { - "id": "explicit.stat_2541588185", - "text": "#% increased Duration (Charm)", - "type": "explicit" - }, - { - "id": "explicit.stat_2301718443", - "text": "#% increased Damage against Enemies with Fully Broken Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_3146310524", - "text": "Dazes on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_2200661314", - "text": "Monsters deal #% of Damage as Extra Chaos", - "type": "explicit" - }, - { - "id": "explicit.stat_941368244", - "text": "Players have #% more Cooldown Recovery Rate", - "type": "explicit" - }, - { - "id": "explicit.stat_1405298142", - "text": "#% increased Stun Threshold if you haven't been Stunned Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_1879340377", - "text": "Monsters Break Armour equal to #% of Physical Damage dealt", - "type": "explicit" - }, - { - "id": "explicit.stat_1011760251", - "text": "#% to Maximum Lightning Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_3796523155", - "text": "#% less effect of Curses on Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_1309819744", - "text": "Monsters fire # additional Projectiles", - "type": "explicit" - }, - { - "id": "explicit.stat_3222482040", - "text": "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_1588049749", - "text": "Monsters have #% increased Accuracy Rating", - "type": "explicit" - }, - { - "id": "explicit.stat_1776411443", - "text": "Break #% increased Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_1791136590", - "text": "#% increased Weapon Damage per 10 Strength", - "type": "explicit" - }, - { - "id": "explicit.stat_434750362", - "text": "#% increased Area of Effect for Attacks per 10 Intelligence", - "type": "explicit" - }, - { - "id": "explicit.stat_101878827", - "text": "#% increased Presence Area of Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_1708461270", - "text": "Monsters have #% increased Area of Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_2365392475", - "text": "Recover # Life when Used", - "type": "explicit" - }, - { - "id": "explicit.stat_173226756", - "text": "#% increased Recovery rate", - "type": "explicit" - }, - { - "id": "explicit.stat_1120862500", - "text": "Recover # Mana when Used", - "type": "explicit" - }, - { - "id": "explicit.stat_3119292058", - "text": "Enemies Chilled by your Hits can be Shattered as though Frozen", - "type": "explicit" - }, - { - "id": "explicit.stat_1210760818", - "text": "Breaches have #% increased Monster density", - "type": "explicit" - }, - { - "id": "explicit.stat_3523867985", - "text": "#% increased Armour, Evasion and Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_1459321413", - "text": "#% increased Bleeding Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_3676141501", - "text": "#% to Maximum Cold Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_924253255", - "text": "#% increased Slowing Potency of Debuffs on You", - "type": "explicit" - }, - { - "id": "explicit.stat_2503377690", - "text": "#% of Recovery applied Instantly", - "type": "explicit" - }, - { - "id": "explicit.stat_2224050171", - "text": "Breaches in Area contain # additional Clasped Hand", - "type": "explicit" - }, - { - "id": "explicit.stat_2224050171", - "text": "Breaches in your Maps contain # additional Clasped Hand", - "type": "explicit" - }, - { - "id": "explicit.stat_2448633171", - "text": "#% of Damage taken bypasses Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_1228337241", - "text": "Gain #% of maximum Life as Extra maximum Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_3309089125", - "text": "Area contains # additional packs of Bramble Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_3757259819", - "text": "Area contains # additional packs of Beasts", - "type": "explicit" - }, - { - "id": "explicit.stat_240445958", - "text": "Area contains # additional packs of Undead", - "type": "explicit" - }, - { - "id": "explicit.stat_1436812886", - "text": "Area contains # additional packs of Ezomyte Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_2949706590", - "text": "Area contains # additional packs of Iron Guards", - "type": "explicit" - }, - { - "id": "explicit.stat_624534143", - "text": "#% increased Quantity of Breach Splinters dropped by Breach Monsters in Area", - "type": "explicit" - }, - { - "id": "explicit.stat_624534143", - "text": "#% increased Quantity of Breach Splinters dropped by Breach Monsters in your Maps", - "type": "explicit" - }, - { - "id": "explicit.stat_4130878258", - "text": "Area contains # additional packs of Faridun Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_3592067990", - "text": "Area contains # additional packs of Plagued Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_1689473577", - "text": "Area contains # additional packs of Transcended Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_4181857719", - "text": "Area contains # additional packs of Vaal Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_3049505189", - "text": "Areas which contain Breaches have #% chance to contain an additional Breach", - "type": "explicit" - }, - { - "id": "explicit.stat_3049505189", - "text": "Your Maps which contain Breaches have #% chance to contain an additional Breach", - "type": "explicit" - }, - { - "id": "explicit.stat_3240183538", - "text": "Area contains an additional Strongbox", - "type": "explicit" - }, - { - "id": "explicit.stat_3240183538", - "text": "Your Maps contain # additional Strongboxes", - "type": "explicit" - }, - { - "id": "explicit.stat_1468737867", - "text": "Area contains an additional Shrine", - "type": "explicit" - }, - { - "id": "explicit.stat_1468737867", - "text": "Your Maps contain an additional Shrine", - "type": "explicit" - }, - { - "id": "explicit.stat_395808938", - "text": "Area contains an additional Essence", - "type": "explicit" - }, - { - "id": "explicit.stat_395808938", - "text": "Your Maps contain an additional Essence", - "type": "explicit" - }, - { - "id": "explicit.stat_2676834156", - "text": "Also grants # Guard", - "type": "explicit" - }, - { - "id": "explicit.stat_1004011302", - "text": "#% increased Cooldown Recovery Rate", - "type": "explicit" - }, - { - "id": "explicit.stat_2550456553", - "text": "Rare Monsters have # additional Modifier", - "type": "explicit" - }, - { - "id": "explicit.stat_2550456553", - "text": "Rare Monsters in your Maps have # additional Modifier", - "type": "explicit" - }, - { - "id": "explicit.stat_2458962764", - "text": "#% of Maximum Life Converted to Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2214228141", - "text": "Projectiles Pierce all Ignited enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_2480498143", - "text": "#% of Skill Mana Costs Converted to Life Costs", - "type": "explicit" - }, - { - "id": "explicit.stat_1049080093", - "text": "Attacks Gain #% of Damage as Extra Fire Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_335699483", - "text": "Leeches #% of maximum Life when you Cast a Spell", - "type": "explicit" - }, - { - "id": "explicit.stat_2672805335", - "text": "#% increased Attack and Cast Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_1017648537", - "text": "Lightning damage from Hits Contributes to Electrocution Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_965913123", - "text": "#% chance to not destroy Corpses when Consuming Corpses", - "type": "explicit" - }, - { - "id": "explicit.stat_1261612903", - "text": "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_2949096603", - "text": "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", - "type": "explicit" - }, - { - "id": "explicit.stat_1011772129", - "text": "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", - "type": "explicit" - }, - { - "id": "explicit.stat_997343726", - "text": "Gain #% of Damage as Chaos Damage per Undead Minion", - "type": "explicit" - }, - { - "id": "explicit.stat_2639966148", - "text": "Minions Revive #% faster", - "type": "explicit" - }, - { - "id": "explicit.stat_1686824704", - "text": "#% of Cold Damage Converted to Lightning Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_826162720", - "text": "Trigger Ember Fusillade Skill on casting a Spell", - "type": "explicit" - }, - { - "id": "explicit.stat_3771516363", - "text": "#% additional Physical Damage Reduction", - "type": "explicit" - }, - { - "id": "explicit.stat_3885405204", - "text": "Bow Attacks fire # additional Arrows", - "type": "explicit" - }, - { - "id": "explicit.stat_1289045485", - "text": "Critical Hits Ignore Enemy Monster Lightning Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_704919631", - "text": "Trigger Lightning Bolt Skill on Critical Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_811217923", - "text": "Trigger Spark Skill on killing a Shocked Enemy", - "type": "explicit" - }, - { - "id": "explicit.stat_3837707023", - "text": "Minions have #% to Chaos Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_2637470878", - "text": "#% increased Armour Break Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_2154246560", - "text": "#% increased Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2118708619", - "text": "#% increased Damage if you have Consumed a Corpse Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_3544050945", - "text": "#% of Spell Mana Cost Converted to Life Cost", - "type": "explicit" - }, - { - "id": "explicit.stat_603021645", - "text": "When a Party Member in your Presence Casts a Spell, you\nSacrifice #% of Mana and they Leech that Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_828179689", - "text": "#% increased Magnitude of Chill you inflict", - "type": "explicit" - }, - { - "id": "explicit.stat_1261982764", - "text": "#% increased Life Recovered", - "type": "explicit" - }, - { - "id": "explicit.stat_3891355829|1", - "text": "Upgrades Radius to Medium", - "type": "explicit" - }, - { - "id": "explicit.stat_4187571952", - "text": "Gain no inherent bonus from Intelligence", - "type": "explicit" - }, - { - "id": "explicit.stat_648019518", - "text": "Removes #% of Life Recovered from Mana when used", - "type": "explicit" - }, - { - "id": "explicit.stat_2200293569", - "text": "Mana Flasks gain # charges per Second", - "type": "explicit" - }, - { - "id": "explicit.stat_315791320", - "text": "Aura Skills have #% increased Magnitudes", - "type": "explicit" - }, - { - "id": "explicit.stat_2353576063", - "text": "#% increased Curse Magnitudes", - "type": "explicit" - }, - { - "id": "explicit.stat_210092264", - "text": "#% of Elemental Damage Converted to Cold Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3973629633", - "text": "#% increased Withered Magnitude", - "type": "explicit" - }, - { - "id": "explicit.stat_2720982137", - "text": "Banner Skills have #% increased Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_1869147066", - "text": "#% increased Glory generation for Banner Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3464380325", - "text": "Projectiles Split towards # targets", - "type": "explicit" - }, - { - "id": "explicit.stat_4256531808", - "text": "Abyss Pits in Area are twice as likely to have Rewards", - "type": "explicit" - }, - { - "id": "explicit.stat_474294393", - "text": "#% reduced Mana Cost of Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3027830452", - "text": "Gain #% of maximum Mana as Extra maximum Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2929867083", - "text": "#% increased Rarity of Items found when on Low Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1090596078", - "text": "Breaches in Area spawn #% increased Magic Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_1090596078", - "text": "Breaches in your Maps spawn #% increased Magic Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_1653625239", - "text": "Breaches in Area spawn an additional Rare Monster", - "type": "explicit" - }, - { - "id": "explicit.stat_1653625239", - "text": "Breaches in your Maps spawn an additional Rare Monster", - "type": "explicit" - }, - { - "id": "explicit.stat_3003542304", - "text": "Projectiles have #% chance for an additional Projectile when Forking", - "type": "explicit" - }, - { - "id": "explicit.stat_4255069232", - "text": "#% increased Rarity of Items dropped by Map Bosses", - "type": "explicit" - }, - { - "id": "explicit.stat_3860150265", - "text": "Map Bosses grant #% increased Experience", - "type": "explicit" - }, - { - "id": "explicit.stat_3119172063", - "text": "#% increased Quantity of Items dropped by Map Bosses", - "type": "explicit" - }, - { - "id": "explicit.stat_3398787959", - "text": "Gain #% of Damage as Extra Chaos Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_712554801", - "text": "#% increased Effect of your Mark Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3868118796", - "text": "Attacks Chain an additional time", - "type": "explicit" - }, - { - "id": "explicit.stat_1102738251", - "text": "Life Flasks gain # charges per Second", - "type": "explicit" - }, - { - "id": "explicit.stat_289540902", - "text": "#% of Elemental Damage Converted to Lightning Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_40154188", - "text": "#% of Elemental Damage Converted to Fire Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3033371881", - "text": "Gain Deflection Rating equal to #% of Evasion Rating", - "type": "explicit" - }, - { - "id": "explicit.stat_990363519", - "text": "Enemies in your Presence have #% to Fire Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_2041668411", - "text": "Physical Damage is Pinning", - "type": "explicit" - }, - { - "id": "explicit.stat_3836551197", - "text": "#% increased Stack size of Simulacrum Splinters found in Area", - "type": "explicit" - }, - { - "id": "explicit.stat_3836551197", - "text": "#% increased Stack size of Simulacrum Splinters found in your Maps", - "type": "explicit" - }, - { - "id": "explicit.stat_3465791711", - "text": "Delirium Monsters in Area have #% increased Pack Size", - "type": "explicit" - }, - { - "id": "explicit.stat_3465791711", - "text": "Delirium Monsters in your Maps have #% increased Pack Size", - "type": "explicit" - }, - { - "id": "explicit.stat_3371943724", - "text": "Trigger Decompose every 1.2 metres travelled", - "type": "explicit" - }, - { - "id": "explicit.stat_3962960008", - "text": "Delirium Encounters in Area are #% more likely to spawn Unique Bosses", - "type": "explicit" - }, - { - "id": "explicit.stat_3962960008", - "text": "#% increased chance to manifest additional Unique Boss Shards within Delirium Fog", - "type": "explicit" - }, - { - "id": "explicit.stat_3428124128", - "text": "Delirious Monsters Killed in Area provide #% increased Reward Progress", - "type": "explicit" - }, - { - "id": "explicit.stat_3428124128", - "text": "Delirious Monsters killed in your Maps provide #% increased Reward Progress", - "type": "explicit" - }, - { - "id": "explicit.stat_1433051415", - "text": "Enemies in your Presence are Ignited as though dealt # Base Fire Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3503160529", - "text": "#% of Fire Damage Converted to Cold Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1585769763", - "text": "#% increased Blind Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_1104825894", - "text": "#% faster Curse Activation", - "type": "explicit" - }, - { - "id": "explicit.stat_4077035099", - "text": "Passives in Radius can be Allocated without being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_892489594", - "text": "#% increased Chance to be afflicted by Ailments when Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_610276769", - "text": "#% increased Movement Speed while affected by an Ailment", - "type": "explicit" - }, - { - "id": "explicit.stat_458438597", - "text": "#% of Damage is taken from Mana before Life", - "type": "explicit" - }, - { - "id": "explicit.stat_710476746", - "text": "#% increased Reload Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_2535267021", - "text": "Share Charges with Allies in your Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_4287671144", - "text": "#% of your Base Life Regeneration is granted to Allies in your Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_720908147", - "text": "#% increased Attack Speed per 20 Dexterity", - "type": "explicit" - }, - { - "id": "explicit.stat_3111921451", - "text": "Adds # to # Lightning Damage to Attacks per 20 Intelligence", - "type": "explicit" - }, - { - "id": "explicit.stat_2895144208", - "text": "Maim on Critical Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_2440265466", - "text": "Areas which contain Breaches have #% chance to contain three additional Breaches", - "type": "explicit" - }, - { - "id": "explicit.stat_2440265466", - "text": "Your Maps which contain Breaches have #% chance to contain three additional Breaches", - "type": "explicit" - }, - { - "id": "explicit.stat_3450276548", - "text": "Blind Chilled enemies on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_1181501418", - "text": "# to Maximum Rage", - "type": "explicit" - }, - { - "id": "explicit.stat_2957407601", - "text": "Offering Skills have #% increased Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_4081947835", - "text": "Projectiles have #% chance to Chain an additional time from terrain", - "type": "explicit" - }, - { - "id": "explicit.stat_959641748", - "text": "Removes #% of Mana Recovered from Life when used", - "type": "explicit" - }, - { - "id": "explicit.stat_1811130680", - "text": "#% increased Mana Recovered", - "type": "explicit" - }, - { - "id": "explicit.stat_943702197", - "text": "Minions gain #% of their maximum Life as Extra maximum Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2412053423", - "text": "#% increased Spell Damage per 10 Spirit", - "type": "explicit" - }, - { - "id": "explicit.stat_842299438", - "text": "Bolts fired by Crossbow Attacks have #% chance to not\nexpend Ammunition if you've Reloaded Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_3612407781", - "text": "# Physical damage taken from Projectile Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_538241406", - "text": "Damaging Ailments deal damage #% faster", - "type": "explicit" - }, - { - "id": "explicit.stat_947072590", - "text": "You cannot be Ignited for # second after being Ignited", - "type": "explicit" - }, - { - "id": "explicit.stat_613752285", - "text": "Sacrifice #% of maximum Life to gain that much Energy Shield when you Cast a Spell", - "type": "explicit" - }, - { - "id": "explicit.stat_2933846633", - "text": "Dazes on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_854225133", - "text": "You have no Life Regeneration", - "type": "explicit" - }, - { - "id": "explicit.stat_1004468512", - "text": "#% of Physical Damage taken as Fire Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1993950627", - "text": "# to # Fire Thorns damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3761294489", - "text": "All Damage from Hits with this Weapon Contributes to Freeze Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_3222402650", - "text": "Small Passive Skills in Radius also grant #% increased Elemental Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2153364323", - "text": "# Intelligence Requirement", - "type": "explicit" - }, - { - "id": "explicit.stat_2091621414", - "text": "Causes Bleeding on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_796381300", - "text": "Gain 0% to #% increased Movement Speed at random when Hit, until Hit again", - "type": "explicit" - }, - { - "id": "explicit.stat_1702195217", - "text": "#% to Block chance", - "type": "explicit" - }, - { - "id": "explicit.stat_1631928082", - "text": "Increases and Reductions to Minion Damage also affect you", - "type": "explicit" - }, - { - "id": "explicit.stat_3362812763", - "text": "#% of Armour also applies to Elemental Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_423304126", - "text": "You count as on Full Mana while at #% of maximum Mana or above", - "type": "explicit" - }, - { - "id": "explicit.stat_4145314483", - "text": "#% increased Attack Speed while on Full Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_886931978", - "text": "#% more Recovery if used while on Low Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2511217560", - "text": "#% increased Stun Recovery", - "type": "explicit" - }, - { - "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" - }, - { - "id": "explicit.stat_2230687504", - "text": "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3627052716", - "text": "#% of Lightning Damage Converted to Cold Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3276224428", - "text": "#% more Recovery if used while on Low Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_769129523", - "text": "Causes Double Stun Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_2262736444", - "text": "Eldritch Battery", - "type": "explicit" - }, - { - "id": "explicit.stat_1200347828", - "text": "Life Flasks used while on Low Life apply Recovery Instantly", - "type": "explicit" - }, - { - "id": "explicit.stat_1618482990", - "text": "#% chance for Energy Shield Recharge to start when you Kill an Enemy", - "type": "explicit" - }, - { - "id": "explicit.stat_1839832419", - "text": "Mana Flasks used while on Low Mana apply Recovery Instantly", - "type": "explicit" - }, - { - "id": "explicit.stat_2905515354", - "text": "You take #% of damage from Blocked Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_2416869319", - "text": "Grants #% of Life Recovery to Minions", - "type": "explicit" - }, - { - "id": "explicit.stat_1158324489", - "text": "Culling Strike against Frozen Enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_3045072899", - "text": "Minions' Resistances are equal to yours", - "type": "explicit" - }, - { - "id": "explicit.stat_50721145", - "text": "Your speed is unaffected by Slows", - "type": "explicit" - }, - { - "id": "explicit.stat_2592455368", - "text": "You have a Smoke Cloud around you while stationary", - "type": "explicit" - }, - { - "id": "explicit.stat_356835700", - "text": "You are considered on Low Life while at #% of maximum Life or below instead", - "type": "explicit" - }, - { - "id": "explicit.stat_1689729380", - "text": "#% chance to Avoid Death from Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_3801067695", - "text": "#% reduced effect of Shock on you", - "type": "explicit" - }, - { - "id": "explicit.stat_3205239847", - "text": "#% of Fire Damage from Hits taken as Physical Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1683578560", - "text": "Unwavering Stance", - "type": "explicit" - }, - { - "id": "explicit.stat_1466716929", - "text": "Gain # Rage when Critically Hit by an Enemy", - "type": "explicit" - }, - { - "id": "explicit.stat_1478653032", - "text": "#% reduced Effect of Chill on you", - "type": "explicit" - }, - { - "id": "explicit.stat_2635559734", - "text": "Base Critical Hit Chance for Attacks with Weapons is #%", - "type": "explicit" - }, - { - "id": "explicit.stat_585231074", - "text": "No Movement Speed Penalty while Shield is Raised", - "type": "explicit" - }, - { - "id": "explicit.stat_2214130968", - "text": "Always deals Critical Hits against Heavy Stunned Enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_98977150", - "text": "Pain Attunement", - "type": "explicit" - }, - { - "id": "explicit.stat_1902409192", - "text": "Lose # Life when you use a Skill", - "type": "explicit" - }, - { - "id": "explicit.stat_11014011", - "text": "Warcries Explode Corpses dealing #% of their Life as Physical Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2567751411", - "text": "Warcry Skills have #% increased Area of Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_3393547195", - "text": "#% increased Movement Speed when on Full Life", - "type": "explicit" - }, - { - "id": "explicit.stat_88817332", - "text": "#% increased Evasion Rating when on Full Life", - "type": "explicit" - }, - { - "id": "explicit.stat_289086688", - "text": "Hits Break # Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_326965591", - "text": "Iron Reflexes", - "type": "explicit" - }, - { - "id": "explicit.stat_381470861", - "text": "Enemies are Culled on Block", - "type": "explicit" - }, - { - "id": "explicit.stat_3764198549", - "text": "Every 3 seconds, Consume a nearby Corpse to Recover #% of maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2715190555", - "text": "#% to Thorns Critical Hit Chance", - "type": "explicit" - }, - { - "id": "explicit.stat_3590792340", - "text": "#% increased Mana Flask Charges gained", - "type": "explicit" - }, - { - "id": "explicit.stat_2306924373", - "text": "You cannot be Chilled for # second after being Chilled", - "type": "explicit" - }, - { - "id": "explicit.stat_1092987622", - "text": "#% of Melee Physical Damage taken reflected to Attacker", - "type": "explicit" - }, - { - "id": "explicit.stat_215346464", - "text": "You cannot be Shocked for # second after being Shocked", - "type": "explicit" - }, - { - "id": "explicit.stat_3423694372", - "text": "#% chance to be inflicted with Bleeding when Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_3612464552", - "text": "You cannot be Frozen for # second after being Frozen", - "type": "explicit" - }, - { - "id": "explicit.stat_4275855121", - "text": "Curses you inflict are reflected back to you", - "type": "explicit" - }, - { - "id": "explicit.stat_3308030688", - "text": "#% increased Mana Regeneration Rate while stationary", - "type": "explicit" - }, - { - "id": "explicit.stat_3037553757", - "text": "#% increased Warcry Buff Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_2793222406", - "text": "#% increased bonuses gained from Equipped Rings", - "type": "explicit" - }, - { - "id": "explicit.stat_4009879772", - "text": "#% increased Life Flask Charges gained", - "type": "explicit" - }, - { - "id": "explicit.stat_2894895028", - "text": "Damage over Time bypasses your Energy Shield\nWhile not on Full Life, Sacrifice #% of maximum Mana per Second to Recover that much Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1419390131", - "text": "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_359380213", - "text": "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_62849030", - "text": "Critical Hits Poison the enemy", - "type": "explicit" - }, - { - "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" - }, - { - "id": "explicit.stat_352044736", - "text": "Every Rage also grants #% increased Stun Threshold", - "type": "explicit" - }, - { - "id": "explicit.stat_836936635", - "text": "Regenerate #% of maximum Life per second", - "type": "explicit" - }, - { - "id": "explicit.stat_1306791873", - "text": "Lose all Fragile Regrowth when Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_3841984913", - "text": "Gain # Fragile Regrowth each second", - "type": "explicit" - }, - { - "id": "explicit.stat_3175722882", - "text": "#% of maximum Life Regenerated per second per Fragile Regrowth", - "type": "explicit" - }, - { - "id": "explicit.stat_344174146", - "text": "#% increased Mana Regeneration Rate per Fragile Regrowth", - "type": "explicit" - }, - { - "id": "explicit.stat_1173537953", - "text": "Maximum # Fragile Regrowth", - "type": "explicit" - }, - { - "id": "explicit.stat_38301299", - "text": "#% to Fire Resistance while on Low Life", - "type": "explicit" - }, - { - "id": "explicit.stat_3942946753", - "text": "Regenerate #% of maximum Life per second while on Low Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1374654984", - "text": "#% of Physical Damage prevented Recouped as Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1435496528", - "text": "Gain Cold Thorns Damage equal to #% of your maximum Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_281311123", - "text": "Iron Will", - "type": "explicit" - }, - { - "id": "explicit.stat_3528245713", - "text": "Iron Grip", - "type": "explicit" - }, - { - "id": "explicit.stat_2135899247", - "text": "Lose all Power Charges on reaching maximum Power Charges", - "type": "explicit" - }, - { - "id": "explicit.stat_1453197917", - "text": "#% chance to gain a Power Charge on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_1060572482", - "text": "#% increased Effect of Small Passive Skills in Radius", - "type": "explicit" - }, - { - "id": "explicit.stat_4256314560", - "text": "Shocks you when you reach maximum Power Charges", - "type": "explicit" - }, - { - "id": "explicit.stat_1073310669", - "text": "#% increased Evasion Rating if you have been Hit Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_67637087", - "text": "#% less Damage taken if you have not been Hit Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_3811191316", - "text": "Minions have #% increased Area of Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_1269971728", - "text": "#% reduced Magnitude of Ignite on you", - "type": "explicit" - }, - { - "id": "explicit.stat_3414243317", - "text": "Thorns can Retaliate against all Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_394473632", - "text": "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", - "type": "explicit" - }, - { - "id": "explicit.stat_185580205", - "text": "Charms gain # charge per Second", - "type": "explicit" - }, - { - "id": "explicit.stat_3749630567", - "text": "#% less Flask Charges used", - "type": "explicit" - }, - { - "id": "explicit.stat_1170174456", - "text": "#% increased Endurance Charge Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_939832726", - "text": "Recover #% of maximum Life for each Endurance Charge consumed", - "type": "explicit" - }, - { - "id": "explicit.stat_2438634449", - "text": "#% chance to Aggravate Bleeding on targets you Critically Hit with Attacks", - "type": "explicit" - }, - { - "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" - }, - { - "id": "explicit.stat_3686997387", - "text": "Double Stun Threshold while Shield is Raised", - "type": "explicit" - }, - { - "id": "explicit.stat_2310741722", - "text": "#% increased Life and Mana Recovery from Flasks", - "type": "explicit" - }, - { - "id": "explicit.stat_2995914769", - "text": "Every Rage also grants #% increased Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_4176970656", - "text": "# Physical Damage taken on Minion Death", - "type": "explicit" - }, - { - "id": "explicit.stat_3891355829|2", - "text": "Upgrades Radius to Large", - "type": "explicit" - }, - { - "id": "explicit.stat_1030153674", - "text": "Recover #% of maximum Mana on Kill", - "type": "explicit" - }, - { - "id": "explicit.stat_841429130", - "text": "Bleeding you inflict is Aggravated", - "type": "explicit" - }, - { - "id": "explicit.stat_1769611692", - "text": "Delirium in Area increases #% faster with distance from the mirror", - "type": "explicit" - }, - { - "id": "explicit.stat_1769611692", - "text": "Delirium in your Maps increases #% faster with distance from the mirror", - "type": "explicit" - }, - { - "id": "explicit.stat_1094937621", - "text": "Critical Hits ignore Enemy Monster Elemental Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_4163415912", - "text": "+# to Spirit per Socket filled", - "type": "explicit" - }, - { - "id": "explicit.stat_2875218423", - "text": "Damage Blocked is Recouped as Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_1086147743", - "text": "#% increased Ignite Duration on Enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_1158842087", - "text": "Gain #% of Elemental Damage as Extra Cold Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3550887155", - "text": "Gain #% of Elemental Damage as Extra Lightning Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_701564564", - "text": "Gain #% of Elemental Damage as Extra Fire Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2293111154", - "text": "Increases and Reductions to Minion Attack Speed also affect you", - "type": "explicit" - }, - { - "id": "explicit.stat_911712882", - "text": "#% increased Maximum Mana per Socket filled", - "type": "explicit" - }, - { - "id": "explicit.stat_674553446", - "text": "Adds # to # Chaos Damage to Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_78985352", - "text": "#% chance to Intimidate Enemies for 4 seconds on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_4058681894", - "text": "You have no Critical Damage Bonus", - "type": "explicit" - }, - { - "id": "explicit.stat_1457896329", - "text": "#% increased Quantity of Waystones dropped by Map Bosses", - "type": "explicit" - }, - { - "id": "explicit.stat_313223231", - "text": "#% increased Rarity of Items found per Socket filled", - "type": "explicit" - }, - { - "id": "explicit.stat_1137305356", - "text": "Small Passive Skills in Radius also grant #% increased Spell Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1484500028", - "text": "Attacks Gain #% of Damage as Extra Cold Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_632761194", - "text": "Life Regeneration is applied to Energy Shield instead", - "type": "explicit" - }, - { - "id": "explicit.stat_1816894864", - "text": "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", - "type": "explicit" - }, - { - "id": "explicit.stat_3665922113", - "text": "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2930706364", - "text": "Permanently Intimidate enemies on Block", - "type": "explicit" - }, - { - "id": "explicit.stat_2593651571", - "text": "+#% to all Elemental Resistances per Socket filled", - "type": "explicit" - }, - { - "id": "explicit.stat_1457411584", - "text": "Every 4 seconds, Recover 1 Life for every # Life Recovery per second from Regeneration", - "type": "explicit" - }, - { - "id": "explicit.stat_231864447", - "text": "Area contains an additional Rare Chest", - "type": "explicit" - }, - { - "id": "explicit.stat_231864447", - "text": "Your Maps contain an additional Rare Chest", - "type": "explicit" - }, - { - "id": "explicit.stat_3350944114", - "text": "Delirium Fog in Area dissipates #% faster", - "type": "explicit" - }, - { - "id": "explicit.stat_3350944114", - "text": "Delirium Fog dissipates #% faster", - "type": "explicit" - }, - { - "id": "explicit.stat_3947672598", - "text": "Life Recovery from Regeneration is not applied", - "type": "explicit" - }, - { - "id": "explicit.stat_2504358770", - "text": "Breaches open and close #% faster", - "type": "explicit" - }, - { - "id": "explicit.stat_2504358770", - "text": "Breaches in your Maps open and close #% faster", - "type": "explicit" - }, - { - "id": "explicit.stat_4065505214", - "text": "#% increased effect of Socketed Soul Cores", - "type": "explicit" - }, - { - "id": "explicit.stat_551040294", - "text": "Delirium Fog in Area spawns #% increased Fracturing Mirrors", - "type": "explicit" - }, - { - "id": "explicit.stat_551040294", - "text": "#% increased Fracturing Mirrors manifested within Delirium Fog", - "type": "explicit" - }, - { - "id": "explicit.stat_1526933524", - "text": "Instant Recovery", - "type": "explicit" - }, - { - "id": "explicit.stat_1373370443", - "text": "Skills have a #% longer Perfect Timing window", - "type": "explicit" - }, - { - "id": "explicit.stat_3314057862", - "text": "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", - "type": "explicit" - }, - { - "id": "explicit.stat_1040569494", - "text": "#% increased Evasion Rating if you've Dodge Rolled Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_2513318031", - "text": "#% increased Attributes per Socket filled", - "type": "explicit" - }, - { - "id": "explicit.stat_4224965099", - "text": "Lightning Damage of Enemies Hitting you is Lucky", - "type": "explicit" - }, - { - "id": "explicit.stat_258119672", - "text": "# metre to Dodge Roll distance", - "type": "explicit" - }, - { - "id": "explicit.stat_1174954559", - "text": "Delirium Fog in Area lasts # additional seconds before dissipating", - "type": "explicit" - }, - { - "id": "explicit.stat_1174954559", - "text": "Delirium Fog in your Maps lasts # additional seconds before dissipating", - "type": "explicit" - }, - { - "id": "explicit.stat_2301852600", - "text": "Deal #% of Overkill damage to enemies within 2 metres of the enemy killed", - "type": "explicit" - }, - { - "id": "explicit.stat_1488650448", - "text": "# to Ailment Threshold", - "type": "explicit" - }, - { - "id": "explicit.stat_2702182380", - "text": "#% increased Maximum Life per Socket filled", - "type": "explicit" - }, - { - "id": "explicit.stat_2442527254", - "text": "Small Passive Skills in Radius also grant #% increased Cold Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3855016469", - "text": "Hits against you have #% reduced Critical Damage Bonus", - "type": "explicit" - }, - { - "id": "explicit.stat_2768899959", - "text": "Small Passive Skills in Radius also grant #% increased Lightning Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1022759479", - "text": "Notable Passive Skills in Radius also grant #% increased Cast Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_2022332470", - "text": "You take Fire Damage instead of Physical Damage from Bleeding", - "type": "explicit" - }, - { - "id": "explicit.stat_455816363", - "text": "Small Passive Skills in Radius also grant #% increased Projectile Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2315177528", - "text": "Chaos Damage from Hits also Contributes to Electrocute Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_2973498992", - "text": "Chaos Damage from Hits also Contributes to Freeze Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_261503687", - "text": "Attacks Gain #% of Physical Damage as extra Chaos Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_874646180", - "text": "Aggravate Bleeding on Enemies when they Enter your Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_2954360902", - "text": "Small Passive Skills in Radius also grant Minions deal #% increased Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1978899297", - "text": "#% to all Maximum Elemental Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_3256879910", - "text": "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", - "type": "explicit" - }, - { - "id": "explicit.stat_3394832998", - "text": "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", - "type": "explicit" - }, - { - "id": "explicit.stat_1994296038", - "text": "Small Passive Skills in Radius also grant #% increased Evasion Rating", - "type": "explicit" - }, - { - "id": "explicit.stat_410952253", - "text": "Cannot have Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_1185341308", - "text": "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", - "type": "explicit" - }, - { - "id": "explicit.stat_3276271783", - "text": "Regenerate # Life per second per Maximum Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_3666476747", - "text": "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", - "type": "explicit" - }, - { - "id": "explicit.stat_2838161567", - "text": "Skills reserve 50% less Spirit", - "type": "explicit" - }, - { - "id": "explicit.stat_4173554949", - "text": "Notable Passive Skills in Radius also grant #% increased Stun Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_1967051901", - "text": "Loads an additional bolt", - "type": "explicit" - }, - { - "id": "explicit.stat_378796798", - "text": "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1426522529", - "text": "Small Passive Skills in Radius also grant #% increased Attack Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_159726667", - "text": "Monsters Sacrificed at Ritual Altars in Area grant #% increased Tribute", - "type": "explicit" - }, - { - "id": "explicit.stat_159726667", - "text": "Monsters Sacrificed at Ritual Altars grant #% increased Tribute", - "type": "explicit" - }, - { - "id": "explicit.stat_2282052746", - "text": "Rerolling Favours at Ritual Altars in Area costs #% increased Tribute", - "type": "explicit" - }, - { - "id": "explicit.stat_2282052746", - "text": "Rerolling Favours at Ritual Altars costs #% increased Tribute", - "type": "explicit" - }, - { - "id": "explicit.stat_2822644689", - "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_484792219", - "text": "Small Passive Skills in Radius also grant #% increased Stun Threshold", - "type": "explicit" - }, - { - "id": "explicit.stat_253641217", - "text": "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", - "type": "explicit" - }, - { - "id": "explicit.stat_1658498488", - "text": "Corrupted Blood cannot be inflicted on you", - "type": "explicit" - }, - { - "id": "explicit.stat_533892981", - "text": "Small Passive Skills in Radius also grant #% increased Accuracy Rating", - "type": "explicit" - }, - { - "id": "explicit.stat_2369960685", - "text": "#% of Charges consumed by used Charms are granted to your Life Flasks", - "type": "explicit" - }, - { - "id": "explicit.stat_588512487", - "text": "Map has # additional random Modifier", - "type": "explicit" - }, - { - "id": "explicit.stat_588512487", - "text": "Your Maps have # additional random Modifier", - "type": "explicit" - }, - { - "id": "explicit.stat_1207554355", - "text": "#% increased Arrow Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_4219583418", - "text": "#% increased quantity of Artifacts dropped by Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_4219583418", - "text": "#% increased quantity of Artifacts dropped by Monsters in your Maps", - "type": "explicit" - }, - { - "id": "explicit.stat_1755296234", - "text": "Targets can be affected by # of your Poisons at the same time", - "type": "explicit" - }, - { - "id": "explicit.stat_1539368271", - "text": "#% increased Expedition Explosive Placement Range", - "type": "explicit" - }, - { - "id": "explicit.stat_1039268420", - "text": "Small Passive Skills in Radius also grant #% increased chance to Shock", - "type": "explicit" - }, - { - "id": "explicit.stat_265717301", - "text": "Flasks do not recover Life", - "type": "explicit" - }, - { - "id": "explicit.stat_259470957", - "text": "On-Kill Effects happen twice", - "type": "explicit" - }, - { - "id": "explicit.stat_3289828378", - "text": "#% increased Expedition Explosive Radius", - "type": "explicit" - }, - { - "id": "explicit.stat_412462523", - "text": "#% more Attack Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_849085925", - "text": "Enemies Frozen by you take #% increased Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2002533190", - "text": "Regenerate #% of maximum Life per second while Surrounded", - "type": "explicit" - }, - { - "id": "explicit.stat_2439129490", - "text": "Chaos Resistance is zero", - "type": "explicit" - }, - { - "id": "explicit.stat_2308632835", - "text": "#% increased Reservation Efficiency of Skills which create Undead Minions", - "type": "explicit" - }, - { - "id": "explicit.stat_474452755", - "text": "Cannot Evade Enemy Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_554899692", - "text": "# Charm Slot (Global)", - "type": "explicit" - }, - { - "id": "explicit.stat_3753748365", - "text": "Damage of Enemies Hitting you is Unlucky while you are on Low Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2704905000", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", - "type": "explicit" - }, - { - "id": "explicit.stat_234296660", - "text": "Companions deal #% increased Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2359002191", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", - "type": "explicit" - }, - { - "id": "explicit.stat_1984618452", - "text": "Monsters have #% increased Shock Chance", - "type": "explicit" - }, - { - "id": "explicit.stat_1161337167", - "text": "Can be modified while Corrupted", - "type": "explicit" - }, - { - "id": "explicit.stat_1417267954", - "text": "Small Passive Skills in Radius also grant #% increased Global Physical Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1896066427", - "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_2077117738", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", - "type": "explicit" - }, - { - "id": "explicit.stat_1337740333", - "text": "Small Passive Skills in Radius also grant #% increased Melee Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1552666713", - "text": "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", - "type": "explicit" - }, - { - "id": "explicit.stat_4195198267", - "text": "Blocking Damage Poisons the Enemy as though dealing # Base Chaos Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_752930724", - "text": "Equipment and Skill Gems have #% increased Attribute Requirements", - "type": "explicit" - }, - { - "id": "explicit.stat_4164870816", - "text": "#% increased Critical Damage Bonus per Power Charge", - "type": "explicit" - }, - { - "id": "explicit.stat_945774314", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Bows", - "type": "explicit" - }, - { - "id": "explicit.stat_139889694", - "text": "Small Passive Skills in Radius also grant #% increased Fire Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_980177976", - "text": "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", - "type": "explicit" - }, - { - "id": "explicit.stat_1309799717", - "text": "Small Passive Skills in Radius also grant #% increased Chaos Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3858398337", - "text": "Small Passive Skills in Radius also grant #% increased Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_868556494", - "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_2333085568", - "text": "# to all Attributes per Level", - "type": "explicit" - }, - { - "id": "explicit.stat_1563503803", - "text": "#% chance to Avoid Chaos Damage from Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_227523295", - "text": "# to Maximum Power Charges", - "type": "explicit" - }, - { - "id": "explicit.stat_3384885789", - "text": "This Weapon's Critical Hit Chance is #%", - "type": "explicit" - }, - { - "id": "explicit.stat_3751072557", - "text": "Curses have no Activation Delay", - "type": "explicit" - }, - { - "id": "explicit.stat_3821543413", - "text": "Notable Passive Skills in Radius also grant #% increased Block chance", - "type": "explicit" - }, - { - "id": "explicit.stat_1520059289", - "text": "Onslaught", - "type": "explicit" - }, - { - "id": "explicit.stat_517664839", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", - "type": "explicit" - }, - { - "id": "explicit.stat_4012215578", - "text": "All Damage from Hits Contributes to Poison Magnitude", - "type": "explicit" - }, - { - "id": "explicit.stat_2524254339", - "text": "Culling Strike", - "type": "explicit" - }, - { - "id": "explicit.stat_793801176", - "text": "Energy Generation is doubled", - "type": "explicit" - }, - { - "id": "explicit.stat_3391917254", - "text": "Notable Passive Skills in Radius also grant #% increased Area of Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_1540254896", - "text": "Flammability Magnitude is doubled", - "type": "explicit" - }, - { - "id": "explicit.stat_1508661598", - "text": "Hits with this Weapon have no Critical Damage Bonus", - "type": "explicit" - }, - { - "id": "explicit.stat_1576794517", - "text": "Enemies in your Presence killed by anyone count as being killed by you instead", - "type": "explicit" - }, - { - "id": "explicit.stat_2696027455", - "text": "#% increased Damage with Spears", - "type": "explicit" - }, - { - "id": "explicit.stat_1165163804", - "text": "#% increased Attack Speed with Spears", - "type": "explicit" - }, - { - "id": "explicit.stat_664024640", - "text": "You can Socket an additional copy of each Lineage Support Gem, in different Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2065500219", - "text": "#% increased Effectiveness of Monsters in your Maps", - "type": "explicit" - }, - { - "id": "explicit.stat_310945763", - "text": "#% increased Life Cost Efficiency", - "type": "explicit" - }, - { - "id": "explicit.stat_4294267596", - "text": "Take no Extra Damage from Critical Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_3641543553", - "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", - "type": "explicit" - }, - { - "id": "explicit.stat_462424929", - "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", - "type": "explicit" - }, - { - "id": "explicit.stat_295075366", - "text": "#% increased Strength Requirement", - "type": "explicit" - }, - { - "id": "explicit.stat_2801937280", - "text": "Blood Magic", - "type": "explicit" - }, - { - "id": "explicit.stat_1195849808", - "text": "You gain Onslaught for # seconds on Kill", - "type": "explicit" - }, - { - "id": "explicit.stat_2726713579", - "text": "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", - "type": "explicit" - }, - { - "id": "explicit.stat_3669820740", - "text": "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", - "type": "explicit" - }, - { - "id": "explicit.stat_3225608889", - "text": "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_3106718406", - "text": "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_4258251165", - "text": "Allies in your Presence Gain #% of Damage as Extra Chaos Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1224838456", - "text": "Enemies in your Presence Gain #% of Damage as Extra Chaos Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3175163625", - "text": "#% increased Quantity of Gold Dropped by Slain Enemies", - "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" - }, - { - "id": "explicit.stat_3513818125", - "text": "Small Passive Skills in Radius also grant #% increased Shock Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_3971919056", - "text": "Life Recharges", - "type": "explicit" - }, - { - "id": "explicit.stat_821948283", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", - "type": "explicit" - }, - { - "id": "explicit.stat_1805182458", - "text": "Companions have #% increased maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2272980012", - "text": "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_3563080185", - "text": "#% increased Culling Strike Threshold", - "type": "explicit" - }, - { - "id": "explicit.stat_65133983", - "text": "Drop Shocked Ground while moving, lasting 8 seconds", - "type": "explicit" - }, - { - "id": "explicit.stat_4283407333", - "text": "# to Level of all Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1875158664", - "text": "Giant's Blood", - "type": "explicit" - }, - { - "id": "explicit.stat_1770833858", - "text": "Delirium Encounters in Area have #% chance to generate an additional Reward", - "type": "explicit" - }, - { - "id": "explicit.stat_1770833858", - "text": "Delirium Encounters in your Maps have #% chance to generate an additional Reward", - "type": "explicit" - }, - { - "id": "explicit.stat_720388959", - "text": "Life Recovery from Flasks is instant", - "type": "explicit" - }, - { - "id": "explicit.stat_2323782229", - "text": "Slaying Rare Monsters in Area pauses the Delirium Mirror Timer for 1 second", - "type": "explicit" - }, - { - "id": "explicit.stat_2323782229", - "text": "Slaying Rare Monsters in your Maps pauses the Delirium Mirror Timer for 1 second", - "type": "explicit" - }, - { - "id": "explicit.stat_3398301358", - "text": "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_1166140625", - "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", - "type": "explicit" - }, - { - "id": "explicit.stat_1910743684", - "text": "All damage with this Weapon causes Electrocution buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_1776968075", - "text": "You have no Elemental Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_715957346", - "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", - "type": "explicit" - }, - { - "id": "explicit.stat_2131720304", - "text": "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", - "type": "explicit" - }, - { - "id": "explicit.stat_1602294220", - "text": "Small Passive Skills in Radius also grant #% increased Warcry Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_3815617979", - "text": "Area has #% increased chance to contain Azmeri Spirits", - "type": "explicit" - }, - { - "id": "explicit.stat_3815617979", - "text": "#% increased chance of Azmeri Spirits", - "type": "explicit" - }, - { - "id": "explicit.stat_513747733", - "text": "#% increased bonuses gained from left Equipped Ring", - "type": "explicit" - }, - { - "id": "explicit.stat_2056107438", - "text": "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", - "type": "explicit" - }, - { - "id": "explicit.stat_1145481685", - "text": "Small Passive Skills in Radius also grant #% increased Totem Placement speed", - "type": "explicit" - }, - { - "id": "explicit.stat_3538915253", - "text": "On Hitting an enemy, gains maximum added Lightning damage equal to\nthe enemy's Power for 20 seconds, up to a total of #", - "type": "explicit" - }, - { - "id": "explicit.stat_1465760952", - "text": "Cannot Block", - "type": "explicit" - }, - { - "id": "explicit.stat_3885501357", - "text": "#% increased bonuses gained from right Equipped Ring", - "type": "explicit" - }, - { - "id": "explicit.stat_3679696791", - "text": "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_3491722585", - "text": "Enemies in your Presence are Intimidated", - "type": "explicit" - }, - { - "id": "explicit.stat_2415497478", - "text": "#% chance to Avoid Physical Damage from Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_4078695", - "text": "# to Maximum Frenzy Charges", - "type": "explicit" - }, - { - "id": "explicit.stat_2772033465", - "text": "#% of Fire damage Converted to Lightning damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2350411833", - "text": "You lose #% of maximum Energy Shield per second", - "type": "explicit" - }, - { - "id": "explicit.stat_3441651621", - "text": "# Physical Damage taken from Attack Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_3035140377", - "text": "# to Level of all Attack Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2402413437", - "text": "Energy Shield Recharge starts when you use a Mana Flask", - "type": "explicit" - }, - { - "id": "explicit.stat_3700202631", - "text": "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", - "type": "explicit" - }, - { - "id": "explicit.stat_2392824305", - "text": "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", - "type": "explicit" - }, - { - "id": "explicit.stat_2969557004", - "text": "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_3409275777", - "text": "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", - "type": "explicit" - }, - { - "id": "explicit.stat_2976476845", - "text": "Notable Passive Skills in Radius also grant #% increased Knockback Distance", - "type": "explicit" - }, - { - "id": "explicit.stat_30438393", - "text": "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", - "type": "explicit" - }, - { - "id": "explicit.stat_820939409", - "text": "Gain # Mana per Enemy Hit with Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_1541516339", - "text": "#% increased Movement Speed per Frenzy Charge", - "type": "explicit" - }, - { - "id": "explicit.stat_999436592", - "text": "Excess Life Recovery from Leech is applied to Energy Shield", - "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" - }, - { - "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_3407300125", - "text": "Increases and Reductions to Mana Regeneration Rate also\napply to Energy Shield Recharge Rate", - "type": "explicit" - }, - { - "id": "explicit.stat_480796730", - "text": "#% to maximum Block chance", - "type": "explicit" - }, - { - "id": "explicit.stat_111835965", - "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", - "type": "explicit" - }, - { - "id": "explicit.stat_2840989393", - "text": "Small Passive Skills in Radius also grant #% chance to Poison on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_2161347476", - "text": "Accuracy Rating is Doubled", - "type": "explicit" - }, - { - "id": "explicit.stat_3774951878", - "text": "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", - "type": "explicit" - }, - { - "id": "explicit.stat_2108821127", - "text": "Small Passive Skills in Radius also grant #% increased Totem Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1852184471", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Maces", - "type": "explicit" - }, - { - "id": "explicit.stat_2812872407", - "text": "Life Recovery from Flasks also applies to Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2714890129", - "text": "Life Leech can Overflow Maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2045949233", - "text": "#% chance for Slam Skills you use yourself to cause an additional Aftershock", - "type": "explicit" - }, - { - "id": "explicit.stat_1773308808", - "text": "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_1432756708", - "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_2456523742", - "text": "#% increased Critical Damage Bonus with Spears", - "type": "explicit" - }, - { - "id": "explicit.stat_3088348485", - "text": "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_2466785537", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", - "type": "explicit" - }, - { - "id": "explicit.stat_1129429646", - "text": "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_442393998", - "text": "Small Passive Skills in Radius also grant #% increased Totem Life", - "type": "explicit" - }, - { - "id": "explicit.stat_473917671", - "text": "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_28208665", - "text": "Favours Deferred at Ritual Altars in Area reappear #% sooner", - "type": "explicit" - }, - { - "id": "explicit.stat_28208665", - "text": "Favours Deferred at Ritual Altars in your Maps reappear #% sooner", - "type": "explicit" - }, - { - "id": "explicit.stat_1546580830", - "text": "Enemies in your Presence have Lightning Resistance equal to yours", - "type": "explicit" - }, - { - "id": "explicit.stat_3999959974", - "text": "Lightning Resistance does not affect Lightning damage taken", - "type": "explicit" - }, - { - "id": "explicit.stat_2134207902", - "text": "+100% of Armour also applies to Lightning Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_391602279", - "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", - "type": "explicit" - }, - { - "id": "explicit.stat_1147690586", - "text": "# to Level of all Lightning Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_944643028", - "text": "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_2081918629", - "text": "#% increased effect of Socketed Augment Items", - "type": "explicit" - }, - { - "id": "explicit.stat_3113764475", - "text": "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_1301765461", - "text": "#% to Maximum Chaos Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_1298316550", - "text": "Dodge Roll passes through Enemies", - "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" - }, - { - "id": "explicit.stat_599749213", - "text": "# to Level of all Fire Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_4112450013", - "text": "Moving while Bleeding doesn't cause you to take extra damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1031644647", - "text": "Revived Monsters from Ritual Altars in Area have #% increased chance to be Magic", - "type": "explicit" - }, - { - "id": "explicit.stat_1031644647", - "text": "Revived Monsters from Ritual Altars have #% increased chance to be Magic", - "type": "explicit" - }, - { - "id": "explicit.stat_2955966707", - "text": "The Effect of Chill on you is reversed", - "type": "explicit" - }, - { - "id": "explicit.stat_3070990531", - "text": "You have no Accuracy Penalty at Distance", - "type": "explicit" - }, - { - "id": "explicit.stat_1345835998", - "text": "Deferring Favours at Ritual Altars in Area costs #% increased Tribute", - "type": "explicit" - }, - { - "id": "explicit.stat_1345835998", - "text": "Deferring Favours at Ritual Altars in your Maps costs #% increased Tribute", - "type": "explicit" - }, - { - "id": "explicit.stat_1256719186", - "text": "#% increased Duration (Flask)", - "type": "explicit" - }, - { - "id": "explicit.stat_2397460217", - "text": "Your Life Flask also applies to your Minions", - "type": "explicit" - }, - { - "id": "explicit.stat_3979184174", - "text": "Revived Monsters from Ritual Altars in Area have #% increased chance to be Rare", - "type": "explicit" - }, - { - "id": "explicit.stat_3979184174", - "text": "Revived Monsters from Ritual Altars have #% increased chance to be Rare", - "type": "explicit" - }, - { - "id": "explicit.stat_2920970371", - "text": "#% increased Duration of Curses on you", - "type": "explicit" - }, - { - "id": "explicit.stat_64726306", - "text": "Can't use other Rings", - "type": "explicit" - }, - { - "id": "explicit.stat_1135194732", - "text": "Can have # additional Instilled Modifiers", - "type": "explicit" - }, - { - "id": "explicit.stat_331731406", - "text": "Cannot be Ignited", - "type": "explicit" - }, - { - "id": "explicit.stat_3154256486", - "text": "You count as on Low Life while at #% of maximum Mana or below", - "type": "explicit" - }, - { - "id": "explicit.stat_1143240184", - "text": "You count as on Low Mana while at #% of maximum Life or below", - "type": "explicit" - }, - { - "id": "explicit.stat_1555237944", - "text": "#% chance when you gain a Charge to gain an additional Charge", - "type": "explicit" - }, - { - "id": "explicit.stat_3419203492", - "text": "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", - "type": "explicit" - }, - { - "id": "explicit.stat_4219853180", - "text": "Ritual Favours in Area have #% increased chance to be Omens", - "type": "explicit" - }, - { - "id": "explicit.stat_4219853180", - "text": "Ritual Favours in your Maps have #% increased chance to be Omens", - "type": "explicit" - }, - { - "id": "explicit.stat_3814876985", - "text": "#% chance to gain a Power Charge on Critical Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_1321104829", - "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", - "type": "explicit" - }, - { - "id": "explicit.stat_3679769182", - "text": "# to Stun Threshold per Socket filled", - "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" - }, - { - "id": "explicit.stat_1451444093", - "text": "Bifurcates Critical Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_1640965354", - "text": "Area contains #% increased number of Runic Monster Markers", - "type": "explicit" - }, - { - "id": "explicit.stat_1640965354", - "text": "#% increased number of Runic Monster Markers", - "type": "explicit" - }, - { - "id": "explicit.stat_3835551335", - "text": "Cannot be Poisoned", - "type": "explicit" - }, - { - "id": "explicit.stat_1777421941", - "text": "Notable Passive Skills in Radius also grant #% increased Projectile Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_2256120736", - "text": "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", - "type": "explicit" - }, - { - "id": "explicit.stat_2694800111", - "text": "#% increased number of Rare Expedition Monsters in Area", - "type": "explicit" - }, - { - "id": "explicit.stat_2694800111", - "text": "#% increased number of Rare Expedition Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_525523040", - "text": "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", - "type": "explicit" - }, - { - "id": "explicit.stat_2933024469", - "text": "Right ring slot: Projectiles from Spells cannot Fork", - "type": "explicit" - }, - { - "id": "explicit.stat_2378065031", - "text": "Curse Skills have #% increased Cast Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_2786852525", - "text": "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_3081479811", - "text": "Allies in your Presence Regenerate #% of their Maximum Life per second", - "type": "explicit" - }, - { - "id": "explicit.stat_1555918911", - "text": "Right ring slot: Projectiles from Spells Chain +# times", - "type": "explicit" - }, - { - "id": "explicit.stat_65135897", - "text": "Cannot use Shield Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2437476305", - "text": "Left ring slot: Projectiles from Spells Fork", - "type": "explicit" - }, - { - "id": "explicit.stat_3826125995", - "text": "Projectiles from Spells cannot Pierce", - "type": "explicit" - }, - { - "id": "explicit.stat_2173791158", - "text": "Allies in your Presence Gain #% of Damage as Extra Fire Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3647242059", - "text": "Left ring slot: Projectiles from Spells cannot Chain", - "type": "explicit" - }, - { - "id": "explicit.stat_3859848445", - "text": "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", - "type": "explicit" - }, - { - "id": "explicit.stat_599320227", - "text": "#% chance for Trigger skills to refund half of Energy Spent", - "type": "explicit" - }, - { - "id": "explicit.stat_3518087336", - "text": "Dodge Roll avoids all Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_3156445245", - "text": "#% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", - "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" - }, - { - "id": "explicit.stat_2518598473", - "text": "Take # Fire Damage when you Ignite an Enemy", - "type": "explicit" - }, - { - "id": "explicit.stat_2849546516", - "text": "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", - "type": "explicit" - }, - { - "id": "explicit.stat_3065378291", - "text": "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1569159338", - "text": "#% increased Parry Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2107703111", - "text": "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2901213448", - "text": "# to Level of all Elemental Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2267564181", - "text": "Require # additional enemies to be Surrounded", - "type": "explicit" - }, - { - "id": "explicit.stat_258955603", - "text": "Alternating every 5 seconds:\nTake #% more Damage from Hits\nTake #% more Damage over time", - "type": "explicit" - }, - { - "id": "explicit.stat_491899612", - "text": "Cannot be Shocked", - "type": "explicit" - }, - { - "id": "explicit.stat_1083387327", - "text": "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_1083387327", - "text": "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters in your Maps", - "type": "explicit" - }, - { - "id": "explicit.stat_1361645249", - "text": "Allies in your Presence have Block Chance equal to yours", - "type": "explicit" - }, - { - "id": "explicit.stat_593241812", - "text": "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", - "type": "explicit" - }, - { - "id": "explicit.stat_1697951953", - "text": "#% increased Hazard Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_793875384", - "text": "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", - "type": "explicit" - }, - { - "id": "explicit.stat_1352561456", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3865605585", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_1285594161", - "text": "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", - "type": "explicit" - }, - { - "id": "explicit.stat_30642521", - "text": "You can apply # additional Curses", - "type": "explicit" - }, - { - "id": "explicit.stat_3628935286", - "text": "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", - "type": "explicit" - }, - { - "id": "explicit.stat_3418590244", - "text": "Can only be applied to Precursor Tower Maps\nCompleting the Tower makes all nearby Maps accessible", - "type": "explicit" - }, - { - "id": "explicit.stat_2147773348", - "text": "Energy Shield is increased by Uncapped Cold Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_1000566389", - "text": "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_419098854", - "text": "Evasion Rating is increased by Uncapped Lightning Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_713266390", - "text": "Armour is increased by Uncapped Fire Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_412709880", - "text": "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", - "type": "explicit" - }, - { - "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_1087108135", - "text": "Small Passive Skills in Radius also grant #% increased Curse Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_61644361", - "text": "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_830345042", - "text": "Small Passive Skills in Radius also grant #% increased Freeze Threshold", - "type": "explicit" - }, - { - "id": "explicit.stat_818877178", - "text": "#% increased Parried Debuff Magnitude", - "type": "explicit" - }, - { - "id": "explicit.stat_2162684861", - "text": "Areas with Powerful Map Bosses contain an additional Essence", - "type": "explicit" - }, - { - "id": "explicit.stat_2942704390", - "text": "Skills have +# to Limit", - "type": "explicit" - }, - { - "id": "explicit.stat_3969608626", - "text": "Effect is not removed when Unreserved Mana is Filled", - "type": "explicit" - }, - { - "id": "explicit.stat_3311259821", - "text": "Deals #% of current Mana as Chaos Damage to you when Effect ends", - "type": "explicit" - }, - { - "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" - }, - { - "id": "explicit.stat_2104138899", - "text": "Parrying applies # Stack of Critical Weakness", - "type": "explicit" - }, - { - "id": "explicit.stat_4117005593", - "text": "Skills gain #% of Damage as Chaos Damage per 3 Life Cost", - "type": "explicit" - }, - { - "id": "explicit.stat_2089152298", - "text": "#% of Parry Physical Damage Converted to Cold Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3642528642|7", - "text": "Only affects Passives in Very Large Ring", - "type": "explicit" - }, - { - "id": "explicit.stat_127081978", - "text": "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", - "type": "explicit" - }, - { - "id": "explicit.stat_1087531620", - "text": "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_3856744003", - "text": "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_1323216174", - "text": "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_2202308025", - "text": "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_2913235441", - "text": "When you kill a Rare monster, you gain its Modifiers for 60 seconds", - "type": "explicit" - }, - { - "id": "explicit.stat_4162678661", - "text": "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_332217711", - "text": "#% increased Maximum Life per socketed Grand Spectrum", - "type": "explicit" - }, - { - "id": "explicit.stat_3642528642|4", - "text": "Only affects Passives in Medium Ring", - "type": "explicit" - }, - { - "id": "explicit.stat_3642528642|3", - "text": "Only affects Passives in Medium-Small Ring", - "type": "explicit" - }, - { - "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_4258000627", - "text": "Small Passive Skills in Radius also grant Dazes on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_1881230714", - "text": "#% chance to gain Onslaught on Killing Hits with this Weapon", - "type": "explicit" - }, - { - "id": "explicit.stat_1160637284", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Warcries", - "type": "explicit" - }, - { - "id": "explicit.stat_221701169", - "text": "Notable Passive Skills in Radius also grant #% increased Poison Duration", - "type": "explicit" - }, - { - "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_3395186672", - "text": "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1002973905", - "text": "Recover all Mana when Used", - "type": "explicit" - }, - { - "id": "explicit.stat_1944020877", - "text": "Notable Passive Skills in Radius also grant #% increased Pin Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_3642528642|2", - "text": "Only affects Passives in Small Ring", - "type": "explicit" - }, - { - "id": "explicit.stat_3642528642|1", - "text": "Only affects Passives in Very Small Ring", - "type": "explicit" - }, - { - "id": "explicit.stat_2320654813", - "text": "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", - "type": "explicit" - }, - { - "id": "explicit.stat_2066964205", - "text": "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", - "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" - }, - { - "id": "explicit.stat_2044810874", - "text": "This item gains bonuses from Socketed Items as though it was a Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_4089835882", - "text": "Small Passive Skills in Radius also grant Break #% increased Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_2957287092", - "text": "Chance to Block Damage is Lucky", - "type": "explicit" - }, - { - "id": "explicit.stat_429143663", - "text": "Banner Skills have #% increased Area of Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_1084853859", - "text": "Delirium Fog in your Maps never dissipates", - "type": "explicit" - }, - { - "id": "explicit.stat_1228222525", - "text": "Favours at Ritual Altars in Area costs #% increased Tribute", - "type": "explicit" - }, - { - "id": "explicit.stat_1320662475", - "text": "Small Passive Skills in Radius also grant #% increased Thorns damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2500154144", - "text": "Can Reroll Favours at Ritual Altars in your Maps twice as many times", - "type": "explicit" - }, - { - "id": "explicit.stat_1217651243", - "text": "Breaches expand to at least # metre in radius\nBreaches remain open while there are alive Breach Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_1217651243", - "text": "Breaches in your Maps expand to at least # metre in radius\nBreaches in your Maps remain open while there are alive Breach Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_1505023559", - "text": "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_3042527515", - "text": "Areas with Map Powerful Map Bosses contain an additional Shrine", - "type": "explicit" - }, - { - "id": "explicit.stat_3042527515", - "text": "Areas with Powerful Map Bosses contain an additional Shrine", - "type": "explicit" - }, - { - "id": "explicit.stat_3040603554", - "text": "Areas with Powerful Map Bosses contain an additional Strongbox", - "type": "explicit" - }, - { - "id": "explicit.stat_1613322341", - "text": "Enemies Immobilised by you take #% less Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_4238331303", - "text": "Immobilise enemies at #% buildup instead of 100%", - "type": "explicit" - }, - { - "id": "explicit.stat_144770454", - "text": "Expedition Monsters in your Maps spawn with half of their Life missing", - "type": "explicit" - }, - { - "id": "explicit.stat_3642528642|6", - "text": "Only affects Passives in Large Ring", - "type": "explicit" - }, - { - "id": "explicit.stat_2588474575", - "text": "Map Bosses are Hunted by Azmeri Spirits", - "type": "explicit" - }, - { - "id": "explicit.stat_243380454", - "text": "# additional Rare Monsters are spawned from Abysses", - "type": "explicit" - }, - { - "id": "explicit.stat_1458461453", - "text": "Map Bosses have # additional Modifier", - "type": "explicit" - }, - { - "id": "explicit.stat_937291386", - "text": "Favours Rerolled at Ritual Altars in Area have #% chance to cost no Tribute", - "type": "explicit" - }, - { - "id": "explicit.stat_937291386", - "text": "Favours Rerolled at Ritual Altars in your Maps have #% chance to cost no Tribute", - "type": "explicit" - }, - { - "id": "explicit.stat_918325986", - "text": "#% increased Skill Speed while Shapeshifted", - "type": "explicit" - }, - { - "id": "explicit.stat_2440073079", - "text": "#% increased Damage while Shapeshifted", - "type": "explicit" - }, - { - "id": "explicit.stat_234657505", - "text": "Grants effect of Guided Freezing Shrine", - "type": "explicit" - }, - { - "id": "explicit.stat_378817135", - "text": "#% to Fire and Chaos Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_3642528642|5", - "text": "Only affects Passives in Medium-Large Ring", - "type": "explicit" - }, - { - "id": "explicit.stat_2816104578", - "text": "Runic Monsters in your Maps are Duplicated", - "type": "explicit" - }, - { - "id": "explicit.stat_1352729973", - "text": "Area has #% increased chance to contain Rogue Exiles", - "type": "explicit" - }, - { - "id": "explicit.stat_1352729973", - "text": "#% increased chance of Rogue Exiles", - "type": "explicit" - }, - { - "id": "explicit.stat_3393628375", - "text": "#% to Cold and Chaos Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_2442647190", - "text": "Recover #% of maximum Life when you Block", - "type": "explicit" - }, - { - "id": "explicit.stat_3401186585", - "text": "#% increased Parried Debuff Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_3078574625", - "text": "#% increased Effect of Remnants in Area", - "type": "explicit" - }, - { - "id": "explicit.stat_3078574625", - "text": "#% increased Effect of Remnants in your Maps", - "type": "explicit" - }, - { - "id": "explicit.stat_3465022881", - "text": "#% to Lightning and Chaos Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_586037801", - "text": "#% increased Desecrated Modifier magnitudes", - "type": "explicit" - }, - { - "id": "explicit.stat_3389184522", - "text": "Leech from Critical Hits is instant", - "type": "explicit" - }, - { - "id": "explicit.stat_2396719220", - "text": "Area contains an additional Magic Chest", - "type": "explicit" - }, - { - "id": "explicit.stat_40618390", - "text": "Notable Passive Skills in Radius also grant #% increased Intelligence", - "type": "explicit" - }, - { - "id": "explicit.stat_2717786748", - "text": "Notable Passive Skills in Radius also grant #% increased Dexterity", - "type": "explicit" - }, - { - "id": "explicit.stat_2284588585", - "text": "Gain a random Charge on reaching Maximum Rage, no more than once every # seconds", - "type": "explicit" - }, - { - "id": "explicit.stat_3642528642|8", - "text": "Only affects Passives in Massive Ring", - "type": "explicit" - }, - { - "id": "explicit.stat_1736538865", - "text": "You have Consecrated Ground around you while stationary", - "type": "explicit" - }, - { - "id": "explicit.stat_3851480592", - "text": "Lose all Rage on reaching Maximum Rage", - "type": "explicit" - }, - { - "id": "explicit.stat_1842384813", - "text": "Notable Passive Skills in Radius also grant #% increased Strength", - "type": "explicit" - }, - { - "id": "explicit.stat_2716923832", - "text": "Recover Life equal to #% of Mana Flask's Recovery Amount when used", - "type": "explicit" - }, - { - "id": "explicit.stat_1430165758", - "text": "#% increased Spirit per socketed Grand Spectrum", - "type": "explicit" - }, - { - "id": "explicit.stat_1163615092", - "text": "Projectiles have #% increased Critical Hit chance for each time they have Pierced", - "type": "explicit" - }, - { - "id": "explicit.stat_2566921799", - "text": "Grants a Power Charge on use", - "type": "explicit" - }, - { - "id": "explicit.stat_280890192", - "text": "Grants a Frenzy Charge on use", - "type": "explicit" - }, - { - "id": "explicit.stat_3891350097", - "text": "Recover Mana equal to #% of Life Flask's Recovery Amount when used", - "type": "explicit" - }, - { - "id": "explicit.stat_21824003", - "text": "#% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_2948688907", - "text": "Small Passive Skills in Radius also grant #% to Fire Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_3650992555", - "text": "Debuffs you inflict have #% increased Slow Magnitude", - "type": "explicit" - }, - { - "id": "explicit.stat_2884937919", - "text": "Small Passive Skills in Radius also grant #% to Cold Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_3605834869", - "text": "Skills Gain #% of Mana Cost as Extra Life Cost", - "type": "explicit" - }, - { - "id": "explicit.stat_3994876825", - "text": "Small Passive Skills in Radius also grant #% to Lightning Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_1013492127", - "text": "Spells fire # additional Projectiles\nSpells fire Projectiles in a circle", - "type": "explicit" - }, - { - "id": "explicit.stat_2620375641", - "text": "Charms use no Charges", - "type": "explicit" - }, - { - "id": "explicit.stat_2423248184", - "text": "#% less minimum Physical Attack Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1862508014", - "text": "Notable Passive Skills in Radius also grant #% to Maximum Cold Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_3735888493", - "text": "#% more maximum Physical Attack Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_338620903", - "text": "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Fire Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2421436896", - "text": "Arrows Fork", - "type": "explicit" - }, - { - "id": "explicit.stat_2138799639", - "text": "Arrows Pierce all targets after Forking", - "type": "explicit" - }, - { - "id": "explicit.stat_2217513089", - "text": "Notable Passive Skills in Radius also grant #% to Maximum Lightning Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_1961849903", - "text": "Cannot use Projectile Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_2833226514", - "text": "# Strength Requirement", - "type": "explicit" - }, - { - "id": "explicit.stat_1458880585", - "text": "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_3490187949", - "text": "Area contains # additional Abysses", - "type": "explicit" - }, - { - "id": "explicit.stat_360553763", - "text": "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", - "type": "explicit" - }, - { - "id": "explicit.stat_4101445926", - "text": "#% increased Mana Cost Efficiency", - "type": "explicit" - }, - { - "id": "explicit.stat_2516303866", - "text": "Your Critical Damage Bonus is 250%", - "type": "explicit" - }, - { - "id": "explicit.stat_1015576579", - "text": "#% increased Armour from Equipped Body Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_852470634", - "text": "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Lightning Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_514290151", - "text": "Gain #% of Maximum Mana as Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_3787436548", - "text": "Historic", - "type": "explicit" - }, - { - "id": "explicit.stat_2580617872", - "text": "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", - "type": "explicit" - }, - { - "id": "explicit.stat_833138896", - "text": "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Cold Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1659564104", - "text": "#% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_1809641701", - "text": "Small Passive Skills in Radius also grant #% increased maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1509210032", - "text": "Grants up to your maximum Rage on use", - "type": "explicit" - }, - { - "id": "explicit.stat_1123023256", - "text": "#% to Chaos Resistance per Socket filled", - "type": "explicit" - }, - { - "id": "explicit.stat_2348696937", - "text": "Spells have a #% chance to inflict Withered for 4 seconds on Hit", - "type": "explicit" - }, - { - "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_944630113", - "text": "Abysses spawn #% increased Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_3872034802", - "text": "Decimating Strike", - "type": "explicit" - }, - { - "id": "explicit.stat_504915064", - "text": "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_1717295693", - "text": "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", - "type": "explicit" - }, - { - "id": "explicit.stat_3885634897", - "text": "#% chance to Poison on Hit with this weapon", - "type": "explicit" - }, - { - "id": "explicit.stat_2739148464", - "text": "Has no Attribute Requirements", - "type": "explicit" - }, - { - "id": "explicit.stat_1247628870", - "text": "Small Passive Skills in Radius also grant #% increased maximum Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_367897259", - "text": "Lose all Tailwind when Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_2459662130", - "text": "Gain Tailwind on Critical Hit, no more than once per second", - "type": "explicit" - }, - { - "id": "explicit.stat_3739186583", - "text": "Knocks Back Enemies on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_782941180", - "text": "#% of Spell Damage Leeched as Life", - "type": "explicit" - }, - { - "id": "explicit.stat_4151994709", - "text": "Notable Passive Skills in Radius also grant #% to Maximum Fire Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_2722831300", - "text": "Abysses in Area have #% increased chance to lead to an Abyssal Depths", - "type": "explicit" - }, - { - "id": "explicit.stat_2722831300", - "text": "Abysses have #% increased chance to lead to an Abyssal Depths", - "type": "explicit" - }, - { - "id": "explicit.stat_3849649145", - "text": "Creates Consecrated Ground on use", - "type": "explicit" - }, - { - "id": "explicit.stat_3148264775", - "text": "You have no Spirit", - "type": "explicit" - }, - { - "id": "explicit.stat_2420248029", - "text": "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", - "type": "explicit" - }, - { - "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" - }, - { - "id": "explicit.stat_53386210", - "text": "#% increased Spirit Reservation Efficiency", - "type": "explicit" - }, - { - "id": "explicit.stat_3675300253", - "text": "Strikes deal Splash Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3474271079", - "text": "# to all Attributes per Socket filled", - "type": "explicit" - }, - { - "id": "explicit.stat_1726753705", - "text": "#% more Life Recovered", - "type": "explicit" - }, - { - "id": "explicit.stat_2932359713", - "text": "Effect is not removed when Unreserved Life is Filled", - "type": "explicit" - }, - { - "id": "explicit.stat_3598623697", - "text": "#% of Damage taken during effect Recouped as Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1810907437", - "text": "Presence Radius is doubled", - "type": "explicit" - }, - { - "id": "explicit.stat_2518900926", - "text": "#% increased Damage with Plant Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1375667591", - "text": "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", - "type": "explicit" - }, - { - "id": "explicit.stat_4142814612", - "text": "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_3881997959", - "text": "Increases Movement Speed by 25%, plus 1% per # Evasion Rating, up to a maximum of 75%\nOther Modifiers to Movement Speed except for Sprinting do not apply", - "type": "explicit" - }, - { - "id": "explicit.stat_2741291867", - "text": "Area is overrun by the Abyssal", - "type": "explicit" - }, - { - "id": "explicit.stat_1519615863", - "text": "#% chance to cause Bleeding on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_1291285202", - "text": "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", - "type": "explicit" - }, - { - "id": "explicit.stat_1133453872", - "text": "# Dexterity Requirement", - "type": "explicit" - }, - { - "id": "explicit.stat_4126210832", - "text": "Always Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_555311715", - "text": "Gain # Rage when Hit by an Enemy during effect", - "type": "explicit" - }, - { - "id": "explicit.stat_1627878766", - "text": "Small Passive Skills in Radius also grant #% reduced Shock duration on you", - "type": "explicit" - }, - { - "id": "explicit.stat_1710200734", - "text": "#% increased chance to find Desecrated Currency", - "type": "explicit" - }, - { - "id": "explicit.stat_2910761524", - "text": "#% chance for Spell Skills to fire 2 additional Projectiles", - "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" - }, - { - "id": "explicit.stat_3091132047", - "text": "Your base Energy Shield Recharge Delay is # second", - "type": "explicit" - }, - { - "id": "explicit.stat_860443350", - "text": "Small Passive Skills in Radius also grant #% reduced Freeze Duration on you", - "type": "explicit" - }, - { - "id": "explicit.stat_3474941090", - "text": "Small Passive Skills in Radius also grant #% reduced Ignite Duration on you", - "type": "explicit" - }, - { - "id": "explicit.stat_3464644319", - "text": "No Inherent loss of Rage during effect", - "type": "explicit" - }, - { - "id": "explicit.stat_548198834", - "text": "#% increased Melee Strike Range with this weapon", - "type": "explicit" - }, - { - "id": "explicit.stat_4021234281", - "text": "Any number of Poisons from this Weapon can affect a target at the same time", - "type": "explicit" - }, - { - "id": "explicit.stat_4180952808", - "text": "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", - "type": "explicit" - }, - { - "id": "explicit.stat_3176481473", - "text": "#% increased Spell Damage while on Full Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2839545956", - "text": "Area contains an additional Summoning Circle", - "type": "explicit" - }, - { - "id": "explicit.stat_3122852693", - "text": "#% to Block Chance while holding a Focus", - "type": "explicit" - }, - { - "id": "explicit.stat_150391334", - "text": "# to maximum Life per Socket filled", - "type": "explicit" - }, - { - "id": "explicit.stat_1036267537", - "text": "# to maximum Mana per Socket filled", - "type": "explicit" - }, - { - "id": "explicit.stat_533542952", - "text": "Inflict Elemental Exposure on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_242161915", - "text": "#% to all Elemental Resistances per socketed Grand Spectrum", - "type": "explicit" - }, - { - "id": "explicit.stat_358129101", - "text": "Area contains # additional Azmeri Spirit", - "type": "explicit" - }, - { - "id": "explicit.stat_4032352472", - "text": "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_535217483", - "text": "#% increased Projectile Speed with this Weapon", - "type": "explicit" - }, - { - "id": "explicit.stat_2789248444", - "text": "#% increased chance for Abyssal monsters to have Abyssal Modifiers", - "type": "explicit" - }, - { - "id": "explicit.stat_4142786792", - "text": "All Damage from Hits with this Weapon Contributes to Pin Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_461663422", - "text": "#% increased Effect of Jewel Socket Passive Skills\ncontaining Corrupted Magic Jewels", - "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" - }, - { - "id": "explicit.stat_2770044702", - "text": "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", - "type": "explicit" - }, - { - "id": "explicit.stat_281201999", - "text": "Knockback direction is reversed", - "type": "explicit" - }, - { - "id": "explicit.stat_1500744699", - "text": "Maximum Chance to Evade is 50%", - "type": "explicit" - }, - { - "id": "explicit.stat_4062529591", - "text": "Cannot Immobilise enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_3278008231", - "text": "Fully Armour Broken enemies you kill with Hits Shatter", - "type": "explicit" - }, - { - "id": "explicit.stat_3936121440", - "text": "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", - "type": "explicit" - }, - { - "id": "explicit.stat_3058238353", - "text": "Critical Hits inflict Impale", - "type": "explicit" - }, - { - "id": "explicit.stat_1856590738", - "text": "This item gains bonuses from Socketed Items as though it was Gloves", - "type": "explicit" - }, - { - "id": "explicit.stat_1967040409", - "text": "Spell Skills have #% increased Area of Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_3243034867", - "text": "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", - "type": "explicit" - }, - { - "id": "explicit.stat_949573361", - "text": "Breaks Armour equal to #% of damage from Hits with this weapon", - "type": "explicit" - }, - { - "id": "explicit.stat_4019237939", - "text": "Gain #% of Damage as Extra Physical Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_701923421", - "text": "Hits against you have #% reduced Critical Damage Bonus per Socket filled", - "type": "explicit" - }, - { - "id": "explicit.stat_3414998042", - "text": "Critical Hits cannot Extract Impale", - "type": "explicit" - }, - { - "id": "explicit.stat_3666934677", - "text": "#% increased Experience gain", - "type": "explicit" - }, - { - "id": "explicit.stat_1840985759", - "text": "#% increased Area of Effect for Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_4234573345", - "text": "#% increased Effect of Notable Passive Skills in Radius", - "type": "explicit" - }, - { - "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_844449513", - "text": "Notable Passive Skills in Radius also grant #% increased Movement Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_1381474422", - "text": "#% increased Magnitude of Damaging Ailments you inflict", - "type": "explicit" - }, - { - "id": "explicit.stat_932866937", - "text": "Life and Mana Flasks can be equipped in either slot", - "type": "explicit" - }, - { - "id": "explicit.stat_2573406169", - "text": "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", - "type": "explicit" - }, - { - "id": "explicit.stat_170426423", - "text": "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1952324525", - "text": "All Attacks count as Empowered Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_179541474", - "text": "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", - "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" - }, - { - "id": "explicit.stat_2912416697", - "text": "Notable Passive Skills in Radius also grant #% increased Blind Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_2918129907", - "text": "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", - "type": "explicit" - }, - { - "id": "explicit.stat_3753446846", - "text": "Expeditions in Area have # Remnants", - "type": "explicit" - }, - { - "id": "explicit.stat_3753446846", - "text": "Expeditions in your Maps have # Remnant", - "type": "explicit" - }, - { - "id": "explicit.stat_223138829", - "text": "Inflict Elemental Exposure to Enemies 3 metres in front of you\nfor 4 seconds, every 0.25 seconds while raised", - "type": "explicit" - }, - { - "id": "explicit.stat_2264240911", - "text": "Small Passive Skills in Radius also grant #% to Chaos Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_1920747151", - "text": "Non-Channelling Spells cost an additional #% of your maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1756380435", - "text": "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_2374711847", - "text": "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_429867172", - "text": "# to maximum number of Summoned Totems", - "type": "explicit" - }, - { - "id": "explicit.stat_2603051299", - "text": "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Chaos Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_300723956", - "text": "Attack Hits apply Incision", - "type": "explicit" - }, - { - "id": "explicit.stat_1731760476", - "text": "Notable Passive Skills in Radius also grant #% to Maximum Chaos Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_3503117295", - "text": "Recover #% of your maximum Life when an Enemy dies in your Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_321765853", - "text": "# Physical Damage taken from Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_2371108370", - "text": "If Map was not previously Irradiated, completing Map adds Irradiation instead", - "type": "explicit" - }, - { - "id": "explicit.stat_1800303440", - "text": "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", - "type": "explicit" - }, - { - "id": "explicit.stat_3173882956", - "text": "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", - "type": "explicit" - }, - { - "id": "explicit.stat_2598171606", - "text": "Cannot use Warcries", - "type": "explicit" - }, - { - "id": "explicit.stat_33298888", - "text": "Attack Hits inflict Spectral Fire for # seconds", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|64921", - "text": "Sacrifice up to 10 Vaal Orbs to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_3488640354", - "text": "Parried enemies take more Spell Damage instead of more Attack Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1195319608", - "text": "#% increased Energy Shield from Equipped Body Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_4046380260", - "text": "Minions cannot Die while affected by a Life Flask", - "type": "explicit" - }, - { - "id": "explicit.stat_232701452", - "text": "#% increased Freeze Buildup if you've consumed an Power Charge Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_332337290", - "text": "# Life Regeneration per second per Socket filled", - "type": "explicit" - }, - { - "id": "explicit.stat_3429986699", - "text": "You and Allies in your Presence have #% increased Accuracy Rating", - "type": "explicit" - }, - { - "id": "explicit.stat_1373860425", - "text": "#% increased Spell Damage with Spells that cost Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2760643568", - "text": "#% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", - "type": "explicit" - }, - { - "id": "explicit.stat_4043376133", - "text": "#% increased Magnitude of Abyssal Wasting you inflict", - "type": "explicit" - }, - { - "id": "explicit.stat_693180608", - "text": "#% increased Damage while your Companion is in your Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_1550131834", - "text": "Critical Hits with Spells apply # Stack of Critical Weakness", - "type": "explicit" - }, - { - "id": "explicit.stat_3314050176", - "text": "Life Leech is Converted to Energy Shield Leech", - "type": "explicit" - }, - { - "id": "explicit.stat_2149603090", - "text": "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|62634", - "text": "Sacrifice up to 20 Exalted Orbs to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_1846980580", - "text": "Notable Passive Skills in Radius also grant # to Maximum Rage", - "type": "explicit" - }, - { - "id": "explicit.stat_3240073117", - "text": "#% increased Life Recovery rate", - "type": "explicit" - }, - { - "id": "explicit.stat_1078309513", - "text": "Invocated Spells deal #% increased Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3583542124", - "text": "#% increased Block chance against Projectiles", - "type": "explicit" - }, - { - "id": "explicit.stat_3830953767", - "text": "#% chance to Curse Enemies with Enfeeble on Block", - "type": "explicit" - }, - { - "id": "explicit.stat_3811649872", - "text": "Increases and Reductions to Spell damage also apply to Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|33979", - "text": "Passives in Radius of Conduit can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_942519401", - "text": "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", - "type": "explicit" - }, - { - "id": "explicit.stat_3171212276", - "text": "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", - "type": "explicit" - }, - { - "id": "explicit.stat_1076031760", - "text": "Infinite Parry Range", - "type": "explicit" - }, - { - "id": "explicit.stat_3598729471", - "text": "You can only Socket Emerald Jewels in this item", - "type": "explicit" - }, - { - "id": "explicit.stat_3631920880", - "text": "Lightning Resistance is unaffected by Area Penalties", - "type": "explicit" - }, - { - "id": "explicit.stat_746505085", - "text": "Reflects opposite Ring", - "type": "explicit" - }, - { - "id": "explicit.stat_2468595624", - "text": "Projectiles deal #% increased Damage with Hits against Enemies within 2m", - "type": "explicit" - }, - { - "id": "explicit.stat_2534359663", - "text": "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|46742", - "text": "Passives in Radius of Elemental Equilibrium can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_3247805335", - "text": "Fire Resistance is unaffected by Area Penalties", - "type": "explicit" - }, - { - "id": "explicit.stat_2675129731", - "text": "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_4031148736", - "text": "You can only Socket Ruby Jewels in this item", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|32349", - "text": "Passives in Radius of Giant's Blood can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_331648983", - "text": "When you reload, triggers Gemini Surge to alternately\ngain # Cold Surge or # Fire Surge", - "type": "explicit" - }, - { - "id": "explicit.stat_4207433208", - "text": "Cold Resistance is unaffected by Area Penalties", - "type": "explicit" - }, - { - "id": "explicit.stat_1056492907", - "text": "Energy Shield Recharge starts on use", - "type": "explicit" - }, - { - "id": "explicit.stat_21302430", - "text": "You can only Socket Sapphire Jewels in this item", - "type": "explicit" - }, - { - "id": "explicit.stat_314741699", - "text": "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_1027889455", - "text": "Non-Channelling Spells deal #% increased Damage per 100 maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2704225257", - "text": "# to Spirit", - "type": "explicit" - }, - { - "id": "explicit.stat_1911237468", - "text": "#% increased Stun Threshold while Parrying", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|18684", - "text": "Passives in Radius of Avatar of Fire can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|37484", - "text": "Passives in Radius of Primal Hunger can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_1136768410", - "text": "#% increased Cast Speed when on Low Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1052498387", - "text": "Every second, inflicts Critical Weakness on enemies in your Presence for # second", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|19288", - "text": "Passives in Radius of Glancing Blows can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_1464727508", - "text": "Enemies in your Presence are Blinded", - "type": "explicit" - }, - { - "id": "explicit.stat_1752419596", - "text": "Gain Deflection Rating equal to #% of Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_1536107934", - "text": "You cannot Sprint", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|45202", - "text": "Passives in Radius of Ancestral Bond can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|54496", - "text": "Sacrifice up to 20 Regal Orbs to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|49977", - "text": "Sacrifice up to 10 Chaos Orbs to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_3399499561", - "text": "#% increased Damage per Minion", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|33369", - "text": "Passives in Radius of Vaal Pact can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_3709513762", - "text": "# to Level of Elemental Weakness Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2223678961", - "text": "Adds # to # Chaos damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|51749", - "text": "Passives in Radius of Blood Magic can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|56349", - "text": "Passives in Radius of Chaos Inoculation can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_1078455967", - "text": "# to Level of all Cold Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|20358", - "text": "Sacrifice up to 10 Orbs of Alchemy to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_2300185227", - "text": "# to Dexterity and Intelligence", - "type": "explicit" - }, - { - "id": "explicit.stat_3201111383", - "text": "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", - "type": "explicit" - }, - { - "id": "explicit.stat_2890355696", - "text": "Area has #% chance to contain four additional Abysses", - "type": "explicit" - }, - { - "id": "explicit.stat_2890355696", - "text": "Abysses have a #% chance to contain 4 additional Pits", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|55048", - "text": "Passives in Radius of Pain Attunement can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_3703496511", - "text": "Intimidate Enemies on Block for # second", - "type": "explicit" - }, - { - "id": "explicit.stat_3932115504", - "text": "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|56605", - "text": "Passives in Radius of Bulwark can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|39935", - "text": "Passives in Radius of Necromantic Talisman can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_3991877392", - "text": "Notable Passive Skills in Radius also grant # to Spirit", - "type": "explicit" - }, - { - "id": "explicit.stat_1266413530", - "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", - "type": "explicit" - }, - { - "id": "explicit.stat_3108672983", - "text": "Rolls only the minimum or maximum Damage value for each Damage Type", - "type": "explicit" - }, - { - "id": "explicit.stat_447757144", - "text": "When you Consume a Charge Trigger Chaotic Surge to gain # Chaos Surge", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|14540", - "text": "Passives in Radius of Unwavering Stance can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_1285684287", - "text": "Enemies in your Presence count as being on Low Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1515531208", - "text": "# to # Cold Thorns damage", - "type": "explicit" - }, - { - "id": "explicit.stat_538848803", - "text": "# to Strength and Dexterity", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|14226", - "text": "Passives in Radius of Dance with Death can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_2996245527", - "text": "You cannot be Chilled or Frozen", - "type": "explicit" - }, - { - "id": "explicit.stat_1990472846", - "text": "Recover #% of Missing Life before being Hit by an Enemy", - "type": "explicit" - }, - { - "id": "explicit.stat_3226351972", - "text": "Delirium Fog in Area lasts # additional seconds before dissipating", - "type": "explicit" - }, - { - "id": "explicit.stat_3226351972", - "text": "Delirium Fog in your Maps lasts # additional seconds before dissipating", - "type": "explicit" - }, - { - "id": "explicit.stat_2809428780", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Spears", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|25100", - "text": "Passives in Radius of Oasis can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_2998305364", - "text": "Deal no Elemental Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1896726125", - "text": "# to maximum Valour", - "type": "explicit" - }, - { - "id": "explicit.stat_2907381231", - "text": "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3418580811|21", - "text": "Remembrancing # songworthy deeds by the line of Vorana\nPassives in radius are Conquered by the Kalguur", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|44017", - "text": "Passives in Radius of Resolute Technique can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_1761741119", - "text": "Banners always have maximum Valour", - "type": "explicit" - }, - { - "id": "explicit.stat_2678930256", - "text": "#% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", - "type": "explicit" - }, - { - "id": "explicit.stat_2432200638", - "text": "Damage taken Recouped as Life is also Recouped as Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_1535626285", - "text": "# to Strength and Intelligence", - "type": "explicit" - }, - { - "id": "explicit.stat_2109189637", - "text": "#% of Lightning Damage Converted to Chaos Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_83011992", - "text": "Enemies in your Presence have no Elemental Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_1138708335", - "text": "Monster Damage penetrates #% of Cold Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_666077204", - "text": "Companions have #% increased Attack Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|34497", - "text": "Passives in Radius of Heartstopper can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_3509362078", - "text": "#% increased Evasion Rating from Equipped Body Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_4246007234", - "text": "#% increased Attack Damage while on Low Life", - "type": "explicit" - }, - { - "id": "explicit.stat_3408222535", - "text": "You and Allies in your Presence have #% increased Attack Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_1310597900", - "text": "Players have #% more Recovery Rate of Life, Mana and Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2463230181", - "text": "#% Surpassing chance to fire an additional Arrow", - "type": "explicit" - }, - { - "id": "explicit.stat_76982026", - "text": "Sacrifice # Life to not consume the last bolt when firing", - "type": "explicit" - }, - { - "id": "explicit.stat_2690740379", - "text": "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_120737942", - "text": "Ritual Altars in Area allow rerolling Favours an additional time", - "type": "explicit" - }, - { - "id": "explicit.stat_120737942", - "text": "Ritual Altars allow rerolling Favours an additional time", - "type": "explicit" - }, - { - "id": "explicit.stat_3658708511", - "text": "#% of Life Leeched from targets affected by Abyssal Wasting is Instant", - "type": "explicit" - }, - { - "id": "explicit.stat_3823990000", - "text": "#% chance to load a bolt into all Crossbow skills on Kill", - "type": "explicit" - }, - { - "id": "explicit.stat_2418601510", - "text": "Chaos Damage from Hits also Contributes to Shock Chance", - "type": "explicit" - }, - { - "id": "explicit.stat_1436284579", - "text": "Cannot be Blinded", - "type": "explicit" - }, - { - "id": "explicit.stat_2480151124", - "text": "Equipment has no Attribute Requirements", - "type": "explicit" - }, - { - "id": "explicit.stat_3550545679", - "text": "Attacks consume an Endurance Charge to Critically Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_546201303", - "text": "#% of Mana Leeched from targets affected by Abyssal Wasting is Instant", - "type": "explicit" - }, - { - "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" - }, - { - "id": "explicit.stat_1150343007", - "text": "#% of Damage from Hits is taken from your Damageable Companion's Life before you", - "type": "explicit" - }, - { - "id": "explicit.stat_3749502527", - "text": "#% chance to gain Volatility on Kill", - "type": "explicit" - }, - { - "id": "explicit.stat_3084372306", - "text": "#% increased Life Regeneration rate while Surrounded", - "type": "explicit" - }, - { - "id": "explicit.stat_2326202293", - "text": "Players are Cursed with Temporal Chains", - "type": "explicit" - }, - { - "id": "explicit.stat_2836928993", - "text": "Enemies in your Presence count as having double Power", - "type": "explicit" - }, - { - "id": "explicit.stat_396200591", - "text": "Skills have # seconds to Cooldown", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|57513", - "text": "Passives in Radius of Eldritch Battery can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_2695354435", - "text": "#% increased Global Evasion Rating when on Low Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2890401248", - "text": "Enemies in your Presence are Hindered", - "type": "explicit" - }, - { - "id": "explicit.stat_3371085671", - "text": "Unique Monsters have # additional Rare Modifier", - "type": "explicit" - }, - { - "id": "explicit.stat_3371085671", - "text": "Unique Monsters in your Maps have # additional Rare Modifier", - "type": "explicit" - }, - { - "id": "explicit.stat_558910024", - "text": "Players are Cursed with Elemental Weakness", - "type": "explicit" - }, - { - "id": "explicit.stat_4103440490", - "text": "Players are Cursed with Enfeeble", - "type": "explicit" - }, - { - "id": "explicit.stat_3246948616", - "text": "Lightning Damage of Enemies Hitting you is Lucky during effect", - "type": "explicit" - }, - { - "id": "explicit.stat_1273508088", - "text": "Gain 1 Druidic Prowess for every 20 total Rage spent", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|33404", - "text": "Passives in Radius of Eternal Youth can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_3314536008", - "text": "Inflict Cold Exposure on Igniting an Enemy", - "type": "explicit" - }, - { - "id": "explicit.stat_2733960806", - "text": "This item gains bonuses from Socketed Items as though it was Boots", - "type": "explicit" - }, - { - "id": "explicit.stat_2665488635", - "text": "Inflict Lightning Exposure on Critical Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_3510648768", - "text": "Players have #% more Armour, Evasion and Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_1009412152", - "text": "#% chance to Aggravate Bleeding on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_3164544692", - "text": "Take # Chaos damage per second per Endurance Charge", - "type": "explicit" - }, - { - "id": "explicit.stat_1175213674", - "text": "#% of Elemental damage from Hits taken as Chaos damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3418580811|22", - "text": "Remembrancing # songworthy deeds by the line of Medved\nPassives in radius are Conquered by the Kalguur", - "type": "explicit" - }, - { - "id": "explicit.stat_2369495153", - "text": "#% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_1895238057", - "text": "#% increased Mana Regeneration Rate while Surrounded", - "type": "explicit" - }, - { - "id": "explicit.stat_2312741059", - "text": "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", - "type": "explicit" - }, - { - "id": "explicit.stat_1538879632", - "text": "Inflict Fire Exposure on Shocking an Enemy", - "type": "explicit" - }, - { - "id": "explicit.stat_3093465148", - "text": "Monster Damage penetrates #% of Lightning Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_281990982", - "text": "You and Allies in your Presence have #% increased Cast Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_3119282240", - "text": "Players have #% more maximum Life and Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2638756573", - "text": "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_3550168289", - "text": "Area is inhabited by # additional Rogue Exile", - "type": "explicit" - }, - { - "id": "explicit.stat_3550168289", - "text": "Your Maps are inhabited by # additional Rogue Exile", - "type": "explicit" - }, - { - "id": "explicit.stat_3588388638", - "text": "Monster Damage penetrates #% of Fire Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_1272938854", - "text": "Evasion Rating is doubled if you have not been Hit Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_1168851547", - "text": "Natural Rare Monsters in Area have # extra Abyssal Modifier", - "type": "explicit" - }, - { - "id": "explicit.stat_2677352961", - "text": "#% increased Melee Damage against Heavy Stunned enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_4250009622", - "text": "#% chance to be Poisoned", - "type": "explicit" - }, - { - "id": "explicit.stat_2295988214", - "text": "#% of Elemental Damage Converted to Chaos Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1494950893", - "text": "Small Passive Skills in Radius also grant Companions deal #% increased Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|52", - "text": "Passives in Radius of Zealot's Oath can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_1888024332", - "text": "You can have two Companions of different types", - "type": "explicit" - }, - { - "id": "explicit.stat_1679776108", - "text": "Abyssal Wasting you inflict has Infinite Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_1404134612", - "text": "You and Allies in your Presence have #% to Chaos Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_1695767482", - "text": "Inflict Corrupted Blood for # second on Block, dealing #% of\nyour maximum Life as Physical damage per second", - "type": "explicit" - }, - { - "id": "explicit.stat_775597083", - "text": "Areas with Powerful Map Bosses contain an additional Azmeri Spirit", - "type": "explicit" - }, - { - "id": "explicit.stat_4245256219", - "text": "Skill Gems have no Attribute Requirements", - "type": "explicit" - }, - { - "id": "explicit.stat_806994543", - "text": "#% increased Thorns damage if you've consumed an Endurance Charge Recently", - "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" - }, - { - "id": "explicit.stat_3835522656", - "text": "Adds # to # Lightning Damage to Unarmed Melee Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_2156230257", - "text": "All Damage from Hits with this Weapon Contributes to Chill Magnitude", - "type": "explicit" - }, - { - "id": "explicit.stat_2749595652", - "text": "#% chance for Skills to retain 40% of Glory on use", - "type": "explicit" - }, - { - "id": "explicit.stat_2337295272", - "text": "Minions deal #% increased Damage if you've Hit Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_3181887481", - "text": "Take #% of Mana Costs you pay for Skills as Physical Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2107791433", - "text": "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_1404607671", - "text": "Soul Eater", - "type": "explicit" - }, - { - "id": "explicit.stat_3843204146", - "text": "#% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_3960211755", - "text": "Maximum Physical Damage Reduction is 50%", - "type": "explicit" - }, - { - "id": "explicit.stat_3620731914", - "text": "Attacks with this Weapon gain #% of Physical damage as Extra damage of each Element", - "type": "explicit" - }, - { - "id": "explicit.stat_3387008487", - "text": "Defend with 200% of Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_3561837752", - "text": "#% of Leech is Instant", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|4897", - "text": "Sacrifice up to 20 Armourer's Scraps to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_2523933828", - "text": "#% increased Armour, Evasion and Energy Shield from Equipped Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_138421180", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", - "type": "explicit" - }, - { - "id": "explicit.stat_3625518318", - "text": "Gain Arcane Surge when a Minion Dies", - "type": "explicit" - }, - { - "id": "explicit.stat_3613173483", - "text": "#% to Unarmed Melee Attack Critical Hit Chance", - "type": "explicit" - }, - { - "id": "explicit.stat_618665892", - "text": "Grants Onslaught during effect", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|45918", - "text": "Passives in Radius of Mind Over Matter can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_1070816711", - "text": "Area contains an additional Abyss", - "type": "explicit" - }, - { - "id": "explicit.stat_1070816711", - "text": "Your Maps contain an additional Abyss", - "type": "explicit" - }, - { - "id": "explicit.stat_1458343515", - "text": "This item gains bonuses from Socketed Items as though it was a Helmet", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|28492", - "text": "Passives in Radius of Iron Reflexes can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_3891922348", - "text": "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", - "type": "explicit" - }, - { - "id": "explicit.stat_3868746097", - "text": "Enemies have an Accuracy Penalty against you based on Distance", - "type": "explicit" - }, - { - "id": "explicit.stat_1776945532", - "text": "Enemies you kill have a #% chance to explode, dealing a quarter of their maximum Life as Chaos damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|47759", - "text": "Passives in Radius of Whispers of Doom can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_1777740627", - "text": "Life that would be lost by taking Damage is instead Reserved\nuntil you take no Damage to Life for # second", - "type": "explicit" - }, - { - "id": "explicit.stat_2706625504", - "text": "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", - "type": "explicit" - }, - { - "id": "explicit.stat_3954735777", - "text": "#% chance to Poison on Hit with Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_2158617060", - "text": "#% increased Archon Buff duration", - "type": "explicit" - }, - { - "id": "explicit.stat_679087890", - "text": "Defend against Hits as though you had #% more Armour per 1% current Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_3418580811|23", - "text": "Remembrancing # songworthy deeds by the line of Olroth\nPassives in radius are Conquered by the Kalguur", - "type": "explicit" - }, - { - "id": "explicit.stat_60826109", - "text": "Blind Targets when you Poison them", - "type": "explicit" - }, - { - "id": "explicit.stat_3917429943", - "text": "Grants effect of Guided Meteoric Shrine", - "type": "explicit" - }, - { - "id": "explicit.stat_250458861", - "text": "Only Soul Cores can be Socketed in this item", - "type": "explicit" - }, - { - "id": "explicit.stat_2157870819", - "text": "# to Level of Despair Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2825946427", - "text": "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", - "type": "explicit" - }, - { - "id": "explicit.stat_2593644209", - "text": "#% to all Elemental Resistances per Power Charge", - "type": "explicit" - }, - { - "id": "explicit.stat_3893509584", - "text": "Minions have Unholy Might", - "type": "explicit" - }, - { - "id": "explicit.stat_2694614739", - "text": "# to Spirit while you have at least 200 Dexterity", - "type": "explicit" - }, - { - "id": "explicit.stat_1367999357", - "text": "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_36954843", - "text": "You and Allies in your Presence have #% increased Cooldown Recovery Rate", - "type": "explicit" - }, - { - "id": "explicit.stat_1772929282", - "text": "Enemies you Curse have #% to Chaos Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_4255854327", - "text": "#% increased Accuracy Rating against Enemies affected by Abyssal Wasting", - "type": "explicit" - }, - { - "id": "explicit.stat_2278777540", - "text": "Abysses lead to an Abyssal Depths", - "type": "explicit" - }, - { - "id": "explicit.stat_1999910726", - "text": "Remnants you create have #% increased effect", - "type": "explicit" - }, - { - "id": "explicit.stat_324579579", - "text": "#% increased Attack Speed per 20 Spirit", - "type": "explicit" - }, - { - "id": "explicit.stat_3877264671", - "text": "Monster have #% increased Elemental Ailment Application", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|9085", - "text": "Passives in Radius of Crimson Assault can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_436406826", - "text": "Players are Marked for Death for # seconds\nafter killing a Rare or Unique monster", - "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" - }, - { - "id": "explicit.stat_1073942215", - "text": "#% increased Freeze Duration on Enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_1042153418", - "text": "# to Level of Temporal Chains Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2975078312", - "text": "Abyssal Monsters grant #% increased Experience", - "type": "explicit" - }, - { - "id": "explicit.stat_2975078312", - "text": "Abyss Monsters in your Maps grant #% increased Experience", - "type": "explicit" - }, - { - "id": "explicit.stat_3948285912", - "text": "# to Level of Enfeeble Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_34174842", - "text": "#% increased Cast Speed per 20 Spirit", - "type": "explicit" - }, - { - "id": "explicit.stat_3044685077", - "text": "# to Spirit while you have at least 200 Strength", - "type": "explicit" - }, - { - "id": "explicit.stat_4215035940", - "text": "On Corruption, Item gains two Enchantments", - "type": "explicit" - }, - { - "id": "explicit.stat_2387539034", - "text": "Attacks with this Weapon Penetrate #% Lightning Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|25520", - "text": "Passives in Radius of Resonance can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|19846", - "text": "Sacrifice up to 20 Artificer's Orbs to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_3579898587", - "text": "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", - "type": "explicit" - }, - { - "id": "explicit.stat_145598447", - "text": "Everlasting Sacrifice", - "type": "explicit" - }, - { - "id": "explicit.stat_255840549", - "text": "Small Passive Skills in Radius also grant #% increased Hazard Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2800412928", - "text": "Grants effect of Guided Tempest Shrine", - "type": "explicit" - }, - { - "id": "explicit.stat_2101383955", - "text": "Damage Penetrates #% Elemental Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_2466011626", - "text": "#% chance for Lightning Damage with Hits to be Lucky", - "type": "explicit" - }, - { - "id": "explicit.stat_2890792988", - "text": "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", - "type": "explicit" - }, - { - "id": "explicit.stat_67169579", - "text": "# to Level of all Chaos Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3138344128", - "text": "Defend with 200% of Armour during effect", - "type": "explicit" - }, - { - "id": "explicit.stat_1827854662", - "text": "Area contains an additional Incubator Queen", - "type": "explicit" - }, - { - "id": "explicit.stat_1590846356", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3843734793", - "text": "Non-Channelling Spells deal #% increased Damage per 100 maximum Mana", - "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" - }, - { - "id": "explicit.stat_3552135623", - "text": "Prevent #% of Damage from Deflected Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_414821772", - "text": "Increases and Reductions to Projectile Speed also apply to Damage with Bows", - "type": "explicit" - }, - { - "id": "explicit.stat_2590797182", - "text": "#% increased Movement Speed Penalty from using Skills while moving", - "type": "explicit" - }, - { - "id": "explicit.stat_1850249186", - "text": "#% increased Spell Damage per 100 maximum Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_2879778895", - "text": "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", - "type": "explicit" - }, - { - "id": "explicit.stat_2586152168", - "text": "Archon recovery period expires #% faster", - "type": "explicit" - }, - { - "id": "explicit.stat_1087787187", - "text": "This item gains bonuses from Socketed Items as though it was a Body Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_425242359", - "text": "#% of Physical damage from Hits taken as Lightning damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1726353460", - "text": "Abyssal Wasting also applies #% to Lightning Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_299996", - "text": "#% increased Attack Speed while your Companion is in your Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_1282318918", - "text": "# to Spirit while you have at least 200 Intelligence", - "type": "explicit" - }, - { - "id": "explicit.stat_4245905059", - "text": "Non-Channelling Spells have #% increased Magnitude of Ailments per 100 maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_4157613372", - "text": "Abyss Pits have #% chance to spawn all Monsters as at least Magic", - "type": "explicit" - }, - { - "id": "explicit.stat_335885735", - "text": "Bears the Mark of the Abyssal Lord", - "type": "explicit" - }, - { - "id": "explicit.stat_2035336006", - "text": "Skills from Corrupted Gems have #% of Mana Costs Converted to Life Costs", - "type": "explicit" - }, - { - "id": "explicit.stat_2074866941", - "text": "#% increased Exposure Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_636464211", - "text": "Excess Life Recovery added as Guard for # seconds", - "type": "explicit" - }, - { - "id": "explicit.stat_3635316831", - "text": "You can wield Two-Handed Axes, Maces and Swords in one hand", - "type": "explicit" - }, - { - "id": "explicit.stat_3274422940", - "text": "#% increased Ice Crystal Life", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|32821", - "text": "Sacrifice up to 20 Blacksmith's Whetstones to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_3413635271", - "text": "#% increased Reservation Efficiency of Companion Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2469544361", - "text": "Gain #% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", - "type": "explicit" - }, - { - "id": "explicit.stat_1354656031", - "text": "Withered you inflict has infinite Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_3491815140", - "text": "#% increased Spell Damage per 100 Maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_3979226081", - "text": "Abyssal Wasting also applies #% to Cold Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_2980117882", - "text": "This Flask cannot be Used but applies its Effect constantly", - "type": "explicit" - }, - { - "id": "explicit.stat_347220474", - "text": "#% increased Spell damage for each 200 total Mana you have Spent Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_2650053239", - "text": "#% increased Cost of Skills for each 200 total Mana Spent Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_2609822974", - "text": "Curses you inflict have infinite Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_1388221282", - "text": "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", - "type": "explicit" - }, - { - "id": "explicit.stat_4007482102", - "text": "Can't use Body Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_4270096386", - "text": "Hits have #% increased Critical Hit Chance against you", - "type": "explicit" - }, - { - "id": "explicit.stat_825825364", - "text": "Life Leech recovers based on your Chaos damage instead of Physical damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1367119630", - "text": "Curses you inflict can affect Hexproof Enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_262946222", - "text": "Allies in your Presence deal # to # added Attack Chaos Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3593063598", - "text": "Mana Recovery other than Regeneration cannot Recover Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_2157692677", - "text": "Attacks cost an additional #% of your maximum Mana", - "type": "explicit" - }, - { - "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" - }, - { - "id": "explicit.stat_1007380041", - "text": "Small Passive Skills in Radius also grant #% increased Parry Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|79", - "text": "+# to Level of all Sniper's Mark Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|137", - "text": "+# to Level of all Infernal Cry Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|124", - "text": "+# to Level of all Ghost Dance Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3258071686", - "text": "Attacks have Added maximum Lightning Damage equal to #% of maximum Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_2604619892", - "text": "#% increased Duration of Elemental Ailments on Enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_1000739259", - "text": "Cannot be Light Stunned", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|138", - "text": "+# to Level of all Orb of Storms Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|53", - "text": "+# to Level of all Mana Tempest Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|14", - "text": "+# to Level of all Temporal Chains Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|131", - "text": "+# to Level of all War Banner Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1365232741", - "text": "#% increased Grenade Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_324210709", - "text": "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_3131442032", - "text": "#% increased Grenade Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|10", - "text": "+# to Level of all Sacrifice Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3040571529", - "text": "#% increased Deflection Rating", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|86", - "text": "+# to Level of all Artillery Ballista Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|104", - "text": "+# to Level of all Gas Grenade Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|67", - "text": "+# to Level of all Barrier Invocation Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1751584857", - "text": "Monsters inflict # Grasping Vine on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|29", - "text": "+# to Level of all Firestorm Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|135", - "text": "+# to Level of all Armour Breaker Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|41861", - "text": "Passives in Radius of Trusted Kinship can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_2342939473", - "text": "#% of Current Energy Shield also grants Elemental Damage reduction", - "type": "explicit" - }, - { - "id": "explicit.stat_266564538", - "text": "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", - "type": "explicit" - }, - { - "id": "explicit.stat_3007552094", - "text": "You have Unholy Might", - "type": "explicit" - }, - { - "id": "explicit.stat_2991563371", - "text": "Abyssal Wasting also applies #% to Fire Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|85", - "text": "+# to Level of all Wave of Frost Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|56", - "text": "+# to Level of all Detonating Arrow Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|54", - "text": "+# to Level of all Oil Grenade Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|42", - "text": "+# to Level of all Shockchain Arrow Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|31", - "text": "+# to Level of all Bone Offering Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|151", - "text": "+# to Level of all Incendiary Shot Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|110", - "text": "+# to Level of all Electrocuting Arrow Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|148", - "text": "+# to Level of all Vine Arrow Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|9", - "text": "+# to Level of all Reaper's Invocation Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|12", - "text": "+# to Level of all Berserk Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|72", - "text": "+# to Level of all Elemental Invocation Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|44", - "text": "+# to Level of all Tornado Shot Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|43", - "text": "+# to Level of all Emergency Reload Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|68", - "text": "+# to Level of all Lingering Illusion Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|82", - "text": "+# to Level of all Conductivity Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|48", - "text": "+# to Level of all Rain of Arrows Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1953536251", - "text": "Enemies in your Presence have at least #% of Life Reserved", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|60", - "text": "+# to Level of all Mantra of Destruction Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|51", - "text": "+# to Level of all Siege Ballista Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|100", - "text": "+# to Level of all Barrage Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|22", - "text": "+# to Level of all Soul Offering Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|63", - "text": "+# to Level of all Blasphemy Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|120", - "text": "+# to Level of all Herald of Ash Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|4", - "text": "+# to Level of all Dread Banner Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|78", - "text": "+# to Level of all Detonate Dead Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2456226238", - "text": "Recover #% of your maximum Mana when an Enemy dies in your Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|7", - "text": "+# to Level of all Charge Regulation Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|88", - "text": "+# to Level of all Siphoning Strike Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|105", - "text": "+# to Level of all Pain Offering Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|102", - "text": "+# to Level of all Wind Blast Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|62", - "text": "+# to Level of all Hand of Chayula Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|143", - "text": "+# to Level of all Staggering Palm Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|71", - "text": "+# to Level of all Time of Need Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|175", - "text": "+# to Level of all Permafrost Bolts Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|112", - "text": "+# to Level of all Perfect Strike Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|59", - "text": "+# to Level of all Stormblast Bolts Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|87", - "text": "+# to Level of all Voltaic Grenade Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|52", - "text": "+# to Level of all Volcanic Fissure Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|96", - "text": "+# to Level of all Voltaic Mark Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|157", - "text": "+# to Level of all Frost Bomb Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|46", - "text": "+# to Level of all Despair Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|70", - "text": "+# to Level of all Defiance Banner Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|75", - "text": "+# to Level of all Herald of Plague Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|45", - "text": "+# to Level of all Frost Wall Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|115", - "text": "+# to Level of all Rapid Shot Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|132", - "text": "+# to Level of all Withering Presence Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|166", - "text": "+# to Level of all Glacial Cascade Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|30", - "text": "+# to Level of all Ball Lightning Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|165", - "text": "+# to Level of all Escape Shot Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|36", - "text": "+# to Level of all Supercharged Slam Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|69", - "text": "+# to Level of all Cast on Minion Death Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|95", - "text": "+# to Level of all Freezing Mark Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|159", - "text": "+# to Level of all Contagion Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2725205297", - "text": "#% increased Magnitude of Unholy Might buffs you grant", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|74", - "text": "+# to Level of all Overwhelming Presence Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|142", - "text": "+# to Level of all Flash Grenade Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|28", - "text": "+# to Level of all Gathering Storm Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|118", - "text": "+# to Level of all Freezing Salvo Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|97", - "text": "+# to Level of all Raise Zombie Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|24", - "text": "+# to Level of all Siege Cascade Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|94", - "text": "+# to Level of all Storm Wave Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3143208761", - "text": "#% increased Attributes", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|146", - "text": "+# to Level of all Stormcaller Arrow Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|33", - "text": "+# to Level of all Seismic Cry Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|147", - "text": "+# to Level of all Snipe Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|150", - "text": "+# to Level of all High Velocity Rounds Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|6", - "text": "+# to Level of all Elemental Conflux Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|18", - "text": "+# to Level of all Eye of Winter Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|76", - "text": "+# to Level of all Combat Frenzy Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|27", - "text": "+# to Level of all Magnetic Salvo Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|84", - "text": "+# to Level of all Earthshatter Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|2", - "text": "+# to Level of all Cast on Dodge Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|172", - "text": "+# to Level of all Lightning Rod Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|170", - "text": "+# to Level of all Unearth Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1261076060", - "text": "#% increased Life Regeneration rate during Effect of any Life Flask", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|35", - "text": "+# to Level of all Whirling Assault Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|40", - "text": "+# to Level of all Hailstorm Rounds Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|171", - "text": "+# to Level of all Poisonburst Arrow Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|73", - "text": "+# to Level of all Shard Scavenger Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|93", - "text": "+# to Level of all Glacial Bolt Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|163", - "text": "+# to Level of all Boneshatter Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|174", - "text": "+# to Level of all Armour Piercing Rounds Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|8", - "text": "+# to Level of all Alchemist's Boon Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|173", - "text": "+# to Level of all Fragmentation Rounds Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|116", - "text": "+# to Level of all Ice Shards Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|108", - "text": "+# to Level of all Toxic Growth Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|167", - "text": "+# to Level of all Killing Palm Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|80", - "text": "+# to Level of all Flammability Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|133", - "text": "+# to Level of all Shield Charge Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|128", - "text": "+# to Level of all Wind Dancer Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|26", - "text": "+# to Level of all Cluster Grenade Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_263495202", - "text": "#% increased Cost Efficiency", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|5", - "text": "+# to Level of all Attrition Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|155", - "text": "+# to Level of all Falling Thunder Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|125", - "text": "+# to Level of all Mana Remnants Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|83", - "text": "+# to Level of all Vulnerability Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|109", - "text": "+# to Level of all Solar Orb Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|64", - "text": "+# to Level of all Cast on Shock Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_57896763", - "text": "# metre to Dodge Roll distance if you've Dodge Rolled Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|111", - "text": "+# to Level of all Snap Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|1", - "text": "+# to Level of all Cast on Critical Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|169", - "text": "+# to Level of all Frozen Locus Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_724806967", - "text": "Enemies in your Presence have Exposure", - "type": "explicit" - }, - { - "id": "explicit.stat_2480962043", - "text": "Skills which require Glory generate # Glory every 2 seconds", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|20", - "text": "+# to Level of all Spiral Volley Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|121", - "text": "+# to Level of all Herald of Ice Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|134", - "text": "+# to Level of all Enfeeble Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|152", - "text": "+# to Level of all Vaulting Impact Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|81", - "text": "+# to Level of all Hypothermia Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|162", - "text": "+# to Level of all Flame Wall Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2306588612", - "text": "Repeatable Attacks with this Bow Repeat # time if no enemies are in your Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_3350232544", - "text": "# metre to Dodge Roll distance if you haven't Dodge Rolled Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|47", - "text": "+# to Level of all Lightning Warp Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|114", - "text": "+# to Level of all Molten Blast Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|58", - "text": "+# to Level of all Dark Effigy Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|77", - "text": "+# to Level of all Leap Slam Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|164", - "text": "+# to Level of all Rolling Slam Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|168", - "text": "+# to Level of all Explosive Grenade Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|55", - "text": "+# to Level of all Charged Staff Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|90", - "text": "+# to Level of all Profane Ritual Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3350279336", - "text": "#% increased Cost Efficiency of Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_2818518881", - "text": "#% increased Spell Damage per 10 Intelligence", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|119", - "text": "+# to Level of all Arctic Armour Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|65", - "text": "+# to Level of all Cast on Freeze Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|122", - "text": "+# to Level of all Herald of Thunder Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|49", - "text": "+# to Level of all Sunder Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|113", - "text": "+# to Level of all Resonating Shield Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|61", - "text": "+# to Level of all Ice Shot Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|17", - "text": "+# to Level of all Skeletal Cleric Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|15", - "text": "+# to Level of all Flameblast Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|66", - "text": "+# to Level of all Cast on Ignite Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|129", - "text": "+# to Level of all Grim Feast Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_4287372938", - "text": "Bear Skills Convert #% of Physical Damage to Fire Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|57", - "text": "+# to Level of all Fireball Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|130", - "text": "+# to Level of all Scavenged Plating Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|91", - "text": "+# to Level of all Shield Wall Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|127", - "text": "+# to Level of all Raging Spirits Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2252419505", - "text": "Cannot be Light Stunned by Deflected Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_2589572664", - "text": "Notable Passive Skills in Radius also grant #% increased maximum Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|38", - "text": "+# to Level of all Shattering Palm Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|89", - "text": "+# to Level of all Gas Arrow Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|123", - "text": "+# to Level of all Plague Bearer Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|11", - "text": "+# to Level of all Archmage Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|13", - "text": "+# to Level of all Flicker Strike Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|149", - "text": "+# to Level of all Ember Fusillade Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|140", - "text": "+# to Level of all Frostbolt Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|117", - "text": "+# to Level of all Galvanic Shards Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2889664727", - "text": "#% chance to Avoid Lightning Damage from Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_916833363", - "text": "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|158", - "text": "+# to Level of all Earthquake Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_4159551976", - "text": "Your Critical Hit Chance cannot be Rerolled", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|99", - "text": "+# to Level of all Incinerate Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|98", - "text": "+# to Level of all Arc Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|156", - "text": "+# to Level of all Lightning Arrow Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|41", - "text": "+# to Level of all Shockburst Rounds Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|25", - "text": "+# to Level of all Plasma Blast Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|145", - "text": "+# to Level of all Bone Cage Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|139", - "text": "+# to Level of all Essence Drain Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|107", - "text": "+# to Level of all Bonestorm Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3743375737", - "text": "#% chance to Avoid Cold Damage from Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_3418580811|27", - "text": "Glorifying the defilement of # souls in tribute to Tecrod\nPassives in radius are Conquered by the Abyssals\nDesecration makes this item unstable", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|92", - "text": "+# to Level of all Explosive Shot Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|23", - "text": "+# to Level of all Hammer of the Gods Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1509533589", - "text": "Enemies take #% increased Damage for each Elemental Ailment type among\nyour Ailments on them", - "type": "explicit" - }, - { - "id": "explicit.stat_885925163", - "text": "Copy a random Modifier from each enemy in your Presence when\nyou Shapeshift to an Animal form\nModifiers gained this way are lost after # seconds or when you next Shapeshift", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|153", - "text": "+# to Level of all Ice Nova Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|106", - "text": "+# to Level of all Tempest Flurry Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3398283493", - "text": "Attacks with this Weapon Penetrate #% Fire Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_2896115339", - "text": "#% of Elemental Damage taken Recouped as Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_1345486764", - "text": "+1 to Maximum Spirit per # Maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|103", - "text": "+# to Level of all Ice Strike Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1327522346", - "text": "#% increased Mana Regeneration Rate while moving", - "type": "explicit" - }, - { - "id": "explicit.stat_4097212302", - "text": "# to maximum number of Elemental Infusions", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|39", - "text": "+# to Level of all Stampede Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3063814459", - "text": "Pin Enemies which are Primed for Pinning", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|3", - "text": "+# to Level of all Blink Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1661347488", - "text": "Lose #% of maximum Life per second", - "type": "explicit" - }, - { - "id": "explicit.stat_42242677", - "text": "#% chance to Avoid Fire Damage from Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_3507701584", - "text": "# to Level of Vulnerability Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|144", - "text": "+# to Level of all Tempest Bell Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2103650854", - "text": "#% increased effect of Arcane Surge on you", - "type": "explicit" - }, - { - "id": "explicit.stat_1294464552", - "text": "Small Passive Skills in Radius also grant # to maximum Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|16", - "text": "+# to Level of all Skeletal Brute Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3773763721", - "text": "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|160", - "text": "+# to Level of all Skeletal Sniper Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|34", - "text": "+# to Level of all Hexblast Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1493211587", - "text": "#% chance to Poison on Hit with Spell Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|19", - "text": "+# to Level of all Lightning Conduit Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3482326075", - "text": "Remnants can be collected from #% further away", - "type": "explicit" - }, - { - "id": "explicit.stat_3605616594", - "text": "Gain Onslaught for 4 seconds when a Minion Dies", - "type": "explicit" - }, - { - "id": "explicit.stat_1416406066", - "text": "#% increased Spirit", - "type": "explicit" - }, - { - "id": "explicit.stat_2061237517", - "text": "# to Level of all Corrupted Spell Skill Gems", - "type": "explicit" - }, - { - "id": "explicit.stat_1088082880", - "text": "Spells which cost Life Gain #% of Damage as Extra Physical Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|37", - "text": "+# to Level of all Comet Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2363593824", - "text": "#% increased speed of Recoup Effects", - "type": "explicit" - }, - { - "id": "explicit.stat_3581035970", - "text": "#% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2856328513", - "text": "#% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|21", - "text": "+# to Level of all Ancestral Warrior Totem Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1705072014", - "text": "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", - "type": "explicit" - }, - { - "id": "explicit.stat_1266185101", - "text": "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_1365079333", - "text": "Players steal the Eaten Souls of Slain Rare Monsters in Area", - "type": "explicit" - }, - { - "id": "explicit.stat_668076381", - "text": "Heavy Stuns Enemies that are on Full Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1740229525", - "text": "Attacks with this Weapon Penetrate #% Cold Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_1697191405", - "text": "#% increased Reservation Efficiency of Herald Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_446027070", - "text": "#% chance to Gain Arcane Surge when you deal a Critical Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_988575597", - "text": "#% increased Energy Shield Recovery rate", - "type": "explicit" - }, - { - "id": "explicit.stat_3655769732", - "text": "#% to Quality of all Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_883169830", - "text": "Projectiles deal #% increased Damage with Hits for each time they have Pierced", - "type": "explicit" - }, - { - "id": "explicit.stat_3480095574", - "text": "Charms applied to you have #% increased Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_4106787208", - "text": "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", - "type": "explicit" - }, - { - "id": "explicit.stat_1350127730", - "text": "#% increased Reservation Efficiency of Remnant Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3915618954", - "text": "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", - "type": "explicit" - }, - { - "id": "explicit.stat_1570501432", - "text": "Leech Life #% faster", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|38303", - "text": "Sacrifice up to 20 Arcanist's Etchers to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_3742268652", - "text": "Grants effect of Dreaming Gloom Shrine", - "type": "explicit" - }, - { - "id": "explicit.stat_3407849389", - "text": "#% reduced effect of Curses on you", - "type": "explicit" - }, - { - "id": "explicit.stat_160888068", - "text": "Notable Passive Skills in Radius also grant #% increased maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|19854", - "text": "Sacrifice up to 3 Orb of Annulments to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|126", - "text": "+# to Level of all Magma Barrier Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1515657623", - "text": "# to Maximum Endurance Charges", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|50", - "text": "+# to Level of all Skeletal Reaver Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2720781168", - "text": "Attack Projectiles Return if they Pierced at least # times", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|136", - "text": "+# to Level of all Shockwave Totem Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_538981065", - "text": "Grenades have #% chance to activate a second time", - "type": "explicit" - }, - { - "id": "explicit.stat_1823942939", - "text": "# to maximum number of Summoned Ballista Totems", - "type": "explicit" - }, - { - "id": "explicit.stat_318092306", - "text": "Small Passive Skills in Radius also grant Attack Hits apply Incision", - "type": "explicit" - }, - { - "id": "explicit.stat_150590298", - "text": "This item gains bonuses from Socketed Soul Cores as though it was also Boots", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|45026", - "text": "Sacrifice up to 3 Orbs of Chance to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_311641062", - "text": "#% chance for Flasks you use to not consume Charges", - "type": "explicit" - }, - { - "id": "explicit.stat_3190283174", - "text": "Area has patches of Mana Siphoning Ground", - "type": "explicit" - }, - { - "id": "explicit.stat_2760344900", - "text": "#% chance when you Reload a Crossbow to be immediate", - "type": "explicit" - }, - { - "id": "explicit.stat_4258524206", - "text": "#% chance to build an additional Combo on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_1914226331", - "text": "#% increased Cast Speed while on Full Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_3906866585", - "text": "Monsters have #% increased Armour, Evasion and Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_1316656343", - "text": "Small Passive Skills in Radius also grant # to maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1949851472", - "text": "#% chance when a Charm is used to use another Charm without consuming Charges", - "type": "explicit" - }, - { - "id": "explicit.stat_1781372024", - "text": "Recover #% of maximum Life on Killing a Poisoned Enemy", - "type": "explicit" - }, - { - "id": "explicit.stat_1518586897", - "text": "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|141", - "text": "+# to Level of all Skeletal Arsonist Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_287294012", - "text": "# to # Fire Thorns damage per 100 maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_3685424517", - "text": "Possessed by Spirit Of The Stag for # seconds on use", - "type": "explicit" - }, - { - "id": "explicit.stat_3950000557", - "text": "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", - "type": "explicit" - }, - { - "id": "explicit.stat_2839557359", - "text": "Possessed by Spirit Of The Cat for # seconds on use", - "type": "explicit" - }, - { - "id": "explicit.stat_3711973554", - "text": "Invocated Spells have #% chance to consume half as much Energy", - "type": "explicit" - }, - { - "id": "explicit.stat_4121454694", - "text": "Recover #% of maximum Mana when a Charm is used", - "type": "explicit" - }, - { - "id": "explicit.stat_2543331226", - "text": "#% increased Damage while you have a Totem", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|64601", - "text": "Passives in Radius of Hollow Palm Technique can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_501873429", - "text": "#% chance for Charms you use to not consume Charges", - "type": "explicit" - }, - { - "id": "explicit.stat_2705185939", - "text": "#% chance to Aggravate Bleeding on targets you Hit with Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_3128077011", - "text": "#% increased Effect of Jewel Socket Passive Skills\ncontaining Corrupted Rare Jewels", - "type": "explicit" - }, - { - "id": "explicit.stat_2544540062", - "text": "Skills which create Fissures have a #% chance to create an additional Fissure", - "type": "explicit" - }, - { - "id": "explicit.stat_1133346493", - "text": "#% chance for Spell Damage with Critical Hits to be Lucky", - "type": "explicit" - }, - { - "id": "explicit.stat_2399592398", - "text": "Abysses lead to an Abyssal Boss", - "type": "explicit" - }, - { - "id": "explicit.stat_4129825612", - "text": "#% of Physical Damage from Hits taken as Chaos Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2474424958", - "text": "Spell Skills have # to maximum number of Summoned Totems", - "type": "explicit" - }, - { - "id": "explicit.stat_1514844108", - "text": "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_2408625104", - "text": "Players and their Minions deal no damage for 3 out of every 10 seconds", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|199", - "text": "+# to Level of all Herald of Blood Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|154", - "text": "+# to Level of all Spark Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_4274247770", - "text": "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|32", - "text": "+# to Level of all Skeletal Storm Mage Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_242637938", - "text": "#% increased chance to inflict Bleeding", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|136", - "text": "Sacrifice up to 20 Glassblower's Baubles to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|194", - "text": "+# to Level of all Spear of Solaris Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|161", - "text": "+# to Level of all Skeletal Sniper Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1864159246", - "text": "#% increased Magnitude of Poison you inflict on targets that are not Poisoned", - "type": "explicit" - }, - { - "id": "explicit.stat_3972229254", - "text": "#% of Armour also applies to Chaos Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1495814176", - "text": "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|42680", - "text": "Passives in Radius of Blackflame Covenant can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_1286199571", - "text": "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", - "type": "explicit" - }, - { - "id": "explicit.stat_3313255158", - "text": "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_3679418014", - "text": "#% of Cold Damage taken Recouped as Life", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|101", - "text": "+# to Level of all Skeletal Frost Mage Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3504441212", - "text": "Possessed by Spirit Of The Wolf for # seconds on use", - "type": "explicit" - }, - { - "id": "explicit.stat_1291132817", - "text": "+1 to Armour per Strength", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|53954", - "text": "Sacrifice up to 10 Gemcutter's Prisms to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_3763491818", - "text": "Possessed by Spirit Of The Primate for # seconds on use", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|11230", - "text": "Passives in Radius of Ritual Cadence can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_3403424702", - "text": "Possessed by Spirit Of The Bear for # seconds on use", - "type": "explicit" - }, - { - "id": "explicit.stat_4224832423", - "text": "#% chance for Spell Skills to fire 8 additional Projectiles in a circle", - "type": "explicit" - }, - { - "id": "explicit.stat_3481083201", - "text": "#% increased chance to Poison", - "type": "explicit" - }, - { - "id": "explicit.stat_3418580811|28", - "text": "Glorifying the defilement of # souls in tribute to Ulaman\nPassives in radius are Conquered by the Abyssals\nDesecration makes this item unstable", - "type": "explicit" - }, - { - "id": "explicit.stat_3418580811|25", - "text": "Glorifying the defilement of # souls in tribute to Kulemak\nPassives in radius are Conquered by the Abyssals\nDesecration makes this item unstable", - "type": "explicit" - }, - { - "id": "explicit.stat_2258007247", - "text": "Gain # Rage on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_3871530702", - "text": "Conquered Attribute Passive Skills also grant # to Strength", - "type": "explicit" - }, - { - "id": "explicit.stat_330530785", - "text": "#% increased Immobilisation buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_1746561819", - "text": "Enemies Hindered by you take #% increased Chaos Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2931872063", - "text": "Gain Volatility on Critical Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_300107724", - "text": "Possessed by Spirit Of The Owl for # seconds on use", - "type": "explicit" - }, - { - "id": "explicit.stat_3927679277", - "text": "#% chance when collecting an Elemental Infusion to gain an\nadditional Elemental Infusion of the same type", - "type": "explicit" - }, - { - "id": "explicit.stat_231726304", - "text": "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2552484522", - "text": "Conquered Attribute Passive Skills also grant # to all Attributes", - "type": "explicit" - }, - { - "id": "explicit.stat_3181677174", - "text": "Possessed by Spirit Of The Serpent for # seconds on use", - "type": "explicit" - }, - { - "id": "explicit.stat_212649958", - "text": "Enemies Hindered by you take #% increased Elemental Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3418580811|26", - "text": "Glorifying the defilement of # souls in tribute to Kurgal\nPassives in radius are Conquered by the Abyssals\nDesecration makes this item unstable", - "type": "explicit" - }, - { - "id": "explicit.stat_3463873033", - "text": "Possessed by Spirit Of The Ox for # seconds on use", - "type": "explicit" - }, - { - "id": "explicit.stat_3396435291", - "text": "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_3418580811|24", - "text": "Glorifying the defilement of # souls in tribute to Amanamu\nPassives in radius are Conquered by the Abyssals\nDesecration makes this item unstable", - "type": "explicit" - }, - { - "id": "explicit.stat_909236563", - "text": "#% increased Surrounded Area of Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_2853314994", - "text": "Regenerate # Rage per second", - "type": "explicit" - }, - { - "id": "explicit.stat_4163076972", - "text": "No Inherent loss of Rage", - "type": "explicit" - }, - { - "id": "explicit.stat_2479683456", - "text": "Minions Regenerate #% of maximum Life per second", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|204", - "text": "+# to Level of all Ravenous Swarm Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1685559578", - "text": "Possessed by Spirit Of The Boar for # seconds on use", - "type": "explicit" - }, - { - "id": "explicit.stat_2013356568", - "text": "Melee Attack Skills have # to maximum number of Summoned Totems", - "type": "explicit" - }, - { - "id": "explicit.stat_2146799605", - "text": "#% less Movement Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_2970621759", - "text": "#% of Lightning Damage taken Recouped as Life", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|61382", - "text": "Sacrifice up to 3 Divine Orbs to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_3116427713", - "text": "Conquered Attribute Passive Skills also grant # to Intelligence", - "type": "explicit" - }, - { - "id": "explicit.stat_1119086588", - "text": "Conquered Attribute Passive Skills also grant # to Tribute", - "type": "explicit" - }, - { - "id": "explicit.stat_2083058281", - "text": "Enemies you Mark take #% increased Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_4136346606", - "text": "#% increased Spell Damage while wielding a Melee Weapon", - "type": "explicit" - }, - { - "id": "explicit.stat_1103616075", - "text": "Break Armour equal to #% of Physical Damage dealt", - "type": "explicit" - }, - { - "id": "explicit.stat_1633735772", - "text": "#% less maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1793740180", - "text": "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_1274947822", - "text": "#% less Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1370804479", - "text": "Elemental Ailments other than Freeze you inflict are Reflected to you", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|61942", - "text": "Passives in Radius of Lord of the Wilds can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_537850431", - "text": "#% less Spirit", - "type": "explicit" - }, - { - "id": "explicit.stat_3359797958", - "text": "#% increased Projectile Speed for Spell Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3045154261", - "text": "#% less maximum Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_2221570601", - "text": "#% Global chance to Blind Enemies on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_1602191394", - "text": "#% increased Rarity of Items found\nYour other Modifiers to Rarity of Items found do not apply", - "type": "explicit" - }, - { - "id": "explicit.stat_4240116297", - "text": "Conquered Small Passive Skills also grant #% increased Elemental Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2991045011", - "text": "Recover #% of Maximum Mana when you expend at least 10 Combo", - "type": "explicit" - }, - { - "id": "explicit.stat_2250681686", - "text": "Grenade Skills have +# Cooldown Use", - "type": "explicit" - }, - { - "id": "explicit.stat_1099200124", - "text": "Gain a Power Charge every Second if you haven't lost Power Charges Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|49547", - "text": "Passives in Radius of Scarred Faith can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_1382805233", - "text": "#% increased Deflection Rating while moving", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|203", - "text": "+# to Level of all Cull The Weak Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_4225700219", - "text": "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|195", - "text": "+# to Level of all Storm Lance Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|182", - "text": "+# to Level of all Glacial Lance Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|187", - "text": "+# to Level of all Whirlwind Lance Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_4033618138", - "text": "Recover #% of Maximum Life when you expend at least 10 Combo", - "type": "explicit" - }, - { - "id": "explicit.stat_1174076861", - "text": "#% increased Cast Speed if you've dealt a Critical Hit Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_3038857426", - "text": "Conquered Small Passive Skills also grant #% increased Spell damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1045789614", - "text": "#% increased Critical Hit Chance against Marked Enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_346374719", - "text": "Recover #% of maximum Mana when you consume a Power Charge", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|177", - "text": "+# to Level of all Disengage Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_656291658", - "text": "#% increased Cast Speed when on Full Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2710292678", - "text": "#% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", - "type": "explicit" - }, - { - "id": "explicit.stat_3191479793", - "text": "Offering Skills have #% increased Buff effect", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|202", - "text": "+# to Level of all Convalescence Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|179", - "text": "+# to Level of all Whirling Slash Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|189", - "text": "+# to Level of all Fangs of Frost Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|185", - "text": "+# to Level of all Thunderous Leap Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|192", - "text": "+# to Level of all Bloodhound's Mark Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|178", - "text": "+# to Level of all Blood Hunt Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_173471035", - "text": "Meta Skills gain #% increased Energy while on Full Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_2879725899", - "text": "#% increased Attack Damage while Surrounded", - "type": "explicit" - }, - { - "id": "explicit.stat_4277795662", - "text": "#% to Cold and Lightning Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_4257790560", - "text": "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|197", - "text": "+# to Level of all Trinity Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_359357545", - "text": "Enemies Hindered by you take #% increased Physical Damage", - "type": "explicit" - }, - { - "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" - }, - { - "id": "explicit.stat_448592698|190", - "text": "+# to Level of all Wind Serpent's Fury Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1691403182", - "text": "Minions have #% increased Cooldown Recovery Rate", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|20", - "text": "Vaal Pact", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|188", - "text": "+# to Level of all Primal Strikes Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2422708892|49363", - "text": "Passives in Radius of Wildsurge Incantation can be Allocated\nwithout being connected to your tree", - "type": "explicit" - }, - { - "id": "explicit.stat_2723294374", - "text": "Attacks have added Physical damage equal to #% of maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_3452816629", - "text": "1% more Unarmed Damage per # Strength", - "type": "explicit" - }, - { - "id": "explicit.stat_3839676903", - "text": "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_627896047", - "text": "Can Attack as though using a One Handed Mace while both of your hand slots are empty\nUnarmed Attacks that would use an Equipped One Hand Mace's damage use this Item's damage", - "type": "explicit" - }, - { - "id": "explicit.stat_70760090", - "text": "#% of Physical damage dealt by your Hits causes Blood Loss", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|184", - "text": "+# to Level of all Explosive Spear Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1742651309", - "text": "#% of Fire Damage taken Recouped as Life", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|198", - "text": "+# to Level of all Trail of Caltrops Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|196", - "text": "+# to Level of all Elemental Sundering Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3143918757", - "text": "#% increased Glory generation", - "type": "explicit" - }, - { - "id": "explicit.stat_23669307", - "text": "#% increased Critical Damage Bonus if you've consumed a Power Charge Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|180", - "text": "+# to Level of all Spearfield Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|176", - "text": "+# to Level of all Rapid Assault Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3024873336", - "text": "Skills have #% chance to not remove Elemental Infusions but still count as consuming them", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|191", - "text": "+# to Level of all Rake Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2915988346", - "text": "#% to Fire and Cold Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_983582600", - "text": "Ignite you inflict deals Chaos Damage instead of Fire Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3566150527", - "text": "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", - "type": "explicit" - }, - { - "id": "explicit.stat_3694078435", - "text": "You take #% of damage from Blocked Hits with a raised Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_569299859", - "text": "#% to all maximum Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|12", - "text": "Necromantic Talisman", - "type": "explicit" - }, - { - "id": "explicit.stat_85367160", - "text": "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_2135541924", - "text": "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", - "type": "explicit" - }, - { - "id": "explicit.stat_3190121041", - "text": "#% of Volatility Physical Damage Taken as Cold Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_302024054", - "text": "Regenerate #% of maximum Life per second while Ignited", - "type": "explicit" - }, - { - "id": "explicit.stat_1829333149", - "text": "Conquered Small Passive Skills also grant #% increased Physical damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2601021356", - "text": "Conquered Small Passive Skills also grant #% increased Chaos damage", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|209", - "text": "+# to Level of all Toxic Domain Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3537994888", - "text": "#% chance when you gain a Power Charge to gain an additional Power Charge", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|183", - "text": "+# to Level of all Twister Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_8816597", - "text": "Conquered Small Passive Skills also grant #% increased Attack damage", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|186", - "text": "+# to Level of all Herald of Blood Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|213", - "text": "+# to Level of all Mirage Archer Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|181", - "text": "+# to Level of all Lightning Spear Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|214", - "text": "+# to Level of all Siphon Elements Skills", - "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" - }, - { - "id": "explicit.stat_448592698|201", - "text": "+# to Level of all Tamed Companion Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|206", - "text": "+# to Level of all Fortifying Cry Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|30", - "text": "Scarred Faith", - "type": "explicit" - }, - { - "id": "explicit.stat_3593401321", - "text": "Hits have #% chance to treat Enemy Monster Elemental Resistance values as inverted", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|16", - "text": "Primal Hunger", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|19", - "text": "Oasis", - "type": "explicit" - }, - { - "id": "explicit.stat_2257118425", - "text": "Vaal Pact", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|216", - "text": "+# to Level of all Elemental Weakness Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|15", - "text": "Eternal Youth", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|212", - "text": "+# to Level of all Mortar Cannon Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|200", - "text": "+# to Level of all Summon Spectre Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2780670304", - "text": "Conquered Small Passive Skills also grant #% increased Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|210", - "text": "+# to Level of all Ice-Tipped Arrows Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|207", - "text": "+# to Level of all Forge Hammer Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1434716233", - "text": "Warcries Empower an additional Attack", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|24", - "text": "Bulwark", - "type": "explicit" - }, - { - "id": "explicit.stat_1938221597", - "text": "Conquered Attribute Passive Skills also grant # to Dexterity", - "type": "explicit" - }, - { - "id": "explicit.stat_4264952559", - "text": "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", - "type": "explicit" - }, - { - "id": "explicit.stat_3343033032", - "text": "Conquered Small Passive Skills also grant Minions deal #% increased damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|22", - "text": "Glancing Blows", - "type": "explicit" - }, - { - "id": "explicit.stat_1034611536", - "text": "Notable Passive Skills in Radius also grant Charms gain # charge per Second", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|50562", - "text": "Allocates Barbaric Strength", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|2", - "text": "Giant's Blood", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|31", - "text": "Lord of the Wilds", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|32", - "text": "Wildsurge Incantation", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|11", - "text": "Whispers of Doom", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|193", - "text": "+# to Level of all Tamed Companion Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|208", - "text": "+# to Level of all Ancestral Cry Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|18", - "text": "Heartstopper", - "type": "explicit" - }, - { - "id": "explicit.stat_2558253923", - "text": "Hits with this Weapon have Culling Strike against Bleeding Enemies", - "type": "explicit" - }, - { - "id": "explicit.stat_2839036860", - "text": "#% increased Endurance, Frenzy and Power Charge Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|1", - "text": "Ancestral Bond", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|57388", - "text": "Allocates Overwhelming Strike", - "type": "explicit" - }, - { - "id": "explicit.stat_3470876581", - "text": "# to Evasion Rating while on Low Life", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|13", - "text": "Conduit", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|29", - "text": "Ritual Cadence", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|25", - "text": "Trusted Kinship", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|6", - "text": "Resolute Technique", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|219", - "text": "+# to Level of all Volcano Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1689748350", - "text": "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|33", - "text": "Zealot's Oath", - "type": "explicit" - }, - { - "id": "explicit.stat_1803659985", - "text": "#% less Armour, Evasion and Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_1138742368", - "text": "Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value", - "type": "explicit" - }, - { - "id": "explicit.stat_3939216292", - "text": "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|23", - "text": "Elemental Equilibrium", - "type": "explicit" - }, - { - "id": "explicit.stat_1177404658", - "text": "#% increased Global Armour, Evasion and Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|27", - "text": "Hollow Palm Technique", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|27303", - "text": "Allocates Vulgar Methods", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|4", - "text": "Avatar of Fire", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|30132", - "text": "Allocates Wrapped Quiver", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7809", - "text": "Allocates Wild Storm", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|8", - "text": "Chaos Inoculation", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|28", - "text": "Blackflame Covenant", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|226", - "text": "+# to Level of all Spell Totem Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|205", - "text": "+# to Level of all Iron Ward Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|211", - "text": "+# to Level of all Frost Darts Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1148433552", - "text": "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|231", - "text": "+# to Level of all Fury of the Mountain Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|227", - "text": "+# to Level of all Wing Blast Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_4266776872", - "text": "Glancing Blows", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|225", - "text": "+# to Level of all Ferocious Roar Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2116424886", - "text": "#% increased Life Regeneration Rate while moving", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|241", - "text": "+# to Level of all Walking Calamity Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|26", - "text": "Crimson Assault", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38535", - "text": "Allocates Stormcharged", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|239", - "text": "+# to Level of all Eternal Rage Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|217", - "text": "+# to Level of all Rolling Magma Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|215", - "text": "+# to Level of all Cast on Elemental Ailment Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2942439603", - "text": "Skills have #% chance to not remove Charges but still count as consuming them", - "type": "explicit" - }, - { - "id": "explicit.stat_1586136369", - "text": "#% increased Evasion Rating while Sprinting", - "type": "explicit" - }, - { - "id": "explicit.stat_1245896889", - "text": "Life Recovery from Flasks can Overflow Maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|26107", - "text": "Allocates Kite Runner", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|234", - "text": "+# to Level of all Devour Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1980802737", - "text": "Grenade Skills Fire an additional Projectile", - "type": "explicit" - }, - { - "id": "explicit.stat_3602667353", - "text": "#% chance to inflict Exposure on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|218", - "text": "+# to Level of all Tornado Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1913583994", - "text": "#% increased Monster Attack Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|28975", - "text": "Allocates Pure Power", - "type": "explicit" - }, - { - "id": "explicit.stat_2488361432", - "text": "#% increased Monster Cast Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|10", - "text": "Mind Over Matter", - "type": "explicit" - }, - { - "id": "explicit.stat_3872306017", - "text": "#% increased Power Charge Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_2306522833", - "text": "#% increased Monster Movement Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|224", - "text": "+# to Level of all Furious Slam Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|223", - "text": "+# to Level of all Thunderstorm Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1818915622", - "text": "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|229", - "text": "+# to Level of all Flame Breath Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|5", - "text": "Blood Magic", - "type": "explicit" - }, - { - "id": "explicit.stat_1133965702", - "text": "#% increased Gold found in this Area", - "type": "explicit" - }, - { - "id": "explicit.stat_1133965702", - "text": "#% increased Gold found in your Maps", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|17", - "text": "Dance With Death", - "type": "explicit" - }, - { - "id": "explicit.stat_504210122", - "text": "#% chance to gain an additional random Charge when you gain a Charge", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|240", - "text": "+# to Level of all Savage Fury Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|236", - "text": "+# to Level of all Lunar Blessing Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_321970274", - "text": "#% of Physical Damage taken as Lightning while your Shield is raised", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|14", - "text": "Resonance", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|220", - "text": "+# to Level of all Wolf Pack Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3910614548", - "text": "#% increased Attack and Cast Speed if you've summoned a Totem Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|237", - "text": "+# to Level of all Arctic Howl Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|243", - "text": "+# to Level of all Feral Invocation Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|235", - "text": "+# to Level of all Thrashing Vines Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|62230", - "text": "Allocates Patient Barrier", - "type": "explicit" - }, - { - "id": "explicit.stat_886088880", - "text": "Your Heavy Stun buildup empties #% faster", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|221", - "text": "+# to Level of all Pounce Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|228", - "text": "+# to Level of all Oil Barrage Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|238", - "text": "+# to Level of all Briarpatch Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|233", - "text": "+# to Level of all Lunar Assault Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|27491", - "text": "Allocates Heavy Buffer", - "type": "explicit" - }, - { - "id": "explicit.stat_3302775221", - "text": "+# maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|28267", - "text": "Allocates Desensitisation", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|230", - "text": "+# to Level of all Entangle Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_1283490138", - "text": "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|242", - "text": "+# to Level of all Barkskin Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|34473", - "text": "Allocates Spaghettification", - "type": "explicit" - }, - { - "id": "explicit.stat_2357996603", - "text": "#% increased Totem Duration", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56776", - "text": "Allocates Cooked", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|55193", - "text": "Allocates Subterfuge Mask", - "type": "explicit" - }, - { - "id": "explicit.stat_468694293", - "text": "Conquered Small Passive Skills also grant #% increased Evasion Rating", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|3985", - "text": "Allocates Forces of Nature", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|7", - "text": "Pain Attunement", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|58183", - "text": "Allocates Blood Tearing", - "type": "explicit" - }, - { - "id": "explicit.stat_970480050", - "text": "Conquered Small Passive Skills also grant #% increased Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|9", - "text": "Eldritch Battery", - "type": "explicit" - }, - { - "id": "explicit.stat_1972661424", - "text": "#% more Life Flask Recovery", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|3", - "text": "Unwavering Stance", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|222", - "text": "+# to Level of all Rampage Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|58016", - "text": "Allocates All Natural", - "type": "explicit" - }, - { - "id": "explicit.stat_2260055669", - "text": "Freezes Enemies that are on Full Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|46197", - "text": "Allocates Careful Assassin", - "type": "explicit" - }, - { - "id": "explicit.stat_2475870935", - "text": "Conquered Small Passive Skills also grant #% increased Stun Threshold", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|60034", - "text": "Allocates Falcon Dive", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|28044", - "text": "Allocates Coming Calamity", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56265", - "text": "Allocates Throatseeker", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17340", - "text": "Allocates Adrenaline Rush", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|46060", - "text": "Allocates Voracious", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|244", - "text": "+# to Level of all Living Bomb Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|40990", - "text": "Allocates Exposed to the Storm", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|39881", - "text": "Allocates Staggering Palm", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43088", - "text": "Allocates Agonising Calamity", - "type": "explicit" - }, - { - "id": "explicit.stat_3831171903|21", - "text": "Iron Reflexes", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|44566", - "text": "Allocates Lightning Rod", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|5728", - "text": "Allocates Ancient Aegis", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|1546", - "text": "Allocates Spiral into Depression", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|31172", - "text": "Allocates Falcon Technique", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|50062", - "text": "Allocates Barrier of Venarius", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|29514", - "text": "Allocates Cluster Bombs", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9020", - "text": "Allocates Giantslayer", - "type": "explicit" - }, - { - "id": "explicit.stat_2639983772", - "text": "#% increased Totem Damage per Curse on you", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|52392", - "text": "Allocates Singular Purpose", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|44756", - "text": "Allocates Marked Agility", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|59208", - "text": "Allocates Frantic Fighter", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32353", - "text": "Allocates Swift Claw", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|45632", - "text": "Allocates Mind Eraser", - "type": "explicit" - }, - { - "id": "explicit.stat_448592698|232", - "text": "+# to Level of all Cross Slash Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|30874", - "text": "Sacrifice up to 10 Greater Regal Orbs to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|52618", - "text": "Allocates Boon of the Beast", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|6229", - "text": "Allocates Push the Advantage", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|5009", - "text": "Allocates Seeing Stars", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56493", - "text": "Allocates Agile Succession", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|116", - "text": "Allocates Insightfulness", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35560", - "text": "Allocates At your Command", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|45013", - "text": "Allocates Finishing Blows", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|50795", - "text": "Allocates Careful Aim", - "type": "explicit" - }, - { - "id": "explicit.stat_2462683918", - "text": "#% increased Attack Damage while not on Low Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|46499", - "text": "Allocates Guts", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43423", - "text": "Allocates Emboldened Avatar", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|16618", - "text": "Allocates Jack of all Trades", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|22864", - "text": "Allocates Tainted Strike", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|41753", - "text": "Allocates Evocational Practitioner", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|28963", - "text": "Allocates Chakra of Rhythm", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|36085", - "text": "Allocates Serrated Edges", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38053", - "text": "Allocates Deafening Cries", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|25482", - "text": "Allocates Beef", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|13724", - "text": "Allocates Deadly Force", - "type": "explicit" - }, - { - "id": "explicit.stat_2122183138", - "text": "# Mana gained when you Block", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|33216", - "text": "Allocates Deep Wounds", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|59303", - "text": "Allocates Lucky Rabbit Foot", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|57190", - "text": "Allocates Doomsayer", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|51981", - "text": "Sacrifice up to 3 Perfect Regal Orbs to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|8084", - "text": "Sacrifice up to 10 Greater Exalted Orbs to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4985", - "text": "Allocates Flip the Script", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|30408", - "text": "Allocates Efficient Contraptions", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|19955", - "text": "Allocates Endless Blizzard", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43082", - "text": "Allocates Acceleration", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|57204", - "text": "Allocates Critical Exploit", - "type": "explicit" - }, - { - "id": "explicit.stat_4007938693", - "text": "Triggers Level # Manifest Dancing Dervishes on Rampage", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|13407", - "text": "Allocates Heartbreaking", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2394", - "text": "Allocates Blade Flurry", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|60404", - "text": "Allocates Perfect Opportunity", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51707", - "text": "Allocates Enhanced Reflexes", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|60138", - "text": "Allocates Stylebender", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|21380", - "text": "Allocates Preemptive Strike", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17854", - "text": "Allocates Escape Velocity", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|37872", - "text": "Allocates Presence Present", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|24655", - "text": "Allocates Breath of Fire", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|44330", - "text": "Allocates Coated Arms", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|16816", - "text": "Allocates Pinpoint Shot", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17955", - "text": "Allocates Careful Consideration", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|25513", - "text": "Allocates Overwhelm", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|55149", - "text": "Allocates Pure Chaos", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|42106", - "text": "Sacrifice up to 5 Greater Chaos Orbs to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|20289", - "text": "Allocates Frozen Claw", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|23939", - "text": "Allocates Glazed Flesh", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17548", - "text": "Allocates Moment of Truth", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|23221", - "text": "Allocates Trick Shot", - "type": "explicit" - }, - { - "id": "explicit.stat_1949833742", - "text": "#% increased Daze Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|41811", - "text": "Allocates Shatter Palm", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|24630", - "text": "Allocates Fulmination", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56999", - "text": "Allocates Locked On", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10998", - "text": "Allocates Strong Chin", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|61338", - "text": "Allocates Breath of Lightning", - "type": "explicit" - }, - { - "id": "explicit.stat_1414945937", - "text": "Manifested Dancing Dervishes die when Rampage ends", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|30341", - "text": "Allocates Master Fletching", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|55308", - "text": "Allocates Sling Shots", - "type": "explicit" - }, - { - "id": "explicit.stat_2889807051", - "text": "Melee Hits count as Rampage Kills\nRampage", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|47560", - "text": "Allocates Multi Shot", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|20677", - "text": "Allocates For the Jugular", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2138", - "text": "Allocates Spiral into Insanity", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48006", - "text": "Allocates Devastation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42177", - "text": "Allocates Blurred Motion", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10772", - "text": "Allocates Bloodthirsty", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|19236", - "text": "Allocates Projectile Bulwark", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10398", - "text": "Allocates Sudden Escalation", - "type": "explicit" - }, - { - "id": "explicit.stat_1394184789", - "text": "Remove Bleeding when you use a Life Flask", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|15083", - "text": "Allocates Power Conduction", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|5703", - "text": "Allocates Echoing Thunder", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|65204", - "text": "Allocates Overflowing Power", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48581", - "text": "Allocates Exploit the Elements", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|11526", - "text": "Allocates Sniper", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38537", - "text": "Allocates Heartstopping", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|54814", - "text": "Allocates Profane Commander", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|19337", - "text": "Allocates Precision Salvo", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|19044", - "text": "Allocates Arcane Intensity", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7777", - "text": "Allocates Breaking Point", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|62310", - "text": "Allocates Incendiary", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|40345", - "text": "Allocates Master of Hexes", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42077", - "text": "Allocates Essence Infusion", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|65265", - "text": "Allocates Swift Interruption", - "type": "explicit" - }, - { - "id": "explicit.stat_398335579", - "text": "Cannot be used while Manifested", - "type": "explicit" - }, - { - "id": "explicit.stat_1132041585", - "text": "Virtuous", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35966", - "text": "Allocates Heart Tissue", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|55180", - "text": "Allocates Relentless Fallen", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|52191", - "text": "Allocates Event Horizon", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|64119", - "text": "Allocates Rapid Reload", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32071", - "text": "Allocates Primal Growth", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51820", - "text": "Allocates Ancestral Conduits", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|372", - "text": "Allocates Heatproof", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|27176", - "text": "Allocates The Power Within", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8810", - "text": "Allocates Multitasking", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56453", - "text": "Allocates Killer Instinct", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|54911", - "text": "Allocates Firestarter", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|61601", - "text": "Allocates True Strike", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|5802", - "text": "Allocates Stand and Deliver", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|45599", - "text": "Allocates Lay Siege", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9227", - "text": "Allocates Focused Thrust", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32507", - "text": "Allocates Cut to the Bone", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|22811", - "text": "Allocates The Wild Cat", - "type": "explicit" - }, - { - "id": "explicit.stat_1753977518", - "text": "#% of Thorns Damage Leeched as Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|59720", - "text": "Allocates Beastial Skin", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|15644", - "text": "Allocates Shedding Skin", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|24753", - "text": "Allocates Determined Precision", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|41905", - "text": "Allocates Gravedigger", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|63759", - "text": "Allocates Stacking Toxins", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38459", - "text": "Allocates Disorientation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|19715", - "text": "Allocates Cremation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51871", - "text": "Allocates Immortal Thirst", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|44299", - "text": "Allocates Enhanced Barrier", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|57379", - "text": "Allocates In Your Face", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51394", - "text": "Allocates Unimpeded", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|44952", - "text": "Allocates Made to Last", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9472", - "text": "Allocates Catapult", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8827", - "text": "Allocates Fast Metabolism", - "type": "explicit" - }, - { - "id": "explicit.stat_3841138199", - "text": "#% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|39369", - "text": "Allocates Struck Through", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|65243", - "text": "Allocates Enveloping Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4534", - "text": "Allocates Piercing Shot", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|64443", - "text": "Allocates Impact Force", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|19125", - "text": "Allocates Potent Incantation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42032", - "text": "Allocates Escalating Mayhem", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|39050", - "text": "Allocates Exploit", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|29372", - "text": "Allocates Sudden Infuriation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|3215", - "text": "Allocates Melding", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|57471", - "text": "Allocates Hunker Down", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|18505", - "text": "Allocates Crushing Verdict", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|31433", - "text": "Allocates Catalysis", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|30523", - "text": "Allocates Dead can Dance", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|6178", - "text": "Allocates Power Shots", - "type": "explicit" - }, - { - "id": "explicit.stat_267210597", - "text": "Area has #% increased chance to contain a Summoning Circle", - "type": "explicit" - }, - { - "id": "explicit.stat_267210597", - "text": "#% increased chance of Summoning Circles", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35564", - "text": "Allocates Turn the Clock Back", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32951", - "text": "Allocates Preservation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|12337", - "text": "Allocates Flash Storm", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9968", - "text": "Allocates Feel the Earth", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|62609", - "text": "Allocates Ancestral Unity", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17029", - "text": "Allocates Blade Catcher", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8273", - "text": "Allocates Endless Circuit", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|23427", - "text": "Allocates Chilled to the Bone", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38111", - "text": "Allocates Pliable Flesh", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|54805", - "text": "Allocates Hindered Capabilities", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|27761", - "text": "Allocates Counterstancing", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|36808", - "text": "Allocates Spiked Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|23738", - "text": "Allocates Madness in the Bones", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32664", - "text": "Allocates Chakra of Breathing", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|22967", - "text": "Allocates Vigilance", - "type": "explicit" - }, - { - "id": "explicit.stat_2535713562", - "text": "Recover #% of maximum Life per Poison affecting Enemies you Kill", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2511", - "text": "Allocates Sundering", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|21206", - "text": "Allocates Explosive Impact", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|49984", - "text": "Allocates Spellblade", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38614", - "text": "Allocates Psychic Fragmentation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|49618", - "text": "Allocates Deadly Flourish", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|49661", - "text": "Allocates Perfectly Placed Knife", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|31129", - "text": "Allocates Lifelong Friend", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|14294", - "text": "Allocates Sacrificial Blood", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|5284", - "text": "Allocates Shredding Force", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51867", - "text": "Allocates Finality", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|40399", - "text": "Allocates Energise", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|49088", - "text": "Allocates Splintering Force", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|21164", - "text": "Allocates Fleshcrafting", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|26356", - "text": "Allocates Primed to Explode", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|21349", - "text": "Allocates The Quick Fox", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|25711", - "text": "Allocates Thrill of Battle", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17664", - "text": "Allocates Decisive Retreat", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|18086", - "text": "Allocates Breath of Ice", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7338", - "text": "Allocates Abasement", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35849", - "text": "Allocates Thickened Arteries", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8531", - "text": "Allocates Leaping Ambush", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|39347", - "text": "Allocates Breaking Blows", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10500", - "text": "Allocates Dazing Blocks", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|29527", - "text": "Allocates First Approach", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35739", - "text": "Allocates Crushing Judgement", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|20916", - "text": "Allocates Blinding Strike", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|55131", - "text": "Allocates Light on your Feet", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|47316", - "text": "Allocates Goring", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|46972", - "text": "Allocates Arcane Mixtures", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42714", - "text": "Allocates Thousand Cuts", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|34324", - "text": "Allocates Spectral Ward", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53941", - "text": "Allocates Shimmering", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51934", - "text": "Allocates Invocated Efficiency", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|3567", - "text": "Allocates Raw Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_933768533", - "text": "#% increased Global Armour, Evasion and Energy Shield per Socket filled", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|45713", - "text": "Allocates Savouring", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|55060", - "text": "Allocates Shrapnel", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|27687", - "text": "Allocates Greatest Defence", - "type": "explicit" - }, - { - "id": "explicit.stat_2886108529", - "text": "Damage over Time cannot bypass your Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|336", - "text": "Allocates Storm Swell", - "type": "explicit" - }, - { - "id": "explicit.stat_2408276841", - "text": "#% increased Energy Shield Recharge Rate per 4 Strength", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|3894", - "text": "Allocates Eldritch Will", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|15829", - "text": "Allocates Siphon", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7604", - "text": "Allocates Rapid Strike", - "type": "explicit" - }, - { - "id": "explicit.stat_3762913035", - "text": "Unstable Breaches spawn an additional Rare Monster when Stabilised", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8831", - "text": "Allocates Tempered Mind", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17260", - "text": "Allocates Piercing Claw", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|61354", - "text": "Allocates Infernal Limit", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2486", - "text": "Allocates Stars Aligned", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|47635", - "text": "Allocates Overload", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17825", - "text": "Allocates Tactical Retreat", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4031", - "text": "Allocates Icebreaker", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35876", - "text": "Allocates Admonisher", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|41580", - "text": "Allocates Maiming Strike", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10499", - "text": "Allocates Necromantic Ward", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|63074", - "text": "Allocates Dark Entries", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4661", - "text": "Allocates Inspiring Leader", - "type": "explicit" - }, - { - "id": "explicit.stat_2104359366", - "text": "Maximum Energy Shield cannot be Converted", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|61703", - "text": "Allocates Sharpened Claw", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|13738", - "text": "Allocates Lightning Quick", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|50392", - "text": "Allocates Brute Strength", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|3492", - "text": "Allocates Void", - "type": "explicit" - }, - { - "id": "explicit.stat_1079292660", - "text": "#% increased Energy Shield Recharge Rate if you've Blocked Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7651", - "text": "Allocates Pierce the Heart", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|63830", - "text": "Allocates Marked for Sickness", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|15374", - "text": "Allocates Hale Heart", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8483", - "text": "Allocates Ruin", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32976", - "text": "Allocates Gem Enthusiast", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|23227", - "text": "Allocates Initiative", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|16256", - "text": "Allocates Ether Flow", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|52684", - "text": "Allocates Eroding Chains", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48524", - "text": "Allocates Blood Transfusion", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|34300", - "text": "Allocates Conservative Casting", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|65256", - "text": "Allocates Widespread Coverage", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|33922", - "text": "Allocates Stripped Defences", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|59214", - "text": "Allocates Fated End", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4716", - "text": "Allocates Afterimage", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|37806", - "text": "Allocates Branching Bolts", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43090", - "text": "Allocates Electrotherapy", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|25362", - "text": "Allocates Chakra of Impact", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|54990", - "text": "Allocates Bloodletting", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10423", - "text": "Allocates Exposed to the Inferno", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|25971", - "text": "Allocates Tenfold Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|19442", - "text": "Allocates Prolonged Assault", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|1104", - "text": "Allocates Lust for Power", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10265", - "text": "Allocates Javelin", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|3698", - "text": "Allocates Spike Pit", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|11838", - "text": "Allocates Dreamcatcher", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|12611", - "text": "Allocates Harness the Elements", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43944", - "text": "Allocates Instability", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|20008", - "text": "Allocates Unleash Fire", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|12906", - "text": "Allocates Sitting Duck", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|58096", - "text": "Allocates Lasting Incantations", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53150", - "text": "Allocates Sharp Sight", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9908", - "text": "Allocates Price of Freedom", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|47270", - "text": "Allocates Inescapable Cold", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|49150", - "text": "Allocates Precise Invocations", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|11366", - "text": "Allocates Volcanic Skin", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|55568", - "text": "Allocates Forthcoming", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|63585", - "text": "Allocates Thunderstruck", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|62803", - "text": "Allocates Woodland Aspect", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|34316", - "text": "Allocates One with the River", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|54937", - "text": "Allocates Vengeful Fury", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2021", - "text": "Allocates Wellspring", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|15986", - "text": "Allocates Building Toxins", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|13895", - "text": "Allocates Precise Point", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|34543", - "text": "Allocates The Frenzied Bear", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2863", - "text": "Allocates Perpetual Freeze", - "type": "explicit" - }, - { - "id": "explicit.stat_1617268696", - "text": "Burning Enemies you kill have a #% chance to Explode, dealing a\ntenth of their maximum Life as Fire Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43939", - "text": "Allocates Melting Flames", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53294", - "text": "Allocates Burn Away", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8881", - "text": "Allocates Unforgiving", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38398", - "text": "Allocates Apocalypse", - "type": "explicit" - }, - { - "id": "explicit.stat_1176947534", - "text": "Undead Minions have #% reduced Reservation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|54998", - "text": "Allocates Protraction", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32932", - "text": "Allocates Ichlotl's Inferno", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|63037", - "text": "Allocates Sigil of Fire", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48565", - "text": "Allocates Bringer of Order", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|934", - "text": "Allocates Natural Immunity", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|54031", - "text": "Allocates The Great Boar", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|59938", - "text": "Allocates Against the Elements", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|23940", - "text": "Allocates Fortified Aegis", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|50673", - "text": "Allocates Avoiding Deflection", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17254", - "text": "Allocates Spell Haste", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4238", - "text": "Allocates Versatile Arms", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|55708", - "text": "Allocates Electric Amplification", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8904", - "text": "Allocates Death from Afar", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38969", - "text": "Allocates Finesse", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|36623", - "text": "Allocates Convalescence", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42981", - "text": "Allocates Cruel Methods", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9226", - "text": "Allocates Mental Perseverance", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|20511", - "text": "Allocates Cremating Cries", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|40166", - "text": "Allocates Deep Trance", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|36341", - "text": "Allocates Cull the Hordes", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9652", - "text": "Allocates Mending Deflection", - "type": "explicit" - }, - { - "id": "explicit.stat_1546604934", - "text": "Gain #% of Evasion Rating as extra Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|30456", - "text": "Allocates High Alert", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|18308", - "text": "Allocates Bleeding Out", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10873", - "text": "Allocates Bestial Rage", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|59589", - "text": "Allocates Heavy Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48103", - "text": "Allocates Forcewave", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|60692", - "text": "Allocates Echoing Flames", - "type": "explicit" - }, - { - "id": "explicit.stat_1010703902", - "text": "The Effect of Blind on you is reversed", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|47514", - "text": "Allocates Dizzying Hits", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|63541", - "text": "Allocates Brush Off", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|47418", - "text": "Allocates Warding Potions", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|55847", - "text": "Allocates Ice Walls", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4673", - "text": "Allocates Hulking Smash", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38972", - "text": "Allocates Restless Dead", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42354", - "text": "Allocates Blinding Flash", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42036", - "text": "Allocates Off-Balancing Retort", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|16466", - "text": "Allocates Mental Alacrity", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|39567", - "text": "Allocates Ingenuity", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42245", - "text": "Allocates Efficient Inscriptions", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|44005", - "text": "Allocates Casting Cascade", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|44293", - "text": "Allocates Hastening Barrier", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|5335", - "text": "Allocates Shimmering Mirage", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|31175", - "text": "Allocates Grip of Evil", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|20397", - "text": "Allocates Authority", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7163", - "text": "Allocates Stimulants", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35792", - "text": "Allocates Blood of Rage", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38888", - "text": "Allocates Unerring Impact", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|34531", - "text": "Allocates Hallowed", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4709", - "text": "Allocates Near Sighted", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4627", - "text": "Allocates Climate Change", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17330", - "text": "Allocates Perforation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48418", - "text": "Allocates Hefty Unit", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48014", - "text": "Allocates Honourless", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|26291", - "text": "Allocates Electrifying Nature", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|31373", - "text": "Allocates Vocal Empowerment", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48617", - "text": "Allocates Hunter", - "type": "explicit" - }, - { - "id": "explicit.stat_4104094246", - "text": "Unstable Breaches take an additional second to collapse after timer is filled", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8607", - "text": "Allocates Lavianga's Brew", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|59541", - "text": "Allocates Necrotised Flesh", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|46696", - "text": "Allocates Impair", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2113", - "text": "Allocates Martial Artistry", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|33240", - "text": "Allocates Lord of Horrors", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|55", - "text": "Allocates Fast Acting Toxins", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2134", - "text": "Allocates Toxic Tolerance", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7341", - "text": "Allocates Ignore Pain", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|30562", - "text": "Allocates Inner Faith", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|5663", - "text": "Allocates Endurance", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48658", - "text": "Allocates Shattering", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51213", - "text": "Allocates Wasting", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4959", - "text": "Allocates Heavy Frost", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10681", - "text": "Allocates Defensive Stance", - "type": "explicit" - }, - { - "id": "explicit.stat_120969026", - "text": "#% increased Magnitude of Poison you inflict while Poisoned", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32543", - "text": "Allocates Unhindered", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2999", - "text": "Allocates Final Barrage", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|57047", - "text": "Allocates Polymathy", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|41394", - "text": "Allocates Invigorating Archon", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56806", - "text": "Allocates Swift Blocking", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|40270", - "text": "Allocates Frenetic", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10602", - "text": "Allocates Reaving", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|18959", - "text": "Allocates Ruinic Helm", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|62887", - "text": "Allocates Living Death", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10612", - "text": "Allocates Embodiment of Frost", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|34308", - "text": "Allocates Personal Touch", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10727", - "text": "Allocates Emboldening Casts", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|40325", - "text": "Allocates Resolution", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32151", - "text": "Allocates Crystalline Resistance", - "type": "explicit" - }, - { - "id": "explicit.stat_2201614328", - "text": "Regenerate #% of maximum Life per second if you have been Hit Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|61112", - "text": "Allocates Roll and Strike", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|40073", - "text": "Allocates Drenched", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|46296", - "text": "Allocates Short Shot", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|11392", - "text": "Allocates Molten Being", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|52257", - "text": "Allocates Conductive Embrace", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|11774", - "text": "Allocates The Spring Hare", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|27626", - "text": "Allocates Touch the Arcane", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|11578", - "text": "Allocates Spreading Shocks", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|64050", - "text": "Allocates Marathon Runner", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|13542", - "text": "Allocates Loose Flesh", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17372", - "text": "Allocates Reaching Strike", - "type": "explicit" - }, - { - "id": "explicit.stat_2163764037", - "text": "Gain Physical Thorns damage equal to #% - #% of maximum Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9421", - "text": "Allocates Snowpiercer", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|58397", - "text": "Allocates Proficiency", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|30392", - "text": "Allocates Succour", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|47782", - "text": "Allocates Steady Footing", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17600", - "text": "Allocates Thirsting Ally", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|18419", - "text": "Allocates Ancestral Mending", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|1823", - "text": "Allocates Illuminated Crown", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53527", - "text": "Allocates Shattering Blow", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|31773", - "text": "Allocates Resurging Archon", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56997", - "text": "Allocates Heavy Contact", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|20414", - "text": "Allocates Reprisal", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|55835", - "text": "Allocates Exposed to the Cosmos", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|14211", - "text": "Allocates Shredding Contraptions", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2397", - "text": "Allocates Last Stand", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2843", - "text": "Allocates Tolerant Equipment", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42347", - "text": "Allocates Chakra of Sight", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|62185", - "text": "Allocates Rattled", - "type": "explicit" - }, - { - "id": "explicit.stat_1895552497", - "text": "Every 5 Rage also grants #% of Damage taken Recouped as Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1559935218", - "text": "Causes Daze buildup equal to #% of Damage dealt", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17229", - "text": "Allocates Silent Guardian", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|19156", - "text": "Allocates Immaterial", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2745", - "text": "Allocates The Noble Wolf", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|33978", - "text": "Allocates Unstoppable Barrier", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42959", - "text": "Allocates Low Tolerance", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|6655", - "text": "Allocates Aggravation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|24438", - "text": "Allocates Hardened Wood", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|16499", - "text": "Allocates Lingering Whispers", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|6544", - "text": "Allocates Burning Strikes", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43791", - "text": "Allocates Rallying Icon", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|23078", - "text": "Allocates Holy Protector", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|27009", - "text": "Allocates Lust for Sacrifice", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35918", - "text": "Allocates One For All", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35028", - "text": "Allocates In the Thick of It", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|3688", - "text": "Allocates Dynamism", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|14945", - "text": "Allocates Growing Swarm", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|63031", - "text": "Allocates Glorious Anticipation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|22626", - "text": "Allocates Irreparable", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32721", - "text": "Allocates Distracted Target", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|26331", - "text": "Allocates Harsh Winter", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|50687", - "text": "Allocates Coursing Energy", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|27388", - "text": "Allocates Aspiring Genius", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43139", - "text": "Allocates Stormbreaker", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|45488", - "text": "Allocates Cross Strike", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|62034", - "text": "Allocates Prism Guard", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|5227", - "text": "Allocates Escape Strategy", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51606", - "text": "Allocates Freedom of Movement", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7847", - "text": "Allocates The Fabled Stag", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|58426", - "text": "Allocates Pocket Sand", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42065", - "text": "Allocates Surging Currents", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|31189", - "text": "Allocates Unexpected Finesse", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|21537", - "text": "Allocates Fervour", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|36333", - "text": "Allocates Explosive Empowerment", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56893", - "text": "Allocates Thicket Warding", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51602", - "text": "Allocates Unsight", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35369", - "text": "Allocates Investing Energies", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|27875", - "text": "Allocates General Electric", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17882", - "text": "Allocates Volatile Grenades", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53935", - "text": "Allocates Briny Carapace", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|36931", - "text": "Allocates Concussive Attack", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|65160", - "text": "Allocates Titanic", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|31364", - "text": "Allocates Primal Protection", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|50485", - "text": "Allocates Zone of Control", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|19249", - "text": "Allocates Supportive Ancestors", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|40985", - "text": "Allocates Empowering Remnants", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4331", - "text": "Allocates Guided Hand", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|15617", - "text": "Allocates Heavy Drinker", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53823", - "text": "Allocates Towering Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|34908", - "text": "Allocates Staunch Deflection", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|34553", - "text": "Allocates Emboldening Lead", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|44373", - "text": "Allocates Wither Away", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56063", - "text": "Allocates Lingering Horror", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42045", - "text": "Allocates Archon of the Blizzard", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51169", - "text": "Allocates Soul Bloom", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|54148", - "text": "Allocates Smoke Inhalation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48699", - "text": "Allocates Frostwalker", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|37514", - "text": "Allocates Whirling Assault", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38342", - "text": "Allocates Stupefy", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2335", - "text": "Allocates Turn the Clock Forward", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|26070", - "text": "Allocates Bolstering Yell", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4579", - "text": "Allocates Unbothering Cold", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|30748", - "text": "Allocates Controlled Chaos", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10295", - "text": "Allocates Overzealous", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|26518", - "text": "Allocates Cold Nature", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|41512", - "text": "Allocates Heavy Weaponry", - "type": "explicit" - }, - { - "id": "explicit.stat_451403019", - "text": "Life Recovery other than Flasks cannot Recover Life to above Low Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4931", - "text": "Allocates Dependable Ward", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|21453", - "text": "Allocates Breakage", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|50912", - "text": "Allocates Imbibed Power", - "type": "explicit" - }, - { - "id": "explicit.stat_315717203", - "text": "Remnants you create affect Allies in your Presence as well as you when collected", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|1352", - "text": "Allocates Unbending", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|29800", - "text": "Allocates Shocking Limit", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32354", - "text": "Allocates Defiance", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|24087", - "text": "Allocates Everlasting Infusions", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|15606", - "text": "Allocates Thrill of the Fight", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|15114", - "text": "Allocates Boundless Growth", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|13980", - "text": "Allocates Split the Earth", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|40803", - "text": "Allocates Sigil of Ice", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|18496", - "text": "Allocates Lasting Trauma", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|14934", - "text": "Allocates Spiral into Mania", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|16626", - "text": "Allocates Impact Area", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|22817", - "text": "Allocates Inevitable Rupture", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|14761", - "text": "Allocates Warlord Leader", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|34541", - "text": "Allocates Energising Deflection", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|5594", - "text": "Allocates Decrepifying Curse", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43584", - "text": "Allocates Flare", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|60764", - "text": "Allocates Feathered Fletching", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43396", - "text": "Allocates Ancestral Reach", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|12822", - "text": "Allocates Adaptable Assault", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|52348", - "text": "Allocates Carved Earth", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|23736", - "text": "Allocates Spray and Pray", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|50253", - "text": "Allocates Aftershocks", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|31826", - "text": "Allocates Long Distance Relationship", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35855", - "text": "Allocates Fortifying Blood", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|14383", - "text": "Allocates Suffusion", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|64543", - "text": "Allocates Unbound Forces", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|26479", - "text": "Allocates Steadfast Resolve", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|19722", - "text": "Allocates Thin Ice", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8791", - "text": "Allocates Sturdy Ally", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|64415", - "text": "Allocates Shattering Daze", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42302", - "text": "Allocates Split Shot", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|61741", - "text": "Allocates Lasting Toxins", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|58939", - "text": "Allocates Dispatch Foes", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|58714", - "text": "Allocates Grenadier", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|40480", - "text": "Allocates Harmonic Generator", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|33099", - "text": "Allocates Hunter's Talisman", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|13708", - "text": "Allocates Curved Weapon", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|16150", - "text": "Allocates Inspiring Ally", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35581", - "text": "Allocates Near at Hand", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48240", - "text": "Allocates Quick Recovery", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|46384", - "text": "Allocates Wide Barrier", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32301", - "text": "Allocates Frazzled", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|49550", - "text": "Allocates Prolonged Fury", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|58215", - "text": "Allocates Sanguimantic Rituals", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17150", - "text": "Allocates General's Bindings", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7668", - "text": "Allocates Internal Bleeding", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43677", - "text": "Allocates Crippling Toxins", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|20251", - "text": "Allocates Splitting Ground", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|62455", - "text": "Allocates Bannerman", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|25619", - "text": "Allocates Sand in the Eyes", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|12964", - "text": "Allocates Lone Warrior", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|30720", - "text": "Allocates Entropic Incarnation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35324", - "text": "Allocates Burnout", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|65193", - "text": "Allocates Viciousness", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|23630", - "text": "Allocates Self Immolation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4547", - "text": "Allocates Unnatural Resilience", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53853", - "text": "Allocates Backup Plan", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4544", - "text": "Allocates The Ancient Serpent", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|28329", - "text": "Allocates Pressure Points", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32858", - "text": "Allocates Dread Engineer's Concoction", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|40213", - "text": "Allocates Taste for Blood", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|33059", - "text": "Allocates Back in Action", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|59070", - "text": "Allocates Enduring Archon", - "type": "explicit" - }, - { - "id": "explicit.stat_3481736410", - "text": "#% increased Area of Effect if you've Killed Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2645", - "text": "Allocates Skullcrusher", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|61444", - "text": "Allocates Wasting Casts", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|61921", - "text": "Allocates Storm Surge", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|12750", - "text": "Allocates Vale Shelter", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|6514", - "text": "Allocates Cacophony", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|63739", - "text": "Allocates Vigorous Remnants", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|13823", - "text": "Allocates Controlling Magic", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|52180", - "text": "Allocates Trained Deflection", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53566", - "text": "Allocates Run and Gun", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|63579", - "text": "Allocates Momentum", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|55817", - "text": "Allocates Alchemical Oil", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51509", - "text": "Allocates Waters of Life", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43854", - "text": "Allocates All For One", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7275", - "text": "Allocates Electrocuting Exposure", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|21748", - "text": "Allocates Impending Doom", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|34340", - "text": "Allocates Mass Rejuvenation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|39083", - "text": "Allocates Blood Rush", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|28482", - "text": "Allocates Total Incineration", - "type": "explicit" - }, - { - "id": "explicit.stat_2103621252", - "text": "Eat a Soul when you Hit a Unique Enemy, no more than once every second", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|64851", - "text": "Allocates Flashy Parrying", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|750", - "text": "Allocates Tribal Fury", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|11376", - "text": "Allocates Necrotic Touch", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|64240", - "text": "Allocates Battle Fever", - "type": "explicit" - }, - { - "id": "explicit.stat_325171970", - "text": "#% increased Attack Speed while missing Runic Ward", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9736", - "text": "Allocates Insulated Treads", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53030", - "text": "Allocates Immolation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|27434", - "text": "Allocates Archon of the Storm", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42390", - "text": "Allocates Overheating Blow", - "type": "explicit" - }, - { - "id": "explicit.stat_2319832234", - "text": "#% of Damage Taken Recouped as Life, Mana and Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35477", - "text": "Allocates Far Sighted", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|65016", - "text": "Allocates Intense Flames", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|11826", - "text": "Allocates Heavy Ammunition", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|40687", - "text": "Allocates Lead by Example", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|5332", - "text": "Allocates Crystallised Immunities", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|13457", - "text": "Allocates Shadow Dancing", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|52199", - "text": "Allocates Overexposure", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8660", - "text": "Allocates Reverberation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|47363", - "text": "Allocates Colossal Weapon", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|26339", - "text": "Allocates Ancestral Artifice", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|24483", - "text": "Allocates Direct Approach", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|37742", - "text": "Allocates Manifold Method", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8554", - "text": "Allocates Burning Nature", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|16940", - "text": "Allocates Arcane Nature", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|33887", - "text": "Allocates Full Salvo", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53367", - "text": "Allocates Symbol of Defiance", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|61104", - "text": "Allocates Staggering Wounds", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|50884", - "text": "Allocates Primal Sundering", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|24120", - "text": "Allocates Mental Toughness", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|52971", - "text": "Allocates The Soul Meridian", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|45244", - "text": "Allocates Refills", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|34425", - "text": "Allocates Precise Volatility", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17762", - "text": "Allocates Vengeance", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|36976", - "text": "Allocates Marked for Death", - "type": "explicit" - }, - { - "id": "explicit.stat_1338406168", - "text": "Maximum amount of Guard is based on maximum Energy Shield instead", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|5642", - "text": "Allocates Behemoth", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2575", - "text": "Allocates Ancestral Alacrity", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|12661", - "text": "Allocates Asceticism", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|27513", - "text": "Allocates Material Solidification", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|29899", - "text": "Allocates Finish Them", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32799", - "text": "Allocates Captivating Companionship", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|14777", - "text": "Allocates Bravado", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|33093", - "text": "Allocates Effervescent", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9444", - "text": "Allocates One with the Storm", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|24766", - "text": "Allocates Paranoia", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38628", - "text": "Allocates Escalating Toxins", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|41033", - "text": "Allocates Utmost Offering", - "type": "explicit" - }, - { - "id": "explicit.stat_3923947492", - "text": "Hits against you have #% increased Critical Hit Chance while you are Chilled", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|23764", - "text": "Allocates Alternating Current", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|40117", - "text": "Allocates Spiked Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|36630", - "text": "Allocates Incision", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|57805", - "text": "Allocates Clear Space", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4447", - "text": "Allocates Pin their Motivation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10315", - "text": "Allocates Easy Going", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|46683", - "text": "Allocates Inherited Strength ", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|18397", - "text": "Allocates Savoured Blood", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|5580", - "text": "Allocates Watchtowers", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35809", - "text": "Allocates Reinvigoration", - "type": "explicit" - }, - { - "id": "explicit.stat_679019978", - "text": "#% of Damage is taken from Mana before Life while not on Low Mana", - "type": "explicit" - }, - { - "id": "explicit.stat_3423006863", - "text": "Arrows Pierce an additional Target", - "type": "explicit" - }, - { - "id": "explicit.stat_3982604001", - "text": "Skills have #% longer Perfect Timing window during effect", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9896", - "text": "Allocates Heartstopping Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|54640", - "text": "Allocates Constricting", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38532", - "text": "Allocates Thirst for Power", - "type": "explicit" - }, - { - "id": "explicit.stat_174664100", - "text": "Minions have #% increased Movement Speed", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2344", - "text": "Allocates Dimensional Weakspot", - "type": "explicit" - }, - { - "id": "explicit.stat_1243721142", - "text": "Arrows Return if they have Pierced a target which had Fully Broken Armour", - "type": "explicit" - }, - { - "id": "explicit.stat_2036307261", - "text": "Hits with this weapon have # to # Added Physical Damage per 1% Block Chance", - "type": "explicit" - }, - { - "id": "explicit.stat_2531622767", - "text": "#% increased Block chance per 100 total Item Armour on Equipped Armour Items", - "type": "explicit" - }, - { - "id": "explicit.stat_1580426064", - "text": "Cannot use Life Flasks\nNon-Unique Life Flasks apply their Effects constantly\nRecovery from Life Flasks cannot be Instant\nRecovery from your Life Flasks cannot be applied to anything other than you", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|59433", - "text": "Allocates Thirst for Endurance", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|1502", - "text": "Allocates Draiocht Cleansing", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|28408", - "text": "Allocates Invigorating Hate", - "type": "explicit" - }, - { - "id": "explicit.stat_1544773869", - "text": "#% increased Cooldown Recovery Rate for Grenade Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_2777675751", - "text": "Using a Mana Flask grants Guard equal to #% of Flask's recovery amount for 4 seconds", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|31724", - "text": "Allocates Iron Slippers", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|12245", - "text": "Allocates Arsonist", - "type": "explicit" - }, - { - "id": "explicit.stat_1016759424", - "text": "Bleeding you inflict deals Fire Damage instead of Physical Damage", - "type": "explicit" - }, - { - "id": "explicit.stat_1221641885", - "text": "Fire Damage also Contributes to Bleeding Magnitude", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|63400", - "text": "Allocates Chakra of Elements", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|16142", - "text": "Allocates Deep Freeze", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|33542", - "text": "Allocates Quick Fingers", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9328", - "text": "Allocates Spirit of the Bear", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|45874", - "text": "Allocates Proliferating Weeds", - "type": "explicit" - }, - { - "id": "explicit.stat_3742865955", - "text": "Minions deal #% increased Damage with Command Skills", - "type": "explicit" - }, - { - "id": "explicit.stat_3471443885", - "text": "#% of Damage taken from Deflected Hits Recouped as Life", - "type": "explicit" - }, - { - "id": "explicit.stat_1312381104", - "text": "Regenerate # Life per second for every 10 Intelligence", - "type": "explicit" - }, - { - "id": "explicit.stat_1315418254", - "text": "Zealot's Oath", - "type": "explicit" - }, - { - "id": "explicit.stat_758226825", - "text": "Your maximum Energy Shield is equal to #% of your Strength", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35417", - "text": "Allocates Wyvern's Breath", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42070", - "text": "Allocates Saqawal's Guidance", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|60619", - "text": "Allocates Scales of the Wyvern", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|11886", - "text": "Allocates Mauling Stuns", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|55375", - "text": "Allocates Licking Wounds", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|58198", - "text": "Allocates Well of Power", - "type": "explicit" - }, - { - "id": "explicit.stat_1955786041", - "text": "Has # to # Physical damage, # to # per Boss's Face Broken", - "type": "explicit" - }, - { - "id": "explicit.stat_3273962791", - "text": "# metres to Melee Strike Range while Unarmed", - "type": "explicit" - }, - { - "id": "explicit.stat_2783157569", - "text": "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2972244965", - "text": "#% increased Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently", - "type": "explicit" - }, - { - "id": "explicit.stat_3170380905", - "text": "Gain 1% of damage as Fire damage per #% Chance to Block", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|52764", - "text": "Allocates Mystical Rage", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|41935", - "text": "Allocates Hide of the Bear", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|39884", - "text": "Allocates Searing Heat", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|14602", - "text": "Allocates Specialised Shots", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56714", - "text": "Allocates Swift Flight", - "type": "explicit" - }, - { - "id": "explicit.stat_1867725690", - "text": "Hits with this Weapon have #% chance to Trigger Molten Shower per 25 Strength", - "type": "explicit" - }, - { - "id": "explicit.stat_4056809290", - "text": "Cannot inflict Elemental Ailments", - "type": "explicit" - }, - { - "id": "explicit.stat_4186798932", - "text": "# to # Added Attack Fire Damage per 25 Strength", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42660", - "text": "Allocates Commanding Rage", - "type": "explicit" - }, - { - "id": "explicit.stat_3336230913", - "text": "# to maximum Runic Ward", - "type": "explicit" - }, - { - "id": "explicit.stat_2424163939", - "text": "Physical Damage of Enemies Hitting you is Lucky", - "type": "explicit" - }, - { - "id": "explicit.stat_3351912431", - "text": "Convert All Armour to Evasion Rating", - "type": "explicit" - }, - { - "id": "explicit.stat_3452269808", - "text": "#% chance to avoid Projectiles", - "type": "explicit" - }, - { - "id": "explicit.stat_4123841473", - "text": "Lightning Skills Chain # times", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17303", - "text": "Allocates Utility Ordnance", - "type": "explicit" - }, - { - "id": "explicit.stat_2224139044", - "text": "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted\nEvery second Strike Skill you use while Shapeshifted is Ancestrally Boosted", - "type": "explicit" - }, - { - "id": "explicit.stat_2734787892", - "text": "Breach Hives have an additional wave of Hiveborn Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_2653231923", - "text": "#% increased Mana Cost Efficiency of Spells", - "type": "explicit" - }, - { - "id": "explicit.stat_2392260628", - "text": "#% increased Runic Ward Regeneration Rate", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|63255", - "text": "Allocates Savagery", - "type": "explicit" - }, - { - "id": "explicit.stat_664606484", - "text": "Abyssal Monsters have #% increased Effectiveness for each closed Pit, up to 100%", - "type": "explicit" - }, - { - "id": "explicit.stat_1485480327", - "text": "Minions have #% increased Immobilisation buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53187", - "text": "Allocates Warlord Berserker", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7395", - "text": "Allocates Retaliation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|24240", - "text": "Allocates Time Manipulation", - "type": "explicit" - }, - { - "id": "explicit.stat_1539671749", - "text": "Defend with #% of Armour while you have Energy Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_4128965096", - "text": "Gain 1 Explosive Rhythm every # time you use a Grenade Skill\nRemove all Explosive Rhythm on reaching 10 to gain Explosive Fervour for 10 Seconds", - "type": "explicit" - }, - { - "id": "explicit.stat_4274637468", - "text": "Convert #% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|31745", - "text": "Allocates Lockdown", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|26563", - "text": "Allocates Bone Chains", - "type": "explicit" - }, - { - "id": "explicit.stat_310246444", - "text": "#% increased Damage while Leeching", - "type": "explicit" - }, - { - "id": "explicit.stat_1028592286", - "text": "#% chance to Chain an additional time", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38570", - "text": "Allocates Demolitionist", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|37302", - "text": "Allocates Kept at Bay", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51891", - "text": "Allocates Lucidity", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|44765", - "text": "Allocates Distracting Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35031", - "text": "Allocates Chakra of Life", - "type": "explicit" - }, - { - "id": "explicit.stat_4273473110", - "text": "#% increased maximum Runic Ward", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|26447", - "text": "Allocates Refocus", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|52229", - "text": "Allocates Secrets of the Orb", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48215", - "text": "Allocates Headshot", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56767", - "text": "Allocates Electrifying Daze", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|47088", - "text": "Allocates Sic 'Em", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|28613", - "text": "Allocates Roaring Cries", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|60269", - "text": "Allocates Roil", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51105", - "text": "Allocates Spirit Bond", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8397", - "text": "Allocates Empowering Remains", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|20388", - "text": "Allocates Regenerative Flesh", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|37543", - "text": "Allocates Full Recovery", - "type": "explicit" - }, - { - "id": "explicit.stat_1675120891", - "text": "Chance to Deflect is Lucky while on Low Life", - "type": "explicit" - }, - { - "id": "explicit.stat_3628041050", - "text": "Enemies in your Presence gain 1 Gruelling Madness each second", - "type": "explicit" - }, - { - "id": "explicit.stat_632698321", - "text": "#% increased chance Vaal Beacons summon additional Monsters", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|3188", - "text": "Allocates Revenge", - "type": "explicit" - }, - { - "id": "explicit.stat_469006068", - "text": "Gain Guard equal to #% of missing Energy Shield for 4 seconds when you Dodge Roll", - "type": "explicit" - }, - { - "id": "explicit.stat_504054855", - "text": "#% faster Dodge Roll", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|45612", - "text": "Allocates Defensive Reflexes", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4810", - "text": "Allocates Sanguine Tolerance", - "type": "explicit" - }, - { - "id": "explicit.stat_2408983956", - "text": "#% increased Critical Damage Bonus while Shocked", - "type": "explicit" - }, - { - "id": "explicit.stat_2626360934", - "text": "Wind Skills which can be boosted by Elemental Ground Surfaces count\nas being boosted by Chilled Ground", - "type": "explicit" - }, - { - "id": "explicit.stat_3441501978", - "text": "#% to Fire and Lightning Resistances", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|14343", - "text": "Allocates Deterioration", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9323", - "text": "Allocates Craving Slaughter", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|19644", - "text": "Allocates Left Hand of Darkness", - "type": "explicit" - }, - { - "id": "explicit.stat_2538411280", - "text": "Skills which Empower an Attack have #% chance to not count that Attack", - "type": "explicit" - }, - { - "id": "explicit.stat_275498888", - "text": "Maximum Quality is #%", - "type": "explicit" - }, - { - "id": "explicit.stat_3832076641", - "text": "Used when you release a skill with Perfect Timing", - "type": "explicit" - }, - { - "id": "explicit.stat_3926910174", - "text": "# to # added Physical Thorns damage per Runic Plate", - "type": "explicit" - }, - { - "id": "explicit.stat_1237409891", - "text": "Cannot be Used manually", - "type": "explicit" - }, - { - "id": "explicit.stat_3422093970", - "text": "#% chance for Remnants you pick up to count as picking up an additional Remnant", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48974", - "text": "Allocates Altered Brain Chemistry", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|61404", - "text": "Allocates Equilibrium", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|15443", - "text": "Allocates Endured Suffering", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7302", - "text": "Allocates Echoing Pulse", - "type": "explicit" - }, - { - "id": "explicit.stat_1014398896", - "text": "#% increased Spell Damage during any Flask Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|41972", - "text": "Allocates Glaciation", - "type": "explicit" - }, - { - "id": "explicit.stat_145581225", - "text": "#% increased Cast Speed during any Flask Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53185", - "text": "Allocates The Winter Owl", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|37408", - "text": "Allocates Staunching", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7782", - "text": "Allocates Rupturing Pins", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|46024", - "text": "Allocates Sigil of Lightning", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|6133", - "text": "Allocates Core of the Guardian", - "type": "explicit" - }, - { - "id": "explicit.stat_1493485657", - "text": "Spells have #% increased Cooldown Recovery Rate", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48734", - "text": "Allocates The Howling Primate", - "type": "explicit" - }, - { - "id": "explicit.stat_953593695", - "text": "Minions have #% increased Magnitude of Damaging Ailments", - "type": "explicit" - }, - { - "id": "explicit.stat_2482970488", - "text": "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_986616727", - "text": "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", - "type": "explicit" - }, - { - "id": "explicit.stat_4015438188", - "text": "#% increased Damage with Hits against targets in your Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_589361270", - "text": "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|18157", - "text": "Allocates Tempered Defences", - "type": "explicit" - }, - { - "id": "explicit.stat_2039822488", - "text": "#% to Maximum Quality", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|46224", - "text": "Allocates Arcane Alchemy", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|1603", - "text": "Allocates Storm Driven", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|64650", - "text": "Allocates Wary Dodging", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|28542", - "text": "Allocates The Molten One's Gift", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9290", - "text": "Allocates Rusted Pins", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|63451", - "text": "Allocates Cranial Impact", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|29306", - "text": "Allocates Chakra of Thought", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|57110", - "text": "Allocates Infused Flesh", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|3921", - "text": "Allocates Fate Finding", - "type": "explicit" - }, - { - "id": "explicit.stat_1147913864", - "text": "Lose #% Life per second while you have no Runic Ward during Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_4100842845", - "text": "Mana Recovery from Flasks can Overflow maximum Mana during Effect", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8896", - "text": "Allocates Agile Sprinter", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|47420", - "text": "Allocates Expendable Army", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10029", - "text": "Allocates Repulsion", - "type": "explicit" - }, - { - "id": "explicit.stat_1058934731", - "text": "Temporary Minion Skills have # to Limit of Minions summoned", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8782", - "text": "Allocates Empowering Infusions", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48774", - "text": "Allocates Taut Flesh", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|25211", - "text": "Allocates Waning Hindrances", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|6304", - "text": "Allocates Stand Ground", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|15030", - "text": "Allocates Consistent Intake", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|27108", - "text": "Allocates Mass Hysteria", - "type": "explicit" - }, - { - "id": "explicit.stat_3774577097", - "text": "You are Blind", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51446", - "text": "Allocates Leather Bound Gauntlets", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|29762", - "text": "Allocates Guttural Roar", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|33585", - "text": "Allocates Unspoken Bond", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|63431", - "text": "Allocates Leeching Toxins", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53131", - "text": "Allocates Tukohama's Brew", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56488", - "text": "Allocates Glancing Deflection", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|14324", - "text": "Allocates Arcane Blossom", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|31326", - "text": "Allocates Slow Burn", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|46365", - "text": "Allocates Gigantic Following", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51868", - "text": "Allocates Molten Carapace", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42760", - "text": "Allocates Chakra of Stability", - "type": "explicit" - }, - { - "id": "explicit.stat_2080373320", - "text": "Enemies in your Presence are Blinded", - "type": "explicit" - }, - { - "id": "explicit.stat_3783473032", - "text": "The Bodach haunts your Presence", - "type": "explicit" - }, - { - "id": "explicit.stat_905072977", - "text": "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53607", - "text": "Allocates Fortified Location", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|57785", - "text": "Allocates Trained Turrets", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|60083", - "text": "Allocates Pin and Run", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38479", - "text": "Allocates Close Confines", - "type": "explicit" - }, - { - "id": "explicit.stat_2840930496", - "text": "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9187", - "text": "Allocates Escalation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|4295", - "text": "Allocates Adverse Growth", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|36507", - "text": "Allocates Vile Mending", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|29288", - "text": "Allocates Deadly Invocations", - "type": "explicit" - }, - { - "id": "explicit.stat_1827379101", - "text": "Enemies in your Presence have additional Power equal to their Gruelling Madness", - "type": "explicit" - }, - { - "id": "explicit.stat_2526112819", - "text": "Hits with this Weapon inflict # Gruelling Madness", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|22532", - "text": "Allocates Fearful Paralysis", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|45370", - "text": "Allocates The Raging Ox", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|23244", - "text": "Allocates Bounty Hunter", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7062", - "text": "Allocates Reusable Ammunition", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|24491", - "text": "Allocates Invocated Echoes", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|39990", - "text": "Allocates Chronomancy", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42103", - "text": "Allocates Enduring Deflection", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|5257", - "text": "Allocates Echoing Frost", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|1169", - "text": "Allocates Urgent Call", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|52245", - "text": "Allocates Distant Dreamer", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|16790", - "text": "Allocates Efficient Casting", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|46692", - "text": "Allocates Efficient Alchemy", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|37276", - "text": "Allocates Battle Trance", - "type": "explicit" - }, - { - "id": "explicit.stat_4108426433", - "text": "#% of Fire damage taken as Cold damage", - "type": "explicit" - }, - { - "id": "explicit.stat_3198708642", - "text": "#% of Lightning damage taken as Cold damage", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|20032", - "text": "Allocates Erraticism", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|20416", - "text": "Allocates Grit", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|13515", - "text": "Allocates Stormwalker", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|44917", - "text": "Allocates Self Mortification", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|27950", - "text": "Allocates Polished Iron", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|65023", - "text": "Allocates Impenetrable Shell", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|18485", - "text": "Allocates Unstable Bond", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|60464", - "text": "Allocates Fan the Flames", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|36364", - "text": "Allocates Electrocution", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53683", - "text": "Allocates Efficient Loading", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38895", - "text": "Allocates Crystal Elixir", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38965", - "text": "Allocates Infused Limits", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|51129", - "text": "Allocates Pile On", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|40292", - "text": "Allocates Nimble Strength", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|46124", - "text": "Allocates Arcane Remnants", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|33229", - "text": "Allocates Haemorrhaging Cuts", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|25620", - "text": "Allocates Meat Recycling", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|41620", - "text": "Allocates Bear's Roar", - "type": "explicit" - }, - { - "id": "explicit.stat_1416292992", - "text": "Has # Charm Slot", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|52803", - "text": "Allocates Hale Traveller", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|15991", - "text": "Allocates Embodiment of Lightning", - "type": "explicit" - }, - { - "id": "explicit.stat_3200877707", - "text": "Skills have a #% chance to not consume Glory", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|61026", - "text": "Allocates Crystalline Flesh", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|1087", - "text": "Allocates Shockwaves", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|12412", - "text": "Allocates Temporal Mastery", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|65468", - "text": "Allocates Repeating Explosives", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|13482", - "text": "Allocates Punctured Lung", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|38329", - "text": "Allocates Biting Frost", - "type": "explicit" - }, - { - "id": "explicit.stat_1314787770", - "text": "Map Boss has +#% chance to drop a Waystone of the current tier or higher", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53921", - "text": "Allocates Unbreaking", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48649", - "text": "Allocates Insulating Hide", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|25753", - "text": "Allocates Blazing Arms", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8916", - "text": "Allocates Bashing Beast", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|37266", - "text": "Allocates Nourishing Ally", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|28441", - "text": "Allocates Frantic Swings", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|45777", - "text": "Allocates Hidden Barb", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56388", - "text": "Allocates Reinforced Rallying", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|50023", - "text": "Allocates Invigorating Grandeur", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56616", - "text": "Allocates Desperate Times", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|44974", - "text": "Allocates Hail", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|33730", - "text": "Allocates Focused Channel", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|6774", - "text": "Sacrifice up to 3 Perfect Exalted Orbs to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_2625554454", - "text": "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|62963", - "text": "Allocates Flamewalker", - "type": "explicit" - }, - { - "id": "explicit.stat_1157523820", - "text": "#% chance for Slam Skills to cause an additional Aftershock", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7542", - "text": "Allocates Encompassing Domain", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|13524", - "text": "Allocates Everlasting Glory", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43829", - "text": "Allocates Advanced Munitions", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|57617", - "text": "Allocates Shifted Strikes", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|45329", - "text": "Allocates Delayed Danger", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|50715", - "text": "Allocates Frozen Limit", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|31925", - "text": "Allocates Warding Fetish", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|1506", - "text": "Allocates Remnant Attraction", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|64525", - "text": "Allocates Easy Target", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43633", - "text": "Allocates Energising Archon", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|26104", - "text": "Allocates Spirit of the Wyvern", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|29881", - "text": "Allocates Surging Beast", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|94", - "text": "Allocates Efficient Killing", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56237", - "text": "Allocates Enhancing Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_4098286334", - "text": "Area has #% chance to contain an Essence", - "type": "explicit" - }, - { - "id": "explicit.stat_4098286334", - "text": "Your Maps have #% chance to contain an Essence", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|23362", - "text": "Allocates Slippery Ice", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32655", - "text": "Allocates Hunting Companion", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|45177", - "text": "Allocates Strike True", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|10774", - "text": "Allocates Unyielding", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|261", - "text": "Allocates Toxic Sludge", - "type": "explicit" - }, - { - "id": "explicit.stat_3005701891", - "text": "Inflict Cold Exposure on Hit", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|37244", - "text": "Allocates Shield Expertise", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|19546", - "text": "Allocates Favourable Odds", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|44753", - "text": "Allocates One With Flame", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|28892", - "text": "Allocates Primal Rage", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7128", - "text": "Allocates Dangerous Blossom", - "type": "explicit" - }, - { - "id": "explicit.stat_2880019685", - "text": "#% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|21784", - "text": "Allocates Pack Encouragement", - "type": "explicit" - }, - { - "id": "explicit.stat_3076483222|56025", - "text": "Sacrifice up to 3 Perfect Chaos Orbs to receive double on Trial completion", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|64659", - "text": "Allocates Lasting Boons", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9928", - "text": "Allocates Embracing Frost", - "type": "explicit" - }, - { - "id": "explicit.stat_2971398565", - "text": "Divine Flight", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|58817", - "text": "Allocates Artillery Strike", - "type": "explicit" - }, - { - "id": "explicit.stat_279110104", - "text": "Withered does not expire on Enemies Ignited by you", - "type": "explicit" - }, - { - "id": "explicit.stat_1910297038", - "text": "Withered you inflict also increases Fire Damage taken", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|49214", - "text": "Allocates Blood of the Wolf", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|12998", - "text": "Allocates Warm the Heart", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|24062", - "text": "Allocates Immortal Infamy", - "type": "explicit" - }, - { - "id": "explicit.stat_2388936716", - "text": "Area has #% chance to contain a Strongbox", - "type": "explicit" - }, - { - "id": "explicit.stat_2388936716", - "text": "Your Maps have #% chance to contain a Strongbox", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|60992", - "text": "Allocates Nurturing Guardian", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|46182", - "text": "Allocates Intense Dose", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|20558", - "text": "Allocates Among the Hordes", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|42813", - "text": "Allocates Tides of Change", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|47441", - "text": "Allocates Stigmata", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|338", - "text": "Allocates Invocated Limit", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|5410", - "text": "Allocates Channelled Heritage", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|30395", - "text": "Allocates Howling Beast", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|17725", - "text": "Allocates Bonded Precision", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|60273", - "text": "Allocates Hindering Obstacles", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|32448", - "text": "Allocates Shockproof", - "type": "explicit" - }, - { - "id": "explicit.stat_3874491706", - "text": "All Mage's Legacies have #% increased effect per duplicate Mage's Legacy you have", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56988", - "text": "Allocates Electric Blood", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|53265", - "text": "Allocates Nature's Bite", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|8957", - "text": "Allocates Right Hand of Darkness", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56112", - "text": "Allocates Extinguishing Exhalation", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56016", - "text": "Allocates Passthrough Rounds", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|55450", - "text": "Allocates Rallying Form", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|57921", - "text": "Allocates Wolf's Howl", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|49740", - "text": "Allocates Shattered Crystal", - "type": "explicit" - }, - { - "id": "explicit.stat_2241560081", - "text": "#% increased Attack Speed per 25 Dexterity", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|48925", - "text": "Allocates Blessing of the Moon", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|7449", - "text": "Allocates Splinters", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|24764", - "text": "Allocates Infusing Power", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|3348", - "text": "Allocates Spirit of the Wolf", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|5686", - "text": "Allocates Chillproof", - "type": "explicit" - }, - { - "id": "explicit.stat_915546383", - "text": "Gain #% of Physical Damage as Extra Damage of a random Element", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|2814", - "text": "Allocates Engineered Blaze", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43711", - "text": "Allocates Thornhide", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|45751", - "text": "Allocates Frightening Shield", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|56860", - "text": "Allocates Resolute Reprisal", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|35618", - "text": "Allocates Cold Coat", - "type": "explicit" - }, - { - "id": "explicit.stat_2571125745", - "text": "Area has #% chance to contain a Shrine", - "type": "explicit" - }, - { - "id": "explicit.stat_2571125745", - "text": "Your Maps have #% chance to contain a Shrine", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|59387", - "text": "Allocates Infusion of Power", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|43250", - "text": "Allocates Adaptive Skin", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|36100", - "text": "Allocates Molten Claw", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|30546", - "text": "Allocates Electrified Claw", - "type": "explicit" - }, - { - "id": "explicit.stat_2954116742|9009", - "text": "Allocates Return to Nature", - "type": "explicit" - } - ] - }, - { - "id": "implicit", - "label": "Implicit", - "entries": [ - { - "id": "implicit.stat_3917489142", - "text": "#% increased Rarity of Items found", - "type": "implicit" - }, - { - "id": "implicit.stat_275498888", - "text": "Maximum Quality is #%", - "type": "implicit" - }, - { - "id": "implicit.stat_4041853756", - "text": "Adds Irradiated to a Map \n# use remaining", - "type": "implicit" - }, - { - "id": "implicit.stat_3981240776", - "text": "# to Spirit", - "type": "implicit" - }, - { - "id": "implicit.stat_2923486259", - "text": "#% to Chaos Resistance", - "type": "implicit" - }, - { - "id": "implicit.stat_789117908", - "text": "#% increased Mana Regeneration Rate", - "type": "implicit" - }, - { - "id": "implicit.stat_4220027924", - "text": "#% to Cold Resistance", - "type": "implicit" - }, - { - "id": "implicit.stat_2901986750", - "text": "#% to all Elemental Resistances", - "type": "implicit" - }, - { - "id": "implicit.stat_1671376347", - "text": "#% to Lightning Resistance", - "type": "implicit" - }, - { - "id": "implicit.stat_1379411836", - "text": "# to all Attributes", - "type": "implicit" - }, - { - "id": "implicit.stat_3372524247", - "text": "#% to Fire Resistance", - "type": "implicit" - }, - { - "id": "implicit.stat_3261801346", - "text": "# to Dexterity", - "type": "implicit" - }, - { - "id": "implicit.stat_3299347043", - "text": "# to maximum Life", - "type": "implicit" - }, - { - "id": "implicit.stat_3489782002", - "text": "# to maximum Energy Shield", - "type": "implicit" - }, - { - "id": "implicit.stat_328541901", - "text": "# to Intelligence", - "type": "implicit" - }, - { - "id": "implicit.stat_4080418644", - "text": "# to Strength", - "type": "implicit" - }, - { - "id": "implicit.stat_2219129443", - "text": "Adds an Otherworldy Breach to a Map \n# use remaining", - "type": "implicit" - }, - { - "id": "implicit.stat_2891184298", - "text": "#% increased Cast Speed", - "type": "implicit" - }, - { - "id": "implicit.stat_1050105434", - "text": "# to maximum Mana", - "type": "implicit" - }, - { - "id": "implicit.stat_3325883026", - "text": "# Life Regeneration per second", - "type": "implicit" - }, - { - "id": "implicit.stat_3032590688", - "text": "Adds # to # Physical Damage to Attacks", - "type": "implicit" - }, - { - "id": "implicit.stat_803737631", - "text": "# to Accuracy Rating", - "type": "implicit" - }, - { - "id": "implicit.stat_958696139", - "text": "Grants 1 additional Skill Slot", - "type": "implicit" - }, - { - "id": "implicit.stat_3376302538", - "text": "Empowers the Map Boss of a Map \n# use remaining", - "type": "implicit" - }, - { - "id": "implicit.stat_3879011313", - "text": "Adds a Mirror of Delirium to a Map \n# use remaining", - "type": "implicit" - }, - { - "id": "implicit.stat_2463230181", - "text": "#% Surpassing chance to fire an additional Arrow", - "type": "implicit" - }, - { - "id": "implicit.stat_680068163", - "text": "#% increased Stun Threshold", - "type": "implicit" - }, - { - "id": "implicit.stat_462041840", - "text": "#% of Flask Recovery applied Instantly", - "type": "implicit" - }, - { - "id": "implicit.stat_548198834", - "text": "#% increased Melee Strike Range with this weapon", - "type": "implicit" - }, - { - "id": "implicit.stat_821241191", - "text": "#% increased Life Recovery from Flasks", - "type": "implicit" - }, - { - "id": "implicit.stat_681332047", - "text": "#% increased Attack Speed", - "type": "implicit" - }, - { - "id": "implicit.stat_809229260", - "text": "# to Armour", - "type": "implicit" - }, - { - "id": "implicit.stat_1702195217", - "text": "#% to Block chance", - "type": "implicit" - }, - { - "id": "implicit.stat_1836676211", - "text": "#% increased Flask Charges gained", - "type": "implicit" - }, - { - "id": "implicit.stat_1980802737", - "text": "Grenade Skills Fire an additional Projectile", - "type": "implicit" - }, - { - "id": "implicit.stat_2222186378", - "text": "#% increased Mana Recovery from Flasks", - "type": "implicit" - }, - { - "id": "implicit.stat_2194114101", - "text": "#% increased Critical Hit Chance for Attacks", - "type": "implicit" - }, - { - "id": "implicit.stat_644456512", - "text": "#% reduced Flask Charges used", - "type": "implicit" - }, - { - "id": "implicit.stat_1714888636", - "text": "Adds a Kalguuran Expedition to a Map \n# use remaining", - "type": "implicit" - }, - { - "id": "implicit.stat_1782086450", - "text": "#% faster start of Energy Shield Recharge", - "type": "implicit" - }, - { - "id": "implicit.stat_731781020", - "text": "Flasks gain # charges per Second", - "type": "implicit" - }, - { - "id": "implicit.stat_1570770415", - "text": "#% reduced Charm Charges used", - "type": "implicit" - }, - { - "id": "implicit.stat_3585532255", - "text": "#% increased Charm Charges gained", - "type": "implicit" - }, - { - "id": "implicit.stat_1389754388", - "text": "#% increased Charm Effect Duration", - "type": "implicit" - }, - { - "id": "implicit.stat_1573130764", - "text": "Adds # to # Fire damage to Attacks", - "type": "implicit" - }, - { - "id": "implicit.stat_2250533757", - "text": "#% increased Movement Speed", - "type": "implicit" - }, - { - "id": "implicit.stat_924253255", - "text": "#% increased Slowing Potency of Debuffs on You", - "type": "implicit" - }, - { - "id": "implicit.stat_1541903247", - "text": "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", - "type": "implicit" - }, - { - "id": "implicit.stat_3166002380", - "text": "Adds Ritual Altars to a Map \n# use remaining", - "type": "implicit" - }, - { - "id": "implicit.stat_1207554355", - "text": "#% increased Arrow Speed", - "type": "implicit" - }, - { - "id": "implicit.stat_2321178454", - "text": "#% chance to Pierce an Enemy", - "type": "implicit" - }, - { - "id": "implicit.stat_2994271459", - "text": "Used when you take Cold damage from a Hit", - "type": "implicit" - }, - { - "id": "implicit.stat_1416292992", - "text": "Has # Charm Slot", - "type": "implicit" - }, - { - "id": "implicit.stat_1803308202", - "text": "#% increased Bolt Speed", - "type": "implicit" - }, - { - "id": "implicit.stat_1967051901", - "text": "Loads an additional bolt", - "type": "implicit" - }, - { - "id": "implicit.stat_3544800472", - "text": "#% increased Elemental Ailment Threshold", - "type": "implicit" - }, - { - "id": "implicit.stat_3854901951", - "text": "Used when you take Fire damage from a Hit", - "type": "implicit" - }, - { - "id": "implicit.stat_2016937536", - "text": "Used when you take Lightning damage from a Hit", - "type": "implicit" - }, - { - "id": "implicit.stat_1810482573", - "text": "Used when you become Stunned", - "type": "implicit" - }, - { - "id": "implicit.stat_3675300253", - "text": "Strikes deal Splash Damage", - "type": "implicit" - }, - { - "id": "implicit.stat_1028592286", - "text": "#% chance to Chain an additional time", - "type": "implicit" - }, - { - "id": "implicit.stat_836936635", - "text": "Regenerate #% of maximum Life per second", - "type": "implicit" - }, - { - "id": "implicit.stat_1691862754", - "text": "Used when you become Frozen", - "type": "implicit" - }, - { - "id": "implicit.stat_791928121", - "text": "Causes #% increased Stun Buildup", - "type": "implicit" - }, - { - "id": "implicit.stat_2933846633", - "text": "Dazes on Hit", - "type": "implicit" - }, - { - "id": "implicit.stat_1412682799", - "text": "Used when you become Poisoned", - "type": "implicit" - }, - { - "id": "implicit.stat_1978899297", - "text": "#% to all Maximum Elemental Resistances", - "type": "implicit" - }, - { - "id": "implicit.stat_3676540188", - "text": "Used when you start Bleeding", - "type": "implicit" - }, - { - "id": "implicit.stat_624954515", - "text": "#% increased Accuracy Rating", - "type": "implicit" - }, - { - "id": "implicit.stat_4010341289", - "text": "Used when you kill a Rare or Unique enemy", - "type": "implicit" - }, - { - "id": "implicit.stat_2778646494", - "text": "Used when you are affected by a Slow", - "type": "implicit" - }, - { - "id": "implicit.stat_585126960", - "text": "Used when you become Ignited", - "type": "implicit" - }, - { - "id": "implicit.stat_3699444296", - "text": "Used when you become Shocked", - "type": "implicit" - }, - { - "id": "implicit.stat_3954735777", - "text": "#% chance to Poison on Hit with Attacks", - "type": "implicit" - }, - { - "id": "implicit.stat_2797971005", - "text": "Gain # Life per Enemy Hit with Attacks", - "type": "implicit" - }, - { - "id": "implicit.stat_3398402065", - "text": "#% increased Projectile Range", - "type": "implicit" - }, - { - "id": "implicit.stat_2055966527", - "text": "Attacks have #% chance to cause Bleeding", - "type": "implicit" - }, - { - "id": "implicit.stat_2694482655", - "text": "#% to Critical Damage Bonus", - "type": "implicit" - }, - { - "id": "implicit.stat_239367161", - "text": "#% increased Stun Buildup", - "type": "implicit" - }, - { - "id": "implicit.stat_3310778564", - "text": "Used when you take Chaos damage from a Hit", - "type": "implicit" - }, - { - "id": "implicit.stat_1915989164", - "text": "Area contains #% increased number of Monster Markers", - "type": "implicit" - }, - { - "id": "implicit.stat_4219583418", - "text": "#% increased quantity of Artifacts dropped by Monsters", - "type": "implicit" - }, - { - "id": "implicit.stat_4219583418", - "text": "#% increased quantity of Artifacts dropped by Monsters in your Maps", - "type": "implicit" - }, - { - "id": "implicit.stat_1539368271", - "text": "#% increased Expedition Explosive Placement Range", - "type": "implicit" - }, - { - "id": "implicit.stat_1871805225", - "text": "Remnants have #% chance to have an additional Suffix Modifier", - "type": "implicit" - }, - { - "id": "implicit.stat_1871805225", - "text": "Remnants in your Maps have #% chance to have an additional Suffix Modifier", - "type": "implicit" - }, - { - "id": "implicit.stat_2991413918", - "text": "Area contains #% increased number of Remnants", - "type": "implicit" - }, - { - "id": "implicit.stat_718638445", - "text": "# Suffix Modifier allowed", - "type": "implicit" - }, - { - "id": "implicit.stat_1640965354", - "text": "Area contains #% increased number of Runic Monster Markers", - "type": "implicit" - }, - { - "id": "implicit.stat_1640965354", - "text": "#% increased number of Runic Monster Markers", - "type": "implicit" - }, - { - "id": "implicit.stat_3289828378", - "text": "#% increased Expedition Explosive Radius", - "type": "implicit" - }, - { - "id": "implicit.stat_3051490307", - "text": "#% increased number of Explosives", - "type": "implicit" - }, - { - "id": "implicit.stat_3051490307", - "text": "#% increased number of Expedition Explosives", - "type": "implicit" - }, - { - "id": "implicit.stat_4160330571", - "text": "Area contains # additional Chest Marker", - "type": "implicit" - }, - { - "id": "implicit.stat_4160330571", - "text": "Expedition encounters in your Maps contain # additional Chest Marker", - "type": "implicit" - }, - { - "id": "implicit.stat_2369421690", - "text": "Adds Abysses to a Map \n# use remaining", - "type": "implicit" - }, - { - "id": "implicit.stat_2646093132", - "text": "Inflict Abyssal Wasting on Hit", - "type": "implicit" - }, - { - "id": "implicit.stat_535217483", - "text": "#% increased Projectile Speed with this Weapon", - "type": "implicit" - }, - { - "id": "implicit.stat_3182714256", - "text": "# Prefix Modifier allowed", - "type": "implicit" - }, - { - "id": "implicit.stat_3239978999", - "text": "Excavated Chests have a #% chance to contain twice as many Items", - "type": "implicit" - }, - { - "id": "implicit.stat_2763429652", - "text": "#% chance to Maim on Hit", - "type": "implicit" - }, - { - "id": "implicit.stat_1181501418", - "text": "# to Maximum Rage", - "type": "implicit" - }, - { - "id": "implicit.stat_3362812763", - "text": "#% of Armour also applies to Elemental Damage", - "type": "implicit" - }, - { - "id": "implicit.stat_2968503605", - "text": "#% increased Flammability Magnitude", - "type": "implicit" - }, - { - "id": "implicit.stat_1503146834", - "text": "Crushes Enemies on Hit", - "type": "implicit" - }, - { - "id": "implicit.stat_2527686725", - "text": "#% increased Magnitude of Shock you inflict", - "type": "implicit" - }, - { - "id": "implicit.stat_458438597", - "text": "#% of Damage is taken from Mana before Life", - "type": "implicit" - }, - { - "id": "implicit.stat_2590797182", - "text": "#% increased Movement Speed Penalty from using Skills while moving", - "type": "implicit" - }, - { - "id": "implicit.stat_1589917703", - "text": "Minions deal #% increased Damage", - "type": "implicit" - }, - { - "id": "implicit.stat_1745952865", - "text": "#% reduced Elemental Ailment Duration on you", - "type": "implicit" - }, - { - "id": "implicit.stat_4126210832", - "text": "Always Hits", - "type": "implicit" - }, - { - "id": "implicit.stat_2251279027", - "text": "# to Level of all Corrupted Skill Gems", - "type": "implicit" - }, - { - "id": "implicit.stat_1444556985", - "text": "#% of Damage taken Recouped as Life", - "type": "implicit" - }, - { - "id": "implicit.stat_3828375170", - "text": "Bleeding you inflict deals Damage #% faster", - "type": "implicit" - }, - { - "id": "implicit.stat_1434716233", - "text": "Warcries Empower an additional Attack", - "type": "implicit" - }, - { - "id": "implicit.stat_3855016469", - "text": "Hits against you have #% reduced Critical Damage Bonus", - "type": "implicit" - }, - { - "id": "implicit.stat_3552135623", - "text": "Prevent #% of Damage from Deflected Hits", - "type": "implicit" - }, - { - "id": "implicit.stat_3035440454", - "text": "Adds Vaal Beacons to a Map \n# use remaining", - "type": "implicit" - }, - { - "id": "implicit.stat_4277795662", - "text": "#% to Cold and Lightning Resistances", - "type": "implicit" - }, - { - "id": "implicit.stat_4077843608", - "text": "Has 1 Socket", - "type": "implicit" - }, - { - "id": "implicit.stat_3885405204", - "text": "Bow Attacks fire # additional Arrows", - "type": "implicit" - }, - { - "id": "implicit.stat_1725749947", - "text": "Grants # Rage on Hit", - "type": "implicit" - }, - { - "id": "implicit.stat_1574531783", - "text": "Culling Strike (Local)", - "type": "implicit" - }, - { - "id": "implicit.stat_669069897", - "text": "Leeches #% of Physical Damage as Mana", - "type": "implicit" - }, - { - "id": "implicit.stat_3441501978", - "text": "#% to Fire and Lightning Resistances", - "type": "implicit" - }, - { - "id": "implicit.stat_1050883682", - "text": "Has no Accuracy Penalty from Range", - "type": "implicit" - }, - { - "id": "implicit.stat_1443060084", - "text": "#% reduced Enemy Stun Threshold", - "type": "implicit" - }, - { - "id": "implicit.stat_1559935218", - "text": "Causes Daze buildup equal to #% of Damage dealt", - "type": "implicit" - }, - { - "id": "implicit.stat_1879206848", - "text": "#% increased effect of Fully Broken Armour", - "type": "implicit" - }, - { - "id": "implicit.stat_1840985759", - "text": "#% increased Area of Effect for Attacks", - "type": "implicit" - }, - { - "id": "implicit.stat_1459321413", - "text": "#% increased Bleeding Duration", - "type": "implicit" - }, - { - "id": "implicit.stat_2039822488", - "text": "#% to Maximum Quality", - "type": "implicit" - }, - { - "id": "implicit.stat_2915988346", - "text": "#% to Fire and Cold Resistances", - "type": "implicit" - }, - { - "id": "implicit.stat_2339757871", - "text": "#% increased Energy Shield Recharge Rate", - "type": "implicit" - }, - { - "id": "implicit.stat_3166958180", - "text": "#% increased Magnitude of Bleeding you inflict", - "type": "implicit" - }, - { - "id": "implicit.stat_3663551379", - "text": "Cannot load or fire Ammunition", - "type": "implicit" - }, - { - "id": "implicit.stat_4270348114", - "text": "Breaks # Armour on Critical Hit", - "type": "implicit" - }, - { - "id": "implicit.stat_3695891184", - "text": "Gain # Life per enemy killed", - "type": "implicit" - }, - { - "id": "implicit.stat_1137147997", - "text": "Unblockable", - "type": "implicit" - }, - { - "id": "implicit.stat_3544050945", - "text": "#% of Spell Mana Cost Converted to Life Cost", - "type": "implicit" - }, - { - "id": "implicit.stat_1961849903", - "text": "Cannot use Projectile Attacks", - "type": "implicit" - }, - { - "id": "implicit.stat_1368271171", - "text": "Gain # Mana per enemy killed", - "type": "implicit" - }, - { - "id": "implicit.stat_1451444093", - "text": "Bifurcates Critical Hits", - "type": "implicit" - }, - { - "id": "implicit.stat_1519615863", - "text": "#% chance to cause Bleeding on Hit", - "type": "implicit" - }, - { - "id": "implicit.stat_3691641145", - "text": "#% increased Damage taken", - "type": "implicit" - } - ] - }, - { - "id": "fractured", - "label": "Fractured", - "entries": [ - { - "id": "fractured.stat_2891184298", - "text": "#% increased Cast Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_1754445556", - "text": "Adds # to # Lightning damage to Attacks", - "type": "fractured" - }, - { - "id": "fractured.stat_3917489142", - "text": "#% increased Rarity of Items found", - "type": "fractured" - }, - { - "id": "fractured.stat_518292764", - "text": "#% to Critical Hit Chance", - "type": "fractured" - }, - { - "id": "fractured.stat_3981240776", - "text": "# to Spirit", - "type": "fractured" - }, - { - "id": "fractured.stat_1050105434", - "text": "# to maximum Mana", - "type": "fractured" - }, - { - "id": "fractured.stat_1202301673", - "text": "# to Level of all Projectile Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_1509134228", - "text": "#% increased Physical Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_210067635", - "text": "#% increased Attack Speed (Local)", - "type": "fractured" - }, - { - "id": "fractured.stat_4052037485", - "text": "# to maximum Energy Shield (Local)", - "type": "fractured" - }, - { - "id": "fractured.stat_3299347043", - "text": "# to maximum Life", - "type": "fractured" - }, - { - "id": "fractured.stat_124131830", - "text": "# to Level of all Spell Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_1671376347", - "text": "#% to Lightning Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_4015621042", - "text": "#% increased Energy Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_3556824919", - "text": "#% increased Critical Damage Bonus", - "type": "fractured" - }, - { - "id": "fractured.stat_3372524247", - "text": "#% to Fire Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_4220027924", - "text": "#% to Cold Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_3032590688", - "text": "Adds # to # Physical Damage to Attacks", - "type": "fractured" - }, - { - "id": "fractured.stat_1940865751", - "text": "Adds # to # Physical Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2974417149", - "text": "#% increased Spell Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_3336890334", - "text": "Adds # to # Lightning Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2250533757", - "text": "#% increased Movement Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_2923486259", - "text": "#% to Chaos Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_587431675", - "text": "#% increased Critical Hit Chance", - "type": "fractured" - }, - { - "id": "fractured.stat_9187492", - "text": "# to Level of all Melee Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_1573130764", - "text": "Adds # to # Fire damage to Attacks", - "type": "fractured" - }, - { - "id": "fractured.stat_328541901", - "text": "# to Intelligence", - "type": "fractured" - }, - { - "id": "fractured.stat_2482852589", - "text": "#% increased maximum Energy Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_3261801346", - "text": "# to Dexterity", - "type": "fractured" - }, - { - "id": "fractured.stat_3891355829|2", - "text": "Upgrades Radius to Large", - "type": "fractured" - }, - { - "id": "fractured.stat_691932474", - "text": "# to Accuracy Rating (Local)", - "type": "fractured" - }, - { - "id": "fractured.stat_53045048", - "text": "# to Evasion Rating (Local)", - "type": "fractured" - }, - { - "id": "fractured.stat_4067062424", - "text": "Adds # to # Cold damage to Attacks", - "type": "fractured" - }, - { - "id": "fractured.stat_737908626", - "text": "#% increased Critical Hit Chance for Spells", - "type": "fractured" - }, - { - "id": "fractured.stat_3885405204", - "text": "Bow Attacks fire # additional Arrows", - "type": "fractured" - }, - { - "id": "fractured.stat_2901986750", - "text": "#% to all Elemental Resistances", - "type": "fractured" - }, - { - "id": "fractured.stat_2162097452", - "text": "# to Level of all Minion Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_1999113824", - "text": "#% increased Evasion and Energy Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_4080418644", - "text": "# to Strength", - "type": "fractured" - }, - { - "id": "fractured.stat_2081918629", - "text": "#% increased effect of Socketed Augment Items", - "type": "fractured" - }, - { - "id": "fractured.stat_387439868", - "text": "#% increased Elemental Damage with Attacks", - "type": "fractured" - }, - { - "id": "fractured.stat_789117908", - "text": "#% increased Mana Regeneration Rate", - "type": "fractured" - }, - { - "id": "fractured.stat_2231156303", - "text": "#% increased Lightning Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_681332047", - "text": "#% increased Attack Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_3325883026", - "text": "# Life Regeneration per second", - "type": "fractured" - }, - { - "id": "fractured.stat_3714003708", - "text": "#% increased Critical Damage Bonus for Attack Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_803737631", - "text": "# to Accuracy Rating", - "type": "fractured" - }, - { - "id": "fractured.stat_2466785537", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", - "type": "fractured" - }, - { - "id": "fractured.stat_3141070085", - "text": "#% increased Elemental Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_1545858329", - "text": "# to Level of all Lightning Spell Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_709508406", - "text": "Adds # to # Fire Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_1368271171", - "text": "Gain # Mana per enemy killed", - "type": "fractured" - }, - { - "id": "fractured.stat_3489782002", - "text": "# to maximum Energy Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_274716455", - "text": "#% increased Critical Spell Damage Bonus", - "type": "fractured" - }, - { - "id": "fractured.stat_2194114101", - "text": "#% increased Critical Hit Chance for Attacks", - "type": "fractured" - }, - { - "id": "fractured.stat_3695891184", - "text": "Gain # Life per enemy killed", - "type": "fractured" - }, - { - "id": "fractured.stat_2694482655", - "text": "#% to Critical Damage Bonus", - "type": "fractured" - }, - { - "id": "fractured.stat_1104825894", - "text": "#% faster Curse Activation", - "type": "fractured" - }, - { - "id": "fractured.stat_1037193709", - "text": "Adds # to # Cold Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_3962278098", - "text": "#% increased Fire Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_1379411836", - "text": "# to all Attributes", - "type": "fractured" - }, - { - "id": "fractured.stat_2106365538", - "text": "#% increased Evasion Rating", - "type": "fractured" - }, - { - "id": "fractured.stat_3639275092", - "text": "#% increased Attribute Requirements", - "type": "fractured" - }, - { - "id": "fractured.stat_124859000", - "text": "#% increased Evasion Rating (Local)", - "type": "fractured" - }, - { - "id": "fractured.stat_2359002191", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", - "type": "fractured" - }, - { - "id": "fractured.stat_3291658075", - "text": "#% increased Cold Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_3278136794", - "text": "Gain #% of Damage as Extra Lightning Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2505884597", - "text": "Gain #% of Damage as Extra Cold Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2866361420", - "text": "#% increased Armour", - "type": "fractured" - }, - { - "id": "fractured.stat_3033371881", - "text": "Gain Deflection Rating equal to #% of Evasion Rating", - "type": "fractured" - }, - { - "id": "fractured.stat_3035140377", - "text": "# to Level of all Attack Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_3984865854", - "text": "#% increased Spirit", - "type": "fractured" - }, - { - "id": "fractured.stat_3759663284", - "text": "#% increased Projectile Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_2144192055", - "text": "# to Evasion Rating", - "type": "fractured" - }, - { - "id": "fractured.stat_3015669065", - "text": "Gain #% of Damage as Extra Fire Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_915769802", - "text": "# to Stun Threshold", - "type": "fractured" - }, - { - "id": "fractured.stat_736967255", - "text": "#% increased Chaos Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_669069897", - "text": "Leeches #% of Physical Damage as Mana", - "type": "fractured" - }, - { - "id": "fractured.stat_2254480358", - "text": "# to Level of all Cold Spell Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_2077117738", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", - "type": "fractured" - }, - { - "id": "fractured.stat_55876295", - "text": "Leeches #% of Physical Damage as Life", - "type": "fractured" - }, - { - "id": "fractured.stat_4234573345", - "text": "#% increased Effect of Notable Passive Skills in Radius", - "type": "fractured" - }, - { - "id": "fractured.stat_1241625305", - "text": "#% increased Damage with Bow Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_1062208444", - "text": "#% increased Armour (Local)", - "type": "fractured" - }, - { - "id": "fractured.stat_1263695895", - "text": "#% increased Light Radius", - "type": "fractured" - }, - { - "id": "fractured.stat_3484657501", - "text": "# to Armour (Local)", - "type": "fractured" - }, - { - "id": "fractured.stat_1200678966", - "text": "#% increased bonuses gained from Equipped Quiver", - "type": "fractured" - }, - { - "id": "fractured.stat_2557965901", - "text": "Leech #% of Physical Attack Damage as Life", - "type": "fractured" - }, - { - "id": "fractured.stat_2748665614", - "text": "#% increased maximum Mana", - "type": "fractured" - }, - { - "id": "fractured.stat_2456523742", - "text": "#% increased Critical Damage Bonus with Spears", - "type": "fractured" - }, - { - "id": "fractured.stat_3865605585", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", - "type": "fractured" - }, - { - "id": "fractured.stat_707457662", - "text": "Leech #% of Physical Attack Damage as Mana", - "type": "fractured" - }, - { - "id": "fractured.stat_1352561456", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_1060572482", - "text": "#% increased Effect of Small Passive Skills in Radius", - "type": "fractured" - }, - { - "id": "fractured.stat_153777645", - "text": "#% increased Area of Effect of Curses", - "type": "fractured" - }, - { - "id": "fractured.stat_4226189338", - "text": "# to Level of all Chaos Spell Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_3321629045", - "text": "#% increased Armour and Energy Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_1589917703", - "text": "Minions deal #% increased Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_1798257884", - "text": "Allies in your Presence deal #% increased Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2339757871", - "text": "#% increased Energy Shield Recharge Rate", - "type": "fractured" - }, - { - "id": "fractured.stat_3091578504", - "text": "Minions have #% increased Attack and Cast Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_3362812763", - "text": "#% of Armour also applies to Elemental Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_1782086450", - "text": "#% faster start of Energy Shield Recharge", - "type": "fractured" - }, - { - "id": "fractured.stat_1881230714", - "text": "#% chance to gain Onslaught on Killing Hits with this Weapon", - "type": "fractured" - }, - { - "id": "fractured.stat_591105508", - "text": "# to Level of all Fire Spell Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_821021828", - "text": "Grants # Life per Enemy Hit", - "type": "fractured" - }, - { - "id": "fractured.stat_101878827", - "text": "#% increased Presence Area of Effect", - "type": "fractured" - }, - { - "id": "fractured.stat_983749596", - "text": "#% increased maximum Life", - "type": "fractured" - }, - { - "id": "fractured.stat_4180952808", - "text": "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", - "type": "fractured" - }, - { - "id": "fractured.stat_1444556985", - "text": "#% of Damage taken Recouped as Life", - "type": "fractured" - }, - { - "id": "fractured.stat_280731498", - "text": "#% increased Area of Effect", - "type": "fractured" - }, - { - "id": "fractured.stat_1854213750", - "text": "Minions have #% increased Critical Damage Bonus", - "type": "fractured" - }, - { - "id": "fractured.stat_440490623", - "text": "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", - "type": "fractured" - }, - { - "id": "fractured.stat_1967051901", - "text": "Loads an additional bolt", - "type": "fractured" - }, - { - "id": "fractured.stat_3665922113", - "text": "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_1600707273", - "text": "# to Level of all Physical Spell Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_1604736568", - "text": "Recover #% of maximum Mana on Kill (Jewel)", - "type": "fractured" - }, - { - "id": "fractured.stat_2843214518", - "text": "#% increased Attack Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_3669820740", - "text": "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", - "type": "fractured" - }, - { - "id": "fractured.stat_2451402625", - "text": "#% increased Armour and Evasion", - "type": "fractured" - }, - { - "id": "fractured.stat_1839076647", - "text": "#% increased Projectile Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_3891355829|1", - "text": "Upgrades Radius to Medium", - "type": "fractured" - }, - { - "id": "fractured.stat_2527686725", - "text": "#% increased Magnitude of Shock you inflict", - "type": "fractured" - }, - { - "id": "fractured.stat_472520716", - "text": "#% of Damage taken Recouped as Mana", - "type": "fractured" - }, - { - "id": "fractured.stat_791928121", - "text": "Causes #% increased Stun Buildup", - "type": "fractured" - }, - { - "id": "fractured.stat_3394832998", - "text": "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", - "type": "fractured" - }, - { - "id": "fractured.stat_3222402650", - "text": "Small Passive Skills in Radius also grant #% increased Elemental Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_748522257", - "text": "#% increased Stun Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_293638271", - "text": "#% increased chance to Shock", - "type": "fractured" - }, - { - "id": "fractured.stat_1653682082", - "text": "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_1574590649", - "text": "Allies in your Presence deal # to # added Attack Physical Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_138421180", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", - "type": "fractured" - }, - { - "id": "fractured.stat_491450213", - "text": "Minions have #% increased Critical Hit Chance", - "type": "fractured" - }, - { - "id": "fractured.stat_2849546516", - "text": "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", - "type": "fractured" - }, - { - "id": "fractured.stat_1303248024", - "text": "#% increased Magnitude of Ailments you inflict", - "type": "fractured" - }, - { - "id": "fractured.stat_1423639565", - "text": "Minions have #% to all Elemental Resistances", - "type": "fractured" - }, - { - "id": "fractured.stat_2463230181", - "text": "#% Surpassing chance to fire an additional Arrow", - "type": "fractured" - }, - { - "id": "fractured.stat_2704905000", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", - "type": "fractured" - }, - { - "id": "fractured.stat_3579898587", - "text": "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", - "type": "fractured" - }, - { - "id": "fractured.stat_844449513", - "text": "Notable Passive Skills in Radius also grant #% increased Movement Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_4092130601", - "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", - "type": "fractured" - }, - { - "id": "fractured.stat_1137305356", - "text": "Small Passive Skills in Radius also grant #% increased Spell Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2768835289", - "text": "#% increased Spell Physical Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2696027455", - "text": "#% increased Damage with Spears", - "type": "fractured" - }, - { - "id": "fractured.stat_4236566306", - "text": "Meta Skills gain #% increased Energy", - "type": "fractured" - }, - { - "id": "fractured.stat_1998951374", - "text": "Allies in your Presence have #% increased Attack Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_3417711605", - "text": "Damage Penetrates #% Cold Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_1321104829", - "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", - "type": "fractured" - }, - { - "id": "fractured.stat_4188894176", - "text": "#% increased Damage with Bows", - "type": "fractured" - }, - { - "id": "fractured.stat_455816363", - "text": "Small Passive Skills in Radius also grant #% increased Projectile Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_3759735052", - "text": "#% increased Attack Speed with Bows", - "type": "fractured" - }, - { - "id": "fractured.stat_770672621", - "text": "Minions have #% increased maximum Life", - "type": "fractured" - }, - { - "id": "fractured.stat_1022759479", - "text": "Notable Passive Skills in Radius also grant #% increased Cast Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_4019237939", - "text": "Gain #% of Damage as Extra Physical Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_3859848445", - "text": "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", - "type": "fractured" - }, - { - "id": "fractured.stat_2954360902", - "text": "Small Passive Skills in Radius also grant Minions deal #% increased Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2968503605", - "text": "#% increased Flammability Magnitude", - "type": "fractured" - }, - { - "id": "fractured.stat_3067892458", - "text": "Triggered Spells deal #% increased Spell Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2023107756", - "text": "Recover #% of maximum Life on Kill", - "type": "fractured" - }, - { - "id": "fractured.stat_2881298780", - "text": "# to # Physical Thorns damage", - "type": "fractured" - }, - { - "id": "fractured.stat_99927264", - "text": "#% reduced Shock duration on you", - "type": "fractured" - }, - { - "id": "fractured.stat_3850614073", - "text": "Allies in your Presence have #% to all Elemental Resistances", - "type": "fractured" - }, - { - "id": "fractured.stat_3391917254", - "text": "Notable Passive Skills in Radius also grant #% increased Area of Effect", - "type": "fractured" - }, - { - "id": "fractured.stat_289128254", - "text": "Allies in your Presence have #% increased Cast Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_2160282525", - "text": "#% reduced Freeze Duration on you", - "type": "fractured" - }, - { - "id": "fractured.stat_315791320", - "text": "Aura Skills have #% increased Magnitudes", - "type": "fractured" - }, - { - "id": "fractured.stat_2442527254", - "text": "Small Passive Skills in Radius also grant #% increased Cold Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_986397080", - "text": "#% reduced Ignite Duration on you", - "type": "fractured" - }, - { - "id": "fractured.stat_2321178454", - "text": "#% chance to Pierce an Enemy", - "type": "fractured" - }, - { - "id": "fractured.stat_3523867985", - "text": "#% increased Armour, Evasion and Energy Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_4010677958", - "text": "Allies in your Presence Regenerate # Life per second", - "type": "fractured" - }, - { - "id": "fractured.stat_1426522529", - "text": "Small Passive Skills in Radius also grant #% increased Attack Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_818778753", - "text": "Damage Penetrates #% Lightning Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_2768899959", - "text": "Small Passive Skills in Radius also grant #% increased Lightning Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_1165163804", - "text": "#% increased Attack Speed with Spears", - "type": "fractured" - }, - { - "id": "fractured.stat_624954515", - "text": "#% increased Accuracy Rating", - "type": "fractured" - }, - { - "id": "fractured.stat_2347036682", - "text": "Allies in your Presence deal # to # added Attack Cold Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_3174700878", - "text": "#% increased Energy Shield from Equipped Focus", - "type": "fractured" - }, - { - "id": "fractured.stat_473429811", - "text": "#% increased Freeze Buildup", - "type": "fractured" - }, - { - "id": "fractured.stat_2854751904", - "text": "Allies in your Presence deal # to # added Attack Lightning Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_1692879867", - "text": "#% increased Duration of Bleeding on You", - "type": "fractured" - }, - { - "id": "fractured.stat_849987426", - "text": "Allies in your Presence deal # to # added Attack Fire Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2481353198", - "text": "#% increased Block chance (Local)", - "type": "fractured" - }, - { - "id": "fractured.stat_1166140625", - "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", - "type": "fractured" - }, - { - "id": "fractured.stat_234296660", - "text": "Companions deal #% increased Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_1309799717", - "text": "Small Passive Skills in Radius also grant #% increased Chaos Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_3377888098", - "text": "#% increased Skill Effect Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_525523040", - "text": "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", - "type": "fractured" - }, - { - "id": "fractured.stat_2822644689", - "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_1896066427", - "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_2797971005", - "text": "Gain # Life per Enemy Hit with Attacks", - "type": "fractured" - }, - { - "id": "fractured.stat_3106718406", - "text": "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_3668351662", - "text": "#% increased Shock Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_394473632", - "text": "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", - "type": "fractured" - }, - { - "id": "fractured.stat_4032352472", - "text": "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", - "type": "fractured" - }, - { - "id": "fractured.stat_1852872083", - "text": "#% increased Damage with Hits against Rare and Unique Enemies", - "type": "fractured" - }, - { - "id": "fractured.stat_1874553720", - "text": "#% reduced Chill Duration on you", - "type": "fractured" - }, - { - "id": "fractured.stat_3057012405", - "text": "Allies in your Presence have #% increased Critical Damage Bonus", - "type": "fractured" - }, - { - "id": "fractured.stat_2809428780", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Spears", - "type": "fractured" - }, - { - "id": "fractured.stat_1177404658", - "text": "#% increased Global Armour, Evasion and Energy Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_2726713579", - "text": "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", - "type": "fractured" - }, - { - "id": "fractured.stat_1039268420", - "text": "Small Passive Skills in Radius also grant #% increased chance to Shock", - "type": "fractured" - }, - { - "id": "fractured.stat_3824372849", - "text": "#% increased Curse Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_1250712710", - "text": "Allies in your Presence have #% increased Critical Hit Chance", - "type": "fractured" - }, - { - "id": "fractured.stat_3301100256", - "text": "#% increased Poison Duration on you", - "type": "fractured" - }, - { - "id": "fractured.stat_427684353", - "text": "#% increased Damage with Crossbows", - "type": "fractured" - }, - { - "id": "fractured.stat_533892981", - "text": "Small Passive Skills in Radius also grant #% increased Accuracy Rating", - "type": "fractured" - }, - { - "id": "fractured.stat_1773308808", - "text": "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_945774314", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Bows", - "type": "fractured" - }, - { - "id": "fractured.stat_593241812", - "text": "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", - "type": "fractured" - }, - { - "id": "fractured.stat_1829102168", - "text": "#% increased Duration of Damaging Ailments on Enemies", - "type": "fractured" - }, - { - "id": "fractured.stat_335885735", - "text": "Bears the Mark of the Abyssal Lord", - "type": "fractured" - }, - { - "id": "fractured.stat_517664839", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", - "type": "fractured" - }, - { - "id": "fractured.stat_4045894391", - "text": "#% increased Damage with Quarterstaves", - "type": "fractured" - }, - { - "id": "fractured.stat_416040624", - "text": "Gain additional Stun Threshold equal to #% of maximum Energy Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_3771516363", - "text": "#% additional Physical Damage Reduction", - "type": "fractured" - }, - { - "id": "fractured.stat_473917671", - "text": "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_3628935286", - "text": "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", - "type": "fractured" - }, - { - "id": "fractured.stat_3225608889", - "text": "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", - "type": "fractured" - }, - { - "id": "fractured.stat_21071013", - "text": "Herald Skills deal #% increased Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_1135928777", - "text": "#% increased Attack Speed with Crossbows", - "type": "fractured" - }, - { - "id": "fractured.stat_3791899485", - "text": "#% increased Ignite Magnitude", - "type": "fractured" - }, - { - "id": "fractured.stat_3787460122", - "text": "Offerings have #% increased Maximum Life", - "type": "fractured" - }, - { - "id": "fractured.stat_2440073079", - "text": "#% increased Damage while Shapeshifted", - "type": "fractured" - }, - { - "id": "fractured.stat_3169585282", - "text": "Allies in your Presence have # to Accuracy Rating", - "type": "fractured" - }, - { - "id": "fractured.stat_821241191", - "text": "#% increased Life Recovery from Flasks", - "type": "fractured" - }, - { - "id": "fractured.stat_868556494", - "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_1552666713", - "text": "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|50562", - "text": "Allocates Barbaric Strength", - "type": "fractured" - }, - { - "id": "fractured.stat_715957346", - "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", - "type": "fractured" - }, - { - "id": "fractured.stat_3544800472", - "text": "#% increased Elemental Ailment Threshold", - "type": "fractured" - }, - { - "id": "fractured.stat_3398301358", - "text": "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_3780644166", - "text": "#% increased Freeze Threshold", - "type": "fractured" - }, - { - "id": "fractured.stat_3256879910", - "text": "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", - "type": "fractured" - }, - { - "id": "fractured.stat_795138349", - "text": "#% chance to Poison on Hit", - "type": "fractured" - }, - { - "id": "fractured.stat_2107703111", - "text": "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", - "type": "fractured" - }, - { - "id": "fractured.stat_3855016469", - "text": "Hits against you have #% reduced Critical Damage Bonus", - "type": "fractured" - }, - { - "id": "fractured.stat_1994296038", - "text": "Small Passive Skills in Radius also grant #% increased Evasion Rating", - "type": "fractured" - }, - { - "id": "fractured.stat_3419203492", - "text": "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", - "type": "fractured" - }, - { - "id": "fractured.stat_3741323227", - "text": "#% increased Flask Effect Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_980177976", - "text": "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", - "type": "fractured" - }, - { - "id": "fractured.stat_3409275777", - "text": "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", - "type": "fractured" - }, - { - "id": "fractured.stat_3283482523", - "text": "#% increased Attack Speed with Quarterstaves", - "type": "fractured" - }, - { - "id": "fractured.stat_2374711847", - "text": "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_693237939", - "text": "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_3585532255", - "text": "#% increased Charm Charges gained", - "type": "fractured" - }, - { - "id": "fractured.stat_253641217", - "text": "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", - "type": "fractured" - }, - { - "id": "fractured.stat_821948283", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", - "type": "fractured" - }, - { - "id": "fractured.stat_3641543553", - "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", - "type": "fractured" - }, - { - "id": "fractured.stat_1836676211", - "text": "#% increased Flask Charges gained", - "type": "fractured" - }, - { - "id": "fractured.stat_2272980012", - "text": "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", - "type": "fractured" - }, - { - "id": "fractured.stat_1266413530", - "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", - "type": "fractured" - }, - { - "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" - }, - { - "id": "fractured.stat_3485067555", - "text": "#% increased Chill Duration on Enemies", - "type": "fractured" - }, - { - "id": "fractured.stat_3192728503", - "text": "#% increased Crossbow Reload Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_2840989393", - "text": "Small Passive Skills in Radius also grant #% chance to Poison on Hit", - "type": "fractured" - }, - { - "id": "fractured.stat_809229260", - "text": "# to Armour", - "type": "fractured" - }, - { - "id": "fractured.stat_1772247089", - "text": "#% increased chance to inflict Ailments", - "type": "fractured" - }, - { - "id": "fractured.stat_4095671657", - "text": "#% to Maximum Fire Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_1494950893", - "text": "Small Passive Skills in Radius also grant Companions deal #% increased Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2839066308", - "text": "#% increased amount of Mana Leeched", - "type": "fractured" - }, - { - "id": "fractured.stat_3774951878", - "text": "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", - "type": "fractured" - }, - { - "id": "fractured.stat_1087108135", - "text": "Small Passive Skills in Radius also grant #% increased Curse Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_1718147982", - "text": "#% increased Minion Accuracy Rating", - "type": "fractured" - }, - { - "id": "fractured.stat_3473929743", - "text": "#% increased Pin Buildup", - "type": "fractured" - }, - { - "id": "fractured.stat_2487305362", - "text": "#% increased Magnitude of Poison you inflict", - "type": "fractured" - }, - { - "id": "fractured.stat_44972811", - "text": "#% increased Life Regeneration rate", - "type": "fractured" - }, - { - "id": "fractured.stat_1805182458", - "text": "Companions have #% increased maximum Life", - "type": "fractured" - }, - { - "id": "fractured.stat_1697447343", - "text": "#% increased Freeze Buildup with Quarterstaves", - "type": "fractured" - }, - { - "id": "fractured.stat_2594634307", - "text": "Mark Skills have #% increased Skill Effect Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|28975", - "text": "Allocates Pure Power", - "type": "fractured" - }, - { - "id": "fractured.stat_3513818125", - "text": "Small Passive Skills in Radius also grant #% increased Shock Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_458438597", - "text": "#% of Damage is taken from Mana before Life", - "type": "fractured" - }, - { - "id": "fractured.stat_169946467", - "text": "#% increased Accuracy Rating with Bows", - "type": "fractured" - }, - { - "id": "fractured.stat_462424929", - "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", - "type": "fractured" - }, - { - "id": "fractured.stat_1087531620", - "text": "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", - "type": "fractured" - }, - { - "id": "fractured.stat_830345042", - "text": "Small Passive Skills in Radius also grant #% increased Freeze Threshold", - "type": "fractured" - }, - { - "id": "fractured.stat_1389754388", - "text": "#% increased Charm Effect Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_2222186378", - "text": "#% increased Mana Recovery from Flasks", - "type": "fractured" - }, - { - "id": "fractured.stat_656461285", - "text": "#% increased Intelligence", - "type": "fractured" - }, - { - "id": "fractured.stat_255840549", - "text": "Small Passive Skills in Radius also grant #% increased Hazard Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_3113764475", - "text": "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_3676141501", - "text": "#% to Maximum Cold Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_1714971114", - "text": "Mark Skills have #% increased Use Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_4215035940", - "text": "On Corruption, Item gains two Enchantments", - "type": "fractured" - }, - { - "id": "fractured.stat_1777421941", - "text": "Notable Passive Skills in Radius also grant #% increased Projectile Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_412709880", - "text": "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", - "type": "fractured" - }, - { - "id": "fractured.stat_3700202631", - "text": "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|7809", - "text": "Allocates Wild Storm", - "type": "fractured" - }, - { - "id": "fractured.stat_3752589831", - "text": "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", - "type": "fractured" - }, - { - "id": "fractured.stat_1697951953", - "text": "#% increased Hazard Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|57388", - "text": "Allocates Overwhelming Strike", - "type": "fractured" - }, - { - "id": "fractured.stat_1238227257", - "text": "Debuffs on you expire #% faster", - "type": "fractured" - }, - { - "id": "fractured.stat_2202308025", - "text": "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_538241406", - "text": "Damaging Ailments deal damage #% faster", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|55193", - "text": "Allocates Subterfuge Mask", - "type": "fractured" - }, - { - "id": "fractured.stat_627767961", - "text": "#% increased Damage while you have an active Charm", - "type": "fractured" - }, - { - "id": "fractured.stat_318953428", - "text": "#% chance to Blind Enemies on Hit with Attacks", - "type": "fractured" - }, - { - "id": "fractured.stat_2638756573", - "text": "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", - "type": "fractured" - }, - { - "id": "fractured.stat_266564538", - "text": "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", - "type": "fractured" - }, - { - "id": "fractured.stat_111835965", - "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", - "type": "fractured" - }, - { - "id": "fractured.stat_61644361", - "text": "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", - "type": "fractured" - }, - { - "id": "fractured.stat_734614379", - "text": "#% increased Strength", - "type": "fractured" - }, - { - "id": "fractured.stat_221701169", - "text": "Notable Passive Skills in Radius also grant #% increased Poison Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_793875384", - "text": "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", - "type": "fractured" - }, - { - "id": "fractured.stat_147764878", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", - "type": "fractured" - }, - { - "id": "fractured.stat_2011656677", - "text": "#% increased Poison Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_2320654813", - "text": "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", - "type": "fractured" - }, - { - "id": "fractured.stat_1323216174", - "text": "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|27303", - "text": "Allocates Vulgar Methods", - "type": "fractured" - }, - { - "id": "fractured.stat_3856744003", - "text": "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_918325986", - "text": "#% increased Skill Speed while Shapeshifted", - "type": "fractured" - }, - { - "id": "fractured.stat_1846980580", - "text": "Notable Passive Skills in Radius also grant # to Maximum Rage", - "type": "fractured" - }, - { - "id": "fractured.stat_3028809864", - "text": "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", - "type": "fractured" - }, - { - "id": "fractured.stat_3175163625", - "text": "#% increased Quantity of Gold Dropped by Slain Enemies", - "type": "fractured" - }, - { - "id": "fractured.stat_4162678661", - "text": "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_1062710370", - "text": "#% increased Duration of Ignite, Shock and Chill on Enemies", - "type": "fractured" - }, - { - "id": "fractured.stat_1004011302", - "text": "#% increased Cooldown Recovery Rate", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|39881", - "text": "Allocates Staggering Palm", - "type": "fractured" - }, - { - "id": "fractured.stat_378796798", - "text": "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", - "type": "fractured" - }, - { - "id": "fractured.stat_3173882956", - "text": "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", - "type": "fractured" - }, - { - "id": "fractured.stat_127081978", - "text": "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", - "type": "fractured" - }, - { - "id": "fractured.stat_2118708619", - "text": "#% increased Damage if you have Consumed a Corpse Recently", - "type": "fractured" - }, - { - "id": "fractured.stat_1337740333", - "text": "Small Passive Skills in Radius also grant #% increased Melee Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_654207792", - "text": "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", - "type": "fractured" - }, - { - "id": "fractured.stat_2610562860", - "text": "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|38535", - "text": "Allocates Stormcharged", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|22864", - "text": "Allocates Tainted Strike", - "type": "fractured" - }, - { - "id": "fractured.stat_1569159338", - "text": "#% increased Parry Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_1185341308", - "text": "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", - "type": "fractured" - }, - { - "id": "fractured.stat_1944020877", - "text": "Notable Passive Skills in Radius also grant #% increased Pin Buildup", - "type": "fractured" - }, - { - "id": "fractured.stat_3749502527", - "text": "#% chance to gain Volatility on Kill", - "type": "fractured" - }, - { - "id": "fractured.stat_1011760251", - "text": "#% to Maximum Lightning Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_4081947835", - "text": "Projectiles have #% chance to Chain an additional time from terrain", - "type": "fractured" - }, - { - "id": "fractured.stat_1800303440", - "text": "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", - "type": "fractured" - }, - { - "id": "fractured.stat_4258720395", - "text": "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|58016", - "text": "Allocates All Natural", - "type": "fractured" - }, - { - "id": "fractured.stat_2353576063", - "text": "#% increased Curse Magnitudes", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|31172", - "text": "Allocates Falcon Technique", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|62230", - "text": "Allocates Patient Barrier", - "type": "fractured" - }, - { - "id": "fractured.stat_4101445926", - "text": "#% increased Mana Cost Efficiency", - "type": "fractured" - }, - { - "id": "fractured.stat_3596695232", - "text": "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", - "type": "fractured" - }, - { - "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" - }, - { - "id": "fractured.stat_1978899297", - "text": "#% to all Maximum Elemental Resistances", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|26107", - "text": "Allocates Kite Runner", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|56265", - "text": "Allocates Throatseeker", - "type": "fractured" - }, - { - "id": "fractured.stat_2108821127", - "text": "Small Passive Skills in Radius also grant #% increased Totem Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|56776", - "text": "Allocates Cooked", - "type": "fractured" - }, - { - "id": "fractured.stat_2969557004", - "text": "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|1546", - "text": "Allocates Spiral into Depression", - "type": "fractured" - }, - { - "id": "fractured.stat_3837707023", - "text": "Minions have #% to Chaos Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|60034", - "text": "Allocates Falcon Dive", - "type": "fractured" - }, - { - "id": "fractured.stat_2523933828", - "text": "#% increased Armour, Evasion and Energy Shield from Equipped Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_3666476747", - "text": "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", - "type": "fractured" - }, - { - "id": "fractured.stat_3243034867", - "text": "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", - "type": "fractured" - }, - { - "id": "fractured.stat_51994685", - "text": "#% increased Flask Life Recovery rate", - "type": "fractured" - }, - { - "id": "fractured.stat_2580617872", - "text": "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", - "type": "fractured" - }, - { - "id": "fractured.stat_1417267954", - "text": "Small Passive Skills in Radius also grant #% increased Global Physical Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_3146310524", - "text": "Dazes on Hit", - "type": "fractured" - }, - { - "id": "fractured.stat_2518900926", - "text": "#% increased Damage with Plant Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|30132", - "text": "Allocates Wrapped Quiver", - "type": "fractured" - }, - { - "id": "fractured.stat_1405298142", - "text": "#% increased Stun Threshold if you haven't been Stunned Recently", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|5703", - "text": "Allocates Echoing Thunder", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|12337", - "text": "Allocates Flash Storm", - "type": "fractured" - }, - { - "id": "fractured.stat_2056107438", - "text": "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", - "type": "fractured" - }, - { - "id": "fractured.stat_2256120736", - "text": "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", - "type": "fractured" - }, - { - "id": "fractured.stat_1590846356", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_2770044702", - "text": "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|19044", - "text": "Allocates Arcane Intensity", - "type": "fractured" - }, - { - "id": "fractured.stat_1310194496", - "text": "#% increased Global Physical Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|36085", - "text": "Allocates Serrated Edges", - "type": "fractured" - }, - { - "id": "fractured.stat_179541474", - "text": "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|57204", - "text": "Allocates Critical Exploit", - "type": "fractured" - }, - { - "id": "fractured.stat_4139681126", - "text": "#% increased Dexterity", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|44566", - "text": "Allocates Lightning Rod", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|55149", - "text": "Allocates Pure Chaos", - "type": "fractured" - }, - { - "id": "fractured.stat_391602279", - "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", - "type": "fractured" - }, - { - "id": "fractured.stat_484792219", - "text": "Small Passive Skills in Radius also grant #% increased Stun Threshold", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|116", - "text": "Allocates Insightfulness", - "type": "fractured" - }, - { - "id": "fractured.stat_2957407601", - "text": "Offering Skills have #% increased Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_3088348485", - "text": "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_1892122971", - "text": "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|5802", - "text": "Allocates Stand and Deliver", - "type": "fractured" - }, - { - "id": "fractured.stat_2709367754", - "text": "Gain # Rage on Melee Hit", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|46197", - "text": "Allocates Careful Assassin", - "type": "fractured" - }, - { - "id": "fractured.stat_1181501418", - "text": "# to Maximum Rage", - "type": "fractured" - }, - { - "id": "fractured.stat_1412217137", - "text": "#% increased Flask Mana Recovery rate", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|6229", - "text": "Allocates Push the Advantage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|13724", - "text": "Allocates Deadly Force", - "type": "fractured" - }, - { - "id": "fractured.stat_3003542304", - "text": "Projectiles have #% chance for an additional Projectile when Forking", - "type": "fractured" - }, - { - "id": "fractured.stat_1594812856", - "text": "#% increased Damage with Warcries", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|34473", - "text": "Allocates Spaghettification", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|18505", - "text": "Allocates Crushing Verdict", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|2394", - "text": "Allocates Blade Flurry", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|8827", - "text": "Allocates Fast Metabolism", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|5728", - "text": "Allocates Ancient Aegis", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|15083", - "text": "Allocates Power Conduction", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|43082", - "text": "Allocates Acceleration", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|44299", - "text": "Allocates Enhanced Barrier", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|46060", - "text": "Allocates Voracious", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|28044", - "text": "Allocates Coming Calamity", - "type": "fractured" - }, - { - "id": "fractured.stat_1852184471", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Maces", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|41580", - "text": "Allocates Maiming Strike", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|40990", - "text": "Allocates Exposed to the Storm", - "type": "fractured" - }, - { - "id": "fractured.stat_442393998", - "text": "Small Passive Skills in Radius also grant #% increased Totem Life", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|21380", - "text": "Allocates Preemptive Strike", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|25513", - "text": "Allocates Overwhelm", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|19955", - "text": "Allocates Endless Blizzard", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17340", - "text": "Allocates Adrenaline Rush", - "type": "fractured" - }, - { - "id": "fractured.stat_3065378291", - "text": "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|372", - "text": "Allocates Heatproof", - "type": "fractured" - }, - { - "id": "fractured.stat_3973629633", - "text": "#% increased Withered Magnitude", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|19715", - "text": "Allocates Cremation", - "type": "fractured" - }, - { - "id": "fractured.stat_2066964205", - "text": "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", - "type": "fractured" - }, - { - "id": "fractured.stat_4258000627", - "text": "Small Passive Skills in Radius also grant Dazes on Hit", - "type": "fractured" - }, - { - "id": "fractured.stat_4147897060", - "text": "#% increased Block chance", - "type": "fractured" - }, - { - "id": "fractured.stat_2907381231", - "text": "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|46972", - "text": "Allocates Arcane Mixtures", - "type": "fractured" - }, - { - "id": "fractured.stat_3851254963", - "text": "#% increased Totem Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|19125", - "text": "Allocates Potent Incantation", - "type": "fractured" - }, - { - "id": "fractured.stat_1432756708", - "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_3292710273", - "text": "Gain # Rage when Hit by an Enemy", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|58939", - "text": "Allocates Dispatch Foes", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|44756", - "text": "Allocates Marked Agility", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|11526", - "text": "Allocates Sniper", - "type": "fractured" - }, - { - "id": "fractured.stat_239367161", - "text": "#% increased Stun Buildup", - "type": "fractured" - }, - { - "id": "fractured.stat_1911237468", - "text": "#% increased Stun Threshold while Parrying", - "type": "fractured" - }, - { - "id": "fractured.stat_2392824305", - "text": "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|39369", - "text": "Allocates Struck Through", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|34324", - "text": "Allocates Spectral Ward", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|2138", - "text": "Allocates Spiral into Insanity", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|44330", - "text": "Allocates Coated Arms", - "type": "fractured" - }, - { - "id": "fractured.stat_1007380041", - "text": "Small Passive Skills in Radius also grant #% increased Parry Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|8273", - "text": "Allocates Endless Circuit", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|30562", - "text": "Allocates Inner Faith", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17548", - "text": "Allocates Moment of Truth", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|57379", - "text": "Allocates In Your Face", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|11826", - "text": "Allocates Heavy Ammunition", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|10265", - "text": "Allocates Javelin", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|52618", - "text": "Allocates Boon of the Beast", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|10681", - "text": "Allocates Defensive Stance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|51707", - "text": "Allocates Enhanced Reflexes", - "type": "fractured" - }, - { - "id": "fractured.stat_4173554949", - "text": "Notable Passive Skills in Radius also grant #% increased Stun Buildup", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|27491", - "text": "Allocates Heavy Buffer", - "type": "fractured" - }, - { - "id": "fractured.stat_680068163", - "text": "#% increased Stun Threshold", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|54814", - "text": "Allocates Profane Commander", - "type": "fractured" - }, - { - "id": "fractured.stat_1756380435", - "text": "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|28963", - "text": "Allocates Chakra of Rhythm", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|64119", - "text": "Allocates Rapid Reload", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|36341", - "text": "Allocates Cull the Hordes", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|10998", - "text": "Allocates Strong Chin", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|3688", - "text": "Allocates Dynamism", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|29527", - "text": "Allocates First Approach", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|47635", - "text": "Allocates Overload", - "type": "fractured" - }, - { - "id": "fractured.stat_2653955271", - "text": "Damage Penetrates #% Fire Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|30408", - "text": "Allocates Efficient Contraptions", - "type": "fractured" - }, - { - "id": "fractured.stat_2131720304", - "text": "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|9968", - "text": "Allocates Feel the Earth", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|4238", - "text": "Allocates Versatile Arms", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|48581", - "text": "Allocates Exploit the Elements", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|29372", - "text": "Allocates Sudden Infuriation", - "type": "fractured" - }, - { - "id": "fractured.stat_1316278494", - "text": "#% increased Warcry Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|32353", - "text": "Allocates Swift Claw", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|43944", - "text": "Allocates Instability", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|20677", - "text": "Allocates For the Jugular", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|16816", - "text": "Allocates Pinpoint Shot", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|45599", - "text": "Allocates Lay Siege", - "type": "fractured" - }, - { - "id": "fractured.stat_4089835882", - "text": "Small Passive Skills in Radius also grant Break #% increased Armour", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|13407", - "text": "Allocates Heartbreaking", - "type": "fractured" - }, - { - "id": "fractured.stat_1776411443", - "text": "Break #% increased Armour", - "type": "fractured" - }, - { - "id": "fractured.stat_644456512", - "text": "#% reduced Flask Charges used", - "type": "fractured" - }, - { - "id": "fractured.stat_1602294220", - "text": "Small Passive Skills in Radius also grant #% increased Warcry Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|9020", - "text": "Allocates Giantslayer", - "type": "fractured" - }, - { - "id": "fractured.stat_2334956771", - "text": "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|55708", - "text": "Allocates Electric Amplification", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|6178", - "text": "Allocates Power Shots", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|62034", - "text": "Allocates Prism Guard", - "type": "fractured" - }, - { - "id": "fractured.stat_712554801", - "text": "#% increased Effect of your Mark Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|9472", - "text": "Allocates Catapult", - "type": "fractured" - }, - { - "id": "fractured.stat_139889694", - "text": "Small Passive Skills in Radius also grant #% increased Fire Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|3985", - "text": "Allocates Forces of Nature", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|65265", - "text": "Allocates Swift Interruption", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|55180", - "text": "Allocates Relentless Fallen", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|36623", - "text": "Allocates Convalescence", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|62609", - "text": "Allocates Ancestral Unity", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|16499", - "text": "Allocates Lingering Whispers", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|55", - "text": "Allocates Fast Acting Toxins", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|22967", - "text": "Allocates Vigilance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|13738", - "text": "Allocates Lightning Quick", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|39050", - "text": "Allocates Exploit", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|8904", - "text": "Allocates Death from Afar", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|42077", - "text": "Allocates Essence Infusion", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|25971", - "text": "Allocates Tenfold Attacks", - "type": "fractured" - }, - { - "id": "fractured.stat_2720982137", - "text": "Banner Skills have #% increased Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|37872", - "text": "Allocates Presence Present", - "type": "fractured" - }, - { - "id": "fractured.stat_1301765461", - "text": "#% to Maximum Chaos Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|7777", - "text": "Allocates Breaking Point", - "type": "fractured" - }, - { - "id": "fractured.stat_554690751", - "text": "Players are periodically Cursed with Elemental Weakness", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|51867", - "text": "Allocates Finality", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|13980", - "text": "Allocates Split the Earth", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17330", - "text": "Allocates Perforation", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|28267", - "text": "Allocates Desensitisation", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|336", - "text": "Allocates Storm Swell", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|56999", - "text": "Allocates Locked On", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|27176", - "text": "Allocates The Power Within", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|2021", - "text": "Allocates Wellspring", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|23939", - "text": "Allocates Glazed Flesh", - "type": "fractured" - }, - { - "id": "fractured.stat_2976476845", - "text": "Notable Passive Skills in Radius also grant #% increased Knockback Distance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|51820", - "text": "Allocates Ancestral Conduits", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|50884", - "text": "Allocates Primal Sundering", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|63759", - "text": "Allocates Stacking Toxins", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|1823", - "text": "Allocates Illuminated Crown", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|57190", - "text": "Allocates Doomsayer", - "type": "fractured" - }, - { - "id": "fractured.stat_3401186585", - "text": "#% increased Parried Debuff Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|61338", - "text": "Allocates Breath of Lightning", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|53823", - "text": "Allocates Towering Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|32976", - "text": "Allocates Gem Enthusiast", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|57471", - "text": "Allocates Hunker Down", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|59303", - "text": "Allocates Lucky Rabbit Foot", - "type": "fractured" - }, - { - "id": "fractured.stat_1285594161", - "text": "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|34531", - "text": "Allocates Hallowed", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|42065", - "text": "Allocates Surging Currents", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|32951", - "text": "Allocates Preservation", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|13895", - "text": "Allocates Precise Point", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|49984", - "text": "Allocates Spellblade", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|7338", - "text": "Allocates Abasement", - "type": "fractured" - }, - { - "id": "fractured.stat_3395186672", - "text": "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|61703", - "text": "Allocates Sharpened Claw", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|30523", - "text": "Allocates Dead can Dance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|8831", - "text": "Allocates Tempered Mind", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|16618", - "text": "Allocates Jack of all Trades", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|40166", - "text": "Allocates Deep Trance", - "type": "fractured" - }, - { - "id": "fractured.stat_4129825612", - "text": "#% of Physical Damage from Hits taken as Chaos Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|25482", - "text": "Allocates Beef", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|62803", - "text": "Allocates Woodland Aspect", - "type": "fractured" - }, - { - "id": "fractured.stat_2912416697", - "text": "Notable Passive Skills in Radius also grant #% increased Blind Effect", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|934", - "text": "Allocates Natural Immunity", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|53941", - "text": "Allocates Shimmering", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|8531", - "text": "Allocates Leaping Ambush", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17854", - "text": "Allocates Escape Velocity", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|41512", - "text": "Allocates Heavy Weaponry", - "type": "fractured" - }, - { - "id": "fractured.stat_3936121440", - "text": "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17260", - "text": "Allocates Piercing Claw", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17372", - "text": "Allocates Reaching Strike", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|38459", - "text": "Allocates Disorientation", - "type": "fractured" - }, - { - "id": "fractured.stat_1129429646", - "text": "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|33240", - "text": "Allocates Lord of Horrors", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|24630", - "text": "Allocates Fulmination", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|53030", - "text": "Allocates Immolation", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|31826", - "text": "Allocates Long Distance Relationship", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|21537", - "text": "Allocates Fervour", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|35966", - "text": "Allocates Heart Tissue", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|6133", - "text": "Allocates Core of the Guardian", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|25711", - "text": "Allocates Thrill of Battle", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|56806", - "text": "Allocates Swift Blocking", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|52392", - "text": "Allocates Singular Purpose", - "type": "fractured" - }, - { - "id": "fractured.stat_1570770415", - "text": "#% reduced Charm Charges used", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17882", - "text": "Allocates Volatile Grenades", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|53853", - "text": "Allocates Backup Plan", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|59720", - "text": "Allocates Beastial Skin", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|42177", - "text": "Allocates Blurred Motion", - "type": "fractured" - }, - { - "id": "fractured.stat_924253255", - "text": "#% increased Slowing Potency of Debuffs on You", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|32071", - "text": "Allocates Primal Growth", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|3215", - "text": "Allocates Melding", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|2511", - "text": "Allocates Sundering", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|63037", - "text": "Allocates Sigil of Fire", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|30456", - "text": "Allocates High Alert", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|5663", - "text": "Allocates Endurance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|51934", - "text": "Allocates Invocated Efficiency", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|4709", - "text": "Allocates Near Sighted", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|21349", - "text": "Allocates The Quick Fox", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|19337", - "text": "Allocates Precision Salvo", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|54911", - "text": "Allocates Firestarter", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|3894", - "text": "Allocates Eldritch Will", - "type": "fractured" - }, - { - "id": "fractured.stat_1181419800", - "text": "#% increased Damage with Maces", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|37514", - "text": "Allocates Whirling Assault", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|47316", - "text": "Allocates Goring", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|52191", - "text": "Allocates Event Horizon", - "type": "fractured" - }, - { - "id": "fractured.stat_4009879772", - "text": "#% increased Life Flask Charges gained", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|50062", - "text": "Allocates Barrier of Venarius", - "type": "fractured" - }, - { - "id": "fractured.stat_1160637284", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Warcries", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|47363", - "text": "Allocates Colossal Weapon", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|60764", - "text": "Allocates Feathered Fletching", - "type": "fractured" - }, - { - "id": "fractured.stat_3171212276", - "text": "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|7651", - "text": "Allocates Pierce the Heart", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|30720", - "text": "Allocates Entropic Incarnation", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17229", - "text": "Allocates Silent Guardian", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|4716", - "text": "Allocates Afterimage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|58426", - "text": "Allocates Pocket Sand", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|27009", - "text": "Allocates Lust for Sacrifice", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|46024", - "text": "Allocates Sigil of Lightning", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|52199", - "text": "Allocates Overexposure", - "type": "fractured" - }, - { - "id": "fractured.stat_2970621759", - "text": "#% of Lightning Damage taken Recouped as Life", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|64443", - "text": "Allocates Impact Force", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|56997", - "text": "Allocates Heavy Contact", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|49661", - "text": "Allocates Perfectly Placed Knife", - "type": "fractured" - }, - { - "id": "fractured.stat_2480498143", - "text": "#% of Skill Mana Costs Converted to Life Costs", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|10295", - "text": "Allocates Overzealous", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|54937", - "text": "Allocates Vengeful Fury", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|63255", - "text": "Allocates Savagery", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|19442", - "text": "Allocates Prolonged Assault", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|40480", - "text": "Allocates Harmonic Generator", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|39567", - "text": "Allocates Ingenuity", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|40399", - "text": "Allocates Energise", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|35792", - "text": "Allocates Blood of Rage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|15374", - "text": "Allocates Hale Heart", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|53367", - "text": "Allocates Symbol of Defiance", - "type": "fractured" - }, - { - "id": "fractured.stat_1320662475", - "text": "Small Passive Skills in Radius also grant #% increased Thorns damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|45488", - "text": "Allocates Cross Strike", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|11774", - "text": "Allocates The Spring Hare", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|22626", - "text": "Allocates Irreparable", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|54640", - "text": "Allocates Constricting", - "type": "fractured" - }, - { - "id": "fractured.stat_3386297724", - "text": "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|16466", - "text": "Allocates Mental Alacrity", - "type": "fractured" - }, - { - "id": "fractured.stat_1505023559", - "text": "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_2690740379", - "text": "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|27626", - "text": "Allocates Touch the Arcane", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|59208", - "text": "Allocates Frantic Fighter", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|62185", - "text": "Allocates Rattled", - "type": "fractured" - }, - { - "id": "fractured.stat_512071314", - "text": "Monsters deal #% of Damage as Extra Lightning", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|12611", - "text": "Allocates Harness the Elements", - "type": "fractured" - }, - { - "id": "fractured.stat_942519401", - "text": "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", - "type": "fractured" - }, - { - "id": "fractured.stat_3477720557", - "text": "Area has patches of Shocked Ground", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|23227", - "text": "Allocates Initiative", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|62310", - "text": "Allocates Incendiary", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|46224", - "text": "Allocates Arcane Alchemy", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17150", - "text": "Allocates General's Bindings", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|8810", - "text": "Allocates Multitasking", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|38972", - "text": "Allocates Restless Dead", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|43677", - "text": "Allocates Crippling Toxins", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|6655", - "text": "Allocates Aggravation", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|58397", - "text": "Allocates Proficiency", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|64240", - "text": "Allocates Battle Fever", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|61112", - "text": "Allocates Roll and Strike", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|48565", - "text": "Allocates Bringer of Order", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|46696", - "text": "Allocates Impair", - "type": "fractured" - }, - { - "id": "fractured.stat_3793155082", - "text": "#% increased Rare Monsters", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|57805", - "text": "Allocates Clear Space", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|38969", - "text": "Allocates Finesse", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|38537", - "text": "Allocates Heartstopping", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|10398", - "text": "Allocates Sudden Escalation", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|28482", - "text": "Allocates Total Incineration", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|51891", - "text": "Allocates Lucidity", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|49550", - "text": "Allocates Prolonged Fury", - "type": "fractured" - }, - { - "id": "fractured.stat_1495814176", - "text": "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|40117", - "text": "Allocates Spiked Armour", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17762", - "text": "Allocates Vengeance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|11392", - "text": "Allocates Molten Being", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|32354", - "text": "Allocates Defiance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|64543", - "text": "Allocates Unbound Forces", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|51602", - "text": "Allocates Unsight", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|26291", - "text": "Allocates Electrifying Nature", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|9227", - "text": "Allocates Focused Thrust", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|46365", - "text": "Allocates Gigantic Following", - "type": "fractured" - }, - { - "id": "fractured.stat_944643028", - "text": "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|5284", - "text": "Allocates Shredding Force", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|38398", - "text": "Allocates Apocalypse", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|14934", - "text": "Allocates Spiral into Mania", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|38895", - "text": "Allocates Crystal Elixir", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|35477", - "text": "Allocates Far Sighted", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|1104", - "text": "Allocates Lust for Power", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|38053", - "text": "Allocates Deafening Cries", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|38342", - "text": "Allocates Stupefy", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|60404", - "text": "Allocates Perfect Opportunity", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|22817", - "text": "Allocates Inevitable Rupture", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|30392", - "text": "Allocates Succour", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|14211", - "text": "Allocates Shredding Contraptions", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|3567", - "text": "Allocates Raw Mana", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|51871", - "text": "Allocates Immortal Thirst", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|28329", - "text": "Allocates Pressure Points", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|51394", - "text": "Allocates Unimpeded", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|38628", - "text": "Allocates Escalating Toxins", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|20414", - "text": "Allocates Reprisal", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|48418", - "text": "Allocates Hefty Unit", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|7062", - "text": "Allocates Reusable Ammunition", - "type": "fractured" - }, - { - "id": "fractured.stat_3166958180", - "text": "#% increased Magnitude of Bleeding you inflict", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|40270", - "text": "Allocates Frenetic", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|35369", - "text": "Allocates Investing Energies", - "type": "fractured" - }, - { - "id": "fractured.stat_429143663", - "text": "Banner Skills have #% increased Area of Effect", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|47270", - "text": "Allocates Inescapable Cold", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|35876", - "text": "Allocates Admonisher", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|8554", - "text": "Allocates Burning Nature", - "type": "fractured" - }, - { - "id": "fractured.stat_2301718443", - "text": "#% increased Damage against Enemies with Fully Broken Armour", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|10602", - "text": "Allocates Reaving", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|4031", - "text": "Allocates Icebreaker", - "type": "fractured" - }, - { - "id": "fractured.stat_30438393", - "text": "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|65204", - "text": "Allocates Overflowing Power", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|45244", - "text": "Allocates Refills", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|15617", - "text": "Allocates Heavy Drinker", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17825", - "text": "Allocates Tactical Retreat", - "type": "fractured" - }, - { - "id": "fractured.stat_4225700219", - "text": "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", - "type": "fractured" - }, - { - "id": "fractured.stat_2174054121", - "text": "#% chance to inflict Bleeding on Hit", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|23940", - "text": "Allocates Fortified Aegis", - "type": "fractured" - }, - { - "id": "fractured.stat_565784293", - "text": "#% increased Knockback Distance", - "type": "fractured" - }, - { - "id": "fractured.stat_3590792340", - "text": "#% increased Mana Flask Charges gained", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|32664", - "text": "Allocates Chakra of Breathing", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|7341", - "text": "Allocates Ignore Pain", - "type": "fractured" - }, - { - "id": "fractured.stat_4142814612", - "text": "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17955", - "text": "Allocates Careful Consideration", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|36976", - "text": "Allocates Marked for Death", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|43139", - "text": "Allocates Stormbreaker", - "type": "fractured" - }, - { - "id": "fractured.stat_872504239", - "text": "#% increased Stun Buildup with Maces", - "type": "fractured" - }, - { - "id": "fractured.stat_1569101201", - "text": "Empowered Attacks deal #% increased Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|34308", - "text": "Allocates Personal Touch", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|31433", - "text": "Allocates Catalysis", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17664", - "text": "Allocates Decisive Retreat", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|56714", - "text": "Allocates Swift Flight", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|53294", - "text": "Allocates Burn Away", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|39347", - "text": "Allocates Breaking Blows", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|65023", - "text": "Allocates Impenetrable Shell", - "type": "fractured" - }, - { - "id": "fractured.stat_3429148113", - "text": "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|13542", - "text": "Allocates Loose Flesh", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|9226", - "text": "Allocates Mental Perseverance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|47514", - "text": "Allocates Dizzying Hits", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|46384", - "text": "Allocates Wide Barrier", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|2575", - "text": "Allocates Ancestral Alacrity", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|11838", - "text": "Allocates Dreamcatcher", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|14324", - "text": "Allocates Arcane Blossom", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|2134", - "text": "Allocates Toxic Tolerance", - "type": "fractured" - }, - { - "id": "fractured.stat_2709646369", - "text": "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|35849", - "text": "Allocates Thickened Arteries", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|16256", - "text": "Allocates Ether Flow", - "type": "fractured" - }, - { - "id": "fractured.stat_1879340377", - "text": "Monsters Break Armour equal to #% of Physical Damage dealt", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|47418", - "text": "Allocates Warding Potions", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|40073", - "text": "Allocates Drenched", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|62887", - "text": "Allocates Living Death", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|27513", - "text": "Allocates Material Solidification", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|10423", - "text": "Allocates Exposed to the Inferno", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|42959", - "text": "Allocates Low Tolerance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|53150", - "text": "Allocates Sharp Sight", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|56893", - "text": "Allocates Thicket Warding", - "type": "fractured" - }, - { - "id": "fractured.stat_1276056105", - "text": "#% increased Gold found in this Area (Gold Piles)", - "type": "fractured" - }, - { - "id": "fractured.stat_1276056105", - "text": "#% increased Gold found in your Maps (Gold Piles)", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|36630", - "text": "Allocates Incision", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|2645", - "text": "Allocates Skullcrusher", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|48699", - "text": "Allocates Frostwalker", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|64851", - "text": "Allocates Flashy Parrying", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|21164", - "text": "Allocates Fleshcrafting", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|65193", - "text": "Allocates Viciousness", - "type": "fractured" - }, - { - "id": "fractured.stat_3821543413", - "text": "Notable Passive Skills in Radius also grant #% increased Block chance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|33887", - "text": "Allocates Full Salvo", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|44005", - "text": "Allocates Casting Cascade", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|40213", - "text": "Allocates Taste for Blood", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|33059", - "text": "Allocates Back in Action", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|30341", - "text": "Allocates Master Fletching", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|46692", - "text": "Allocates Efficient Alchemy", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|50795", - "text": "Allocates Careful Aim", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|16626", - "text": "Allocates Impact Area", - "type": "fractured" - }, - { - "id": "fractured.stat_2112395885", - "text": "#% increased amount of Life Leeched", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|23736", - "text": "Allocates Spray and Pray", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|58183", - "text": "Allocates Blood Tearing", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|61601", - "text": "Allocates True Strike", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|31373", - "text": "Allocates Vocal Empowerment", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|45013", - "text": "Allocates Finishing Blows", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|50392", - "text": "Allocates Brute Strength", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|57047", - "text": "Allocates Polymathy", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|10612", - "text": "Allocates Embodiment of Frost", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|47782", - "text": "Allocates Steady Footing", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17725", - "text": "Allocates Bonded Precision", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|2999", - "text": "Allocates Final Barrage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|15644", - "text": "Allocates Shedding Skin", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|21206", - "text": "Allocates Explosive Impact", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|35855", - "text": "Allocates Fortifying Blood", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|65160", - "text": "Allocates Titanic", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|51509", - "text": "Allocates Waters of Life", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|34300", - "text": "Allocates Conservative Casting", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|42347", - "text": "Allocates Chakra of Sight", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|15030", - "text": "Allocates Consistent Intake", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|21453", - "text": "Allocates Breakage", - "type": "fractured" - }, - { - "id": "fractured.stat_3858398337", - "text": "Small Passive Skills in Radius also grant #% increased Armour", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|12750", - "text": "Allocates Vale Shelter", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|61921", - "text": "Allocates Storm Surge", - "type": "fractured" - }, - { - "id": "fractured.stat_1585769763", - "text": "#% increased Blind Effect", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|20032", - "text": "Allocates Erraticism", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|44765", - "text": "Allocates Distracting Presence", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|20397", - "text": "Allocates Authority", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|55131", - "text": "Allocates Light on your Feet", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|7604", - "text": "Allocates Rapid Strike", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|53935", - "text": "Allocates Briny Carapace", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|6544", - "text": "Allocates Burning Strikes", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|60138", - "text": "Allocates Stylebender", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|40803", - "text": "Allocates Sigil of Ice", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|49618", - "text": "Allocates Deadly Flourish", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|42354", - "text": "Allocates Blinding Flash", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|56453", - "text": "Allocates Killer Instinct", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|2486", - "text": "Allocates Stars Aligned", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|23427", - "text": "Allocates Chilled to the Bone", - "type": "fractured" - }, - { - "id": "fractured.stat_1869147066", - "text": "#% increased Glory generation for Banner Skills", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|35560", - "text": "Allocates At your Command", - "type": "fractured" - }, - { - "id": "fractured.stat_2488361432", - "text": "#% increased Monster Cast Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|8660", - "text": "Allocates Reverberation", - "type": "fractured" - }, - { - "id": "fractured.stat_337935900", - "text": "Monsters take #% reduced Extra Damage from Critical Hits", - "type": "fractured" - }, - { - "id": "fractured.stat_3998863698", - "text": "Monsters have #% increased Freeze Buildup", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|45612", - "text": "Allocates Defensive Reflexes", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|20251", - "text": "Allocates Splitting Ground", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|56493", - "text": "Allocates Agile Succession", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|2113", - "text": "Allocates Martial Artistry", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|59070", - "text": "Allocates Enduring Archon", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|18496", - "text": "Allocates Lasting Trauma", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|36364", - "text": "Allocates Electrocution", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|35581", - "text": "Allocates Near at Hand", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|13457", - "text": "Allocates Shadow Dancing", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|19722", - "text": "Allocates Thin Ice", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|14761", - "text": "Allocates Warlord Leader", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|27434", - "text": "Allocates Archon of the Storm", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|41753", - "text": "Allocates Evocational Practitioner", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|38614", - "text": "Allocates Psychic Fragmentation", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|36808", - "text": "Allocates Spiked Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|2335", - "text": "Allocates Turn the Clock Forward", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17303", - "text": "Allocates Utility Ordnance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|60269", - "text": "Allocates Roil", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|37302", - "text": "Allocates Kept at Bay", - "type": "fractured" - }, - { - "id": "fractured.stat_2539290279", - "text": "Monsters are Armoured", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|51169", - "text": "Allocates Soul Bloom", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|48215", - "text": "Allocates Headshot", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|5009", - "text": "Allocates Seeing Stars", - "type": "fractured" - }, - { - "id": "fractured.stat_1913583994", - "text": "#% increased Monster Attack Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|58096", - "text": "Allocates Lasting Incantations", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|18397", - "text": "Allocates Savoured Blood", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|13823", - "text": "Allocates Controlling Magic", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|43829", - "text": "Allocates Advanced Munitions", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|12661", - "text": "Allocates Asceticism", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|5332", - "text": "Allocates Crystallised Immunities", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|24483", - "text": "Allocates Direct Approach", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|43088", - "text": "Allocates Agonising Calamity", - "type": "fractured" - }, - { - "id": "fractured.stat_300723956", - "text": "Attack Hits apply Incision", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|42245", - "text": "Allocates Efficient Inscriptions", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|52245", - "text": "Allocates Distant Dreamer", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|54990", - "text": "Allocates Bloodletting", - "type": "fractured" - }, - { - "id": "fractured.stat_4101943684", - "text": "Monsters have #% increased Stun Threshold", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|22811", - "text": "Allocates The Wild Cat", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|33093", - "text": "Allocates Effervescent", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|7302", - "text": "Allocates Echoing Pulse", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|63074", - "text": "Allocates Dark Entries", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|8957", - "text": "Allocates Right Hand of Darkness", - "type": "fractured" - }, - { - "id": "fractured.stat_2887760183", - "text": "Monsters gain #% of maximum Life as Extra maximum Energy Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_941368244", - "text": "Players have #% more Cooldown Recovery Rate", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|2814", - "text": "Allocates Engineered Blaze", - "type": "fractured" - }, - { - "id": "fractured.stat_686254215", - "text": "#% increased Totem Life", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|48658", - "text": "Allocates Shattering", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|27875", - "text": "Allocates General Electric", - "type": "fractured" - }, - { - "id": "fractured.stat_2200661314", - "text": "Monsters deal #% of Damage as Extra Chaos", - "type": "fractured" - }, - { - "id": "fractured.stat_1459321413", - "text": "#% increased Bleeding Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_2306522833", - "text": "#% increased Monster Movement Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|12822", - "text": "Allocates Adaptable Assault", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|8881", - "text": "Allocates Unforgiving", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|35031", - "text": "Allocates Chakra of Life", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|9736", - "text": "Allocates Insulated Treads", - "type": "fractured" - }, - { - "id": "fractured.stat_4181072906", - "text": "Players have #% less Recovery Rate of Life and Energy Shield", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|5257", - "text": "Allocates Echoing Frost", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|7275", - "text": "Allocates Electrocuting Exposure", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|19156", - "text": "Allocates Immaterial", - "type": "fractured" - }, - { - "id": "fractured.stat_57326096", - "text": "Monsters have #% Critical Damage Bonus", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|16150", - "text": "Allocates Inspiring Ally", - "type": "fractured" - }, - { - "id": "fractured.stat_504915064", - "text": "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|11366", - "text": "Allocates Volcanic Skin", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|25362", - "text": "Allocates Chakra of Impact", - "type": "fractured" - }, - { - "id": "fractured.stat_1898978455", - "text": "Monster Damage Penetrates #% Elemental Resistances", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|4627", - "text": "Allocates Climate Change", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|59214", - "text": "Allocates Fated End", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|46296", - "text": "Allocates Short Shot", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|18485", - "text": "Allocates Unstable Bond", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|55060", - "text": "Allocates Shrapnel", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|38479", - "text": "Allocates Close Confines", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|51606", - "text": "Allocates Freedom of Movement", - "type": "fractured" - }, - { - "id": "fractured.stat_349586058", - "text": "Area has patches of Chilled Ground", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|24240", - "text": "Allocates Time Manipulation", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|26070", - "text": "Allocates Bolstering Yell", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|10029", - "text": "Allocates Repulsion", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|53185", - "text": "Allocates The Winter Owl", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|58215", - "text": "Allocates Sanguimantic Rituals", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|65468", - "text": "Allocates Repeating Explosives", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|15991", - "text": "Allocates Embodiment of Lightning", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|63585", - "text": "Allocates Thunderstruck", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|44952", - "text": "Allocates Made to Last", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|34543", - "text": "Allocates The Frenzied Bear", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|38111", - "text": "Allocates Pliable Flesh", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|20388", - "text": "Allocates Regenerative Flesh", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|26518", - "text": "Allocates Cold Nature", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|37806", - "text": "Allocates Branching Bolts", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|36931", - "text": "Allocates Concussive Attack", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|29514", - "text": "Allocates Cluster Bombs", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17029", - "text": "Allocates Blade Catcher", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|52180", - "text": "Allocates Trained Deflection", - "type": "fractured" - }, - { - "id": "fractured.stat_2949706590", - "text": "Area contains # additional packs of Iron Guards", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|94", - "text": "Allocates Efficient Killing", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|56616", - "text": "Allocates Desperate Times", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|65016", - "text": "Allocates Intense Flames", - "type": "fractured" - }, - { - "id": "fractured.stat_3119612865", - "text": "Minions have #% additional Physical Damage Reduction", - "type": "fractured" - }, - { - "id": "fractured.stat_4159248054", - "text": "#% increased Warcry Cooldown Recovery Rate", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|33229", - "text": "Allocates Haemorrhaging Cuts", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|35809", - "text": "Allocates Reinvigoration", - "type": "fractured" - }, - { - "id": "fractured.stat_3374165039", - "text": "#% increased Totem Placement speed", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|32721", - "text": "Allocates Distracted Target", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|61741", - "text": "Allocates Lasting Toxins", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|50715", - "text": "Allocates Frozen Limit", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|20416", - "text": "Allocates Grit", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|24753", - "text": "Allocates Determined Precision", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|37276", - "text": "Allocates Battle Trance", - "type": "fractured" - }, - { - "id": "fractured.stat_2506820610", - "text": "Monsters have #% chance to inflict Bleeding on Hit", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|41811", - "text": "Allocates Shatter Palm", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|50673", - "text": "Allocates Avoiding Deflection", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|23630", - "text": "Allocates Self Immolation", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|32151", - "text": "Allocates Crystalline Resistance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|63830", - "text": "Allocates Marked for Sickness", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|36333", - "text": "Allocates Explosive Empowerment", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|58714", - "text": "Allocates Grenadier", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|50687", - "text": "Allocates Coursing Energy", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|5410", - "text": "Allocates Channelled Heritage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|29306", - "text": "Allocates Chakra of Thought", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|64415", - "text": "Allocates Shattering Daze", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|35028", - "text": "Allocates In the Thick of It", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|41394", - "text": "Allocates Invigorating Archon", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|48734", - "text": "Allocates The Howling Primate", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|11578", - "text": "Allocates Spreading Shocks", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|38888", - "text": "Allocates Unerring Impact", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|4331", - "text": "Allocates Guided Hand", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|2397", - "text": "Allocates Last Stand", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|48617", - "text": "Allocates Hunter", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|14294", - "text": "Allocates Sacrificial Blood", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|65243", - "text": "Allocates Enveloping Presence", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|25619", - "text": "Allocates Sand in the Eyes", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|41033", - "text": "Allocates Utmost Offering", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|18308", - "text": "Allocates Bleeding Out", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|3921", - "text": "Allocates Fate Finding", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|15986", - "text": "Allocates Building Toxins", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|63431", - "text": "Allocates Leeching Toxins", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|4661", - "text": "Allocates Inspiring Leader", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|42813", - "text": "Allocates Tides of Change", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|14343", - "text": "Allocates Deterioration", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|32301", - "text": "Allocates Frazzled", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|33216", - "text": "Allocates Deep Wounds", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|19236", - "text": "Allocates Projectile Bulwark", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|48014", - "text": "Allocates Honourless", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|53187", - "text": "Allocates Warlord Berserker", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|29762", - "text": "Allocates Guttural Roar", - "type": "fractured" - }, - { - "id": "fractured.stat_2550456553", - "text": "Rare Monsters have # additional Modifier", - "type": "fractured" - }, - { - "id": "fractured.stat_2550456553", - "text": "Rare Monsters in your Maps have # additional Modifier", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|39990", - "text": "Allocates Chronomancy", - "type": "fractured" - }, - { - "id": "fractured.stat_1054098949", - "text": "+#% Monster Elemental Resistances", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|64050", - "text": "Allocates Marathon Runner", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|16790", - "text": "Allocates Efficient Casting", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|28542", - "text": "Allocates The Molten One's Gift", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|13515", - "text": "Allocates Stormwalker", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|12412", - "text": "Allocates Temporal Mastery", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|42981", - "text": "Allocates Cruel Methods", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|7163", - "text": "Allocates Stimulants", - "type": "fractured" - }, - { - "id": "fractured.stat_1315743832", - "text": "#% increased Thorns damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|8607", - "text": "Allocates Lavianga's Brew", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|7668", - "text": "Allocates Internal Bleeding", - "type": "fractured" - }, - { - "id": "fractured.stat_115425161", - "text": "Monsters have #% increased Stun Buildup", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|47420", - "text": "Allocates Expendable Army", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|11376", - "text": "Allocates Necrotic Touch", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|63400", - "text": "Allocates Chakra of Elements", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|3492", - "text": "Allocates Void", - "type": "fractured" - }, - { - "id": "fractured.stat_2570249991", - "text": "Monsters are Evasive", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|60464", - "text": "Allocates Fan the Flames", - "type": "fractured" - }, - { - "id": "fractured.stat_3222482040", - "text": "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|43423", - "text": "Allocates Emboldened Avatar", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|37543", - "text": "Allocates Full Recovery", - "type": "fractured" - }, - { - "id": "fractured.stat_318092306", - "text": "Small Passive Skills in Radius also grant Attack Hits apply Incision", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|8397", - "text": "Allocates Empowering Remains", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|43090", - "text": "Allocates Electrotherapy", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|50023", - "text": "Allocates Invigorating Grandeur", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|40325", - "text": "Allocates Resolution", - "type": "fractured" - }, - { - "id": "fractured.stat_3873704640", - "text": "#% increased Magic Monsters", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|3188", - "text": "Allocates Revenge", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|20916", - "text": "Allocates Blinding Strike", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|28613", - "text": "Allocates Roaring Cries", - "type": "fractured" - }, - { - "id": "fractured.stat_1629357380", - "text": "Players are periodically Cursed with Temporal Chains", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|42045", - "text": "Allocates Archon of the Blizzard", - "type": "fractured" - }, - { - "id": "fractured.stat_1890519597", - "text": "#% increased Monster Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|23362", - "text": "Allocates Slippery Ice", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|750", - "text": "Allocates Tribal Fury", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|15114", - "text": "Allocates Boundless Growth", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|2863", - "text": "Allocates Perpetual Freeze", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|49088", - "text": "Allocates Splintering Force", - "type": "fractured" - }, - { - "id": "fractured.stat_3679418014", - "text": "#% of Cold Damage taken Recouped as Life", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|23764", - "text": "Allocates Alternating Current", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|38532", - "text": "Allocates Thirst for Power", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|9421", - "text": "Allocates Snowpiercer", - "type": "fractured" - }, - { - "id": "fractured.stat_2549889921", - "text": "Players gain #% reduced Flask Charges", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|10315", - "text": "Allocates Easy Going", - "type": "fractured" - }, - { - "id": "fractured.stat_2534359663", - "text": "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|4959", - "text": "Allocates Heavy Frost", - "type": "fractured" - }, - { - "id": "fractured.stat_1984618452", - "text": "Monsters have #% increased Shock Chance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|17254", - "text": "Allocates Spell Haste", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|63579", - "text": "Allocates Momentum", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|61026", - "text": "Allocates Crystalline Flesh", - "type": "fractured" - }, - { - "id": "fractured.stat_95249895", - "text": "#% more Monster Life", - "type": "fractured" - }, - { - "id": "fractured.stat_211727", - "text": "Monsters deal #% of Damage as Extra Cold", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|32448", - "text": "Allocates Shockproof", - "type": "fractured" - }, - { - "id": "fractured.stat_2753083623", - "text": "Monsters have #% increased Critical Hit Chance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|9908", - "text": "Allocates Price of Freedom", - "type": "fractured" - }, - { - "id": "fractured.stat_1742651309", - "text": "#% of Fire Damage taken Recouped as Life", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|19249", - "text": "Allocates Supportive Ancestors", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|19546", - "text": "Allocates Favourable Odds", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|61404", - "text": "Allocates Equilibrium", - "type": "fractured" - }, - { - "id": "fractured.stat_1002362373", - "text": "#% increased Melee Damage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|56488", - "text": "Allocates Glancing Deflection", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|53566", - "text": "Allocates Run and Gun", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|45713", - "text": "Allocates Savouring", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|43939", - "text": "Allocates Melting Flames", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|33978", - "text": "Allocates Unstoppable Barrier", - "type": "fractured" - }, - { - "id": "fractured.stat_3233599707", - "text": "#% increased Weapon Swap Speed", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|1603", - "text": "Allocates Storm Driven", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|9444", - "text": "Allocates One with the Storm", - "type": "fractured" - }, - { - "id": "fractured.stat_1514844108", - "text": "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|23244", - "text": "Allocates Bounty Hunter", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|32507", - "text": "Allocates Cut to the Bone", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|24120", - "text": "Allocates Mental Toughness", - "type": "fractured" - }, - { - "id": "fractured.stat_2029171424", - "text": "Players are periodically Cursed with Enfeeble", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|23738", - "text": "Allocates Madness in the Bones", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|1352", - "text": "Allocates Unbending", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|24764", - "text": "Allocates Infusing Power", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|34316", - "text": "Allocates One with the River", - "type": "fractured" - }, - { - "id": "fractured.stat_2508044078", - "text": "Monsters inflict #% increased Flammability Magnitude", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|39083", - "text": "Allocates Blood Rush", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|12998", - "text": "Allocates Warm the Heart", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|5227", - "text": "Allocates Escape Strategy", - "type": "fractured" - }, - { - "id": "fractured.stat_2637470878", - "text": "#% increased Armour Break Duration", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|7847", - "text": "Allocates The Fabled Stag", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|37266", - "text": "Allocates Nourishing Ally", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|24655", - "text": "Allocates Breath of Fire", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|30546", - "text": "Allocates Electrified Claw", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|52971", - "text": "Allocates The Soul Meridian", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|18086", - "text": "Allocates Breath of Ice", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|55847", - "text": "Allocates Ice Walls", - "type": "fractured" - }, - { - "id": "fractured.stat_95221307", - "text": "Monsters have #% chance to Poison on Hit", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|56063", - "text": "Allocates Lingering Horror", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|8896", - "text": "Allocates Agile Sprinter", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|60992", - "text": "Allocates Nurturing Guardian", - "type": "fractured" - }, - { - "id": "fractured.stat_1145481685", - "text": "Small Passive Skills in Radius also grant #% increased Totem Placement speed", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|5642", - "text": "Allocates Behemoth", - "type": "fractured" - }, - { - "id": "fractured.stat_1714706956", - "text": "#% increased Magic Pack Size", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|12906", - "text": "Allocates Sitting Duck", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|60083", - "text": "Allocates Pin and Run", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|53921", - "text": "Allocates Unbreaking", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|15443", - "text": "Allocates Endured Suffering", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|7395", - "text": "Allocates Retaliation", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|4810", - "text": "Allocates Sanguine Tolerance", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|57785", - "text": "Allocates Trained Turrets", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|48524", - "text": "Allocates Blood Transfusion", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|29899", - "text": "Allocates Finish Them", - "type": "fractured" - }, - { - "id": "fractured.stat_1588049749", - "text": "Monsters have #% increased Accuracy Rating", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|16940", - "text": "Allocates Arcane Nature", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|40985", - "text": "Allocates Empowering Remnants", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|31745", - "text": "Allocates Lockdown", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|48103", - "text": "Allocates Forcewave", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|48006", - "text": "Allocates Devastation", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|21748", - "text": "Allocates Impending Doom", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|27388", - "text": "Allocates Aspiring Genius", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|37742", - "text": "Allocates Manifold Method", - "type": "fractured" - }, - { - "id": "fractured.stat_92381065", - "text": "Monsters deal #% of Damage as Extra Fire", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|35739", - "text": "Allocates Crushing Judgement", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|1169", - "text": "Allocates Urgent Call", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|27108", - "text": "Allocates Mass Hysteria", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|56112", - "text": "Allocates Extinguishing Exhalation", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|10873", - "text": "Allocates Bestial Rage", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|24438", - "text": "Allocates Hardened Wood", - "type": "fractured" - }, - { - "id": "fractured.stat_3796523155", - "text": "#% less effect of Curses on Monsters", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|41972", - "text": "Allocates Glaciation", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|4673", - "text": "Allocates Hulking Smash", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|44917", - "text": "Allocates Self Mortification", - "type": "fractured" - }, - { - "id": "fractured.stat_57434274", - "text": "#% increased Experience gain", - "type": "fractured" - }, - { - "id": "fractured.stat_57434274", - "text": "#% increased Experience gain in your Maps", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|42036", - "text": "Allocates Off-Balancing Retort", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|40687", - "text": "Allocates Lead by Example", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|31326", - "text": "Allocates Slow Burn", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|60692", - "text": "Allocates Echoing Flames", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|36507", - "text": "Allocates Vile Mending", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|29288", - "text": "Allocates Deadly Invocations", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|44293", - "text": "Allocates Hastening Barrier", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|31189", - "text": "Allocates Unexpected Finesse", - "type": "fractured" - }, - { - "id": "fractured.stat_2149603090", - "text": "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|35618", - "text": "Allocates Cold Coat", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|5335", - "text": "Allocates Shimmering Mirage", - "type": "fractured" - }, - { - "id": "fractured.stat_1994551050", - "text": "Monsters have #% increased Ailment Threshold", - "type": "fractured" - }, - { - "id": "fractured.stat_133340941", - "text": "Area has patches of Ignited Ground", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|26356", - "text": "Allocates Primed to Explode", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|14945", - "text": "Allocates Growing Swarm", - "type": "fractured" - }, - { - "id": "fractured.stat_1834658952", - "text": "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", - "type": "fractured" - }, - { - "id": "fractured.stat_3811191316", - "text": "Minions have #% increased Area of Effect", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|13482", - "text": "Allocates Punctured Lung", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|28441", - "text": "Allocates Frantic Swings", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|15829", - "text": "Allocates Siphon", - "type": "fractured" - }, - { - "id": "fractured.stat_2954116742|14383", - "text": "Allocates Suffusion", - "type": "fractured" - } - ] - }, - { - "id": "crafted", - "label": "Crafted", - "entries": [ - { - "id": "crafted.stat_210067635", - "text": "#% increased Attack Speed (Local)", - "type": "crafted" - }, - { - "id": "crafted.stat_1062208444", - "text": "#% increased Armour (Local)", - "type": "crafted" - }, - { - "id": "crafted.stat_3299347043", - "text": "# to maximum Life", - "type": "crafted" - }, - { - "id": "crafted.stat_1999113824", - "text": "#% increased Evasion and Energy Shield", - "type": "crafted" - }, - { - "id": "crafted.stat_3321629045", - "text": "#% increased Armour and Energy Shield", - "type": "crafted" - }, - { - "id": "crafted.stat_2840930496", - "text": "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", - "type": "crafted" - }, - { - "id": "crafted.stat_1798257884", - "text": "Allies in your Presence deal #% increased Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_3962278098", - "text": "#% increased Fire Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_1881230714", - "text": "#% chance to gain Onslaught on Killing Hits with this Weapon", - "type": "crafted" - }, - { - "id": "crafted.stat_4273473110", - "text": "#% increased maximum Runic Ward", - "type": "crafted" - }, - { - "id": "crafted.stat_1037193709", - "text": "Adds # to # Cold Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_1604736568", - "text": "Recover #% of maximum Mana on Kill (Jewel)", - "type": "crafted" - }, - { - "id": "crafted.stat_737908626", - "text": "#% increased Critical Hit Chance for Spells", - "type": "crafted" - }, - { - "id": "crafted.stat_274716455", - "text": "#% increased Critical Spell Damage Bonus", - "type": "crafted" - }, - { - "id": "crafted.stat_124859000", - "text": "#% increased Evasion Rating (Local)", - "type": "crafted" - }, - { - "id": "crafted.stat_4015621042", - "text": "#% increased Energy Shield", - "type": "crafted" - }, - { - "id": "crafted.stat_656461285", - "text": "#% increased Intelligence", - "type": "crafted" - }, - { - "id": "crafted.stat_3714003708", - "text": "#% increased Critical Damage Bonus for Attack Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_2891184298", - "text": "#% increased Cast Speed", - "type": "crafted" - }, - { - "id": "crafted.stat_2451402625", - "text": "#% increased Armour and Evasion", - "type": "crafted" - }, - { - "id": "crafted.stat_2866361420", - "text": "#% increased Armour", - "type": "crafted" - }, - { - "id": "crafted.stat_709508406", - "text": "Adds # to # Fire Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_1303248024", - "text": "#% increased Magnitude of Ailments you inflict", - "type": "crafted" - }, - { - "id": "crafted.stat_2482852589", - "text": "#% increased maximum Energy Shield", - "type": "crafted" - }, - { - "id": "crafted.stat_3015669065", - "text": "Gain #% of Damage as Extra Fire Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_3981240776", - "text": "# to Spirit", - "type": "crafted" - }, - { - "id": "crafted.stat_3917489142", - "text": "#% increased Rarity of Items found", - "type": "crafted" - }, - { - "id": "crafted.stat_1967040409", - "text": "Spell Skills have #% increased Area of Effect", - "type": "crafted" - }, - { - "id": "crafted.stat_2023107756", - "text": "Recover #% of maximum Life on Kill", - "type": "crafted" - }, - { - "id": "crafted.stat_4019237939", - "text": "Gain #% of Damage as Extra Physical Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_1829102168", - "text": "#% increased Duration of Damaging Ailments on Enemies", - "type": "crafted" - }, - { - "id": "crafted.stat_2101383955", - "text": "Damage Penetrates #% Elemental Resistances", - "type": "crafted" - }, - { - "id": "crafted.stat_3278136794", - "text": "Gain #% of Damage as Extra Lightning Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_2505884597", - "text": "Gain #% of Damage as Extra Cold Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_953593695", - "text": "Minions have #% increased Magnitude of Damaging Ailments", - "type": "crafted" - }, - { - "id": "crafted.stat_589361270", - "text": "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", - "type": "crafted" - }, - { - "id": "crafted.stat_983749596", - "text": "#% increased maximum Life", - "type": "crafted" - }, - { - "id": "crafted.stat_2158617060", - "text": "#% increased Archon Buff duration", - "type": "crafted" - }, - { - "id": "crafted.stat_518292764", - "text": "#% to Critical Hit Chance", - "type": "crafted" - }, - { - "id": "crafted.stat_3556824919", - "text": "#% increased Critical Damage Bonus", - "type": "crafted" - }, - { - "id": "crafted.stat_1840985759", - "text": "#% increased Area of Effect for Attacks", - "type": "crafted" - }, - { - "id": "crafted.stat_3336890334", - "text": "Adds # to # Lightning Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_3261801346", - "text": "# to Dexterity", - "type": "crafted" - }, - { - "id": "crafted.stat_1940865751", - "text": "Adds # to # Physical Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_3141070085", - "text": "#% increased Elemental Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_3377888098", - "text": "#% increased Skill Effect Duration", - "type": "crafted" - }, - { - "id": "crafted.stat_2974417149", - "text": "#% increased Spell Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_1058934731", - "text": "Temporary Minion Skills have # to Limit of Minions summoned", - "type": "crafted" - }, - { - "id": "crafted.stat_1050105434", - "text": "# to maximum Mana", - "type": "crafted" - }, - { - "id": "crafted.stat_803737631", - "text": "# to Accuracy Rating", - "type": "crafted" - }, - { - "id": "crafted.stat_2392260628", - "text": "#% increased Runic Ward Regeneration Rate", - "type": "crafted" - }, - { - "id": "crafted.stat_3482326075", - "text": "Remnants can be collected from #% further away", - "type": "crafted" - }, - { - "id": "crafted.stat_335885735", - "text": "Bears the Mark of the Abyssal Lord", - "type": "crafted" - }, - { - "id": "crafted.stat_736967255", - "text": "#% increased Chaos Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_44972811", - "text": "#% increased Life Regeneration rate", - "type": "crafted" - }, - { - "id": "crafted.stat_681332047", - "text": "#% increased Attack Speed", - "type": "crafted" - }, - { - "id": "crafted.stat_2923486259", - "text": "#% to Chaos Resistance", - "type": "crafted" - }, - { - "id": "crafted.stat_4101445926", - "text": "#% increased Mana Cost Efficiency", - "type": "crafted" - }, - { - "id": "crafted.stat_124131830", - "text": "# to Level of all Spell Skills", - "type": "crafted" - }, - { - "id": "crafted.stat_3336230913", - "text": "# to maximum Runic Ward", - "type": "crafted" - }, - { - "id": "crafted.stat_2039822488", - "text": "#% to Maximum Quality", - "type": "crafted" - }, - { - "id": "crafted.stat_2748665614", - "text": "#% increased maximum Mana", - "type": "crafted" - }, - { - "id": "crafted.stat_2106365538", - "text": "#% increased Evasion Rating", - "type": "crafted" - }, - { - "id": "crafted.stat_2231156303", - "text": "#% increased Lightning Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_101878827", - "text": "#% increased Presence Area of Effect", - "type": "crafted" - }, - { - "id": "crafted.stat_1177404658", - "text": "#% increased Global Armour, Evasion and Energy Shield", - "type": "crafted" - }, - { - "id": "crafted.stat_325171970", - "text": "#% increased Attack Speed while missing Runic Ward", - "type": "crafted" - }, - { - "id": "crafted.stat_328541901", - "text": "# to Intelligence", - "type": "crafted" - }, - { - "id": "crafted.stat_1028592286", - "text": "#% chance to Chain an additional time", - "type": "crafted" - }, - { - "id": "crafted.stat_4080418644", - "text": "# to Strength", - "type": "crafted" - }, - { - "id": "crafted.stat_2250533757", - "text": "#% increased Movement Speed", - "type": "crafted" - }, - { - "id": "crafted.stat_3291658075", - "text": "#% increased Cold Damage", - "type": "crafted" - }, - { - "id": "crafted.stat_3372524247", - "text": "#% to Fire Resistance", - "type": "crafted" - }, - { - "id": "crafted.stat_3175163625", - "text": "#% increased Quantity of Gold Dropped by Slain Enemies", - "type": "crafted" - }, - { - "id": "crafted.stat_3035140377", - "text": "# to Level of all Attack Skills", - "type": "crafted" - }, - { - "id": "crafted.stat_691932474", - "text": "# to Accuracy Rating (Local)", - "type": "crafted" - }, - { - "id": "crafted.stat_4220027924", - "text": "#% to Cold Resistance", - "type": "crafted" - }, - { - "id": "crafted.stat_1671376347", - "text": "#% to Lightning Resistance", - "type": "crafted" - }, - { - "id": "crafted.stat_2194114101", - "text": "#% increased Critical Hit Chance for Attacks", - "type": "crafted" - } - ] - }, - { - "id": "enchant", - "label": "Enchant", - "entries": [ - { - "id": "enchant.stat_1715784068", - "text": "Players in Area are #% Delirious", - "type": "enchant" - }, - { - "id": "enchant.stat_3261801346", - "text": "# to Dexterity", - "type": "enchant" - }, - { - "id": "enchant.stat_4080418644", - "text": "# to Strength", - "type": "enchant" - }, - { - "id": "enchant.stat_3873704640", - "text": "#% increased Magic Monsters", - "type": "enchant" - }, - { - "id": "enchant.stat_328541901", - "text": "# to Intelligence", - "type": "enchant" - }, - { - "id": "enchant.stat_1671376347", - "text": "#% to Lightning Resistance", - "type": "enchant" - }, - { - "id": "enchant.stat_4220027924", - "text": "#% to Cold Resistance", - "type": "enchant" - }, - { - "id": "enchant.stat_3372524247", - "text": "#% to Fire Resistance", - "type": "enchant" - }, - { - "id": "enchant.stat_3793155082", - "text": "#% increased Rare Monsters", - "type": "enchant" - }, - { - "id": "enchant.stat_2923486259", - "text": "#% to Chaos Resistance", - "type": "enchant" - }, - { - "id": "enchant.stat_3138466258", - "text": "#% increased Tablets found in Area", - "type": "enchant" - }, - { - "id": "enchant.stat_3138466258", - "text": "#% increased Quantity of Tablets found", - "type": "enchant" - }, - { - "id": "enchant.stat_3732878551", - "text": "Rare Monsters have a #% Surpassing chance to have an additional Modifier", - "type": "enchant" - }, - { - "id": "enchant.stat_3732878551", - "text": "Rare Monsters in your Maps have a #% Surpassing chance to have an additional Modifier", - "type": "enchant" - }, - { - "id": "enchant.stat_3371085671", - "text": "Unique Monsters have # additional Rare Modifier", - "type": "enchant" - }, - { - "id": "enchant.stat_3371085671", - "text": "Unique Monsters in your Maps have # additional Rare Modifier", - "type": "enchant" - }, - { - "id": "enchant.stat_3836551197", - "text": "#% increased Stack size of Simulacrum Splinters found in Area", - "type": "enchant" - }, - { - "id": "enchant.stat_3836551197", - "text": "#% increased Stack size of Simulacrum Splinters found in your Maps", - "type": "enchant" - }, - { - "id": "enchant.stat_3639275092", - "text": "#% increased Attribute Requirements", - "type": "enchant" - }, - { - "id": "enchant.stat_789117908", - "text": "#% increased Mana Regeneration Rate", - "type": "enchant" - }, - { - "id": "enchant.stat_4015621042", - "text": "#% increased Energy Shield", - "type": "enchant" - }, - { - "id": "enchant.stat_3299347043", - "text": "# to maximum Life", - "type": "enchant" - }, - { - "id": "enchant.stat_3981240776", - "text": "# to Spirit", - "type": "enchant" - }, - { - "id": "enchant.stat_836936635", - "text": "Regenerate #% of maximum Life per second", - "type": "enchant" - }, - { - "id": "enchant.stat_803737631", - "text": "# to Accuracy Rating", - "type": "enchant" - }, - { - "id": "enchant.stat_1315743832", - "text": "#% increased Thorns damage", - "type": "enchant" - }, - { - "id": "enchant.stat_3336890334", - "text": "Adds # to # Lightning Damage", - "type": "enchant" - }, - { - "id": "enchant.stat_1509134228", - "text": "#% increased Physical Damage", - "type": "enchant" - }, - { - "id": "enchant.stat_1050105434", - "text": "# to maximum Mana", - "type": "enchant" - }, - { - "id": "enchant.stat_2694482655", - "text": "#% to Critical Damage Bonus", - "type": "enchant" - }, - { - "id": "enchant.stat_472520716", - "text": "#% of Damage taken Recouped as Mana", - "type": "enchant" - }, - { - "id": "enchant.stat_210067635", - "text": "#% increased Attack Speed (Local)", - "type": "enchant" - }, - { - "id": "enchant.stat_3429557654", - "text": "Immune to Maim", - "type": "enchant" - }, - { - "id": "enchant.stat_721014846", - "text": "You cannot be Hindered", - "type": "enchant" - }, - { - "id": "enchant.stat_1658498488", - "text": "Corrupted Blood cannot be inflicted on you", - "type": "enchant" - }, - { - "id": "enchant.stat_1444556985", - "text": "#% of Damage taken Recouped as Life", - "type": "enchant" - }, - { - "id": "enchant.stat_1436284579", - "text": "Cannot be Blinded", - "type": "enchant" - }, - { - "id": "enchant.stat_227523295", - "text": "# to Maximum Power Charges", - "type": "enchant" - }, - { - "id": "enchant.stat_1037193709", - "text": "Adds # to # Cold Damage", - "type": "enchant" - }, - { - "id": "enchant.stat_387439868", - "text": "#% increased Elemental Damage with Attacks", - "type": "enchant" - }, - { - "id": "enchant.stat_709508406", - "text": "Adds # to # Fire Damage", - "type": "enchant" - }, - { - "id": "enchant.stat_2154246560", - "text": "#% increased Damage", - "type": "enchant" - }, - { - "id": "enchant.stat_3417711605", - "text": "Damage Penetrates #% Cold Resistance", - "type": "enchant" - }, - { - "id": "enchant.stat_2162097452", - "text": "# to Level of all Minion Skills", - "type": "enchant" - }, - { - "id": "enchant.stat_3556824919", - "text": "#% increased Critical Damage Bonus", - "type": "enchant" - }, - { - "id": "enchant.stat_970213192", - "text": "#% increased Skill Speed", - "type": "enchant" - }, - { - "id": "enchant.stat_3771516363", - "text": "#% additional Physical Damage Reduction", - "type": "enchant" - }, - { - "id": "enchant.stat_3676141501", - "text": "#% to Maximum Cold Resistance", - "type": "enchant" - }, - { - "id": "enchant.stat_2223678961", - "text": "Adds # to # Chaos damage", - "type": "enchant" - }, - { - "id": "enchant.stat_3917489142", - "text": "#% increased Rarity of Items found", - "type": "enchant" - }, - { - "id": "enchant.stat_2901986750", - "text": "#% to all Elemental Resistances", - "type": "enchant" - }, - { - "id": "enchant.stat_818778753", - "text": "Damage Penetrates #% Lightning Resistance", - "type": "enchant" - }, - { - "id": "enchant.stat_1978899297", - "text": "#% to all Maximum Elemental Resistances", - "type": "enchant" - }, - { - "id": "enchant.stat_1999113824", - "text": "#% increased Evasion and Energy Shield", - "type": "enchant" - }, - { - "id": "enchant.stat_2974417149", - "text": "#% increased Spell Damage", - "type": "enchant" - }, - { - "id": "enchant.stat_3321629045", - "text": "#% increased Armour and Energy Shield", - "type": "enchant" - }, - { - "id": "enchant.stat_2653955271", - "text": "Damage Penetrates #% Fire Resistance", - "type": "enchant" - }, - { - "id": "enchant.stat_124859000", - "text": "#% increased Evasion Rating (Local)", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|57190", - "text": "Allocates Doomsayer", - "type": "enchant" - }, - { - "id": "enchant.stat_1776411443", - "text": "Break #% increased Armour", - "type": "enchant" - }, - { - "id": "enchant.stat_3780644166", - "text": "#% increased Freeze Threshold", - "type": "enchant" - }, - { - "id": "enchant.stat_680068163", - "text": "#% increased Stun Threshold", - "type": "enchant" - }, - { - "id": "enchant.stat_1062208444", - "text": "#% increased Armour (Local)", - "type": "enchant" - }, - { - "id": "enchant.stat_1725749947", - "text": "Grants # Rage on Hit", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|30456", - "text": "Allocates High Alert", - "type": "enchant" - }, - { - "id": "enchant.stat_548198834", - "text": "#% increased Melee Strike Range with this weapon", - "type": "enchant" - }, - { - "id": "enchant.stat_2763429652", - "text": "#% chance to Maim on Hit", - "type": "enchant" - }, - { - "id": "enchant.stat_3233599707", - "text": "#% increased Weapon Swap Speed", - "type": "enchant" - }, - { - "id": "enchant.stat_3650992555", - "text": "Debuffs you inflict have #% increased Slow Magnitude", - "type": "enchant" - }, - { - "id": "enchant.stat_4078695", - "text": "# to Maximum Frenzy Charges", - "type": "enchant" - }, - { - "id": "enchant.stat_2482852589", - "text": "#% increased maximum Energy Shield", - "type": "enchant" - }, - { - "id": "enchant.stat_791928121", - "text": "Causes #% increased Stun Buildup", - "type": "enchant" - }, - { - "id": "enchant.stat_2481353198", - "text": "#% increased Block chance (Local)", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|34473", - "text": "Allocates Spaghettification", - "type": "enchant" - }, - { - "id": "enchant.stat_9187492", - "text": "# to Level of all Melee Skills", - "type": "enchant" - }, - { - "id": "enchant.stat_924253255", - "text": "#% increased Slowing Potency of Debuffs on You", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|57388", - "text": "Allocates Overwhelming Strike", - "type": "enchant" - }, - { - "id": "enchant.stat_1368271171", - "text": "Gain # Mana per enemy killed", - "type": "enchant" - }, - { - "id": "enchant.stat_2301191210", - "text": "#% chance to Blind Enemies on hit", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38535", - "text": "Allocates Stormcharged", - "type": "enchant" - }, - { - "id": "enchant.stat_2106365538", - "text": "#% increased Evasion Rating", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42177", - "text": "Allocates Blurred Motion", - "type": "enchant" - }, - { - "id": "enchant.stat_3695891184", - "text": "Gain # Life per enemy killed", - "type": "enchant" - }, - { - "id": "enchant.stat_2866361420", - "text": "#% increased Armour", - "type": "enchant" - }, - { - "id": "enchant.stat_707457662", - "text": "Leech #% of Physical Attack Damage as Mana", - "type": "enchant" - }, - { - "id": "enchant.stat_2250533757", - "text": "#% increased Movement Speed", - "type": "enchant" - }, - { - "id": "enchant.stat_1011760251", - "text": "#% to Maximum Lightning Resistance", - "type": "enchant" - }, - { - "id": "enchant.stat_2557965901", - "text": "Leech #% of Physical Attack Damage as Life", - "type": "enchant" - }, - { - "id": "enchant.stat_2200293569", - "text": "Mana Flasks gain # charges per Second", - "type": "enchant" - }, - { - "id": "enchant.stat_185580205", - "text": "Charms gain # charge per Second", - "type": "enchant" - }, - { - "id": "enchant.stat_1102738251", - "text": "Life Flasks gain # charges per Second", - "type": "enchant" - }, - { - "id": "enchant.stat_1798257884", - "text": "Allies in your Presence deal #% increased Damage", - "type": "enchant" - }, - { - "id": "enchant.stat_3984865854", - "text": "#% increased Spirit", - "type": "enchant" - }, - { - "id": "enchant.stat_2451402625", - "text": "#% increased Armour and Evasion", - "type": "enchant" - }, - { - "id": "enchant.stat_1782086450", - "text": "#% faster start of Energy Shield Recharge", - "type": "enchant" - }, - { - "id": "enchant.stat_737908626", - "text": "#% increased Critical Hit Chance for Spells", - "type": "enchant" - }, - { - "id": "enchant.stat_3057012405", - "text": "Allies in your Presence have #% increased Critical Damage Bonus", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|116", - "text": "Allocates Insightfulness", - "type": "enchant" - }, - { - "id": "enchant.stat_2891184298", - "text": "#% increased Cast Speed", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|44566", - "text": "Allocates Lightning Rod", - "type": "enchant" - }, - { - "id": "enchant.stat_3885634897", - "text": "#% chance to Poison on Hit with this weapon", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|34300", - "text": "Allocates Conservative Casting", - "type": "enchant" - }, - { - "id": "enchant.stat_2122183138", - "text": "# Mana gained when you Block", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32301", - "text": "Allocates Frazzled", - "type": "enchant" - }, - { - "id": "enchant.stat_1545858329", - "text": "# to Level of all Lightning Spell Skills", - "type": "enchant" - }, - { - "id": "enchant.stat_762600725", - "text": "# Life gained when you Block", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4534", - "text": "Allocates Piercing Shot", - "type": "enchant" - }, - { - "id": "enchant.stat_1515657623", - "text": "# to Maximum Endurance Charges", - "type": "enchant" - }, - { - "id": "enchant.stat_4081947835", - "text": "Projectiles have #% chance to Chain an additional time from terrain", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|27303", - "text": "Allocates Vulgar Methods", - "type": "enchant" - }, - { - "id": "enchant.stat_293638271", - "text": "#% increased chance to Shock", - "type": "enchant" - }, - { - "id": "enchant.stat_4095671657", - "text": "#% to Maximum Fire Resistance", - "type": "enchant" - }, - { - "id": "enchant.stat_480796730", - "text": "#% to maximum Block chance", - "type": "enchant" - }, - { - "id": "enchant.stat_2968503605", - "text": "#% increased Flammability Magnitude", - "type": "enchant" - }, - { - "id": "enchant.stat_473429811", - "text": "#% increased Freeze Buildup", - "type": "enchant" - }, - { - "id": "enchant.stat_2321178454", - "text": "#% chance to Pierce an Enemy", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|55193", - "text": "Allocates Subterfuge Mask", - "type": "enchant" - }, - { - "id": "enchant.stat_44972811", - "text": "#% increased Life Regeneration rate", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|11826", - "text": "Allocates Heavy Ammunition", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|28975", - "text": "Allocates Pure Power", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|33099", - "text": "Allocates Hunter's Talisman", - "type": "enchant" - }, - { - "id": "enchant.stat_289128254", - "text": "Allies in your Presence have #% increased Cast Speed", - "type": "enchant" - }, - { - "id": "enchant.stat_1998951374", - "text": "Allies in your Presence have #% increased Attack Speed", - "type": "enchant" - }, - { - "id": "enchant.stat_591105508", - "text": "# to Level of all Fire Spell Skills", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|37266", - "text": "Allocates Nourishing Ally", - "type": "enchant" - }, - { - "id": "enchant.stat_2254480358", - "text": "# to Level of all Cold Spell Skills", - "type": "enchant" - }, - { - "id": "enchant.stat_1600707273", - "text": "# to Level of all Physical Spell Skills", - "type": "enchant" - }, - { - "id": "enchant.stat_4226189338", - "text": "# to Level of all Chaos Spell Skills", - "type": "enchant" - }, - { - "id": "enchant.stat_3885405204", - "text": "Bow Attacks fire # additional Arrows", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|50562", - "text": "Allocates Barbaric Strength", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4031", - "text": "Allocates Icebreaker", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|61703", - "text": "Allocates Sharpened Claw", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|15829", - "text": "Allocates Siphon", - "type": "enchant" - }, - { - "id": "enchant.stat_4236566306", - "text": "Meta Skills gain #% increased Energy", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|65160", - "text": "Allocates Titanic", - "type": "enchant" - }, - { - "id": "enchant.stat_3175163625", - "text": "#% increased Quantity of Gold Dropped by Slain Enemies", - "type": "enchant" - }, - { - "id": "enchant.stat_1519615863", - "text": "#% chance to cause Bleeding on Hit", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5728", - "text": "Allocates Ancient Aegis", - "type": "enchant" - }, - { - "id": "enchant.stat_3377888098", - "text": "#% increased Skill Effect Duration", - "type": "enchant" - }, - { - "id": "enchant.stat_280731498", - "text": "#% increased Area of Effect", - "type": "enchant" - }, - { - "id": "enchant.stat_3398787959", - "text": "Gain #% of Damage as Extra Chaos Damage", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|64851", - "text": "Allocates Flashy Parrying", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|24120", - "text": "Allocates Mental Toughness", - "type": "enchant" - }, - { - "id": "enchant.stat_1004011302", - "text": "#% increased Cooldown Recovery Rate", - "type": "enchant" - }, - { - "id": "enchant.stat_2353576063", - "text": "#% increased Curse Magnitudes", - "type": "enchant" - }, - { - "id": "enchant.stat_1316278494", - "text": "#% increased Warcry Speed", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|26291", - "text": "Allocates Electrifying Nature", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9226", - "text": "Allocates Mental Perseverance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|45599", - "text": "Allocates Lay Siege", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|23227", - "text": "Allocates Initiative", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56453", - "text": "Allocates Killer Instinct", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7809", - "text": "Allocates Wild Storm", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|21380", - "text": "Allocates Preemptive Strike", - "type": "enchant" - }, - { - "id": "enchant.stat_4283407333", - "text": "# to Level of all Skills", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|22864", - "text": "Allocates Tainted Strike", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|59720", - "text": "Allocates Beastial Skin", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|31172", - "text": "Allocates Falcon Technique", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43082", - "text": "Allocates Acceleration", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9736", - "text": "Allocates Insulated Treads", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|62230", - "text": "Allocates Patient Barrier", - "type": "enchant" - }, - { - "id": "enchant.stat_101878827", - "text": "#% increased Presence Area of Effect", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|64543", - "text": "Allocates Unbound Forces", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|40166", - "text": "Allocates Deep Trance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8827", - "text": "Allocates Fast Metabolism", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|44917", - "text": "Allocates Self Mortification", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|57204", - "text": "Allocates Critical Exploit", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|29527", - "text": "Allocates First Approach", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|36085", - "text": "Allocates Serrated Edges", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42077", - "text": "Allocates Essence Infusion", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32354", - "text": "Allocates Defiance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|45612", - "text": "Allocates Defensive Reflexes", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|40480", - "text": "Allocates Harmonic Generator", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|63074", - "text": "Allocates Dark Entries", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|58939", - "text": "Allocates Dispatch Foes", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32071", - "text": "Allocates Primal Growth", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|15374", - "text": "Allocates Hale Heart", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56776", - "text": "Allocates Cooked", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|19044", - "text": "Allocates Arcane Intensity", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|58016", - "text": "Allocates All Natural", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|372", - "text": "Allocates Heatproof", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|16618", - "text": "Allocates Jack of all Trades", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51606", - "text": "Allocates Freedom of Movement", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4295", - "text": "Allocates Adverse Growth", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|11578", - "text": "Allocates Spreading Shocks", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8531", - "text": "Allocates Leaping Ambush", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|18496", - "text": "Allocates Lasting Trauma", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56806", - "text": "Allocates Swift Blocking", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48006", - "text": "Allocates Devastation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|3215", - "text": "Allocates Melding", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|57047", - "text": "Allocates Polymathy", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|50062", - "text": "Allocates Barrier of Venarius", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10681", - "text": "Allocates Defensive Stance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|16256", - "text": "Allocates Ether Flow", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38537", - "text": "Allocates Heartstopping", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53853", - "text": "Allocates Backup Plan", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17955", - "text": "Allocates Careful Consideration", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38888", - "text": "Allocates Unerring Impact", - "type": "enchant" - }, - { - "id": "enchant.stat_1967051901", - "text": "Loads an additional bolt", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|50687", - "text": "Allocates Coursing Energy", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|61601", - "text": "Allocates True Strike", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|50795", - "text": "Allocates Careful Aim", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|49618", - "text": "Allocates Deadly Flourish", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|46060", - "text": "Allocates Voracious", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42302", - "text": "Allocates Split Shot", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|25482", - "text": "Allocates Beef", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|33059", - "text": "Allocates Back in Action", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|46224", - "text": "Allocates Arcane Alchemy", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|26107", - "text": "Allocates Kite Runner", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2511", - "text": "Allocates Sundering", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|65193", - "text": "Allocates Viciousness", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53150", - "text": "Allocates Sharp Sight", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|55060", - "text": "Allocates Shrapnel", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|1546", - "text": "Allocates Spiral into Depression", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|15617", - "text": "Allocates Heavy Drinker", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|63585", - "text": "Allocates Thunderstruck", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9472", - "text": "Allocates Catapult", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|65265", - "text": "Allocates Swift Interruption", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|57110", - "text": "Allocates Infused Flesh", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|27108", - "text": "Allocates Mass Hysteria", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48565", - "text": "Allocates Bringer of Order", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|22967", - "text": "Allocates Vigilance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|27388", - "text": "Allocates Aspiring Genius", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|25619", - "text": "Allocates Sand in the Eyes", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9908", - "text": "Allocates Price of Freedom", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4716", - "text": "Allocates Afterimage", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|37806", - "text": "Allocates Branching Bolts", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|37543", - "text": "Allocates Full Recovery", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42354", - "text": "Allocates Blinding Flash", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|34340", - "text": "Allocates Mass Rejuvenation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|19955", - "text": "Allocates Endless Blizzard", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8810", - "text": "Allocates Multitasking", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53294", - "text": "Allocates Burn Away", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|60269", - "text": "Allocates Roil", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|19125", - "text": "Allocates Potent Incantation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|58397", - "text": "Allocates Proficiency", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|16466", - "text": "Allocates Mental Alacrity", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|14761", - "text": "Allocates Warlord Leader", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53030", - "text": "Allocates Immolation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|46197", - "text": "Allocates Careful Assassin", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|34324", - "text": "Allocates Spectral Ward", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8660", - "text": "Allocates Reverberation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|37514", - "text": "Allocates Whirling Assault", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|46972", - "text": "Allocates Arcane Mixtures", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|19156", - "text": "Allocates Immaterial", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|40213", - "text": "Allocates Taste for Blood", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|18505", - "text": "Allocates Crushing Verdict", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17882", - "text": "Allocates Volatile Grenades", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|28329", - "text": "Allocates Pressure Points", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|41512", - "text": "Allocates Heavy Weaponry", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10998", - "text": "Allocates Strong Chin", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|30341", - "text": "Allocates Master Fletching", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17600", - "text": "Allocates Thirsting Ally", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4959", - "text": "Allocates Heavy Frost", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|25513", - "text": "Allocates Overwhelm", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38972", - "text": "Allocates Restless Dead", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|55149", - "text": "Allocates Pure Chaos", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4673", - "text": "Allocates Hulking Smash", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2021", - "text": "Allocates Wellspring", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|60083", - "text": "Allocates Pin and Run", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|20916", - "text": "Allocates Blinding Strike", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|15644", - "text": "Allocates Shedding Skin", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38479", - "text": "Allocates Close Confines", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17340", - "text": "Allocates Adrenaline Rush", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7341", - "text": "Allocates Ignore Pain", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|21206", - "text": "Allocates Explosive Impact", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|24483", - "text": "Allocates Direct Approach", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10873", - "text": "Allocates Bestial Rage", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5663", - "text": "Allocates Endurance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|54998", - "text": "Allocates Protraction", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|40270", - "text": "Allocates Frenetic", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53935", - "text": "Allocates Briny Carapace", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8791", - "text": "Allocates Sturdy Ally", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17260", - "text": "Allocates Piercing Claw", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|1087", - "text": "Allocates Shockwaves", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|52392", - "text": "Allocates Singular Purpose", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35966", - "text": "Allocates Heart Tissue", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|16626", - "text": "Allocates Impact Area", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|24753", - "text": "Allocates Determined Precision", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|37244", - "text": "Allocates Shield Expertise", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35369", - "text": "Allocates Investing Energies", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38398", - "text": "Allocates Apocalypse", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|31326", - "text": "Allocates Slow Burn", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48974", - "text": "Allocates Altered Brain Chemistry", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|12611", - "text": "Allocates Harness the Elements", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2394", - "text": "Allocates Blade Flurry", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|37742", - "text": "Allocates Manifold Method", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2999", - "text": "Allocates Final Barrage", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10265", - "text": "Allocates Javelin", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|18397", - "text": "Allocates Savoured Blood", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|65023", - "text": "Allocates Impenetrable Shell", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5284", - "text": "Allocates Shredding Force", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|24240", - "text": "Allocates Time Manipulation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17330", - "text": "Allocates Perforation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35855", - "text": "Allocates Fortifying Blood", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53823", - "text": "Allocates Towering Shield", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|20032", - "text": "Allocates Erraticism", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38053", - "text": "Allocates Deafening Cries", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4931", - "text": "Allocates Dependable Ward", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4709", - "text": "Allocates Near Sighted", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|20677", - "text": "Allocates For the Jugular", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|20388", - "text": "Allocates Regenerative Flesh", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|44330", - "text": "Allocates Coated Arms", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|47363", - "text": "Allocates Colossal Weapon", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|45488", - "text": "Allocates Cross Strike", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|61444", - "text": "Allocates Wasting Casts", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|39990", - "text": "Allocates Chronomancy", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|6304", - "text": "Allocates Stand Ground", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5227", - "text": "Allocates Escape Strategy", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|39083", - "text": "Allocates Blood Rush", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56997", - "text": "Allocates Heavy Contact", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|23764", - "text": "Allocates Alternating Current", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|18419", - "text": "Allocates Ancestral Mending", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7668", - "text": "Allocates Internal Bleeding", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|29762", - "text": "Allocates Guttural Roar", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|11838", - "text": "Allocates Dreamcatcher", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|25620", - "text": "Allocates Meat Recycling", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|26339", - "text": "Allocates Ancestral Artifice", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7302", - "text": "Allocates Echoing Pulse", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|3921", - "text": "Allocates Fate Finding", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|49550", - "text": "Allocates Prolonged Fury", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|26518", - "text": "Allocates Cold Nature", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|14934", - "text": "Allocates Spiral into Mania", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|13542", - "text": "Allocates Loose Flesh", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|37872", - "text": "Allocates Presence Present", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|40325", - "text": "Allocates Resolution", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|36507", - "text": "Allocates Vile Mending", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|27950", - "text": "Allocates Polished Iron", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7163", - "text": "Allocates Stimulants", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7395", - "text": "Allocates Retaliation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35849", - "text": "Allocates Thickened Arteries", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|13724", - "text": "Allocates Deadly Force", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51602", - "text": "Allocates Unsight", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|61404", - "text": "Allocates Equilibrium", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|34308", - "text": "Allocates Personal Touch", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|6133", - "text": "Allocates Core of the Guardian", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48774", - "text": "Allocates Taut Flesh", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|6229", - "text": "Allocates Push the Advantage", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7651", - "text": "Allocates Pierce the Heart", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|11526", - "text": "Allocates Sniper", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|31925", - "text": "Allocates Warding Fetish", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|31175", - "text": "Allocates Grip of Evil", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|45013", - "text": "Allocates Finishing Blows", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51105", - "text": "Allocates Spirit Bond", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|1352", - "text": "Allocates Unbending", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|55568", - "text": "Allocates Forthcoming", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|49088", - "text": "Allocates Splintering Force", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56999", - "text": "Allocates Locked On", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|39369", - "text": "Allocates Struck Through", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|46696", - "text": "Allocates Impair", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|19236", - "text": "Allocates Projectile Bulwark", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4627", - "text": "Allocates Climate Change", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|44005", - "text": "Allocates Casting Cascade", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|63830", - "text": "Allocates Marked for Sickness", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51446", - "text": "Allocates Leather Bound Gauntlets", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|57471", - "text": "Allocates Hunker Down", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38614", - "text": "Allocates Psychic Fragmentation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43711", - "text": "Allocates Thornhide", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|14945", - "text": "Allocates Growing Swarm", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2138", - "text": "Allocates Spiral into Insanity", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|39347", - "text": "Allocates Breaking Blows", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|62185", - "text": "Allocates Rattled", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|47418", - "text": "Allocates Warding Potions", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|14324", - "text": "Allocates Arcane Blossom", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2486", - "text": "Allocates Stars Aligned", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|19722", - "text": "Allocates Thin Ice", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|6514", - "text": "Allocates Cacophony", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|11376", - "text": "Allocates Necrotic Touch", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5580", - "text": "Allocates Watchtowers", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|57805", - "text": "Allocates Clear Space", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|31364", - "text": "Allocates Primal Protection", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|20416", - "text": "Allocates Grit", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35876", - "text": "Allocates Admonisher", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|58426", - "text": "Allocates Pocket Sand", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38342", - "text": "Allocates Stupefy", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|58714", - "text": "Allocates Grenadier", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|22626", - "text": "Allocates Irreparable", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|21164", - "text": "Allocates Fleshcrafting", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|57379", - "text": "Allocates In Your Face", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|13738", - "text": "Allocates Lightning Quick", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|27687", - "text": "Allocates Greatest Defence", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38895", - "text": "Allocates Crystal Elixir", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|33216", - "text": "Allocates Deep Wounds", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10423", - "text": "Allocates Exposed to the Inferno", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|31433", - "text": "Allocates Catalysis", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|61026", - "text": "Allocates Crystalline Flesh", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|62609", - "text": "Allocates Ancestral Unity", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|55", - "text": "Allocates Fast Acting Toxins", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51820", - "text": "Allocates Ancestral Conduits", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43396", - "text": "Allocates Ancestral Reach", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|14383", - "text": "Allocates Suffusion", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10772", - "text": "Allocates Bloodthirsty", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|1169", - "text": "Allocates Urgent Call", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|16816", - "text": "Allocates Pinpoint Shot", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|26331", - "text": "Allocates Harsh Winter", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|44756", - "text": "Allocates Marked Agility", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32507", - "text": "Allocates Cut to the Bone", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|29372", - "text": "Allocates Sudden Infuriation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42036", - "text": "Allocates Off-Balancing Retort", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|28963", - "text": "Allocates Chakra of Rhythm", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|27491", - "text": "Allocates Heavy Buffer", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|41972", - "text": "Allocates Glaciation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48103", - "text": "Allocates Forcewave", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|45632", - "text": "Allocates Mind Eraser", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|62887", - "text": "Allocates Living Death", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|25971", - "text": "Allocates Tenfold Attacks", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|26070", - "text": "Allocates Bolstering Yell", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|55847", - "text": "Allocates Ice Walls", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43939", - "text": "Allocates Melting Flames", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17548", - "text": "Allocates Moment of Truth", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51871", - "text": "Allocates Immortal Thirst", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|47782", - "text": "Allocates Steady Footing", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|46384", - "text": "Allocates Wide Barrier", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17029", - "text": "Allocates Blade Catcher", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|47441", - "text": "Allocates Stigmata", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51707", - "text": "Allocates Enhanced Reflexes", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|21537", - "text": "Allocates Fervour", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|24438", - "text": "Allocates Hardened Wood", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10602", - "text": "Allocates Reaving", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2575", - "text": "Allocates Ancestral Alacrity", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|29514", - "text": "Allocates Cluster Bombs", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|63451", - "text": "Allocates Cranial Impact", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48014", - "text": "Allocates Honourless", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|28482", - "text": "Allocates Total Incineration", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|49661", - "text": "Allocates Perfectly Placed Knife", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7062", - "text": "Allocates Reusable Ammunition", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|25711", - "text": "Allocates Thrill of Battle", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|49984", - "text": "Allocates Spellblade", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|46692", - "text": "Allocates Efficient Alchemy", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4985", - "text": "Allocates Flip the Script", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|47635", - "text": "Allocates Overload", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9187", - "text": "Allocates Escalation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10398", - "text": "Allocates Sudden Escalation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|44373", - "text": "Allocates Wither Away", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|11366", - "text": "Allocates Volcanic Skin", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|30523", - "text": "Allocates Dead can Dance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|52348", - "text": "Allocates Carved Earth", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43090", - "text": "Allocates Electrotherapy", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|54911", - "text": "Allocates Firestarter", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|64119", - "text": "Allocates Rapid Reload", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17854", - "text": "Allocates Escape Velocity", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53527", - "text": "Allocates Shattering Blow", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35564", - "text": "Allocates Turn the Clock Back", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8957", - "text": "Allocates Right Hand of Darkness", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|3188", - "text": "Allocates Revenge", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17229", - "text": "Allocates Silent Guardian", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|55180", - "text": "Allocates Relentless Fallen", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|61112", - "text": "Allocates Roll and Strike", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8483", - "text": "Allocates Ruin", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|40117", - "text": "Allocates Spiked Armour", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35809", - "text": "Allocates Reinvigoration", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|3985", - "text": "Allocates Forces of Nature", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38628", - "text": "Allocates Escalating Toxins", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5802", - "text": "Allocates Stand and Deliver", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|19442", - "text": "Allocates Prolonged Assault", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|40803", - "text": "Allocates Sigil of Ice", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|54148", - "text": "Allocates Smoke Inhalation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53921", - "text": "Allocates Unbreaking", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35477", - "text": "Allocates Far Sighted", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|21453", - "text": "Allocates Breakage", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|6178", - "text": "Allocates Power Shots", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|55835", - "text": "Allocates Exposed to the Cosmos", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|19249", - "text": "Allocates Supportive Ancestors", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|61741", - "text": "Allocates Lasting Toxins", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|63759", - "text": "Allocates Stacking Toxins", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|3567", - "text": "Allocates Raw Mana", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8904", - "text": "Allocates Death from Afar", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|60692", - "text": "Allocates Echoing Flames", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|20397", - "text": "Allocates Authority", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2645", - "text": "Allocates Skullcrusher", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|12750", - "text": "Allocates Vale Shelter", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|13980", - "text": "Allocates Split the Earth", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|50253", - "text": "Allocates Aftershocks", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|31373", - "text": "Allocates Vocal Empowerment", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|3698", - "text": "Allocates Spike Pit", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|52618", - "text": "Allocates Boon of the Beast", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|28267", - "text": "Allocates Desensitisation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9227", - "text": "Allocates Focused Thrust", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9968", - "text": "Allocates Feel the Earth", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51934", - "text": "Allocates Invocated Efficiency", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|23940", - "text": "Allocates Fortified Aegis", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42959", - "text": "Allocates Low Tolerance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|13407", - "text": "Allocates Heartbreaking", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10295", - "text": "Allocates Overzealous", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|63255", - "text": "Allocates Savagery", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|46296", - "text": "Allocates Short Shot", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|36808", - "text": "Allocates Spiked Shield", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42390", - "text": "Allocates Overheating Blow", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56893", - "text": "Allocates Thicket Warding", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|33093", - "text": "Allocates Effervescent", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8273", - "text": "Allocates Endless Circuit", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|23078", - "text": "Allocates Holy Protector", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|20414", - "text": "Allocates Reprisal", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|1823", - "text": "Allocates Illuminated Crown", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42981", - "text": "Allocates Cruel Methods", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5703", - "text": "Allocates Echoing Thunder", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|33887", - "text": "Allocates Full Salvo", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|37276", - "text": "Allocates Battle Trance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|24655", - "text": "Allocates Breath of Fire", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|46499", - "text": "Allocates Guts", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4238", - "text": "Allocates Versatile Arms", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|33240", - "text": "Allocates Lord of Horrors", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|59589", - "text": "Allocates Heavy Armour", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|60138", - "text": "Allocates Stylebender", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51509", - "text": "Allocates Waters of Life", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51891", - "text": "Allocates Lucidity", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|18086", - "text": "Allocates Breath of Ice", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|45713", - "text": "Allocates Savouring", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56063", - "text": "Allocates Lingering Horror", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|46024", - "text": "Allocates Sigil of Lightning", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|41905", - "text": "Allocates Gravedigger", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48658", - "text": "Allocates Shattering", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|26447", - "text": "Allocates Refocus", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|59303", - "text": "Allocates Lucky Rabbit Foot", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|23362", - "text": "Allocates Slippery Ice", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43677", - "text": "Allocates Crippling Toxins", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|36976", - "text": "Allocates Marked for Death", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|33978", - "text": "Allocates Unstoppable Barrier", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|19644", - "text": "Allocates Left Hand of Darkness", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|13457", - "text": "Allocates Shadow Dancing", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|27009", - "text": "Allocates Lust for Sacrifice", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|62803", - "text": "Allocates Woodland Aspect", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|23427", - "text": "Allocates Chilled to the Bone", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32664", - "text": "Allocates Chakra of Breathing", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8554", - "text": "Allocates Burning Nature", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|59541", - "text": "Allocates Necrotised Flesh", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|30392", - "text": "Allocates Succour", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|23221", - "text": "Allocates Trick Shot", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|23738", - "text": "Allocates Madness in the Bones", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35324", - "text": "Allocates Burnout", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42813", - "text": "Allocates Tides of Change", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|58183", - "text": "Allocates Blood Tearing", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35739", - "text": "Allocates Crushing Judgement", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|31189", - "text": "Allocates Unexpected Finesse", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7777", - "text": "Allocates Breaking Point", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|58096", - "text": "Allocates Lasting Incantations", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5257", - "text": "Allocates Echoing Frost", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|336", - "text": "Allocates Storm Swell", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|64443", - "text": "Allocates Impact Force", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|64240", - "text": "Allocates Battle Fever", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|13895", - "text": "Allocates Precise Point", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17254", - "text": "Allocates Spell Haste", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|39567", - "text": "Allocates Ingenuity", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|27626", - "text": "Allocates Touch the Arcane", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|36623", - "text": "Allocates Convalescence", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|62310", - "text": "Allocates Incendiary", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56616", - "text": "Allocates Desperate Times", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8831", - "text": "Allocates Tempered Mind", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|60464", - "text": "Allocates Fan the Flames", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|40345", - "text": "Allocates Master of Hexes", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|36364", - "text": "Allocates Electrocution", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|19715", - "text": "Allocates Cremation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53941", - "text": "Allocates Shimmering", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32353", - "text": "Allocates Swift Claw", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|14777", - "text": "Allocates Bravado", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43423", - "text": "Allocates Emboldened Avatar", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|934", - "text": "Allocates Natural Immunity", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|63431", - "text": "Allocates Leeching Toxins", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2335", - "text": "Allocates Turn the Clock Forward", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|12998", - "text": "Allocates Warm the Heart", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|24630", - "text": "Allocates Fulmination", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51213", - "text": "Allocates Wasting", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|14343", - "text": "Allocates Deterioration", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|36341", - "text": "Allocates Cull the Hordes", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8881", - "text": "Allocates Unforgiving", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35028", - "text": "Allocates In the Thick of It", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|30720", - "text": "Allocates Entropic Incarnation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7604", - "text": "Allocates Rapid Strike", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|44952", - "text": "Allocates Made to Last", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|16499", - "text": "Allocates Lingering Whispers", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|54937", - "text": "Allocates Vengeful Fury", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48581", - "text": "Allocates Exploit the Elements", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35581", - "text": "Allocates Near at Hand", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2863", - "text": "Allocates Perpetual Freeze", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9421", - "text": "Allocates Snowpiercer", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10029", - "text": "Allocates Repulsion", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17372", - "text": "Allocates Reaching Strike", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|41580", - "text": "Allocates Maiming Strike", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|23939", - "text": "Allocates Glazed Flesh", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|28044", - "text": "Allocates Coming Calamity", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|59214", - "text": "Allocates Fated End", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42065", - "text": "Allocates Surging Currents", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|24062", - "text": "Allocates Immortal Infamy", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|54990", - "text": "Allocates Bloodletting", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38969", - "text": "Allocates Finesse", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|3492", - "text": "Allocates Void", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|27176", - "text": "Allocates The Power Within", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|65468", - "text": "Allocates Repeating Explosives", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4447", - "text": "Allocates Pin their Motivation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|1104", - "text": "Allocates Lust for Power", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9444", - "text": "Allocates One with the Storm", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32951", - "text": "Allocates Preservation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|65016", - "text": "Allocates Intense Flames", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32976", - "text": "Allocates Gem Enthusiast", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9020", - "text": "Allocates Giantslayer", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|13708", - "text": "Allocates Curved Weapon", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|44765", - "text": "Allocates Distracting Presence", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17762", - "text": "Allocates Vengeance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|60764", - "text": "Allocates Feathered Fletching", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|40990", - "text": "Allocates Exposed to the Storm", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17150", - "text": "Allocates General's Bindings", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|6655", - "text": "Allocates Aggravation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48240", - "text": "Allocates Quick Recovery", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51129", - "text": "Allocates Pile On", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|45244", - "text": "Allocates Refills", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|27875", - "text": "Allocates General Electric", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|54805", - "text": "Allocates Hindered Capabilities", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|6544", - "text": "Allocates Burning Strikes", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|12337", - "text": "Allocates Flash Storm", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51394", - "text": "Allocates Unimpeded", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|37408", - "text": "Allocates Staunching", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|15986", - "text": "Allocates Building Toxins", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|30562", - "text": "Allocates Inner Faith", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|13823", - "text": "Allocates Controlling Magic", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|34531", - "text": "Allocates Hallowed", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|41811", - "text": "Allocates Shatter Palm", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43829", - "text": "Allocates Advanced Munitions", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38111", - "text": "Allocates Pliable Flesh", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|60034", - "text": "Allocates Falcon Dive", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5009", - "text": "Allocates Seeing Stars", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|39050", - "text": "Allocates Exploit", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|39881", - "text": "Allocates Staggering Palm", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|52199", - "text": "Allocates Overexposure", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|47270", - "text": "Allocates Inescapable Cold", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|61338", - "text": "Allocates Breath of Lightning", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|52191", - "text": "Allocates Event Horizon", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|44299", - "text": "Allocates Enhanced Barrier", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|62034", - "text": "Allocates Prism Guard", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|40073", - "text": "Allocates Drenched", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|12661", - "text": "Allocates Asceticism", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|15083", - "text": "Allocates Power Conduction", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56265", - "text": "Allocates Throatseeker", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|3894", - "text": "Allocates Eldritch Will", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|34316", - "text": "Allocates One with the River", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|3688", - "text": "Allocates Dynamism", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|52803", - "text": "Allocates Hale Traveller", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|47316", - "text": "Allocates Goring", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|61921", - "text": "Allocates Storm Surge", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|63037", - "text": "Allocates Sigil of Fire", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|40399", - "text": "Allocates Energise", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|60404", - "text": "Allocates Perfect Opportunity", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|18308", - "text": "Allocates Bleeding Out", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|21748", - "text": "Allocates Impending Doom", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|52971", - "text": "Allocates The Soul Meridian", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43139", - "text": "Allocates Stormbreaker", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|55708", - "text": "Allocates Electric Amplification", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|50485", - "text": "Allocates Zone of Control", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48418", - "text": "Allocates Hefty Unit", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|65204", - "text": "Allocates Overflowing Power", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2113", - "text": "Allocates Martial Artistry", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|49740", - "text": "Allocates Shattered Crystal", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51169", - "text": "Allocates Soul Bloom", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4547", - "text": "Allocates Unnatural Resilience", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|26563", - "text": "Allocates Bone Chains", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|31826", - "text": "Allocates Long Distance Relationship", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|52764", - "text": "Allocates Mystical Rage", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|30132", - "text": "Allocates Wrapped Quiver", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51867", - "text": "Allocates Finality", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48734", - "text": "Allocates The Howling Primate", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|50884", - "text": "Allocates Primal Sundering", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|31129", - "text": "Allocates Lifelong Friend", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|61104", - "text": "Allocates Staggering Wounds", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17664", - "text": "Allocates Decisive Retreat", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|62455", - "text": "Allocates Bannerman", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|65243", - "text": "Allocates Enveloping Presence", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|54814", - "text": "Allocates Profane Commander", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10315", - "text": "Allocates Easy Going", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|27761", - "text": "Allocates Counterstancing", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32655", - "text": "Allocates Hunting Companion", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|36630", - "text": "Allocates Incision", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|19337", - "text": "Allocates Precision Salvo", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|30748", - "text": "Allocates Controlled Chaos", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4661", - "text": "Allocates Inspiring Leader", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|12822", - "text": "Allocates Adaptable Assault", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|16150", - "text": "Allocates Inspiring Ally", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|15030", - "text": "Allocates Consistent Intake", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|22817", - "text": "Allocates Inevitable Rupture", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|20008", - "text": "Allocates Unleash Fire", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|21349", - "text": "Allocates The Quick Fox", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43791", - "text": "Allocates Rallying Icon", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7338", - "text": "Allocates Abasement", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|16790", - "text": "Allocates Efficient Casting", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|14294", - "text": "Allocates Sacrificial Blood", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|18485", - "text": "Allocates Unstable Bond", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53367", - "text": "Allocates Symbol of Defiance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|14211", - "text": "Allocates Shredding Contraptions", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43944", - "text": "Allocates Instability", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42714", - "text": "Allocates Thousand Cuts", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42032", - "text": "Allocates Escalating Mayhem", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|33585", - "text": "Allocates Unspoken Bond", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5335", - "text": "Allocates Shimmering Mirage", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|60992", - "text": "Allocates Nurturing Guardian", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|30408", - "text": "Allocates Efficient Contraptions", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38459", - "text": "Allocates Disorientation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|44293", - "text": "Allocates Hastening Barrier", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|94", - "text": "Allocates Efficient Killing", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32543", - "text": "Allocates Unhindered", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5332", - "text": "Allocates Crystallised Immunities", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|41753", - "text": "Allocates Evocational Practitioner", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56493", - "text": "Allocates Agile Succession", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8782", - "text": "Allocates Empowering Infusions", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56767", - "text": "Allocates Electrifying Daze", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43088", - "text": "Allocates Agonising Calamity", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|36931", - "text": "Allocates Concussive Attack", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5410", - "text": "Allocates Channelled Heritage", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|27513", - "text": "Allocates Material Solidification", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42760", - "text": "Allocates Chakra of Stability", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42103", - "text": "Allocates Enduring Deflection", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56488", - "text": "Allocates Glancing Deflection", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35031", - "text": "Allocates Chakra of Life", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56988", - "text": "Allocates Electric Blood", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|64525", - "text": "Allocates Easy Target", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38570", - "text": "Allocates Demolitionist", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|12412", - "text": "Allocates Temporal Mastery", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8896", - "text": "Allocates Agile Sprinter", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|50912", - "text": "Allocates Imbibed Power", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|750", - "text": "Allocates Tribal Fury", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|29288", - "text": "Allocates Deadly Invocations", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|36333", - "text": "Allocates Explosive Empowerment", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48215", - "text": "Allocates Headshot", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|11392", - "text": "Allocates Molten Being", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|29306", - "text": "Allocates Chakra of Thought", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|25362", - "text": "Allocates Chakra of Impact", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|63579", - "text": "Allocates Momentum", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2397", - "text": "Allocates Last Stand", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|40687", - "text": "Allocates Lead by Example", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|58215", - "text": "Allocates Sanguimantic Rituals", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35792", - "text": "Allocates Blood of Rage", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42245", - "text": "Allocates Efficient Inscriptions", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9290", - "text": "Allocates Rusted Pins", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10499", - "text": "Allocates Necromantic Ward", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|338", - "text": "Allocates Invocated Limit", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|50673", - "text": "Allocates Avoiding Deflection", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|41033", - "text": "Allocates Utmost Offering", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7275", - "text": "Allocates Electrocuting Exposure", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|59208", - "text": "Allocates Frantic Fighter", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|64650", - "text": "Allocates Wary Dodging", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|46683", - "text": "Allocates Inherited Strength ", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53187", - "text": "Allocates Warlord Berserker", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53131", - "text": "Allocates Tukohama's Brew", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35560", - "text": "Allocates At your Command", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|47514", - "text": "Allocates Dizzying Hits", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9896", - "text": "Allocates Heartstopping Presence", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7847", - "text": "Allocates The Fabled Stag", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53185", - "text": "Allocates The Winter Owl", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|47088", - "text": "Allocates Sic 'Em", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9652", - "text": "Allocates Mending Deflection", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|52245", - "text": "Allocates Distant Dreamer", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|34908", - "text": "Allocates Staunch Deflection", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|31745", - "text": "Allocates Lockdown", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38965", - "text": "Allocates Infused Limits", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|13524", - "text": "Allocates Everlasting Glory", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|49150", - "text": "Allocates Precise Invocations", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|57785", - "text": "Allocates Trained Turrets", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|24766", - "text": "Allocates Paranoia", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|1603", - "text": "Allocates Storm Driven", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|50715", - "text": "Allocates Frozen Limit", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|24087", - "text": "Allocates Everlasting Infusions", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|34553", - "text": "Allocates Emboldening Lead", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|37302", - "text": "Allocates Kept at Bay", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|55131", - "text": "Allocates Light on your Feet", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|15443", - "text": "Allocates Endured Suffering", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10774", - "text": "Allocates Unyielding", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|41394", - "text": "Allocates Invigorating Archon", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7782", - "text": "Allocates Rupturing Pins", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42347", - "text": "Allocates Chakra of Sight", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|62963", - "text": "Allocates Flamewalker", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|64415", - "text": "Allocates Shattering Daze", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|29800", - "text": "Allocates Shocking Limit", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|15991", - "text": "Allocates Embodiment of Lightning", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|23736", - "text": "Allocates Spray and Pray", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48617", - "text": "Allocates Hunter", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4544", - "text": "Allocates The Ancient Serpent", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|20511", - "text": "Allocates Cremating Cries", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|63541", - "text": "Allocates Brush Off", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53683", - "text": "Allocates Efficient Loading", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|11774", - "text": "Allocates The Spring Hare", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5594", - "text": "Allocates Decrepifying Curse", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|45751", - "text": "Allocates Frightening Shield", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|31773", - "text": "Allocates Resurging Archon", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|63400", - "text": "Allocates Chakra of Elements", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|27434", - "text": "Allocates Archon of the Storm", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|45177", - "text": "Allocates Strike True", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|40292", - "text": "Allocates Nimble Strength", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|24764", - "text": "Allocates Infusing Power", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|59070", - "text": "Allocates Enduring Archon", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|28613", - "text": "Allocates Roaring Cries", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|34425", - "text": "Allocates Precise Volatility", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43633", - "text": "Allocates Energising Archon", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8607", - "text": "Allocates Lavianga's Brew", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|12906", - "text": "Allocates Sitting Duck", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|51868", - "text": "Allocates Molten Carapace", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5642", - "text": "Allocates Behemoth", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|28542", - "text": "Allocates The Molten One's Gift", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56112", - "text": "Allocates Extinguishing Exhalation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17825", - "text": "Allocates Tactical Retreat", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53607", - "text": "Allocates Fortified Location", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|34543", - "text": "Allocates The Frenzied Bear", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4810", - "text": "Allocates Sanguine Tolerance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|58817", - "text": "Allocates Artillery Strike", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56388", - "text": "Allocates Reinforced Rallying", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|61354", - "text": "Allocates Infernal Limit", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48524", - "text": "Allocates Blood Transfusion", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5686", - "text": "Allocates Chillproof", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|63739", - "text": "Allocates Vigorous Remnants", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32799", - "text": "Allocates Captivating Companionship", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|50023", - "text": "Allocates Invigorating Grandeur", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56016", - "text": "Allocates Passthrough Rounds", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|20251", - "text": "Allocates Splitting Ground", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|41620", - "text": "Allocates Bear's Roar", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|52180", - "text": "Allocates Trained Deflection", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10612", - "text": "Allocates Embodiment of Frost", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4579", - "text": "Allocates Unbothering Cold", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|60273", - "text": "Allocates Hindering Obstacles", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17303", - "text": "Allocates Utility Ordnance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|52257", - "text": "Allocates Conductive Embrace", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|18157", - "text": "Allocates Tempered Defences", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|25211", - "text": "Allocates Waning Hindrances", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|19546", - "text": "Allocates Favourable Odds", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|26356", - "text": "Allocates Primed to Explode", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|45329", - "text": "Allocates Delayed Danger", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10500", - "text": "Allocates Dazing Blocks", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|28441", - "text": "Allocates Frantic Swings", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32721", - "text": "Allocates Distracted Target", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|34541", - "text": "Allocates Energising Deflection", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|33922", - "text": "Allocates Stripped Defences", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|23630", - "text": "Allocates Self Immolation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|64659", - "text": "Allocates Lasting Boons", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|13515", - "text": "Allocates Stormwalker", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8397", - "text": "Allocates Empowering Remains", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|65256", - "text": "Allocates Widespread Coverage", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|47420", - "text": "Allocates Expendable Army", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53566", - "text": "Allocates Run and Gun", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|23244", - "text": "Allocates Bounty Hunter", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2745", - "text": "Allocates The Noble Wolf", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9928", - "text": "Allocates Embracing Frost", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|64050", - "text": "Allocates Marathon Runner", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|46124", - "text": "Allocates Arcane Remnants", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|24491", - "text": "Allocates Invocated Echoes", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|22811", - "text": "Allocates The Wild Cat", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|52229", - "text": "Allocates Secrets of the Orb", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|4331", - "text": "Allocates Guided Hand", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|33229", - "text": "Allocates Haemorrhaging Cuts", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35918", - "text": "Allocates One For All", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56860", - "text": "Allocates Resolute Reprisal", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|46365", - "text": "Allocates Gigantic Following", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48699", - "text": "Allocates Frostwalker", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|50392", - "text": "Allocates Brute Strength", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|29899", - "text": "Allocates Finish Them", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|22532", - "text": "Allocates Fearful Paralysis", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32151", - "text": "Allocates Crystalline Resistance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|13482", - "text": "Allocates Punctured Lung", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|54031", - "text": "Allocates The Great Boar", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|63031", - "text": "Allocates Glorious Anticipation", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2134", - "text": "Allocates Toxic Tolerance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42045", - "text": "Allocates Archon of the Blizzard", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7449", - "text": "Allocates Splinters", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|40985", - "text": "Allocates Empowering Remnants", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|52684", - "text": "Allocates Eroding Chains", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32448", - "text": "Allocates Shockproof", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|12964", - "text": "Allocates Lone Warrior", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|44753", - "text": "Allocates One With Flame", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|45370", - "text": "Allocates The Raging Ox", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|15606", - "text": "Allocates Thrill of the Fight", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|26479", - "text": "Allocates Steadfast Resolve", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43854", - "text": "Allocates All For One", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2843", - "text": "Allocates Tolerant Equipment", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|21784", - "text": "Allocates Pack Encouragement", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|59387", - "text": "Allocates Infusion of Power", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7128", - "text": "Allocates Dangerous Blossom", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42660", - "text": "Allocates Commanding Rage", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|25753", - "text": "Allocates Blazing Arms", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32932", - "text": "Allocates Ichlotl's Inferno", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48925", - "text": "Allocates Blessing of the Moon", - "type": "enchant" - }, - { - "id": "enchant.stat_2017682521", - "text": "#% increased Pack Size", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|29881", - "text": "Allocates Surging Beast", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|8916", - "text": "Allocates Bashing Beast", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|30546", - "text": "Allocates Electrified Claw", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|20558", - "text": "Allocates Among the Hordes", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17725", - "text": "Allocates Bonded Precision", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|16940", - "text": "Allocates Arcane Nature", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|57921", - "text": "Allocates Wolf's Howl", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|33542", - "text": "Allocates Quick Fingers", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9328", - "text": "Allocates Spirit of the Bear", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38532", - "text": "Allocates Thirst for Power", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2814", - "text": "Allocates Engineered Blaze", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|1506", - "text": "Allocates Remnant Attraction", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|59433", - "text": "Allocates Thirst for Endurance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|28892", - "text": "Allocates Primal Rage", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43584", - "text": "Allocates Flare", - "type": "enchant" - }, - { - "id": "enchant.stat_2306002879", - "text": "#% increased Rarity of Items found", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|39884", - "text": "Allocates Searing Heat", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|31724", - "text": "Allocates Iron Slippers", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|60619", - "text": "Allocates Scales of the Wyvern", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35417", - "text": "Allocates Wyvern's Breath", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|33730", - "text": "Allocates Focused Channel", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|55375", - "text": "Allocates Licking Wounds", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|36100", - "text": "Allocates Molten Claw", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|53265", - "text": "Allocates Nature's Bite", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|42070", - "text": "Allocates Saqawal's Guidance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|49214", - "text": "Allocates Blood of the Wolf", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|55817", - "text": "Allocates Alchemical Oil", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|26104", - "text": "Allocates Spirit of the Wyvern", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|57617", - "text": "Allocates Shifted Strikes", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|48649", - "text": "Allocates Insulating Hide", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|7542", - "text": "Allocates Encompassing Domain", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|58198", - "text": "Allocates Well of Power", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|14602", - "text": "Allocates Specialised Shots", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|46182", - "text": "Allocates Intense Dose", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|59938", - "text": "Allocates Against the Elements", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|18959", - "text": "Allocates Ruinic Helm", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|20289", - "text": "Allocates Frozen Claw", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|41935", - "text": "Allocates Hide of the Bear", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|16142", - "text": "Allocates Deep Freeze", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|11886", - "text": "Allocates Mauling Stuns", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9323", - "text": "Allocates Craving Slaughter", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|12245", - "text": "Allocates Arsonist", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|10727", - "text": "Allocates Emboldening Casts", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56714", - "text": "Allocates Swift Flight", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|38329", - "text": "Allocates Biting Frost", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|1502", - "text": "Allocates Draiocht Cleansing", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56237", - "text": "Allocates Enhancing Attacks", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|55308", - "text": "Allocates Sling Shots", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|54640", - "text": "Allocates Constricting", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|44974", - "text": "Allocates Hail", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9009", - "text": "Allocates Return to Nature", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32858", - "text": "Allocates Dread Engineer's Concoction", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|2344", - "text": "Allocates Dimensional Weakspot", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35618", - "text": "Allocates Cold Coat", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|30395", - "text": "Allocates Howling Beast", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|3348", - "text": "Allocates Spirit of the Wolf", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|15114", - "text": "Allocates Boundless Growth", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|28408", - "text": "Allocates Invigorating Hate", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|55450", - "text": "Allocates Rallying Form", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|45777", - "text": "Allocates Hidden Barb", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9535", - "text": "Allocates Brinerot Ferocity", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|43250", - "text": "Allocates Adaptive Skin", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|261", - "text": "Allocates Toxic Sludge", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|47560", - "text": "Allocates Multi Shot", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|17696", - "text": "Allocates Augmented Flesh", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|45874", - "text": "Allocates Proliferating Weeds", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35743", - "text": "Allocates Saqawal's Hide", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|31955", - "text": "Allocates Voll's Protection", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|59438", - "text": "Allocates Flow of Life", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|35046", - "text": "Allocates Mystic Avalanche", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|62237", - "text": "Allocates Saqawal's Talon", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|27704", - "text": "Allocates Grace of the Ancestors", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|13844", - "text": "Allocates Growing Peril", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|34617", - "text": "Allocates Conall the Hunted", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|22726", - "text": "Allocates Storm's Rebuke", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|32128", - "text": "Allocates Flow of Time", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|20686", - "text": "Allocates Paragon", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|44573", - "text": "Allocates Disciplined Training", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|33400", - "text": "Allocates Reverberating Parry", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|37967", - "text": "Allocates Desert's Scorn", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|56666", - "text": "Allocates Thaumaturgic Generator", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|34478", - "text": "Allocates Bond of the Viper", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|5191", - "text": "Allocates Bond of the Wolf", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|26926", - "text": "Allocates Archon of Undeath", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|14258", - "text": "Allocates Puppet Master chance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|21213", - "text": "Allocates Cirel of Tarth's Light", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|58894", - "text": "Allocates Dominus' Providence", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|39911", - "text": "Allocates Frantic Reach", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|1420", - "text": "Allocates Dizzying Sweep", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|15825", - "text": "Allocates Bhatair's Storm", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|26214", - "text": "Allocates Dominion", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|59781", - "text": "Allocates Embodiment of Death", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|712", - "text": "Allocates Bond of the Ape", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|37846", - "text": "Allocates Bastion of Light", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|59657", - "text": "Allocates First Teachings of the Keeper", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|3663", - "text": "Allocates Kaom's Blessing", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|64770", - "text": "Allocates Morgana, the Storm Seer", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|39568", - "text": "Allocates Magnum Opus", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|24736", - "text": "Allocates Knight of Chitus", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|9863", - "text": "Allocates Knight of Izaro", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|1448", - "text": "Allocates Bond of the Cat", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|49356", - "text": "Allocates First Principle of the Hollow", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|21251", - "text": "Allocates Replenishing Horde", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|50239", - "text": "Allocates Mutewind Agility", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|47853", - "text": "Allocates Bond of the Mamba", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|27779", - "text": "Allocates Lord of the Squall", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|62210", - "text": "Allocates Puppet Master chance", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|11184", - "text": "Allocates Zarokh's Gift", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|25361", - "text": "Allocates Resolute Reach", - "type": "enchant" - }, - { - "id": "enchant.stat_2954116742|62431", - "text": "Allocates Anticipation", - "type": "enchant" - } - ] - }, - { - "id": "rune", - "label": "Augment", - "entries": [ - { - "id": "rune.stat_2280525771", - "text": "Bonded: # to maximum Life", - "type": "augment" - }, - { - "id": "rune.stat_2926029365", - "text": "Bonded: # to maximum Mana", - "type": "augment" - }, - { - "id": "rune.stat_3523867985", - "text": "#% increased Armour, Evasion and Energy Shield", - "type": "augment" - }, - { - "id": "rune.stat_1039491398", - "text": "Bonded: #% increased effect of Fully Broken Armour", - "type": "augment" - }, - { - "id": "rune.stat_1509134228", - "text": "#% increased Physical Damage", - "type": "augment" - }, - { - "id": "rune.stat_3372524247", - "text": "#% to Fire Resistance", - "type": "augment" - }, - { - "id": "rune.stat_1671376347", - "text": "#% to Lightning Resistance", - "type": "augment" - }, - { - "id": "rune.stat_4220027924", - "text": "#% to Cold Resistance", - "type": "augment" - }, - { - "id": "rune.stat_2923486259", - "text": "#% to Chaos Resistance", - "type": "augment" - }, - { - "id": "rune.stat_2901986750", - "text": "#% to all Elemental Resistances", - "type": "augment" - }, - { - "id": "rune.stat_2430860292", - "text": "Bonded: #% increased Magnitude of Shock you inflict", - "type": "augment" - }, - { - "id": "rune.stat_3336890334", - "text": "Adds # to # Lightning Damage", - "type": "augment" - }, - { - "id": "rune.stat_789117908", - "text": "#% increased Mana Regeneration Rate", - "type": "augment" - }, - { - "id": "rune.stat_3299347043", - "text": "# to maximum Life", - "type": "augment" - }, - { - "id": "rune.stat_1817052494", - "text": "Bonded: #% increased Freeze Buildup", - "type": "augment" - }, - { - "id": "rune.stat_1037193709", - "text": "Adds # to # Cold Damage", - "type": "augment" - }, - { - "id": "rune.stat_387439868", - "text": "#% increased Elemental Damage with Attacks", - "type": "augment" - }, - { - "id": "rune.stat_1857162058", - "text": "Bonded: #% increased Ignite Magnitude", - "type": "augment" - }, - { - "id": "rune.stat_2694482655", - "text": "#% to Critical Damage Bonus", - "type": "augment" - }, - { - "id": "rune.stat_1050105434", - "text": "# to maximum Mana", - "type": "augment" - }, - { - "id": "rune.stat_2748665614", - "text": "#% increased maximum Mana", - "type": "augment" - }, - { - "id": "rune.stat_709508406", - "text": "Adds # to # Fire Damage", - "type": "augment" - }, - { - "id": "rune.stat_210067635", - "text": "#% increased Attack Speed (Local)", - "type": "augment" - }, - { - "id": "rune.stat_2310741722", - "text": "#% increased Life and Mana Recovery from Flasks", - "type": "augment" - }, - { - "id": "rune.stat_836936635", - "text": "Regenerate #% of maximum Life per second", - "type": "augment" - }, - { - "id": "rune.stat_2974417149", - "text": "#% increased Spell Damage", - "type": "augment" - }, - { - "id": "rune.stat_4064396395", - "text": "Attacks with this Weapon Penetrate #% Elemental Resistances", - "type": "augment" - }, - { - "id": "rune.stat_3990135792", - "text": "Bonded: Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", - "type": "augment" - }, - { - "id": "rune.stat_2246411426", - "text": "Bonded: #% increased maximum Life", - "type": "augment" - }, - { - "id": "rune.stat_55876295", - "text": "Leeches #% of Physical Damage as Life", - "type": "augment" - }, - { - "id": "rune.stat_328541901", - "text": "# to Intelligence", - "type": "augment" - }, - { - "id": "rune.stat_4080418644", - "text": "# to Strength", - "type": "augment" - }, - { - "id": "rune.stat_1586906534", - "text": "Bonded: #% increased maximum Mana", - "type": "augment" - }, - { - "id": "rune.stat_983749596", - "text": "#% increased maximum Life", - "type": "augment" - }, - { - "id": "rune.stat_669069897", - "text": "Leeches #% of Physical Damage as Mana", - "type": "augment" - }, - { - "id": "rune.stat_3261801346", - "text": "# to Dexterity", - "type": "augment" - }, - { - "id": "rune.stat_731403740", - "text": "Gain #% of Damage as Extra Damage of all Elements", - "type": "augment" - }, - { - "id": "rune.stat_90012347", - "text": "Adds # to # Lightning Damage against Shocked Enemies", - "type": "augment" - }, - { - "id": "rune.stat_3823333703", - "text": "Bonded: #% increased Damage against Immobilised Enemies", - "type": "augment" - }, - { - "id": "rune.stat_791928121", - "text": "Causes #% increased Stun Buildup", - "type": "augment" - }, - { - "id": "rune.stat_859085781", - "text": "Bonded: Attacks have #% to Critical Hit Chance", - "type": "augment" - }, - { - "id": "rune.stat_691932474", - "text": "# to Accuracy Rating (Local)", - "type": "augment" - }, - { - "id": "rune.stat_3788647247", - "text": "Bonded: #% to Maximum Lightning Resistance", - "type": "augment" - }, - { - "id": "rune.stat_124131830", - "text": "# to Level of all Spell Skills", - "type": "augment" - }, - { - "id": "rune.stat_2913012734", - "text": "Convert #% of Requirements to Intelligence", - "type": "augment" - }, - { - "id": "rune.stat_915769802", - "text": "# to Stun Threshold", - "type": "augment" - }, - { - "id": "rune.stat_1981392722", - "text": "Bonded: Regenerate #% of maximum Life per second", - "type": "augment" - }, - { - "id": "rune.stat_3695891184", - "text": "Gain # Life per enemy killed", - "type": "augment" - }, - { - "id": "rune.stat_2561960218", - "text": "Bonded: #% of Skill Mana Costs Converted to Life Costs", - "type": "augment" - }, - { - "id": "rune.stat_1368271171", - "text": "Gain # Mana per enemy killed", - "type": "augment" - }, - { - "id": "rune.stat_1712188793", - "text": "Bonded: #% chance to gain an additional random Charge when you gain a Charge", - "type": "augment" - }, - { - "id": "rune.stat_3175163625", - "text": "#% increased Quantity of Gold Dropped by Slain Enemies", - "type": "augment" - }, - { - "id": "rune.stat_2250533757", - "text": "#% increased Movement Speed", - "type": "augment" - }, - { - "id": "rune.stat_3278136794", - "text": "Gain #% of Damage as Extra Lightning Damage", - "type": "augment" - }, - { - "id": "rune.stat_737908626", - "text": "#% increased Critical Hit Chance for Spells", - "type": "augment" - }, - { - "id": "rune.stat_232299587", - "text": "Bonded: #% increased Cooldown Recovery Rate", - "type": "augment" - }, - { - "id": "rune.stat_2546200564", - "text": "Bonded: #% increased Duration of Elemental Ailments on Enemies", - "type": "augment" - }, - { - "id": "rune.stat_4221147896", - "text": "Bonded: #% increased Critical Damage Bonus", - "type": "augment" - }, - { - "id": "rune.stat_681332047", - "text": "#% increased Attack Speed", - "type": "augment" - }, - { - "id": "rune.stat_165746512", - "text": "Bonded: #% increased Slowing Potency of Debuffs on You", - "type": "augment" - }, - { - "id": "rune.stat_3981240776", - "text": "# to Spirit", - "type": "augment" - }, - { - "id": "rune.stat_1482283017", - "text": "Bonded: Fissure Skills have +# to Limit", - "type": "augment" - }, - { - "id": "rune.stat_3032590688", - "text": "Adds # to # Physical Damage to Attacks", - "type": "augment" - }, - { - "id": "rune.stat_975988108", - "text": "Bonded: Archon recovery period expires #% faster", - "type": "augment" - }, - { - "id": "rune.stat_4095671657", - "text": "#% to Maximum Fire Resistance", - "type": "augment" - }, - { - "id": "rune.stat_1611856026", - "text": "Bonded: Minions have #% increased Cooldown Recovery Rate for Command Skills", - "type": "augment" - }, - { - "id": "rune.stat_3984865854", - "text": "#% increased Spirit", - "type": "augment" - }, - { - "id": "rune.stat_3412619569", - "text": "Bonded: #% increased Damage while Shapeshifted", - "type": "augment" - }, - { - "id": "rune.stat_1798257884", - "text": "Allies in your Presence deal #% increased Damage", - "type": "augment" - }, - { - "id": "rune.stat_3909696841", - "text": "Bonded: #% chance when collecting an Elemental Infusion to gain an\nadditional Elemental Infusion of the same type", - "type": "augment" - }, - { - "id": "rune.stat_293638271", - "text": "#% increased chance to Shock", - "type": "augment" - }, - { - "id": "rune.stat_3738367433", - "text": "Bonded: Adds # to # Physical Damage to Attacks", - "type": "augment" - }, - { - "id": "rune.stat_3398787959", - "text": "Gain #% of Damage as Extra Chaos Damage", - "type": "augment" - }, - { - "id": "rune.stat_532897212", - "text": "Bonded: #% increased Mana Cost Efficiency while on Low Mana", - "type": "augment" - }, - { - "id": "rune.stat_2891184298", - "text": "#% increased Cast Speed", - "type": "augment" - }, - { - "id": "rune.stat_3885405204", - "text": "Bow Attacks fire # additional Arrows", - "type": "augment" - }, - { - "id": "rune.stat_1496740334", - "text": "Convert #% of Requirements to Dexterity", - "type": "augment" - }, - { - "id": "rune.stat_243313994", - "text": "Bonded: # to Level of all Attack Skills", - "type": "augment" - }, - { - "id": "rune.stat_1631975646", - "text": "Bonded: #% increased Projectile Speed", - "type": "augment" - }, - { - "id": "rune.stat_2077615515", - "text": "#% increased Attack Damage against Rare or Unique Enemies", - "type": "augment" - }, - { - "id": "rune.stat_2505884597", - "text": "Gain #% of Damage as Extra Cold Damage", - "type": "augment" - }, - { - "id": "rune.stat_408302348", - "text": "Bonded: #% to Maximum Fire Resistance", - "type": "augment" - }, - { - "id": "rune.stat_1030153674", - "text": "Recover #% of maximum Mana on Kill", - "type": "augment" - }, - { - "id": "rune.stat_3015669065", - "text": "Gain #% of Damage as Extra Fire Damage", - "type": "augment" - }, - { - "id": "rune.stat_635535560", - "text": "Bonded: Gain #% of Damage as Extra Physical Damage", - "type": "augment" - }, - { - "id": "rune.stat_4042480703", - "text": "Bonded: #% to Maximum Cold Resistance", - "type": "augment" - }, - { - "id": "rune.stat_2910761524", - "text": "#% chance for Spell Skills to fire 2 additional Projectiles", - "type": "augment" - }, - { - "id": "rune.stat_1805633363", - "text": "#% increased Reservation Efficiency of Minion Skills", - "type": "augment" - }, - { - "id": "rune.stat_839375491", - "text": "Bonded: Minions Revive #% faster", - "type": "augment" - }, - { - "id": "rune.stat_2481353198", - "text": "#% increased Block chance (Local)", - "type": "augment" - }, - { - "id": "rune.stat_280731498", - "text": "#% increased Area of Effect", - "type": "augment" - }, - { - "id": "rune.stat_2729035954", - "text": "Bonded: #% increased Reservation Efficiency of Companion Skills", - "type": "augment" - }, - { - "id": "rune.stat_807013157", - "text": "Bonded: Every Rage also grants #% increased Spell Damage", - "type": "augment" - }, - { - "id": "rune.stat_4254029169", - "text": "Bonded: Meta Skills have #% increased Reservation Efficiency", - "type": "augment" - }, - { - "id": "rune.stat_1597408611", - "text": "Bonded: Prevent #% of Damage from Deflected Hits", - "type": "augment" - }, - { - "id": "rune.stat_3308150554", - "text": "Bonded: Adds # to # Fire damage to Attacks", - "type": "augment" - }, - { - "id": "rune.stat_1556124492", - "text": "Convert #% of Requirements to Strength", - "type": "augment" - }, - { - "id": "rune.stat_782230869", - "text": "#% increased Magnitude of Non-Damaging Ailments you inflict", - "type": "augment" - }, - { - "id": "rune.stat_1984310483", - "text": "Enemies you Curse take #% increased Damage", - "type": "augment" - }, - { - "id": "rune.stat_1519615863", - "text": "#% chance to cause Bleeding on Hit", - "type": "augment" - }, - { - "id": "rune.stat_970213192", - "text": "#% increased Skill Speed", - "type": "augment" - }, - { - "id": "rune.stat_1299166504", - "text": "Bonded: #% increased Reservation Efficiency of Herald Skills", - "type": "augment" - }, - { - "id": "rune.stat_1381474422", - "text": "#% increased Magnitude of Damaging Ailments you inflict", - "type": "augment" - }, - { - "id": "rune.stat_3855016469", - "text": "Hits against you have #% reduced Critical Damage Bonus", - "type": "augment" - }, - { - "id": "rune.stat_263495202", - "text": "#% increased Cost Efficiency", - "type": "augment" - }, - { - "id": "rune.stat_3544800472", - "text": "#% increased Elemental Ailment Threshold", - "type": "augment" - }, - { - "id": "rune.stat_2986637363", - "text": "Bonded: #% increased Duration of Damaging Ailments on Enemies", - "type": "augment" - }, - { - "id": "rune.stat_3266426611", - "text": "Bonded: #% increased Thorns damage", - "type": "augment" - }, - { - "id": "rune.stat_1382805233", - "text": "#% increased Deflection Rating while moving", - "type": "augment" - }, - { - "id": "rune.stat_1782086450", - "text": "#% faster start of Energy Shield Recharge", - "type": "augment" - }, - { - "id": "rune.stat_827242569", - "text": "Bonded: # to maximum Energy Shield", - "type": "augment" - }, - { - "id": "rune.stat_1004011302", - "text": "#% increased Cooldown Recovery Rate", - "type": "augment" - }, - { - "id": "rune.stat_2339757871", - "text": "#% increased Energy Shield Recharge Rate", - "type": "augment" - }, - { - "id": "rune.stat_542243093", - "text": "Bonded: #% increased Warcry Cooldown Recovery Rate", - "type": "augment" - }, - { - "id": "rune.stat_2709367754", - "text": "Gain # Rage on Melee Hit", - "type": "augment" - }, - { - "id": "rune.stat_3885634897", - "text": "#% chance to Poison on Hit with this weapon", - "type": "augment" - }, - { - "id": "rune.stat_3898665772", - "text": "Bonded: #% increased Quantity of Gold Dropped by Slain Enemies", - "type": "augment" - }, - { - "id": "rune.stat_3917489142", - "text": "#% increased Rarity of Items found", - "type": "augment" - }, - { - "id": "rune.stat_757050353", - "text": "# to # Lightning Thorns damage", - "type": "augment" - }, - { - "id": "rune.stat_458438597", - "text": "#% of Damage is taken from Mana before Life", - "type": "augment" - }, - { - "id": "rune.stat_310945763", - "text": "#% increased Life Cost Efficiency", - "type": "augment" - }, - { - "id": "rune.stat_2100249038", - "text": "Bonded: #% of Maximum Life Converted to Energy Shield", - "type": "augment" - }, - { - "id": "rune.stat_2023107756", - "text": "Recover #% of maximum Life on Kill", - "type": "augment" - }, - { - "id": "rune.stat_3311629379", - "text": "Bonded: #% increased Critical Hit Chance while Shapeshifted", - "type": "augment" - }, - { - "id": "rune.stat_1181501418", - "text": "# to Maximum Rage", - "type": "augment" - }, - { - "id": "rune.stat_144568384", - "text": "Bonded: #% increased Skill Speed while Shapeshifted", - "type": "augment" - }, - { - "id": "rune.stat_3144895835", - "text": "Bonded: #% increased Magnitude of Bleeding on You", - "type": "augment" - }, - { - "id": "rune.stat_3166958180", - "text": "#% increased Magnitude of Bleeding you inflict", - "type": "augment" - }, - { - "id": "rune.stat_2134854700", - "text": "Bonded: #% chance for Damage of Enemies Hitting you to be Unlucky", - "type": "augment" - }, - { - "id": "rune.stat_473429811", - "text": "#% increased Freeze Buildup", - "type": "augment" - }, - { - "id": "rune.stat_674141348", - "text": "Bonded: #% increased Attack Damage while Shapeshifted", - "type": "augment" - }, - { - "id": "rune.stat_774059442", - "text": "# to maximum Runic Ward", - "type": "augment" - }, - { - "id": "rune.stat_2336012075", - "text": "Bonded: #% increased Mana Cost Efficiency", - "type": "augment" - }, - { - "id": "rune.stat_3377888098", - "text": "#% increased Skill Effect Duration", - "type": "augment" - }, - { - "id": "rune.stat_3854332662", - "text": "Bonded: #% increased Area of Effect of Curses", - "type": "augment" - }, - { - "id": "rune.stat_763465498", - "text": "Bonded: #% increased Charm Charges gained", - "type": "augment" - }, - { - "id": "rune.stat_953010920", - "text": "Bonded: #% to all Elemental Resistances", - "type": "augment" - }, - { - "id": "rune.stat_3407849389", - "text": "#% reduced effect of Curses on you", - "type": "augment" - }, - { - "id": "rune.stat_3666934677", - "text": "#% increased Experience gain", - "type": "augment" - }, - { - "id": "rune.stat_2103650854", - "text": "#% increased effect of Arcane Surge on you", - "type": "augment" - }, - { - "id": "rune.stat_1419386315", - "text": "Bonded: Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - "type": "augment" - }, - { - "id": "rune.stat_624954515", - "text": "#% increased Accuracy Rating", - "type": "augment" - }, - { - "id": "rune.stat_924253255", - "text": "#% increased Slowing Potency of Debuffs on You", - "type": "augment" - }, - { - "id": "rune.stat_217649179", - "text": "Bonded: #% increased Curse Magnitudes", - "type": "augment" - }, - { - "id": "rune.stat_101878827", - "text": "#% increased Presence Area of Effect", - "type": "augment" - }, - { - "id": "rune.stat_3449499156", - "text": "Bonded: Minions have #% increased Area of Effect", - "type": "augment" - }, - { - "id": "rune.stat_3655769732", - "text": "#% to Quality of all Skills", - "type": "augment" - }, - { - "id": "rune.stat_1250712710", - "text": "Allies in your Presence have #% increased Critical Hit Chance", - "type": "augment" - }, - { - "id": "rune.stat_3489782002", - "text": "# to maximum Energy Shield", - "type": "augment" - }, - { - "id": "rune.stat_289128254", - "text": "Allies in your Presence have #% increased Cast Speed", - "type": "augment" - }, - { - "id": "rune.stat_1998951374", - "text": "Allies in your Presence have #% increased Attack Speed", - "type": "augment" - }, - { - "id": "rune.stat_1444556985", - "text": "#% of Damage taken Recouped as Life", - "type": "augment" - }, - { - "id": "rune.stat_2916861134", - "text": "#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", - "type": "augment" - }, - { - "id": "rune.stat_3057012405", - "text": "Allies in your Presence have #% increased Critical Damage Bonus", - "type": "augment" - }, - { - "id": "rune.stat_3973629633", - "text": "#% increased Withered Magnitude", - "type": "augment" - }, - { - "id": "rune.stat_3227486464", - "text": "Bonded: Remnants you create have #% increased effect", - "type": "augment" - }, - { - "id": "rune.stat_2353576063", - "text": "#% increased Curse Magnitudes", - "type": "augment" - }, - { - "id": "rune.stat_2011656677", - "text": "#% increased Poison Duration", - "type": "augment" - }, - { - "id": "rune.stat_1236190486", - "text": "Bonded: #% increased effect of Archon Buffs on you", - "type": "augment" - }, - { - "id": "rune.stat_2854751904", - "text": "Allies in your Presence deal # to # added Attack Lightning Damage", - "type": "augment" - }, - { - "id": "rune.stat_3286003349", - "text": "Bonded: Storm Skills have +# to Limit", - "type": "augment" - }, - { - "id": "rune.stat_554899692", - "text": "# Charm Slot (Global)", - "type": "augment" - }, - { - "id": "rune.stat_2703838669", - "text": "#% increased Movement Speed per 15 Spirit, up to a maximum of 40%\nOther Modifiers to Movement Speed except for Sprinting do not apply", - "type": "augment" - }, - { - "id": "rune.stat_3351086592", - "text": "Bonded: #% to Chaos Resistance", - "type": "augment" - }, - { - "id": "rune.stat_1574590649", - "text": "Allies in your Presence deal # to # added Attack Physical Damage", - "type": "augment" - }, - { - "id": "rune.stat_2200571612", - "text": "#% of Armour also applies to Lightning Damage", - "type": "augment" - }, - { - "id": "rune.stat_1755296234", - "text": "Targets can be affected by # of your Poisons at the same time", - "type": "augment" - }, - { - "id": "rune.stat_915264788", - "text": "#% increased Thorns Critical Hit Chance", - "type": "augment" - }, - { - "id": "rune.stat_3585532255", - "text": "#% increased Charm Charges gained", - "type": "augment" - }, - { - "id": "rune.stat_3891661462", - "text": "Bonded: #% increased Magnitude of Non-Damaging Ailments you inflict", - "type": "augment" - }, - { - "id": "rune.stat_2074866941", - "text": "#% increased Exposure Effect", - "type": "augment" - }, - { - "id": "rune.stat_3373098634", - "text": "Bonded: Remnants can be collected from #% further away", - "type": "augment" - }, - { - "id": "rune.stat_649025131", - "text": "#% increased Movement Speed when on Low Life", - "type": "augment" - }, - { - "id": "rune.stat_3759663284", - "text": "#% increased Projectile Speed", - "type": "augment" - }, - { - "id": "rune.stat_264750496", - "text": "Bonded: #% of Damage taken Recouped as Life", - "type": "augment" - }, - { - "id": "rune.stat_1011760251", - "text": "#% to Maximum Lightning Resistance", - "type": "augment" - }, - { - "id": "rune.stat_770672621", - "text": "Minions have #% increased maximum Life", - "type": "augment" - }, - { - "id": "rune.stat_826685275", - "text": "Bonded: #% of Armour also applies to Elemental Damage while Shapeshifted", - "type": "augment" - }, - { - "id": "rune.stat_3897831687", - "text": "#% of Armour also applies to Fire Damage", - "type": "augment" - }, - { - "id": "rune.stat_3676141501", - "text": "#% to Maximum Cold Resistance", - "type": "augment" - }, - { - "id": "rune.stat_3850614073", - "text": "Allies in your Presence have #% to all Elemental Resistances", - "type": "augment" - }, - { - "id": "rune.stat_2663359259", - "text": "#% increased total Power counted by Warcries", - "type": "augment" - }, - { - "id": "rune.stat_1947060170", - "text": "#% of Armour also applies to Cold Damage", - "type": "augment" - }, - { - "id": "rune.stat_2363593824", - "text": "#% increased speed of Recoup Effects", - "type": "augment" - }, - { - "id": "rune.stat_2968503605", - "text": "#% increased Flammability Magnitude", - "type": "augment" - }, - { - "id": "rune.stat_2573124363", - "text": "Bonded: # to Armour", - "type": "augment" - }, - { - "id": "rune.stat_3742865955", - "text": "Minions deal #% increased Damage with Command Skills", - "type": "augment" - }, - { - "id": "rune.stat_687156079", - "text": "# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", - "type": "augment" - }, - { - "id": "rune.stat_3678845069", - "text": "Attacks with this Weapon have #% chance to inflict Exposure", - "type": "augment" - }, - { - "id": "rune.stat_3533065815", - "text": "Bonded: # to Evasion Rating", - "type": "augment" - }, - { - "id": "rune.stat_3537994888", - "text": "#% chance when you gain a Power Charge to gain an additional Power Charge", - "type": "augment" - }, - { - "id": "rune.stat_2223678961", - "text": "Adds # to # Chaos damage", - "type": "augment" - }, - { - "id": "rune.stat_1197632982", - "text": "# to Armour per 1 Spirit", - "type": "augment" - }, - { - "id": "rune.stat_1112792773", - "text": "Bonded: #% increased Immobilisation buildup", - "type": "augment" - }, - { - "id": "rune.stat_3378643287", - "text": "Bonded: #% increased Exposure Effect", - "type": "augment" - }, - { - "id": "rune.stat_3824372849", - "text": "#% increased Curse Duration", - "type": "augment" - }, - { - "id": "rune.stat_416040624", - "text": "Gain additional Stun Threshold equal to #% of maximum Energy Shield", - "type": "augment" - }, - { - "id": "rune.stat_1728593484", - "text": "Bonded: Minions deal #% increased Damage", - "type": "augment" - }, - { - "id": "rune.stat_1528013281", - "text": "Bonded: Projectiles have #% chance for an additional Projectile when Forking", - "type": "augment" - }, - { - "id": "rune.stat_3473409233", - "text": "Lose #% of maximum Life per second while Sprinting", - "type": "augment" - }, - { - "id": "rune.stat_1433756169", - "text": "Minions gain #% of their Physical Damage as Extra Lightning Damage", - "type": "augment" - }, - { - "id": "rune.stat_2410766865", - "text": "Bonded: #% increased Life Regeneration rate while Shapeshifted", - "type": "augment" - }, - { - "id": "rune.stat_1772929282", - "text": "Enemies you Curse have #% to Chaos Resistance", - "type": "augment" - }, - { - "id": "rune.stat_4010677958", - "text": "Allies in your Presence Regenerate # Life per second", - "type": "augment" - }, - { - "id": "rune.stat_3107707789", - "text": "#% increased Movement Speed while Sprinting", - "type": "augment" - }, - { - "id": "rune.stat_2241849004", - "text": "Energy Shield Recharge starts after spending a total of\n 2000 Mana, no more than once every 2 seconds", - "type": "augment" - }, - { - "id": "rune.stat_1228682002", - "text": "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", - "type": "augment" - }, - { - "id": "rune.stat_4236566306", - "text": "Meta Skills gain #% increased Energy", - "type": "augment" - }, - { - "id": "rune.stat_2269618934", - "text": "Bonded: Gain #% of maximum Life as Extra maximum Runic Ward", - "type": "augment" - }, - { - "id": "rune.stat_4128954176", - "text": "Bonded: #% increased Elemental Ailment Threshold", - "type": "augment" - }, - { - "id": "rune.stat_1238227257", - "text": "Debuffs on you expire #% faster", - "type": "augment" - }, - { - "id": "rune.stat_4258524206", - "text": "#% chance to build an additional Combo on Hit", - "type": "augment" - }, - { - "id": "rune.stat_831559873", - "text": "Bonded: #% increased Guard gained", - "type": "augment" - }, - { - "id": "rune.stat_4058552370", - "text": "Bonded: Invocated Spells have #% chance to consume half as much Energy", - "type": "augment" - }, - { - "id": "rune.stat_280497929", - "text": "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", - "type": "augment" - }, - { - "id": "rune.stat_2876843277", - "text": "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", - "type": "augment" - }, - { - "id": "rune.stat_155735928", - "text": "Bonded: #% increased Glory generation", - "type": "augment" - }, - { - "id": "rune.stat_1441491952", - "text": "Bonded: #% reduced Shock duration on you", - "type": "augment" - }, - { - "id": "rune.stat_3801067695", - "text": "#% reduced effect of Shock on you", - "type": "augment" - }, - { - "id": "rune.stat_901007505", - "text": "Bonded: Minions have #% to all Elemental Resistances", - "type": "augment" - }, - { - "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" - }, - { - "id": "rune.stat_234296660", - "text": "Companions deal #% increased Damage", - "type": "augment" - }, - { - "id": "rune.stat_889552744", - "text": "Minions take #% of Physical Damage as Lightning Damage", - "type": "augment" - }, - { - "id": "rune.stat_935518591", - "text": "Critical Hit chance is Lucky against Parried enemies", - "type": "augment" - }, - { - "id": "rune.stat_3570773271", - "text": "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", - "type": "augment" - }, - { - "id": "rune.stat_1374654984", - "text": "#% of Physical Damage prevented Recouped as Life", - "type": "augment" - }, - { - "id": "rune.stat_3552135623", - "text": "Prevent #% of Damage from Deflected Hits", - "type": "augment" - }, - { - "id": "rune.stat_594547430", - "text": "Remove a Damaging Ailment when you use a Command Skill", - "type": "augment" - }, - { - "id": "rune.stat_3734640451", - "text": "Adds # to # Cold Damage against Chilled Enemies", - "type": "augment" - }, - { - "id": "rune.stat_4282982513", - "text": "Increases and Reductions to Movement Speed also\n apply to Energy Shield Recharge Rate", - "type": "augment" - }, - { - "id": "rune.stat_1256853273", - "text": "Bonded: Hits against you have #% reduced Critical Damage Bonus", - "type": "augment" - }, - { - "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" - }, - { - "id": "rune.stat_1585886916", - "text": "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", - "type": "augment" - }, - { - "id": "rune.stat_3837226732", - "text": "Bonded: #% increased Attack Speed while missing Runic Ward", - "type": "augment" - }, - { - "id": "rune.stat_457982334", - "text": "Bonded: #% increased Global Armour, Evasion and Energy Shield", - "type": "augment" - }, - { - "id": "rune.stat_2191621386", - "text": "#% of Armour also applies to Chaos Damage while on full Energy Shield", - "type": "augment" - }, - { - "id": "rune.stat_162036024", - "text": "1% increased Energy Shield Recharge Rate per # maximum Runic Ward", - "type": "augment" - }, - { - "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" - }, - { - "id": "rune.stat_1911097163", - "text": "Allies in your Presence Regenerate #% of your Maximum Life per second", - "type": "augment" - }, - { - "id": "rune.stat_627339348", - "text": "Adds # to # Fire Damage to Attacks against Ignited Enemies", - "type": "augment" - }, - { - "id": "rune.stat_3134782172", - "text": "Bonded: Regenerate #% of maximum Energy Shield per second", - "type": "augment" - }, - { - "id": "rune.stat_2392260628", - "text": "#% increased Runic Ward Regeneration Rate", - "type": "augment" - }, - { - "id": "rune.stat_2420303482", - "text": "Bonded: Regenerate # Runic Ward per second", - "type": "augment" - }, - { - "id": "rune.stat_1570901920", - "text": "Bonded: Gain #% of Physical Damage as extra Chaos Damage", - "type": "augment" - }, - { - "id": "rune.stat_201058524", - "text": "Bonded: #% increased Archon Buff duration", - "type": "augment" - }, - { - "id": "rune.stat_3398301358", - "text": "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - "type": "augment" - }, - { - "id": "rune.stat_1549287843", - "text": "Projectiles have #% chance to Fork", - "type": "augment" - }, - { - "id": "rune.stat_2001460689", - "text": "Bonded: Gain additional Stun Threshold equal to #% of maximum Energy Shield", - "type": "augment" - }, - { - "id": "rune.stat_1978899297", - "text": "#% to all Maximum Elemental Resistances", - "type": "augment" - }, - { - "id": "rune.stat_282990844", - "text": "+# to Deflection Rating per 10 maximum Runic Ward", - "type": "augment" - }, - { - "id": "rune.stat_3331247603", - "text": "Bonded: #% increased amount of Life Leeched", - "type": "augment" - }, - { - "id": "rune.stat_851475033", - "text": "Bonded: #% increased Armour if you haven't Dodge Rolled Recently", - "type": "augment" - }, - { - "id": "rune.stat_258119672", - "text": "# metre to Dodge Roll distance", - "type": "augment" - }, - { - "id": "rune.stat_2586152168", - "text": "Archon recovery period expires #% faster", - "type": "augment" - }, - { - "id": "rune.stat_3414796717", - "text": "Bonded: #% increased Attack Speed", - "type": "augment" - }, - { - "id": "rune.stat_53045048", - "text": "# to Evasion Rating (Local)", - "type": "augment" - }, - { - "id": "rune.stat_1480688478", - "text": "One of your Persistent Minions revives when an Offering expires", - "type": "augment" - }, - { - "id": "rune.stat_4052037485", - "text": "# to maximum Energy Shield (Local)", - "type": "augment" - }, - { - "id": "rune.stat_3484657501", - "text": "# to Armour (Local)", - "type": "augment" - }, - { - "id": "rune.stat_3482326075", - "text": "Remnants can be collected from #% further away", - "type": "augment" - }, - { - "id": "rune.stat_1995345015", - "text": "Gain maximum Runic Ward equal to #% of this Weapon's maximum damage", - "type": "augment" - }, - { - "id": "rune.stat_1999910726", - "text": "Remnants you create have #% increased effect", - "type": "augment" - }, - { - "id": "rune.stat_2231410646", - "text": "A random Skill that requires Glory generates #% of its maximum Glory when your Marks Activate", - "type": "augment" - }, - { - "id": "rune.stat_1693515857", - "text": "Gain #% of Damage as Extra Physical Damage per ten percent missing Mana", - "type": "augment" - }, - { - "id": "rune.stat_1568578715", - "text": "Bonded: Charms gain # charge per Second", - "type": "augment" - }, - { - "id": "rune.stat_1963589548", - "text": "Every 4 seconds, gain Guard equal to #% of maximum Runic Ward for 2 seconds", - "type": "augment" - }, - { - "id": "rune.stat_2480498143", - "text": "#% of Skill Mana Costs Converted to Life Costs", - "type": "augment" - }, - { - "id": "rune.stat_3143918757", - "text": "#% increased Glory generation", - "type": "augment" - }, - { - "id": "rune.stat_1555237944", - "text": "#% chance when you gain a Charge to gain an additional Charge", - "type": "augment" - }, - { - "id": "rune.stat_1777925108", - "text": "Bonded: #% increased Attack Speed while your Companion is in your Presence", - "type": "augment" - }, - { - "id": "rune.stat_3515226849", - "text": "Recover #% of maximum Runic Ward when one of your Reviving Minions is Killed", - "type": "augment" - }, - { - "id": "rune.stat_1678831767", - "text": "Recover # Life when you Block", - "type": "augment" - }, - { - "id": "rune.stat_666077204", - "text": "Companions have #% increased Attack Speed", - "type": "augment" - }, - { - "id": "rune.stat_3903510399", - "text": "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", - "type": "augment" - }, - { - "id": "rune.stat_1937310173", - "text": "You Recoup #% of Damage taken by your Offerings as Life", - "type": "augment" - }, - { - "id": "rune.stat_3040571529", - "text": "#% increased Deflection Rating", - "type": "augment" - }, - { - "id": "rune.stat_834058335", - "text": "Bonded: Minions have #% increased Movement Speed", - "type": "augment" - }, - { - "id": "rune.stat_386720106", - "text": "Gain #% of maximum Life as Extra maximum Runic Ward", - "type": "augment" - }, - { - "id": "rune.stat_2608793552", - "text": "Break Armour equal to #% of maximum Runic Ward", - "type": "augment" - }, - { - "id": "rune.stat_1083521623", - "text": "Bonded: Break #% increased Armour", - "type": "augment" - }, - { - "id": "rune.stat_3091578504", - "text": "Minions have #% increased Attack and Cast Speed", - "type": "augment" - }, - { - "id": "rune.stat_2463230181", - "text": "#% Surpassing chance to fire an additional Arrow", - "type": "augment" - }, - { - "id": "rune.stat_267552601", - "text": "Spell damage Penetrates #% of enemy Elemental Resistances while on Low Runic Ward", - "type": "augment" - }, - { - "id": "rune.stat_51757548", - "text": "Bonded: #% increased Armour and Evasion Rating when on Low Life", - "type": "augment" - }, - { - "id": "rune.stat_330530785", - "text": "#% increased Immobilisation buildup", - "type": "augment" - }, - { - "id": "rune.stat_1134865274", - "text": "Bonded: #% to Quality of all Skills", - "type": "augment" - }, - { - "id": "rune.stat_1919509054", - "text": "Your Energy Shield Recharge starts when your Minions are Reformed", - "type": "augment" - }, - { - "id": "rune.stat_538981065", - "text": "Grenades have #% chance to activate a second time", - "type": "augment" - }, - { - "id": "rune.stat_726496846", - "text": "Idols socketed in this item gain the benefits of their Bonded modifiers", - "type": "augment" - }, - { - "id": "rune.stat_2352183092", - "text": "Bonded: #% increased Mana Recovery rate while your Companion is in your Presence", - "type": "augment" - }, - { - "id": "rune.stat_4063732952", - "text": "#% increased Spell Damage while your Companion is in your Presence", - "type": "augment" - }, - { - "id": "rune.stat_2453678274", - "text": "Bonded: #% increased Crossbow Reload Speed", - "type": "augment" - }, - { - "id": "rune.stat_3448627618", - "text": "Bonded: #% to Cold Resistance", - "type": "augment" - }, - { - "id": "rune.stat_1392112423", - "text": "#% increased Armour and Evasion Rating while on Low Runic Ward", - "type": "augment" - }, - { - "id": "rune.stat_4129869957", - "text": "Bonded: #% increased Endurance, Frenzy and Power Charge Duration", - "type": "augment" - }, - { - "id": "rune.stat_830161081", - "text": "#% increased Runic Ward", - "type": "augment" - }, - { - "id": "rune.stat_2905013875", - "text": "Bonded: Recover #% of Maximum Mana when you collect a Remnant", - "type": "augment" - }, - { - "id": "rune.stat_3037261703", - "text": "Bonded: #% increased Elemental Damage", - "type": "augment" - }, - { - "id": "rune.stat_4168500604", - "text": "Bonded: #% increased Life and Mana Recovery from Flasks", - "type": "augment" - }, - { - "id": "rune.stat_451260031", - "text": "Bonded: # to maximum number of Elemental Infusions", - "type": "augment" - }, - { - "id": "rune.stat_2328443419", - "text": "#% chance to create an additional Remnant", - "type": "augment" - }, - { - "id": "rune.stat_731781020", - "text": "Flasks gain # charges per Second", - "type": "augment" - }, - { - "id": "rune.stat_1020945697", - "text": "#% less maximum Life", - "type": "augment" - }, - { - "id": "rune.stat_1823959929", - "text": "Bonded: Recover #% of maximum Life when one of your Minions is Revived", - "type": "augment" - }, - { - "id": "rune.stat_1404850498", - "text": "Bonded: #% to all Maximum Elemental Resistances while on full Runic Ward", - "type": "augment" - }, - { - "id": "rune.stat_4012965551", - "text": "Bonded: Banner Skills have #% increased Aura Magnitudes", - "type": "augment" - }, - { - "id": "rune.stat_2797971005", - "text": "Gain # Life per Enemy Hit with Attacks", - "type": "augment" - }, - { - "id": "rune.stat_820939409", - "text": "Gain # Mana per Enemy Hit with Attacks", - "type": "augment" - }, - { - "id": "rune.stat_2590797182", - "text": "#% increased Movement Speed Penalty from using Skills while moving", - "type": "augment" - }, - { - "id": "rune.stat_540694930", - "text": "Minions in your Presence have Onslaught while you are on Low Runic Ward", - "type": "augment" - }, - { - "id": "rune.stat_2691854696", - "text": "Bonded: Damage of Enemies Hitting you is Unlucky if\nyour Runic Ward has been damaged Recently", - "type": "augment" - }, - { - "id": "rune.stat_3035971497", - "text": "Attacks spend #% of your maximum Runic Ward if possible to gain that much added Physical damage", - "type": "augment" - }, - { - "id": "rune.stat_4058681894", - "text": "You have no Critical Damage Bonus", - "type": "augment" - }, - { - "id": "rune.stat_610569665", - "text": "# to Spirit per 2 Levels", - "type": "augment" - }, - { - "id": "rune.stat_3444646646", - "text": "Gain # Druidic Prowess when you Heavy Stun a Rare or Unique Enemy", - "type": "augment" - }, - { - "id": "rune.stat_3038857346", - "text": "Bonded: #% increased Stun Buildup", - "type": "augment" - }, - { - "id": "rune.stat_103706408", - "text": "Rolls only the minimum or maximum Damage value for Physical Damage", - "type": "augment" - }, - { - "id": "rune.stat_1751756891", - "text": "Bonded: #% increased Runic Ward Cost Efficiency", - "type": "augment" - }, - { - "id": "rune.stat_3435915371", - "text": "Bonded: #% increased Spirit Reservation Efficiency", - "type": "augment" - }, - { - "id": "rune.stat_2704225257", - "text": "# to Spirit", - "type": "augment" - }, - { - "id": "rune.stat_1756854510", - "text": "Bonded: #% increased Stun Recovery", - "type": "augment" - }, - { - "id": "rune.stat_587431675", - "text": "#% increased Critical Hit Chance", - "type": "augment" - } - ] - }, - { - "id": "desecrated", - "label": "Desecrated", - "entries": [ - { - "id": "desecrated.stat_1050105434", - "text": "# to maximum Mana", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3299347043", - "text": "# to maximum Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3015669065", - "text": "Gain #% of Damage as Extra Fire Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2910761524", - "text": "#% chance for Spell Skills to fire 2 additional Projectiles", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3291658075", - "text": "#% increased Cold Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4220027924", - "text": "#% to Cold Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3372524247", - "text": "#% to Fire Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4015621042", - "text": "#% increased Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3336890334", - "text": "Adds # to # Lightning Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3917489142", - "text": "#% increased Rarity of Items found", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4052037485", - "text": "# to maximum Energy Shield (Local)", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1671376347", - "text": "#% to Lightning Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2901986750", - "text": "#% to all Elemental Resistances", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3984865854", - "text": "#% increased Spirit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1195319608", - "text": "#% increased Energy Shield from Equipped Body Armour", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1509134228", - "text": "#% increased Physical Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2974417149", - "text": "#% increased Spell Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_53045048", - "text": "# to Evasion Rating (Local)", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3325883026", - "text": "# Life Regeneration per second", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3465022881", - "text": "#% to Lightning and Chaos Resistances", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1999113824", - "text": "#% increased Evasion and Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3032590688", - "text": "Adds # to # Physical Damage to Attacks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1535626285", - "text": "# to Strength and Intelligence", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2250533757", - "text": "#% increased Movement Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2891184298", - "text": "#% increased Cast Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3981240776", - "text": "# to Spirit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3261801346", - "text": "# to Dexterity", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1754445556", - "text": "Adds # to # Lightning damage to Attacks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_124859000", - "text": "#% increased Evasion Rating (Local)", - "type": "desecrated" - }, - { - "id": "desecrated.stat_378817135", - "text": "#% to Fire and Chaos Resistances", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1573130764", - "text": "Adds # to # Fire damage to Attacks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2482852589", - "text": "#% increased maximum Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3556824919", - "text": "#% increased Critical Damage Bonus", - "type": "desecrated" - }, - { - "id": "desecrated.stat_681332047", - "text": "#% increased Attack Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_587431675", - "text": "#% increased Critical Hit Chance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_328541901", - "text": "# to Intelligence", - "type": "desecrated" - }, - { - "id": "desecrated.stat_737908626", - "text": "#% increased Critical Hit Chance for Spells", - "type": "desecrated" - }, - { - "id": "desecrated.stat_55876295", - "text": "Leeches #% of Physical Damage as Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4067062424", - "text": "Adds # to # Cold damage to Attacks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3141070085", - "text": "#% increased Elemental Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3393628375", - "text": "#% to Cold and Chaos Resistances", - "type": "desecrated" - }, - { - "id": "desecrated.stat_274716455", - "text": "#% increased Critical Spell Damage Bonus", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3278136794", - "text": "Gain #% of Damage as Extra Lightning Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2231156303", - "text": "#% increased Lightning Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_691932474", - "text": "# to Accuracy Rating (Local)", - "type": "desecrated" - }, - { - "id": "desecrated.stat_736967255", - "text": "#% increased Chaos Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_915769802", - "text": "# to Stun Threshold", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3891355829|1", - "text": "Upgrades Radius to Medium", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3714003708", - "text": "#% increased Critical Damage Bonus for Attack Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_789117908", - "text": "#% increased Mana Regeneration Rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2505884597", - "text": "Gain #% of Damage as Extra Cold Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_210067635", - "text": "#% increased Attack Speed (Local)", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3033371881", - "text": "Gain Deflection Rating equal to #% of Evasion Rating", - "type": "desecrated" - }, - { - "id": "desecrated.stat_53386210", - "text": "#% increased Spirit Reservation Efficiency", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3491815140", - "text": "#% increased Spell Damage per 100 Maximum Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2923486259", - "text": "#% to Chaos Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3484657501", - "text": "# to Armour (Local)", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1940865751", - "text": "Adds # to # Physical Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3176481473", - "text": "#% increased Spell Damage while on Full Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1782086450", - "text": "#% faster start of Energy Shield Recharge", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2194114101", - "text": "#% increased Critical Hit Chance for Attacks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1202301673", - "text": "# to Level of all Projectile Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_387439868", - "text": "#% increased Elemental Damage with Attacks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3793155082", - "text": "#% increased Rare Monsters", - "type": "desecrated" - }, - { - "id": "desecrated.stat_416040624", - "text": "Gain additional Stun Threshold equal to #% of maximum Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_970213192", - "text": "#% increased Skill Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_518292764", - "text": "#% to Critical Hit Chance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1241625305", - "text": "#% increased Damage with Bow Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_234296660", - "text": "Companions deal #% increased Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4080418644", - "text": "# to Strength", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2725205297", - "text": "#% increased Magnitude of Unholy Might buffs you grant", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2106365538", - "text": "#% increased Evasion Rating", - "type": "desecrated" - }, - { - "id": "desecrated.stat_709508406", - "text": "Adds # to # Fire Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2023107756", - "text": "Recover #% of maximum Life on Kill", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1062208444", - "text": "#% increased Armour (Local)", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2527686725", - "text": "#% increased Magnitude of Shock you inflict", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3759663284", - "text": "#% increased Projectile Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_693180608", - "text": "#% increased Damage while your Companion is in your Presence", - "type": "desecrated" - }, - { - "id": "desecrated.stat_153777645", - "text": "#% increased Area of Effect of Curses", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2604619892", - "text": "#% increased Duration of Elemental Ailments on Enemies", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1368271171", - "text": "Gain # Mana per enemy killed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2339757871", - "text": "#% increased Energy Shield Recharge Rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2694482655", - "text": "#% to Critical Damage Bonus", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3695891184", - "text": "Gain # Life per enemy killed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1373860425", - "text": "#% increased Spell Damage with Spells that cost Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3321629045", - "text": "#% increased Armour and Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1604736568", - "text": "Recover #% of maximum Mana on Kill (Jewel)", - "type": "desecrated" - }, - { - "id": "desecrated.stat_803737631", - "text": "# to Accuracy Rating", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3962278098", - "text": "#% increased Fire Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3490187949", - "text": "Area contains # additional Abysses", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2451402625", - "text": "#% increased Armour and Evasion", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3489782002", - "text": "# to maximum Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2144192055", - "text": "# to Evasion Rating", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1136768410", - "text": "#% increased Cast Speed when on Low Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3398787959", - "text": "Gain #% of Damage as Extra Chaos Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_986397080", - "text": "#% reduced Ignite Duration on you", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1839076647", - "text": "#% increased Projectile Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1379411836", - "text": "# to all Attributes", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3932115504", - "text": "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1037193709", - "text": "Adds # to # Cold Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2704225257", - "text": "# to Spirit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_538848803", - "text": "# to Strength and Dexterity", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1589917703", - "text": "Minions deal #% increased Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3377888098", - "text": "#% increased Skill Effect Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2300185227", - "text": "# to Dexterity and Intelligence", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3362812763", - "text": "#% of Armour also applies to Elemental Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_666077204", - "text": "Companions have #% increased Attack Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1200678966", - "text": "#% increased bonuses gained from Equipped Quiver", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3544050945", - "text": "#% of Spell Mana Cost Converted to Life Cost", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2843214518", - "text": "#% increased Attack Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1004011302", - "text": "#% increased Cooldown Recovery Rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2321178454", - "text": "#% chance to Pierce an Enemy", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3509362078", - "text": "#% increased Evasion Rating from Equipped Body Armour", - "type": "desecrated" - }, - { - "id": "desecrated.stat_707457662", - "text": "Leech #% of Physical Attack Damage as Mana", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3759735052", - "text": "#% increased Attack Speed with Bows", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4256531808", - "text": "Abyss Pits in Area are twice as likely to have Rewards", - "type": "desecrated" - }, - { - "id": "desecrated.stat_669069897", - "text": "Leeches #% of Physical Damage as Mana", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1168851547", - "text": "Natural Rare Monsters in Area have # extra Abyssal Modifier", - "type": "desecrated" - }, - { - "id": "desecrated.stat_101878827", - "text": "#% increased Presence Area of Effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_944630113", - "text": "Abysses spawn #% increased Monsters", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4246007234", - "text": "#% increased Attack Damage while on Low Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2337295272", - "text": "Minions deal #% increased Damage if you've Hit Recently", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4188894176", - "text": "#% increased Damage with Bows", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2557965901", - "text": "Leech #% of Physical Attack Damage as Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1854213750", - "text": "Minions have #% increased Critical Damage Bonus", - "type": "desecrated" - }, - { - "id": "desecrated.stat_360553763", - "text": "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2741291867", - "text": "Area is overrun by the Abyssal", - "type": "desecrated" - }, - { - "id": "desecrated.stat_918325986", - "text": "#% increased Skill Speed while Shapeshifted", - "type": "desecrated" - }, - { - "id": "desecrated.stat_656461285", - "text": "#% increased Intelligence", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3561837752", - "text": "#% of Leech is Instant", - "type": "desecrated" - }, - { - "id": "desecrated.stat_243380454", - "text": "# additional Rare Monsters are spawned from Abysses", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2866361420", - "text": "#% increased Armour", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2768835289", - "text": "#% increased Spell Physical Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4101445926", - "text": "#% increased Mana Cost Efficiency", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2706625504", - "text": "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1444556985", - "text": "#% of Damage taken Recouped as Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2162097452", - "text": "# to Level of all Minion Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3563080185", - "text": "#% increased Culling Strike Threshold", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1263695895", - "text": "#% increased Light Radius", - "type": "desecrated" - }, - { - "id": "desecrated.stat_458438597", - "text": "#% of Damage is taken from Mana before Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2158617060", - "text": "#% increased Archon Buff duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3067892458", - "text": "Triggered Spells deal #% increased Spell Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1015576579", - "text": "#% increased Armour from Equipped Body Armour", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2353576063", - "text": "#% increased Curse Magnitudes", - "type": "desecrated" - }, - { - "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" - }, - { - "id": "desecrated.stat_293638271", - "text": "#% increased chance to Shock", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3544800472", - "text": "#% increased Elemental Ailment Threshold", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3174700878", - "text": "#% increased Energy Shield from Equipped Focus", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1798257884", - "text": "Allies in your Presence deal #% increased Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2278777540", - "text": "Abysses lead to an Abyssal Depths", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1772929282", - "text": "Enemies you Curse have #% to Chaos Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1772247089", - "text": "#% increased chance to inflict Ailments", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1303248024", - "text": "#% increased Magnitude of Ailments you inflict", - "type": "desecrated" - }, - { - "id": "desecrated.stat_324210709", - "text": "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1827854662", - "text": "Area contains an additional Incubator Queen", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3639275092", - "text": "#% increased Attribute Requirements", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4019237939", - "text": "Gain #% of Damage as Extra Physical Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1999910726", - "text": "Remnants you create have #% increased effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2387539034", - "text": "Attacks with this Weapon Penetrate #% Lightning Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3398301358", - "text": "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4139681126", - "text": "#% increased Dexterity", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3091578504", - "text": "Minions have #% increased Attack and Cast Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_436406826", - "text": "Players are Marked for Death for # seconds\nafter killing a Rare or Unique monster", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2839066308", - "text": "#% increased amount of Mana Leeched", - "type": "desecrated" - }, - { - "id": "desecrated.stat_818778753", - "text": "Damage Penetrates #% Lightning Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2975078312", - "text": "Abyssal Monsters grant #% increased Experience", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2975078312", - "text": "Abyss Monsters in your Maps grant #% increased Experience", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2573406169", - "text": "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2466011626", - "text": "#% chance for Lightning Damage with Hits to be Lucky", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2174054121", - "text": "#% chance to inflict Bleeding on Hit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3873704640", - "text": "#% increased Magic Monsters", - "type": "desecrated" - }, - { - "id": "desecrated.stat_734614379", - "text": "#% increased Strength", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3417711605", - "text": "Damage Penetrates #% Cold Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2797971005", - "text": "Gain # Life per Enemy Hit with Attacks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3891355829|2", - "text": "Upgrades Radius to Large", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2825946427", - "text": "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3419203492", - "text": "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", - "type": "desecrated" - }, - { - "id": "desecrated.stat_491450213", - "text": "Minions have #% increased Critical Hit Chance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_9187492", - "text": "# to Level of all Melee Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_473429811", - "text": "#% increased Freeze Buildup", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2468595624", - "text": "Projectiles deal #% increased Damage with Hits against Enemies within 2m", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4157613372", - "text": "Abyss Pits have #% chance to spawn all Monsters as at least Magic", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2586152168", - "text": "Archon recovery period expires #% faster", - "type": "desecrated" - }, - { - "id": "desecrated.stat_299996", - "text": "#% increased Attack Speed while your Companion is in your Presence", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1381474422", - "text": "#% increased Magnitude of Damaging Ailments you inflict", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4270096386", - "text": "Hits have #% increased Critical Hit Chance against you", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2074866941", - "text": "#% increased Exposure Effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3579898587", - "text": "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1994296038", - "text": "Small Passive Skills in Radius also grant #% increased Evasion Rating", - "type": "desecrated" - }, - { - "id": "desecrated.stat_212649958", - "text": "Enemies Hindered by you take #% increased Elemental Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2480498143", - "text": "#% of Skill Mana Costs Converted to Life Costs", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1978899297", - "text": "#% to all Maximum Elemental Resistances", - "type": "desecrated" - }, - { - "id": "desecrated.stat_472520716", - "text": "#% of Damage taken Recouped as Mana", - "type": "desecrated" - }, - { - "id": "desecrated.stat_44972811", - "text": "#% increased Life Regeneration rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1850249186", - "text": "#% increased Spell Damage per 100 maximum Mana", - "type": "desecrated" - }, - { - "id": "desecrated.stat_414821772", - "text": "Increases and Reductions to Projectile Speed also apply to Damage with Bows", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1365232741", - "text": "#% increased Grenade Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_821021828", - "text": "Grants # Life per Enemy Hit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1852872083", - "text": "#% increased Damage with Hits against Rare and Unique Enemies", - "type": "desecrated" - }, - { - "id": "desecrated.stat_314741699", - "text": "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2301718443", - "text": "#% increased Damage against Enemies with Fully Broken Armour", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3131442032", - "text": "#% increased Grenade Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1388221282", - "text": "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2709367754", - "text": "Gain # Rage on Melee Hit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3222402650", - "text": "Small Passive Skills in Radius also grant #% increased Elemental Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1137305356", - "text": "Small Passive Skills in Radius also grant #% increased Spell Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2822644689", - "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1751584857", - "text": "Monsters inflict # Grasping Vine on Hit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_983749596", - "text": "#% increased maximum Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_427684353", - "text": "#% increased Damage with Crossbows", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1078309513", - "text": "Invocated Spells deal #% increased Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3668351662", - "text": "#% increased Shock Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1389754388", - "text": "#% increased Charm Effect Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1135928777", - "text": "#% increased Attack Speed with Crossbows", - "type": "desecrated" - }, - { - "id": "desecrated.stat_232701452", - "text": "#% increased Freeze Buildup if you've consumed an Power Charge Recently", - "type": "desecrated" - }, - { - "id": "desecrated.stat_21071013", - "text": "Herald Skills deal #% increased Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_440490623", - "text": "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1702195217", - "text": "#% to Block chance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_924253255", - "text": "#% increased Slowing Potency of Debuffs on You", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1022759479", - "text": "Notable Passive Skills in Radius also grant #% increased Cast Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2768899959", - "text": "Small Passive Skills in Radius also grant #% increased Lightning Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_124131830", - "text": "# to Level of all Spell Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2487305362", - "text": "#% increased Magnitude of Poison you inflict", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2456523742", - "text": "#% increased Critical Damage Bonus with Spears", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3040571529", - "text": "#% increased Deflection Rating", - "type": "desecrated" - }, - { - "id": "desecrated.stat_538241406", - "text": "Damaging Ailments deal damage #% faster", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3007552094", - "text": "You have Unholy Might", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1967040409", - "text": "Spell Skills have #% increased Area of Effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1423639565", - "text": "Minions have #% to all Elemental Resistances", - "type": "desecrated" - }, - { - "id": "desecrated.stat_916833363", - "text": "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1829102168", - "text": "#% increased Duration of Damaging Ailments on Enemies", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2359002191", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2589572664", - "text": "Notable Passive Skills in Radius also grant #% increased maximum Mana", - "type": "desecrated" - }, - { - "id": "desecrated.stat_599320227", - "text": "#% chance for Trigger skills to refund half of Energy Spent", - "type": "desecrated" - }, - { - "id": "desecrated.stat_809229260", - "text": "# to Armour", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3665922113", - "text": "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2696027455", - "text": "#% increased Damage with Spears", - "type": "desecrated" - }, - { - "id": "desecrated.stat_791928121", - "text": "Causes #% increased Stun Buildup", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2704905000", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3824372849", - "text": "#% increased Curse Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1165163804", - "text": "#% increased Attack Speed with Spears", - "type": "desecrated" - }, - { - "id": "desecrated.stat_795138349", - "text": "#% chance to Poison on Hit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1692879867", - "text": "#% increased Duration of Bleeding on You", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1545858329", - "text": "# to Level of all Lightning Spell Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2112395885", - "text": "#% increased amount of Life Leeched", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2968503605", - "text": "#% increased Flammability Magnitude", - "type": "desecrated" - }, - { - "id": "desecrated.stat_945774314", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Bows", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2077117738", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3641543553", - "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3350279336", - "text": "#% increased Cost Efficiency of Attacks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2854751904", - "text": "Allies in your Presence deal # to # added Attack Lightning Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_147764878", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2896115339", - "text": "#% of Elemental Damage taken Recouped as Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3292710273", - "text": "Gain # Rage when Hit by an Enemy", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1060572482", - "text": "#% increased Effect of Small Passive Skills in Radius", - "type": "desecrated" - }, - { - "id": "desecrated.stat_455816363", - "text": "Small Passive Skills in Radius also grant #% increased Projectile Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1011760251", - "text": "#% to Maximum Lightning Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3676141501", - "text": "#% to Maximum Cold Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_280731498", - "text": "#% increased Area of Effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3398283493", - "text": "Attacks with this Weapon Penetrate #% Fire Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4081947835", - "text": "Projectiles have #% chance to Chain an additional time from terrain", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1998951374", - "text": "Allies in your Presence have #% increased Attack Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3146310524", - "text": "Dazes on Hit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3301100256", - "text": "#% increased Poison Duration on you", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4236566306", - "text": "Meta Skills gain #% increased Energy", - "type": "desecrated" - }, - { - "id": "desecrated.stat_770672621", - "text": "Minions have #% increased maximum Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_160888068", - "text": "Notable Passive Skills in Radius also grant #% increased maximum Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1426522529", - "text": "Small Passive Skills in Radius also grant #% increased Attack Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4095671657", - "text": "#% to Maximum Fire Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2466785537", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2590797182", - "text": "#% increased Movement Speed Penalty from using Skills while moving", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3787460122", - "text": "Offerings have #% increased Maximum Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1352561456", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1569101201", - "text": "Empowered Attacks deal #% increased Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1238227257", - "text": "Debuffs on you expire #% faster", - "type": "desecrated" - }, - { - "id": "desecrated.stat_289128254", - "text": "Allies in your Presence have #% increased Cast Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4234573345", - "text": "#% increased Effect of Notable Passive Skills in Radius", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1327522346", - "text": "#% increased Mana Regeneration Rate while moving", - "type": "desecrated" - }, - { - "id": "desecrated.stat_624954515", - "text": "#% increased Accuracy Rating", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4097212302", - "text": "# to maximum number of Elemental Infusions", - "type": "desecrated" - }, - { - "id": "desecrated.stat_138421180", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", - "type": "desecrated" - }, - { - "id": "desecrated.stat_318953428", - "text": "#% chance to Blind Enemies on Hit with Attacks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1740229525", - "text": "Attacks with this Weapon Penetrate #% Cold Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3407849389", - "text": "#% reduced effect of Curses on you", - "type": "desecrated" - }, - { - "id": "desecrated.stat_517664839", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3482326075", - "text": "Remnants can be collected from #% further away", - "type": "desecrated" - }, - { - "id": "desecrated.stat_239367161", - "text": "#% increased Stun Buildup", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2748665614", - "text": "#% increased maximum Mana", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3865605585", - "text": "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4045894391", - "text": "#% increased Damage with Quarterstaves", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3413635271", - "text": "#% increased Reservation Efficiency of Companion Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1374654984", - "text": "#% of Physical Damage prevented Recouped as Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3057012405", - "text": "Allies in your Presence have #% increased Critical Damage Bonus", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2363593824", - "text": "#% increased speed of Recoup Effects", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3552135623", - "text": "Prevent #% of Damage from Deflected Hits", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1177404658", - "text": "#% increased Global Armour, Evasion and Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2442527254", - "text": "Small Passive Skills in Radius also grant #% increased Cold Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1250712710", - "text": "Allies in your Presence have #% increased Critical Hit Chance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1266185101", - "text": "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1365079333", - "text": "Players steal the Eaten Souls of Slain Rare Monsters in Area", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3192728503", - "text": "#% increased Crossbow Reload Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2103650854", - "text": "#% increased effect of Arcane Surge on you", - "type": "desecrated" - }, - { - "id": "desecrated.stat_446027070", - "text": "#% chance to Gain Arcane Surge when you deal a Critical Hit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3850614073", - "text": "Allies in your Presence have #% to all Elemental Resistances", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1697191405", - "text": "#% increased Reservation Efficiency of Herald Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_849987426", - "text": "Allies in your Presence deal # to # added Attack Fire Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2881298780", - "text": "# to # Physical Thorns damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_821241191", - "text": "#% increased Life Recovery from Flasks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2481353198", - "text": "#% increased Block chance (Local)", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1836676211", - "text": "#% increased Flask Charges gained", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1914226331", - "text": "#% increased Cast Speed while on Full Mana", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3585532255", - "text": "#% increased Charm Charges gained", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3741323227", - "text": "#% increased Flask Effect Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3480095574", - "text": "Charms applied to you have #% increased Effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2594634307", - "text": "Mark Skills have #% increased Skill Effect Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1405298142", - "text": "#% increased Stun Threshold if you haven't been Stunned Recently", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3283482523", - "text": "#% increased Attack Speed with Quarterstaves", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2254480358", - "text": "# to Level of all Cold Spell Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_680068163", - "text": "#% increased Stun Threshold", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1494950893", - "text": "Small Passive Skills in Radius also grant Companions deal #% increased Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2347036682", - "text": "Allies in your Presence deal # to # added Attack Cold Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1574590649", - "text": "Allies in your Presence deal # to # added Attack Physical Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3523867985", - "text": "#% increased Armour, Evasion and Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_263495202", - "text": "#% increased Cost Efficiency", - "type": "desecrated" - }, - { - "id": "desecrated.stat_830345042", - "text": "Small Passive Skills in Radius also grant #% increased Freeze Threshold", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1600707273", - "text": "# to Level of all Physical Spell Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3780644166", - "text": "#% increased Freeze Threshold", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3190283174", - "text": "Area has patches of Mana Siphoning Ground", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1310194496", - "text": "#% increased Global Physical Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4283407333", - "text": "# to Level of all Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3473929743", - "text": "#% increased Pin Buildup", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3655769732", - "text": "#% to Quality of all Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3791899485", - "text": "#% increased Ignite Magnitude", - "type": "desecrated" - }, - { - "id": "desecrated.stat_169946467", - "text": "#% increased Accuracy Rating with Bows", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2256120736", - "text": "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", - "type": "desecrated" - }, - { - "id": "desecrated.stat_311641062", - "text": "#% chance for Flasks you use to not consume Charges", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1062710370", - "text": "#% increased Duration of Ignite, Shock and Chill on Enemies", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1949851472", - "text": "#% chance when a Charm is used to use another Charm without consuming Charges", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3885405204", - "text": "Bow Attacks fire # additional Arrows", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3950000557", - "text": "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1777421941", - "text": "Notable Passive Skills in Radius also grant #% increased Projectile Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_538981065", - "text": "Grenades have #% chance to activate a second time", - "type": "desecrated" - }, - { - "id": "desecrated.stat_710476746", - "text": "#% increased Reload Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3088348485", - "text": "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_51994685", - "text": "#% increased Flask Life Recovery rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3711973554", - "text": "Invocated Spells have #% chance to consume half as much Energy", - "type": "desecrated" - }, - { - "id": "desecrated.stat_310945763", - "text": "#% increased Life Cost Efficiency", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2760344900", - "text": "#% chance when you Reload a Crossbow to be immediate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_943702197", - "text": "Minions gain #% of their maximum Life as Extra maximum Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2705185939", - "text": "#% chance to Aggravate Bleeding on targets you Hit with Attacks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3256879910", - "text": "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3485067555", - "text": "#% increased Chill Duration on Enemies", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1781372024", - "text": "Recover #% of maximum Life on Killing a Poisoned Enemy", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3868118796", - "text": "Attacks Chain an additional time", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1518586897", - "text": "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2222186378", - "text": "#% increased Mana Recovery from Flasks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1805182458", - "text": "Companions have #% increased maximum Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4258524206", - "text": "#% chance to build an additional Combo on Hit", - "type": "desecrated" - }, - { - "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" - }, - { - "id": "desecrated.stat_4274247770", - "text": "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1039268420", - "text": "Small Passive Skills in Radius also grant #% increased chance to Shock", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3003542304", - "text": "Projectiles have #% chance for an additional Projectile when Forking", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1840985759", - "text": "#% increased Area of Effect for Attacks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3859848445", - "text": "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4226189338", - "text": "# to Level of all Chaos Spell Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_591105508", - "text": "# to Level of all Fire Spell Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3972229254", - "text": "#% of Armour also applies to Chaos Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1823942939", - "text": "# to maximum number of Summoned Ballista Totems", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2543331226", - "text": "#% increased Damage while you have a Totem", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4010677958", - "text": "Allies in your Presence Regenerate # Life per second", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4032352472", - "text": "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3028809864", - "text": "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4121454694", - "text": "Recover #% of maximum Mana when a Charm is used", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3391917254", - "text": "Notable Passive Skills in Radius also grant #% increased Area of Effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2399592398", - "text": "Abysses lead to an Abyssal Boss", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1309799717", - "text": "Small Passive Skills in Radius also grant #% increased Chaos Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_501873429", - "text": "#% chance for Charms you use to not consume Charges", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2715190555", - "text": "#% to Thorns Critical Hit Chance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1776411443", - "text": "Break #% increased Armour", - "type": "desecrated" - }, - { - "id": "desecrated.stat_868556494", - "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1104825894", - "text": "#% faster Curse Activation", - "type": "desecrated" - }, - { - "id": "desecrated.stat_525523040", - "text": "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", - "type": "desecrated" - }, - { - "id": "desecrated.stat_330530785", - "text": "#% increased Immobilisation buildup", - "type": "desecrated" - }, - { - "id": "desecrated.stat_99927264", - "text": "#% reduced Shock duration on you", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2408625104", - "text": "Players and their Minions deal no damage for 3 out of every 10 seconds", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2544540062", - "text": "Skills which create Fissures have a #% chance to create an additional Fissure", - "type": "desecrated" - }, - { - "id": "desecrated.stat_627767961", - "text": "#% increased Damage while you have an active Charm", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3700202631", - "text": "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", - "type": "desecrated" - }, - { - "id": "desecrated.stat_748522257", - "text": "#% increased Stun Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_242637938", - "text": "#% increased chance to inflict Bleeding", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2474424958", - "text": "Spell Skills have # to maximum number of Summoned Totems", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3274422940", - "text": "#% increased Ice Crystal Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3394832998", - "text": "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1286199571", - "text": "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3669820740", - "text": "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3927679277", - "text": "#% chance when collecting an Elemental Infusion to gain an\nadditional Elemental Infusion of the same type", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2954360902", - "text": "Small Passive Skills in Radius also grant Minions deal #% increased Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1874553720", - "text": "#% reduced Chill Duration on you", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2160282525", - "text": "#% reduced Freeze Duration on you", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1417267954", - "text": "Small Passive Skills in Radius also grant #% increased Global Physical Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_715957346", - "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2726713579", - "text": "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1714971114", - "text": "Mark Skills have #% increased Use Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3396435291", - "text": "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", - "type": "desecrated" - }, - { - "id": "desecrated.stat_752930724", - "text": "Equipment and Skill Gems have #% increased Attribute Requirements", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1166140625", - "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4136346606", - "text": "#% increased Spell Damage while wielding a Melee Weapon", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1412217137", - "text": "#% increased Flask Mana Recovery rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2639966148", - "text": "Minions Revive #% faster", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3481083201", - "text": "#% increased chance to Poison", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3871530702", - "text": "Conquered Attribute Passive Skills also grant # to Strength", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1266413530", - "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3666476747", - "text": "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4092130601", - "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1793740180", - "text": "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", - "type": "desecrated" - }, - { - "id": "desecrated.stat_185580205", - "text": "Charms gain # charge per Second", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3513818125", - "text": "Small Passive Skills in Radius also grant #% increased Shock Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4159248054", - "text": "#% increased Warcry Cooldown Recovery Rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3851254963", - "text": "#% increased Totem Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1185341308", - "text": "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2013356568", - "text": "Melee Attack Skills have # to maximum number of Summoned Totems", - "type": "desecrated" - }, - { - "id": "desecrated.stat_514290151", - "text": "Gain #% of Maximum Mana as Armour", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3313255158", - "text": "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", - "type": "desecrated" - }, - { - "id": "desecrated.stat_693237939", - "text": "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_394473632", - "text": "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1552666713", - "text": "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1261076060", - "text": "#% increased Life Regeneration rate during Effect of any Life Flask", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2272980012", - "text": "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1653682082", - "text": "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4173554949", - "text": "Notable Passive Skills in Radius also grant #% increased Stun Buildup", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2552484522", - "text": "Conquered Attribute Passive Skills also grant # to all Attributes", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3106718406", - "text": "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2083058281", - "text": "Enemies you Mark take #% increased Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2849546516", - "text": "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3119612865", - "text": "Minions have #% additional Physical Damage Reduction", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3065378291", - "text": "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2749595652", - "text": "#% chance for Skills to retain 40% of Glory on use", - "type": "desecrated" - }, - { - "id": "desecrated.stat_412709880", - "text": "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1896066427", - "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3596695232", - "text": "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1002362373", - "text": "#% increased Melee Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1697951953", - "text": "#% increased Hazard Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3973629633", - "text": "#% increased Withered Magnitude", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3628935286", - "text": "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1658498488", - "text": "Corrupted Blood cannot be inflicted on you", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3116427713", - "text": "Conquered Attribute Passive Skills also grant # to Intelligence", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1323216174", - "text": "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1315743832", - "text": "#% increased Thorns damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3409275777", - "text": "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1119086588", - "text": "Conquered Attribute Passive Skills also grant # to Tribute", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3395186672", - "text": "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2479683456", - "text": "Minions Regenerate #% of maximum Life per second", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2610562860", - "text": "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1746561819", - "text": "Enemies Hindered by you take #% increased Chaos Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3374165039", - "text": "#% increased Totem Placement speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_473917671", - "text": "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1103616075", - "text": "Break Armour equal to #% of Physical Damage dealt", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3856744003", - "text": "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_315791320", - "text": "Aura Skills have #% increased Magnitudes", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3308030688", - "text": "#% increased Mana Regeneration Rate while stationary", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2463230181", - "text": "#% Surpassing chance to fire an additional Arrow", - "type": "desecrated" - }, - { - "id": "desecrated.stat_300723956", - "text": "Attack Hits apply Incision", - "type": "desecrated" - }, - { - "id": "desecrated.stat_872504239", - "text": "#% increased Stun Buildup with Maces", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2840989393", - "text": "Small Passive Skills in Radius also grant #% chance to Poison on Hit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3113764475", - "text": "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_111835965", - "text": "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2118708619", - "text": "#% increased Damage if you have Consumed a Corpse Recently", - "type": "desecrated" - }, - { - "id": "desecrated.stat_844449513", - "text": "Notable Passive Skills in Radius also grant #% increased Movement Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4240116297", - "text": "Conquered Small Passive Skills also grant #% increased Elemental Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1316278494", - "text": "#% increased Warcry Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2809428780", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Spears", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2131720304", - "text": "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2250681686", - "text": "Grenade Skills have +# Cooldown Use", - "type": "desecrated" - }, - { - "id": "desecrated.stat_593241812", - "text": "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4180952808", - "text": "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2518900926", - "text": "#% increased Damage with Plant Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2969557004", - "text": "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1337740333", - "text": "Small Passive Skills in Radius also grant #% increased Melee Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4033618138", - "text": "Recover #% of Maximum Life when you expend at least 10 Combo", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1321104829", - "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", - "type": "desecrated" - }, - { - "id": "desecrated.stat_533892981", - "text": "Small Passive Skills in Radius also grant #% increased Accuracy Rating", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1102738251", - "text": "Life Flasks gain # charges per Second", - "type": "desecrated" - }, - { - "id": "desecrated.stat_644456512", - "text": "#% reduced Flask Charges used", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2107703111", - "text": "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3166958180", - "text": "#% increased Magnitude of Bleeding you inflict", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1697447343", - "text": "#% increased Freeze Buildup with Quarterstaves", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2202308025", - "text": "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3858398337", - "text": "Small Passive Skills in Radius also grant #% increased Armour", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4089835882", - "text": "Small Passive Skills in Radius also grant Break #% increased Armour", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1944020877", - "text": "Notable Passive Skills in Radius also grant #% increased Pin Buildup", - "type": "desecrated" - }, - { - "id": "desecrated.stat_462424929", - "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2440073079", - "text": "#% increased Damage while Shapeshifted", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4258000627", - "text": "Small Passive Skills in Radius also grant Dazes on Hit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2011656677", - "text": "#% increased Poison Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_258119672", - "text": "# metre to Dodge Roll distance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3225608889", - "text": "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", - "type": "desecrated" - }, - { - "id": "desecrated.stat_484792219", - "text": "Small Passive Skills in Radius also grant #% increased Stun Threshold", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2653955271", - "text": "Damage Penetrates #% Fire Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3771516363", - "text": "#% additional Physical Damage Reduction", - "type": "desecrated" - }, - { - "id": "desecrated.stat_287294012", - "text": "# to # Fire Thorns damage per 100 maximum Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3837707023", - "text": "Minions have #% to Chaos Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1045789614", - "text": "#% increased Critical Hit Chance against Marked Enemies", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1691403182", - "text": "Minions have #% increased Cooldown Recovery Rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3038857426", - "text": "Conquered Small Passive Skills also grant #% increased Spell damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_821948283", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2991045011", - "text": "Recover #% of Maximum Mana when you expend at least 10 Combo", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1087531620", - "text": "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2392824305", - "text": "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1602294220", - "text": "Small Passive Skills in Radius also grant #% increased Warcry Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_139889694", - "text": "Small Passive Skills in Radius also grant #% increased Fire Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3839676903", - "text": "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", - "type": "desecrated" - }, - { - "id": "desecrated.stat_656291658", - "text": "#% increased Cast Speed when on Full Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4257790560", - "text": "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", - "type": "desecrated" - }, - { - "id": "desecrated.stat_980177976", - "text": "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2200293569", - "text": "Mana Flasks gain # charges per Second", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3566150527", - "text": "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1087108135", - "text": "Small Passive Skills in Radius also grant #% increased Curse Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1570770415", - "text": "#% reduced Charm Charges used", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3191479793", - "text": "Offering Skills have #% increased Buff effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4258720395", - "text": "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1181419800", - "text": "#% increased Damage with Maces", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2957407601", - "text": "Offering Skills have #% increased Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2320654813", - "text": "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2720982137", - "text": "Banner Skills have #% increased Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4162678661", - "text": "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3821543413", - "text": "Notable Passive Skills in Radius also grant #% increased Block chance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_359357545", - "text": "Enemies Hindered by you take #% increased Physical Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3143918757", - "text": "#% increased Glory generation", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1145481685", - "text": "Small Passive Skills in Radius also grant #% increased Totem Placement speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1967051901", - "text": "Loads an additional bolt", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1594812856", - "text": "#% increased Damage with Warcries", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1569159338", - "text": "#% increased Parry Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2334956771", - "text": "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", - "type": "desecrated" - }, - { - "id": "desecrated.stat_85367160", - "text": "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", - "type": "desecrated" - }, - { - "id": "desecrated.stat_253641217", - "text": "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1852184471", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Maces", - "type": "desecrated" - }, - { - "id": "desecrated.stat_221701169", - "text": "Notable Passive Skills in Radius also grant #% increased Poison Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3386297724", - "text": "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", - "type": "desecrated" - }, - { - "id": "desecrated.stat_654207792", - "text": "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2135541924", - "text": "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2056107438", - "text": "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2108821127", - "text": "Small Passive Skills in Radius also grant #% increased Totem Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1800303440", - "text": "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1869147066", - "text": "#% increased Glory generation for Banner Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4147897060", - "text": "#% increased Block chance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2907381231", - "text": "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2580617872", - "text": "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1829333149", - "text": "Conquered Small Passive Skills also grant #% increased Physical damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_569299859", - "text": "#% to all maximum Resistances", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2601021356", - "text": "Conquered Small Passive Skills also grant #% increased Chaos damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2066964205", - "text": "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3774951878", - "text": "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", - "type": "desecrated" - }, - { - "id": "desecrated.stat_8816597", - "text": "Conquered Small Passive Skills also grant #% increased Attack damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2709646369", - "text": "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2976476845", - "text": "Notable Passive Skills in Radius also grant #% increased Knockback Distance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_61644361", - "text": "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1285594161", - "text": "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1773308808", - "text": "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4009879772", - "text": "#% increased Life Flask Charges gained", - "type": "desecrated" - }, - { - "id": "desecrated.stat_391602279", - "text": "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3752589831", - "text": "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2780670304", - "text": "Conquered Small Passive Skills also grant #% increased Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1756380435", - "text": "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_266564538", - "text": "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1034611536", - "text": "Notable Passive Skills in Radius also grant Charms gain # charge per Second", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1834658952", - "text": "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", - "type": "desecrated" - }, - { - "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" - }, - { - "id": "desecrated.stat_3590792340", - "text": "#% increased Mana Flask Charges gained", - "type": "desecrated" - }, - { - "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" - }, - { - "id": "desecrated.stat_1432756708", - "text": "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3401186585", - "text": "#% increased Parried Debuff Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_565784293", - "text": "#% increased Knockback Distance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3343033032", - "text": "Conquered Small Passive Skills also grant Minions deal #% increased damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4264952559", - "text": "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_944643028", - "text": "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1434716233", - "text": "Warcries Empower an additional Attack", - "type": "desecrated" - }, - { - "id": "desecrated.stat_712554801", - "text": "#% increased Effect of your Mark Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2638756573", - "text": "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2690740379", - "text": "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_127081978", - "text": "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2637470878", - "text": "#% increased Armour Break Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_818877178", - "text": "#% increased Parried Debuff Magnitude", - "type": "desecrated" - }, - { - "id": "desecrated.stat_255840549", - "text": "Small Passive Skills in Radius also grant #% increased Hazard Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2912416697", - "text": "Notable Passive Skills in Radius also grant #% increased Blind Effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1689748350", - "text": "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", - "type": "desecrated" - }, - { - "id": "desecrated.stat_504915064", - "text": "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3173882956", - "text": "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", - "type": "desecrated" - }, - { - "id": "desecrated.stat_686254215", - "text": "#% increased Totem Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1938221597", - "text": "Conquered Attribute Passive Skills also grant # to Dexterity", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1505023559", - "text": "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3939216292", - "text": "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2149603090", - "text": "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3877264671", - "text": "Monster have #% increased Elemental Ailment Application", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1585769763", - "text": "#% increased Blind Effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4043376133", - "text": "#% increased Magnitude of Abyssal Wasting you inflict", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1148433552", - "text": "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4101943684", - "text": "Monsters have #% increased Stun Threshold", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1459321413", - "text": "#% increased Bleeding Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1160637284", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Warcries", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2116424886", - "text": "#% increased Life Regeneration Rate while moving", - "type": "desecrated" - }, - { - "id": "desecrated.stat_211727", - "text": "Monsters deal #% of Damage as Extra Cold", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1911237468", - "text": "#% increased Stun Threshold while Parrying", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1846980580", - "text": "Notable Passive Skills in Radius also grant # to Maximum Rage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1181501418", - "text": "# to Maximum Rage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_554690751", - "text": "Players are periodically Cursed with Elemental Weakness", - "type": "desecrated" - }, - { - "id": "desecrated.stat_442393998", - "text": "Small Passive Skills in Radius also grant #% increased Totem Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3936121440", - "text": "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2887760183", - "text": "Monsters gain #% of maximum Life as Extra maximum Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_95249895", - "text": "#% more Monster Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_30438393", - "text": "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2770044702", - "text": "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3694078435", - "text": "You take #% of damage from Blocked Hits with a raised Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3855016469", - "text": "Hits against you have #% reduced Critical Damage Bonus", - "type": "desecrated" - }, - { - "id": "desecrated.stat_318092306", - "text": "Small Passive Skills in Radius also grant Attack Hits apply Incision", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1818915622", - "text": "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3037553757", - "text": "#% increased Warcry Buff Effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1054098949", - "text": "+#% Monster Elemental Resistances", - "type": "desecrated" - }, - { - "id": "desecrated.stat_321970274", - "text": "#% of Physical Damage taken as Lightning while your Shield is raised", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1892122971", - "text": "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3429148113", - "text": "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2539290279", - "text": "Monsters are Armoured", - "type": "desecrated" - }, - { - "id": "desecrated.stat_349586058", - "text": "Area has patches of Chilled Ground", - "type": "desecrated" - }, - { - "id": "desecrated.stat_378796798", - "text": "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", - "type": "desecrated" - }, - { - "id": "desecrated.stat_480796730", - "text": "#% to maximum Block chance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_886088880", - "text": "Your Heavy Stun buildup empties #% faster", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1283490138", - "text": "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", - "type": "desecrated" - }, - { - "id": "desecrated.stat_92381065", - "text": "Monsters deal #% of Damage as Extra Fire", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1994551050", - "text": "Monsters have #% increased Ailment Threshold", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1590846356", - "text": "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_468694293", - "text": "Conquered Small Passive Skills also grant #% increased Evasion Rating", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1007380041", - "text": "Small Passive Skills in Radius also grant #% increased Parry Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2549889921", - "text": "Players gain #% reduced Flask Charges", - "type": "desecrated" - }, - { - "id": "desecrated.stat_941368244", - "text": "Players have #% more Cooldown Recovery Rate", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3998863698", - "text": "Monsters have #% increased Freeze Buildup", - "type": "desecrated" - }, - { - "id": "desecrated.stat_970480050", - "text": "Conquered Small Passive Skills also grant #% increased Armour", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1320662475", - "text": "Small Passive Skills in Radius also grant #% increased Thorns damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2029171424", - "text": "Players are periodically Cursed with Enfeeble", - "type": "desecrated" - }, - { - "id": "desecrated.stat_57326096", - "text": "Monsters have #% Critical Damage Bonus", - "type": "desecrated" - }, - { - "id": "desecrated.stat_512071314", - "text": "Monsters deal #% of Damage as Extra Lightning", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2200661314", - "text": "Monsters deal #% of Damage as Extra Chaos", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2122183138", - "text": "# Mana gained when you Block", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1495814176", - "text": "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1984618452", - "text": "Monsters have #% increased Shock Chance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_179541474", - "text": "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_115425161", - "text": "Monsters have #% increased Stun Buildup", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3909654181", - "text": "Monsters have #% increased Attack, Cast and Movement Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4181072906", - "text": "Players have #% less Recovery Rate of Life and Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2508044078", - "text": "Monsters inflict #% increased Flammability Magnitude", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4142814612", - "text": "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_337935900", - "text": "Monsters take #% reduced Extra Damage from Critical Hits", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2374711847", - "text": "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1588049749", - "text": "Monsters have #% increased Accuracy Rating", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3171212276", - "text": "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", - "type": "desecrated" - }, - { - "id": "desecrated.stat_429143663", - "text": "Banner Skills have #% increased Area of Effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1301765461", - "text": "#% to Maximum Chaos Resistance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2475870935", - "text": "Conquered Small Passive Skills also grant #% increased Stun Threshold", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1879340377", - "text": "Monsters Break Armour equal to #% of Physical Damage dealt", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2570249991", - "text": "Monsters are Evasive", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3222482040", - "text": "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3477720557", - "text": "Area has patches of Shocked Ground", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1890519597", - "text": "#% increased Monster Damage", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1309819744", - "text": "Monsters fire # additional Projectiles", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3592067990", - "text": "Area contains # additional packs of Plagued Monsters", - "type": "desecrated" - }, - { - "id": "desecrated.stat_95221307", - "text": "Monsters have #% chance to Poison on Hit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2506820610", - "text": "Monsters have #% chance to inflict Bleeding on Hit", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2534359663", - "text": "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3796523155", - "text": "#% less effect of Curses on Monsters", - "type": "desecrated" - }, - { - "id": "desecrated.stat_942519401", - "text": "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", - "type": "desecrated" - }, - { - "id": "desecrated.stat_133340941", - "text": "Area has patches of Ignited Ground", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2550456553", - "text": "Rare Monsters have # additional Modifier", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2550456553", - "text": "Rare Monsters in your Maps have # additional Modifier", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2753083623", - "text": "Monsters have #% increased Critical Hit Chance", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1898978455", - "text": "Monster Damage Penetrates #% Elemental Resistances", - "type": "desecrated" - }, - { - "id": "desecrated.stat_240445958", - "text": "Area contains # additional packs of Undead", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3376488707", - "text": "#% maximum Player Resistances", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1629357380", - "text": "Players are periodically Cursed with Temporal Chains", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1514844108", - "text": "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1079292660", - "text": "#% increased Energy Shield Recharge Rate if you've Blocked Recently", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3757259819", - "text": "Area contains # additional packs of Beasts", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1436812886", - "text": "Area contains # additional packs of Ezomyte Monsters", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4181857719", - "text": "Area contains # additional packs of Vaal Monsters", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2949706590", - "text": "Area contains # additional packs of Iron Guards", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2783157569", - "text": "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_4130878258", - "text": "Area contains # additional packs of Faridun Monsters", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3309089125", - "text": "Area contains # additional packs of Bramble Monsters", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3811191316", - "text": "Minions have #% increased Area of Effect", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1980802737", - "text": "Grenade Skills Fire an additional Projectile", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1689473577", - "text": "Area contains # additional packs of Transcended Monsters", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2523933828", - "text": "#% increased Armour, Evasion and Energy Shield from Equipped Shield", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1544773869", - "text": "#% increased Cooldown Recovery Rate for Grenade Skills", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2488361432", - "text": "#% increased Monster Cast Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_3200877707", - "text": "Skills have a #% chance to not consume Glory", - "type": "desecrated" - }, - { - "id": "desecrated.stat_2306522833", - "text": "#% increased Monster Movement Speed", - "type": "desecrated" - }, - { - "id": "desecrated.stat_1913583994", - "text": "#% increased Monster Attack Speed", - "type": "desecrated" - } - ] - }, - { - "id": "sanctum", - "label": "Sanctum", - "entries": [ - { - "id": "sanctum.stat_767926824", - "text": "Zarokh, the Temporal drops Blessed Bonds", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3840591093", - "text": "Zarokh, the Temporal drops Against the Darkness", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2878762585", - "text": "#% chance to Avoid Resolve loss from Enemy Hits", - "type": "sanctum" - }, - { - "id": "sanctum.stat_4057192895", - "text": "Gain # Sacred Water when you complete a Room", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3376488707", - "text": "#% to all Maximum Resistances", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1307773596", - "text": "Aureus Coins are converted to Experience upon defeating the Herald of the Scourge", - "type": "sanctum" - }, - { - "id": "sanctum.stat_315260783", - "text": "Aureus Coins are converted to Relics upon defeating the Herald of the Scourge", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1019656601", - "text": "Aureus Coins are converted to Tainted Currency upon defeating the Herald of the Scourge", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2149490821", - "text": "Zarokh, the Temporal deals #% more Damage", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2226900052", - "text": "Zarokh, the Temporal takes #% more Damage", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1175354969", - "text": "The Herald of the Scourge drops an additional Invocation", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3878191575", - "text": "Zarokh, the Temporal drops an additional Barya", - "type": "sanctum" - }, - { - "id": "sanctum.stat_502549687", - "text": "Duplicates up to # random Offer Reward upon defeating the Herald of the Scourge", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3909654181", - "text": "Monsters have #% increased Attack, Cast and Movement Speed", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3114474137", - "text": "Monsters take #% increased Damage", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1890519597", - "text": "Monsters deal #% increased Damage", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1737465970", - "text": "#% increased Armour", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3470883829", - "text": "#% additional Physical Damage Reduction", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2948404493", - "text": "Hits against you have #% reduced Critical Damage Bonus", - "type": "sanctum" - }, - { - "id": "sanctum.stat_978111083", - "text": "#% increased Slowing Potency of Debuffs on You", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1016362888", - "text": "#% increased Armour, Evasion and Energy Shield", - "type": "sanctum" - }, - { - "id": "sanctum.stat_698936647", - "text": "Your Armour, Evasion and Energy Shield are zero", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1040593638", - "text": "# metre to Dodge Roll distance", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1707887759", - "text": "#% increased maximum Energy Shield", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3882471944", - "text": "#% increased Evasion Rating", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1200789871", - "text": "#% increased maximum Life", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1416455556", - "text": "#% increased Movement Speed", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3128852541", - "text": "#% to All Resistances", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3134588943", - "text": "#% increased chance to avoid Honour loss from Enemy Melee Hits", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1798691236", - "text": "#% increased chance to Avoid Resolve Loss from Enemy Projectile Hits", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2284543592", - "text": "#% chance to Avoid Resolve loss from Enemy Hits if you've been Hit Recently", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3226329527", - "text": "Bosses take #% increased Damage", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2469854926", - "text": "Zarokh, the Temporal drops Temporalis", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2821715641", - "text": "Zarokh, the Temporal drops Sekhema's Resolve", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3059754769", - "text": "Zarokh, the Temporal drops Sandstorm Visage", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2207905451", - "text": "Bosses deal #% increased Damage", - "type": "sanctum" - }, - { - "id": "sanctum.stat_408585189", - "text": "Rare Monsters take #% increased Damage", - "type": "sanctum" - }, - { - "id": "sanctum.stat_199414195", - "text": "Rare Monsters deal #% increased Damage", - "type": "sanctum" - }, - { - "id": "sanctum.stat_729354668", - "text": "#% increased quantity of Keys dropped by Monsters", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1680962389", - "text": "#% increased quantity of Relics dropped by Monsters", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1388771661", - "text": "#% increased Resolve Aegis", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3889616543", - "text": "Resolve Aegis Recovers #% faster while not losing Resolve", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3621177126", - "text": "Resolve Mitigation from Enemy Hits is based on #% of Armour", - "type": "sanctum" - }, - { - "id": "sanctum.stat_774484840", - "text": "#% chance for Resolve Mitigation to be doubled when Hit by an Enemy", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3554921410", - "text": "Traps deal #% increased Damage", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3170238729", - "text": "When you gain a Key #% chance to gain another", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3096543632", - "text": "#% to Maximum Honour Resistance", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1960517795", - "text": "#% chance to Avoid gaining an Affliction", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2545161750", - "text": "Cannot restore Honour", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3870327403", - "text": "#% chance if you were to lose all your Honour to have 1 Honour instead", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2155917449", - "text": "#% chance for each of your Keys to upgrade on completing a Floor", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2410906123", - "text": "# Resolve Aegis", - "type": "sanctum" - }, - { - "id": "sanctum.stat_142859883", - "text": "#% Resolve Mitigation from Enemy Hits", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2363402715", - "text": "Fountains have #% chance to grant double Sacred Water", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3237367570", - "text": "Rooms are unknown on the Trial Map", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2287831219", - "text": "#% to Honour Resistance", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1583320325", - "text": "#% increased Honour restored", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2150725270", - "text": "Damage taken cannot be Absorbed", - "type": "sanctum" - }, - { - "id": "sanctum.stat_386901949", - "text": "An additional Room is revealed on the Trial Map", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3970123360", - "text": "#% increased maximum Honour", - "type": "sanctum" - }, - { - "id": "sanctum.stat_4191312223", - "text": "Maximum Honour is 1", - "type": "sanctum" - }, - { - "id": "sanctum.stat_290775436", - "text": "The Merchant has an additional Choice", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3096446459", - "text": "#% increased Merchant Prices", - "type": "sanctum" - }, - { - "id": "sanctum.stat_231205265", - "text": "Monsters have #% chance to drop double Sacred Water", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2283325632", - "text": "Cannot have Boons", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3865020351", - "text": "Restore # Honour on killing a Boss", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2492340460", - "text": "Restore # Honour on venerating a Maraketh Shrine", - "type": "sanctum" - }, - { - "id": "sanctum.stat_521869848", - "text": "Restore # Honour on picking up a Key", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2114314842", - "text": "Restore # Honour on room completion", - "type": "sanctum" - }, - { - "id": "sanctum.stat_2393318075", - "text": "Gain # Sacred Water at the start of the Trial", - "type": "sanctum" - }, - { - "id": "sanctum.stat_1512067281", - "text": "Cannot be used with Trials below level #", - "type": "sanctum" - }, - { - "id": "sanctum.stat_3182333322", - "text": "This item is destroyed when applied to a Trial", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_62326", - "text": "Has Honed Claws", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_15442", - "text": "Has Fright Mask", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_41921", - "text": "Has Deadly Snare", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_62584", - "text": "Has Dark Pit", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_21680", - "text": "Has Low Rivers", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_40008", - "text": "Has Blunt Sword", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_56047", - "text": "Has Rapid Quicksand", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_16773", - "text": "Has UNUSED", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_13820", - "text": "Has Hare Foot", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_44476", - "text": "Has Flooding Rivers", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_46242", - "text": "Has Reparations", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_61003", - "text": "Has Leaking Waterskin", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_35767", - "text": "Has Gate Toll", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_59642", - "text": "Has Death Toll", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_35912", - "text": "Has Exhausted Wells", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_13875", - "text": "Has Spiked Shell", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_359", - "text": "Has Hungry Fangs", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_19039", - "text": "Has Branded Balbalakh", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_9350", - "text": "Has Suspected Sympathiser", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_4682", - "text": "Has Honoured Challenger", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_34448", - "text": "Has Black Smoke", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_44243", - "text": "Has Scrying Crystal", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_34561", - "text": "Has Trade Tariff", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_24536", - "text": "Has Silver Tongue", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_44836", - "text": "Has Imperial Seal", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_38171", - "text": "Has Garukhan's Favour", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_20573", - "text": "Has Winter Drought", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_24603", - "text": "Has Earned Honour", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_47837", - "text": "Has Ahkeli's Guard", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_3157", - "text": "Has Glowing Orb", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_43384", - "text": "Has Veiled Sight", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_17084", - "text": "Has Red Smoke", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_1198", - "text": "Has Golden Smoke", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_28906", - "text": "Has Purple Smoke", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_32300", - "text": "Has Ghastly Scythe", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_44077", - "text": "Has Orbala's Leathers", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_34499", - "text": "Has Sekhema's Cloak", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_13598", - "text": "Has Dekhara's Necklace", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_50613", - "text": "Has Unassuming Brick", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_30866", - "text": "Has Moment's Peace", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_53929", - "text": "Has Spiked Exit", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_48875", - "text": "Has Tattered Blindfold", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_38381", - "text": "Has Unquenched Thirst", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_5501", - "text": "Has Dishonoured Tattoo", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_45401", - "text": "Has Diverted River", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_31580", - "text": "Has Raincaller", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_14131", - "text": "Has Deceptive Mirror", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_34171", - "text": "Has Haemorrhage", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_9121", - "text": "Has All-Seeing Eye", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_51140", - "text": "Has Lustrous Pearl", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_57507", - "text": "Has Viscous Ichor", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_46977", - "text": "Has Wooden Effigy", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_41741", - "text": "Has Sanguine Vial", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_29924", - "text": "Has Ornate Dagger", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_6090", - "text": "Has Assassin's Blade", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_38167", - "text": "Has Enchanted Urn", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_59406", - "text": "Has Adrenaline Vial", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_45428", - "text": "Has Mirror of Fortune", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_54204", - "text": "Has Orbala Statuette", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_28826", - "text": "Has Holy Water", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_40142", - "text": "Has Fountain of Youth", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_51458", - "text": "Has Silver Chalice", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_41498", - "text": "Has Black Pearl", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_52622", - "text": "Has Balbala's Gift", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_60796", - "text": "Has Chipped Dice", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_3716", - "text": "Has Upward Path", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_27130", - "text": "Has Sacred Mirror", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_30042", - "text": "Has Crystal Shard", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_379", - "text": "Has Lustrous Lacquer", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_18125", - "text": "Has Forgotten Traditions", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_35605", - "text": "Has Season of Famine", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_56996", - "text": "Has Myriad Aspersions", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_32085", - "text": "Has Costly Aid", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_25062", - "text": "Has Chains of Binding", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_9853", - "text": "Has Untouchable", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_30450", - "text": "Has Rusted Mallet", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_24131", - "text": "Has Weakened Flesh", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_28313", - "text": "Has Fiendish Wings", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_30473", - "text": "Has Worn Sandals", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_43834", - "text": "Has Orb of Negation", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_55120", - "text": "Has Tradition's Demand", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_6958", - "text": "Has Chiselled Stone", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_45600", - "text": "Has Glass Shard", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_35578", - "text": "Has Iron Manacles", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_48487", - "text": "Has Sharpened Arrowhead", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_16335", - "text": "Has Shattered Shield", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_55502", - "text": "Has Corrosive Concoction", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_62382", - "text": "Has Pledge to the Guileful", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_27532", - "text": "Has Pledge to the Powerful", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_60079", - "text": "Has Pledge to the Deserted", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_48548", - "text": "Has Pledge to the Afflicted", - "type": "sanctum" - }, - { - "id": "sanctum.sanctum_effect_0", - "text": "Has ", - "type": "sanctum" - } - ] - }, - { - "id": "skill", - "label": "Skill", - "entries": [ - { - "id": "skill.shield_block", - "text": "Grants Skill: Level # Raise Shield", - "type": "skill" - }, - { - "id": "skill.mana_drain", - "text": "Grants Skill: Level # Mana Drain", - "type": "skill" - }, - { - "id": "skill.power_siphon", - "text": "Grants Skill: Level # Power Siphon", - "type": "skill" - }, - { - "id": "skill.summon_skeleton_warrior", - "text": "Grants Skill: Level # Skeletal Warrior Minion", - "type": "skill" - }, - { - "id": "skill.sigil_of_power", - "text": "Grants Skill: Level # Sigil of Power", - "type": "skill" - }, - { - "id": "skill.malice", - "text": "Grants Skill: Level # Malice", - "type": "skill" - }, - { - "id": "skill.lightning_bolt", - "text": "Grants Skill: Level # Lightning Bolt", - "type": "skill" - }, - { - "id": "skill.volatile_dead", - "text": "Grants Skill: Level # Volatile Dead", - "type": "skill" - }, - { - "id": "skill.firebolt", - "text": "Grants Skill: Level # Firebolt", - "type": "skill" - }, - { - "id": "skill.chaosbolt", - "text": "Grants Skill: Level # Chaos Bolt", - "type": "skill" - }, - { - "id": "skill.bone_blast", - "text": "Grants Skill: Level # Bone Blast", - "type": "skill" - }, - { - "id": "skill.freezing_shards", - "text": "Grants Skill: Level # Freezing Shards", - "type": "skill" - }, - { - "id": "skill.discipline", - "text": "Grants Skill: Level # Discipline", - "type": "skill" - }, - { - "id": "skill.living_bomb_player", - "text": "Grants Skill: Level # Living Bomb", - "type": "skill" - }, - { - "id": "skill.spellslinger_invocation", - "text": "Grants Skill: Level # Spellslinger", - "type": "skill" - }, - { - "id": "skill.unique_dusk_vigil_triggered_blazing_cluster", - "text": "Grants Skill: Level # Ember Fusillade", - "type": "skill" - }, - { - "id": "skill.purity_of_fire", - "text": "Grants Skill: Level # Purity of Fire", - "type": "skill" - }, - { - "id": "skill.unique_earthbound_triggered_spark", - "text": "Grants Skill: Level # Spark", - "type": "skill" - }, - { - "id": "skill.purity_of_lightning", - "text": "Grants Skill: Level # Purity of Lightning", - "type": "skill" - }, - { - "id": "skill.unique_breach_lightning_bolt", - "text": "Grants Skill: Level # Lightning Bolt", - "type": "skill" - }, - { - "id": "skill.purity_of_ice", - "text": "Grants Skill: Level # Purity of Ice", - "type": "skill" - }, - { - "id": "skill.corpse_cloud_triggered", - "text": "Grants Skill: Level # Decompose", - "type": "skill" - }, - { - "id": "skill.parry", - "text": "Grants Skill: Level # Parry", - "type": "skill" - }, - { - "id": "skill.hyena_cackle", - "text": "Grants Skill: Level # Cackling Companions", - "type": "skill" - }, - { - "id": "skill.galvanic_field", - "text": "Grants Skill: Level # Galvanic Field", - "type": "skill" - }, - { - "id": "skill.corpse_cloud", - "text": "Grants Skill: Level # Decompose", - "type": "skill" - }, - { - "id": "skill.cast_on_block", - "text": "Grants Skill: Level # Cast on Block", - "type": "skill" - }, - { - "id": "skill.unleash", - "text": "Grants Skill: Level # Unleash", - "type": "skill" - }, - { - "id": "skill.enervating_nova", - "text": "Grants Skill: Level # Enervating Nova", - "type": "skill" - }, - { - "id": "skill.consecrate", - "text": "Grants Skill: Level # Consecrate", - "type": "skill" - }, - { - "id": "skill.solar_orb", - "text": "Grants Skill: Level # Solar Orb", - "type": "skill" - }, - { - "id": "skill.reap", - "text": "Grants Skill: Level # Reap", - "type": "skill" - }, - { - "id": "skill.feast_of_flesh", - "text": "Grants Skill: Level # Feast of Flesh", - "type": "skill" - }, - { - "id": "skill.fulmination", - "text": "Grants Skill: Level # Fulmination", - "type": "skill" - }, - { - "id": "skill.cast_on_charm_use", - "text": "Grants Skill: Level # Cast on Charm Use", - "type": "skill" - }, - { - "id": "skill.phantasmal_arrow", - "text": "Grants Skill: Level # Phantasmal Arrow", - "type": "skill" - }, - { - "id": "skill.gemini_surge", - "text": "Grants Skill: Level # Gemini Surge", - "type": "skill" - }, - { - "id": "skill.black_powder_blitz_reservation", - "text": "Grants Skill: Level # Black Powder Blitz", - "type": "skill" - }, - { - "id": "skill.blink", - "text": "Grants Skill: Level # Blink", - "type": "skill" - }, - { - "id": "skill.herald_of_thunder", - "text": "Grants Skill: Level # Herald of Thunder", - "type": "skill" - }, - { - "id": "skill.herald_of_ash", - "text": "Grants Skill: Level # Herald of Ash", - "type": "skill" - }, - { - "id": "skill.requiem_ammo", - "text": "Grants Skill: Level # Compose Requiem", - "type": "skill" - }, - { - "id": "skill.herald_of_ice", - "text": "Grants Skill: Level # Herald of Ice", - "type": "skill" - }, - { - "id": "skill.future_past", - "text": "Grants Skill: Level # Future-Past", - "type": "skill" - }, - { - "id": "skill.life_remnants", - "text": "Grants Skill: Level # Life Remnants", - "type": "skill" - }, - { - "id": "skill.crackling_palm", - "text": "Grants Skill: Level # Crackling Palm", - "type": "skill" - }, - { - "id": "skill.cast_lightning_spell_on_hit", - "text": "Grants Skill: Level # Thundergod's Wrath", - "type": "skill" - }, - { - "id": "skill.exploding_poison_toad", - "text": "Grants Skill: Level # Bursting Fen Toad", - "type": "skill" - }, - { - "id": "skill.scattering_calamity", - "text": "Grants Skill: Level # His Scattering Calamity", - "type": "skill" - }, - { - "id": "skill.pinnacle_of_power", - "text": "Grants Skill: Level # Pinnacle of Power", - "type": "skill" - }, - { - "id": "skill.valakos_charge", - "text": "Grants Skill: Level # Valako's Charge", - "type": "skill" - }, - { - "id": "skill.withering_presence", - "text": "Grants Skill: Level # Withering Presence", - "type": "skill" - }, - { - "id": "skill.chaos_surge", - "text": "Grants Skill: Level # Chaotic Surge", - "type": "skill" - }, - { - "id": "skill.his_foul_emergence", - "text": "Grants Skill: Level # His Foul Emergence", - "type": "skill" - }, - { - "id": "skill.molten_crash", - "text": "Grants Skill: Level # Molten Crash", - "type": "skill" - }, - { - "id": "skill.heart_of_ice", - "text": "Grants Skill: Level # Heart of Ice", - "type": "skill" - }, - { - "id": "skill.vile_disruption", - "text": "Grants Skill: Level # His Vile Intrusion", - "type": "skill" - }, - { - "id": "skill.icestorm", - "text": "Grants Skill: Level # Icestorm", - "type": "skill" - }, - { - "id": "skill.his_winnowing_flame", - "text": "Grants Skill: Level # His Winnowing Flame", - "type": "skill" - }, - { - "id": "skill.mirror_of_refraction", - "text": "Grants Skill: Level # Mirror of Refraction", - "type": "skill" - }, - { - "id": "skill.grave_command", - "text": "Grants Skill: Level # His Grave Command", - "type": "skill" - }, - { - "id": "skill.shattering_spite", - "text": "Grants Skill: Level # Shattering Spite", - "type": "skill" - }, - { - "id": "skill.impurity", - "text": "Grants Skill: Level # Impurity", - "type": "skill" - }, - { - "id": "skill.fireball", - "text": "Grants Skill: Level # Fireball", - "type": "skill" - }, - { - "id": "skill.sanguine_revelry", - "text": "Grants Skill: Level # Sanguine Revelry", - "type": "skill" - }, - { - "id": "skill.atziri_herald", - "text": "Grants Skill: Level # Herald of the Royal Queen", - "type": "skill" - }, - { - "id": "skill.ancient_gifts", - "text": "Grants Skill: Level # Wildwood's Gifts", - "type": "skill" - }, - { - "id": "skill.harbinger_of_madness", - "text": "Grants Skill: Level # Harbinger of Madness", - "type": "skill" - }, - { - "id": "skill.triggered_molten_shower", - "text": "Grants Skill: Level # Molten Shower", - "type": "skill" - }, - { - "id": "skill.runic_tempering", - "text": "Grants Skill: Level # Runic Tempering", - "type": "skill" - }, - { - "id": "skill.summon_mist_raven", - "text": "Grants Skill: Level # Mist Raven", - "type": "skill" - }, - { - "id": "skill.sigil_of_life", - "text": "Grants Skill: Level # Rite of Restoration", - "type": "skill" - }, - { - "id": "skill.nightfall_soaring_midnight", - "text": "Grants Skill: Level # Soaring Midnight", - "type": "skill" - } - ] - } - ] -} \ No newline at end of file From 368bd7ce3077f13f83be52497c39337cc201c016 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 1 Jun 2026 17:29:03 +0300 Subject: [PATCH 08/11] Disable spell checker and sort to try and minimise diff problems --- src/Classes/TradeQueryGenerator.lua | 17 +- src/Data/QueryMods.lua | 248 +- src/Data/TradeSiteStats.lua | 27901 +++++++++++++------------- 3 files changed, 14104 insertions(+), 14062 deletions(-) diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index 3addd5779..544b1b1e9 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -376,7 +376,22 @@ function TradeQueryGeneratorClass:InitMods() if not f then error("Could not open file for writing trade stat data") end - f:write("return " .. stringify(body.result)) + + 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 ) diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index 3300a46d4..e56f91d9e 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -20898,6 +20898,20 @@ return { ["type"] = "implicit", }, }, + ["3489782002"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["3544800472"] = { ["Chest"] = { ["max"] = 40, @@ -21402,7 +21416,7 @@ return { ["usePositiveSign"] = true, }, ["101878827"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 50, ["min"] = -40, }, @@ -21552,10 +21566,6 @@ return { }, }, ["1050105434"] = { - ["1HWeapon"] = { - ["max"] = 90, - ["min"] = 45, - }, ["Boots"] = { ["max"] = 50, ["min"] = 20, @@ -21576,11 +21586,15 @@ return { ["max"] = 50, ["min"] = 10, }, + ["Quarterstaff"] = { + ["max"] = 90, + ["min"] = 45, + }, ["Shield"] = { ["max"] = 50, ["min"] = 20, }, - ["Staff"] = { + ["Wand"] = { ["max"] = 90, ["min"] = 45, }, @@ -21670,11 +21684,11 @@ return { ["max"] = 50, ["min"] = 50, }, - ["Staff"] = { + ["Talisman"] = { ["max"] = 50, ["min"] = 50, }, - ["Talisman"] = { + ["Wand"] = { ["max"] = 50, ["min"] = 50, }, @@ -21720,12 +21734,12 @@ return { }, }, ["124131830"] = { - ["1HWeapon"] = { - ["max"] = 2, + ["Quarterstaff"] = { + ["max"] = 1, ["min"] = 1, }, - ["Staff"] = { - ["max"] = 1, + ["Wand"] = { + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { @@ -21738,7 +21752,7 @@ return { ["usePositiveSign"] = true, }, ["1250712710"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 14, ["min"] = 14, }, @@ -21751,7 +21765,7 @@ return { }, }, ["1323701627"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, }, @@ -22152,7 +22166,7 @@ return { }, }, ["1539508682"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = -20, ["min"] = -20, }, @@ -22268,7 +22282,7 @@ return { }, }, ["1574590649"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 15, ["min"] = 15, }, @@ -22556,7 +22570,7 @@ return { }, }, ["1779262102"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 15, ["min"] = 15, }, @@ -22569,7 +22583,7 @@ return { }, }, ["1798257884"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 40, ["min"] = 40, }, @@ -22582,7 +22596,7 @@ return { }, }, ["1805182458"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 25, ["min"] = 25, }, @@ -22621,7 +22635,7 @@ return { }, }, ["1911097163"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 0.5, ["min"] = 0.5, }, @@ -22897,7 +22911,7 @@ return { }, }, ["1998951374"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 10, ["min"] = 10, }, @@ -22910,15 +22924,15 @@ return { }, }, ["1999910726"] = { - ["1HWeapon"] = { - ["max"] = -25, - ["min"] = -25, - }, ["Helmet"] = { ["max"] = 15, ["min"] = 15, }, - ["Staff"] = { + ["Quarterstaff"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Wand"] = { ["max"] = -25, ["min"] = -25, }, @@ -23056,7 +23070,7 @@ return { }, }, ["2045949233"] = { - ["2HMace"] = { + ["2HWeapon"] = { ["max"] = 25, ["min"] = 10, }, @@ -23148,11 +23162,11 @@ return { ["min"] = 5, }, ["2HWeapon"] = { - ["max"] = 5, + ["max"] = 50, ["min"] = 5, }, ["Bow"] = { - ["max"] = 50, + ["max"] = 5, ["min"] = 5, }, ["Claw"] = { @@ -23354,7 +23368,7 @@ return { }, }, ["2328443419"] = { - ["Staff"] = { + ["Quarterstaff"] = { ["max"] = 30, ["min"] = 30, }, @@ -23367,15 +23381,15 @@ return { }, }, ["2339757871"] = { - ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 6, - }, ["Chest"] = { ["max"] = 30, ["min"] = 30, }, - ["Staff"] = { + ["Quarterstaff"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Wand"] = { ["max"] = 12, ["min"] = 6, }, @@ -23388,7 +23402,7 @@ return { }, }, ["234296660"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 30, ["min"] = 30, }, @@ -23534,7 +23548,7 @@ return { }, }, ["2463230181"] = { - ["Bow"] = { + ["2HWeapon"] = { ["max"] = 50, ["min"] = 50, }, @@ -23552,11 +23566,7 @@ return { ["max"] = 15, ["min"] = 15, }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Talisman"] = { + ["2HWeapon"] = { ["max"] = 15, ["min"] = 15, }, @@ -23582,11 +23592,11 @@ return { }, }, ["2505884597"] = { - ["1HWeapon"] = { + ["Quarterstaff"] = { ["max"] = 12, ["min"] = 6, }, - ["Staff"] = { + ["Wand"] = { ["max"] = 12, ["min"] = 6, }, @@ -23612,7 +23622,7 @@ return { }, }, ["2579974553"] = { - ["1HWeapon"] = { + ["Wand"] = { ["max"] = 1, ["min"] = 1, }, @@ -23709,11 +23719,7 @@ return { }, }, ["2616640048"] = { - ["Bow"] = { - ["max"] = 32, - ["min"] = 32, - }, - ["Crossbow"] = { + ["2HWeapon"] = { ["max"] = 32, ["min"] = 32, }, @@ -23730,7 +23736,7 @@ return { }, }, ["262946222"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 20, ["min"] = 20, }, @@ -23756,7 +23762,7 @@ return { }, }, ["2652394701"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, }, @@ -23782,11 +23788,11 @@ return { }, }, ["267552601"] = { - ["1HWeapon"] = { + ["Quarterstaff"] = { ["max"] = 25, ["min"] = 25, }, - ["Staff"] = { + ["Wand"] = { ["max"] = 25, ["min"] = 25, }, @@ -23799,7 +23805,7 @@ return { }, }, ["2681952497"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 25, ["min"] = 25, }, @@ -23981,7 +23987,7 @@ return { ["usePositiveSign"] = true, }, ["2829985691"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 40, ["min"] = 40, }, @@ -24008,7 +24014,7 @@ return { ["usePositiveSign"] = true, }, ["2854751904"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 20.5, ["min"] = 20.5, }, @@ -24034,7 +24040,7 @@ return { }, }, ["2882351629"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 10, ["min"] = 10, }, @@ -24073,7 +24079,7 @@ return { }, }, ["289128254"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 10, ["min"] = 10, }, @@ -24134,11 +24140,11 @@ return { ["usePositiveSign"] = true, }, ["2910761524"] = { - ["1HWeapon"] = { + ["Quarterstaff"] = { ["max"] = 25, ["min"] = 25, }, - ["Staff"] = { + ["Wand"] = { ["max"] = 25, ["min"] = 25, }, @@ -24272,11 +24278,11 @@ return { ["max"] = 50, ["min"] = 50, }, - ["Staff"] = { + ["Talisman"] = { ["max"] = 50, ["min"] = 50, }, - ["Talisman"] = { + ["Wand"] = { ["max"] = 50, ["min"] = 50, }, @@ -24455,11 +24461,11 @@ return { }, }, ["2974417149"] = { - ["1HWeapon"] = { + ["Quarterstaff"] = { ["max"] = 35, ["min"] = 20, }, - ["Staff"] = { + ["Wand"] = { ["max"] = 35, ["min"] = 20, }, @@ -24472,11 +24478,11 @@ return { }, }, ["3015669065"] = { - ["1HWeapon"] = { + ["Quarterstaff"] = { ["max"] = 12, ["min"] = 6, }, - ["Staff"] = { + ["Wand"] = { ["max"] = 12, ["min"] = 6, }, @@ -24581,7 +24587,7 @@ return { }, }, ["3057012405"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 20, ["min"] = 20, }, @@ -24607,7 +24613,7 @@ return { }, }, ["3091578504"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 8, ["min"] = 8, }, @@ -24689,7 +24695,7 @@ return { }, }, ["3151560620"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 15, ["min"] = 15, }, @@ -24702,7 +24708,7 @@ return { }, }, ["315791320"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 25, ["min"] = 25, }, @@ -24754,7 +24760,7 @@ return { }, }, ["3257561708"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, }, @@ -24853,11 +24859,11 @@ return { ["usePositiveSign"] = true, }, ["3278136794"] = { - ["1HWeapon"] = { + ["Quarterstaff"] = { ["max"] = 12, ["min"] = 6, }, - ["Staff"] = { + ["Wand"] = { ["max"] = 12, ["min"] = 6, }, @@ -25095,7 +25101,7 @@ return { }, }, ["3353733343"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, }, @@ -25230,11 +25236,11 @@ return { ["max"] = 13, ["min"] = 13, }, - ["Staff"] = { + ["Talisman"] = { ["max"] = 13, ["min"] = 13, }, - ["Talisman"] = { + ["Wand"] = { ["max"] = 13, ["min"] = 13, }, @@ -25260,7 +25266,7 @@ return { }, }, ["3444646646"] = { - ["Talisman"] = { + ["2HWeapon"] = { ["max"] = 2, ["min"] = 2, }, @@ -25286,11 +25292,11 @@ return { }, }, ["3482326075"] = { - ["1HWeapon"] = { + ["Quarterstaff"] = { ["max"] = 50, ["min"] = 50, }, - ["Staff"] = { + ["Wand"] = { ["max"] = 50, ["min"] = 50, }, @@ -25317,11 +25323,11 @@ return { ["usePositiveSign"] = true, }, ["3489782002"] = { - ["1HWeapon"] = { + ["Quarterstaff"] = { ["max"] = 60, ["min"] = 30, }, - ["Staff"] = { + ["Wand"] = { ["max"] = 60, ["min"] = 30, }, @@ -25335,7 +25341,7 @@ return { ["usePositiveSign"] = true, }, ["3515226849"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 3, ["min"] = 3, }, @@ -25425,11 +25431,11 @@ return { ["max"] = 50, ["min"] = 50, }, - ["Staff"] = { + ["Talisman"] = { ["max"] = 50, ["min"] = 50, }, - ["Talisman"] = { + ["Wand"] = { ["max"] = 50, ["min"] = 50, }, @@ -25695,14 +25701,14 @@ return { }, ["3742865955"] = { ["1HWeapon"] = { - ["max"] = 40, + ["max"] = 60, ["min"] = 40, }, - ["Sceptre"] = { - ["max"] = 60, + ["Quarterstaff"] = { + ["max"] = 40, ["min"] = 40, }, - ["Staff"] = { + ["Wand"] = { ["max"] = 40, ["min"] = 40, }, @@ -25715,7 +25721,7 @@ return { }, }, ["3759663284"] = { - ["Bow"] = { + ["2HWeapon"] = { ["max"] = 20, ["min"] = 20, }, @@ -25761,7 +25767,7 @@ return { }, }, ["3814102597"] = { - ["1HWeapon"] = { + ["Wand"] = { ["max"] = 1, ["min"] = 1, }, @@ -25787,7 +25793,7 @@ return { }, }, ["3837707023"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 20, ["min"] = 20, }, @@ -25801,7 +25807,7 @@ return { ["usePositiveSign"] = true, }, ["3850614073"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 12, ["min"] = 12, }, @@ -25906,7 +25912,7 @@ return { }, }, ["3885405204"] = { - ["Bow"] = { + ["2HWeapon"] = { ["max"] = 1, ["min"] = 1, }, @@ -26031,14 +26037,14 @@ return { ["usePositiveSign"] = true, }, ["3973629633"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, ["Gloves"] = { ["max"] = 20, ["min"] = 20, }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26102,7 +26108,7 @@ return { ["usePositiveSign"] = true, }, ["3984865854"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 15, ["min"] = 15, }, @@ -26325,10 +26331,6 @@ return { ["usePositiveSign"] = true, }, ["416040624"] = { - ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 10, - }, ["Chest"] = { ["max"] = 15, ["min"] = 15, @@ -26337,7 +26339,11 @@ return { ["max"] = 15, ["min"] = 15, }, - ["Staff"] = { + ["Quarterstaff"] = { + ["max"] = 16, + ["min"] = 10, + }, + ["Wand"] = { ["max"] = 16, ["min"] = 10, }, @@ -26350,7 +26356,7 @@ return { }, }, ["4200448078"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 20, ["min"] = 20, }, @@ -26556,7 +26562,7 @@ return { ["usePositiveSign"] = true, }, ["538981065"] = { - ["Crossbow"] = { + ["2HWeapon"] = { ["max"] = 10, ["min"] = 10, }, @@ -26569,7 +26575,7 @@ return { }, }, ["540694930"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, }, @@ -26582,7 +26588,7 @@ return { }, }, ["553018427"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = -30, ["min"] = -30, }, @@ -26833,7 +26839,7 @@ return { }, }, ["632743438"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 8, ["min"] = 8, }, @@ -26859,7 +26865,7 @@ return { }, }, ["666077204"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 12, ["min"] = 12, }, @@ -27198,11 +27204,11 @@ return { ["max"] = 5, ["min"] = 5, }, - ["Staff"] = { + ["Talisman"] = { ["max"] = 5, ["min"] = 5, }, - ["Talisman"] = { + ["Wand"] = { ["max"] = 5, ["min"] = 5, }, @@ -27251,10 +27257,6 @@ return { ["max"] = 0.2, ["min"] = 0.2, }, - ["Sceptre"] = { - ["max"] = 0.2, - ["min"] = 0.2, - }, ["Spear"] = { ["max"] = 0.2, ["min"] = 0.2, @@ -27280,11 +27282,11 @@ return { }, }, ["737908626"] = { - ["1HWeapon"] = { + ["Quarterstaff"] = { ["max"] = 28, ["min"] = 16, }, - ["Staff"] = { + ["Wand"] = { ["max"] = 28, ["min"] = 16, }, @@ -27407,10 +27409,6 @@ return { }, }, ["789117908"] = { - ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 20, - }, ["Boots"] = { ["max"] = 21, ["min"] = 12, @@ -27431,11 +27429,15 @@ return { ["max"] = 21, ["min"] = 12, }, + ["Quarterstaff"] = { + ["max"] = 35, + ["min"] = 20, + }, ["Shield"] = { ["max"] = 21, ["min"] = 12, }, - ["Staff"] = { + ["Wand"] = { ["max"] = 35, ["min"] = 20, }, diff --git a/src/Data/TradeSiteStats.lua b/src/Data/TradeSiteStats.lua index f5452f67b..145f222ef 100644 --- a/src/Data/TradeSiteStats.lua +++ b/src/Data/TradeSiteStats.lua @@ -1,184 +1,188 @@ +-- 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_total_cold_resistance", - ["text"] = "+#% total to Cold Resistance", + ["id"] = "pseudo.pseudo_number_of_crafted_mods", + ["text"] = "# Crafted Modifiers", ["type"] = "pseudo", }, [2] = { - ["id"] = "pseudo.pseudo_total_fire_resistance", - ["text"] = "+#% total to Fire Resistance", + ["id"] = "pseudo.pseudo_number_of_desecrated_mods", + ["text"] = "# Desecrated Modifiers", ["type"] = "pseudo", }, [3] = { - ["id"] = "pseudo.pseudo_total_lightning_resistance", - ["text"] = "+#% total to Lightning Resistance", + ["id"] = "pseudo.pseudo_number_of_desecrated_prefix_mods", + ["text"] = "# Desecrated Prefix Modifiers", ["type"] = "pseudo", }, [4] = { - ["id"] = "pseudo.pseudo_total_elemental_resistance", - ["text"] = "+#% total Elemental Resistance", + ["id"] = "pseudo.pseudo_number_of_desecrated_suffix_mods", + ["text"] = "# Desecrated Suffix Modifiers", ["type"] = "pseudo", }, [5] = { - ["id"] = "pseudo.pseudo_total_chaos_resistance", - ["text"] = "+#% total to Chaos Resistance", + ["id"] = "pseudo.pseudo_number_of_empty_affix_mods", + ["text"] = "# Empty Modifiers", ["type"] = "pseudo", }, [6] = { - ["id"] = "pseudo.pseudo_total_resistance", - ["text"] = "+#% total Resistance", + ["id"] = "pseudo.pseudo_number_of_empty_prefix_mods", + ["text"] = "# Empty Prefix Modifiers", ["type"] = "pseudo", }, [7] = { - ["id"] = "pseudo.pseudo_count_resistances", - ["text"] = "# total Resistances", + ["id"] = "pseudo.pseudo_number_of_empty_suffix_mods", + ["text"] = "# Empty Suffix Modifiers", ["type"] = "pseudo", }, [8] = { - ["id"] = "pseudo.pseudo_count_elemental_resistances", - ["text"] = "# total Elemental Resistances", + ["id"] = "pseudo.pseudo_number_of_enchant_mods", + ["text"] = "# Enchant Modifiers", ["type"] = "pseudo", }, [9] = { - ["id"] = "pseudo.pseudo_total_all_elemental_resistances", - ["text"] = "+#% total to all Elemental Resistances", + ["id"] = "pseudo.pseudo_number_of_fractured_mods", + ["text"] = "# Fractured Modifiers", ["type"] = "pseudo", }, [10] = { - ["id"] = "pseudo.pseudo_total_strength", - ["text"] = "+# total to Strength", + ["id"] = "pseudo.pseudo_number_of_implicit_mods", + ["text"] = "# Implicit Modifiers", ["type"] = "pseudo", }, [11] = { - ["id"] = "pseudo.pseudo_total_dexterity", - ["text"] = "+# total to Dexterity", + ["id"] = "pseudo.pseudo_number_of_affix_mods", + ["text"] = "# Modifiers", ["type"] = "pseudo", }, [12] = { - ["id"] = "pseudo.pseudo_total_intelligence", - ["text"] = "+# total to Intelligence", + ["id"] = "pseudo.pseudo_number_of_prefix_mods", + ["text"] = "# Prefix Modifiers", ["type"] = "pseudo", }, [13] = { - ["id"] = "pseudo.pseudo_total_all_attributes", - ["text"] = "+# total to all Attributes", + ["id"] = "pseudo.pseudo_number_of_suffix_mods", + ["text"] = "# Suffix Modifiers", ["type"] = "pseudo", }, [14] = { - ["id"] = "pseudo.pseudo_total_attributes", - ["text"] = "+# total to Attributes", + ["id"] = "pseudo.pseudo_number_of_unrevealed_mods", + ["text"] = "# Unrevealed Modifiers", ["type"] = "pseudo", }, [15] = { - ["id"] = "pseudo.pseudo_total_life", - ["text"] = "+# total maximum Life", + ["id"] = "pseudo.pseudo_number_of_unrevealed_prefix_mods", + ["text"] = "# Unrevealed Prefix Modifiers", ["type"] = "pseudo", }, [16] = { - ["id"] = "pseudo.pseudo_total_mana", - ["text"] = "+# total maximum Mana", + ["id"] = "pseudo.pseudo_number_of_unrevealed_suffix_mods", + ["text"] = "# Unrevealed Suffix Modifiers", ["type"] = "pseudo", }, [17] = { - ["id"] = "pseudo.pseudo_total_energy_shield", - ["text"] = "+# total maximum Energy Shield", + ["id"] = "pseudo.pseudo_count_elemental_resistances", + ["text"] = "# total Elemental Resistances", ["type"] = "pseudo", }, [18] = { - ["id"] = "pseudo.pseudo_increased_energy_shield", - ["text"] = "#% total increased maximum Energy Shield", + ["id"] = "pseudo.pseudo_count_resistances", + ["text"] = "# total Resistances", ["type"] = "pseudo", }, [19] = { - ["id"] = "pseudo.pseudo_increased_movement_speed", - ["text"] = "#% increased Movement Speed", + ["id"] = "pseudo.pseudo_number_of_uses_remaining", + ["text"] = "# uses remaining (Tablets)", ["type"] = "pseudo", }, [20] = { - ["id"] = "pseudo.pseudo_number_of_enchant_mods", - ["text"] = "# Enchant Modifiers", + ["id"] = "pseudo.pseudo_increased_movement_speed", + ["text"] = "#% increased Movement Speed", ["type"] = "pseudo", }, [21] = { - ["id"] = "pseudo.pseudo_number_of_implicit_mods", - ["text"] = "# Implicit Modifiers", + ["id"] = "pseudo.pseudo_increased_energy_shield", + ["text"] = "#% total increased maximum Energy Shield", ["type"] = "pseudo", }, [22] = { - ["id"] = "pseudo.pseudo_number_of_prefix_mods", - ["text"] = "# Prefix Modifiers", + ["id"] = "pseudo.pseudo_total_energy_shield", + ["text"] = "+# total maximum Energy Shield", ["type"] = "pseudo", }, [23] = { - ["id"] = "pseudo.pseudo_number_of_suffix_mods", - ["text"] = "# Suffix Modifiers", + ["id"] = "pseudo.pseudo_total_life", + ["text"] = "+# total maximum Life", ["type"] = "pseudo", }, [24] = { - ["id"] = "pseudo.pseudo_number_of_affix_mods", - ["text"] = "# Modifiers", + ["id"] = "pseudo.pseudo_total_mana", + ["text"] = "+# total maximum Mana", ["type"] = "pseudo", }, [25] = { - ["id"] = "pseudo.pseudo_number_of_desecrated_prefix_mods", - ["text"] = "# Desecrated Prefix Modifiers", + ["id"] = "pseudo.pseudo_total_attributes", + ["text"] = "+# total to Attributes", ["type"] = "pseudo", }, [26] = { - ["id"] = "pseudo.pseudo_number_of_desecrated_suffix_mods", - ["text"] = "# Desecrated Suffix Modifiers", + ["id"] = "pseudo.pseudo_total_dexterity", + ["text"] = "+# total to Dexterity", ["type"] = "pseudo", }, [27] = { - ["id"] = "pseudo.pseudo_number_of_desecrated_mods", - ["text"] = "# Desecrated Modifiers", + ["id"] = "pseudo.pseudo_total_intelligence", + ["text"] = "+# total to Intelligence", ["type"] = "pseudo", }, [28] = { - ["id"] = "pseudo.pseudo_number_of_unrevealed_prefix_mods", - ["text"] = "# Unrevealed Prefix Modifiers", + ["id"] = "pseudo.pseudo_total_strength", + ["text"] = "+# total to Strength", ["type"] = "pseudo", }, [29] = { - ["id"] = "pseudo.pseudo_number_of_unrevealed_suffix_mods", - ["text"] = "# Unrevealed Suffix Modifiers", + ["id"] = "pseudo.pseudo_total_all_attributes", + ["text"] = "+# total to all Attributes", ["type"] = "pseudo", }, [30] = { - ["id"] = "pseudo.pseudo_number_of_unrevealed_mods", - ["text"] = "# Unrevealed Modifiers", + ["id"] = "pseudo.pseudo_total_elemental_resistance", + ["text"] = "+#% total Elemental Resistance", ["type"] = "pseudo", }, [31] = { - ["id"] = "pseudo.pseudo_number_of_empty_prefix_mods", - ["text"] = "# Empty Prefix Modifiers", + ["id"] = "pseudo.pseudo_total_resistance", + ["text"] = "+#% total Resistance", ["type"] = "pseudo", }, [32] = { - ["id"] = "pseudo.pseudo_number_of_empty_suffix_mods", - ["text"] = "# Empty Suffix Modifiers", + ["id"] = "pseudo.pseudo_total_chaos_resistance", + ["text"] = "+#% total to Chaos Resistance", ["type"] = "pseudo", }, [33] = { - ["id"] = "pseudo.pseudo_number_of_empty_affix_mods", - ["text"] = "# Empty Modifiers", + ["id"] = "pseudo.pseudo_total_cold_resistance", + ["text"] = "+#% total to Cold Resistance", ["type"] = "pseudo", }, [34] = { - ["id"] = "pseudo.pseudo_number_of_fractured_mods", - ["text"] = "# Fractured Modifiers", + ["id"] = "pseudo.pseudo_total_fire_resistance", + ["text"] = "+#% total to Fire Resistance", ["type"] = "pseudo", }, [35] = { - ["id"] = "pseudo.pseudo_number_of_crafted_mods", - ["text"] = "# Crafted Modifiers", + ["id"] = "pseudo.pseudo_total_lightning_resistance", + ["text"] = "+#% total to Lightning Resistance", ["type"] = "pseudo", }, [36] = { - ["id"] = "pseudo.pseudo_number_of_uses_remaining", - ["text"] = "# uses remaining (Tablets)", + ["id"] = "pseudo.pseudo_total_all_elemental_resistances", + ["text"] = "+#% total to all Elemental Resistances", ["type"] = "pseudo", }, }, @@ -188,9863 +192,9863 @@ return { [2] = { ["entries"] = { [1] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "explicit.stat_2582079000", + ["text"] = "# Charm Slot", ["type"] = "explicit", }, [2] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "explicit.stat_554899692", + ["text"] = "# Charm Slot (Global)", ["type"] = "explicit", }, [3] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "explicit.stat_1133453872", + ["text"] = "# Dexterity Requirement", ["type"] = "explicit", }, [4] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "explicit.stat_2153364323", + ["text"] = "# Intelligence Requirement", ["type"] = "explicit", }, [5] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "explicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", ["type"] = "explicit", }, [6] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "# to Intelligence", + ["id"] = "explicit.stat_332337290", + ["text"] = "# Life Regeneration per second per Socket filled", ["type"] = "explicit", }, [7] = { - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "explicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", ["type"] = "explicit", }, [8] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "explicit.stat_3441651621", + ["text"] = "# Physical Damage taken from Attack Hits", ["type"] = "explicit", }, [9] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "explicit.stat_321765853", + ["text"] = "# Physical Damage taken from Hits", ["type"] = "explicit", }, [10] = { - ["id"] = "explicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", + ["id"] = "explicit.stat_4176970656", + ["text"] = "# Physical Damage taken on Minion Death", ["type"] = "explicit", }, [11] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["id"] = "explicit.stat_3612407781", + ["text"] = "# Physical damage taken from Projectile Attacks", ["type"] = "explicit", }, [12] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "explicit.stat_2833226514", + ["text"] = "# Strength Requirement", ["type"] = "explicit", }, [13] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_243380454", + ["text"] = "# additional Rare Monsters are spawned from Abysses", ["type"] = "explicit", }, [14] = { - ["id"] = "explicit.stat_4052037485", - ["text"] = "# to maximum Energy Shield (Local)", + ["id"] = "explicit.stat_258119672", + ["text"] = "# metre to Dodge Roll distance", ["type"] = "explicit", }, [15] = { - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["id"] = "explicit.stat_3350232544", + ["text"] = "# metre to Dodge Roll distance if you haven't Dodge Rolled Recently", ["type"] = "explicit", }, [16] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", + ["id"] = "explicit.stat_57896763", + ["text"] = "# metre to Dodge Roll distance if you've Dodge Rolled Recently", ["type"] = "explicit", }, [17] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "explicit.stat_3273962791", + ["text"] = "# metres to Melee Strike Range while Unarmed", ["type"] = "explicit", }, [18] = { - ["id"] = "explicit.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", + ["id"] = "explicit.stat_4186798932", + ["text"] = "# to # Added Attack Fire Damage per 25 Strength", ["type"] = "explicit", }, [19] = { - ["id"] = "explicit.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", + ["id"] = "explicit.stat_1515531208", + ["text"] = "# to # Cold Thorns damage", ["type"] = "explicit", }, [20] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", + ["id"] = "explicit.stat_1993950627", + ["text"] = "# to # Fire Thorns damage", ["type"] = "explicit", }, [21] = { - ["id"] = "explicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["id"] = "explicit.stat_287294012", + ["text"] = "# to # Fire Thorns damage per 100 maximum Life", ["type"] = "explicit", }, [22] = { - ["id"] = "explicit.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", + ["id"] = "explicit.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", ["type"] = "explicit", }, [23] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_3926910174", + ["text"] = "# to # added Physical Thorns damage per Runic Plate", ["type"] = "explicit", }, [24] = { - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", ["type"] = "explicit", }, [25] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", ["type"] = "explicit", }, [26] = { - ["id"] = "explicit.stat_691932474", - ["text"] = "# to Accuracy Rating (Local)", + ["id"] = "explicit.stat_1488650448", + ["text"] = "# to Ailment Threshold", ["type"] = "explicit", }, [27] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", ["type"] = "explicit", }, [28] = { - ["id"] = "explicit.stat_3981240776", - ["text"] = "# to Spirit", + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", ["type"] = "explicit", }, [29] = { - ["id"] = "explicit.stat_53045048", - ["text"] = "# to Evasion Rating (Local)", + ["id"] = "explicit.stat_1207006772", + ["text"] = "# to Deflection Rating per 50 missing Energy Shield", ["type"] = "explicit", }, [30] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning damage to Attacks", + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", ["type"] = "explicit", }, [31] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["id"] = "explicit.stat_2300185227", + ["text"] = "# to Dexterity and Intelligence", ["type"] = "explicit", }, [32] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", ["type"] = "explicit", }, [33] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", ["type"] = "explicit", }, [34] = { - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold damage to Attacks", + ["id"] = "explicit.stat_3470876581", + ["text"] = "# to Evasion Rating while on Low Life", ["type"] = "explicit", }, [35] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", ["type"] = "explicit", }, [36] = { - ["id"] = "explicit.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", + ["id"] = "explicit.stat_2157870819", + ["text"] = "# to Level of Despair Skills", ["type"] = "explicit", }, [37] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_3709513762", + ["text"] = "# to Level of Elemental Weakness Skills", ["type"] = "explicit", }, [38] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_3948285912", + ["text"] = "# to Level of Enfeeble Skills", ["type"] = "explicit", }, [39] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", + ["id"] = "explicit.stat_1042153418", + ["text"] = "# to Level of Temporal Chains Skills", ["type"] = "explicit", }, [40] = { - ["id"] = "explicit.stat_1379411836", - ["text"] = "# to all Attributes", + ["id"] = "explicit.stat_3507701584", + ["text"] = "# to Level of Vulnerability Skills", ["type"] = "explicit", }, [41] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Critical Hit Chance", + ["id"] = "explicit.stat_3035140377", + ["text"] = "# to Level of all Attack Skills", ["type"] = "explicit", }, [42] = { - ["id"] = "explicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage", + ["id"] = "explicit.stat_67169579", + ["text"] = "# to Level of all Chaos Skills", ["type"] = "explicit", }, [43] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "# to Armour (Local)", + ["id"] = "explicit.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", ["type"] = "explicit", }, [44] = { - ["id"] = "explicit.stat_1062208444", - ["text"] = "#% increased Armour (Local)", + ["id"] = "explicit.stat_1078455967", + ["text"] = "# to Level of all Cold Skills", ["type"] = "explicit", }, [45] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "explicit.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", ["type"] = "explicit", }, [46] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", + ["id"] = "explicit.stat_2061237517", + ["text"] = "# to Level of all Corrupted Spell Skill Gems", ["type"] = "explicit", }, [47] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_805298720", + ["text"] = "# to Level of all Curse Skills", ["type"] = "explicit", }, [48] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "explicit.stat_2901213448", + ["text"] = "# to Level of all Elemental Skills", ["type"] = "explicit", }, [49] = { - ["id"] = "explicit.stat_2881298780", - ["text"] = "# to # Physical Thorns damage", + ["id"] = "explicit.stat_599749213", + ["text"] = "# to Level of all Fire Skills", ["type"] = "explicit", }, [50] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", + ["id"] = "explicit.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", ["type"] = "explicit", }, [51] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_1147690586", + ["text"] = "# to Level of all Lightning Skills", ["type"] = "explicit", }, [52] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", + ["id"] = "explicit.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", ["type"] = "explicit", }, [53] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", + ["id"] = "explicit.stat_1992191903", + ["text"] = "# to Level of all Mark Skills", ["type"] = "explicit", }, [54] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage", + ["id"] = "explicit.stat_9187492", + ["text"] = "# to Level of all Melee Skills", ["type"] = "explicit", }, [55] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "explicit.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", ["type"] = "explicit", }, [56] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", + ["id"] = "explicit.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", ["type"] = "explicit", }, [57] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "explicit.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", ["type"] = "explicit", }, [58] = { - ["id"] = "explicit.stat_1202301673", - ["text"] = "# to Level of all Projectile Skills", + ["id"] = "explicit.stat_4283407333", + ["text"] = "# to Level of all Skills", ["type"] = "explicit", }, [59] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "explicit.stat_124131830", + ["text"] = "# to Level of all Spell Skills", ["type"] = "explicit", }, [60] = { - ["id"] = "explicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", + ["id"] = "explicit.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", ["type"] = "explicit", }, [61] = { - ["id"] = "explicit.stat_9187492", - ["text"] = "# to Level of all Melee Skills", + ["id"] = "explicit.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", ["type"] = "explicit", }, [62] = { - ["id"] = "explicit.stat_518292764", - ["text"] = "#% to Critical Hit Chance", + ["id"] = "explicit.stat_227523295", + ["text"] = "# to Maximum Power Charges", ["type"] = "explicit", }, [63] = { - ["id"] = "explicit.stat_1276056105", - ["text"] = "#% increased Gold found in this Area (Gold Piles)", + ["id"] = "explicit.stat_1181501418", + ["text"] = "# to Maximum Rage", ["type"] = "explicit", }, [64] = { - ["id"] = "explicit.stat_1276056105", - ["text"] = "#% increased Gold found in your Maps (Gold Piles)", + ["id"] = "explicit.stat_3981240776", + ["text"] = "# to Spirit", ["type"] = "explicit", }, [65] = { - ["id"] = "explicit.stat_274716455", - ["text"] = "#% increased Critical Spell Damage Bonus", + ["id"] = "explicit.stat_2704225257", + ["text"] = "# to Spirit", ["type"] = "explicit", }, [66] = { - ["id"] = "explicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", + ["id"] = "explicit.stat_2694614739", + ["text"] = "# to Spirit while you have at least 200 Dexterity", ["type"] = "explicit", }, [67] = { - ["id"] = "explicit.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", + ["id"] = "explicit.stat_1282318918", + ["text"] = "# to Spirit while you have at least 200 Intelligence", ["type"] = "explicit", }, [68] = { - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + ["id"] = "explicit.stat_3044685077", + ["text"] = "# to Spirit while you have at least 200 Strength", ["type"] = "explicit", }, [69] = { - ["id"] = "explicit.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", ["type"] = "explicit", }, [70] = { - ["id"] = "explicit.stat_2557965901", - ["text"] = "Leech #% of Physical Attack Damage as Life", + ["id"] = "explicit.stat_538848803", + ["text"] = "# to Strength and Dexterity", ["type"] = "explicit", }, [71] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", + ["id"] = "explicit.stat_1535626285", + ["text"] = "# to Strength and Intelligence", ["type"] = "explicit", }, [72] = { - ["id"] = "explicit.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", ["type"] = "explicit", }, [73] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["id"] = "explicit.stat_3679769182", + ["text"] = "# to Stun Threshold per Socket filled", ["type"] = "explicit", }, [74] = { - ["id"] = "explicit.stat_124131830", - ["text"] = "# to Level of all Spell Skills", + ["id"] = "explicit.stat_1379411836", + ["text"] = "# to all Attributes", ["type"] = "explicit", }, [75] = { - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", + ["id"] = "explicit.stat_2897413282", + ["text"] = "# to all Attributes", ["type"] = "explicit", }, [76] = { - ["id"] = "explicit.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["id"] = "explicit.stat_2333085568", + ["text"] = "# to all Attributes per Level", ["type"] = "explicit", }, [77] = { - ["id"] = "explicit.stat_669069897", - ["text"] = "Leeches #% of Physical Damage as Mana", + ["id"] = "explicit.stat_3474271079", + ["text"] = "# to all Attributes per Socket filled", ["type"] = "explicit", }, [78] = { - ["id"] = "explicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", ["type"] = "explicit", }, [79] = { - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "explicit", }, [80] = { - ["id"] = "explicit.stat_3714003708", - ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", }, [81] = { - ["id"] = "explicit.stat_55876295", - ["text"] = "Leeches #% of Physical Damage as Life", + ["id"] = "explicit.stat_150391334", + ["text"] = "# to maximum Life per Socket filled", ["type"] = "explicit", }, [82] = { - ["id"] = "explicit.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", }, [83] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "explicit.stat_1036267537", + ["text"] = "# to maximum Mana per Socket filled", ["type"] = "explicit", }, [84] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", + ["id"] = "explicit.stat_3336230913", + ["text"] = "# to maximum Runic Ward", ["type"] = "explicit", }, [85] = { - ["id"] = "explicit.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["id"] = "explicit.stat_774059442", + ["text"] = "# to maximum Runic Ward", ["type"] = "explicit", }, [86] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["id"] = "explicit.stat_1896726125", + ["text"] = "# to maximum Valour", ["type"] = "explicit", }, [87] = { - ["id"] = "explicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", + ["id"] = "explicit.stat_4097212302", + ["text"] = "# to maximum number of Elemental Infusions", ["type"] = "explicit", }, [88] = { - ["id"] = "explicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", + ["id"] = "explicit.stat_1823942939", + ["text"] = "# to maximum number of Summoned Ballista Totems", ["type"] = "explicit", }, [89] = { - ["id"] = "explicit.stat_57434274", - ["text"] = "#% increased Experience gain", + ["id"] = "explicit.stat_429867172", + ["text"] = "# to maximum number of Summoned Totems", ["type"] = "explicit", }, [90] = { - ["id"] = "explicit.stat_57434274", - ["text"] = "#% increased Experience gain in your Maps", + ["id"] = "explicit.stat_828533480", + ["text"] = "#% Chance to gain a Charge when you kill an enemy", ["type"] = "explicit", }, [91] = { - ["id"] = "explicit.stat_293638271", - ["text"] = "#% increased chance to Shock", + ["id"] = "explicit.stat_2221570601", + ["text"] = "#% Global chance to Blind Enemies on Hit", ["type"] = "explicit", }, [92] = { - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["id"] = "explicit.stat_2840930496", + ["text"] = "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", ["type"] = "explicit", }, [93] = { - ["id"] = "explicit.stat_3984865854", - ["text"] = "#% increased Spirit", + ["id"] = "explicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", ["type"] = "explicit", }, [94] = { - ["id"] = "explicit.stat_2112395885", - ["text"] = "#% increased amount of Life Leeched", + ["id"] = "explicit.stat_1347539079", + ["text"] = "#% Surpassing chance to fire an additional Projectile", ["type"] = "explicit", }, [95] = { - ["id"] = "explicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", ["type"] = "explicit", }, [96] = { - ["id"] = "explicit.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", + ["id"] = "explicit.stat_501873429", + ["text"] = "#% chance for Charms you use to not consume Charges", ["type"] = "explicit", }, [97] = { - ["id"] = "explicit.stat_1714706956", - ["text"] = "#% increased Magic Pack Size", + ["id"] = "explicit.stat_1618482990", + ["text"] = "#% chance for Energy Shield Recharge to start when you Kill an Enemy", ["type"] = "explicit", }, [98] = { - ["id"] = "explicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", + ["id"] = "explicit.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", ["type"] = "explicit", }, [99] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", + ["id"] = "explicit.stat_2466011626", + ["text"] = "#% chance for Lightning Damage with Hits to be Lucky", ["type"] = "explicit", }, [100] = { - ["id"] = "explicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", + ["id"] = "explicit.stat_3950000557", + ["text"] = "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", ["type"] = "explicit", }, [101] = { - ["id"] = "explicit.stat_473429811", - ["text"] = "#% increased Freeze Buildup", + ["id"] = "explicit.stat_3422093970", + ["text"] = "#% chance for Remnants you pick up to count as picking up an additional Remnant", ["type"] = "explicit", }, [102] = { - ["id"] = "explicit.stat_2624927319", - ["text"] = "#% increased number of Monster Packs", + ["id"] = "explicit.stat_2749595652", + ["text"] = "#% chance for Skills to retain 40% of Glory on use", ["type"] = "explicit", }, [103] = { - ["id"] = "explicit.stat_2624927319", - ["text"] = "#% increased number of Monster Packs in your Maps", + ["id"] = "explicit.stat_1157523820", + ["text"] = "#% chance for Slam Skills to cause an additional Aftershock", ["type"] = "explicit", }, [104] = { - ["id"] = "explicit.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", + ["id"] = "explicit.stat_2045949233", + ["text"] = "#% chance for Slam Skills you use yourself to cause an additional Aftershock", ["type"] = "explicit", }, [105] = { - ["id"] = "explicit.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", + ["id"] = "explicit.stat_1133346493", + ["text"] = "#% chance for Spell Damage with Critical Hits to be Lucky", ["type"] = "explicit", }, [106] = { - ["id"] = "explicit.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", + ["id"] = "explicit.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", ["type"] = "explicit", }, [107] = { - ["id"] = "explicit.stat_748522257", - ["text"] = "#% increased Stun Duration", + ["id"] = "explicit.stat_4224832423", + ["text"] = "#% chance for Spell Skills to fire 8 additional Projectiles in a circle", ["type"] = "explicit", }, [108] = { - ["id"] = "explicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", + ["id"] = "explicit.stat_599320227", + ["text"] = "#% chance for Trigger skills to refund half of Energy Spent", ["type"] = "explicit", }, [109] = { - ["id"] = "explicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", + ["id"] = "explicit.stat_2710292678", + ["text"] = "#% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", ["type"] = "explicit", }, [110] = { - ["id"] = "explicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", + ["id"] = "explicit.stat_1009412152", + ["text"] = "#% chance to Aggravate Bleeding on Hit", ["type"] = "explicit", }, [111] = { - ["id"] = "explicit.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", + ["id"] = "explicit.stat_2438634449", + ["text"] = "#% chance to Aggravate Bleeding on targets you Critically Hit with Attacks", ["type"] = "explicit", }, [112] = { - ["id"] = "explicit.stat_4188894176", - ["text"] = "#% increased Damage with Bows", + ["id"] = "explicit.stat_2705185939", + ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", ["type"] = "explicit", }, [113] = { - ["id"] = "explicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", + ["id"] = "explicit.stat_1563503803", + ["text"] = "#% chance to Avoid Chaos Damage from Hits", ["type"] = "explicit", }, [114] = { - ["id"] = "explicit.stat_3791899485", - ["text"] = "#% increased Ignite Magnitude", + ["id"] = "explicit.stat_3743375737", + ["text"] = "#% chance to Avoid Cold Damage from Hits", ["type"] = "explicit", }, [115] = { - ["id"] = "explicit.stat_1241625305", - ["text"] = "#% increased Damage with Bow Skills", + ["id"] = "explicit.stat_1689729380", + ["text"] = "#% chance to Avoid Death from Hits", ["type"] = "explicit", }, [116] = { - ["id"] = "explicit.stat_2306002879", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "explicit.stat_42242677", + ["text"] = "#% chance to Avoid Fire Damage from Hits", ["type"] = "explicit", }, [117] = { - ["id"] = "explicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["id"] = "explicit.stat_2889664727", + ["text"] = "#% chance to Avoid Lightning Damage from Hits", ["type"] = "explicit", }, [118] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "explicit.stat_2415497478", + ["text"] = "#% chance to Avoid Physical Damage from Hits", ["type"] = "explicit", }, [119] = { - ["id"] = "explicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", ["type"] = "explicit", }, [120] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["id"] = "explicit.stat_1028592286", + ["text"] = "#% chance to Chain an additional time", ["type"] = "explicit", }, [121] = { - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", + ["id"] = "explicit.stat_3830953767", + ["text"] = "#% chance to Curse Enemies with Enfeeble on Block", ["type"] = "explicit", }, [122] = { - ["id"] = "explicit.stat_427684353", - ["text"] = "#% increased Damage with Crossbows", + ["id"] = "explicit.stat_446027070", + ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Hit", ["type"] = "explicit", }, [123] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "explicit.stat_78985352", + ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", ["type"] = "explicit", }, [124] = { - ["id"] = "explicit.stat_2390685262", - ["text"] = "#% increased Quantity of Items found", + ["id"] = "explicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", ["type"] = "explicit", }, [125] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", ["type"] = "explicit", }, [126] = { - ["id"] = "explicit.stat_2777224821", - ["text"] = "#% increased Quantity of Waystones found", + ["id"] = "explicit.stat_3954735777", + ["text"] = "#% chance to Poison on Hit with Attacks", ["type"] = "explicit", }, [127] = { - ["id"] = "explicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", + ["id"] = "explicit.stat_1493211587", + ["text"] = "#% chance to Poison on Hit with Spell Damage", ["type"] = "explicit", }, [128] = { - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", + ["id"] = "explicit.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", ["type"] = "explicit", }, [129] = { - ["id"] = "explicit.stat_4045894391", - ["text"] = "#% increased Damage with Quarterstaves", + ["id"] = "explicit.stat_3452269808", + ["text"] = "#% chance to avoid Projectiles", ["type"] = "explicit", }, [130] = { - ["id"] = "explicit.stat_3873704640", - ["text"] = "#% increased Magic Monsters", + ["id"] = "explicit.stat_4250009622", + ["text"] = "#% chance to be Poisoned", ["type"] = "explicit", }, [131] = { - ["id"] = "explicit.stat_2174054121", - ["text"] = "#% chance to inflict Bleeding on Hit", + ["id"] = "explicit.stat_3423694372", + ["text"] = "#% chance to be inflicted with Bleeding when Hit", ["type"] = "explicit", }, [132] = { - ["id"] = "explicit.stat_2487305362", - ["text"] = "#% increased Magnitude of Poison you inflict", + ["id"] = "explicit.stat_4258524206", + ["text"] = "#% chance to build an additional Combo on Hit", ["type"] = "explicit", }, [133] = { - ["id"] = "explicit.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", + ["id"] = "explicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", ["type"] = "explicit", }, [134] = { - ["id"] = "explicit.stat_4147897060", - ["text"] = "#% increased Block chance", + ["id"] = "explicit.stat_2880019685", + ["text"] = "#% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", ["type"] = "explicit", }, [135] = { - ["id"] = "explicit.stat_3793155082", - ["text"] = "#% increased Rare Monsters", + ["id"] = "explicit.stat_3518449420", + ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", ["type"] = "explicit", }, [136] = { - ["id"] = "explicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", + ["id"] = "explicit.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", ["type"] = "explicit", }, [137] = { - ["id"] = "explicit.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", + ["id"] = "explicit.stat_3749502527", + ["text"] = "#% chance to gain Volatility on Kill", ["type"] = "explicit", }, [138] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Hit", ["type"] = "explicit", }, [139] = { - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", + ["id"] = "explicit.stat_1453197917", + ["text"] = "#% chance to gain a Power Charge on Hit", ["type"] = "explicit", }, [140] = { - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration", + ["id"] = "explicit.stat_504210122", + ["text"] = "#% chance to gain an additional random Charge when you gain a Charge", ["type"] = "explicit", }, [141] = { - ["id"] = "explicit.stat_1692879867", - ["text"] = "#% increased Duration of Bleeding on You", + ["id"] = "explicit.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, [142] = { - ["id"] = "explicit.stat_3292710273", - ["text"] = "Gain # Rage when Hit by an Enemy", + ["id"] = "explicit.stat_3602667353", + ["text"] = "#% chance to inflict Exposure on Hit", ["type"] = "explicit", }, [143] = { - ["id"] = "explicit.stat_416040624", - ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["id"] = "explicit.stat_3823990000", + ["text"] = "#% chance to load a bolt into all Crossbow skills on Kill", ["type"] = "explicit", }, [144] = { - ["id"] = "explicit.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", + ["id"] = "explicit.stat_965913123", + ["text"] = "#% chance to not destroy Corpses when Consuming Corpses", ["type"] = "explicit", }, [145] = { - ["id"] = "explicit.stat_1829102168", - ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["id"] = "explicit.stat_1949851472", + ["text"] = "#% chance when a Charm is used to use another Charm without consuming Charges", ["type"] = "explicit", }, [146] = { - ["id"] = "explicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", + ["id"] = "explicit.stat_3927679277", + ["text"] = "#% chance when collecting an Elemental Infusion to gain anadditional Elemental Infusion of the same type", ["type"] = "explicit", }, [147] = { - ["id"] = "explicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", + ["id"] = "explicit.stat_2760344900", + ["text"] = "#% chance when you Reload a Crossbow to be immediate", ["type"] = "explicit", }, [148] = { - ["id"] = "explicit.stat_1994551050", - ["text"] = "Monsters have #% increased Ailment Threshold", + ["id"] = "explicit.stat_1555237944", + ["text"] = "#% chance when you gain a Charge to gain an additional Charge", ["type"] = "explicit", }, [149] = { - ["id"] = "explicit.stat_4101943684", - ["text"] = "Monsters have #% increased Stun Threshold", + ["id"] = "explicit.stat_3537994888", + ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", ["type"] = "explicit", }, [150] = { - ["id"] = "explicit.stat_1135928777", - ["text"] = "#% increased Attack Speed with Crossbows", + ["id"] = "explicit.stat_1104825894", + ["text"] = "#% faster Curse Activation", ["type"] = "explicit", }, [151] = { - ["id"] = "explicit.stat_1054098949", - ["text"] = "+#% Monster Elemental Resistances", + ["id"] = "explicit.stat_504054855", + ["text"] = "#% faster Dodge Roll", ["type"] = "explicit", }, [152] = { - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "explicit", }, [153] = { - ["id"] = "explicit.stat_1366840608", - ["text"] = "#% increased Charges", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", ["type"] = "explicit", }, [154] = { - ["id"] = "explicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", + ["id"] = "explicit.stat_4255854327", + ["text"] = "#% increased Accuracy Rating against Enemies affected by Abyssal Wasting", ["type"] = "explicit", }, [155] = { - ["id"] = "explicit.stat_57326096", - ["text"] = "Monsters have #% Critical Damage Bonus", + ["id"] = "explicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", ["type"] = "explicit", }, [156] = { - ["id"] = "explicit.stat_2753083623", - ["text"] = "Monsters have #% increased Critical Hit Chance", + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", ["type"] = "explicit", }, [157] = { - ["id"] = "explicit.stat_95249895", - ["text"] = "#% more Monster Life", + ["id"] = "explicit.stat_2158617060", + ["text"] = "#% increased Archon Buff duration", ["type"] = "explicit", }, [158] = { - ["id"] = "explicit.stat_554690751", - ["text"] = "Players are periodically Cursed with Elemental Weakness", + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "explicit", }, [159] = { - ["id"] = "explicit.stat_211727", - ["text"] = "Monsters deal #% of Damage as Extra Cold", + ["id"] = "explicit.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", ["type"] = "explicit", }, [160] = { - ["id"] = "explicit.stat_512071314", - ["text"] = "Monsters deal #% of Damage as Extra Lightning", + ["id"] = "explicit.stat_434750362", + ["text"] = "#% increased Area of Effect for Attacks per 10 Intelligence", ["type"] = "explicit", }, [161] = { - ["id"] = "explicit.stat_92381065", - ["text"] = "Monsters deal #% of Damage as Extra Fire", + ["id"] = "explicit.stat_3481736410", + ["text"] = "#% increased Area of Effect if you've Killed Recently", ["type"] = "explicit", }, [162] = { - ["id"] = "explicit.stat_1629357380", - ["text"] = "Players are periodically Cursed with Temporal Chains", + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", ["type"] = "explicit", }, [163] = { - ["id"] = "explicit.stat_2029171424", - ["text"] = "Players are periodically Cursed with Enfeeble", + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "explicit", }, [164] = { - ["id"] = "explicit.stat_3301100256", - ["text"] = "#% increased Poison Duration on you", + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", ["type"] = "explicit", }, [165] = { - ["id"] = "explicit.stat_388617051", - ["text"] = "#% increased Charges per use", + ["id"] = "explicit.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", ["type"] = "explicit", }, [166] = { - ["id"] = "explicit.stat_3909654181", - ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", ["type"] = "explicit", }, [167] = { - ["id"] = "explicit.stat_3196823591", - ["text"] = "#% increased Charges gained", + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", ["type"] = "explicit", }, [168] = { - ["id"] = "explicit.stat_3067892458", - ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["id"] = "explicit.stat_1015576579", + ["text"] = "#% increased Armour from Equipped Body Armour", ["type"] = "explicit", }, [169] = { - ["id"] = "explicit.stat_1890519597", - ["text"] = "#% increased Monster Damage", + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", ["type"] = "explicit", }, [170] = { - ["id"] = "explicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", + ["id"] = "explicit.stat_2523933828", + ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "explicit", }, [171] = { - ["id"] = "explicit.stat_2839066308", - ["text"] = "#% increased amount of Mana Leeched", + ["id"] = "explicit.stat_1207554355", + ["text"] = "#% increased Arrow Speed", ["type"] = "explicit", }, [172] = { - ["id"] = "explicit.stat_3283482523", - ["text"] = "#% increased Attack Speed with Quarterstaves", + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", ["type"] = "explicit", }, [173] = { - ["id"] = "explicit.stat_2898517796", - ["text"] = "#% increased amount of Magic Chests", + ["id"] = "explicit.stat_2879725899", + ["text"] = "#% increased Attack Damage while Surrounded", ["type"] = "explicit", }, [174] = { - ["id"] = "explicit.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", + ["id"] = "explicit.stat_2462683918", + ["text"] = "#% increased Attack Damage while not on Low Mana", ["type"] = "explicit", }, [175] = { - ["id"] = "explicit.stat_3174700878", - ["text"] = "#% increased Energy Shield from Equipped Focus", + ["id"] = "explicit.stat_4246007234", + ["text"] = "#% increased Attack Damage while on Low Life", ["type"] = "explicit", }, [176] = { - ["id"] = "explicit.stat_798469000", - ["text"] = "#% increased amount of Rare Chests", + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "explicit", }, [177] = { - ["id"] = "explicit.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", }, [178] = { - ["id"] = "explicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["id"] = "explicit.stat_889691035", + ["text"] = "#% increased Attack Speed per 10 Dexterity", ["type"] = "explicit", }, [179] = { - ["id"] = "explicit.stat_4159248054", - ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["id"] = "explicit.stat_720908147", + ["text"] = "#% increased Attack Speed per 20 Dexterity", ["type"] = "explicit", }, [180] = { - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", + ["id"] = "explicit.stat_324579579", + ["text"] = "#% increased Attack Speed per 20 Spirit", ["type"] = "explicit", }, [181] = { - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", + ["id"] = "explicit.stat_2241560081", + ["text"] = "#% increased Attack Speed per 25 Dexterity", ["type"] = "explicit", }, [182] = { - ["id"] = "explicit.stat_1181419800", - ["text"] = "#% increased Damage with Maces", + ["id"] = "explicit.stat_314741699", + ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", ["type"] = "explicit", }, [183] = { - ["id"] = "explicit.stat_99927264", - ["text"] = "#% reduced Shock duration on you", + ["id"] = "explicit.stat_325171970", + ["text"] = "#% increased Attack Speed while missing Runic Ward", ["type"] = "explicit", }, [184] = { - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", + ["id"] = "explicit.stat_4145314483", + ["text"] = "#% increased Attack Speed while on Full Mana", ["type"] = "explicit", }, [185] = { - ["id"] = "explicit.stat_2523933828", - ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["id"] = "explicit.stat_299996", + ["text"] = "#% increased Attack Speed while your Companion is in your Presence", ["type"] = "explicit", }, [186] = { - ["id"] = "explicit.stat_1874553720", - ["text"] = "#% reduced Chill Duration on you", + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", ["type"] = "explicit", }, [187] = { - ["id"] = "explicit.stat_872504239", - ["text"] = "#% increased Stun Buildup with Maces", + ["id"] = "explicit.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", ["type"] = "explicit", }, [188] = { - ["id"] = "explicit.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", + ["id"] = "explicit.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", ["type"] = "explicit", }, [189] = { - ["id"] = "explicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", + ["id"] = "explicit.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", ["type"] = "explicit", }, [190] = { - ["id"] = "explicit.stat_440490623", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", ["type"] = "explicit", }, [191] = { - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", + ["id"] = "explicit.stat_3910614548", + ["text"] = "#% increased Attack and Cast Speed if you've summoned a Totem Recently", ["type"] = "explicit", }, [192] = { - ["id"] = "explicit.stat_686254215", - ["text"] = "#% increased Totem Life", + ["id"] = "explicit.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", ["type"] = "explicit", }, [193] = { - ["id"] = "explicit.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", + ["id"] = "explicit.stat_3143208761", + ["text"] = "#% increased Attributes", ["type"] = "explicit", }, [194] = { - ["id"] = "explicit.stat_565784293", - ["text"] = "#% increased Knockback Distance", + ["id"] = "explicit.stat_2513318031", + ["text"] = "#% increased Attributes per Socket filled", ["type"] = "explicit", }, [195] = { - ["id"] = "explicit.stat_4181072906", - ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", ["type"] = "explicit", }, [196] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", + ["id"] = "explicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", ["type"] = "explicit", }, [197] = { - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Curses", + ["id"] = "explicit.stat_4147897060", + ["text"] = "#% increased Block chance", ["type"] = "explicit", }, [198] = { - ["id"] = "explicit.stat_21071013", - ["text"] = "Herald Skills deal #% increased Damage", + ["id"] = "explicit.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", ["type"] = "explicit", }, [199] = { - ["id"] = "explicit.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["id"] = "explicit.stat_3583542124", + ["text"] = "#% increased Block chance against Projectiles", ["type"] = "explicit", }, [200] = { - ["id"] = "explicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", + ["id"] = "explicit.stat_2531622767", + ["text"] = "#% increased Block chance per 100 total Item Armour on Equipped Armour Items", ["type"] = "explicit", }, [201] = { - ["id"] = "explicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, [202] = { - ["id"] = "explicit.stat_2768835289", - ["text"] = "#% increased Spell Physical Damage", + ["id"] = "explicit.stat_145581225", + ["text"] = "#% increased Cast Speed during any Flask Effect", ["type"] = "explicit", }, [203] = { - ["id"] = "explicit.stat_3119612865", - ["text"] = "Minions have #% additional Physical Damage Reduction", + ["id"] = "explicit.stat_1518586897", + ["text"] = "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", ["type"] = "explicit", }, [204] = { - ["id"] = "explicit.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", + ["id"] = "explicit.stat_1174076861", + ["text"] = "#% increased Cast Speed if you've dealt a Critical Hit Recently", ["type"] = "explicit", }, [205] = { - ["id"] = "explicit.stat_1852872083", - ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["id"] = "explicit.stat_34174842", + ["text"] = "#% increased Cast Speed per 20 Spirit", ["type"] = "explicit", }, [206] = { - ["id"] = "explicit.stat_1303248024", - ["text"] = "#% increased Magnitude of Ailments you inflict", + ["id"] = "explicit.stat_656291658", + ["text"] = "#% increased Cast Speed when on Full Life", ["type"] = "explicit", }, [207] = { - ["id"] = "explicit.stat_133340941", - ["text"] = "Area has patches of Ignited Ground", + ["id"] = "explicit.stat_1136768410", + ["text"] = "#% increased Cast Speed when on Low Life", ["type"] = "explicit", }, [208] = { - ["id"] = "explicit.stat_1898978455", - ["text"] = "Monster Damage Penetrates #% Elemental Resistances", + ["id"] = "explicit.stat_1914226331", + ["text"] = "#% increased Cast Speed while on Full Mana", ["type"] = "explicit", }, [209] = { - ["id"] = "explicit.stat_3376488707", - ["text"] = "#% maximum Player Resistances", + ["id"] = "explicit.stat_892489594", + ["text"] = "#% increased Chance to be afflicted by Ailments when Hit", ["type"] = "explicit", }, [210] = { - ["id"] = "explicit.stat_3877264671", - ["text"] = "Monster have #% increased Elemental Ailment Application", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, [211] = { - ["id"] = "explicit.stat_115425161", - ["text"] = "Monsters have #% increased Stun Buildup", + ["id"] = "explicit.stat_1366840608", + ["text"] = "#% increased Charges", ["type"] = "explicit", }, [212] = { - ["id"] = "explicit.stat_2582079000", - ["text"] = "# Charm Slot", + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charges gained", ["type"] = "explicit", }, [213] = { - ["id"] = "explicit.stat_337935900", - ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", ["type"] = "explicit", }, [214] = { - ["id"] = "explicit.stat_2570249991", - ["text"] = "Monsters are Evasive", + ["id"] = "explicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", ["type"] = "explicit", }, [215] = { - ["id"] = "explicit.stat_2887760183", - ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", + ["id"] = "explicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", ["type"] = "explicit", }, [216] = { - ["id"] = "explicit.stat_95221307", - ["text"] = "Monsters have #% chance to Poison on Hit", + ["id"] = "explicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", ["type"] = "explicit", }, [217] = { - ["id"] = "explicit.stat_2549889921", - ["text"] = "Players gain #% reduced Flask Charges", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, [218] = { - ["id"] = "explicit.stat_2506820610", - ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", + ["id"] = "explicit.stat_1002535626", + ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", ["type"] = "explicit", }, [219] = { - ["id"] = "explicit.stat_3787460122", - ["text"] = "Offerings have #% increased Maximum Life", + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "explicit", }, [220] = { - ["id"] = "explicit.stat_3169585282", - ["text"] = "Allies in your Presence have # to Accuracy Rating", + ["id"] = "explicit.stat_1544773869", + ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", ["type"] = "explicit", }, [221] = { - ["id"] = "explicit.stat_2539290279", - ["text"] = "Monsters are Armoured", + ["id"] = "explicit.stat_1571268546", + ["text"] = "#% increased Corrupted Charms effect duration", ["type"] = "explicit", }, [222] = { - ["id"] = "explicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["id"] = "explicit.stat_263495202", + ["text"] = "#% increased Cost Efficiency", ["type"] = "explicit", }, [223] = { - ["id"] = "explicit.stat_1604736568", - ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["id"] = "explicit.stat_3350279336", + ["text"] = "#% increased Cost Efficiency of Attacks", ["type"] = "explicit", }, [224] = { - ["id"] = "explicit.stat_1854213750", - ["text"] = "Minions have #% increased Critical Damage Bonus", + ["id"] = "explicit.stat_2369495153", + ["text"] = "#% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", ["type"] = "explicit", }, [225] = { - ["id"] = "explicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", + ["id"] = "explicit.stat_2650053239", + ["text"] = "#% increased Cost of Skills for each 200 total Mana Spent Recently", ["type"] = "explicit", }, [226] = { - ["id"] = "explicit.stat_349586058", - ["text"] = "Area has patches of Chilled Ground", + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", ["type"] = "explicit", }, [227] = { - ["id"] = "explicit.stat_3477720557", - ["text"] = "Area has patches of Shocked Ground", + ["id"] = "explicit.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", ["type"] = "explicit", }, [228] = { - ["id"] = "explicit.stat_2017682521", - ["text"] = "#% increased Pack Size", + ["id"] = "explicit.stat_23669307", + ["text"] = "#% increased Critical Damage Bonus if you've consumed a Power Charge Recently", ["type"] = "explicit", }, [229] = { - ["id"] = "explicit.stat_2347036682", - ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["id"] = "explicit.stat_4164870816", + ["text"] = "#% increased Critical Damage Bonus per Power Charge", ["type"] = "explicit", }, [230] = { - ["id"] = "explicit.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", + ["id"] = "explicit.stat_2408983956", + ["text"] = "#% increased Critical Damage Bonus while Shocked", ["type"] = "explicit", }, [231] = { - ["id"] = "explicit.stat_491450213", - ["text"] = "Minions have #% increased Critical Hit Chance", + ["id"] = "explicit.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", ["type"] = "explicit", }, [232] = { - ["id"] = "explicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", ["type"] = "explicit", }, [233] = { - ["id"] = "explicit.stat_1873752457", - ["text"] = "Gains # Charges per Second", + ["id"] = "explicit.stat_1045789614", + ["text"] = "#% increased Critical Hit Chance against Marked Enemies", ["type"] = "explicit", }, [234] = { - ["id"] = "explicit.stat_169946467", - ["text"] = "#% increased Accuracy Rating with Bows", + ["id"] = "explicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", ["type"] = "explicit", }, [235] = { - ["id"] = "explicit.stat_689816330", - ["text"] = "Area has #% increased chance to contain Shrines", + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "explicit", }, [236] = { - ["id"] = "explicit.stat_689816330", - ["text"] = "#% increased chance of Shrines", + ["id"] = "explicit.stat_2856328513", + ["text"] = "#% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", ["type"] = "explicit", }, [237] = { - ["id"] = "explicit.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", + ["id"] = "explicit.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", ["type"] = "explicit", }, [238] = { - ["id"] = "explicit.stat_627767961", - ["text"] = "#% increased Damage while you have an active Charm", + ["id"] = "explicit.stat_2972244965", + ["text"] = "#% increased Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently", ["type"] = "explicit", }, [239] = { - ["id"] = "explicit.stat_4279535856", - ["text"] = "Area has #% increased chance to contain Strongboxes", + ["id"] = "explicit.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", ["type"] = "explicit", }, [240] = { - ["id"] = "explicit.stat_4279535856", - ["text"] = "#% increased chance of Strongboxes", + ["id"] = "explicit.stat_3563080185", + ["text"] = "#% increased Culling Strike Threshold", ["type"] = "explicit", }, [241] = { - ["id"] = "explicit.stat_1200678966", - ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["id"] = "explicit.stat_3824372849", + ["text"] = "#% increased Curse Duration", ["type"] = "explicit", }, [242] = { - ["id"] = "explicit.stat_3824372849", - ["text"] = "#% increased Curse Duration", + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", ["type"] = "explicit", }, [243] = { - ["id"] = "explicit.stat_1825943485", - ["text"] = "Area has #% increased chance to contain Essences", + ["id"] = "explicit.stat_2154246560", + ["text"] = "#% increased Damage", ["type"] = "explicit", }, [244] = { - ["id"] = "explicit.stat_1825943485", - ["text"] = "#% increased chance of Essences", + ["id"] = "explicit.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", ["type"] = "explicit", }, [245] = { - ["id"] = "explicit.stat_828533480", - ["text"] = "#% Chance to gain a Charge when you kill an enemy", + ["id"] = "explicit.stat_3120508478", + ["text"] = "#% increased Damage against Immobilised Enemies", ["type"] = "explicit", }, [246] = { - ["id"] = "explicit.stat_1772247089", - ["text"] = "#% increased chance to inflict Ailments", + ["id"] = "explicit.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", ["type"] = "explicit", }, [247] = { - ["id"] = "explicit.stat_849987426", - ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", + ["id"] = "explicit.stat_3399499561", + ["text"] = "#% increased Damage per Minion", ["type"] = "explicit", }, [248] = { - ["id"] = "explicit.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", + ["id"] = "explicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", ["type"] = "explicit", }, [249] = { - ["id"] = "explicit.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["id"] = "explicit.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", ["type"] = "explicit", }, [250] = { - ["id"] = "explicit.stat_2854751904", - ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["id"] = "explicit.stat_2543331226", + ["text"] = "#% increased Damage while you have a Totem", ["type"] = "explicit", }, [251] = { - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", + ["id"] = "explicit.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", ["type"] = "explicit", }, [252] = { - ["id"] = "explicit.stat_3732878551", - ["text"] = "Rare Monsters have a #% Surpassing chance to have an additional Modifier", + ["id"] = "explicit.stat_693180608", + ["text"] = "#% increased Damage while your Companion is in your Presence", ["type"] = "explicit", }, [253] = { - ["id"] = "explicit.stat_3732878551", - ["text"] = "Rare Monsters in your Maps have a #% Surpassing chance to have an additional Modifier", + ["id"] = "explicit.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", ["type"] = "explicit", }, [254] = { - ["id"] = "explicit.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", + ["id"] = "explicit.stat_4188894176", + ["text"] = "#% increased Damage with Bows", ["type"] = "explicit", }, [255] = { - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", + ["id"] = "explicit.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", ["type"] = "explicit", }, [256] = { - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", + ["id"] = "explicit.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "explicit", }, [257] = { - ["id"] = "explicit.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["id"] = "explicit.stat_4015438188", + ["text"] = "#% increased Damage with Hits against targets in your Presence", ["type"] = "explicit", }, [258] = { - ["id"] = "explicit.stat_3192728503", - ["text"] = "#% increased Crossbow Reload Speed", + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces", ["type"] = "explicit", }, [259] = { - ["id"] = "explicit.stat_970213192", - ["text"] = "#% increased Skill Speed", + ["id"] = "explicit.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", ["type"] = "explicit", }, [260] = { - ["id"] = "explicit.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["id"] = "explicit.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", ["type"] = "explicit", }, [261] = { - ["id"] = "explicit.stat_1697447343", - ["text"] = "#% increased Freeze Buildup with Quarterstaves", + ["id"] = "explicit.stat_2696027455", + ["text"] = "#% increased Damage with Spears", ["type"] = "explicit", }, [262] = { - ["id"] = "explicit.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", + ["id"] = "explicit.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", ["type"] = "explicit", }, [263] = { - ["id"] = "explicit.stat_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["id"] = "explicit.stat_1949833742", + ["text"] = "#% increased Daze Buildup", ["type"] = "explicit", }, [264] = { - ["id"] = "explicit.stat_2594634307", - ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["id"] = "explicit.stat_3040571529", + ["text"] = "#% increased Deflection Rating", ["type"] = "explicit", }, [265] = { - ["id"] = "explicit.stat_1062710370", - ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["id"] = "explicit.stat_1382805233", + ["text"] = "#% increased Deflection Rating while moving", ["type"] = "explicit", }, [266] = { - ["id"] = "explicit.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", + ["id"] = "explicit.stat_586037801", + ["text"] = "#% increased Desecrated Modifier magnitudes", ["type"] = "explicit", }, [267] = { - ["id"] = "explicit.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", ["type"] = "explicit", }, [268] = { - ["id"] = "explicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["id"] = "explicit.stat_2541588185", + ["text"] = "#% increased Duration (Charm)", ["type"] = "explicit", }, [269] = { - ["id"] = "explicit.stat_1714971114", - ["text"] = "Mark Skills have #% increased Use Speed", + ["id"] = "explicit.stat_1256719186", + ["text"] = "#% increased Duration (Flask)", ["type"] = "explicit", }, [270] = { - ["id"] = "explicit.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", + ["id"] = "explicit.stat_1692879867", + ["text"] = "#% increased Duration of Bleeding on You", ["type"] = "explicit", }, [271] = { - ["id"] = "explicit.stat_1594812856", - ["text"] = "#% increased Damage with Warcries", + ["id"] = "explicit.stat_2920970371", + ["text"] = "#% increased Duration of Curses on you", ["type"] = "explicit", }, [272] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "explicit.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", ["type"] = "explicit", }, [273] = { - ["id"] = "explicit.stat_2541588185", - ["text"] = "#% increased Duration (Charm)", + ["id"] = "explicit.stat_2604619892", + ["text"] = "#% increased Duration of Elemental Ailments on Enemies", ["type"] = "explicit", }, [274] = { - ["id"] = "explicit.stat_1569101201", - ["text"] = "Empowered Attacks deal #% increased Damage", + ["id"] = "explicit.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "explicit", }, [275] = { - ["id"] = "explicit.stat_3146310524", - ["text"] = "Dazes on Hit", + ["id"] = "explicit.stat_3841138199", + ["text"] = "#% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", ["type"] = "explicit", }, [276] = { - ["id"] = "explicit.stat_1315743832", - ["text"] = "#% increased Thorns damage", + ["id"] = "explicit.stat_461663422", + ["text"] = "#% increased Effect of Jewel Socket Passive Skillscontaining Corrupted Magic Jewels", ["type"] = "explicit", }, [277] = { - ["id"] = "explicit.stat_3473929743", - ["text"] = "#% increased Pin Buildup", + ["id"] = "explicit.stat_3128077011", + ["text"] = "#% increased Effect of Jewel Socket Passive Skillscontaining Corrupted Rare Jewels", ["type"] = "explicit", }, [278] = { - ["id"] = "explicit.stat_3850614073", - ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["id"] = "explicit.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", ["type"] = "explicit", }, [279] = { - ["id"] = "explicit.stat_889691035", - ["text"] = "#% increased Attack Speed per 10 Dexterity", + ["id"] = "explicit.stat_1443502073", + ["text"] = "#% increased Effect of Prefixes", ["type"] = "explicit", }, [280] = { - ["id"] = "explicit.stat_2301718443", - ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["id"] = "explicit.stat_3078574625", + ["text"] = "#% increased Effect of Remnants in Area", ["type"] = "explicit", }, [281] = { - ["id"] = "explicit.stat_2200661314", - ["text"] = "Monsters deal #% of Damage as Extra Chaos", + ["id"] = "explicit.stat_3078574625", + ["text"] = "#% increased Effect of Remnants in your Maps", ["type"] = "explicit", }, [282] = { - ["id"] = "explicit.stat_941368244", - ["text"] = "Players have #% more Cooldown Recovery Rate", + ["id"] = "explicit.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", ["type"] = "explicit", }, [283] = { - ["id"] = "explicit.stat_1405298142", - ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["id"] = "explicit.stat_2475221757", + ["text"] = "#% increased Effect of Suffixes", ["type"] = "explicit", }, [284] = { - ["id"] = "explicit.stat_1879340377", - ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", + ["id"] = "explicit.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", ["type"] = "explicit", }, [285] = { - ["id"] = "explicit.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", + ["id"] = "explicit.stat_2065500219", + ["text"] = "#% increased Effectiveness of Monsters in your Maps", ["type"] = "explicit", }, [286] = { - ["id"] = "explicit.stat_3796523155", - ["text"] = "#% less effect of Curses on Monsters", + ["id"] = "explicit.stat_2895378479", + ["text"] = "#% increased Effectiveness of Rare Breach Monsters", ["type"] = "explicit", }, [287] = { - ["id"] = "explicit.stat_1309819744", - ["text"] = "Monsters fire # additional Projectiles", + ["id"] = "explicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", ["type"] = "explicit", }, [288] = { - ["id"] = "explicit.stat_3222482040", - ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", ["type"] = "explicit", }, [289] = { - ["id"] = "explicit.stat_1588049749", - ["text"] = "Monsters have #% increased Accuracy Rating", + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", ["type"] = "explicit", }, [290] = { - ["id"] = "explicit.stat_1791136590", - ["text"] = "#% increased Weapon Damage per 10 Strength", + ["id"] = "explicit.stat_1170174456", + ["text"] = "#% increased Endurance Charge Duration", ["type"] = "explicit", }, [291] = { - ["id"] = "explicit.stat_1776411443", - ["text"] = "Break #% increased Armour", + ["id"] = "explicit.stat_2839036860", + ["text"] = "#% increased Endurance, Frenzy and Power Charge Duration", ["type"] = "explicit", }, [292] = { - ["id"] = "explicit.stat_434750362", - ["text"] = "#% increased Area of Effect for Attacks per 10 Intelligence", + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield", ["type"] = "explicit", }, [293] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "explicit", }, [294] = { - ["id"] = "explicit.stat_2365392475", - ["text"] = "Recover # Life when Used", + ["id"] = "explicit.stat_1079292660", + ["text"] = "#% increased Energy Shield Recharge Rate if you've Blocked Recently", ["type"] = "explicit", }, [295] = { - ["id"] = "explicit.stat_1708461270", - ["text"] = "Monsters have #% increased Area of Effect", + ["id"] = "explicit.stat_2408276841", + ["text"] = "#% increased Energy Shield Recharge Rate per 4 Strength", ["type"] = "explicit", }, [296] = { - ["id"] = "explicit.stat_3119292058", - ["text"] = "Enemies Chilled by your Hits can be Shattered as though Frozen", + ["id"] = "explicit.stat_988575597", + ["text"] = "#% increased Energy Shield Recovery rate", ["type"] = "explicit", }, [297] = { - ["id"] = "explicit.stat_1120862500", - ["text"] = "Recover # Mana when Used", + ["id"] = "explicit.stat_1195319608", + ["text"] = "#% increased Energy Shield from Equipped Body Armour", ["type"] = "explicit", }, [298] = { - ["id"] = "explicit.stat_1210760818", - ["text"] = "Breaches have #% increased Monster density", + ["id"] = "explicit.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", ["type"] = "explicit", }, [299] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", ["type"] = "explicit", }, [300] = { - ["id"] = "explicit.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "explicit", }, [301] = { - ["id"] = "explicit.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", + ["id"] = "explicit.stat_3509362078", + ["text"] = "#% increased Evasion Rating from Equipped Body Armour", ["type"] = "explicit", }, [302] = { - ["id"] = "explicit.stat_3033371881", - ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["id"] = "explicit.stat_1073310669", + ["text"] = "#% increased Evasion Rating if you have been Hit Recently", ["type"] = "explicit", }, [303] = { - ["id"] = "explicit.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["id"] = "explicit.stat_1040569494", + ["text"] = "#% increased Evasion Rating if you've Dodge Rolled Recently", ["type"] = "explicit", }, [304] = { - ["id"] = "explicit.stat_2448633171", - ["text"] = "#% of Damage taken bypasses Energy Shield", + ["id"] = "explicit.stat_88817332", + ["text"] = "#% increased Evasion Rating when on Full Life", ["type"] = "explicit", }, [305] = { - ["id"] = "explicit.stat_1228337241", - ["text"] = "Gain #% of maximum Life as Extra maximum Energy Shield", + ["id"] = "explicit.stat_1586136369", + ["text"] = "#% increased Evasion Rating while Sprinting", ["type"] = "explicit", }, [306] = { - ["id"] = "explicit.stat_3309089125", - ["text"] = "Area contains # additional packs of Bramble Monsters", + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "explicit", }, [307] = { - ["id"] = "explicit.stat_240445958", - ["text"] = "Area contains # additional packs of Undead", + ["id"] = "explicit.stat_1539368271", + ["text"] = "#% increased Expedition Explosive Placement Range", ["type"] = "explicit", }, [308] = { - ["id"] = "explicit.stat_2949706590", - ["text"] = "Area contains # additional packs of Iron Guards", + ["id"] = "explicit.stat_3289828378", + ["text"] = "#% increased Expedition Explosive Radius", ["type"] = "explicit", }, [309] = { - ["id"] = "explicit.stat_3592067990", - ["text"] = "Area contains # additional packs of Plagued Monsters", + ["id"] = "explicit.stat_3666934677", + ["text"] = "#% increased Experience gain", ["type"] = "explicit", }, [310] = { - ["id"] = "explicit.stat_1436812886", - ["text"] = "Area contains # additional packs of Ezomyte Monsters", + ["id"] = "explicit.stat_57434274", + ["text"] = "#% increased Experience gain", ["type"] = "explicit", }, [311] = { - ["id"] = "explicit.stat_4181857719", - ["text"] = "Area contains # additional packs of Vaal Monsters", + ["id"] = "explicit.stat_57434274", + ["text"] = "#% increased Experience gain in your Maps", ["type"] = "explicit", }, [312] = { - ["id"] = "explicit.stat_4130878258", - ["text"] = "Area contains # additional packs of Faridun Monsters", + ["id"] = "explicit.stat_231689132", + ["text"] = "#% increased Explicit Elemental Damage Modifier magnitudes", ["type"] = "explicit", }, [313] = { - ["id"] = "explicit.stat_3757259819", - ["text"] = "Area contains # additional packs of Beasts", + ["id"] = "explicit.stat_3574578302", + ["text"] = "#% increased Explicit Fire Modifier magnitudes", ["type"] = "explicit", }, [314] = { - ["id"] = "explicit.stat_624534143", - ["text"] = "#% increased Quantity of Breach Splinters dropped by Breach Monsters in Area", + ["id"] = "explicit.stat_3624940721", + ["text"] = "#% increased Explicit Lightning Modifier magnitudes", ["type"] = "explicit", }, [315] = { - ["id"] = "explicit.stat_624534143", - ["text"] = "#% increased Quantity of Breach Splinters dropped by Breach Monsters in your Maps", + ["id"] = "explicit.stat_1335369947", + ["text"] = "#% increased Explicit Physical Modifier magnitudes", ["type"] = "explicit", }, [316] = { - ["id"] = "explicit.stat_1689473577", - ["text"] = "Area contains # additional packs of Transcended Monsters", + ["id"] = "explicit.stat_1972391381", + ["text"] = "#% increased Explicit Resistance Modifier magnitudes", ["type"] = "explicit", }, [317] = { - ["id"] = "explicit.stat_3049505189", - ["text"] = "Areas which contain Breaches have #% chance to contain an additional Breach", + ["id"] = "explicit.stat_2074866941", + ["text"] = "#% increased Exposure Effect", ["type"] = "explicit", }, [318] = { - ["id"] = "explicit.stat_3049505189", - ["text"] = "Your Maps which contain Breaches have #% chance to contain an additional Breach", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, [319] = { - ["id"] = "explicit.stat_3240183538", - ["text"] = "Area contains an additional Strongbox", + ["id"] = "explicit.stat_3858572996", + ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", ["type"] = "explicit", }, [320] = { - ["id"] = "explicit.stat_3240183538", - ["text"] = "Your Maps contain # additional Strongboxes", + ["id"] = "explicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", ["type"] = "explicit", }, [321] = { - ["id"] = "explicit.stat_1468737867", - ["text"] = "Area contains an additional Shrine", + ["id"] = "explicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", ["type"] = "explicit", }, [322] = { - ["id"] = "explicit.stat_1468737867", - ["text"] = "Your Maps contain an additional Shrine", + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", ["type"] = "explicit", }, [323] = { - ["id"] = "explicit.stat_2480498143", - ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["id"] = "explicit.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", ["type"] = "explicit", }, [324] = { - ["id"] = "explicit.stat_2503377690", - ["text"] = "#% of Recovery applied Instantly", + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", ["type"] = "explicit", }, [325] = { - ["id"] = "explicit.stat_395808938", - ["text"] = "Area contains an additional Essence", + ["id"] = "explicit.stat_551040294", + ["text"] = "#% increased Fracturing Mirrors manifested within Delirium Fog", ["type"] = "explicit", }, [326] = { - ["id"] = "explicit.stat_395808938", - ["text"] = "Your Maps contain an additional Essence", + ["id"] = "explicit.stat_473429811", + ["text"] = "#% increased Freeze Buildup", ["type"] = "explicit", }, [327] = { - ["id"] = "explicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_232701452", + ["text"] = "#% increased Freeze Buildup if you've consumed an Power Charge Recently", ["type"] = "explicit", }, [328] = { - ["id"] = "explicit.stat_2676834156", - ["text"] = "Also grants # Guard", + ["id"] = "explicit.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", ["type"] = "explicit", }, [329] = { - ["id"] = "explicit.stat_2214228141", - ["text"] = "Projectiles Pierce all Ignited enemies", + ["id"] = "explicit.stat_1073942215", + ["text"] = "#% increased Freeze Duration on Enemies", ["type"] = "explicit", }, [330] = { - ["id"] = "explicit.stat_2550456553", - ["text"] = "Rare Monsters have # additional Modifier", + ["id"] = "explicit.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", ["type"] = "explicit", }, [331] = { - ["id"] = "explicit.stat_2550456553", - ["text"] = "Rare Monsters in your Maps have # additional Modifier", + ["id"] = "explicit.stat_1177404658", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield", ["type"] = "explicit", }, [332] = { - ["id"] = "explicit.stat_2458962764", - ["text"] = "#% of Maximum Life Converted to Energy Shield", + ["id"] = "explicit.stat_933768533", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield per Socket filled", ["type"] = "explicit", }, [333] = { - ["id"] = "explicit.stat_1049080093", - ["text"] = "Attacks Gain #% of Damage as Extra Fire Damage", + ["id"] = "explicit.stat_2695354435", + ["text"] = "#% increased Global Evasion Rating when on Low Life", ["type"] = "explicit", }, [334] = { - ["id"] = "explicit.stat_335699483", - ["text"] = "Leeches #% of maximum Life when you Cast a Spell", + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", ["type"] = "explicit", }, [335] = { - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", + ["id"] = "explicit.stat_3143918757", + ["text"] = "#% increased Glory generation", ["type"] = "explicit", }, [336] = { - ["id"] = "explicit.stat_1017648537", - ["text"] = "Lightning damage from Hits Contributes to Electrocution Buildup", + ["id"] = "explicit.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", ["type"] = "explicit", }, [337] = { - ["id"] = "explicit.stat_1261612903", - ["text"] = "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", + ["id"] = "explicit.stat_1133965702", + ["text"] = "#% increased Gold found in this Area", ["type"] = "explicit", }, [338] = { - ["id"] = "explicit.stat_2949096603", - ["text"] = "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", + ["id"] = "explicit.stat_1276056105", + ["text"] = "#% increased Gold found in this Area (Gold Piles)", ["type"] = "explicit", }, [339] = { - ["id"] = "explicit.stat_1011772129", - ["text"] = "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", + ["id"] = "explicit.stat_1133965702", + ["text"] = "#% increased Gold found in your Maps", ["type"] = "explicit", }, [340] = { - ["id"] = "explicit.stat_2639966148", - ["text"] = "Minions Revive #% faster", + ["id"] = "explicit.stat_1276056105", + ["text"] = "#% increased Gold found in your Maps (Gold Piles)", ["type"] = "explicit", }, [341] = { - ["id"] = "explicit.stat_1686824704", - ["text"] = "#% of Cold Damage Converted to Lightning Damage", + ["id"] = "explicit.stat_3131442032", + ["text"] = "#% increased Grenade Damage", ["type"] = "explicit", }, [342] = { - ["id"] = "explicit.stat_826162720", - ["text"] = "Trigger Ember Fusillade Skill on casting a Spell", + ["id"] = "explicit.stat_1365232741", + ["text"] = "#% increased Grenade Duration", ["type"] = "explicit", }, [343] = { - ["id"] = "explicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", + ["id"] = "explicit.stat_1697951953", + ["text"] = "#% increased Hazard Damage", ["type"] = "explicit", }, [344] = { - ["id"] = "explicit.stat_965913123", - ["text"] = "#% chance to not destroy Corpses when Consuming Corpses", + ["id"] = "explicit.stat_3274422940", + ["text"] = "#% increased Ice Crystal Life", ["type"] = "explicit", }, [345] = { - ["id"] = "explicit.stat_997343726", - ["text"] = "Gain #% of Damage as Chaos Damage per Undead Minion", + ["id"] = "explicit.stat_1086147743", + ["text"] = "#% increased Ignite Duration on Enemies", ["type"] = "explicit", }, [346] = { - ["id"] = "explicit.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", + ["id"] = "explicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", ["type"] = "explicit", }, [347] = { - ["id"] = "explicit.stat_3837707023", - ["text"] = "Minions have #% to Chaos Resistance", + ["id"] = "explicit.stat_330530785", + ["text"] = "#% increased Immobilisation buildup", ["type"] = "explicit", }, [348] = { - ["id"] = "explicit.stat_811217923", - ["text"] = "Trigger Spark Skill on killing a Shocked Enemy", + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", ["type"] = "explicit", }, [349] = { - ["id"] = "explicit.stat_2637470878", - ["text"] = "#% increased Armour Break Duration", + ["id"] = "explicit.stat_565784293", + ["text"] = "#% increased Knockback Distance", ["type"] = "explicit", }, [350] = { - ["id"] = "explicit.stat_2154246560", - ["text"] = "#% increased Damage", + ["id"] = "explicit.stat_310945763", + ["text"] = "#% increased Life Cost Efficiency", ["type"] = "explicit", }, [351] = { - ["id"] = "explicit.stat_704919631", - ["text"] = "Trigger Lightning Bolt Skill on Critical Hit", + ["id"] = "explicit.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", ["type"] = "explicit", }, [352] = { - ["id"] = "explicit.stat_1289045485", - ["text"] = "Critical Hits Ignore Enemy Monster Lightning Resistance", + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", ["type"] = "explicit", }, [353] = { - ["id"] = "explicit.stat_2118708619", - ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["id"] = "explicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", ["type"] = "explicit", }, [354] = { - ["id"] = "explicit.stat_828179689", - ["text"] = "#% increased Magnitude of Chill you inflict", + ["id"] = "explicit.stat_3240073117", + ["text"] = "#% increased Life Recovery rate", ["type"] = "explicit", }, [355] = { - ["id"] = "explicit.stat_603021645", - ["text"] = "When a Party Member in your Presence Casts a Spell, youSacrifice #% of Mana and they Leech that Mana", + ["id"] = "explicit.stat_2116424886", + ["text"] = "#% increased Life Regeneration Rate while moving", ["type"] = "explicit", }, [356] = { - ["id"] = "explicit.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", ["type"] = "explicit", }, [357] = { - ["id"] = "explicit.stat_3544050945", - ["text"] = "#% of Spell Mana Cost Converted to Life Cost", + ["id"] = "explicit.stat_1261076060", + ["text"] = "#% increased Life Regeneration rate during Effect of any Life Flask", ["type"] = "explicit", }, [358] = { - ["id"] = "explicit.stat_2200293569", - ["text"] = "Mana Flasks gain # charges per Second", + ["id"] = "explicit.stat_3084372306", + ["text"] = "#% increased Life Regeneration rate while Surrounded", ["type"] = "explicit", }, [359] = { - ["id"] = "explicit.stat_3891355829|1", - ["text"] = "Upgrades Radius to Medium", + ["id"] = "explicit.stat_2310741722", + ["text"] = "#% increased Life and Mana Recovery from Flasks", ["type"] = "explicit", }, [360] = { - ["id"] = "explicit.stat_1261982764", - ["text"] = "#% increased Life Recovered", + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", ["type"] = "explicit", }, [361] = { - ["id"] = "explicit.stat_648019518", - ["text"] = "Removes #% of Life Recovered from Mana when used", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", }, [362] = { - ["id"] = "explicit.stat_4187571952", - ["text"] = "Gain no inherent bonus from Intelligence", + ["id"] = "explicit.stat_797289402", + ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", ["type"] = "explicit", }, [363] = { - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", + ["id"] = "explicit.stat_3873704640", + ["text"] = "#% increased Magic Monsters", ["type"] = "explicit", }, [364] = { - ["id"] = "explicit.stat_315791320", - ["text"] = "Aura Skills have #% increased Magnitudes", + ["id"] = "explicit.stat_1714706956", + ["text"] = "#% increased Magic Pack Size", ["type"] = "explicit", }, [365] = { - ["id"] = "explicit.stat_3973629633", - ["text"] = "#% increased Withered Magnitude", + ["id"] = "explicit.stat_4043376133", + ["text"] = "#% increased Magnitude of Abyssal Wasting you inflict", ["type"] = "explicit", }, [366] = { - ["id"] = "explicit.stat_3464380325", - ["text"] = "Projectiles Split towards # targets", + ["id"] = "explicit.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", ["type"] = "explicit", }, [367] = { - ["id"] = "explicit.stat_1177404658", - ["text"] = "#% increased Global Armour, Evasion and Energy Shield", + ["id"] = "explicit.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", ["type"] = "explicit", }, [368] = { - ["id"] = "explicit.stat_3027830452", - ["text"] = "Gain #% of maximum Mana as Extra maximum Energy Shield", + ["id"] = "explicit.stat_828179689", + ["text"] = "#% increased Magnitude of Chill you inflict", ["type"] = "explicit", }, [369] = { - ["id"] = "explicit.stat_2929867083", - ["text"] = "#% increased Rarity of Items found when on Low Life", + ["id"] = "explicit.stat_1381474422", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", ["type"] = "explicit", }, [370] = { - ["id"] = "explicit.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["id"] = "explicit.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "explicit", }, [371] = { - ["id"] = "explicit.stat_474294393", - ["text"] = "#% reduced Mana Cost of Skills", + ["id"] = "explicit.stat_3621874554", + ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", ["type"] = "explicit", }, [372] = { - ["id"] = "explicit.stat_1102738251", - ["text"] = "Life Flasks gain # charges per Second", + ["id"] = "explicit.stat_916833363", + ["text"] = "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", ["type"] = "explicit", }, [373] = { - ["id"] = "explicit.stat_40154188", - ["text"] = "#% of Elemental Damage Converted to Fire Damage", + ["id"] = "explicit.stat_4259875040", + ["text"] = "#% increased Magnitude of Impales inflicted with Spells", ["type"] = "explicit", }, [374] = { - ["id"] = "explicit.stat_289540902", - ["text"] = "#% of Elemental Damage Converted to Lightning Damage", + ["id"] = "explicit.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", ["type"] = "explicit", }, [375] = { - ["id"] = "explicit.stat_3003542304", - ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["id"] = "explicit.stat_1864159246", + ["text"] = "#% increased Magnitude of Poison you inflict on targets that are not Poisoned", ["type"] = "explicit", }, [376] = { - ["id"] = "explicit.stat_1653625239", - ["text"] = "Breaches in Area spawn an additional Rare Monster", + ["id"] = "explicit.stat_120969026", + ["text"] = "#% increased Magnitude of Poison you inflict while Poisoned", ["type"] = "explicit", }, [377] = { - ["id"] = "explicit.stat_1653625239", - ["text"] = "Breaches in your Maps spawn an additional Rare Monster", + ["id"] = "explicit.stat_324210709", + ["text"] = "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", ["type"] = "explicit", }, [378] = { - ["id"] = "explicit.stat_1090596078", - ["text"] = "Breaches in Area spawn #% increased Magic Monsters", + ["id"] = "explicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", ["type"] = "explicit", }, [379] = { - ["id"] = "explicit.stat_1090596078", - ["text"] = "Breaches in your Maps spawn #% increased Magic Monsters", + ["id"] = "explicit.stat_2725205297", + ["text"] = "#% increased Magnitude of Unholy Might buffs you grant", ["type"] = "explicit", }, [380] = { - ["id"] = "explicit.stat_3860150265", - ["text"] = "Map Bosses grant #% increased Experience", + ["id"] = "explicit.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", ["type"] = "explicit", }, [381] = { - ["id"] = "explicit.stat_3119172063", - ["text"] = "#% increased Quantity of Items dropped by Map Bosses", + ["id"] = "explicit.stat_3396435291", + ["text"] = "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", ["type"] = "explicit", }, [382] = { - ["id"] = "explicit.stat_4255069232", - ["text"] = "#% increased Rarity of Items dropped by Map Bosses", + ["id"] = "explicit.stat_2653231923", + ["text"] = "#% increased Mana Cost Efficiency of Spells", ["type"] = "explicit", }, [383] = { - ["id"] = "explicit.stat_210092264", - ["text"] = "#% of Elemental Damage Converted to Cold Damage", + ["id"] = "explicit.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", ["type"] = "explicit", }, [384] = { - ["id"] = "explicit.stat_712554801", - ["text"] = "#% increased Effect of your Mark Skills", + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", ["type"] = "explicit", }, [385] = { - ["id"] = "explicit.stat_2535267021", - ["text"] = "Share Charges with Allies in your Presence", + ["id"] = "explicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", ["type"] = "explicit", }, [386] = { - ["id"] = "explicit.stat_3868118796", - ["text"] = "Attacks Chain an additional time", + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "explicit", }, [387] = { - ["id"] = "explicit.stat_2041668411", - ["text"] = "Physical Damage is Pinning", + ["id"] = "explicit.stat_1659564104", + ["text"] = "#% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", ["type"] = "explicit", }, [388] = { - ["id"] = "explicit.stat_990363519", - ["text"] = "Enemies in your Presence have #% to Fire Resistance", + ["id"] = "explicit.stat_344174146", + ["text"] = "#% increased Mana Regeneration Rate per Fragile Regrowth", ["type"] = "explicit", }, [389] = { - ["id"] = "explicit.stat_3836551197", - ["text"] = "#% increased Stack size of Simulacrum Splinters found in Area", + ["id"] = "explicit.stat_1895238057", + ["text"] = "#% increased Mana Regeneration Rate while Surrounded", ["type"] = "explicit", }, [390] = { - ["id"] = "explicit.stat_3836551197", - ["text"] = "#% increased Stack size of Simulacrum Splinters found in your Maps", + ["id"] = "explicit.stat_1327522346", + ["text"] = "#% increased Mana Regeneration Rate while moving", ["type"] = "explicit", }, [391] = { - ["id"] = "explicit.stat_3465791711", - ["text"] = "Delirium Monsters in Area have #% increased Pack Size", + ["id"] = "explicit.stat_3308030688", + ["text"] = "#% increased Mana Regeneration Rate while stationary", ["type"] = "explicit", }, [392] = { - ["id"] = "explicit.stat_3465791711", - ["text"] = "Delirium Monsters in your Maps have #% increased Pack Size", + ["id"] = "explicit.stat_2702182380", + ["text"] = "#% increased Maximum Life per Socket filled", ["type"] = "explicit", }, [393] = { - ["id"] = "explicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", + ["id"] = "explicit.stat_332217711", + ["text"] = "#% increased Maximum Life per socketed Grand Spectrum", ["type"] = "explicit", }, [394] = { - ["id"] = "explicit.stat_3371943724", - ["text"] = "Trigger Decompose every 1.2 metres travelled", + ["id"] = "explicit.stat_911712882", + ["text"] = "#% increased Maximum Mana per Socket filled", ["type"] = "explicit", }, [395] = { - ["id"] = "explicit.stat_610276769", - ["text"] = "#% increased Movement Speed while affected by an Ailment", + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", ["type"] = "explicit", }, [396] = { - ["id"] = "explicit.stat_3962960008", - ["text"] = "Delirium Encounters in Area are #% more likely to spawn Unique Bosses", + ["id"] = "explicit.stat_2677352961", + ["text"] = "#% increased Melee Damage against Heavy Stunned enemies", ["type"] = "explicit", }, [397] = { - ["id"] = "explicit.stat_3962960008", - ["text"] = "#% increased chance to manifest additional Unique Boss Shards within Delirium Fog", + ["id"] = "explicit.stat_3028809864", + ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", ["type"] = "explicit", }, [398] = { - ["id"] = "explicit.stat_1104825894", - ["text"] = "#% faster Curse Activation", + ["id"] = "explicit.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", ["type"] = "explicit", }, [399] = { - ["id"] = "explicit.stat_1433051415", - ["text"] = "Enemies in your Presence are Ignited as though dealt # Base Fire Damage", + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", ["type"] = "explicit", }, [400] = { - ["id"] = "explicit.stat_3503160529", - ["text"] = "#% of Fire Damage Converted to Cold Damage", + ["id"] = "explicit.stat_3526763442", + ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", ["type"] = "explicit", }, [401] = { - ["id"] = "explicit.stat_1585769763", - ["text"] = "#% increased Blind Effect", + ["id"] = "explicit.stat_1913583994", + ["text"] = "#% increased Monster Attack Speed", ["type"] = "explicit", }, [402] = { - ["id"] = "explicit.stat_892489594", - ["text"] = "#% increased Chance to be afflicted by Ailments when Hit", + ["id"] = "explicit.stat_2488361432", + ["text"] = "#% increased Monster Cast Speed", ["type"] = "explicit", }, [403] = { - ["id"] = "explicit.stat_2895144208", - ["text"] = "Maim on Critical Hit", + ["id"] = "explicit.stat_1890519597", + ["text"] = "#% increased Monster Damage", ["type"] = "explicit", }, [404] = { - ["id"] = "explicit.stat_842299438", - ["text"] = "Bolts fired by Crossbow Attacks have #% chance to notexpend Ammunition if you've Reloaded Recently", + ["id"] = "explicit.stat_2306522833", + ["text"] = "#% increased Monster Movement Speed", ["type"] = "explicit", }, [405] = { - ["id"] = "explicit.stat_4077035099", - ["text"] = "Passives in Radius can be Allocated without being connected to your tree", + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "explicit", }, [406] = { - ["id"] = "explicit.stat_943702197", - ["text"] = "Minions gain #% of their maximum Life as Extra maximum Energy Shield", + ["id"] = "explicit.stat_2590797182", + ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", ["type"] = "explicit", }, [407] = { - ["id"] = "explicit.stat_710476746", - ["text"] = "#% increased Reload Speed", + ["id"] = "explicit.stat_1541516339", + ["text"] = "#% increased Movement Speed per Frenzy Charge", ["type"] = "explicit", }, [408] = { - ["id"] = "explicit.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["id"] = "explicit.stat_3393547195", + ["text"] = "#% increased Movement Speed when on Full Life", ["type"] = "explicit", }, [409] = { - ["id"] = "explicit.stat_720908147", - ["text"] = "#% increased Attack Speed per 20 Dexterity", + ["id"] = "explicit.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", ["type"] = "explicit", }, [410] = { - ["id"] = "explicit.stat_4287671144", - ["text"] = "#% of your Base Life Regeneration is granted to Allies in your Presence", + ["id"] = "explicit.stat_610276769", + ["text"] = "#% increased Movement Speed while affected by an Ailment", ["type"] = "explicit", }, [411] = { - ["id"] = "explicit.stat_2412053423", - ["text"] = "#% increased Spell Damage per 10 Spirit", + ["id"] = "explicit.stat_2017682521", + ["text"] = "#% increased Pack Size", ["type"] = "explicit", }, [412] = { - ["id"] = "explicit.stat_3111921451", - ["text"] = "Adds # to # Lightning Damage to Attacks per 20 Intelligence", + ["id"] = "explicit.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", ["type"] = "explicit", }, [413] = { - ["id"] = "explicit.stat_2957407601", - ["text"] = "Offering Skills have #% increased Duration", + ["id"] = "explicit.stat_818877178", + ["text"] = "#% increased Parried Debuff Magnitude", ["type"] = "explicit", }, [414] = { - ["id"] = "explicit.stat_2440265466", - ["text"] = "Areas which contain Breaches have #% chance to contain three additional Breaches", + ["id"] = "explicit.stat_1569159338", + ["text"] = "#% increased Parry Damage", ["type"] = "explicit", }, [415] = { - ["id"] = "explicit.stat_2440265466", - ["text"] = "Your Maps which contain Breaches have #% chance to contain three additional Breaches", + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, [416] = { - ["id"] = "explicit.stat_1181501418", - ["text"] = "# to Maximum Rage", + ["id"] = "explicit.stat_3473929743", + ["text"] = "#% increased Pin Buildup", ["type"] = "explicit", }, [417] = { - ["id"] = "explicit.stat_959641748", - ["text"] = "Removes #% of Mana Recovered from Life when used", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", ["type"] = "explicit", }, [418] = { - ["id"] = "explicit.stat_1811130680", - ["text"] = "#% increased Mana Recovered", + ["id"] = "explicit.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", ["type"] = "explicit", }, [419] = { - ["id"] = "explicit.stat_3612407781", - ["text"] = "# Physical damage taken from Projectile Attacks", + ["id"] = "explicit.stat_3872306017", + ["text"] = "#% increased Power Charge Duration", ["type"] = "explicit", }, [420] = { - ["id"] = "explicit.stat_613752285", - ["text"] = "Sacrifice #% of maximum Life to gain that much Energy Shield when you Cast a Spell", + ["id"] = "explicit.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", ["type"] = "explicit", }, [421] = { - ["id"] = "explicit.stat_538241406", - ["text"] = "Damaging Ailments deal damage #% faster", + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", ["type"] = "explicit", }, [422] = { - ["id"] = "explicit.stat_2091621414", - ["text"] = "Causes Bleeding on Hit", + ["id"] = "explicit.stat_3596695232", + ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", ["type"] = "explicit", }, [423] = { - ["id"] = "explicit.stat_2933846633", - ["text"] = "Dazes on Hit", + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", ["type"] = "explicit", }, [424] = { - ["id"] = "explicit.stat_1004468512", - ["text"] = "#% of Physical Damage taken as Fire Damage", + ["id"] = "explicit.stat_3359797958", + ["text"] = "#% increased Projectile Speed for Spell Skills", ["type"] = "explicit", }, [425] = { - ["id"] = "explicit.stat_854225133", - ["text"] = "You have no Life Regeneration", + ["id"] = "explicit.stat_535217483", + ["text"] = "#% increased Projectile Speed with this Weapon", ["type"] = "explicit", }, [426] = { - ["id"] = "explicit.stat_1993950627", - ["text"] = "# to # Fire Thorns damage", + ["id"] = "explicit.stat_624534143", + ["text"] = "#% increased Quantity of Breach Splinters dropped by Breach Monsters in Area", ["type"] = "explicit", }, [427] = { - ["id"] = "explicit.stat_2153364323", - ["text"] = "# Intelligence Requirement", + ["id"] = "explicit.stat_624534143", + ["text"] = "#% increased Quantity of Breach Splinters dropped by Breach Monsters in your Maps", ["type"] = "explicit", }, [428] = { - ["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", + ["id"] = "explicit.stat_1083387327", + ["text"] = "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters", ["type"] = "explicit", }, [429] = { - ["id"] = "explicit.stat_423304126", - ["text"] = "You count as on Full Mana while at #% of maximum Mana or above", + ["id"] = "explicit.stat_1083387327", + ["text"] = "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters in your Maps", ["type"] = "explicit", }, [430] = { - ["id"] = "explicit.stat_796381300", - ["text"] = "Gain 0% to #% increased Movement Speed at random when Hit, until Hit again", + ["id"] = "explicit.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "explicit", }, [431] = { - ["id"] = "explicit.stat_1702195217", - ["text"] = "#% to Block chance", + ["id"] = "explicit.stat_3119172063", + ["text"] = "#% increased Quantity of Items dropped by Map Bosses", ["type"] = "explicit", }, [432] = { - ["id"] = "explicit.stat_4145314483", - ["text"] = "#% increased Attack Speed while on Full Mana", + ["id"] = "explicit.stat_2390685262", + ["text"] = "#% increased Quantity of Items found", ["type"] = "explicit", }, [433] = { - ["id"] = "explicit.stat_3450276548", - ["text"] = "Blind Chilled enemies on Hit", + ["id"] = "explicit.stat_1457896329", + ["text"] = "#% increased Quantity of Waystones dropped by Map Bosses", ["type"] = "explicit", }, [434] = { - ["id"] = "explicit.stat_1631928082", - ["text"] = "Increases and Reductions to Minion Damage also affect you", + ["id"] = "explicit.stat_2777224821", + ["text"] = "#% increased Quantity of Waystones found", ["type"] = "explicit", }, [435] = { - ["id"] = "explicit.stat_886931978", - ["text"] = "#% more Recovery if used while on Low Life", + ["id"] = "explicit.stat_472809816", + ["text"] = "#% increased Quantity of Wombgifts found", ["type"] = "explicit", }, [436] = { - ["id"] = "explicit.stat_1618482990", - ["text"] = "#% chance for Energy Shield Recharge to start when you Kill an Enemy", + ["id"] = "explicit.stat_2416650879", + ["text"] = "#% increased Rage Cost Efficiency", ["type"] = "explicit", }, [437] = { - ["id"] = "explicit.stat_2511217560", - ["text"] = "#% increased Stun Recovery", + ["id"] = "explicit.stat_3793155082", + ["text"] = "#% increased Rare Monsters", ["type"] = "explicit", }, [438] = { - ["id"] = "explicit.stat_769129523", - ["text"] = "Causes Double Stun Buildup", + ["id"] = "explicit.stat_21824003", + ["text"] = "#% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", ["type"] = "explicit", }, [439] = { - ["id"] = "explicit.stat_2230687504", - ["text"] = "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", + ["id"] = "explicit.stat_4255069232", + ["text"] = "#% increased Rarity of Items dropped by Map Bosses", ["type"] = "explicit", }, [440] = { - ["id"] = "explicit.stat_3276224428", - ["text"] = "#% more Recovery if used while on Low Mana", + ["id"] = "explicit.stat_2306002879", + ["text"] = "#% increased Rarity of Items found", ["type"] = "explicit", }, [441] = { - ["id"] = "explicit.stat_3627052716", - ["text"] = "#% of Lightning Damage Converted to Cold Damage", + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", ["type"] = "explicit", }, [442] = { - ["id"] = "explicit.stat_2262736444", - ["text"] = "Eldritch Battery", + ["id"] = "explicit.stat_1602191394", + ["text"] = "#% increased Rarity of Items foundYour other Modifiers to Rarity of Items found do not apply", ["type"] = "explicit", }, [443] = { - ["id"] = "explicit.stat_1200347828", - ["text"] = "Life Flasks used while on Low Life apply Recovery Instantly", + ["id"] = "explicit.stat_313223231", + ["text"] = "#% increased Rarity of Items found per Socket filled", ["type"] = "explicit", }, [444] = { - ["id"] = "explicit.stat_2592455368", - ["text"] = "You have a Smoke Cloud around you while stationary", + ["id"] = "explicit.stat_2929867083", + ["text"] = "#% increased Rarity of Items found when on Low Life", ["type"] = "explicit", }, [445] = { - ["id"] = "explicit.stat_1839832419", - ["text"] = "Mana Flasks used while on Low Mana apply Recovery Instantly", + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", ["type"] = "explicit", }, [446] = { - ["id"] = "explicit.stat_1902409192", - ["text"] = "Lose # Life when you use a Skill", + ["id"] = "explicit.stat_710476746", + ["text"] = "#% increased Reload Speed", ["type"] = "explicit", }, [447] = { - ["id"] = "explicit.stat_3045072899", - ["text"] = "Minions' Resistances are equal to yours", + ["id"] = "explicit.stat_3413635271", + ["text"] = "#% increased Reservation Efficiency of Companion Skills", ["type"] = "explicit", }, [448] = { - ["id"] = "explicit.stat_3761294489", - ["text"] = "All Damage from Hits with this Weapon Contributes to Freeze Buildup", + ["id"] = "explicit.stat_1697191405", + ["text"] = "#% increased Reservation Efficiency of Herald Skills", ["type"] = "explicit", }, [449] = { - ["id"] = "explicit.stat_50721145", - ["text"] = "Your speed is unaffected by Slows", + ["id"] = "explicit.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", ["type"] = "explicit", }, [450] = { - ["id"] = "explicit.stat_2905515354", - ["text"] = "You take #% of damage from Blocked Hits", + ["id"] = "explicit.stat_1350127730", + ["text"] = "#% increased Reservation Efficiency of Remnant Skills", ["type"] = "explicit", }, [451] = { - ["id"] = "explicit.stat_2635559734", - ["text"] = "Base Critical Hit Chance for Attacks with Weapons is #%", + ["id"] = "explicit.stat_2308632835", + ["text"] = "#% increased Reservation Efficiency of Skills which create Undead Minions", ["type"] = "explicit", }, [452] = { - ["id"] = "explicit.stat_2416869319", - ["text"] = "Grants #% of Life Recovery to Minions", + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Runic Ward", ["type"] = "explicit", }, [453] = { - ["id"] = "explicit.stat_1158324489", - ["text"] = "Culling Strike against Frozen Enemies", + ["id"] = "explicit.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", ["type"] = "explicit", }, [454] = { - ["id"] = "explicit.stat_1466716929", - ["text"] = "Gain # Rage when Critically Hit by an Enemy", + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration", ["type"] = "explicit", }, [455] = { - ["id"] = "explicit.stat_88817332", - ["text"] = "#% increased Evasion Rating when on Full Life", + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", ["type"] = "explicit", }, [456] = { - ["id"] = "explicit.stat_1689729380", - ["text"] = "#% chance to Avoid Death from Hits", + ["id"] = "explicit.stat_970213192", + ["text"] = "#% increased Skill Speed", ["type"] = "explicit", }, [457] = { - ["id"] = "explicit.stat_1683578560", - ["text"] = "Unwavering Stance", + ["id"] = "explicit.stat_3313255158", + ["text"] = "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", ["type"] = "explicit", }, [458] = { - ["id"] = "explicit.stat_2214130968", - ["text"] = "Always deals Critical Hits against Heavy Stunned Enemies", + ["id"] = "explicit.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", ["type"] = "explicit", }, [459] = { - ["id"] = "explicit.stat_356835700", - ["text"] = "You are considered on Low Life while at #% of maximum Life or below instead", + ["id"] = "explicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "explicit", }, [460] = { - ["id"] = "explicit.stat_11014011", - ["text"] = "Warcries Explode Corpses dealing #% of their Life as Physical Damage", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, [461] = { - ["id"] = "explicit.stat_2567751411", - ["text"] = "Warcry Skills have #% increased Area of Effect", + ["id"] = "explicit.stat_1014398896", + ["text"] = "#% increased Spell Damage during any Flask Effect", ["type"] = "explicit", }, [462] = { - ["id"] = "explicit.stat_1478653032", - ["text"] = "#% reduced Effect of Chill on you", + ["id"] = "explicit.stat_2818518881", + ["text"] = "#% increased Spell Damage per 10 Intelligence", ["type"] = "explicit", }, [463] = { - ["id"] = "explicit.stat_98977150", - ["text"] = "Pain Attunement", + ["id"] = "explicit.stat_2412053423", + ["text"] = "#% increased Spell Damage per 10 Spirit", ["type"] = "explicit", }, [464] = { - ["id"] = "explicit.stat_3393547195", - ["text"] = "#% increased Movement Speed when on Full Life", + ["id"] = "explicit.stat_3491815140", + ["text"] = "#% increased Spell Damage per 100 Maximum Life", ["type"] = "explicit", }, [465] = { - ["id"] = "explicit.stat_585231074", - ["text"] = "No Movement Speed Penalty while Shield is Raised", + ["id"] = "explicit.stat_1850249186", + ["text"] = "#% increased Spell Damage per 100 maximum Mana", ["type"] = "explicit", }, [466] = { - ["id"] = "explicit.stat_326965591", - ["text"] = "Iron Reflexes", + ["id"] = "explicit.stat_3176481473", + ["text"] = "#% increased Spell Damage while on Full Energy Shield", ["type"] = "explicit", }, [467] = { - ["id"] = "explicit.stat_4275855121", - ["text"] = "Curses you inflict are reflected back to you", + ["id"] = "explicit.stat_4136346606", + ["text"] = "#% increased Spell Damage while wielding a Melee Weapon", ["type"] = "explicit", }, [468] = { - ["id"] = "explicit.stat_289086688", - ["text"] = "Hits Break # Armour", + ["id"] = "explicit.stat_1373860425", + ["text"] = "#% increased Spell Damage with Spells that cost Life", ["type"] = "explicit", }, [469] = { - ["id"] = "explicit.stat_359380213", - ["text"] = "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", + ["id"] = "explicit.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", ["type"] = "explicit", }, [470] = { - ["id"] = "explicit.stat_1092987622", - ["text"] = "#% of Melee Physical Damage taken reflected to Attacker", + ["id"] = "explicit.stat_347220474", + ["text"] = "#% increased Spell damage for each 200 total Mana you have Spent Recently", ["type"] = "explicit", }, [471] = { - ["id"] = "explicit.stat_2306924373", - ["text"] = "You cannot be Chilled for # second after being Chilled", + ["id"] = "explicit.stat_1416406066", + ["text"] = "#% increased Spirit", ["type"] = "explicit", }, [472] = { - ["id"] = "explicit.stat_947072590", - ["text"] = "You cannot be Ignited for # second after being Ignited", + ["id"] = "explicit.stat_3984865854", + ["text"] = "#% increased Spirit", ["type"] = "explicit", }, [473] = { - ["id"] = "explicit.stat_381470861", - ["text"] = "Enemies are Culled on Block", + ["id"] = "explicit.stat_53386210", + ["text"] = "#% increased Spirit Reservation Efficiency", ["type"] = "explicit", }, [474] = { - ["id"] = "explicit.stat_3764198549", - ["text"] = "Every 3 seconds, Consume a nearby Corpse to Recover #% of maximum Life", + ["id"] = "explicit.stat_3581035970", + ["text"] = "#% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", ["type"] = "explicit", }, [475] = { - ["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", + ["id"] = "explicit.stat_1430165758", + ["text"] = "#% increased Spirit per socketed Grand Spectrum", ["type"] = "explicit", }, [476] = { - ["id"] = "explicit.stat_3612464552", - ["text"] = "You cannot be Frozen for # second after being Frozen", + ["id"] = "explicit.stat_3836551197", + ["text"] = "#% increased Stack size of Simulacrum Splinters found in Area", ["type"] = "explicit", }, [477] = { - ["id"] = "explicit.stat_3590792340", - ["text"] = "#% increased Mana Flask Charges gained", + ["id"] = "explicit.stat_3836551197", + ["text"] = "#% increased Stack size of Simulacrum Splinters found in your Maps", ["type"] = "explicit", }, [478] = { - ["id"] = "explicit.stat_2715190555", - ["text"] = "#% to Thorns Critical Hit Chance", + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", ["type"] = "explicit", }, [479] = { - ["id"] = "explicit.stat_215346464", - ["text"] = "You cannot be Shocked for # second after being Shocked", + ["id"] = "explicit.stat_295075366", + ["text"] = "#% increased Strength Requirement", ["type"] = "explicit", }, [480] = { - ["id"] = "explicit.stat_3423694372", - ["text"] = "#% chance to be inflicted with Bleeding when Hit", + ["id"] = "explicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", ["type"] = "explicit", }, [481] = { - ["id"] = "explicit.stat_3308030688", - ["text"] = "#% increased Mana Regeneration Rate while stationary", + ["id"] = "explicit.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", ["type"] = "explicit", }, [482] = { - ["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%", + ["id"] = "explicit.stat_748522257", + ["text"] = "#% increased Stun Duration", ["type"] = "explicit", }, [483] = { - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", + ["id"] = "explicit.stat_2511217560", + ["text"] = "#% increased Stun Recovery", ["type"] = "explicit", }, [484] = { - ["id"] = "explicit.stat_2793222406", - ["text"] = "#% increased bonuses gained from Equipped Rings", + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", ["type"] = "explicit", }, [485] = { - ["id"] = "explicit.stat_4009879772", - ["text"] = "#% increased Life Flask Charges gained", + ["id"] = "explicit.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "explicit", }, [486] = { - ["id"] = "explicit.stat_62849030", - ["text"] = "Critical Hits Poison the enemy", + ["id"] = "explicit.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", ["type"] = "explicit", }, [487] = { - ["id"] = "explicit.stat_1173537953", - ["text"] = "Maximum # Fragile Regrowth", + ["id"] = "explicit.stat_909236563", + ["text"] = "#% increased Surrounded Area of Effect", ["type"] = "explicit", }, [488] = { - ["id"] = "explicit.stat_344174146", - ["text"] = "#% increased Mana Regeneration Rate per Fragile Regrowth", + ["id"] = "explicit.stat_1315743832", + ["text"] = "#% increased Thorns damage", ["type"] = "explicit", }, [489] = { - ["id"] = "explicit.stat_3528245713", - ["text"] = "Iron Grip", + ["id"] = "explicit.stat_806994543", + ["text"] = "#% increased Thorns damage if you've consumed an Endurance Charge Recently", ["type"] = "explicit", }, [490] = { - ["id"] = "explicit.stat_1374654984", - ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", ["type"] = "explicit", }, [491] = { - ["id"] = "explicit.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", + ["id"] = "explicit.stat_2639983772", + ["text"] = "#% increased Totem Damage per Curse on you", ["type"] = "explicit", }, [492] = { - ["id"] = "explicit.stat_1419390131", - ["text"] = "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", + ["id"] = "explicit.stat_2357996603", + ["text"] = "#% increased Totem Duration", ["type"] = "explicit", }, [493] = { - ["id"] = "explicit.stat_3841984913", - ["text"] = "Gain # Fragile Regrowth each second", + ["id"] = "explicit.stat_686254215", + ["text"] = "#% increased Totem Life", ["type"] = "explicit", }, [494] = { - ["id"] = "explicit.stat_3942946753", - ["text"] = "Regenerate #% of maximum Life per second while on Low Life", + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", ["type"] = "explicit", }, [495] = { - ["id"] = "explicit.stat_1435496528", - ["text"] = "Gain Cold Thorns Damage equal to #% of your maximum Mana", + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", ["type"] = "explicit", }, [496] = { - ["id"] = "explicit.stat_352044736", - ["text"] = "Every Rage also grants #% increased Stun Threshold", + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", ["type"] = "explicit", }, [497] = { - ["id"] = "explicit.stat_1306791873", - ["text"] = "Lose all Fragile Regrowth when Hit", + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", ["type"] = "explicit", }, [498] = { - ["id"] = "explicit.stat_4256314560", - ["text"] = "Shocks you when you reach maximum Power Charges", + ["id"] = "explicit.stat_1791136590", + ["text"] = "#% increased Weapon Damage per 10 Strength", ["type"] = "explicit", }, [499] = { - ["id"] = "explicit.stat_38301299", - ["text"] = "#% to Fire Resistance while on Low Life", + ["id"] = "explicit.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", ["type"] = "explicit", }, [500] = { - ["id"] = "explicit.stat_3175722882", - ["text"] = "#% of maximum Life Regenerated per second per Fragile Regrowth", + ["id"] = "explicit.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", ["type"] = "explicit", }, [501] = { - ["id"] = "explicit.stat_1073310669", - ["text"] = "#% increased Evasion Rating if you have been Hit Recently", + ["id"] = "explicit.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", ["type"] = "explicit", }, [502] = { - ["id"] = "explicit.stat_3205239847", - ["text"] = "#% of Fire Damage from Hits taken as Physical Damage", + ["id"] = "explicit.stat_3843204146", + ["text"] = "#% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", ["type"] = "explicit", }, [503] = { - ["id"] = "explicit.stat_67637087", - ["text"] = "#% less Damage taken if you have not been Hit Recently", + ["id"] = "explicit.stat_2898517796", + ["text"] = "#% increased amount of Magic Chests", ["type"] = "explicit", }, [504] = { - ["id"] = "explicit.stat_281311123", - ["text"] = "Iron Will", + ["id"] = "explicit.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", ["type"] = "explicit", }, [505] = { - ["id"] = "explicit.stat_2135899247", - ["text"] = "Lose all Power Charges on reaching maximum Power Charges", + ["id"] = "explicit.stat_798469000", + ["text"] = "#% increased amount of Rare Chests", ["type"] = "explicit", }, [506] = { - ["id"] = "explicit.stat_1453197917", - ["text"] = "#% chance to gain a Power Charge on Hit", + ["id"] = "explicit.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", ["type"] = "explicit", }, [507] = { - ["id"] = "explicit.stat_3801067695", - ["text"] = "#% reduced effect of Shock on you", + ["id"] = "explicit.stat_2793222406", + ["text"] = "#% increased bonuses gained from Equipped Rings", ["type"] = "explicit", }, [508] = { - ["id"] = "explicit.stat_1269971728", - ["text"] = "#% reduced Magnitude of Ignite on you", + ["id"] = "explicit.stat_513747733", + ["text"] = "#% increased bonuses gained from left Equipped Ring", ["type"] = "explicit", }, [509] = { - ["id"] = "explicit.stat_3811191316", - ["text"] = "Minions have #% increased Area of Effect", + ["id"] = "explicit.stat_3885501357", + ["text"] = "#% increased bonuses gained from right Equipped Ring", ["type"] = "explicit", }, [510] = { - ["id"] = "explicit.stat_1060572482", - ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["id"] = "explicit.stat_632698321", + ["text"] = "#% increased chance Vaal Beacons summon additional Monsters", ["type"] = "explicit", }, [511] = { - ["id"] = "explicit.stat_3414243317", - ["text"] = "Thorns can Retaliate against all Hits", + ["id"] = "explicit.stat_2789248444", + ["text"] = "#% increased chance for Abyssal monsters to have Abyssal Modifiers", ["type"] = "explicit", }, [512] = { - ["id"] = "explicit.stat_2310741722", - ["text"] = "#% increased Life and Mana Recovery from Flasks", + ["id"] = "explicit.stat_3815617979", + ["text"] = "#% increased chance of Azmeri Spirits", ["type"] = "explicit", }, [513] = { - ["id"] = "explicit.stat_394473632", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["id"] = "explicit.stat_1825943485", + ["text"] = "#% increased chance of Essences", ["type"] = "explicit", }, [514] = { - ["id"] = "explicit.stat_4176970656", - ["text"] = "# Physical Damage taken on Minion Death", + ["id"] = "explicit.stat_1352729973", + ["text"] = "#% increased chance of Rogue Exiles", ["type"] = "explicit", }, [515] = { - ["id"] = "explicit.stat_3686997387", - ["text"] = "Double Stun Threshold while Shield is Raised", + ["id"] = "explicit.stat_689816330", + ["text"] = "#% increased chance of Shrines", ["type"] = "explicit", }, [516] = { - ["id"] = "explicit.stat_185580205", - ["text"] = "Charms gain # charge per Second", + ["id"] = "explicit.stat_4279535856", + ["text"] = "#% increased chance of Strongboxes", ["type"] = "explicit", }, [517] = { - ["id"] = "explicit.stat_3222402650", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["id"] = "explicit.stat_267210597", + ["text"] = "#% increased chance of Summoning Circles", ["type"] = "explicit", }, [518] = { - ["id"] = "explicit.stat_1170174456", - ["text"] = "#% increased Endurance Charge Duration", + ["id"] = "explicit.stat_3481083201", + ["text"] = "#% increased chance to Poison", ["type"] = "explicit", }, [519] = { - ["id"] = "explicit.stat_2995914769", - ["text"] = "Every Rage also grants #% increased Armour", + ["id"] = "explicit.stat_293638271", + ["text"] = "#% increased chance to Shock", ["type"] = "explicit", }, [520] = { - ["id"] = "explicit.stat_1094937621", - ["text"] = "Critical Hits ignore Enemy Monster Elemental Resistances", + ["id"] = "explicit.stat_1710200734", + ["text"] = "#% increased chance to find Desecrated Currency", ["type"] = "explicit", }, [521] = { - ["id"] = "explicit.stat_3749630567", - ["text"] = "#% less Flask Charges used", + ["id"] = "explicit.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", ["type"] = "explicit", }, [522] = { - ["id"] = "explicit.stat_3605721598", - ["text"] = "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life", + ["id"] = "explicit.stat_2760643568", + ["text"] = "#% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", ["type"] = "explicit", }, [523] = { - ["id"] = "explicit.stat_3891355829|2", - ["text"] = "Upgrades Radius to Large", + ["id"] = "explicit.stat_242637938", + ["text"] = "#% increased chance to inflict Bleeding", ["type"] = "explicit", }, [524] = { - ["id"] = "explicit.stat_939832726", - ["text"] = "Recover #% of maximum Life for each Endurance Charge consumed", + ["id"] = "explicit.stat_3962960008", + ["text"] = "#% increased chance to manifest additional Unique Boss Shards within Delirium Fog", ["type"] = "explicit", }, [525] = { - ["id"] = "explicit.stat_2438634449", - ["text"] = "#% chance to Aggravate Bleeding on targets you Critically Hit with Attacks", + ["id"] = "explicit.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", ["type"] = "explicit", }, [526] = { - ["id"] = "explicit.stat_841429130", - ["text"] = "Bleeding you inflict is Aggravated", + ["id"] = "explicit.stat_1180552088", + ["text"] = "#% increased effect of Archon Buffs on you", ["type"] = "explicit", }, [527] = { - ["id"] = "explicit.stat_1769611692", - ["text"] = "Delirium in Area increases #% faster with distance from the mirror", + ["id"] = "explicit.stat_2081918629", + ["text"] = "#% increased effect of Socketed Augment Items", ["type"] = "explicit", }, [528] = { - ["id"] = "explicit.stat_1769611692", - ["text"] = "Delirium in your Maps increases #% faster with distance from the mirror", + ["id"] = "explicit.stat_4065505214", + ["text"] = "#% increased effect of Socketed Soul Cores", ["type"] = "explicit", }, [529] = { - ["id"] = "explicit.stat_1030153674", - ["text"] = "Recover #% of maximum Mana on Kill", + ["id"] = "explicit.stat_878697053", + ["text"] = "#% increased maximum Divinity", ["type"] = "explicit", }, [530] = { - ["id"] = "explicit.stat_1158842087", - ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", + ["id"] = "explicit.stat_2189090852", + ["text"] = "#% increased maximum Divinity per Corrupted Item Equipped", ["type"] = "explicit", }, [531] = { - ["id"] = "explicit.stat_2875218423", - ["text"] = "Damage Blocked is Recouped as Mana", + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "explicit", }, [532] = { - ["id"] = "explicit.stat_701564564", - ["text"] = "Gain #% of Elemental Damage as Extra Fire Damage", + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", ["type"] = "explicit", }, [533] = { - ["id"] = "explicit.stat_78985352", - ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "explicit", }, [534] = { - ["id"] = "explicit.stat_4163415912", - ["text"] = "+# to Spirit per Socket filled", + ["id"] = "explicit.stat_4273473110", + ["text"] = "#% increased maximum Runic Ward", ["type"] = "explicit", }, [535] = { - ["id"] = "explicit.stat_1086147743", - ["text"] = "#% increased Ignite Duration on Enemies", + ["id"] = "explicit.stat_2624927319", + ["text"] = "#% increased number of Monster Packs", ["type"] = "explicit", }, [536] = { - ["id"] = "explicit.stat_4058681894", - ["text"] = "You have no Critical Damage Bonus", + ["id"] = "explicit.stat_2624927319", + ["text"] = "#% increased number of Monster Packs in your Maps", ["type"] = "explicit", }, [537] = { - ["id"] = "explicit.stat_983582600", - ["text"] = "Ignite you inflict deals Chaos Damage instead of Fire Damage", + ["id"] = "explicit.stat_2694800111", + ["text"] = "#% increased number of Rare Expedition Monsters", ["type"] = "explicit", }, [538] = { - ["id"] = "explicit.stat_3550887155", - ["text"] = "Gain #% of Elemental Damage as Extra Lightning Damage", + ["id"] = "explicit.stat_2694800111", + ["text"] = "#% increased number of Rare Expedition Monsters in Area", ["type"] = "explicit", }, [539] = { - ["id"] = "explicit.stat_2293111154", - ["text"] = "Increases and Reductions to Minion Attack Speed also affect you", + ["id"] = "explicit.stat_1640965354", + ["text"] = "#% increased number of Runic Monster Markers", ["type"] = "explicit", }, [540] = { - ["id"] = "explicit.stat_632761194", - ["text"] = "Life Regeneration is applied to Energy Shield instead", + ["id"] = "explicit.stat_4219583418", + ["text"] = "#% increased quantity of Artifacts dropped by Monsters", ["type"] = "explicit", }, [541] = { - ["id"] = "explicit.stat_3947672598", - ["text"] = "Life Recovery from Regeneration is not applied", + ["id"] = "explicit.stat_4219583418", + ["text"] = "#% increased quantity of Artifacts dropped by Monsters in your Maps", ["type"] = "explicit", }, [542] = { - ["id"] = "explicit.stat_911712882", - ["text"] = "#% increased Maximum Mana per Socket filled", + ["id"] = "explicit.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", ["type"] = "explicit", }, [543] = { - ["id"] = "explicit.stat_1457896329", - ["text"] = "#% increased Quantity of Waystones dropped by Map Bosses", + ["id"] = "explicit.stat_1803659985", + ["text"] = "#% less Armour, Evasion and Energy Shield", ["type"] = "explicit", }, [544] = { - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", + ["id"] = "explicit.stat_1274947822", + ["text"] = "#% less Damage", ["type"] = "explicit", }, [545] = { - ["id"] = "explicit.stat_313223231", - ["text"] = "#% increased Rarity of Items found per Socket filled", + ["id"] = "explicit.stat_67637087", + ["text"] = "#% less Damage taken if you have not been Hit Recently", ["type"] = "explicit", }, [546] = { - ["id"] = "explicit.stat_3314057862", - ["text"] = "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", + ["id"] = "explicit.stat_3749630567", + ["text"] = "#% less Flask Charges used", ["type"] = "explicit", }, [547] = { - ["id"] = "explicit.stat_1457411584", - ["text"] = "Every 4 seconds, Recover 1 Life for every # Life Recovery per second from Regeneration", + ["id"] = "explicit.stat_2146799605", + ["text"] = "#% less Movement Speed", ["type"] = "explicit", }, [548] = { - ["id"] = "explicit.stat_1137305356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["id"] = "explicit.stat_3156445245", + ["text"] = "#% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", ["type"] = "explicit", }, [549] = { - ["id"] = "explicit.stat_231864447", - ["text"] = "Area contains an additional Rare Chest", + ["id"] = "explicit.stat_537850431", + ["text"] = "#% less Spirit", ["type"] = "explicit", }, [550] = { - ["id"] = "explicit.stat_231864447", - ["text"] = "Your Maps contain an additional Rare Chest", + ["id"] = "explicit.stat_3796523155", + ["text"] = "#% less effect of Curses on Monsters", ["type"] = "explicit", }, [551] = { - ["id"] = "explicit.stat_1816894864", - ["text"] = "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", + ["id"] = "explicit.stat_1633735772", + ["text"] = "#% less maximum Life", ["type"] = "explicit", }, [552] = { - ["id"] = "explicit.stat_3665922113", - ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["id"] = "explicit.stat_3045154261", + ["text"] = "#% less maximum Mana", ["type"] = "explicit", }, [553] = { - ["id"] = "explicit.stat_1484500028", - ["text"] = "Attacks Gain #% of Damage as Extra Cold Damage", + ["id"] = "explicit.stat_2423248184", + ["text"] = "#% less minimum Physical Attack Damage", ["type"] = "explicit", }, [554] = { - ["id"] = "explicit.stat_1526933524", - ["text"] = "Instant Recovery", + ["id"] = "explicit.stat_3376488707", + ["text"] = "#% maximum Player Resistances", ["type"] = "explicit", }, [555] = { - ["id"] = "explicit.stat_2593651571", - ["text"] = "+#% to all Elemental Resistances per Socket filled", + ["id"] = "explicit.stat_412462523", + ["text"] = "#% more Attack Damage", ["type"] = "explicit", }, [556] = { - ["id"] = "explicit.stat_1040569494", - ["text"] = "#% increased Evasion Rating if you've Dodge Rolled Recently", + ["id"] = "explicit.stat_2939415499", + ["text"] = "#% more Curse Magnitudes", ["type"] = "explicit", }, [557] = { - ["id"] = "explicit.stat_2930706364", - ["text"] = "Permanently Intimidate enemies on Block", + ["id"] = "explicit.stat_1972661424", + ["text"] = "#% more Life Flask Recovery", ["type"] = "explicit", }, [558] = { - ["id"] = "explicit.stat_258119672", - ["text"] = "# metre to Dodge Roll distance", + ["id"] = "explicit.stat_1726753705", + ["text"] = "#% more Life Recovered", ["type"] = "explicit", }, [559] = { - ["id"] = "explicit.stat_3350944114", - ["text"] = "Delirium Fog in Area dissipates #% faster", + ["id"] = "explicit.stat_95249895", + ["text"] = "#% more Monster Life", ["type"] = "explicit", }, [560] = { - ["id"] = "explicit.stat_3350944114", - ["text"] = "Delirium Fog dissipates #% faster", + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", ["type"] = "explicit", }, [561] = { - ["id"] = "explicit.stat_4065505214", - ["text"] = "#% increased effect of Socketed Soul Cores", + ["id"] = "explicit.stat_3276224428", + ["text"] = "#% more Recovery if used while on Low Mana", ["type"] = "explicit", }, [562] = { - ["id"] = "explicit.stat_551040294", - ["text"] = "Delirium Fog in Area spawns #% increased Fracturing Mirrors", + ["id"] = "explicit.stat_3735888493", + ["text"] = "#% more maximum Physical Attack Damage", ["type"] = "explicit", }, [563] = { - ["id"] = "explicit.stat_551040294", - ["text"] = "#% increased Fracturing Mirrors manifested within Delirium Fog", + ["id"] = "explicit.stat_3972229254", + ["text"] = "#% of Armour also applies to Chaos Damage", ["type"] = "explicit", }, [564] = { - ["id"] = "explicit.stat_2504358770", - ["text"] = "Breaches open and close #% faster", + ["id"] = "explicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "explicit", }, [565] = { - ["id"] = "explicit.stat_2504358770", - ["text"] = "Breaches in your Maps open and close #% faster", + ["id"] = "explicit.stat_2678930256", + ["text"] = "#% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", ["type"] = "explicit", }, [566] = { - ["id"] = "explicit.stat_1373370443", - ["text"] = "Skills have a #% longer Perfect Timing window", + ["id"] = "explicit.stat_2369960685", + ["text"] = "#% of Charges consumed by used Charms are granted to your Life Flasks", ["type"] = "explicit", }, [567] = { - ["id"] = "explicit.stat_4224965099", - ["text"] = "Lightning Damage of Enemies Hitting you is Lucky", + ["id"] = "explicit.stat_2020463573", + ["text"] = "#% of Charges consumed by used Life Flasks are granted to your Charms", ["type"] = "explicit", }, [568] = { - ["id"] = "explicit.stat_2513318031", - ["text"] = "#% increased Attributes per Socket filled", + ["id"] = "explicit.stat_1686824704", + ["text"] = "#% of Cold Damage Converted to Lightning Damage", ["type"] = "explicit", }, [569] = { - ["id"] = "explicit.stat_2301852600", - ["text"] = "Deal #% of Overkill damage to enemies within 2 metres of the enemy killed", + ["id"] = "explicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", ["type"] = "explicit", }, [570] = { - ["id"] = "explicit.stat_2442527254", - ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["id"] = "explicit.stat_2342939473", + ["text"] = "#% of Current Energy Shield also grants Elemental Damage reduction", ["type"] = "explicit", }, [571] = { - ["id"] = "explicit.stat_2702182380", - ["text"] = "#% increased Maximum Life per Socket filled", + ["id"] = "explicit.stat_2319832234", + ["text"] = "#% of Damage Taken Recouped as Life, Mana and Energy Shield", ["type"] = "explicit", }, [572] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["id"] = "explicit.stat_3918757604", + ["text"] = "#% of Damage from Deflected Hits is taken from Damageable Companion's Life before you", ["type"] = "explicit", }, [573] = { - ["id"] = "explicit.stat_2768899959", - ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["id"] = "explicit.stat_1150343007", + ["text"] = "#% of Damage from Hits is taken from your Damageable Companion's Life before you", ["type"] = "explicit", }, [574] = { - ["id"] = "explicit.stat_455816363", - ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["id"] = "explicit.stat_54812069", + ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", ["type"] = "explicit", }, [575] = { - ["id"] = "explicit.stat_1022759479", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "explicit", }, [576] = { - ["id"] = "explicit.stat_2022332470", - ["text"] = "You take Fire Damage instead of Physical Damage from Bleeding", + ["id"] = "explicit.stat_679019978", + ["text"] = "#% of Damage is taken from Mana before Life while not on Low Mana", ["type"] = "explicit", }, [577] = { - ["id"] = "explicit.stat_2696027455", - ["text"] = "#% increased Damage with Spears", + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "explicit", }, [578] = { - ["id"] = "explicit.stat_261503687", - ["text"] = "Attacks Gain #% of Physical Damage as extra Chaos Damage", + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "explicit", }, [579] = { - ["id"] = "explicit.stat_1165163804", - ["text"] = "#% increased Attack Speed with Spears", + ["id"] = "explicit.stat_2448633171", + ["text"] = "#% of Damage taken bypasses Energy Shield", ["type"] = "explicit", }, [580] = { - ["id"] = "explicit.stat_2315177528", - ["text"] = "Chaos Damage from Hits also Contributes to Electrocute Buildup", + ["id"] = "explicit.stat_3598623697", + ["text"] = "#% of Damage taken during effect Recouped as Life", ["type"] = "explicit", }, [581] = { - ["id"] = "explicit.stat_2973498992", - ["text"] = "Chaos Damage from Hits also Contributes to Freeze Buildup", + ["id"] = "explicit.stat_3471443885", + ["text"] = "#% of Damage taken from Deflected Hits Recouped as Life", ["type"] = "explicit", }, [582] = { - ["id"] = "explicit.stat_874646180", - ["text"] = "Aggravate Bleeding on Enemies when they Enter your Presence", + ["id"] = "explicit.stat_1311130924", + ["text"] = "#% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", ["type"] = "explicit", }, [583] = { - ["id"] = "explicit.stat_2954360902", - ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["id"] = "explicit.stat_2295988214", + ["text"] = "#% of Elemental Damage Converted to Chaos Damage", ["type"] = "explicit", }, [584] = { - ["id"] = "explicit.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", + ["id"] = "explicit.stat_210092264", + ["text"] = "#% of Elemental Damage Converted to Cold Damage", ["type"] = "explicit", }, [585] = { - ["id"] = "explicit.stat_3256879910", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["id"] = "explicit.stat_40154188", + ["text"] = "#% of Elemental Damage Converted to Fire Damage", ["type"] = "explicit", }, [586] = { - ["id"] = "explicit.stat_1994296038", - ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["id"] = "explicit.stat_289540902", + ["text"] = "#% of Elemental Damage Converted to Lightning Damage", ["type"] = "explicit", }, [587] = { - ["id"] = "explicit.stat_3666476747", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + ["id"] = "explicit.stat_2896115339", + ["text"] = "#% of Elemental Damage taken Recouped as Energy Shield", ["type"] = "explicit", }, [588] = { - ["id"] = "explicit.stat_2838161567", - ["text"] = "Skills reserve 50% less Spirit", + ["id"] = "explicit.stat_1175213674", + ["text"] = "#% of Elemental damage from Hits taken as Chaos damage", ["type"] = "explicit", }, [589] = { - ["id"] = "explicit.stat_1967051901", - ["text"] = "Loads an additional bolt", + ["id"] = "explicit.stat_3503160529", + ["text"] = "#% of Fire Damage Converted to Cold Damage", ["type"] = "explicit", }, [590] = { - ["id"] = "explicit.stat_410952253", - ["text"] = "Cannot have Energy Shield", + ["id"] = "explicit.stat_3205239847", + ["text"] = "#% of Fire Damage from Hits taken as Physical Damage", ["type"] = "explicit", }, [591] = { - ["id"] = "explicit.stat_1185341308", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["id"] = "explicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", ["type"] = "explicit", }, [592] = { - ["id"] = "explicit.stat_3276271783", - ["text"] = "Regenerate # Life per second per Maximum Energy Shield", + ["id"] = "explicit.stat_2772033465", + ["text"] = "#% of Fire damage Converted to Lightning damage", ["type"] = "explicit", }, [593] = { - ["id"] = "explicit.stat_4173554949", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["id"] = "explicit.stat_4108426433", + ["text"] = "#% of Fire damage taken as Cold damage", ["type"] = "explicit", }, [594] = { - ["id"] = "explicit.stat_484792219", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["id"] = "explicit.stat_3561837752", + ["text"] = "#% of Leech is Instant", ["type"] = "explicit", }, [595] = { - ["id"] = "explicit.stat_378796798", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["id"] = "explicit.stat_3658708511", + ["text"] = "#% of Life Leeched from targets affected by Abyssal Wasting is Instant", ["type"] = "explicit", }, [596] = { - ["id"] = "explicit.stat_2282052746", - ["text"] = "Rerolling Favours at Ritual Altars in Area costs #% increased Tribute", + ["id"] = "explicit.stat_2109189637", + ["text"] = "#% of Lightning Damage Converted to Chaos Damage", ["type"] = "explicit", }, [597] = { - ["id"] = "explicit.stat_2282052746", - ["text"] = "Rerolling Favours at Ritual Altars costs #% increased Tribute", + ["id"] = "explicit.stat_3627052716", + ["text"] = "#% of Lightning Damage Converted to Cold Damage", ["type"] = "explicit", }, [598] = { - ["id"] = "explicit.stat_159726667", - ["text"] = "Monsters Sacrificed at Ritual Altars in Area grant #% increased Tribute", + ["id"] = "explicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", ["type"] = "explicit", }, [599] = { - ["id"] = "explicit.stat_159726667", - ["text"] = "Monsters Sacrificed at Ritual Altars grant #% increased Tribute", + ["id"] = "explicit.stat_3198708642", + ["text"] = "#% of Lightning damage taken as Cold damage", ["type"] = "explicit", }, [600] = { - ["id"] = "explicit.stat_1426522529", - ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["id"] = "explicit.stat_546201303", + ["text"] = "#% of Mana Leeched from targets affected by Abyssal Wasting is Instant", ["type"] = "explicit", }, [601] = { - ["id"] = "explicit.stat_2822644689", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["id"] = "explicit.stat_2458962764", + ["text"] = "#% of Maximum Life Converted to Energy Shield", ["type"] = "explicit", }, [602] = { - ["id"] = "explicit.stat_1488650448", - ["text"] = "# to Ailment Threshold", + ["id"] = "explicit.stat_1092987622", + ["text"] = "#% of Melee Physical Damage taken reflected to Attacker", ["type"] = "explicit", }, [603] = { - ["id"] = "explicit.stat_253641217", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["id"] = "explicit.stat_2089152298", + ["text"] = "#% of Parry Physical Damage Converted to Cold Damage", ["type"] = "explicit", }, [604] = { - ["id"] = "explicit.stat_533892981", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", ["type"] = "explicit", }, [605] = { - ["id"] = "explicit.stat_1658498488", - ["text"] = "Corrupted Blood cannot be inflicted on you", + ["id"] = "explicit.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", ["type"] = "explicit", }, [606] = { - ["id"] = "explicit.stat_2369960685", - ["text"] = "#% of Charges consumed by used Charms are granted to your Life Flasks", + ["id"] = "explicit.stat_1004468512", + ["text"] = "#% of Physical Damage taken as Fire Damage", ["type"] = "explicit", }, [607] = { - ["id"] = "explicit.stat_588512487", - ["text"] = "Map has # additional random Modifier", + ["id"] = "explicit.stat_321970274", + ["text"] = "#% of Physical Damage taken as Lightning while your Shield is raised", ["type"] = "explicit", }, [608] = { - ["id"] = "explicit.stat_588512487", - ["text"] = "Your Maps have # additional random Modifier", + ["id"] = "explicit.stat_70760090", + ["text"] = "#% of Physical damage dealt by your Hits causes Blood Loss", ["type"] = "explicit", }, [609] = { - ["id"] = "explicit.stat_1755296234", - ["text"] = "Targets can be affected by # of your Poisons at the same time", + ["id"] = "explicit.stat_425242359", + ["text"] = "#% of Physical damage from Hits taken as Lightning damage", ["type"] = "explicit", }, [610] = { - ["id"] = "explicit.stat_474452755", - ["text"] = "Cannot Evade Enemy Attacks", + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", ["type"] = "explicit", }, [611] = { - ["id"] = "explicit.stat_1539368271", - ["text"] = "#% increased Expedition Explosive Placement Range", + ["id"] = "explicit.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "explicit", }, [612] = { - ["id"] = "explicit.stat_1039268420", - ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["id"] = "explicit.stat_782941180", + ["text"] = "#% of Spell Damage Leeched as Life", ["type"] = "explicit", }, [613] = { - ["id"] = "explicit.stat_265717301", - ["text"] = "Flasks do not recover Life", + ["id"] = "explicit.stat_3544050945", + ["text"] = "#% of Spell Mana Cost Converted to Life Cost", ["type"] = "explicit", }, [614] = { - ["id"] = "explicit.stat_259470957", - ["text"] = "On-Kill Effects happen twice", + ["id"] = "explicit.stat_1753977518", + ["text"] = "#% of Thorns Damage Leeched as Life", ["type"] = "explicit", }, [615] = { - ["id"] = "explicit.stat_4219583418", - ["text"] = "#% increased quantity of Artifacts dropped by Monsters", + ["id"] = "explicit.stat_3190121041", + ["text"] = "#% of Volatility Physical Damage Taken as Cold Damage", ["type"] = "explicit", }, [616] = { - ["id"] = "explicit.stat_4219583418", - ["text"] = "#% increased quantity of Artifacts dropped by Monsters in your Maps", + ["id"] = "explicit.stat_3175722882", + ["text"] = "#% of maximum Life Regenerated per second per Fragile Regrowth", ["type"] = "explicit", }, [617] = { - ["id"] = "explicit.stat_2002533190", - ["text"] = "Regenerate #% of maximum Life per second while Surrounded", + ["id"] = "explicit.stat_4287671144", + ["text"] = "#% of your Base Life Regeneration is granted to Allies in your Presence", ["type"] = "explicit", }, [618] = { - ["id"] = "explicit.stat_554899692", - ["text"] = "# Charm Slot (Global)", + ["id"] = "explicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", ["type"] = "explicit", }, [619] = { - ["id"] = "explicit.stat_1207554355", - ["text"] = "#% increased Arrow Speed", + ["id"] = "explicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", ["type"] = "explicit", }, [620] = { - ["id"] = "explicit.stat_2308632835", - ["text"] = "#% increased Reservation Efficiency of Skills which create Undead Minions", + ["id"] = "explicit.stat_1478653032", + ["text"] = "#% reduced Effect of Chill on you", ["type"] = "explicit", }, [621] = { - ["id"] = "explicit.stat_412462523", - ["text"] = "#% more Attack Damage", + ["id"] = "explicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", ["type"] = "explicit", }, [622] = { - ["id"] = "explicit.stat_849085925", - ["text"] = "Enemies Frozen by you take #% increased Damage", + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", ["type"] = "explicit", }, [623] = { - ["id"] = "explicit.stat_3289828378", - ["text"] = "#% increased Expedition Explosive Radius", + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", ["type"] = "explicit", }, [624] = { - ["id"] = "explicit.stat_2439129490", - ["text"] = "Chaos Resistance is zero", + ["id"] = "explicit.stat_1269971728", + ["text"] = "#% reduced Magnitude of Ignite on you", ["type"] = "explicit", }, [625] = { - ["id"] = "explicit.stat_2704905000", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["id"] = "explicit.stat_474294393", + ["text"] = "#% reduced Mana Cost of Skills", ["type"] = "explicit", }, [626] = { - ["id"] = "explicit.stat_3753748365", - ["text"] = "Damage of Enemies Hitting you is Unlucky while you are on Low Life", + ["id"] = "explicit.stat_99927264", + ["text"] = "#% reduced Shock duration on you", ["type"] = "explicit", }, [627] = { - ["id"] = "explicit.stat_234296660", - ["text"] = "Companions deal #% increased Damage", + ["id"] = "explicit.stat_3839676903", + ["text"] = "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", ["type"] = "explicit", }, [628] = { - ["id"] = "explicit.stat_2359002191", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", ["type"] = "explicit", }, [629] = { - ["id"] = "explicit.stat_918325986", - ["text"] = "#% increased Skill Speed while Shapeshifted", + ["id"] = "explicit.stat_3801067695", + ["text"] = "#% reduced effect of Shock on you", ["type"] = "explicit", }, [630] = { - ["id"] = "explicit.stat_1805182458", - ["text"] = "Companions have #% increased maximum Life", + ["id"] = "explicit.stat_3122852693", + ["text"] = "#% to Block Chance while holding a Focus", ["type"] = "explicit", }, [631] = { - ["id"] = "explicit.stat_1896066427", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["id"] = "explicit.stat_1702195217", + ["text"] = "#% to Block chance", ["type"] = "explicit", }, [632] = { - ["id"] = "explicit.stat_1984618452", - ["text"] = "Monsters have #% increased Shock Chance", + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "explicit", }, [633] = { - ["id"] = "explicit.stat_1417267954", - ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["id"] = "explicit.stat_1123023256", + ["text"] = "#% to Chaos Resistance per Socket filled", ["type"] = "explicit", }, [634] = { - ["id"] = "explicit.stat_1869147066", - ["text"] = "#% increased Glory generation for Banner Skills", + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "explicit", }, [635] = { - ["id"] = "explicit.stat_2077117738", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["id"] = "explicit.stat_3393628375", + ["text"] = "#% to Cold and Chaos Resistances", ["type"] = "explicit", }, [636] = { - ["id"] = "explicit.stat_1161337167", - ["text"] = "Can be modified while Corrupted", + ["id"] = "explicit.stat_4277795662", + ["text"] = "#% to Cold and Lightning Resistances", ["type"] = "explicit", }, [637] = { - ["id"] = "explicit.stat_1552666713", - ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["id"] = "explicit.stat_2381897042", + ["text"] = "#% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", ["type"] = "explicit", }, [638] = { - ["id"] = "explicit.stat_1337740333", - ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["id"] = "explicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", ["type"] = "explicit", }, [639] = { - ["id"] = "explicit.stat_945774314", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["id"] = "explicit.stat_518292764", + ["text"] = "#% to Critical Hit Chance", ["type"] = "explicit", }, [640] = { - ["id"] = "explicit.stat_1195849808", - ["text"] = "You gain Onslaught for # seconds on Kill", + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "explicit", }, [641] = { - ["id"] = "explicit.stat_752930724", - ["text"] = "Equipment and Skill Gems have #% increased Attribute Requirements", + ["id"] = "explicit.stat_38301299", + ["text"] = "#% to Fire Resistance while on Low Life", ["type"] = "explicit", }, [642] = { - ["id"] = "explicit.stat_3394832998", - ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["id"] = "explicit.stat_3399401168", + ["text"] = "#% to Fire Spell Critical Hit Chance", ["type"] = "explicit", }, [643] = { - ["id"] = "explicit.stat_227523295", - ["text"] = "# to Maximum Power Charges", + ["id"] = "explicit.stat_378817135", + ["text"] = "#% to Fire and Chaos Resistances", ["type"] = "explicit", }, [644] = { - ["id"] = "explicit.stat_139889694", - ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["id"] = "explicit.stat_2915988346", + ["text"] = "#% to Fire and Cold Resistances", ["type"] = "explicit", }, [645] = { - ["id"] = "explicit.stat_980177976", - ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["id"] = "explicit.stat_4032948616", + ["text"] = "#% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", ["type"] = "explicit", }, [646] = { - ["id"] = "explicit.stat_1451444093", - ["text"] = "Bifurcates Critical Hits", + ["id"] = "explicit.stat_3441501978", + ["text"] = "#% to Fire and Lightning Resistances", ["type"] = "explicit", }, [647] = { - ["id"] = "explicit.stat_1309799717", - ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["id"] = "explicit.stat_3753008264", + ["text"] = "#% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", ["type"] = "explicit", }, [648] = { - ["id"] = "explicit.stat_3751072557", - ["text"] = "Curses have no Activation Delay", + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "explicit", }, [649] = { - ["id"] = "explicit.stat_3858398337", - ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["id"] = "explicit.stat_3465022881", + ["text"] = "#% to Lightning and Chaos Resistances", ["type"] = "explicit", }, [650] = { - ["id"] = "explicit.stat_2333085568", - ["text"] = "# to all Attributes per Level", + ["id"] = "explicit.stat_1301765461", + ["text"] = "#% to Maximum Chaos Resistance", ["type"] = "explicit", }, [651] = { - ["id"] = "explicit.stat_868556494", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["id"] = "explicit.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", ["type"] = "explicit", }, [652] = { - ["id"] = "explicit.stat_3821543413", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["id"] = "explicit.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", ["type"] = "explicit", }, [653] = { - ["id"] = "explicit.stat_3384885789", - ["text"] = "This Weapon's Critical Hit Chance is #%", + ["id"] = "explicit.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", ["type"] = "explicit", }, [654] = { - ["id"] = "explicit.stat_1520059289", - ["text"] = "Onslaught", + ["id"] = "explicit.stat_2039822488", + ["text"] = "#% to Maximum Quality", ["type"] = "explicit", }, [655] = { - ["id"] = "explicit.stat_4164870816", - ["text"] = "#% increased Critical Damage Bonus per Power Charge", + ["id"] = "explicit.stat_3655769732", + ["text"] = "#% to Quality of all Skills", ["type"] = "explicit", }, [656] = { - ["id"] = "explicit.stat_517664839", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + ["id"] = "explicit.stat_2715190555", + ["text"] = "#% to Thorns Critical Hit Chance", ["type"] = "explicit", }, [657] = { - ["id"] = "explicit.stat_1540254896", - ["text"] = "Flammability Magnitude is doubled", + ["id"] = "explicit.stat_3613173483", + ["text"] = "#% to Unarmed Melee Attack Critical Hit Chance", ["type"] = "explicit", }, [658] = { - ["id"] = "explicit.stat_4294267596", - ["text"] = "Take no Extra Damage from Critical Hits", + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "explicit", }, [659] = { - ["id"] = "explicit.stat_1602191394", - ["text"] = "#% increased Rarity of Items foundYour other Modifiers to Rarity of Items found do not apply", + ["id"] = "explicit.stat_2593644209", + ["text"] = "#% to all Elemental Resistances per Power Charge", ["type"] = "explicit", }, [660] = { - ["id"] = "explicit.stat_793801176", - ["text"] = "Energy Generation is doubled", + ["id"] = "explicit.stat_242161915", + ["text"] = "#% to all Elemental Resistances per socketed Grand Spectrum", ["type"] = "explicit", }, [661] = { - ["id"] = "explicit.stat_1576794517", - ["text"] = "Enemies in your Presence killed by anyone count as being killed by you instead", + ["id"] = "explicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "explicit", }, [662] = { - ["id"] = "explicit.stat_4012215578", - ["text"] = "All Damage from Hits Contributes to Poison Magnitude", + ["id"] = "explicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", ["type"] = "explicit", }, [663] = { - ["id"] = "explicit.stat_3391917254", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["id"] = "explicit.stat_933355817", + ["text"] = "#% to gain Archon of Undeath when you create an Offering", ["type"] = "explicit", }, [664] = { - ["id"] = "explicit.stat_2524254339", - ["text"] = "Culling Strike", + ["id"] = "explicit.stat_480796730", + ["text"] = "#% to maximum Block chance", ["type"] = "explicit", }, [665] = { - ["id"] = "explicit.stat_3641543553", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["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", }, [666] = { - ["id"] = "explicit.stat_1508661598", - ["text"] = "Hits with this Weapon have no Critical Damage Bonus", + ["id"] = "explicit.stat_3302775221", + ["text"] = "+# maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", ["type"] = "explicit", }, [667] = { - ["id"] = "explicit.stat_2350411833", - ["text"] = "You lose #% of maximum Energy Shield per second", + ["id"] = "explicit.stat_1484026495", + ["text"] = "+# maximum stacks of Puppet Master", ["type"] = "explicit", }, [668] = { - ["id"] = "explicit.stat_2726713579", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["id"] = "explicit.stat_448592698|8", + ["text"] = "+# to Level of all Alchemist's Boon Skills", ["type"] = "explicit", }, [669] = { - ["id"] = "explicit.stat_2801937280", - ["text"] = "Blood Magic", + ["id"] = "explicit.stat_448592698|208", + ["text"] = "+# to Level of all Ancestral Cry Skills", ["type"] = "explicit", }, [670] = { - ["id"] = "explicit.stat_2065500219", - ["text"] = "#% increased Effectiveness of Monsters in your Maps", + ["id"] = "explicit.stat_448592698|21", + ["text"] = "+# to Level of all Ancestral Warrior Totem Skills", ["type"] = "explicit", }, [671] = { - ["id"] = "explicit.stat_310945763", - ["text"] = "#% increased Life Cost Efficiency", + ["id"] = "explicit.stat_448592698|98", + ["text"] = "+# to Level of all Arc Skills", ["type"] = "explicit", }, [672] = { - ["id"] = "explicit.stat_664024640", - ["text"] = "You can Socket an additional copy of each Lineage Support Gem, in different Skills", + ["id"] = "explicit.stat_448592698|11", + ["text"] = "+# to Level of all Archmage Skills", ["type"] = "explicit", }, [673] = { - ["id"] = "explicit.stat_462424929", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["id"] = "explicit.stat_448592698|119", + ["text"] = "+# to Level of all Arctic Armour Skills", ["type"] = "explicit", }, [674] = { - ["id"] = "explicit.stat_3669820740", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + ["id"] = "explicit.stat_448592698|237", + ["text"] = "+# to Level of all Arctic Howl Skills", ["type"] = "explicit", }, [675] = { - ["id"] = "explicit.stat_295075366", - ["text"] = "#% increased Strength Requirement", + ["id"] = "explicit.stat_448592698|135", + ["text"] = "+# to Level of all Armour Breaker Skills", ["type"] = "explicit", }, [676] = { - ["id"] = "explicit.stat_3028809864", - ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["id"] = "explicit.stat_448592698|174", + ["text"] = "+# to Level of all Armour Piercing Rounds Skills", ["type"] = "explicit", }, [677] = { - ["id"] = "explicit.stat_3971919056", - ["text"] = "Life Recharges", + ["id"] = "explicit.stat_448592698|86", + ["text"] = "+# to Level of all Artillery Ballista Skills", ["type"] = "explicit", }, [678] = { - ["id"] = "explicit.stat_3225608889", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + ["id"] = "explicit.stat_448592698|5", + ["text"] = "+# to Level of all Attrition Skills", ["type"] = "explicit", }, [679] = { - ["id"] = "explicit.stat_3106718406", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + ["id"] = "explicit.stat_448592698|30", + ["text"] = "+# to Level of all Ball Lightning Skills", ["type"] = "explicit", }, [680] = { - ["id"] = "explicit.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["id"] = "explicit.stat_448592698|242", + ["text"] = "+# to Level of all Barkskin Skills", ["type"] = "explicit", }, [681] = { - ["id"] = "explicit.stat_4283407333", - ["text"] = "# to Level of all Skills", + ["id"] = "explicit.stat_448592698|100", + ["text"] = "+# to Level of all Barrage Skills", ["type"] = "explicit", }, [682] = { - ["id"] = "explicit.stat_1653682082", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["id"] = "explicit.stat_448592698|67", + ["text"] = "+# to Level of all Barrier Invocation Skills", ["type"] = "explicit", }, [683] = { - ["id"] = "explicit.stat_2272980012", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["id"] = "explicit.stat_448592698|12", + ["text"] = "+# to Level of all Berserk Skills", ["type"] = "explicit", }, [684] = { - ["id"] = "explicit.stat_3513818125", - ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["id"] = "explicit.stat_448592698|63", + ["text"] = "+# to Level of all Blasphemy Skills", ["type"] = "explicit", }, [685] = { - ["id"] = "explicit.stat_1569159338", - ["text"] = "#% increased Parry Damage", + ["id"] = "explicit.stat_448592698|3", + ["text"] = "+# to Level of all Blink Skills", ["type"] = "explicit", }, [686] = { - ["id"] = "explicit.stat_821948283", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + ["id"] = "explicit.stat_448592698|178", + ["text"] = "+# to Level of all Blood Hunt Skills", ["type"] = "explicit", }, [687] = { - ["id"] = "explicit.stat_999436592", - ["text"] = "Excess Life Recovery from Leech is applied to Energy Shield", + ["id"] = "explicit.stat_448592698|192", + ["text"] = "+# to Level of all Bloodhound's Mark Skills", ["type"] = "explicit", }, [688] = { - ["id"] = "explicit.stat_2402413437", - ["text"] = "Energy Shield Recharge starts when you use a Mana Flask", + ["id"] = "explicit.stat_448592698|145", + ["text"] = "+# to Level of all Bone Cage Skills", ["type"] = "explicit", }, [689] = { - ["id"] = "explicit.stat_65133983", - ["text"] = "Drop Shocked Ground while moving, lasting 8 seconds", + ["id"] = "explicit.stat_448592698|31", + ["text"] = "+# to Level of all Bone Offering Skills", ["type"] = "explicit", }, [690] = { - ["id"] = "explicit.stat_1875158664", - ["text"] = "Giant's Blood", + ["id"] = "explicit.stat_448592698|163", + ["text"] = "+# to Level of all Boneshatter Skills", ["type"] = "explicit", }, [691] = { - ["id"] = "explicit.stat_720388959", - ["text"] = "Life Recovery from Flasks is instant", + ["id"] = "explicit.stat_448592698|107", + ["text"] = "+# to Level of all Bonestorm Skills", ["type"] = "explicit", }, [692] = { - ["id"] = "explicit.stat_513747733", - ["text"] = "#% increased bonuses gained from left Equipped Ring", + ["id"] = "explicit.stat_448592698|238", + ["text"] = "+# to Level of all Briarpatch Skills", ["type"] = "explicit", }, [693] = { - ["id"] = "explicit.stat_3885501357", - ["text"] = "#% increased bonuses gained from right Equipped Ring", + ["id"] = "explicit.stat_448592698|1", + ["text"] = "+# to Level of all Cast on Critical Skills", ["type"] = "explicit", }, [694] = { - ["id"] = "explicit.stat_1770833858", - ["text"] = "Delirium Encounters in Area have #% chance to generate an additional Reward", + ["id"] = "explicit.stat_448592698|2", + ["text"] = "+# to Level of all Cast on Dodge Skills", ["type"] = "explicit", }, [695] = { - ["id"] = "explicit.stat_1770833858", - ["text"] = "Delirium Encounters in your Maps have #% chance to generate an additional Reward", + ["id"] = "explicit.stat_448592698|215", + ["text"] = "+# to Level of all Cast on Elemental Ailment Skills", ["type"] = "explicit", }, [696] = { - ["id"] = "explicit.stat_2323782229", - ["text"] = "Slaying Rare Monsters in Area pauses the Delirium Mirror Timer for 1 second", + ["id"] = "explicit.stat_448592698|65", + ["text"] = "+# to Level of all Cast on Freeze Skills", ["type"] = "explicit", }, [697] = { - ["id"] = "explicit.stat_2323782229", - ["text"] = "Slaying Rare Monsters in your Maps pauses the Delirium Mirror Timer for 1 second", + ["id"] = "explicit.stat_448592698|66", + ["text"] = "+# to Level of all Cast on Ignite Skills", ["type"] = "explicit", }, [698] = { - ["id"] = "explicit.stat_3398301358", - ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["id"] = "explicit.stat_448592698|69", + ["text"] = "+# to Level of all Cast on Minion Death Skills", ["type"] = "explicit", }, [699] = { - ["id"] = "explicit.stat_1166140625", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["id"] = "explicit.stat_448592698|64", + ["text"] = "+# to Level of all Cast on Shock Skills", ["type"] = "explicit", }, [700] = { - ["id"] = "explicit.stat_4195198267", - ["text"] = "Blocking Damage Poisons the Enemy as though dealing # Base Chaos Damage", + ["id"] = "explicit.stat_448592698|7", + ["text"] = "+# to Level of all Charge Regulation Skills", ["type"] = "explicit", }, [701] = { - ["id"] = "explicit.stat_1910743684", - ["text"] = "All damage with this Weapon causes Electrocution buildup", + ["id"] = "explicit.stat_448592698|55", + ["text"] = "+# to Level of all Charged Staff Skills", ["type"] = "explicit", }, [702] = { - ["id"] = "explicit.stat_2720982137", - ["text"] = "Banner Skills have #% increased Duration", + ["id"] = "explicit.stat_448592698|26", + ["text"] = "+# to Level of all Cluster Grenade Skills", ["type"] = "explicit", }, [703] = { - ["id"] = "explicit.stat_2131720304", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["id"] = "explicit.stat_448592698|76", + ["text"] = "+# to Level of all Combat Frenzy Skills", ["type"] = "explicit", }, [704] = { - ["id"] = "explicit.stat_715957346", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["id"] = "explicit.stat_448592698|37", + ["text"] = "+# to Level of all Comet Skills", ["type"] = "explicit", }, [705] = { - ["id"] = "explicit.stat_1465760952", - ["text"] = "Cannot Block", + ["id"] = "explicit.stat_448592698|82", + ["text"] = "+# to Level of all Conductivity Skills", ["type"] = "explicit", }, [706] = { - ["id"] = "explicit.stat_2056107438", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["id"] = "explicit.stat_448592698|159", + ["text"] = "+# to Level of all Contagion Skills", ["type"] = "explicit", }, [707] = { - ["id"] = "explicit.stat_3679696791", - ["text"] = "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", + ["id"] = "explicit.stat_448592698|202", + ["text"] = "+# to Level of all Convalescence Skills", ["type"] = "explicit", }, [708] = { - ["id"] = "explicit.stat_1602294220", - ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["id"] = "explicit.stat_448592698|232", + ["text"] = "+# to Level of all Cross Slash Skills", ["type"] = "explicit", }, [709] = { - ["id"] = "explicit.stat_3815617979", - ["text"] = "Area has #% increased chance to contain Azmeri Spirits", + ["id"] = "explicit.stat_448592698|203", + ["text"] = "+# to Level of all Cull The Weak Skills", ["type"] = "explicit", }, [710] = { - ["id"] = "explicit.stat_3815617979", - ["text"] = "#% increased chance of Azmeri Spirits", + ["id"] = "explicit.stat_448592698|58", + ["text"] = "+# to Level of all Dark Effigy Skills", ["type"] = "explicit", }, [711] = { - ["id"] = "explicit.stat_2081918629", - ["text"] = "#% increased effect of Socketed Augment Items", + ["id"] = "explicit.stat_448592698|70", + ["text"] = "+# to Level of all Defiance Banner Skills", ["type"] = "explicit", }, [712] = { - ["id"] = "explicit.stat_1145481685", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["id"] = "explicit.stat_448592698|46", + ["text"] = "+# to Level of all Despair Skills", ["type"] = "explicit", }, [713] = { - ["id"] = "explicit.stat_3700202631", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + ["id"] = "explicit.stat_448592698|78", + ["text"] = "+# to Level of all Detonate Dead Skills", ["type"] = "explicit", }, [714] = { - ["id"] = "explicit.stat_1563503803", - ["text"] = "#% chance to Avoid Chaos Damage from Hits", + ["id"] = "explicit.stat_448592698|56", + ["text"] = "+# to Level of all Detonating Arrow Skills", ["type"] = "explicit", }, [715] = { - ["id"] = "explicit.stat_3491722585", - ["text"] = "Enemies in your Presence are Intimidated", + ["id"] = "explicit.stat_448592698|234", + ["text"] = "+# to Level of all Devour Skills", ["type"] = "explicit", }, [716] = { - ["id"] = "explicit.stat_4078695", - ["text"] = "# to Maximum Frenzy Charges", + ["id"] = "explicit.stat_448592698|177", + ["text"] = "+# to Level of all Disengage Skills", ["type"] = "explicit", }, [717] = { - ["id"] = "explicit.stat_2415497478", - ["text"] = "#% chance to Avoid Physical Damage from Hits", + ["id"] = "explicit.stat_448592698|4", + ["text"] = "+# to Level of all Dread Banner Skills", ["type"] = "explicit", }, [718] = { - ["id"] = "explicit.stat_3409275777", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["id"] = "explicit.stat_448592698|158", + ["text"] = "+# to Level of all Earthquake Skills", ["type"] = "explicit", }, [719] = { - ["id"] = "explicit.stat_2772033465", - ["text"] = "#% of Fire damage Converted to Lightning damage", + ["id"] = "explicit.stat_448592698|84", + ["text"] = "+# to Level of all Earthshatter Skills", ["type"] = "explicit", }, [720] = { - ["id"] = "explicit.stat_30438393", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + ["id"] = "explicit.stat_448592698|110", + ["text"] = "+# to Level of all Electrocuting Arrow Skills", ["type"] = "explicit", }, [721] = { - ["id"] = "explicit.stat_3441651621", - ["text"] = "# Physical Damage taken from Attack Hits", + ["id"] = "explicit.stat_448592698|6", + ["text"] = "+# to Level of all Elemental Conflux Skills", ["type"] = "explicit", }, [722] = { - ["id"] = "explicit.stat_3035140377", - ["text"] = "# to Level of all Attack Skills", + ["id"] = "explicit.stat_448592698|72", + ["text"] = "+# to Level of all Elemental Invocation Skills", ["type"] = "explicit", }, [723] = { - ["id"] = "explicit.stat_2969557004", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["id"] = "explicit.stat_448592698|196", + ["text"] = "+# to Level of all Elemental Sundering Skills", ["type"] = "explicit", }, [724] = { - ["id"] = "explicit.stat_2392824305", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + ["id"] = "explicit.stat_448592698|216", + ["text"] = "+# to Level of all Elemental Weakness Skills", ["type"] = "explicit", }, [725] = { - ["id"] = "explicit.stat_480796730", - ["text"] = "#% to maximum Block chance", + ["id"] = "explicit.stat_448592698|149", + ["text"] = "+# to Level of all Ember Fusillade Skills", ["type"] = "explicit", }, [726] = { - ["id"] = "explicit.stat_2976476845", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["id"] = "explicit.stat_448592698|43", + ["text"] = "+# to Level of all Emergency Reload Skills", ["type"] = "explicit", }, [727] = { - ["id"] = "explicit.stat_2840989393", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + ["id"] = "explicit.stat_448592698|134", + ["text"] = "+# to Level of all Enfeeble Skills", ["type"] = "explicit", }, [728] = { - ["id"] = "explicit.stat_1541516339", - ["text"] = "#% increased Movement Speed per Frenzy Charge", + ["id"] = "explicit.stat_448592698|230", + ["text"] = "+# to Level of all Entangle Skills", ["type"] = "explicit", }, [729] = { - ["id"] = "explicit.stat_2812872407", - ["text"] = "Life Recovery from Flasks also applies to Energy Shield", + ["id"] = "explicit.stat_448592698|165", + ["text"] = "+# to Level of all Escape Shot Skills", ["type"] = "explicit", }, [730] = { - ["id"] = "explicit.stat_111835965", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + ["id"] = "explicit.stat_448592698|139", + ["text"] = "+# to Level of all Essence Drain Skills", ["type"] = "explicit", }, [731] = { - ["id"] = "explicit.stat_3596695232", - ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["id"] = "explicit.stat_448592698|239", + ["text"] = "+# to Level of all Eternal Rage Skills", ["type"] = "explicit", }, [732] = { - ["id"] = "explicit.stat_2108821127", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["id"] = "explicit.stat_448592698|168", + ["text"] = "+# to Level of all Explosive Grenade Skills", ["type"] = "explicit", }, [733] = { - ["id"] = "explicit.stat_2161347476", - ["text"] = "Accuracy Rating is Doubled", + ["id"] = "explicit.stat_448592698|92", + ["text"] = "+# to Level of all Explosive Shot Skills", ["type"] = "explicit", }, [734] = { - ["id"] = "explicit.stat_2714890129", - ["text"] = "Life Leech can Overflow Maximum Life", + ["id"] = "explicit.stat_448592698|184", + ["text"] = "+# to Level of all Explosive Spear Skills", ["type"] = "explicit", }, [735] = { - ["id"] = "explicit.stat_1256719186", - ["text"] = "#% increased Duration (Flask)", + ["id"] = "explicit.stat_448592698|18", + ["text"] = "+# to Level of all Eye of Winter Skills", ["type"] = "explicit", }, [736] = { - ["id"] = "explicit.stat_3774951878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["id"] = "explicit.stat_448592698|155", + ["text"] = "+# to Level of all Falling Thunder Skills", ["type"] = "explicit", }, [737] = { - ["id"] = "explicit.stat_2466785537", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["id"] = "explicit.stat_448592698|189", + ["text"] = "+# to Level of all Fangs of Frost Skills", ["type"] = "explicit", }, [738] = { - ["id"] = "explicit.stat_1852184471", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", + ["id"] = "explicit.stat_448592698|243", + ["text"] = "+# to Level of all Feral Invocation Skills", ["type"] = "explicit", }, [739] = { - ["id"] = "explicit.stat_2045949233", - ["text"] = "#% chance for Slam Skills you use yourself to cause an additional Aftershock", + ["id"] = "explicit.stat_448592698|225", + ["text"] = "+# to Level of all Ferocious Roar Skills", ["type"] = "explicit", }, [740] = { - ["id"] = "explicit.stat_1773308808", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["id"] = "explicit.stat_448592698|57", + ["text"] = "+# to Level of all Fireball Skills", ["type"] = "explicit", }, [741] = { - ["id"] = "explicit.stat_3563080185", - ["text"] = "#% increased Culling Strike Threshold", + ["id"] = "explicit.stat_448592698|29", + ["text"] = "+# to Level of all Firestorm Skills", ["type"] = "explicit", }, [742] = { - ["id"] = "explicit.stat_1432756708", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["id"] = "explicit.stat_448592698|229", + ["text"] = "+# to Level of all Flame Breath Skills", ["type"] = "explicit", }, [743] = { - ["id"] = "explicit.stat_2440073079", - ["text"] = "#% increased Damage while Shapeshifted", + ["id"] = "explicit.stat_448592698|162", + ["text"] = "+# to Level of all Flame Wall Skills", ["type"] = "explicit", }, [744] = { - ["id"] = "explicit.stat_1546580830", - ["text"] = "Enemies in your Presence have Lightning Resistance equal to yours", + ["id"] = "explicit.stat_448592698|15", + ["text"] = "+# to Level of all Flameblast Skills", ["type"] = "explicit", }, [745] = { - ["id"] = "explicit.stat_2456523742", - ["text"] = "#% increased Critical Damage Bonus with Spears", + ["id"] = "explicit.stat_448592698|80", + ["text"] = "+# to Level of all Flammability Skills", ["type"] = "explicit", }, [746] = { - ["id"] = "explicit.stat_3088348485", - ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["id"] = "explicit.stat_448592698|142", + ["text"] = "+# to Level of all Flash Grenade Skills", ["type"] = "explicit", }, [747] = { - ["id"] = "explicit.stat_473917671", - ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["id"] = "explicit.stat_448592698|13", + ["text"] = "+# to Level of all Flicker Strike Skills", ["type"] = "explicit", }, [748] = { - ["id"] = "explicit.stat_1129429646", - ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + ["id"] = "explicit.stat_448592698|207", + ["text"] = "+# to Level of all Forge Hammer Skills", ["type"] = "explicit", }, [749] = { - ["id"] = "explicit.stat_1298316550", - ["text"] = "Dodge Roll passes through Enemies", + ["id"] = "explicit.stat_448592698|206", + ["text"] = "+# to Level of all Fortifying Cry Skills", ["type"] = "explicit", }, [750] = { - ["id"] = "explicit.stat_442393998", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["id"] = "explicit.stat_448592698|173", + ["text"] = "+# to Level of all Fragmentation Rounds Skills", ["type"] = "explicit", }, [751] = { - ["id"] = "explicit.stat_944643028", - ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["id"] = "explicit.stat_448592698|95", + ["text"] = "+# to Level of all Freezing Mark Skills", ["type"] = "explicit", }, [752] = { - ["id"] = "explicit.stat_28208665", - ["text"] = "Favours Deferred at Ritual Altars in Area reappear #% sooner", + ["id"] = "explicit.stat_448592698|118", + ["text"] = "+# to Level of all Freezing Salvo Skills", ["type"] = "explicit", }, [753] = { - ["id"] = "explicit.stat_28208665", - ["text"] = "Favours Deferred at Ritual Altars in your Maps reappear #% sooner", + ["id"] = "explicit.stat_448592698|157", + ["text"] = "+# to Level of all Frost Bomb Skills", ["type"] = "explicit", }, [754] = { - ["id"] = "explicit.stat_3999959974", - ["text"] = "Lightning Resistance does not affect Lightning damage taken", + ["id"] = "explicit.stat_448592698|211", + ["text"] = "+# to Level of all Frost Darts Skills", ["type"] = "explicit", }, [755] = { - ["id"] = "explicit.stat_2134207902", - ["text"] = "+100% of Armour also applies to Lightning Damage", + ["id"] = "explicit.stat_448592698|45", + ["text"] = "+# to Level of all Frost Wall Skills", ["type"] = "explicit", }, [756] = { - ["id"] = "explicit.stat_599749213", - ["text"] = "# to Level of all Fire Skills", + ["id"] = "explicit.stat_448592698|140", + ["text"] = "+# to Level of all Frostbolt Skills", ["type"] = "explicit", }, [757] = { - ["id"] = "explicit.stat_391602279", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["id"] = "explicit.stat_448592698|169", + ["text"] = "+# to Level of all Frozen Locus Skills", ["type"] = "explicit", }, [758] = { - ["id"] = "explicit.stat_1031644647", - ["text"] = "Revived Monsters from Ritual Altars in Area have #% increased chance to be Magic", + ["id"] = "explicit.stat_448592698|224", + ["text"] = "+# to Level of all Furious Slam Skills", ["type"] = "explicit", }, [759] = { - ["id"] = "explicit.stat_1031644647", - ["text"] = "Revived Monsters from Ritual Altars have #% increased chance to be Magic", + ["id"] = "explicit.stat_448592698|231", + ["text"] = "+# to Level of all Fury of the Mountain Skills", ["type"] = "explicit", }, [760] = { - ["id"] = "explicit.stat_1147690586", - ["text"] = "# to Level of all Lightning Skills", + ["id"] = "explicit.stat_448592698|117", + ["text"] = "+# to Level of all Galvanic Shards Skills", ["type"] = "explicit", }, [761] = { - ["id"] = "explicit.stat_1776968075", - ["text"] = "You have no Elemental Resistances", + ["id"] = "explicit.stat_448592698|89", + ["text"] = "+# to Level of all Gas Arrow Skills", ["type"] = "explicit", }, [762] = { - ["id"] = "explicit.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["id"] = "explicit.stat_448592698|104", + ["text"] = "+# to Level of all Gas Grenade Skills", ["type"] = "explicit", }, [763] = { - ["id"] = "explicit.stat_1301765461", - ["text"] = "#% to Maximum Chaos Resistance", + ["id"] = "explicit.stat_448592698|28", + ["text"] = "+# to Level of all Gathering Storm Skills", ["type"] = "explicit", }, [764] = { - ["id"] = "explicit.stat_3113764475", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["id"] = "explicit.stat_448592698|124", + ["text"] = "+# to Level of all Ghost Dance Skills", ["type"] = "explicit", }, [765] = { - ["id"] = "explicit.stat_1345835998", - ["text"] = "Deferring Favours at Ritual Altars in Area costs #% increased Tribute", + ["id"] = "explicit.stat_448592698|93", + ["text"] = "+# to Level of all Glacial Bolt Skills", ["type"] = "explicit", }, [766] = { - ["id"] = "explicit.stat_1345835998", - ["text"] = "Deferring Favours at Ritual Altars in your Maps costs #% increased Tribute", + ["id"] = "explicit.stat_448592698|166", + ["text"] = "+# to Level of all Glacial Cascade Skills", ["type"] = "explicit", }, [767] = { - ["id"] = "explicit.stat_3429148113", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["id"] = "explicit.stat_448592698|182", + ["text"] = "+# to Level of all Glacial Lance Skills", ["type"] = "explicit", }, [768] = { - ["id"] = "explicit.stat_64726306", - ["text"] = "Can't use other Rings", + ["id"] = "explicit.stat_448592698|129", + ["text"] = "+# to Level of all Grim Feast Skills", ["type"] = "explicit", }, [769] = { - ["id"] = "explicit.stat_4112450013", - ["text"] = "Moving while Bleeding doesn't cause you to take extra damage", + ["id"] = "explicit.stat_448592698|40", + ["text"] = "+# to Level of all Hailstorm Rounds Skills", ["type"] = "explicit", }, [770] = { - ["id"] = "explicit.stat_2955966707", - ["text"] = "The Effect of Chill on you is reversed", + ["id"] = "explicit.stat_448592698|23", + ["text"] = "+# to Level of all Hammer of the Gods Skills", ["type"] = "explicit", }, [771] = { - ["id"] = "explicit.stat_3979184174", - ["text"] = "Revived Monsters from Ritual Altars in Area have #% increased chance to be Rare", + ["id"] = "explicit.stat_448592698|62", + ["text"] = "+# to Level of all Hand of Chayula Skills", ["type"] = "explicit", }, [772] = { - ["id"] = "explicit.stat_3979184174", - ["text"] = "Revived Monsters from Ritual Altars have #% increased chance to be Rare", + ["id"] = "explicit.stat_448592698|120", + ["text"] = "+# to Level of all Herald of Ash Skills", ["type"] = "explicit", }, [773] = { - ["id"] = "explicit.stat_3070990531", - ["text"] = "You have no Accuracy Penalty at Distance", + ["id"] = "explicit.stat_448592698|199", + ["text"] = "+# to Level of all Herald of Blood Skills", ["type"] = "explicit", }, [774] = { - ["id"] = "explicit.stat_331731406", - ["text"] = "Cannot be Ignited", + ["id"] = "explicit.stat_448592698|186", + ["text"] = "+# to Level of all Herald of Blood Skills", ["type"] = "explicit", }, [775] = { - ["id"] = "explicit.stat_2920970371", - ["text"] = "#% increased Duration of Curses on you", + ["id"] = "explicit.stat_448592698|121", + ["text"] = "+# to Level of all Herald of Ice Skills", ["type"] = "explicit", }, [776] = { - ["id"] = "explicit.stat_1143240184", - ["text"] = "You count as on Low Mana while at #% of maximum Life or below", + ["id"] = "explicit.stat_448592698|75", + ["text"] = "+# to Level of all Herald of Plague Skills", ["type"] = "explicit", }, [777] = { - ["id"] = "explicit.stat_1135194732", - ["text"] = "Can have # additional Instilled Modifiers", + ["id"] = "explicit.stat_448592698|122", + ["text"] = "+# to Level of all Herald of Thunder Skills", ["type"] = "explicit", }, [778] = { - ["id"] = "explicit.stat_3419203492", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["id"] = "explicit.stat_448592698|34", + ["text"] = "+# to Level of all Hexblast Skills", ["type"] = "explicit", }, [779] = { - ["id"] = "explicit.stat_1555237944", - ["text"] = "#% chance when you gain a Charge to gain an additional Charge", + ["id"] = "explicit.stat_448592698|150", + ["text"] = "+# to Level of all High Velocity Rounds Skills", ["type"] = "explicit", }, [780] = { - ["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 #", + ["id"] = "explicit.stat_448592698|81", + ["text"] = "+# to Level of all Hypothermia Skills", ["type"] = "explicit", }, [781] = { - ["id"] = "explicit.stat_3154256486", - ["text"] = "You count as on Low Life while at #% of maximum Mana or below", + ["id"] = "explicit.stat_448592698|153", + ["text"] = "+# to Level of all Ice Nova Skills", ["type"] = "explicit", }, [782] = { - ["id"] = "explicit.stat_3647242059", - ["text"] = "Left ring slot: Projectiles from Spells cannot Chain", + ["id"] = "explicit.stat_448592698|116", + ["text"] = "+# to Level of all Ice Shards Skills", ["type"] = "explicit", }, [783] = { - ["id"] = "explicit.stat_1555918911", - ["text"] = "Right ring slot: Projectiles from Spells Chain +# times", + ["id"] = "explicit.stat_448592698|61", + ["text"] = "+# to Level of all Ice Shot Skills", ["type"] = "explicit", }, [784] = { - ["id"] = "explicit.stat_4219853180", - ["text"] = "Ritual Favours in Area have #% increased chance to be Omens", + ["id"] = "explicit.stat_448592698|103", + ["text"] = "+# to Level of all Ice Strike Skills", ["type"] = "explicit", }, [785] = { - ["id"] = "explicit.stat_4219853180", - ["text"] = "Ritual Favours in your Maps have #% increased chance to be Omens", + ["id"] = "explicit.stat_448592698|210", + ["text"] = "+# to Level of all Ice-Tipped Arrows Skills", ["type"] = "explicit", }, [786] = { - ["id"] = "explicit.stat_3814876985", - ["text"] = "#% chance to gain a Power Charge on Critical Hit", + ["id"] = "explicit.stat_448592698|151", + ["text"] = "+# to Level of all Incendiary Shot Skills", ["type"] = "explicit", }, [787] = { - ["id"] = "explicit.stat_4092130601", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["id"] = "explicit.stat_448592698|99", + ["text"] = "+# to Level of all Incinerate Skills", ["type"] = "explicit", }, [788] = { - ["id"] = "explicit.stat_2378065031", - ["text"] = "Curse Skills have #% increased Cast Speed", + ["id"] = "explicit.stat_448592698|137", + ["text"] = "+# to Level of all Infernal Cry Skills", ["type"] = "explicit", }, [789] = { - ["id"] = "explicit.stat_1321104829", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["id"] = "explicit.stat_448592698|205", + ["text"] = "+# to Level of all Iron Ward Skills", ["type"] = "explicit", }, [790] = { - ["id"] = "explicit.stat_3679769182", - ["text"] = "# to Stun Threshold per Socket filled", + ["id"] = "explicit.stat_448592698|167", + ["text"] = "+# to Level of all Killing Palm Skills", ["type"] = "explicit", }, [791] = { - ["id"] = "explicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", + ["id"] = "explicit.stat_448592698|77", + ["text"] = "+# to Level of all Leap Slam Skills", ["type"] = "explicit", }, [792] = { - ["id"] = "explicit.stat_1777421941", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["id"] = "explicit.stat_448592698|156", + ["text"] = "+# to Level of all Lightning Arrow Skills", ["type"] = "explicit", }, [793] = { - ["id"] = "explicit.stat_2256120736", - ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["id"] = "explicit.stat_448592698|19", + ["text"] = "+# to Level of all Lightning Conduit Skills", ["type"] = "explicit", }, [794] = { - ["id"] = "explicit.stat_2437476305", - ["text"] = "Left ring slot: Projectiles from Spells Fork", + ["id"] = "explicit.stat_448592698|172", + ["text"] = "+# to Level of all Lightning Rod Skills", ["type"] = "explicit", }, [795] = { - ["id"] = "explicit.stat_525523040", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["id"] = "explicit.stat_448592698|181", + ["text"] = "+# to Level of all Lightning Spear Skills", ["type"] = "explicit", }, [796] = { - ["id"] = "explicit.stat_2694800111", - ["text"] = "#% increased number of Rare Expedition Monsters in Area", + ["id"] = "explicit.stat_448592698|47", + ["text"] = "+# to Level of all Lightning Warp Skills", ["type"] = "explicit", }, [797] = { - ["id"] = "explicit.stat_2694800111", - ["text"] = "#% increased number of Rare Expedition Monsters", + ["id"] = "explicit.stat_448592698|68", + ["text"] = "+# to Level of all Lingering Illusion Skills", ["type"] = "explicit", }, [798] = { - ["id"] = "explicit.stat_2933024469", - ["text"] = "Right ring slot: Projectiles from Spells cannot Fork", + ["id"] = "explicit.stat_448592698|244", + ["text"] = "+# to Level of all Living Bomb Skills", ["type"] = "explicit", }, [799] = { - ["id"] = "explicit.stat_3081479811", - ["text"] = "Allies in your Presence Regenerate #% of their Maximum Life per second", + ["id"] = "explicit.stat_448592698|233", + ["text"] = "+# to Level of all Lunar Assault Skills", ["type"] = "explicit", }, [800] = { - ["id"] = "explicit.stat_2786852525", - ["text"] = "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", + ["id"] = "explicit.stat_448592698|236", + ["text"] = "+# to Level of all Lunar Blessing Skills", ["type"] = "explicit", }, [801] = { - ["id"] = "explicit.stat_3826125995", - ["text"] = "Projectiles from Spells cannot Pierce", + ["id"] = "explicit.stat_448592698|126", + ["text"] = "+# to Level of all Magma Barrier Skills", ["type"] = "explicit", }, [802] = { - ["id"] = "explicit.stat_2173791158", - ["text"] = "Allies in your Presence Gain #% of Damage as Extra Fire Damage", + ["id"] = "explicit.stat_448592698|27", + ["text"] = "+# to Level of all Magnetic Salvo Skills", ["type"] = "explicit", }, [803] = { - ["id"] = "explicit.stat_65135897", - ["text"] = "Cannot use Shield Skills", + ["id"] = "explicit.stat_448592698|125", + ["text"] = "+# to Level of all Mana Remnants Skills", ["type"] = "explicit", }, [804] = { - ["id"] = "explicit.stat_1640965354", - ["text"] = "Area contains #% increased number of Runic Monster Markers", + ["id"] = "explicit.stat_448592698|53", + ["text"] = "+# to Level of all Mana Tempest Skills", ["type"] = "explicit", }, [805] = { - ["id"] = "explicit.stat_1640965354", - ["text"] = "#% increased number of Runic Monster Markers", + ["id"] = "explicit.stat_448592698|60", + ["text"] = "+# to Level of all Mantra of Destruction Skills", ["type"] = "explicit", }, [806] = { - ["id"] = "explicit.stat_3859848445", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["id"] = "explicit.stat_448592698|213", + ["text"] = "+# to Level of all Mirage Archer Skills", ["type"] = "explicit", }, [807] = { - ["id"] = "explicit.stat_147764878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + ["id"] = "explicit.stat_448592698|114", + ["text"] = "+# to Level of all Molten Blast Skills", ["type"] = "explicit", }, [808] = { - ["id"] = "explicit.stat_2107703111", - ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["id"] = "explicit.stat_448592698|212", + ["text"] = "+# to Level of all Mortar Cannon Skills", ["type"] = "explicit", }, [809] = { - ["id"] = "explicit.stat_3518087336", - ["text"] = "Dodge Roll avoids all Hits", + ["id"] = "explicit.stat_448592698|228", + ["text"] = "+# to Level of all Oil Barrage Skills", ["type"] = "explicit", }, [810] = { - ["id"] = "explicit.stat_599320227", - ["text"] = "#% chance for Trigger skills to refund half of Energy Spent", + ["id"] = "explicit.stat_448592698|54", + ["text"] = "+# to Level of all Oil Grenade Skills", ["type"] = "explicit", }, [811] = { - ["id"] = "explicit.stat_3156445245", - ["text"] = "#% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", + ["id"] = "explicit.stat_448592698|138", + ["text"] = "+# to Level of all Orb of Storms Skills", ["type"] = "explicit", }, [812] = { - ["id"] = "explicit.stat_2518598473", - ["text"] = "Take # Fire Damage when you Ignite an Enemy", + ["id"] = "explicit.stat_448592698|74", + ["text"] = "+# to Level of all Overwhelming Presence Skills", ["type"] = "explicit", }, [813] = { - ["id"] = "explicit.stat_2849546516", - ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["id"] = "explicit.stat_448592698|105", + ["text"] = "+# to Level of all Pain Offering Skills", ["type"] = "explicit", }, [814] = { - ["id"] = "explicit.stat_3065378291", - ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["id"] = "explicit.stat_448592698|112", + ["text"] = "+# to Level of all Perfect Strike Skills", ["type"] = "explicit", }, [815] = { - ["id"] = "explicit.stat_491899612", - ["text"] = "Cannot be Shocked", + ["id"] = "explicit.stat_448592698|175", + ["text"] = "+# to Level of all Permafrost Bolts Skills", ["type"] = "explicit", }, [816] = { - ["id"] = "explicit.stat_2901213448", - ["text"] = "# to Level of all Elemental Skills", + ["id"] = "explicit.stat_448592698|123", + ["text"] = "+# to Level of all Plague Bearer Skills", ["type"] = "explicit", }, [817] = { - ["id"] = "explicit.stat_2267564181", - ["text"] = "Require # additional enemies to be Surrounded", + ["id"] = "explicit.stat_448592698|25", + ["text"] = "+# to Level of all Plasma Blast Skills", ["type"] = "explicit", }, [818] = { - ["id"] = "explicit.stat_258955603", - ["text"] = "Alternating every 5 seconds:Take #% more Damage from HitsTake #% more Damage over time", + ["id"] = "explicit.stat_448592698|171", + ["text"] = "+# to Level of all Poisonburst Arrow Skills", ["type"] = "explicit", }, [819] = { - ["id"] = "explicit.stat_593241812", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["id"] = "explicit.stat_448592698|221", + ["text"] = "+# to Level of all Pounce Skills", ["type"] = "explicit", }, [820] = { - ["id"] = "explicit.stat_1361645249", - ["text"] = "Allies in your Presence have Block Chance equal to yours", + ["id"] = "explicit.stat_448592698|188", + ["text"] = "+# to Level of all Primal Strikes Skills", ["type"] = "explicit", }, [821] = { - ["id"] = "explicit.stat_30642521", - ["text"] = "You can apply # additional Curses", + ["id"] = "explicit.stat_448592698|90", + ["text"] = "+# to Level of all Profane Ritual Skills", ["type"] = "explicit", }, [822] = { - ["id"] = "explicit.stat_1352561456", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["id"] = "explicit.stat_448592698|127", + ["text"] = "+# to Level of all Raging Spirits Skills", ["type"] = "explicit", }, [823] = { - ["id"] = "explicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", + ["id"] = "explicit.stat_448592698|48", + ["text"] = "+# to Level of all Rain of Arrows Skills", ["type"] = "explicit", }, [824] = { - ["id"] = "explicit.stat_1697951953", - ["text"] = "#% increased Hazard Damage", + ["id"] = "explicit.stat_448592698|97", + ["text"] = "+# to Level of all Raise Zombie Skills", ["type"] = "explicit", }, [825] = { - ["id"] = "explicit.stat_3865605585", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["id"] = "explicit.stat_448592698|191", + ["text"] = "+# to Level of all Rake Skills", ["type"] = "explicit", }, [826] = { - ["id"] = "explicit.stat_793875384", - ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", + ["id"] = "explicit.stat_448592698|222", + ["text"] = "+# to Level of all Rampage Skills", ["type"] = "explicit", }, [827] = { - ["id"] = "explicit.stat_1083387327", - ["text"] = "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters", + ["id"] = "explicit.stat_448592698|176", + ["text"] = "+# to Level of all Rapid Assault Skills", ["type"] = "explicit", }, [828] = { - ["id"] = "explicit.stat_1083387327", - ["text"] = "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters in your Maps", + ["id"] = "explicit.stat_448592698|115", + ["text"] = "+# to Level of all Rapid Shot Skills", ["type"] = "explicit", }, [829] = { - ["id"] = "explicit.stat_1285594161", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["id"] = "explicit.stat_448592698|204", + ["text"] = "+# to Level of all Ravenous Swarm Skills", ["type"] = "explicit", }, [830] = { - ["id"] = "explicit.stat_3628935286", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + ["id"] = "explicit.stat_448592698|9", + ["text"] = "+# to Level of all Reaper's Invocation Skills", ["type"] = "explicit", }, [831] = { - ["id"] = "explicit.stat_3418590244", - ["text"] = "Can only be applied to Precursor Tower MapsCompleting the Tower makes all nearby Maps accessible", + ["id"] = "explicit.stat_448592698|113", + ["text"] = "+# to Level of all Resonating Shield Skills", ["type"] = "explicit", }, [832] = { - ["id"] = "explicit.stat_2942704390", - ["text"] = "Skills have +# to Limit", + ["id"] = "explicit.stat_448592698|217", + ["text"] = "+# to Level of all Rolling Magma Skills", ["type"] = "explicit", }, [833] = { - ["id"] = "explicit.stat_267210597", - ["text"] = "Area has #% increased chance to contain a Summoning Circle", + ["id"] = "explicit.stat_448592698|164", + ["text"] = "+# to Level of all Rolling Slam Skills", ["type"] = "explicit", }, [834] = { - ["id"] = "explicit.stat_267210597", - ["text"] = "#% increased chance of Summoning Circles", + ["id"] = "explicit.stat_448592698|10", + ["text"] = "+# to Level of all Sacrifice Skills", ["type"] = "explicit", }, [835] = { - ["id"] = "explicit.stat_2147773348", - ["text"] = "Energy Shield is increased by Uncapped Cold Resistance", + ["id"] = "explicit.stat_448592698|240", + ["text"] = "+# to Level of all Savage Fury Skills", ["type"] = "explicit", }, [836] = { - ["id"] = "explicit.stat_1087108135", - ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["id"] = "explicit.stat_448592698|130", + ["text"] = "+# to Level of all Scavenged Plating Skills", ["type"] = "explicit", }, [837] = { - ["id"] = "explicit.stat_419098854", - ["text"] = "Evasion Rating is increased by Uncapped Lightning Resistance", + ["id"] = "explicit.stat_448592698|33", + ["text"] = "+# to Level of all Seismic Cry Skills", ["type"] = "explicit", }, [838] = { - ["id"] = "explicit.stat_1000566389", - ["text"] = "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", + ["id"] = "explicit.stat_448592698|73", + ["text"] = "+# to Level of all Shard Scavenger Skills", ["type"] = "explicit", }, [839] = { - ["id"] = "explicit.stat_713266390", - ["text"] = "Armour is increased by Uncapped Fire Resistance", + ["id"] = "explicit.stat_448592698|38", + ["text"] = "+# to Level of all Shattering Palm Skills", ["type"] = "explicit", }, [840] = { - ["id"] = "explicit.stat_412709880", - ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + ["id"] = "explicit.stat_448592698|133", + ["text"] = "+# to Level of all Shield Charge Skills", ["type"] = "explicit", }, [841] = { - ["id"] = "explicit.stat_3752589831", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["id"] = "explicit.stat_448592698|91", + ["text"] = "+# to Level of all Shield Wall Skills", ["type"] = "explicit", }, [842] = { - ["id"] = "explicit.stat_61644361", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["id"] = "explicit.stat_448592698|41", + ["text"] = "+# to Level of all Shockburst Rounds Skills", ["type"] = "explicit", }, [843] = { - ["id"] = "explicit.stat_830345042", - ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["id"] = "explicit.stat_448592698|42", + ["text"] = "+# to Level of all Shockchain Arrow Skills", ["type"] = "explicit", }, [844] = { - ["id"] = "explicit.stat_429143663", - ["text"] = "Banner Skills have #% increased Area of Effect", + ["id"] = "explicit.stat_448592698|136", + ["text"] = "+# to Level of all Shockwave Totem Skills", ["type"] = "explicit", }, [845] = { - ["id"] = "explicit.stat_818877178", - ["text"] = "#% increased Parried Debuff Magnitude", + ["id"] = "explicit.stat_448592698|51", + ["text"] = "+# to Level of all Siege Ballista Skills", ["type"] = "explicit", }, [846] = { - ["id"] = "explicit.stat_3969608626", - ["text"] = "Effect is not removed when Unreserved Mana is Filled", + ["id"] = "explicit.stat_448592698|24", + ["text"] = "+# to Level of all Siege Cascade Skills", ["type"] = "explicit", }, [847] = { - ["id"] = "explicit.stat_3311259821", - ["text"] = "Deals #% of current Mana as Chaos Damage to you when Effect ends", + ["id"] = "explicit.stat_448592698|214", + ["text"] = "+# to Level of all Siphon Elements Skills", ["type"] = "explicit", }, [848] = { - ["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", + ["id"] = "explicit.stat_448592698|88", + ["text"] = "+# to Level of all Siphoning Strike Skills", ["type"] = "explicit", }, [849] = { - ["id"] = "explicit.stat_4117005593", - ["text"] = "Skills gain #% of Damage as Chaos Damage per 3 Life Cost", + ["id"] = "explicit.stat_448592698|141", + ["text"] = "+# to Level of all Skeletal Arsonist Skills", ["type"] = "explicit", }, [850] = { - ["id"] = "explicit.stat_3401186585", - ["text"] = "#% increased Parried Debuff Duration", + ["id"] = "explicit.stat_448592698|16", + ["text"] = "+# to Level of all Skeletal Brute Skills", ["type"] = "explicit", }, [851] = { - ["id"] = "explicit.stat_127081978", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["id"] = "explicit.stat_448592698|17", + ["text"] = "+# to Level of all Skeletal Cleric Skills", ["type"] = "explicit", }, [852] = { - ["id"] = "explicit.stat_3642528642|7", - ["text"] = "Only affects Passives in Very Large Ring", + ["id"] = "explicit.stat_448592698|101", + ["text"] = "+# to Level of all Skeletal Frost Mage Skills", ["type"] = "explicit", }, [853] = { - ["id"] = "explicit.stat_4162678661", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["id"] = "explicit.stat_448592698|50", + ["text"] = "+# to Level of all Skeletal Reaver Skills", ["type"] = "explicit", }, [854] = { - ["id"] = "explicit.stat_2202308025", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["id"] = "explicit.stat_448592698|160", + ["text"] = "+# to Level of all Skeletal Sniper Skills", ["type"] = "explicit", }, [855] = { - ["id"] = "explicit.stat_3856744003", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["id"] = "explicit.stat_448592698|161", + ["text"] = "+# to Level of all Skeletal Sniper Skills", ["type"] = "explicit", }, [856] = { - ["id"] = "explicit.stat_1087531620", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["id"] = "explicit.stat_448592698|32", + ["text"] = "+# to Level of all Skeletal Storm Mage Skills", ["type"] = "explicit", }, [857] = { - ["id"] = "explicit.stat_1323216174", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["id"] = "explicit.stat_448592698|111", + ["text"] = "+# to Level of all Snap Skills", ["type"] = "explicit", }, [858] = { - ["id"] = "explicit.stat_2913235441", - ["text"] = "When you kill a Rare monster, you gain its Modifiers for 60 seconds", + ["id"] = "explicit.stat_448592698|147", + ["text"] = "+# to Level of all Snipe Skills", ["type"] = "explicit", }, [859] = { - ["id"] = "explicit.stat_378817135", - ["text"] = "#% to Fire and Chaos Resistances", + ["id"] = "explicit.stat_448592698|79", + ["text"] = "+# to Level of all Sniper's Mark Skills", ["type"] = "explicit", }, [860] = { - ["id"] = "explicit.stat_3393628375", - ["text"] = "#% to Cold and Chaos Resistances", + ["id"] = "explicit.stat_448592698|109", + ["text"] = "+# to Level of all Solar Orb Skills", ["type"] = "explicit", }, [861] = { - ["id"] = "explicit.stat_332217711", - ["text"] = "#% increased Maximum Life per socketed Grand Spectrum", + ["id"] = "explicit.stat_448592698|22", + ["text"] = "+# to Level of all Soul Offering Skills", ["type"] = "explicit", }, [862] = { - ["id"] = "explicit.stat_3642528642|4", - ["text"] = "Only affects Passives in Medium Ring", + ["id"] = "explicit.stat_448592698|154", + ["text"] = "+# to Level of all Spark Skills", ["type"] = "explicit", }, [863] = { - ["id"] = "explicit.stat_1160637284", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["id"] = "explicit.stat_448592698|194", + ["text"] = "+# to Level of all Spear of Solaris Skills", ["type"] = "explicit", }, [864] = { - ["id"] = "explicit.stat_3465022881", - ["text"] = "#% to Lightning and Chaos Resistances", + ["id"] = "explicit.stat_448592698|180", + ["text"] = "+# to Level of all Spearfield Skills", ["type"] = "explicit", }, [865] = { - ["id"] = "explicit.stat_3642528642|3", - ["text"] = "Only affects Passives in Medium-Small Ring", + ["id"] = "explicit.stat_448592698|226", + ["text"] = "+# to Level of all Spell Totem Skills", ["type"] = "explicit", }, [866] = { - ["id"] = "explicit.stat_2610562860", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + ["id"] = "explicit.stat_448592698|20", + ["text"] = "+# to Level of all Spiral Volley Skills", ["type"] = "explicit", }, [867] = { - ["id"] = "explicit.stat_221701169", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["id"] = "explicit.stat_448592698|143", + ["text"] = "+# to Level of all Staggering Palm Skills", ["type"] = "explicit", }, [868] = { - ["id"] = "explicit.stat_4258000627", - ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", + ["id"] = "explicit.stat_448592698|39", + ["text"] = "+# to Level of all Stampede Skills", ["type"] = "explicit", }, [869] = { - ["id"] = "explicit.stat_1961849903", - ["text"] = "Cannot use Projectile Attacks", + ["id"] = "explicit.stat_448592698|195", + ["text"] = "+# to Level of all Storm Lance Skills", ["type"] = "explicit", }, [870] = { - ["id"] = "explicit.stat_1881230714", - ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["id"] = "explicit.stat_448592698|94", + ["text"] = "+# to Level of all Storm Wave Skills", ["type"] = "explicit", }, [871] = { - ["id"] = "explicit.stat_1944020877", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["id"] = "explicit.stat_448592698|59", + ["text"] = "+# to Level of all Stormblast Bolts Skills", ["type"] = "explicit", }, [872] = { - ["id"] = "explicit.stat_3395186672", - ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["id"] = "explicit.stat_448592698|146", + ["text"] = "+# to Level of all Stormcaller Arrow Skills", ["type"] = "explicit", }, [873] = { - ["id"] = "explicit.stat_1834658952", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["id"] = "explicit.stat_448592698|200", + ["text"] = "+# to Level of all Summon Spectre Skills", ["type"] = "explicit", }, [874] = { - ["id"] = "explicit.stat_1002973905", - ["text"] = "Recover all Mana when Used", + ["id"] = "explicit.stat_448592698|49", + ["text"] = "+# to Level of all Sunder Skills", ["type"] = "explicit", }, [875] = { - ["id"] = "explicit.stat_2500154144", - ["text"] = "Can Reroll Favours at Ritual Altars in your Maps twice as many times", + ["id"] = "explicit.stat_448592698|36", + ["text"] = "+# to Level of all Supercharged Slam Skills", ["type"] = "explicit", }, [876] = { - ["id"] = "explicit.stat_654207792", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + ["id"] = "explicit.stat_448592698|201", + ["text"] = "+# to Level of all Tamed Companion Skills", ["type"] = "explicit", }, [877] = { - ["id"] = "explicit.stat_3642528642|1", - ["text"] = "Only affects Passives in Very Small Ring", + ["id"] = "explicit.stat_448592698|193", + ["text"] = "+# to Level of all Tamed Companion Skills", ["type"] = "explicit", }, [878] = { - ["id"] = "explicit.stat_4089835882", - ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["id"] = "explicit.stat_448592698|144", + ["text"] = "+# to Level of all Tempest Bell Skills", ["type"] = "explicit", }, [879] = { - ["id"] = "explicit.stat_2320654813", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["id"] = "explicit.stat_448592698|106", + ["text"] = "+# to Level of all Tempest Flurry Skills", ["type"] = "explicit", }, [880] = { - ["id"] = "explicit.stat_2066964205", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["id"] = "explicit.stat_448592698|14", + ["text"] = "+# to Level of all Temporal Chains Skills", ["type"] = "explicit", }, [881] = { - ["id"] = "explicit.stat_3642528642|2", - ["text"] = "Only affects Passives in Small Ring", + ["id"] = "explicit.stat_448592698|235", + ["text"] = "+# to Level of all Thrashing Vines Skills", ["type"] = "explicit", }, [882] = { - ["id"] = "explicit.stat_1228222525", - ["text"] = "Favours at Ritual Altars in Area costs #% increased Tribute", + ["id"] = "explicit.stat_448592698|185", + ["text"] = "+# to Level of all Thunderous Leap Skills", ["type"] = "explicit", }, [883] = { - ["id"] = "explicit.stat_3675300253", - ["text"] = "Strikes deal Splash Damage", + ["id"] = "explicit.stat_448592698|223", + ["text"] = "+# to Level of all Thunderstorm Skills", ["type"] = "explicit", }, [884] = { - ["id"] = "explicit.stat_2957287092", - ["text"] = "Chance to Block Damage is Lucky", + ["id"] = "explicit.stat_448592698|71", + ["text"] = "+# to Level of all Time of Need Skills", ["type"] = "explicit", }, [885] = { - ["id"] = "explicit.stat_4104094246", - ["text"] = "Unstable Breaches take an additional second to collapse after timer is filled", + ["id"] = "explicit.stat_448592698|44", + ["text"] = "+# to Level of all Tornado Shot Skills", ["type"] = "explicit", }, [886] = { - ["id"] = "explicit.stat_2421436896", - ["text"] = "Arrows Fork", + ["id"] = "explicit.stat_448592698|218", + ["text"] = "+# to Level of all Tornado Skills", ["type"] = "explicit", }, [887] = { - ["id"] = "explicit.stat_1084853859", - ["text"] = "Delirium Fog in your Maps never dissipates", + ["id"] = "explicit.stat_448592698|209", + ["text"] = "+# to Level of all Toxic Domain Skills", ["type"] = "explicit", }, [888] = { - ["id"] = "explicit.stat_1505023559", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["id"] = "explicit.stat_448592698|108", + ["text"] = "+# to Level of all Toxic Growth Skills", ["type"] = "explicit", }, [889] = { - ["id"] = "explicit.stat_1320662475", - ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["id"] = "explicit.stat_448592698|198", + ["text"] = "+# to Level of all Trail of Caltrops Skills", ["type"] = "explicit", }, [890] = { - ["id"] = "explicit.stat_3040603554", - ["text"] = "Areas with Powerful Map Bosses contain an additional Strongbox", + ["id"] = "explicit.stat_448592698|197", + ["text"] = "+# to Level of all Trinity Skills", ["type"] = "explicit", }, [891] = { - ["id"] = "explicit.stat_3042527515", - ["text"] = "Areas with Map Powerful Map Bosses contain an additional Shrine", + ["id"] = "explicit.stat_448592698|183", + ["text"] = "+# to Level of all Twister Skills", ["type"] = "explicit", }, [892] = { - ["id"] = "explicit.stat_3042527515", - ["text"] = "Areas with Powerful Map Bosses contain an additional Shrine", + ["id"] = "explicit.stat_448592698|170", + ["text"] = "+# to Level of all Unearth Skills", ["type"] = "explicit", }, [893] = { - ["id"] = "explicit.stat_1224838456", - ["text"] = "Enemies in your Presence Gain #% of Damage as Extra Chaos Damage", + ["id"] = "explicit.stat_448592698|152", + ["text"] = "+# to Level of all Vaulting Impact Skills", ["type"] = "explicit", }, [894] = { - ["id"] = "explicit.stat_2588474575", - ["text"] = "Map Bosses are Hunted by Azmeri Spirits", + ["id"] = "explicit.stat_448592698|148", + ["text"] = "+# to Level of all Vine Arrow Skills", ["type"] = "explicit", }, [895] = { - ["id"] = "explicit.stat_4238331303", - ["text"] = "Immobilise enemies at #% buildup instead of 100%", + ["id"] = "explicit.stat_448592698|52", + ["text"] = "+# to Level of all Volcanic Fissure Skills", ["type"] = "explicit", }, [896] = { - ["id"] = "explicit.stat_1613322341", - ["text"] = "Enemies Immobilised by you take #% less Damage", + ["id"] = "explicit.stat_448592698|219", + ["text"] = "+# to Level of all Volcano Skills", ["type"] = "explicit", }, [897] = { - ["id"] = "explicit.stat_586037801", - ["text"] = "#% increased Desecrated Modifier magnitudes", + ["id"] = "explicit.stat_448592698|87", + ["text"] = "+# to Level of all Voltaic Grenade Skills", ["type"] = "explicit", }, [898] = { - ["id"] = "explicit.stat_3642528642|6", - ["text"] = "Only affects Passives in Large Ring", + ["id"] = "explicit.stat_448592698|96", + ["text"] = "+# to Level of all Voltaic Mark Skills", ["type"] = "explicit", }, [899] = { - ["id"] = "explicit.stat_4258251165", - ["text"] = "Allies in your Presence Gain #% of Damage as Extra Chaos Damage", + ["id"] = "explicit.stat_448592698|83", + ["text"] = "+# to Level of all Vulnerability Skills", ["type"] = "explicit", }, [900] = { - ["id"] = "explicit.stat_548198834", - ["text"] = "#% increased Melee Strike Range with this weapon", + ["id"] = "explicit.stat_448592698|241", + ["text"] = "+# to Level of all Walking Calamity Skills", ["type"] = "explicit", }, [901] = { - ["id"] = "explicit.stat_937291386", - ["text"] = "Favours Rerolled at Ritual Altars in Area have #% chance to cost no Tribute", + ["id"] = "explicit.stat_448592698|131", + ["text"] = "+# to Level of all War Banner Skills", ["type"] = "explicit", }, [902] = { - ["id"] = "explicit.stat_937291386", - ["text"] = "Favours Rerolled at Ritual Altars in your Maps have #% chance to cost no Tribute", + ["id"] = "explicit.stat_448592698|85", + ["text"] = "+# to Level of all Wave of Frost Skills", ["type"] = "explicit", }, [903] = { - ["id"] = "explicit.stat_1659564104", - ["text"] = "#% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", + ["id"] = "explicit.stat_448592698|35", + ["text"] = "+# to Level of all Whirling Assault Skills", ["type"] = "explicit", }, [904] = { - ["id"] = "explicit.stat_243380454", - ["text"] = "# additional Rare Monsters are spawned from Abysses", + ["id"] = "explicit.stat_448592698|179", + ["text"] = "+# to Level of all Whirling Slash Skills", ["type"] = "explicit", }, [905] = { - ["id"] = "explicit.stat_2162684861", - ["text"] = "Areas with Powerful Map Bosses contain an additional Essence", + ["id"] = "explicit.stat_448592698|187", + ["text"] = "+# to Level of all Whirlwind Lance Skills", ["type"] = "explicit", }, [906] = { - ["id"] = "explicit.stat_1458461453", - ["text"] = "Map Bosses have # additional Modifier", + ["id"] = "explicit.stat_448592698|102", + ["text"] = "+# to Level of all Wind Blast Skills", ["type"] = "explicit", }, [907] = { - ["id"] = "explicit.stat_535217483", - ["text"] = "#% increased Projectile Speed with this Weapon", + ["id"] = "explicit.stat_448592698|128", + ["text"] = "+# to Level of all Wind Dancer Skills", ["type"] = "explicit", }, [908] = { - ["id"] = "explicit.stat_2833226514", - ["text"] = "# Strength Requirement", + ["id"] = "explicit.stat_448592698|190", + ["text"] = "+# to Level of all Wind Serpent's Fury Skills", ["type"] = "explicit", }, [909] = { - ["id"] = "explicit.stat_2348696937", - ["text"] = "Spells have a #% chance to inflict Withered for 4 seconds on Hit", + ["id"] = "explicit.stat_448592698|227", + ["text"] = "+# to Level of all Wing Blast Skills", ["type"] = "explicit", }, [910] = { - ["id"] = "explicit.stat_3642528642|5", - ["text"] = "Only affects Passives in Medium-Large Ring", + ["id"] = "explicit.stat_448592698|132", + ["text"] = "+# to Level of all Withering Presence Skills", ["type"] = "explicit", }, [911] = { - ["id"] = "explicit.stat_3885634897", - ["text"] = "#% chance to Poison on Hit with this weapon", + ["id"] = "explicit.stat_448592698|220", + ["text"] = "+# to Level of all Wolf Pack Skills", ["type"] = "explicit", }, [912] = { - ["id"] = "explicit.stat_3407300125", - ["text"] = "Increases and Reductions to Mana Regeneration Rate alsoapply to Energy Shield Recharge Rate", + ["id"] = "explicit.stat_4163415912", + ["text"] = "+# to Spirit per Socket filled", ["type"] = "explicit", }, [913] = { - ["id"] = "explicit.stat_2816104578", - ["text"] = "Runic Monsters in your Maps are Duplicated", + ["id"] = "explicit.stat_1054098949", + ["text"] = "+#% Monster Elemental Resistances", ["type"] = "explicit", }, [914] = { - ["id"] = "explicit.stat_1352729973", - ["text"] = "Area has #% increased chance to contain Rogue Exiles", + ["id"] = "explicit.stat_2593651571", + ["text"] = "+#% to all Elemental Resistances per Socket filled", ["type"] = "explicit", }, [915] = { - ["id"] = "explicit.stat_1352729973", - ["text"] = "#% increased chance of Rogue Exiles", + ["id"] = "explicit.stat_1291132817", + ["text"] = "+1 to Armour per Strength", ["type"] = "explicit", }, [916] = { - ["id"] = "explicit.stat_1458880585", - ["text"] = "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", + ["id"] = "explicit.stat_1345486764", + ["text"] = "+1 to Maximum Spirit per # Maximum Life", ["type"] = "explicit", }, [917] = { - ["id"] = "explicit.stat_3650992555", - ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", + ["id"] = "explicit.stat_2134207902", + ["text"] = "+100% of Armour also applies to Lightning Damage", ["type"] = "explicit", }, [918] = { - ["id"] = "explicit.stat_2716923832", - ["text"] = "Recover Life equal to #% of Mana Flask's Recovery Amount when used", + ["id"] = "explicit.stat_3452816629", + ["text"] = "1% more Unarmed Damage per # Strength", ["type"] = "explicit", }, [919] = { - ["id"] = "explicit.stat_144770454", - ["text"] = "Expedition Monsters in your Maps spawn with half of their Life missing", + ["id"] = "explicit.stat_1388221282", + ["text"] = "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", ["type"] = "explicit", }, [920] = { - ["id"] = "explicit.stat_1013492127", - ["text"] = "Spells fire # additional ProjectilesSpells fire Projectiles in a circle", + ["id"] = "explicit.stat_2975078312", + ["text"] = "Abyss Monsters in your Maps grant #% increased Experience", ["type"] = "explicit", }, [921] = { - ["id"] = "explicit.stat_3389184522", - ["text"] = "Leech from Critical Hits is instant", + ["id"] = "explicit.stat_4157613372", + ["text"] = "Abyss Pits have #% chance to spawn all Monsters as at least Magic", ["type"] = "explicit", }, [922] = { - ["id"] = "explicit.stat_3078574625", - ["text"] = "#% increased Effect of Remnants in Area", + ["id"] = "explicit.stat_4256531808", + ["text"] = "Abyss Pits in Area are twice as likely to have Rewards", ["type"] = "explicit", }, [923] = { - ["id"] = "explicit.stat_3078574625", - ["text"] = "#% increased Effect of Remnants in your Maps", + ["id"] = "explicit.stat_2975078312", + ["text"] = "Abyssal Monsters grant #% increased Experience", ["type"] = "explicit", }, [924] = { - ["id"] = "explicit.stat_2420248029", - ["text"] = "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", + ["id"] = "explicit.stat_664606484", + ["text"] = "Abyssal Monsters have #% increased Effectiveness for each closed Pit, up to 100%", ["type"] = "explicit", }, [925] = { - ["id"] = "explicit.stat_4021234281", - ["text"] = "Any number of Poisons from this Weapon can affect a target at the same time", + ["id"] = "explicit.stat_360553763", + ["text"] = "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", ["type"] = "explicit", }, [926] = { - ["id"] = "explicit.stat_1133453872", - ["text"] = "# Dexterity Requirement", + ["id"] = "explicit.stat_3979226081", + ["text"] = "Abyssal Wasting also applies #% to Cold Resistance", ["type"] = "explicit", }, [927] = { - ["id"] = "explicit.stat_40618390", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Intelligence", + ["id"] = "explicit.stat_2991563371", + ["text"] = "Abyssal Wasting also applies #% to Fire Resistance", ["type"] = "explicit", }, [928] = { - ["id"] = "explicit.stat_2396719220", - ["text"] = "Area contains an additional Magic Chest", + ["id"] = "explicit.stat_1726353460", + ["text"] = "Abyssal Wasting also applies #% to Lightning Resistance", ["type"] = "explicit", }, [929] = { - ["id"] = "explicit.stat_2717786748", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Dexterity", + ["id"] = "explicit.stat_1679776108", + ["text"] = "Abyssal Wasting you inflict has Infinite Duration", ["type"] = "explicit", }, [930] = { - ["id"] = "explicit.stat_3891350097", - ["text"] = "Recover Mana equal to #% of Life Flask's Recovery Amount when used", + ["id"] = "explicit.stat_2722831300", + ["text"] = "Abysses have #% increased chance to lead to an Abyssal Depths", ["type"] = "explicit", }, [931] = { - ["id"] = "explicit.stat_2284588585", - ["text"] = "Gain a random Charge on reaching Maximum Rage, no more than once every # seconds", + ["id"] = "explicit.stat_2890355696", + ["text"] = "Abysses have a #% chance to contain 4 additional Pits", ["type"] = "explicit", }, [932] = { - ["id"] = "explicit.stat_1736538865", - ["text"] = "You have Consecrated Ground around you while stationary", + ["id"] = "explicit.stat_2722831300", + ["text"] = "Abysses in Area have #% increased chance to lead to an Abyssal Depths", ["type"] = "explicit", }, [933] = { - ["id"] = "explicit.stat_3642528642|8", - ["text"] = "Only affects Passives in Massive Ring", + ["id"] = "explicit.stat_2399592398", + ["text"] = "Abysses lead to an Abyssal Boss", ["type"] = "explicit", }, [934] = { - ["id"] = "explicit.stat_33298888", - ["text"] = "Attack Hits inflict Spectral Fire for # seconds", + ["id"] = "explicit.stat_2278777540", + ["text"] = "Abysses lead to an Abyssal Depths", ["type"] = "explicit", }, [935] = { - ["id"] = "explicit.stat_1842384813", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Strength", + ["id"] = "explicit.stat_944630113", + ["text"] = "Abysses spawn #% increased Monsters", ["type"] = "explicit", }, [936] = { - ["id"] = "explicit.stat_3851480592", - ["text"] = "Lose all Rage on reaching Maximum Rage", + ["id"] = "explicit.stat_2161347476", + ["text"] = "Accuracy Rating is Doubled", ["type"] = "explicit", }, [937] = { - ["id"] = "explicit.stat_1430165758", - ["text"] = "#% increased Spirit per socketed Grand Spectrum", + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", ["type"] = "explicit", }, [938] = { - ["id"] = "explicit.stat_3605834869", - ["text"] = "Skills Gain #% of Mana Cost as Extra Life Cost", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", ["type"] = "explicit", }, [939] = { - ["id"] = "explicit.stat_1163615092", - ["text"] = "Projectiles have #% increased Critical Hit chance for each time they have Pierced", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", ["type"] = "explicit", }, [940] = { - ["id"] = "explicit.stat_3464644319", - ["text"] = "No Inherent loss of Rage during effect", + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", ["type"] = "explicit", }, [941] = { - ["id"] = "explicit.stat_4046380260", - ["text"] = "Minions cannot Die while affected by a Life Flask", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage", ["type"] = "explicit", }, [942] = { - ["id"] = "explicit.stat_944630113", - ["text"] = "Abysses spawn #% increased Monsters", + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", ["type"] = "explicit", }, [943] = { - ["id"] = "explicit.stat_2566921799", - ["text"] = "Grants a Power Charge on use", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "explicit", }, [944] = { - ["id"] = "explicit.stat_1726753705", - ["text"] = "#% more Life Recovered", + ["id"] = "explicit.stat_3111921451", + ["text"] = "Adds # to # Lightning Damage to Attacks per 20 Intelligence", ["type"] = "explicit", }, [945] = { - ["id"] = "explicit.stat_2138799639", - ["text"] = "Arrows Pierce all targets after Forking", + ["id"] = "explicit.stat_3835522656", + ["text"] = "Adds # to # Lightning Damage to Unarmed Melee Hits", ["type"] = "explicit", }, [946] = { - ["id"] = "explicit.stat_4256531808", - ["text"] = "Abyss Pits in Area are twice as likely to have Rewards", + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", ["type"] = "explicit", }, [947] = { - ["id"] = "explicit.stat_280890192", - ["text"] = "Grants a Frenzy Charge on use", + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", ["type"] = "explicit", }, [948] = { - ["id"] = "explicit.stat_3122852693", - ["text"] = "#% to Block Chance while holding a Focus", + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "explicit", }, [949] = { - ["id"] = "explicit.stat_21824003", - ["text"] = "#% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", + ["id"] = "explicit.stat_874646180", + ["text"] = "Aggravate Bleeding on Enemies when they Enter your Presence", ["type"] = "explicit", }, [950] = { - ["id"] = "explicit.stat_2948688907", - ["text"] = "Small Passive Skills in Radius also grant #% to Fire Resistance", + ["id"] = "explicit.stat_2312741059", + ["text"] = "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", ["type"] = "explicit", }, [951] = { - ["id"] = "explicit.stat_2884937919", - ["text"] = "Small Passive Skills in Radius also grant #% to Cold Resistance", + ["id"] = "explicit.stat_1952324525", + ["text"] = "All Attacks count as Empowered Attacks", ["type"] = "explicit", }, [952] = { - ["id"] = "explicit.stat_555311715", - ["text"] = "Gain # Rage when Hit by an Enemy during effect", + ["id"] = "explicit.stat_4012215578", + ["text"] = "All Damage from Hits Contributes to Poison Magnitude", ["type"] = "explicit", }, [953] = { - ["id"] = "explicit.stat_514290151", - ["text"] = "Gain #% of Maximum Mana as Armour", + ["id"] = "explicit.stat_1717295693", + ["text"] = "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", ["type"] = "explicit", }, [954] = { - ["id"] = "explicit.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["id"] = "explicit.stat_1375667591", + ["text"] = "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", ["type"] = "explicit", }, [955] = { - ["id"] = "explicit.stat_3994876825", - ["text"] = "Small Passive Skills in Radius also grant #% to Lightning Resistance", + ["id"] = "explicit.stat_2156230257", + ["text"] = "All Damage from Hits with this Weapon Contributes to Chill Magnitude", ["type"] = "explicit", }, [956] = { - ["id"] = "explicit.stat_3735888493", - ["text"] = "#% more maximum Physical Attack Damage", + ["id"] = "explicit.stat_3761294489", + ["text"] = "All Damage from Hits with this Weapon Contributes to Freeze Buildup", ["type"] = "explicit", }, [957] = { - ["id"] = "explicit.stat_3399499561", - ["text"] = "#% increased Damage per Minion", + ["id"] = "explicit.stat_4142786792", + ["text"] = "All Damage from Hits with this Weapon Contributes to Pin Buildup", ["type"] = "explicit", }, [958] = { - ["id"] = "explicit.stat_2620375641", - ["text"] = "Charms use no Charges", + ["id"] = "explicit.stat_1705072014", + ["text"] = "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", ["type"] = "explicit", }, [959] = { - ["id"] = "explicit.stat_2423248184", - ["text"] = "#% less minimum Physical Attack Damage", + ["id"] = "explicit.stat_2420248029", + ["text"] = "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", ["type"] = "explicit", }, [960] = { - ["id"] = "explicit.stat_2918129907", - ["text"] = "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", + ["id"] = "explicit.stat_1291285202", + ["text"] = "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", ["type"] = "explicit", }, [961] = { - ["id"] = "explicit.stat_1862508014", - ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Cold Resistance", + ["id"] = "explicit.stat_3874491706", + ["text"] = "All Mage's Legacies have #% increased effect per duplicate Mage's Legacy you have", ["type"] = "explicit", }, [962] = { - ["id"] = "explicit.stat_1509210032", - ["text"] = "Grants up to your maximum Rage on use", + ["id"] = "explicit.stat_1910743684", + ["text"] = "All damage with this Weapon causes Electrocution buildup", ["type"] = "explicit", }, [963] = { - ["id"] = "explicit.stat_281201999", - ["text"] = "Knockback direction is reversed", + ["id"] = "explicit.stat_4258251165", + ["text"] = "Allies in your Presence Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, [964] = { - ["id"] = "explicit.stat_338620903", - ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Fire Damage", + ["id"] = "explicit.stat_2173791158", + ["text"] = "Allies in your Presence Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, [965] = { - ["id"] = "explicit.stat_4062529591", - ["text"] = "Cannot Immobilise enemies", + ["id"] = "explicit.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", ["type"] = "explicit", }, [966] = { - ["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", + ["id"] = "explicit.stat_3081479811", + ["text"] = "Allies in your Presence Regenerate #% of their Maximum Life per second", ["type"] = "explicit", }, [967] = { - ["id"] = "explicit.stat_2217513089", - ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Lightning Resistance", + ["id"] = "explicit.stat_262946222", + ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", ["type"] = "explicit", }, [968] = { - ["id"] = "explicit.stat_367897259", - ["text"] = "Lose all Tailwind when Hit", + ["id"] = "explicit.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", ["type"] = "explicit", }, [969] = { - ["id"] = "explicit.stat_2459662130", - ["text"] = "Gain Tailwind on Critical Hit, no more than once per second", + ["id"] = "explicit.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", ["type"] = "explicit", }, [970] = { - ["id"] = "explicit.stat_2516303866", - ["text"] = "Your Critical Damage Bonus is 250%", + ["id"] = "explicit.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", ["type"] = "explicit", }, [971] = { - ["id"] = "explicit.stat_3490187949", - ["text"] = "Area contains # additional Abysses", + ["id"] = "explicit.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "explicit", }, [972] = { - ["id"] = "explicit.stat_360553763", - ["text"] = "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", + ["id"] = "explicit.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "explicit", }, [973] = { - ["id"] = "explicit.stat_2580617872", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["id"] = "explicit.stat_3169585282", + ["text"] = "Allies in your Presence have # to Accuracy Rating", ["type"] = "explicit", }, [974] = { - ["id"] = "explicit.stat_4101445926", - ["text"] = "#% increased Mana Cost Efficiency", + ["id"] = "explicit.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "explicit", }, [975] = { - ["id"] = "explicit.stat_852470634", - ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Lightning Damage", + ["id"] = "explicit.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "explicit", }, [976] = { - ["id"] = "explicit.stat_53386210", - ["text"] = "#% increased Spirit Reservation Efficiency", + ["id"] = "explicit.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "explicit", }, [977] = { - ["id"] = "explicit.stat_3787436548", - ["text"] = "Historic", + ["id"] = "explicit.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", ["type"] = "explicit", }, [978] = { - ["id"] = "explicit.stat_2442647190", - ["text"] = "Recover #% of maximum Life when you Block", + ["id"] = "explicit.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", ["type"] = "explicit", }, [979] = { - ["id"] = "explicit.stat_833138896", - ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Cold Damage", + ["id"] = "explicit.stat_1361645249", + ["text"] = "Allies in your Presence have Block Chance equal to yours", ["type"] = "explicit", }, [980] = { - ["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", + ["id"] = "explicit.stat_3929993388", + ["text"] = "Allocates # Sinister Jewel sockets", ["type"] = "explicit", }, [981] = { - ["id"] = "explicit.stat_3386297724", - ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["id"] = "explicit.stat_2954116742|7338", + ["text"] = "Allocates Abasement", ["type"] = "explicit", }, [982] = { - ["id"] = "explicit.stat_1809641701", - ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Life", + ["id"] = "explicit.stat_2954116742|43082", + ["text"] = "Allocates Acceleration", ["type"] = "explicit", }, [983] = { - ["id"] = "explicit.stat_1123023256", - ["text"] = "#% to Chaos Resistance per Socket filled", + ["id"] = "explicit.stat_2954116742|12822", + ["text"] = "Allocates Adaptable Assault", ["type"] = "explicit", }, [984] = { - ["id"] = "explicit.stat_2104138899", - ["text"] = "Parrying applies # Stack of Critical Weakness", + ["id"] = "explicit.stat_2954116742|43250", + ["text"] = "Allocates Adaptive Skin", ["type"] = "explicit", }, [985] = { - ["id"] = "explicit.stat_504915064", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["id"] = "explicit.stat_2954116742|35876", + ["text"] = "Allocates Admonisher", ["type"] = "explicit", }, [986] = { - ["id"] = "explicit.stat_3872034802", - ["text"] = "Decimating Strike", + ["id"] = "explicit.stat_2954116742|17340", + ["text"] = "Allocates Adrenaline Rush", ["type"] = "explicit", }, [987] = { - ["id"] = "explicit.stat_1717295693", - ["text"] = "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", + ["id"] = "explicit.stat_2954116742|43829", + ["text"] = "Allocates Advanced Munitions", ["type"] = "explicit", }, [988] = { - ["id"] = "explicit.stat_2739148464", - ["text"] = "Has no Attribute Requirements", + ["id"] = "explicit.stat_2954116742|4295", + ["text"] = "Allocates Adverse Growth", ["type"] = "explicit", }, [989] = { - ["id"] = "explicit.stat_4032352472", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + ["id"] = "explicit.stat_2954116742|4716", + ["text"] = "Allocates Afterimage", ["type"] = "explicit", }, [990] = { - ["id"] = "explicit.stat_3148264775", - ["text"] = "You have no Spirit", + ["id"] = "explicit.stat_2954116742|50253", + ["text"] = "Allocates Aftershocks", ["type"] = "explicit", }, [991] = { - ["id"] = "explicit.stat_1247628870", - ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Mana", + ["id"] = "explicit.stat_2954116742|59938", + ["text"] = "Allocates Against the Elements", ["type"] = "explicit", }, [992] = { - ["id"] = "explicit.stat_2722831300", - ["text"] = "Abysses in Area have #% increased chance to lead to an Abyssal Depths", + ["id"] = "explicit.stat_2954116742|6655", + ["text"] = "Allocates Aggravation", ["type"] = "explicit", }, [993] = { - ["id"] = "explicit.stat_2722831300", - ["text"] = "Abysses have #% increased chance to lead to an Abyssal Depths", + ["id"] = "explicit.stat_2954116742|8896", + ["text"] = "Allocates Agile Sprinter", ["type"] = "explicit", }, [994] = { - ["id"] = "explicit.stat_3739186583", - ["text"] = "Knocks Back Enemies on Hit", + ["id"] = "explicit.stat_2954116742|56493", + ["text"] = "Allocates Agile Succession", ["type"] = "explicit", }, [995] = { - ["id"] = "explicit.stat_782941180", - ["text"] = "#% of Spell Damage Leeched as Life", + ["id"] = "explicit.stat_2954116742|43088", + ["text"] = "Allocates Agonising Calamity", ["type"] = "explicit", }, [996] = { - ["id"] = "explicit.stat_4151994709", - ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Fire Resistance", + ["id"] = "explicit.stat_2954116742|55817", + ["text"] = "Allocates Alchemical Oil", ["type"] = "explicit", }, [997] = { - ["id"] = "explicit.stat_2397460217", - ["text"] = "Your Life Flask also applies to your Minions", + ["id"] = "explicit.stat_2954116742|43854", + ["text"] = "Allocates All For One", ["type"] = "explicit", }, [998] = { - ["id"] = "explicit.stat_3849649145", - ["text"] = "Creates Consecrated Ground on use", + ["id"] = "explicit.stat_2954116742|58016", + ["text"] = "Allocates All Natural", ["type"] = "explicit", }, [999] = { - ["id"] = "explicit.stat_1273508088", - ["text"] = "Gain 1 Druidic Prowess for every 20 total Rage spent", + ["id"] = "explicit.stat_2954116742|48974", + ["text"] = "Allocates Altered Brain Chemistry", ["type"] = "explicit", }, [1000] = { - ["id"] = "explicit.stat_1810907437", - ["text"] = "Presence Radius is doubled", + ["id"] = "explicit.stat_2954116742|23764", + ["text"] = "Allocates Alternating Current", ["type"] = "explicit", }, [1001] = { - ["id"] = "explicit.stat_150391334", - ["text"] = "# to maximum Life per Socket filled", + ["id"] = "explicit.stat_2954116742|20558", + ["text"] = "Allocates Among the Hordes", ["type"] = "explicit", }, [1002] = { - ["id"] = "explicit.stat_3474271079", - ["text"] = "# to all Attributes per Socket filled", + ["id"] = "explicit.stat_2954116742|2575", + ["text"] = "Allocates Ancestral Alacrity", ["type"] = "explicit", }, [1003] = { - ["id"] = "explicit.stat_949573361", - ["text"] = "Breaks Armour equal to #% of damage from Hits with this weapon", + ["id"] = "explicit.stat_2954116742|26339", + ["text"] = "Allocates Ancestral Artifice", ["type"] = "explicit", }, [1004] = { - ["id"] = "explicit.stat_429867172", - ["text"] = "# to maximum number of Summoned Totems", + ["id"] = "explicit.stat_2954116742|51820", + ["text"] = "Allocates Ancestral Conduits", ["type"] = "explicit", }, [1005] = { - ["id"] = "explicit.stat_2932359713", - ["text"] = "Effect is not removed when Unreserved Life is Filled", + ["id"] = "explicit.stat_2954116742|18419", + ["text"] = "Allocates Ancestral Mending", ["type"] = "explicit", }, [1006] = { - ["id"] = "explicit.stat_3598623697", - ["text"] = "#% of Damage taken during effect Recouped as Life", + ["id"] = "explicit.stat_2954116742|43396", + ["text"] = "Allocates Ancestral Reach", ["type"] = "explicit", }, [1007] = { - ["id"] = "explicit.stat_223138829", - ["text"] = "Inflict Elemental Exposure to Enemies 3 metres in front of youfor 4 seconds, every 0.25 seconds while raised", + ["id"] = "explicit.stat_2954116742|62609", + ["text"] = "Allocates Ancestral Unity", ["type"] = "explicit", }, [1008] = { - ["id"] = "explicit.stat_2789248444", - ["text"] = "#% increased chance for Abyssal monsters to have Abyssal Modifiers", + ["id"] = "explicit.stat_2954116742|5728", + ["text"] = "Allocates Ancient Aegis", ["type"] = "explicit", }, [1009] = { - ["id"] = "explicit.stat_2518900926", - ["text"] = "#% increased Damage with Plant Skills", + ["id"] = "explicit.stat_2954116742|38398", + ["text"] = "Allocates Apocalypse", ["type"] = "explicit", }, [1010] = { - ["id"] = "explicit.stat_1375667591", - ["text"] = "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", + ["id"] = "explicit.stat_2954116742|46224", + ["text"] = "Allocates Arcane Alchemy", ["type"] = "explicit", }, [1011] = { - ["id"] = "explicit.stat_3414998042", - ["text"] = "Critical Hits cannot Extract Impale", + ["id"] = "explicit.stat_2954116742|14324", + ["text"] = "Allocates Arcane Blossom", ["type"] = "explicit", }, [1012] = { - ["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", + ["id"] = "explicit.stat_2954116742|19044", + ["text"] = "Allocates Arcane Intensity", ["type"] = "explicit", }, [1013] = { - ["id"] = "explicit.stat_2741291867", - ["text"] = "Area is overrun by the Abyssal", + ["id"] = "explicit.stat_2954116742|46972", + ["text"] = "Allocates Arcane Mixtures", ["type"] = "explicit", }, [1014] = { - ["id"] = "explicit.stat_1291285202", - ["text"] = "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", + ["id"] = "explicit.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", ["type"] = "explicit", }, [1015] = { - ["id"] = "explicit.stat_4126210832", - ["text"] = "Always Hits", + ["id"] = "explicit.stat_2954116742|46124", + ["text"] = "Allocates Arcane Remnants", ["type"] = "explicit", }, [1016] = { - ["id"] = "explicit.stat_2677352961", - ["text"] = "#% increased Melee Damage against Heavy Stunned enemies", + ["id"] = "explicit.stat_2954116742|42045", + ["text"] = "Allocates Archon of the Blizzard", ["type"] = "explicit", }, [1017] = { - ["id"] = "explicit.stat_1627878766", - ["text"] = "Small Passive Skills in Radius also grant #% reduced Shock duration on you", + ["id"] = "explicit.stat_2954116742|27434", + ["text"] = "Allocates Archon of the Storm", ["type"] = "explicit", }, [1018] = { - ["id"] = "explicit.stat_1710200734", - ["text"] = "#% increased chance to find Desecrated Currency", + ["id"] = "explicit.stat_2954116742|12245", + ["text"] = "Allocates Arsonist", ["type"] = "explicit", }, [1019] = { - ["id"] = "explicit.stat_2910761524", - ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", + ["id"] = "explicit.stat_2954116742|58817", + ["text"] = "Allocates Artillery Strike", ["type"] = "explicit", }, [1020] = { - ["id"] = "explicit.stat_3488640354", - ["text"] = "Parried enemies take more Spell Damage instead of more Attack Damage", + ["id"] = "explicit.stat_2954116742|12661", + ["text"] = "Allocates Asceticism", ["type"] = "explicit", }, [1021] = { - ["id"] = "explicit.stat_1856590738", - ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", + ["id"] = "explicit.stat_2954116742|27388", + ["text"] = "Allocates Aspiring Genius", ["type"] = "explicit", }, [1022] = { - ["id"] = "explicit.stat_3091132047", - ["text"] = "Your base Energy Shield Recharge Delay is # second", + ["id"] = "explicit.stat_2954116742|35560", + ["text"] = "Allocates At your Command", ["type"] = "explicit", }, [1023] = { - ["id"] = "explicit.stat_3176481473", - ["text"] = "#% increased Spell Damage while on Full Energy Shield", + ["id"] = "explicit.stat_2954116742|20397", + ["text"] = "Allocates Authority", ["type"] = "explicit", }, [1024] = { - ["id"] = "explicit.stat_860443350", - ["text"] = "Small Passive Skills in Radius also grant #% reduced Freeze Duration on you", + ["id"] = "explicit.stat_2954116742|50673", + ["text"] = "Allocates Avoiding Deflection", ["type"] = "explicit", }, [1025] = { - ["id"] = "explicit.stat_358129101", - ["text"] = "Area contains # additional Azmeri Spirit", + ["id"] = "explicit.stat_2954116742|33059", + ["text"] = "Allocates Back in Action", ["type"] = "explicit", }, [1026] = { - ["id"] = "explicit.stat_3474941090", - ["text"] = "Small Passive Skills in Radius also grant #% reduced Ignite Duration on you", + ["id"] = "explicit.stat_2954116742|53853", + ["text"] = "Allocates Backup Plan", ["type"] = "explicit", }, [1027] = { - ["id"] = "explicit.stat_3830953767", - ["text"] = "#% chance to Curse Enemies with Enfeeble on Block", + ["id"] = "explicit.stat_2954116742|62455", + ["text"] = "Allocates Bannerman", ["type"] = "explicit", }, [1028] = { - ["id"] = "explicit.stat_932866937", - ["text"] = "Life and Mana Flasks can be equipped in either slot", + ["id"] = "explicit.stat_2954116742|50562", + ["text"] = "Allocates Barbaric Strength", ["type"] = "explicit", }, [1029] = { - ["id"] = "explicit.stat_3058238353", - ["text"] = "Critical Hits inflict Impale", + ["id"] = "explicit.stat_2954116742|50062", + ["text"] = "Allocates Barrier of Venarius", ["type"] = "explicit", }, [1030] = { - ["id"] = "explicit.stat_4180952808", - ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + ["id"] = "explicit.stat_2954116742|8916", + ["text"] = "Allocates Bashing Beast", ["type"] = "explicit", }, [1031] = { - ["id"] = "explicit.stat_2839545956", - ["text"] = "Area contains an additional Summoning Circle", + ["id"] = "explicit.stat_2954116742|64240", + ["text"] = "Allocates Battle Fever", ["type"] = "explicit", }, [1032] = { - ["id"] = "explicit.stat_3201111383", - ["text"] = "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", + ["id"] = "explicit.stat_2954116742|37276", + ["text"] = "Allocates Battle Trance", ["type"] = "explicit", }, [1033] = { - ["id"] = "explicit.stat_2777675751", - ["text"] = "Using a Mana Flask grants Guard equal to #% of Flask's recovery amount for 4 seconds", + ["id"] = "explicit.stat_2954116742|41620", + ["text"] = "Allocates Bear's Roar", ["type"] = "explicit", }, [1034] = { - ["id"] = "explicit.stat_1036267537", - ["text"] = "# to maximum Mana per Socket filled", + ["id"] = "explicit.stat_2954116742|59720", + ["text"] = "Allocates Beastial Skin", ["type"] = "explicit", }, [1035] = { - ["id"] = "explicit.stat_1895552497", - ["text"] = "Every 5 Rage also grants #% of Damage taken Recouped as Life", + ["id"] = "explicit.stat_2954116742|25482", + ["text"] = "Allocates Beef", ["type"] = "explicit", }, [1036] = { - ["id"] = "explicit.stat_242161915", - ["text"] = "#% to all Elemental Resistances per socketed Grand Spectrum", + ["id"] = "explicit.stat_2954116742|5642", + ["text"] = "Allocates Behemoth", ["type"] = "explicit", }, [1037] = { - ["id"] = "explicit.stat_2598171606", - ["text"] = "Cannot use Warcries", + ["id"] = "explicit.stat_2954116742|10873", + ["text"] = "Allocates Bestial Rage", ["type"] = "explicit", }, [1038] = { - ["id"] = "explicit.stat_4234573345", - ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["id"] = "explicit.stat_2954116742|38329", + ["text"] = "Allocates Biting Frost", ["type"] = "explicit", }, [1039] = { - ["id"] = "explicit.stat_2770044702", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["id"] = "explicit.stat_2954116742|17029", + ["text"] = "Allocates Blade Catcher", ["type"] = "explicit", }, [1040] = { - ["id"] = "explicit.stat_4142786792", - ["text"] = "All Damage from Hits with this Weapon Contributes to Pin Buildup", + ["id"] = "explicit.stat_2954116742|2394", + ["text"] = "Allocates Blade Flurry", ["type"] = "explicit", }, [1041] = { - ["id"] = "explicit.stat_1892122971", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["id"] = "explicit.stat_2954116742|25753", + ["text"] = "Allocates Blazing Arms", ["type"] = "explicit", }, [1042] = { - ["id"] = "explicit.stat_1840985759", - ["text"] = "#% increased Area of Effect for Attacks", + ["id"] = "explicit.stat_2954116742|18308", + ["text"] = "Allocates Bleeding Out", ["type"] = "explicit", }, [1043] = { - ["id"] = "explicit.stat_461663422", - ["text"] = "#% increased Effect of Jewel Socket Passive Skillscontaining Corrupted Magic Jewels", + ["id"] = "explicit.stat_2954116742|48925", + ["text"] = "Allocates Blessing of the Moon", ["type"] = "explicit", }, [1044] = { - ["id"] = "explicit.stat_701923421", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus per Socket filled", + ["id"] = "explicit.stat_2954116742|42354", + ["text"] = "Allocates Blinding Flash", ["type"] = "explicit", }, [1045] = { - ["id"] = "explicit.stat_3278008231", - ["text"] = "Fully Armour Broken enemies you kill with Hits Shatter", + ["id"] = "explicit.stat_2954116742|20916", + ["text"] = "Allocates Blinding Strike", ["type"] = "explicit", }, [1046] = { - ["id"] = "explicit.stat_3936121440", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["id"] = "explicit.stat_2954116742|39083", + ["text"] = "Allocates Blood Rush", ["type"] = "explicit", }, [1047] = { - ["id"] = "explicit.stat_1911237468", - ["text"] = "#% increased Stun Threshold while Parrying", + ["id"] = "explicit.stat_2954116742|58183", + ["text"] = "Allocates Blood Tearing", ["type"] = "explicit", }, [1048] = { - ["id"] = "explicit.stat_170426423", - ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Life", + ["id"] = "explicit.stat_2954116742|48524", + ["text"] = "Allocates Blood Transfusion", ["type"] = "explicit", }, [1049] = { - ["id"] = "explicit.stat_1967040409", - ["text"] = "Spell Skills have #% increased Area of Effect", + ["id"] = "explicit.stat_2954116742|35792", + ["text"] = "Allocates Blood of Rage", ["type"] = "explicit", }, [1050] = { - ["id"] = "explicit.stat_4019237939", - ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["id"] = "explicit.stat_2954116742|49214", + ["text"] = "Allocates Blood of the Wolf", ["type"] = "explicit", }, [1051] = { - ["id"] = "explicit.stat_3666934677", - ["text"] = "#% increased Experience gain", + ["id"] = "explicit.stat_2954116742|54990", + ["text"] = "Allocates Bloodletting", ["type"] = "explicit", }, [1052] = { - ["id"] = "explicit.stat_2998305364", - ["text"] = "Deal no Elemental Damage", + ["id"] = "explicit.stat_2954116742|10772", + ["text"] = "Allocates Bloodthirsty", ["type"] = "explicit", }, [1053] = { - ["id"] = "explicit.stat_3243034867", - ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", + ["id"] = "explicit.stat_2954116742|42177", + ["text"] = "Allocates Blurred Motion", ["type"] = "explicit", }, [1054] = { - ["id"] = "explicit.stat_1515531208", - ["text"] = "# to # Cold Thorns damage", + ["id"] = "explicit.stat_2954116742|26070", + ["text"] = "Allocates Bolstering Yell", ["type"] = "explicit", }, [1055] = { - ["id"] = "explicit.stat_332337290", - ["text"] = "# Life Regeneration per second per Socket filled", + ["id"] = "explicit.stat_2954116742|17725", + ["text"] = "Allocates Bonded Precision", ["type"] = "explicit", }, [1056] = { - ["id"] = "explicit.stat_2709646369", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + ["id"] = "explicit.stat_2954116742|26563", + ["text"] = "Allocates Bone Chains", ["type"] = "explicit", }, [1057] = { - ["id"] = "explicit.stat_1027889455", - ["text"] = "Non-Channelling Spells deal #% increased Damage per 100 maximum Life", + ["id"] = "explicit.stat_2954116742|52618", + ["text"] = "Allocates Boon of the Beast", ["type"] = "explicit", }, [1058] = { - ["id"] = "explicit.stat_844449513", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["id"] = "explicit.stat_2954116742|15114", + ["text"] = "Allocates Boundless Growth", ["type"] = "explicit", }, [1059] = { - ["id"] = "explicit.stat_3811649872", - ["text"] = "Increases and Reductions to Spell damage also apply to Attacks", + ["id"] = "explicit.stat_2954116742|23244", + ["text"] = "Allocates Bounty Hunter", ["type"] = "explicit", }, [1060] = { - ["id"] = "explicit.stat_2044810874", - ["text"] = "This item gains bonuses from Socketed Items as though it was a Shield", + ["id"] = "explicit.stat_2954116742|37806", + ["text"] = "Allocates Branching Bolts", ["type"] = "explicit", }, [1061] = { - ["id"] = "explicit.stat_2089152298", - ["text"] = "#% of Parry Physical Damage Converted to Cold Damage", + ["id"] = "explicit.stat_2954116742|14777", + ["text"] = "Allocates Bravado", ["type"] = "explicit", }, [1062] = { - ["id"] = "explicit.stat_1952324525", - ["text"] = "All Attacks count as Empowered Attacks", + ["id"] = "explicit.stat_2954116742|21453", + ["text"] = "Allocates Breakage", ["type"] = "explicit", }, [1063] = { - ["id"] = "explicit.stat_3703496511", - ["text"] = "Intimidate Enemies on Block for # second", + ["id"] = "explicit.stat_2954116742|39347", + ["text"] = "Allocates Breaking Blows", ["type"] = "explicit", }, [1064] = { - ["id"] = "explicit.stat_179541474", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + ["id"] = "explicit.stat_2954116742|7777", + ["text"] = "Allocates Breaking Point", ["type"] = "explicit", }, [1065] = { - ["id"] = "explicit.stat_4258720395", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + ["id"] = "explicit.stat_2954116742|24655", + ["text"] = "Allocates Breath of Fire", ["type"] = "explicit", }, [1066] = { - ["id"] = "explicit.stat_2912416697", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["id"] = "explicit.stat_2954116742|18086", + ["text"] = "Allocates Breath of Ice", ["type"] = "explicit", }, [1067] = { - ["id"] = "explicit.stat_1195319608", - ["text"] = "#% increased Energy Shield from Equipped Body Armour", + ["id"] = "explicit.stat_2954116742|61338", + ["text"] = "Allocates Breath of Lightning", ["type"] = "explicit", }, [1068] = { - ["id"] = "explicit.stat_2264240911", - ["text"] = "Small Passive Skills in Radius also grant #% to Chaos Resistance", + ["id"] = "explicit.stat_2954116742|9535", + ["text"] = "Allocates Brinerot Ferocity", ["type"] = "explicit", }, [1069] = { - ["id"] = "explicit.stat_1920747151", - ["text"] = "Non-Channelling Spells cost an additional #% of your maximum Life", + ["id"] = "explicit.stat_2954116742|48565", + ["text"] = "Allocates Bringer of Order", ["type"] = "explicit", }, [1070] = { - ["id"] = "explicit.stat_2374711847", - ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["id"] = "explicit.stat_2954116742|53935", + ["text"] = "Allocates Briny Carapace", ["type"] = "explicit", }, [1071] = { - ["id"] = "explicit.stat_1756380435", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["id"] = "explicit.stat_2954116742|63541", + ["text"] = "Allocates Brush Off", ["type"] = "explicit", }, [1072] = { - ["id"] = "explicit.stat_300723956", - ["text"] = "Attack Hits apply Incision", + ["id"] = "explicit.stat_2954116742|50392", + ["text"] = "Allocates Brute Strength", ["type"] = "explicit", }, [1073] = { - ["id"] = "explicit.stat_1731760476", - ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Chaos Resistance", + ["id"] = "explicit.stat_2954116742|15986", + ["text"] = "Allocates Building Toxins", ["type"] = "explicit", }, [1074] = { - ["id"] = "explicit.stat_2334956771", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["id"] = "explicit.stat_2954116742|53294", + ["text"] = "Allocates Burn Away", ["type"] = "explicit", }, [1075] = { - ["id"] = "explicit.stat_3753446846", - ["text"] = "Expeditions in Area have # Remnants", + ["id"] = "explicit.stat_2954116742|8554", + ["text"] = "Allocates Burning Nature", ["type"] = "explicit", }, [1076] = { - ["id"] = "explicit.stat_3753446846", - ["text"] = "Expeditions in your Maps have # Remnant", + ["id"] = "explicit.stat_2954116742|6544", + ["text"] = "Allocates Burning Strikes", ["type"] = "explicit", }, [1077] = { - ["id"] = "explicit.stat_3503117295", - ["text"] = "Recover #% of your maximum Life when an Enemy dies in your Presence", + ["id"] = "explicit.stat_2954116742|35324", + ["text"] = "Allocates Burnout", ["type"] = "explicit", }, [1078] = { - ["id"] = "explicit.stat_2603051299", - ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Chaos Damage", + ["id"] = "explicit.stat_2954116742|6514", + ["text"] = "Allocates Cacophony", ["type"] = "explicit", }, [1079] = { - ["id"] = "explicit.stat_2371108370", - ["text"] = "If Map was not previously Irradiated, completing Map adds Irradiation instead", + ["id"] = "explicit.stat_2954116742|32799", + ["text"] = "Allocates Captivating Companionship", ["type"] = "explicit", }, [1080] = { - ["id"] = "explicit.stat_3429986699", - ["text"] = "You and Allies in your Presence have #% increased Accuracy Rating", + ["id"] = "explicit.stat_2954116742|50795", + ["text"] = "Allocates Careful Aim", ["type"] = "explicit", }, [1081] = { - ["id"] = "explicit.stat_321765853", - ["text"] = "# Physical Damage taken from Hits", + ["id"] = "explicit.stat_2954116742|46197", + ["text"] = "Allocates Careful Assassin", ["type"] = "explicit", }, [1082] = { - ["id"] = "explicit.stat_3351912431", - ["text"] = "Convert All Armour to Evasion Rating", + ["id"] = "explicit.stat_2954116742|17955", + ["text"] = "Allocates Careful Consideration", ["type"] = "explicit", }, [1083] = { - ["id"] = "explicit.stat_3452269808", - ["text"] = "#% chance to avoid Projectiles", + ["id"] = "explicit.stat_2954116742|52348", + ["text"] = "Allocates Carved Earth", ["type"] = "explicit", }, [1084] = { - ["id"] = "explicit.stat_3108672983", - ["text"] = "Rolls only the minimum or maximum Damage value for each Damage Type", + ["id"] = "explicit.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", ["type"] = "explicit", }, [1085] = { - ["id"] = "explicit.stat_1800303440", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["id"] = "explicit.stat_2954116742|31433", + ["text"] = "Allocates Catalysis", ["type"] = "explicit", }, [1086] = { - ["id"] = "explicit.stat_3173882956", - ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["id"] = "explicit.stat_2954116742|9472", + ["text"] = "Allocates Catapult", ["type"] = "explicit", }, [1087] = { - ["id"] = "explicit.stat_3314050176", - ["text"] = "Life Leech is Converted to Energy Shield Leech", + ["id"] = "explicit.stat_2954116742|32664", + ["text"] = "Allocates Chakra of Breathing", ["type"] = "explicit", }, [1088] = { - ["id"] = "explicit.stat_1373860425", - ["text"] = "#% increased Spell Damage with Spells that cost Life", + ["id"] = "explicit.stat_2954116742|63400", + ["text"] = "Allocates Chakra of Elements", ["type"] = "explicit", }, [1089] = { - ["id"] = "explicit.stat_693180608", - ["text"] = "#% increased Damage while your Companion is in your Presence", + ["id"] = "explicit.stat_2954116742|25362", + ["text"] = "Allocates Chakra of Impact", ["type"] = "explicit", }, [1090] = { - ["id"] = "explicit.stat_3076483222|64921", - ["text"] = "Sacrifice up to 10 Vaal Orbs to receive double on Trial completion", + ["id"] = "explicit.stat_2954116742|35031", + ["text"] = "Allocates Chakra of Life", ["type"] = "explicit", }, [1091] = { - ["id"] = "explicit.stat_2760643568", - ["text"] = "#% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", + ["id"] = "explicit.stat_2954116742|28963", + ["text"] = "Allocates Chakra of Rhythm", ["type"] = "explicit", }, [1092] = { - ["id"] = "explicit.stat_4043376133", - ["text"] = "#% increased Magnitude of Abyssal Wasting you inflict", + ["id"] = "explicit.stat_2954116742|42347", + ["text"] = "Allocates Chakra of Sight", ["type"] = "explicit", }, [1093] = { - ["id"] = "explicit.stat_2300185227", - ["text"] = "# to Dexterity and Intelligence", + ["id"] = "explicit.stat_2954116742|42760", + ["text"] = "Allocates Chakra of Stability", ["type"] = "explicit", }, [1094] = { - ["id"] = "explicit.stat_2149603090", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_2954116742|29306", + ["text"] = "Allocates Chakra of Thought", ["type"] = "explicit", }, [1095] = { - ["id"] = "explicit.stat_3932115504", - ["text"] = "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", + ["id"] = "explicit.stat_2954116742|5410", + ["text"] = "Allocates Channelled Heritage", ["type"] = "explicit", }, [1096] = { - ["id"] = "explicit.stat_1550131834", - ["text"] = "Critical Hits with Spells apply # Stack of Critical Weakness", + ["id"] = "explicit.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", ["type"] = "explicit", }, [1097] = { - ["id"] = "explicit.stat_3076483222|62634", - ["text"] = "Sacrifice up to 20 Exalted Orbs to receive double on Trial completion", + ["id"] = "explicit.stat_2954116742|5686", + ["text"] = "Allocates Chillproof", ["type"] = "explicit", }, [1098] = { - ["id"] = "explicit.stat_1846980580", - ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["id"] = "explicit.stat_2954116742|39990", + ["text"] = "Allocates Chronomancy", ["type"] = "explicit", }, [1099] = { - ["id"] = "explicit.stat_2104359366", - ["text"] = "Maximum Energy Shield cannot be Converted", + ["id"] = "explicit.stat_2954116742|57805", + ["text"] = "Allocates Clear Space", ["type"] = "explicit", }, [1100] = { - ["id"] = "explicit.stat_3240073117", - ["text"] = "#% increased Life Recovery rate", + ["id"] = "explicit.stat_2954116742|4627", + ["text"] = "Allocates Climate Change", ["type"] = "explicit", }, [1101] = { - ["id"] = "explicit.stat_3583542124", - ["text"] = "#% increased Block chance against Projectiles", + ["id"] = "explicit.stat_2954116742|38479", + ["text"] = "Allocates Close Confines", ["type"] = "explicit", }, [1102] = { - ["id"] = "explicit.stat_2422708892|33979", - ["text"] = "Passives in Radius of Conduit can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|29514", + ["text"] = "Allocates Cluster Bombs", ["type"] = "explicit", }, [1103] = { - ["id"] = "explicit.stat_942519401", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["id"] = "explicit.stat_2954116742|44330", + ["text"] = "Allocates Coated Arms", ["type"] = "explicit", }, [1104] = { - ["id"] = "explicit.stat_1016759424", - ["text"] = "Bleeding you inflict deals Fire Damage instead of Physical Damage", + ["id"] = "explicit.stat_2954116742|35618", + ["text"] = "Allocates Cold Coat", ["type"] = "explicit", }, [1105] = { - ["id"] = "explicit.stat_3171212276", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["id"] = "explicit.stat_2954116742|26518", + ["text"] = "Allocates Cold Nature", ["type"] = "explicit", }, [1106] = { - ["id"] = "explicit.stat_746505085", - ["text"] = "Reflects opposite Ring", + ["id"] = "explicit.stat_2954116742|47363", + ["text"] = "Allocates Colossal Weapon", ["type"] = "explicit", }, [1107] = { - ["id"] = "explicit.stat_1076031760", - ["text"] = "Infinite Parry Range", + ["id"] = "explicit.stat_2954116742|28044", + ["text"] = "Allocates Coming Calamity", ["type"] = "explicit", }, [1108] = { - ["id"] = "explicit.stat_3598729471", - ["text"] = "You can only Socket Emerald Jewels in this item", + ["id"] = "explicit.stat_2954116742|42660", + ["text"] = "Allocates Commanding Rage", ["type"] = "explicit", }, [1109] = { - ["id"] = "explicit.stat_3631920880", - ["text"] = "Lightning Resistance is unaffected by Area Penalties", + ["id"] = "explicit.stat_2954116742|36931", + ["text"] = "Allocates Concussive Attack", ["type"] = "explicit", }, [1110] = { - ["id"] = "explicit.stat_2534359663", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["id"] = "explicit.stat_2954116742|52257", + ["text"] = "Allocates Conductive Embrace", ["type"] = "explicit", }, [1111] = { - ["id"] = "explicit.stat_1056492907", - ["text"] = "Energy Shield Recharge starts on use", + ["id"] = "explicit.stat_2954116742|34300", + ["text"] = "Allocates Conservative Casting", ["type"] = "explicit", }, [1112] = { - ["id"] = "explicit.stat_2468595624", - ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies within 2m", + ["id"] = "explicit.stat_2954116742|15030", + ["text"] = "Allocates Consistent Intake", ["type"] = "explicit", }, [1113] = { - ["id"] = "explicit.stat_1150343007", - ["text"] = "#% of Damage from Hits is taken from your Damageable Companion's Life before you", + ["id"] = "explicit.stat_2954116742|54640", + ["text"] = "Allocates Constricting", ["type"] = "explicit", }, [1114] = { - ["id"] = "explicit.stat_538848803", - ["text"] = "# to Strength and Dexterity", + ["id"] = "explicit.stat_2954116742|30748", + ["text"] = "Allocates Controlled Chaos", ["type"] = "explicit", }, [1115] = { - ["id"] = "explicit.stat_3247805335", - ["text"] = "Fire Resistance is unaffected by Area Penalties", + ["id"] = "explicit.stat_2954116742|13823", + ["text"] = "Allocates Controlling Magic", ["type"] = "explicit", }, [1116] = { - ["id"] = "explicit.stat_2422708892|32349", - ["text"] = "Passives in Radius of Giant's Blood can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|36623", + ["text"] = "Allocates Convalescence", ["type"] = "explicit", }, [1117] = { - ["id"] = "explicit.stat_4031148736", - ["text"] = "You can only Socket Ruby Jewels in this item", + ["id"] = "explicit.stat_2954116742|56776", + ["text"] = "Allocates Cooked", ["type"] = "explicit", }, [1118] = { - ["id"] = "explicit.stat_2675129731", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", + ["id"] = "explicit.stat_2954116742|6133", + ["text"] = "Allocates Core of the Guardian", ["type"] = "explicit", }, [1119] = { - ["id"] = "explicit.stat_331648983", - ["text"] = "When you reload, triggers Gemini Surge to alternatelygain # Cold Surge or # Fire Surge", + ["id"] = "explicit.stat_2954116742|27761", + ["text"] = "Allocates Counterstancing", ["type"] = "explicit", }, [1120] = { - ["id"] = "explicit.stat_1221641885", - ["text"] = "Fire Damage also Contributes to Bleeding Magnitude", + ["id"] = "explicit.stat_2954116742|50687", + ["text"] = "Allocates Coursing Energy", ["type"] = "explicit", }, [1121] = { - ["id"] = "explicit.stat_21302430", - ["text"] = "You can only Socket Sapphire Jewels in this item", + ["id"] = "explicit.stat_2954116742|63451", + ["text"] = "Allocates Cranial Impact", ["type"] = "explicit", }, [1122] = { - ["id"] = "explicit.stat_4207433208", - ["text"] = "Cold Resistance is unaffected by Area Penalties", + ["id"] = "explicit.stat_2954116742|9323", + ["text"] = "Allocates Craving Slaughter", ["type"] = "explicit", }, [1123] = { - ["id"] = "explicit.stat_2704225257", - ["text"] = "# to Spirit", + ["id"] = "explicit.stat_2954116742|20511", + ["text"] = "Allocates Cremating Cries", ["type"] = "explicit", }, [1124] = { - ["id"] = "explicit.stat_2422708892|37484", - ["text"] = "Passives in Radius of Primal Hunger can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|19715", + ["text"] = "Allocates Cremation", ["type"] = "explicit", }, [1125] = { - ["id"] = "explicit.stat_2422708892|18684", - ["text"] = "Passives in Radius of Avatar of Fire can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|43677", + ["text"] = "Allocates Crippling Toxins", ["type"] = "explicit", }, [1126] = { - ["id"] = "explicit.stat_2422708892|19288", - ["text"] = "Passives in Radius of Glancing Blows can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|57204", + ["text"] = "Allocates Critical Exploit", ["type"] = "explicit", }, [1127] = { - ["id"] = "explicit.stat_83011992", - ["text"] = "Enemies in your Presence have no Elemental Resistances", + ["id"] = "explicit.stat_2954116742|45488", + ["text"] = "Allocates Cross Strike", ["type"] = "explicit", }, [1128] = { - ["id"] = "explicit.stat_1136768410", - ["text"] = "#% increased Cast Speed when on Low Life", + ["id"] = "explicit.stat_2954116742|42981", + ["text"] = "Allocates Cruel Methods", ["type"] = "explicit", }, [1129] = { - ["id"] = "explicit.stat_1464727508", - ["text"] = "Enemies in your Presence are Blinded", + ["id"] = "explicit.stat_2954116742|35739", + ["text"] = "Allocates Crushing Judgement", ["type"] = "explicit", }, [1130] = { - ["id"] = "explicit.stat_1052498387", - ["text"] = "Every second, inflicts Critical Weakness on enemies in your Presence for # second", + ["id"] = "explicit.stat_2954116742|18505", + ["text"] = "Allocates Crushing Verdict", ["type"] = "explicit", }, [1131] = { - ["id"] = "explicit.stat_1990472846", - ["text"] = "Recover #% of Missing Life before being Hit by an Enemy", + ["id"] = "explicit.stat_2954116742|38895", + ["text"] = "Allocates Crystal Elixir", ["type"] = "explicit", }, [1132] = { - ["id"] = "explicit.stat_2890355696", - ["text"] = "Area has #% chance to contain four additional Abysses", + ["id"] = "explicit.stat_2954116742|61026", + ["text"] = "Allocates Crystalline Flesh", ["type"] = "explicit", }, [1133] = { - ["id"] = "explicit.stat_2890355696", - ["text"] = "Abysses have a #% chance to contain 4 additional Pits", + ["id"] = "explicit.stat_2954116742|32151", + ["text"] = "Allocates Crystalline Resistance", ["type"] = "explicit", }, [1134] = { - ["id"] = "explicit.stat_1752419596", - ["text"] = "Gain Deflection Rating equal to #% of Armour", + ["id"] = "explicit.stat_2954116742|5332", + ["text"] = "Allocates Crystallised Immunities", ["type"] = "explicit", }, [1135] = { - ["id"] = "explicit.stat_1536107934", - ["text"] = "You cannot Sprint", + ["id"] = "explicit.stat_2954116742|36341", + ["text"] = "Allocates Cull the Hordes", ["type"] = "explicit", }, [1136] = { - ["id"] = "explicit.stat_2809428780", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["id"] = "explicit.stat_2954116742|13708", + ["text"] = "Allocates Curved Weapon", ["type"] = "explicit", }, [1137] = { - ["id"] = "explicit.stat_2422708892|45202", - ["text"] = "Passives in Radius of Ancestral Bond can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|32507", + ["text"] = "Allocates Cut to the Bone", ["type"] = "explicit", }, [1138] = { - ["id"] = "explicit.stat_1350127730", - ["text"] = "#% increased Reservation Efficiency of Remnant Skills", + ["id"] = "explicit.stat_2954116742|7128", + ["text"] = "Allocates Dangerous Blossom", ["type"] = "explicit", }, [1139] = { - ["id"] = "explicit.stat_3076483222|54496", - ["text"] = "Sacrifice up to 20 Regal Orbs to receive double on Trial completion", + ["id"] = "explicit.stat_2954116742|63074", + ["text"] = "Allocates Dark Entries", ["type"] = "explicit", }, [1140] = { - ["id"] = "explicit.stat_2996245527", - ["text"] = "You cannot be Chilled or Frozen", + ["id"] = "explicit.stat_2954116742|20495", + ["text"] = "Allocates Dark Entropy", ["type"] = "explicit", }, [1141] = { - ["id"] = "explicit.stat_3076483222|49977", - ["text"] = "Sacrifice up to 10 Chaos Orbs to receive double on Trial completion", + ["id"] = "explicit.stat_2954116742|10500", + ["text"] = "Allocates Dazing Blocks", ["type"] = "explicit", }, [1142] = { - ["id"] = "explicit.stat_2422708892|33369", - ["text"] = "Passives in Radius of Vaal Pact can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|30523", + ["text"] = "Allocates Dead can Dance", ["type"] = "explicit", }, [1143] = { - ["id"] = "explicit.stat_3709513762", - ["text"] = "# to Level of Elemental Weakness Skills", + ["id"] = "explicit.stat_2954116742|49618", + ["text"] = "Allocates Deadly Flourish", ["type"] = "explicit", }, [1144] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", + ["id"] = "explicit.stat_2954116742|13724", + ["text"] = "Allocates Deadly Force", ["type"] = "explicit", }, [1145] = { - ["id"] = "explicit.stat_2422708892|51749", - ["text"] = "Passives in Radius of Blood Magic can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|29288", + ["text"] = "Allocates Deadly Invocations", ["type"] = "explicit", }, [1146] = { - ["id"] = "explicit.stat_2422708892|56349", - ["text"] = "Passives in Radius of Chaos Inoculation can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|38053", + ["text"] = "Allocates Deafening Cries", ["type"] = "explicit", }, [1147] = { - ["id"] = "explicit.stat_1078455967", - ["text"] = "# to Level of all Cold Skills", + ["id"] = "explicit.stat_2954116742|8904", + ["text"] = "Allocates Death from Afar", ["type"] = "explicit", }, [1148] = { - ["id"] = "explicit.stat_1009412152", - ["text"] = "#% chance to Aggravate Bleeding on Hit", + ["id"] = "explicit.stat_2954116742|17664", + ["text"] = "Allocates Decisive Retreat", ["type"] = "explicit", }, [1149] = { - ["id"] = "explicit.stat_3550545679", - ["text"] = "Attacks consume an Endurance Charge to Critically Hit", + ["id"] = "explicit.stat_2954116742|5594", + ["text"] = "Allocates Decrepifying Curse", ["type"] = "explicit", }, [1150] = { - ["id"] = "explicit.stat_3076483222|20358", - ["text"] = "Sacrifice up to 10 Orbs of Alchemy to receive double on Trial completion", + ["id"] = "explicit.stat_2954116742|16142", + ["text"] = "Allocates Deep Freeze", ["type"] = "explicit", }, [1151] = { - ["id"] = "explicit.stat_2836928993", - ["text"] = "Enemies in your Presence count as having double Power", + ["id"] = "explicit.stat_2954116742|40166", + ["text"] = "Allocates Deep Trance", ["type"] = "explicit", }, [1152] = { - ["id"] = "explicit.stat_2422708892|46742", - ["text"] = "Passives in Radius of Elemental Equilibrium can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|33216", + ["text"] = "Allocates Deep Wounds", ["type"] = "explicit", }, [1153] = { - ["id"] = "explicit.stat_3509362078", - ["text"] = "#% increased Evasion Rating from Equipped Body Armour", + ["id"] = "explicit.stat_2954116742|45612", + ["text"] = "Allocates Defensive Reflexes", ["type"] = "explicit", }, [1154] = { - ["id"] = "explicit.stat_2422708892|55048", - ["text"] = "Passives in Radius of Pain Attunement can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|10681", + ["text"] = "Allocates Defensive Stance", ["type"] = "explicit", }, [1155] = { - ["id"] = "explicit.stat_3387008487", - ["text"] = "Defend with 200% of Armour", + ["id"] = "explicit.stat_2954116742|32354", + ["text"] = "Allocates Defiance", ["type"] = "explicit", }, [1156] = { - ["id"] = "explicit.stat_2690740379", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + ["id"] = "explicit.stat_2954116742|45329", + ["text"] = "Allocates Delayed Danger", ["type"] = "explicit", }, [1157] = { - ["id"] = "explicit.stat_2422708892|56605", - ["text"] = "Passives in Radius of Bulwark can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|38570", + ["text"] = "Allocates Demolitionist", ["type"] = "explicit", }, [1158] = { - ["id"] = "explicit.stat_2422708892|39935", - ["text"] = "Passives in Radius of Necromantic Talisman can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|4931", + ["text"] = "Allocates Dependable Ward", ["type"] = "explicit", }, [1159] = { - ["id"] = "explicit.stat_3991877392", - ["text"] = "Notable Passive Skills in Radius also grant # to Spirit", + ["id"] = "explicit.stat_2954116742|28267", + ["text"] = "Allocates Desensitisation", ["type"] = "explicit", }, [1160] = { - ["id"] = "explicit.stat_2907381231", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["id"] = "explicit.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", ["type"] = "explicit", }, [1161] = { - ["id"] = "explicit.stat_1175213674", - ["text"] = "#% of Elemental damage from Hits taken as Chaos damage", + ["id"] = "explicit.stat_2954116742|14343", + ["text"] = "Allocates Deterioration", ["type"] = "explicit", }, [1162] = { - ["id"] = "explicit.stat_1266413530", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["id"] = "explicit.stat_2954116742|24753", + ["text"] = "Allocates Determined Precision", ["type"] = "explicit", }, [1163] = { - ["id"] = "explicit.stat_666077204", - ["text"] = "Companions have #% increased Attack Speed", + ["id"] = "explicit.stat_2954116742|48006", + ["text"] = "Allocates Devastation", ["type"] = "explicit", }, [1164] = { - ["id"] = "explicit.stat_2422708892|14540", - ["text"] = "Passives in Radius of Unwavering Stance can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|2344", + ["text"] = "Allocates Dimensional Weakspot", ["type"] = "explicit", }, [1165] = { - ["id"] = "explicit.stat_3181887481", - ["text"] = "Take #% of Mana Costs you pay for Skills as Physical Damage", + ["id"] = "explicit.stat_2954116742|24483", + ["text"] = "Allocates Direct Approach", ["type"] = "explicit", }, [1166] = { - ["id"] = "explicit.stat_138421180", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["id"] = "explicit.stat_2954116742|38459", + ["text"] = "Allocates Disorientation", ["type"] = "explicit", }, [1167] = { - ["id"] = "explicit.stat_1285684287", - ["text"] = "Enemies in your Presence count as being on Low Life", + ["id"] = "explicit.stat_2954116742|58939", + ["text"] = "Allocates Dispatch Foes", ["type"] = "explicit", }, [1168] = { - ["id"] = "explicit.stat_3579898587", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["id"] = "explicit.stat_2954116742|52245", + ["text"] = "Allocates Distant Dreamer", ["type"] = "explicit", }, [1169] = { - ["id"] = "explicit.stat_3371085671", - ["text"] = "Unique Monsters have # additional Rare Modifier", + ["id"] = "explicit.stat_2954116742|32721", + ["text"] = "Allocates Distracted Target", ["type"] = "explicit", }, [1170] = { - ["id"] = "explicit.stat_3371085671", - ["text"] = "Unique Monsters in your Maps have # additional Rare Modifier", + ["id"] = "explicit.stat_2954116742|44765", + ["text"] = "Allocates Distracting Presence", ["type"] = "explicit", }, [1171] = { - ["id"] = "explicit.stat_3164544692", - ["text"] = "Take # Chaos damage per second per Endurance Charge", + ["id"] = "explicit.stat_2954116742|47514", + ["text"] = "Allocates Dizzying Hits", ["type"] = "explicit", }, [1172] = { - ["id"] = "explicit.stat_3418580811|21", - ["text"] = "Remembrancing # songworthy deeds by the line of VoranaPassives in radius are Conquered by the Kalguur", + ["id"] = "explicit.stat_2954116742|1420", + ["text"] = "Allocates Dizzying Sweep", ["type"] = "explicit", }, [1173] = { - ["id"] = "explicit.stat_2422708892|14226", - ["text"] = "Passives in Radius of Dance with Death can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|26214", + ["text"] = "Allocates Dominion", ["type"] = "explicit", }, [1174] = { - ["id"] = "explicit.stat_3954735777", - ["text"] = "#% chance to Poison on Hit with Attacks", + ["id"] = "explicit.stat_2954116742|57190", + ["text"] = "Allocates Doomsayer", ["type"] = "explicit", }, [1175] = { - ["id"] = "explicit.stat_2418601510", - ["text"] = "Chaos Damage from Hits also Contributes to Shock Chance", + ["id"] = "explicit.stat_2954116742|1502", + ["text"] = "Allocates Draiocht Cleansing", ["type"] = "explicit", }, [1176] = { - ["id"] = "explicit.stat_3226351972", - ["text"] = "Delirium Fog in Area lasts # additional seconds before dissipating", + ["id"] = "explicit.stat_2954116742|32858", + ["text"] = "Allocates Dread Engineer's Concoction", ["type"] = "explicit", }, [1177] = { - ["id"] = "explicit.stat_3226351972", - ["text"] = "Delirium Fog in your Maps lasts # additional seconds before dissipating", + ["id"] = "explicit.stat_2954116742|11838", + ["text"] = "Allocates Dreamcatcher", ["type"] = "explicit", }, [1178] = { - ["id"] = "explicit.stat_3246948616", - ["text"] = "Lightning Damage of Enemies Hitting you is Lucky during effect", + ["id"] = "explicit.stat_2954116742|40073", + ["text"] = "Allocates Drenched", ["type"] = "explicit", }, [1179] = { - ["id"] = "explicit.stat_76982026", - ["text"] = "Sacrifice # Life to not consume the last bolt when firing", + ["id"] = "explicit.stat_2954116742|3688", + ["text"] = "Allocates Dynamism", ["type"] = "explicit", }, [1180] = { - ["id"] = "explicit.stat_60826109", - ["text"] = "Blind Targets when you Poison them", + ["id"] = "explicit.stat_2954116742|10315", + ["text"] = "Allocates Easy Going", ["type"] = "explicit", }, [1181] = { - ["id"] = "explicit.stat_1404134612", - ["text"] = "You and Allies in your Presence have #% to Chaos Resistance", + ["id"] = "explicit.stat_2954116742|64525", + ["text"] = "Allocates Easy Target", ["type"] = "explicit", }, [1182] = { - ["id"] = "explicit.stat_3550168289", - ["text"] = "Area is inhabited by # additional Rogue Exile", + ["id"] = "explicit.stat_2954116742|60692", + ["text"] = "Allocates Echoing Flames", ["type"] = "explicit", }, [1183] = { - ["id"] = "explicit.stat_3550168289", - ["text"] = "Your Maps are inhabited by # additional Rogue Exile", + ["id"] = "explicit.stat_2954116742|5257", + ["text"] = "Allocates Echoing Frost", ["type"] = "explicit", }, [1184] = { - ["id"] = "explicit.stat_2422708892|25100", - ["text"] = "Passives in Radius of Oasis can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|7302", + ["text"] = "Allocates Echoing Pulse", ["type"] = "explicit", }, [1185] = { - ["id"] = "explicit.stat_2109189637", - ["text"] = "#% of Lightning Damage Converted to Chaos Damage", + ["id"] = "explicit.stat_2954116742|5703", + ["text"] = "Allocates Echoing Thunder", ["type"] = "explicit", }, [1186] = { - ["id"] = "explicit.stat_693237939", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["id"] = "explicit.stat_2954116742|33093", + ["text"] = "Allocates Effervescent", ["type"] = "explicit", }, [1187] = { - ["id"] = "explicit.stat_1896726125", - ["text"] = "# to maximum Valour", + ["id"] = "explicit.stat_2954116742|46692", + ["text"] = "Allocates Efficient Alchemy", ["type"] = "explicit", }, [1188] = { - ["id"] = "explicit.stat_2422708892|44017", - ["text"] = "Passives in Radius of Resolute Technique can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|16790", + ["text"] = "Allocates Efficient Casting", ["type"] = "explicit", }, [1189] = { - ["id"] = "explicit.stat_1761741119", - ["text"] = "Banners always have maximum Valour", + ["id"] = "explicit.stat_2954116742|30408", + ["text"] = "Allocates Efficient Contraptions", ["type"] = "explicit", }, [1190] = { - ["id"] = "explicit.stat_2678930256", - ["text"] = "#% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", + ["id"] = "explicit.stat_2954116742|42245", + ["text"] = "Allocates Efficient Inscriptions", ["type"] = "explicit", }, [1191] = { - ["id"] = "explicit.stat_3408222535", - ["text"] = "You and Allies in your Presence have #% increased Attack Speed", + ["id"] = "explicit.stat_2954116742|94", + ["text"] = "Allocates Efficient Killing", ["type"] = "explicit", }, [1192] = { - ["id"] = "explicit.stat_2432200638", - ["text"] = "Damage taken Recouped as Life is also Recouped as Energy Shield", + ["id"] = "explicit.stat_2954116742|53683", + ["text"] = "Allocates Efficient Loading", ["type"] = "explicit", }, [1193] = { - ["id"] = "explicit.stat_3170380905", - ["text"] = "Gain 1% of damage as Fire damage per #% Chance to Block", + ["id"] = "explicit.stat_2954116742|3894", + ["text"] = "Allocates Eldritch Will", ["type"] = "explicit", }, [1194] = { - ["id"] = "explicit.stat_1535626285", - ["text"] = "# to Strength and Intelligence", + ["id"] = "explicit.stat_2954116742|55708", + ["text"] = "Allocates Electric Amplification", ["type"] = "explicit", }, [1195] = { - ["id"] = "explicit.stat_1953536251", - ["text"] = "Enemies in your Presence have at least #% of Life Reserved", + ["id"] = "explicit.stat_2954116742|56988", + ["text"] = "Allocates Electric Blood", ["type"] = "explicit", }, [1196] = { - ["id"] = "explicit.stat_2369495153", - ["text"] = "#% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", + ["id"] = "explicit.stat_2954116742|30546", + ["text"] = "Allocates Electrified Claw", ["type"] = "explicit", }, [1197] = { - ["id"] = "explicit.stat_4250009622", - ["text"] = "#% chance to be Poisoned", + ["id"] = "explicit.stat_2954116742|56767", + ["text"] = "Allocates Electrifying Daze", ["type"] = "explicit", }, [1198] = { - ["id"] = "explicit.stat_3823990000", - ["text"] = "#% chance to load a bolt into all Crossbow skills on Kill", + ["id"] = "explicit.stat_2954116742|26291", + ["text"] = "Allocates Electrifying Nature", ["type"] = "explicit", }, [1199] = { - ["id"] = "explicit.stat_2733960806", - ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", + ["id"] = "explicit.stat_2954116742|7275", + ["text"] = "Allocates Electrocuting Exposure", ["type"] = "explicit", }, [1200] = { - ["id"] = "explicit.stat_3613173483", - ["text"] = "#% to Unarmed Melee Attack Critical Hit Chance", + ["id"] = "explicit.stat_2954116742|36364", + ["text"] = "Allocates Electrocution", ["type"] = "explicit", }, [1201] = { - ["id"] = "explicit.stat_2422708892|34497", - ["text"] = "Passives in Radius of Heartstopper can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|43090", + ["text"] = "Allocates Electrotherapy", ["type"] = "explicit", }, [1202] = { - ["id"] = "explicit.stat_3510648768", - ["text"] = "Players have #% more Armour, Evasion and Energy Shield", + ["id"] = "explicit.stat_2954116742|10612", + ["text"] = "Allocates Embodiment of Frost", ["type"] = "explicit", }, [1203] = { - ["id"] = "explicit.stat_425242359", - ["text"] = "#% of Physical damage from Hits taken as Lightning damage", + ["id"] = "explicit.stat_2954116742|15991", + ["text"] = "Allocates Embodiment of Lightning", ["type"] = "explicit", }, [1204] = { - ["id"] = "explicit.stat_120737942", - ["text"] = "Ritual Altars in Area allow rerolling Favours an additional time", + ["id"] = "explicit.stat_2954116742|43423", + ["text"] = "Allocates Emboldened Avatar", ["type"] = "explicit", }, [1205] = { - ["id"] = "explicit.stat_120737942", - ["text"] = "Ritual Altars allow rerolling Favours an additional time", + ["id"] = "explicit.stat_2954116742|10727", + ["text"] = "Allocates Emboldening Casts", ["type"] = "explicit", }, [1206] = { - ["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", + ["id"] = "explicit.stat_2954116742|34553", + ["text"] = "Allocates Emboldening Lead", ["type"] = "explicit", }, [1207] = { - ["id"] = "explicit.stat_3868746097", - ["text"] = "Enemies have an Accuracy Penalty against you based on Distance", + ["id"] = "explicit.stat_2954116742|9928", + ["text"] = "Allocates Embracing Frost", ["type"] = "explicit", }, [1208] = { - ["id"] = "explicit.stat_3762913035", - ["text"] = "Unstable Breaches spawn an additional Rare Monster when Stabilised", + ["id"] = "explicit.stat_2954116742|8782", + ["text"] = "Allocates Empowering Infusions", ["type"] = "explicit", }, [1209] = { - ["id"] = "explicit.stat_4246007234", - ["text"] = "#% increased Attack Damage while on Low Life", + ["id"] = "explicit.stat_2954116742|8397", + ["text"] = "Allocates Empowering Remains", ["type"] = "explicit", }, [1210] = { - ["id"] = "explicit.stat_1695767482", - ["text"] = "Inflict Corrupted Blood for # second on Block, dealing #% ofyour maximum Life as Physical damage per second", + ["id"] = "explicit.stat_2954116742|40985", + ["text"] = "Allocates Empowering Remnants", ["type"] = "explicit", }, [1211] = { - ["id"] = "explicit.stat_2480151124", - ["text"] = "Equipment has no Attribute Requirements", + ["id"] = "explicit.stat_2954116742|7542", + ["text"] = "Allocates Encompassing Domain", ["type"] = "explicit", }, [1212] = { - ["id"] = "explicit.stat_3625518318", - ["text"] = "Gain Arcane Surge when a Minion Dies", + ["id"] = "explicit.stat_2954116742|19955", + ["text"] = "Allocates Endless Blizzard", ["type"] = "explicit", }, [1213] = { - ["id"] = "explicit.stat_1310597900", - ["text"] = "Players have #% more Recovery Rate of Life, Mana and Energy Shield", + ["id"] = "explicit.stat_2954116742|8273", + ["text"] = "Allocates Endless Circuit", ["type"] = "explicit", }, [1214] = { - ["id"] = "explicit.stat_1500744699", - ["text"] = "Maximum Chance to Evade is 50%", + ["id"] = "explicit.stat_2954116742|5663", + ["text"] = "Allocates Endurance", ["type"] = "explicit", }, [1215] = { - ["id"] = "explicit.stat_546201303", - ["text"] = "#% of Mana Leeched from targets affected by Abyssal Wasting is Instant", + ["id"] = "explicit.stat_2954116742|15443", + ["text"] = "Allocates Endured Suffering", ["type"] = "explicit", }, [1216] = { - ["id"] = "explicit.stat_3658708511", - ["text"] = "#% of Life Leeched from targets affected by Abyssal Wasting is Instant", + ["id"] = "explicit.stat_2954116742|59070", + ["text"] = "Allocates Enduring Archon", ["type"] = "explicit", }, [1217] = { - ["id"] = "explicit.stat_1436284579", - ["text"] = "Cannot be Blinded", + ["id"] = "explicit.stat_2954116742|42103", + ["text"] = "Allocates Enduring Deflection", ["type"] = "explicit", }, [1218] = { - ["id"] = "explicit.stat_4255854327", - ["text"] = "#% increased Accuracy Rating against Enemies affected by Abyssal Wasting", + ["id"] = "explicit.stat_2954116742|40399", + ["text"] = "Allocates Energise", ["type"] = "explicit", }, [1219] = { - ["id"] = "explicit.stat_3843204146", - ["text"] = "#% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", + ["id"] = "explicit.stat_2954116742|43633", + ["text"] = "Allocates Energising Archon", ["type"] = "explicit", }, [1220] = { - ["id"] = "explicit.stat_3749502527", - ["text"] = "#% chance to gain Volatility on Kill", + ["id"] = "explicit.stat_2954116742|34541", + ["text"] = "Allocates Energising Deflection", ["type"] = "explicit", }, [1221] = { - ["id"] = "explicit.stat_281990982", - ["text"] = "You and Allies in your Presence have #% increased Cast Speed", + ["id"] = "explicit.stat_2954116742|2814", + ["text"] = "Allocates Engineered Blaze", ["type"] = "explicit", }, [1222] = { - ["id"] = "explicit.stat_3084372306", - ["text"] = "#% increased Life Regeneration rate while Surrounded", + ["id"] = "explicit.stat_2954116742|44299", + ["text"] = "Allocates Enhanced Barrier", ["type"] = "explicit", }, [1223] = { - ["id"] = "explicit.stat_2156230257", - ["text"] = "All Damage from Hits with this Weapon Contributes to Chill Magnitude", + ["id"] = "explicit.stat_2954116742|51707", + ["text"] = "Allocates Enhanced Reflexes", ["type"] = "explicit", }, [1224] = { - ["id"] = "explicit.stat_2825946427", - ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", + ["id"] = "explicit.stat_2954116742|56237", + ["text"] = "Allocates Enhancing Attacks", ["type"] = "explicit", }, [1225] = { - ["id"] = "explicit.stat_2638756573", - ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + ["id"] = "explicit.stat_2954116742|30720", + ["text"] = "Allocates Entropic Incarnation", ["type"] = "explicit", }, [1226] = { - ["id"] = "explicit.stat_1895238057", - ["text"] = "#% increased Mana Regeneration Rate while Surrounded", + ["id"] = "explicit.stat_2954116742|65243", + ["text"] = "Allocates Enveloping Presence", ["type"] = "explicit", }, [1227] = { - ["id"] = "explicit.stat_2422708892|57513", - ["text"] = "Passives in Radius of Eldritch Battery can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|61404", + ["text"] = "Allocates Equilibrium", ["type"] = "explicit", }, [1228] = { - ["id"] = "explicit.stat_2337295272", - ["text"] = "Minions deal #% increased Damage if you've Hit Recently", + ["id"] = "explicit.stat_2954116742|52684", + ["text"] = "Allocates Eroding Chains", ["type"] = "explicit", }, [1229] = { - ["id"] = "explicit.stat_1458343515", - ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", + ["id"] = "explicit.stat_2954116742|20032", + ["text"] = "Allocates Erraticism", ["type"] = "explicit", }, [1230] = { - ["id"] = "explicit.stat_2695354435", - ["text"] = "#% increased Global Evasion Rating when on Low Life", + ["id"] = "explicit.stat_2954116742|42032", + ["text"] = "Allocates Escalating Mayhem", ["type"] = "explicit", }, [1231] = { - ["id"] = "explicit.stat_2890401248", - ["text"] = "Enemies in your Presence are Hindered", + ["id"] = "explicit.stat_2954116742|38628", + ["text"] = "Allocates Escalating Toxins", ["type"] = "explicit", }, [1232] = { - ["id"] = "explicit.stat_2326202293", - ["text"] = "Players are Cursed with Temporal Chains", + ["id"] = "explicit.stat_2954116742|9187", + ["text"] = "Allocates Escalation", ["type"] = "explicit", }, [1233] = { - ["id"] = "explicit.stat_2422708892|33404", - ["text"] = "Passives in Radius of Eternal Youth can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|5227", + ["text"] = "Allocates Escape Strategy", ["type"] = "explicit", }, [1234] = { - ["id"] = "explicit.stat_4103440490", - ["text"] = "Players are Cursed with Enfeeble", + ["id"] = "explicit.stat_2954116742|17854", + ["text"] = "Allocates Escape Velocity", ["type"] = "explicit", }, [1235] = { - ["id"] = "explicit.stat_558910024", - ["text"] = "Players are Cursed with Elemental Weakness", + ["id"] = "explicit.stat_2954116742|42077", + ["text"] = "Allocates Essence Infusion", ["type"] = "explicit", }, [1236] = { - ["id"] = "explicit.stat_4245256219", - ["text"] = "Skill Gems have no Attribute Requirements", + ["id"] = "explicit.stat_2954116742|16256", + ["text"] = "Allocates Ether Flow", ["type"] = "explicit", }, [1237] = { - ["id"] = "explicit.stat_775597083", - ["text"] = "Areas with Powerful Map Bosses contain an additional Azmeri Spirit", + ["id"] = "explicit.stat_2954116742|52191", + ["text"] = "Allocates Event Horizon", ["type"] = "explicit", }, [1238] = { - ["id"] = "explicit.stat_3314536008", - ["text"] = "Inflict Cold Exposure on Igniting an Enemy", + ["id"] = "explicit.stat_2954116742|13524", + ["text"] = "Allocates Everlasting Glory", ["type"] = "explicit", }, [1239] = { - ["id"] = "explicit.stat_3893509584", - ["text"] = "Minions have Unholy Might", + ["id"] = "explicit.stat_2954116742|24087", + ["text"] = "Allocates Everlasting Infusions", ["type"] = "explicit", }, [1240] = { - ["id"] = "explicit.stat_3960211755", - ["text"] = "Maximum Physical Damage Reduction is 50%", + ["id"] = "explicit.stat_2954116742|41753", + ["text"] = "Allocates Evocational Practitioner", ["type"] = "explicit", }, [1241] = { - ["id"] = "explicit.stat_1070816711", - ["text"] = "Area contains an additional Abyss", + ["id"] = "explicit.stat_2954116742|47420", + ["text"] = "Allocates Expendable Army", ["type"] = "explicit", }, [1242] = { - ["id"] = "explicit.stat_1070816711", - ["text"] = "Your Maps contain an additional Abyss", + ["id"] = "explicit.stat_2954116742|39050", + ["text"] = "Allocates Exploit", ["type"] = "explicit", }, [1243] = { - ["id"] = "explicit.stat_266564538", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + ["id"] = "explicit.stat_2954116742|48581", + ["text"] = "Allocates Exploit the Elements", ["type"] = "explicit", }, [1244] = { - ["id"] = "explicit.stat_3418580811|22", - ["text"] = "Remembrancing # songworthy deeds by the line of MedvedPassives in radius are Conquered by the Kalguur", + ["id"] = "explicit.stat_2954116742|36333", + ["text"] = "Allocates Explosive Empowerment", ["type"] = "explicit", }, [1245] = { - ["id"] = "explicit.stat_2312741059", - ["text"] = "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", + ["id"] = "explicit.stat_2954116742|21206", + ["text"] = "Allocates Explosive Impact", ["type"] = "explicit", }, [1246] = { - ["id"] = "explicit.stat_1138708335", - ["text"] = "Monster Damage penetrates #% of Cold Resistance", + ["id"] = "explicit.stat_2954116742|55835", + ["text"] = "Allocates Exposed to the Cosmos", ["type"] = "explicit", }, [1247] = { - ["id"] = "explicit.stat_1538879632", - ["text"] = "Inflict Fire Exposure on Shocking an Enemy", + ["id"] = "explicit.stat_2954116742|10423", + ["text"] = "Allocates Exposed to the Inferno", ["type"] = "explicit", }, [1248] = { - ["id"] = "explicit.stat_2665488635", - ["text"] = "Inflict Lightning Exposure on Critical Hit", + ["id"] = "explicit.stat_2954116742|40990", + ["text"] = "Allocates Exposed to the Storm", ["type"] = "explicit", }, [1249] = { - ["id"] = "explicit.stat_3093465148", - ["text"] = "Monster Damage penetrates #% of Lightning Resistance", + ["id"] = "explicit.stat_2954116742|56112", + ["text"] = "Allocates Extinguishing Exhalation", ["type"] = "explicit", }, [1250] = { - ["id"] = "explicit.stat_2295988214", - ["text"] = "#% of Elemental Damage Converted to Chaos Damage", + ["id"] = "explicit.stat_2954116742|60034", + ["text"] = "Allocates Falcon Dive", ["type"] = "explicit", }, [1251] = { - ["id"] = "explicit.stat_3131442032", - ["text"] = "#% increased Grenade Damage", + ["id"] = "explicit.stat_2954116742|31172", + ["text"] = "Allocates Falcon Technique", ["type"] = "explicit", }, [1252] = { - ["id"] = "explicit.stat_2469544361", - ["text"] = "Gain #% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", + ["id"] = "explicit.stat_2954116742|60464", + ["text"] = "Allocates Fan the Flames", ["type"] = "explicit", }, [1253] = { - ["id"] = "explicit.stat_3119282240", - ["text"] = "Players have #% more maximum Life and Energy Shield", + ["id"] = "explicit.stat_2954116742|35477", + ["text"] = "Allocates Far Sighted", ["type"] = "explicit", }, [1254] = { - ["id"] = "explicit.stat_2158617060", - ["text"] = "#% increased Archon Buff duration", + ["id"] = "explicit.stat_2954116742|55", + ["text"] = "Allocates Fast Acting Toxins", ["type"] = "explicit", }, [1255] = { - ["id"] = "explicit.stat_2157870819", - ["text"] = "# to Level of Despair Skills", + ["id"] = "explicit.stat_2954116742|8827", + ["text"] = "Allocates Fast Metabolism", ["type"] = "explicit", }, [1256] = { - ["id"] = "explicit.stat_1365232741", - ["text"] = "#% increased Grenade Duration", + ["id"] = "explicit.stat_2954116742|3921", + ["text"] = "Allocates Fate Finding", ["type"] = "explicit", }, [1257] = { - ["id"] = "explicit.stat_2980117882", - ["text"] = "This Flask cannot be Used but applies its Effect constantly", + ["id"] = "explicit.stat_2954116742|59214", + ["text"] = "Allocates Fated End", ["type"] = "explicit", }, [1258] = { - ["id"] = "explicit.stat_3588388638", - ["text"] = "Monster Damage penetrates #% of Fire Resistance", + ["id"] = "explicit.stat_2954116742|19546", + ["text"] = "Allocates Favourable Odds", ["type"] = "explicit", }, [1259] = { - ["id"] = "explicit.stat_396200591", - ["text"] = "Skills have # seconds to Cooldown", + ["id"] = "explicit.stat_2954116742|22532", + ["text"] = "Allocates Fearful Paralysis", ["type"] = "explicit", }, [1260] = { - ["id"] = "explicit.stat_1679776108", - ["text"] = "Abyssal Wasting you inflict has Infinite Duration", + ["id"] = "explicit.stat_2954116742|60764", + ["text"] = "Allocates Feathered Fletching", ["type"] = "explicit", }, [1261] = { - ["id"] = "explicit.stat_1272938854", - ["text"] = "Evasion Rating is doubled if you have not been Hit Recently", + ["id"] = "explicit.stat_2954116742|9968", + ["text"] = "Allocates Feel the Earth", ["type"] = "explicit", }, [1262] = { - ["id"] = "explicit.stat_806994543", - ["text"] = "#% increased Thorns damage if you've consumed an Endurance Charge Recently", + ["id"] = "explicit.stat_2954116742|21537", + ["text"] = "Allocates Fervour", ["type"] = "explicit", }, [1263] = { - ["id"] = "explicit.stat_1168851547", - ["text"] = "Natural Rare Monsters in Area have # extra Abyssal Modifier", + ["id"] = "explicit.stat_2954116742|2999", + ["text"] = "Allocates Final Barrage", ["type"] = "explicit", }, [1264] = { - ["id"] = "explicit.stat_3906866585", - ["text"] = "Monsters have #% increased Armour, Evasion and Energy Shield", + ["id"] = "explicit.stat_2954116742|51867", + ["text"] = "Allocates Finality", ["type"] = "explicit", }, [1265] = { - ["id"] = "explicit.stat_1494950893", - ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["id"] = "explicit.stat_2954116742|38969", + ["text"] = "Allocates Finesse", ["type"] = "explicit", }, [1266] = { - ["id"] = "explicit.stat_2422708892|52", - ["text"] = "Passives in Radius of Zealot's Oath can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|29899", + ["text"] = "Allocates Finish Them", ["type"] = "explicit", }, [1267] = { - ["id"] = "explicit.stat_1888024332", - ["text"] = "You can have two Companions of different types", + ["id"] = "explicit.stat_2954116742|45013", + ["text"] = "Allocates Finishing Blows", ["type"] = "explicit", }, [1268] = { - ["id"] = "explicit.stat_1777740627", - ["text"] = "Life that would be lost by taking Damage is instead Reserveduntil you take no Damage to Life for # second", + ["id"] = "explicit.stat_2954116742|54911", + ["text"] = "Allocates Firestarter", ["type"] = "explicit", }, [1269] = { - ["id"] = "explicit.stat_1776945532", - ["text"] = "Enemies you kill have a #% chance to explode, dealing a quarter of their maximum Life as Chaos damage", + ["id"] = "explicit.stat_2954116742|29527", + ["text"] = "Allocates First Approach", ["type"] = "explicit", }, [1270] = { - ["id"] = "explicit.stat_299996", - ["text"] = "#% increased Attack Speed while your Companion is in your Presence", + ["id"] = "explicit.stat_2954116742|62963", + ["text"] = "Allocates Flamewalker", ["type"] = "explicit", }, [1271] = { - ["id"] = "explicit.stat_3561837752", - ["text"] = "#% of Leech is Instant", + ["id"] = "explicit.stat_2954116742|43584", + ["text"] = "Allocates Flare", ["type"] = "explicit", }, [1272] = { - ["id"] = "explicit.stat_2573406169", - ["text"] = "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", + ["id"] = "explicit.stat_2954116742|12337", + ["text"] = "Allocates Flash Storm", ["type"] = "explicit", }, [1273] = { - ["id"] = "explicit.stat_3835522656", - ["text"] = "Adds # to # Lightning Damage to Unarmed Melee Hits", + ["id"] = "explicit.stat_2954116742|64851", + ["text"] = "Allocates Flashy Parrying", ["type"] = "explicit", }, [1274] = { - ["id"] = "explicit.stat_1416406066", - ["text"] = "#% increased Spirit", + ["id"] = "explicit.stat_2954116742|21164", + ["text"] = "Allocates Fleshcrafting", ["type"] = "explicit", }, [1275] = { - ["id"] = "explicit.stat_618665892", - ["text"] = "Grants Onslaught during effect", + ["id"] = "explicit.stat_2954116742|4985", + ["text"] = "Allocates Flip the Script", ["type"] = "explicit", }, [1276] = { - ["id"] = "explicit.stat_3350279336", - ["text"] = "#% increased Cost Efficiency of Attacks", + ["id"] = "explicit.stat_2954116742|32128", + ["text"] = "Allocates Flow of Time", ["type"] = "explicit", }, [1277] = { - ["id"] = "explicit.stat_2107791433", - ["text"] = "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", + ["id"] = "explicit.stat_2954116742|33730", + ["text"] = "Allocates Focused Channel", ["type"] = "explicit", }, [1278] = { - ["id"] = "explicit.stat_1367119630", - ["text"] = "Curses you inflict can affect Hexproof Enemies", + ["id"] = "explicit.stat_2954116742|9227", + ["text"] = "Allocates Focused Thrust", ["type"] = "explicit", }, [1279] = { - ["id"] = "explicit.stat_3891922348", - ["text"] = "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", + ["id"] = "explicit.stat_2954116742|20677", + ["text"] = "Allocates For the Jugular", ["type"] = "explicit", }, [1280] = { - ["id"] = "explicit.stat_2422708892|28492", - ["text"] = "Passives in Radius of Iron Reflexes can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|3985", + ["text"] = "Allocates Forces of Nature", ["type"] = "explicit", }, [1281] = { - ["id"] = "explicit.stat_2422708892|45918", - ["text"] = "Passives in Radius of Mind Over Matter can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|48103", + ["text"] = "Allocates Forcewave", ["type"] = "explicit", }, [1282] = { - ["id"] = "explicit.stat_2890792988", - ["text"] = "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", + ["id"] = "explicit.stat_2954116742|55568", + ["text"] = "Allocates Forthcoming", ["type"] = "explicit", }, [1283] = { - ["id"] = "explicit.stat_414821772", - ["text"] = "Increases and Reductions to Projectile Speed also apply to Damage with Bows", + ["id"] = "explicit.stat_2954116742|23940", + ["text"] = "Allocates Fortified Aegis", ["type"] = "explicit", }, [1284] = { - ["id"] = "explicit.stat_255840549", - ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["id"] = "explicit.stat_2954116742|53607", + ["text"] = "Allocates Fortified Location", ["type"] = "explicit", }, [1285] = { - ["id"] = "explicit.stat_324210709", - ["text"] = "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", + ["id"] = "explicit.stat_2954116742|35855", + ["text"] = "Allocates Fortifying Blood", ["type"] = "explicit", }, [1286] = { - ["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", + ["id"] = "explicit.stat_2954116742|59208", + ["text"] = "Allocates Frantic Fighter", ["type"] = "explicit", }, [1287] = { - ["id"] = "explicit.stat_2422708892|47759", - ["text"] = "Passives in Radius of Whispers of Doom can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|28441", + ["text"] = "Allocates Frantic Swings", ["type"] = "explicit", }, [1288] = { - ["id"] = "explicit.stat_1015576579", - ["text"] = "#% increased Armour from Equipped Body Armour", + ["id"] = "explicit.stat_2954116742|32301", + ["text"] = "Allocates Frazzled", ["type"] = "explicit", }, [1289] = { - ["id"] = "explicit.stat_3044685077", - ["text"] = "# to Spirit while you have at least 200 Strength", + ["id"] = "explicit.stat_2954116742|51606", + ["text"] = "Allocates Freedom of Movement", ["type"] = "explicit", }, [1290] = { - ["id"] = "explicit.stat_4142814612", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + ["id"] = "explicit.stat_2954116742|40270", + ["text"] = "Allocates Frenetic", ["type"] = "explicit", }, [1291] = { - ["id"] = "explicit.stat_2706625504", - ["text"] = "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", + ["id"] = "explicit.stat_2954116742|45751", + ["text"] = "Allocates Frightening Shield", ["type"] = "explicit", }, [1292] = { - ["id"] = "explicit.stat_2466011626", - ["text"] = "#% chance for Lightning Damage with Hits to be Lucky", + ["id"] = "explicit.stat_2954116742|48699", + ["text"] = "Allocates Frostwalker", ["type"] = "explicit", }, [1293] = { - ["id"] = "explicit.stat_3076483222|4897", - ["text"] = "Sacrifice up to 20 Armourer's Scraps to receive double on Trial completion", + ["id"] = "explicit.stat_2954116742|20289", + ["text"] = "Allocates Frozen Claw", ["type"] = "explicit", }, [1294] = { - ["id"] = "explicit.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", + ["id"] = "explicit.stat_2954116742|50715", + ["text"] = "Allocates Frozen Limit", ["type"] = "explicit", }, [1295] = { - ["id"] = "explicit.stat_3635316831", - ["text"] = "You can wield Two-Handed Axes, Maces and Swords in one hand", + ["id"] = "explicit.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", ["type"] = "explicit", }, [1296] = { - ["id"] = "explicit.stat_3418580811|23", - ["text"] = "Remembrancing # songworthy deeds by the line of OlrothPassives in radius are Conquered by the Kalguur", + ["id"] = "explicit.stat_2954116742|33887", + ["text"] = "Allocates Full Salvo", ["type"] = "explicit", }, [1297] = { - ["id"] = "explicit.stat_679087890", - ["text"] = "Defend against Hits as though you had #% more Armour per 1% current Energy Shield", + ["id"] = "explicit.stat_2954116742|24630", + ["text"] = "Allocates Fulmination", ["type"] = "explicit", }, [1298] = { - ["id"] = "explicit.stat_758226825", - ["text"] = "Your maximum Energy Shield is equal to #% of your Strength", + ["id"] = "explicit.stat_2954116742|32976", + ["text"] = "Allocates Gem Enthusiast", ["type"] = "explicit", }, [1299] = { - ["id"] = "explicit.stat_1073942215", - ["text"] = "#% increased Freeze Duration on Enemies", + ["id"] = "explicit.stat_2954116742|27875", + ["text"] = "Allocates General Electric", ["type"] = "explicit", }, [1300] = { - ["id"] = "explicit.stat_2800412928", - ["text"] = "Grants effect of Guided Tempest Shrine", + ["id"] = "explicit.stat_2954116742|17150", + ["text"] = "Allocates General's Bindings", ["type"] = "explicit", }, [1301] = { - ["id"] = "explicit.stat_447757144", - ["text"] = "When you Consume a Charge Trigger Chaotic Surge to gain # Chaos Surge", + ["id"] = "explicit.stat_2954116742|9020", + ["text"] = "Allocates Giantslayer", ["type"] = "explicit", }, [1302] = { - ["id"] = "explicit.stat_36954843", - ["text"] = "You and Allies in your Presence have #% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_2954116742|46365", + ["text"] = "Allocates Gigantic Following", ["type"] = "explicit", }, [1303] = { - ["id"] = "explicit.stat_3917429943", - ["text"] = "Grants effect of Guided Meteoric Shrine", + ["id"] = "explicit.stat_2954116742|41972", + ["text"] = "Allocates Glaciation", ["type"] = "explicit", }, [1304] = { - ["id"] = "explicit.stat_2593644209", - ["text"] = "#% to all Elemental Resistances per Power Charge", + ["id"] = "explicit.stat_2954116742|56488", + ["text"] = "Allocates Glancing Deflection", ["type"] = "explicit", }, [1305] = { - ["id"] = "explicit.stat_4007482102", - ["text"] = "Can't use Body Armour", + ["id"] = "explicit.stat_2954116742|23939", + ["text"] = "Allocates Glazed Flesh", ["type"] = "explicit", }, [1306] = { - ["id"] = "explicit.stat_2278777540", - ["text"] = "Abysses lead to an Abyssal Depths", + ["id"] = "explicit.stat_2954116742|63031", + ["text"] = "Allocates Glorious Anticipation", ["type"] = "explicit", }, [1307] = { - ["id"] = "explicit.stat_250458861", - ["text"] = "Only Soul Cores can be Socketed in this item", + ["id"] = "explicit.stat_2954116742|47316", + ["text"] = "Allocates Goring", ["type"] = "explicit", }, [1308] = { - ["id"] = "explicit.stat_34174842", - ["text"] = "#% increased Cast Speed per 20 Spirit", + ["id"] = "explicit.stat_2954116742|41905", + ["text"] = "Allocates Gravedigger", ["type"] = "explicit", }, [1309] = { - ["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", + ["id"] = "explicit.stat_2954116742|27687", + ["text"] = "Allocates Greatest Defence", ["type"] = "explicit", }, [1310] = { - ["id"] = "explicit.stat_3948285912", - ["text"] = "# to Level of Enfeeble Skills", + ["id"] = "explicit.stat_2954116742|58714", + ["text"] = "Allocates Grenadier", ["type"] = "explicit", }, [1311] = { - ["id"] = "explicit.stat_1367999357", - ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Mana", + ["id"] = "explicit.stat_2954116742|31175", + ["text"] = "Allocates Grip of Evil", ["type"] = "explicit", }, [1312] = { - ["id"] = "explicit.stat_1850249186", - ["text"] = "#% increased Spell Damage per 100 maximum Mana", + ["id"] = "explicit.stat_2954116742|20416", + ["text"] = "Allocates Grit", ["type"] = "explicit", }, [1313] = { - ["id"] = "explicit.stat_2103650854", - ["text"] = "#% increased effect of Arcane Surge on you", + ["id"] = "explicit.stat_2954116742|13844", + ["text"] = "Allocates Growing Peril", ["type"] = "explicit", }, [1314] = { - ["id"] = "explicit.stat_1007380041", - ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["id"] = "explicit.stat_2954116742|14945", + ["text"] = "Allocates Growing Swarm", ["type"] = "explicit", }, [1315] = { - ["id"] = "explicit.stat_1133346493", - ["text"] = "#% chance for Spell Damage with Critical Hits to be Lucky", + ["id"] = "explicit.stat_2954116742|4331", + ["text"] = "Allocates Guided Hand", ["type"] = "explicit", }, [1316] = { - ["id"] = "explicit.stat_2694614739", - ["text"] = "# to Spirit while you have at least 200 Dexterity", + ["id"] = "explicit.stat_2954116742|46499", + ["text"] = "Allocates Guts", ["type"] = "explicit", }, [1317] = { - ["id"] = "explicit.stat_1999910726", - ["text"] = "Remnants you create have #% increased effect", + ["id"] = "explicit.stat_2954116742|29762", + ["text"] = "Allocates Guttural Roar", ["type"] = "explicit", }, [1318] = { - ["id"] = "explicit.stat_3491815140", - ["text"] = "#% increased Spell Damage per 100 Maximum Life", + ["id"] = "explicit.stat_2954116742|33229", + ["text"] = "Allocates Haemorrhaging Cuts", ["type"] = "explicit", }, [1319] = { - ["id"] = "explicit.stat_1772929282", - ["text"] = "Enemies you Curse have #% to Chaos Resistance", + ["id"] = "explicit.stat_2954116742|44974", + ["text"] = "Allocates Hail", ["type"] = "explicit", }, [1320] = { - ["id"] = "explicit.stat_335885735", - ["text"] = "Bears the Mark of the Abyssal Lord", + ["id"] = "explicit.stat_2954116742|15374", + ["text"] = "Allocates Hale Heart", ["type"] = "explicit", }, [1321] = { - ["id"] = "explicit.stat_2609822974", - ["text"] = "Curses you inflict have infinite Duration", + ["id"] = "explicit.stat_2954116742|52803", + ["text"] = "Allocates Hale Traveller", ["type"] = "explicit", }, [1322] = { - ["id"] = "explicit.stat_2586152168", - ["text"] = "Archon recovery period expires #% faster", + ["id"] = "explicit.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", ["type"] = "explicit", }, [1323] = { - ["id"] = "explicit.stat_324579579", - ["text"] = "#% increased Attack Speed per 20 Spirit", + ["id"] = "explicit.stat_2954116742|24438", + ["text"] = "Allocates Hardened Wood", ["type"] = "explicit", }, [1324] = { - ["id"] = "explicit.stat_2074866941", - ["text"] = "#% increased Exposure Effect", + ["id"] = "explicit.stat_2954116742|40480", + ["text"] = "Allocates Harmonic Generator", ["type"] = "explicit", }, [1325] = { - ["id"] = "explicit.stat_2734787892", - ["text"] = "Breach Hives have an additional wave of Hiveborn Monsters", + ["id"] = "explicit.stat_2954116742|12611", + ["text"] = "Allocates Harness the Elements", ["type"] = "explicit", }, [1326] = { - ["id"] = "explicit.stat_436406826", - ["text"] = "Players are Marked for Death for # secondsafter killing a Rare or Unique monster", + ["id"] = "explicit.stat_2954116742|26331", + ["text"] = "Allocates Harsh Winter", ["type"] = "explicit", }, [1327] = { - ["id"] = "explicit.stat_1042153418", - ["text"] = "# to Level of Temporal Chains Skills", + ["id"] = "explicit.stat_2954116742|44293", + ["text"] = "Allocates Hastening Barrier", ["type"] = "explicit", }, [1328] = { - ["id"] = "explicit.stat_1291132817", - ["text"] = "+1 to Armour per Strength", + ["id"] = "explicit.stat_2954116742|48215", + ["text"] = "Allocates Headshot", ["type"] = "explicit", }, [1329] = { - ["id"] = "explicit.stat_2456226238", - ["text"] = "Recover #% of your maximum Mana when an Enemy dies in your Presence", + ["id"] = "explicit.stat_2954116742|35966", + ["text"] = "Allocates Heart Tissue", ["type"] = "explicit", }, [1330] = { - ["id"] = "explicit.stat_2036307261", - ["text"] = "Hits with this weapon have # to # Added Physical Damage per 1% Block Chance", + ["id"] = "explicit.stat_2954116742|13407", + ["text"] = "Allocates Heartbreaking", ["type"] = "explicit", }, [1331] = { - ["id"] = "explicit.stat_2975078312", - ["text"] = "Abyssal Monsters grant #% increased Experience", + ["id"] = "explicit.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", ["type"] = "explicit", }, [1332] = { - ["id"] = "explicit.stat_2975078312", - ["text"] = "Abyss Monsters in your Maps grant #% increased Experience", + ["id"] = "explicit.stat_2954116742|9896", + ["text"] = "Allocates Heartstopping Presence", ["type"] = "explicit", }, [1333] = { - ["id"] = "explicit.stat_1740229525", - ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["id"] = "explicit.stat_2954116742|372", + ["text"] = "Allocates Heatproof", ["type"] = "explicit", }, [1334] = { - ["id"] = "explicit.stat_4270096386", - ["text"] = "Hits have #% increased Critical Hit Chance against you", + ["id"] = "explicit.stat_2954116742|11826", + ["text"] = "Allocates Heavy Ammunition", ["type"] = "explicit", }, [1335] = { - ["id"] = "explicit.stat_1827854662", - ["text"] = "Area contains an additional Incubator Queen", + ["id"] = "explicit.stat_2954116742|59589", + ["text"] = "Allocates Heavy Armour", ["type"] = "explicit", }, [1336] = { - ["id"] = "explicit.stat_4215035940", - ["text"] = "On Corruption, Item gains two Enchantments", + ["id"] = "explicit.stat_2954116742|27491", + ["text"] = "Allocates Heavy Buffer", ["type"] = "explicit", }, [1337] = { - ["id"] = "explicit.stat_3398283493", - ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["id"] = "explicit.stat_2954116742|56997", + ["text"] = "Allocates Heavy Contact", ["type"] = "explicit", }, [1338] = { - ["id"] = "explicit.stat_145598447", - ["text"] = "Everlasting Sacrifice", + ["id"] = "explicit.stat_2954116742|15617", + ["text"] = "Allocates Heavy Drinker", ["type"] = "explicit", }, [1339] = { - ["id"] = "explicit.stat_2387539034", - ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["id"] = "explicit.stat_2954116742|4959", + ["text"] = "Allocates Heavy Frost", ["type"] = "explicit", }, [1340] = { - ["id"] = "explicit.stat_1726353460", - ["text"] = "Abyssal Wasting also applies #% to Lightning Resistance", + ["id"] = "explicit.stat_2954116742|41512", + ["text"] = "Allocates Heavy Weaponry", ["type"] = "explicit", }, [1341] = { - ["id"] = "explicit.stat_2422708892|25520", - ["text"] = "Passives in Radius of Resonance can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|48418", + ["text"] = "Allocates Hefty Unit", ["type"] = "explicit", }, [1342] = { - ["id"] = "explicit.stat_1955786041", - ["text"] = "Has # to # Physical damage, # to # per Boss's Face Broken", + ["id"] = "explicit.stat_2954116742|45777", + ["text"] = "Allocates Hidden Barb", ["type"] = "explicit", }, [1343] = { - ["id"] = "explicit.stat_3076483222|19846", - ["text"] = "Sacrifice up to 20 Artificer's Orbs to receive double on Trial completion", + ["id"] = "explicit.stat_2954116742|41935", + ["text"] = "Allocates Hide of the Bear", ["type"] = "explicit", }, [1344] = { - ["id"] = "explicit.stat_3979226081", - ["text"] = "Abyssal Wasting also applies #% to Cold Resistance", + ["id"] = "explicit.stat_2954116742|30456", + ["text"] = "Allocates High Alert", ["type"] = "explicit", }, [1345] = { - ["id"] = "explicit.stat_3138344128", - ["text"] = "Defend with 200% of Armour during effect", + ["id"] = "explicit.stat_2954116742|54805", + ["text"] = "Allocates Hindered Capabilities", ["type"] = "explicit", }, [1346] = { - ["id"] = "explicit.stat_1544773869", - ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", + ["id"] = "explicit.stat_2954116742|60273", + ["text"] = "Allocates Hindering Obstacles", ["type"] = "explicit", }, [1347] = { - ["id"] = "explicit.stat_3482326075", - ["text"] = "Remnants can be collected from #% further away", + ["id"] = "explicit.stat_2954116742|23078", + ["text"] = "Allocates Holy Protector", ["type"] = "explicit", }, [1348] = { - ["id"] = "explicit.stat_1590846356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + ["id"] = "explicit.stat_2954116742|48014", + ["text"] = "Allocates Honourless", ["type"] = "explicit", }, [1349] = { - ["id"] = "explicit.stat_3843734793", - ["text"] = "Non-Channelling Spells deal #% increased Damage per 100 maximum Mana", + ["id"] = "explicit.stat_2954116742|30395", + ["text"] = "Allocates Howling Beast", ["type"] = "explicit", }, [1350] = { - ["id"] = "explicit.stat_3258071686", - ["text"] = "Attacks have Added maximum Lightning Damage equal to #% of maximum Mana", + ["id"] = "explicit.stat_2954116742|4673", + ["text"] = "Allocates Hulking Smash", ["type"] = "explicit", }, [1351] = { - ["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", + ["id"] = "explicit.stat_2954116742|57471", + ["text"] = "Allocates Hunker Down", ["type"] = "explicit", }, [1352] = { - ["id"] = "explicit.stat_3552135623", - ["text"] = "Prevent #% of Damage from Deflected Hits", + ["id"] = "explicit.stat_2954116742|48617", + ["text"] = "Allocates Hunter", ["type"] = "explicit", }, [1353] = { - ["id"] = "explicit.stat_2590797182", - ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", + ["id"] = "explicit.stat_2954116742|33099", + ["text"] = "Allocates Hunter's Talisman", ["type"] = "explicit", }, [1354] = { - ["id"] = "explicit.stat_4245905059", - ["text"] = "Non-Channelling Spells have #% increased Magnitude of Ailments per 100 maximum Life", + ["id"] = "explicit.stat_2954116742|32655", + ["text"] = "Allocates Hunting Companion", ["type"] = "explicit", }, [1355] = { - ["id"] = "explicit.stat_234657505", - ["text"] = "Grants effect of Guided Freezing Shrine", + ["id"] = "explicit.stat_2954116742|55847", + ["text"] = "Allocates Ice Walls", ["type"] = "explicit", }, [1356] = { - ["id"] = "explicit.stat_2163764037", - ["text"] = "Gain Physical Thorns damage equal to #% - #% of maximum Life", + ["id"] = "explicit.stat_2954116742|4031", + ["text"] = "Allocates Icebreaker", ["type"] = "explicit", }, [1357] = { - ["id"] = "explicit.stat_2879778895", - ["text"] = "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", + ["id"] = "explicit.stat_2954116742|32932", + ["text"] = "Allocates Ichlotl's Inferno", ["type"] = "explicit", }, [1358] = { - ["id"] = "explicit.stat_1087787187", - ["text"] = "This item gains bonuses from Socketed Items as though it was a Body Armour", + ["id"] = "explicit.stat_2954116742|7341", + ["text"] = "Allocates Ignore Pain", ["type"] = "explicit", }, [1359] = { - ["id"] = "explicit.stat_232701452", - ["text"] = "#% increased Freeze Buildup if you've consumed an Power Charge Recently", + ["id"] = "explicit.stat_2954116742|1823", + ["text"] = "Allocates Illuminated Crown", ["type"] = "explicit", }, [1360] = { - ["id"] = "explicit.stat_3350232544", - ["text"] = "# metre to Dodge Roll distance if you haven't Dodge Rolled Recently", + ["id"] = "explicit.stat_2954116742|50912", + ["text"] = "Allocates Imbibed Power", ["type"] = "explicit", }, [1361] = { - ["id"] = "explicit.stat_451403019", - ["text"] = "Life Recovery other than Flasks cannot Recover Life to above Low Life", + ["id"] = "explicit.stat_2954116742|19156", + ["text"] = "Allocates Immaterial", ["type"] = "explicit", }, [1362] = { - ["id"] = "explicit.stat_1381474422", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", + ["id"] = "explicit.stat_2954116742|53030", + ["text"] = "Allocates Immolation", ["type"] = "explicit", }, [1363] = { - ["id"] = "explicit.stat_3143208761", - ["text"] = "#% increased Attributes", + ["id"] = "explicit.stat_2954116742|24062", + ["text"] = "Allocates Immortal Infamy", ["type"] = "explicit", }, [1364] = { - ["id"] = "explicit.stat_1282318918", - ["text"] = "# to Spirit while you have at least 200 Intelligence", + ["id"] = "explicit.stat_2954116742|51871", + ["text"] = "Allocates Immortal Thirst", ["type"] = "explicit", }, [1365] = { - ["id"] = "explicit.stat_2650053239", - ["text"] = "#% increased Cost of Skills for each 200 total Mana Spent Recently", + ["id"] = "explicit.stat_2954116742|16626", + ["text"] = "Allocates Impact Area", ["type"] = "explicit", }, [1366] = { - ["id"] = "explicit.stat_4157613372", - ["text"] = "Abyss Pits have #% chance to spawn all Monsters as at least Magic", + ["id"] = "explicit.stat_2954116742|64443", + ["text"] = "Allocates Impact Force", ["type"] = "explicit", }, [1367] = { - ["id"] = "explicit.stat_2035336006", - ["text"] = "Skills from Corrupted Gems have #% of Mana Costs Converted to Life Costs", + ["id"] = "explicit.stat_2954116742|46696", + ["text"] = "Allocates Impair", ["type"] = "explicit", }, [1368] = { - ["id"] = "explicit.stat_2725205297", - ["text"] = "#% increased Magnitude of Unholy Might buffs you grant", + ["id"] = "explicit.stat_2954116742|21748", + ["text"] = "Allocates Impending Doom", ["type"] = "explicit", }, [1369] = { - ["id"] = "explicit.stat_636464211", - ["text"] = "Excess Life Recovery added as Guard for # seconds", + ["id"] = "explicit.stat_2954116742|65023", + ["text"] = "Allocates Impenetrable Shell", ["type"] = "explicit", }, [1370] = { - ["id"] = "explicit.stat_1388221282", - ["text"] = "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", + ["id"] = "explicit.stat_2954116742|57379", + ["text"] = "Allocates In Your Face", ["type"] = "explicit", }, [1371] = { - ["id"] = "explicit.stat_1546604934", - ["text"] = "Gain #% of Evasion Rating as extra Armour", + ["id"] = "explicit.stat_2954116742|35028", + ["text"] = "Allocates In the Thick of It", ["type"] = "explicit", }, [1372] = { - ["id"] = "explicit.stat_3076483222|32821", - ["text"] = "Sacrifice up to 20 Blacksmith's Whetstones to receive double on Trial completion", + ["id"] = "explicit.stat_2954116742|62310", + ["text"] = "Allocates Incendiary", ["type"] = "explicit", }, [1373] = { - ["id"] = "explicit.stat_3413635271", - ["text"] = "#% increased Reservation Efficiency of Companion Skills", + ["id"] = "explicit.stat_2954116742|36630", + ["text"] = "Allocates Incision", ["type"] = "explicit", }, [1374] = { - ["id"] = "explicit.stat_2604619892", - ["text"] = "#% increased Duration of Elemental Ailments on Enemies", + ["id"] = "explicit.stat_2954116742|47270", + ["text"] = "Allocates Inescapable Cold", ["type"] = "explicit", }, [1375] = { - ["id"] = "explicit.stat_1354656031", - ["text"] = "Withered you inflict has infinite Duration", + ["id"] = "explicit.stat_2954116742|22817", + ["text"] = "Allocates Inevitable Rupture", ["type"] = "explicit", }, [1376] = { - ["id"] = "explicit.stat_347220474", - ["text"] = "#% increased Spell damage for each 200 total Mana you have Spent Recently", + ["id"] = "explicit.stat_2954116742|61354", + ["text"] = "Allocates Infernal Limit", ["type"] = "explicit", }, [1377] = { - ["id"] = "explicit.stat_3918757604", - ["text"] = "#% of Damage from Deflected Hits is taken from Damageable Companion's Life before you", + ["id"] = "explicit.stat_2954116742|57110", + ["text"] = "Allocates Infused Flesh", ["type"] = "explicit", }, [1378] = { - ["id"] = "explicit.stat_1493211587", - ["text"] = "#% chance to Poison on Hit with Spell Damage", + ["id"] = "explicit.stat_2954116742|38965", + ["text"] = "Allocates Infused Limits", ["type"] = "explicit", }, [1379] = { - ["id"] = "explicit.stat_2991563371", - ["text"] = "Abyssal Wasting also applies #% to Fire Resistance", + ["id"] = "explicit.stat_2954116742|24764", + ["text"] = "Allocates Infusing Power", ["type"] = "explicit", }, [1380] = { - ["id"] = "explicit.stat_825825364", - ["text"] = "Life Leech recovers based on your Chaos damage instead of Physical damage", + ["id"] = "explicit.stat_2954116742|59387", + ["text"] = "Allocates Infusion of Power", ["type"] = "explicit", }, [1381] = { - ["id"] = "explicit.stat_3040571529", - ["text"] = "#% increased Deflection Rating", + ["id"] = "explicit.stat_2954116742|39567", + ["text"] = "Allocates Ingenuity", ["type"] = "explicit", }, [1382] = { - ["id"] = "explicit.stat_3593063598", - ["text"] = "Mana Recovery other than Regeneration cannot Recover Mana", + ["id"] = "explicit.stat_2954116742|46683", + ["text"] = "Allocates Inherited Strength ", ["type"] = "explicit", }, [1383] = { - ["id"] = "explicit.stat_314741699", - ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", + ["id"] = "explicit.stat_2954116742|23227", + ["text"] = "Allocates Initiative", ["type"] = "explicit", }, [1384] = { - ["id"] = "explicit.stat_724806967", - ["text"] = "Enemies in your Presence have Exposure", + ["id"] = "explicit.stat_2954116742|30562", + ["text"] = "Allocates Inner Faith", ["type"] = "explicit", }, [1385] = { - ["id"] = "explicit.stat_2306588612", - ["text"] = "Repeatable Attacks with this Bow Repeat # time if no enemies are in your Presence", + ["id"] = "explicit.stat_2954116742|116", + ["text"] = "Allocates Insightfulness", ["type"] = "explicit", }, [1386] = { - ["id"] = "explicit.stat_2157692677", - ["text"] = "Attacks cost an additional #% of your maximum Mana", + ["id"] = "explicit.stat_2954116742|16150", + ["text"] = "Allocates Inspiring Ally", ["type"] = "explicit", }, [1387] = { - ["id"] = "explicit.stat_3161573445", - ["text"] = "Regenerate #% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", + ["id"] = "explicit.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", ["type"] = "explicit", }, [1388] = { - ["id"] = "explicit.stat_2422708892|41861", - ["text"] = "Passives in Radius of Trusted Kinship can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|43944", + ["text"] = "Allocates Instability", ["type"] = "explicit", }, [1389] = { - ["id"] = "explicit.stat_2626360934", - ["text"] = "Wind Skills which can be boosted by Elemental Ground Surfaces countas being boosted by Chilled Ground", + ["id"] = "explicit.stat_2954116742|9736", + ["text"] = "Allocates Insulated Treads", ["type"] = "explicit", }, [1390] = { - ["id"] = "explicit.stat_533542952", - ["text"] = "Inflict Elemental Exposure on Hit", + ["id"] = "explicit.stat_2954116742|48649", + ["text"] = "Allocates Insulating Hide", ["type"] = "explicit", }, [1391] = { - ["id"] = "explicit.stat_1000739259", - ["text"] = "Cannot be Light Stunned", + ["id"] = "explicit.stat_2954116742|46182", + ["text"] = "Allocates Intense Dose", ["type"] = "explicit", }, [1392] = { - ["id"] = "explicit.stat_448592698|53", - ["text"] = "+# to Level of all Mana Tempest Skills", + ["id"] = "explicit.stat_2954116742|65016", + ["text"] = "Allocates Intense Flames", ["type"] = "explicit", }, [1393] = { - ["id"] = "explicit.stat_448592698|138", - ["text"] = "+# to Level of all Orb of Storms Skills", + ["id"] = "explicit.stat_2954116742|7668", + ["text"] = "Allocates Internal Bleeding", ["type"] = "explicit", }, [1394] = { - ["id"] = "explicit.stat_448592698|131", - ["text"] = "+# to Level of all War Banner Skills", + ["id"] = "explicit.stat_2954116742|35369", + ["text"] = "Allocates Investing Energies", ["type"] = "explicit", }, [1395] = { - ["id"] = "explicit.stat_448592698|10", - ["text"] = "+# to Level of all Sacrifice Skills", + ["id"] = "explicit.stat_2954116742|41394", + ["text"] = "Allocates Invigorating Archon", ["type"] = "explicit", }, [1396] = { - ["id"] = "explicit.stat_1078309513", - ["text"] = "Invocated Spells deal #% increased Damage", + ["id"] = "explicit.stat_2954116742|50023", + ["text"] = "Allocates Invigorating Grandeur", ["type"] = "explicit", }, [1397] = { - ["id"] = "explicit.stat_448592698|42", - ["text"] = "+# to Level of all Shockchain Arrow Skills", + ["id"] = "explicit.stat_2954116742|28408", + ["text"] = "Allocates Invigorating Hate", ["type"] = "explicit", }, [1398] = { - ["id"] = "explicit.stat_448592698|86", - ["text"] = "+# to Level of all Artillery Ballista Skills", + ["id"] = "explicit.stat_2954116742|24491", + ["text"] = "Allocates Invocated Echoes", ["type"] = "explicit", }, [1399] = { - ["id"] = "explicit.stat_448592698|67", - ["text"] = "+# to Level of all Barrier Invocation Skills", + ["id"] = "explicit.stat_2954116742|51934", + ["text"] = "Allocates Invocated Efficiency", ["type"] = "explicit", }, [1400] = { - ["id"] = "explicit.stat_2422708892|9085", - ["text"] = "Passives in Radius of Crimson Assault can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|338", + ["text"] = "Allocates Invocated Limit", ["type"] = "explicit", }, [1401] = { - ["id"] = "explicit.stat_448592698|151", - ["text"] = "+# to Level of all Incendiary Shot Skills", + ["id"] = "explicit.stat_2954116742|31724", + ["text"] = "Allocates Iron Slippers", ["type"] = "explicit", }, [1402] = { - ["id"] = "explicit.stat_448592698|44", - ["text"] = "+# to Level of all Tornado Shot Skills", + ["id"] = "explicit.stat_2954116742|22626", + ["text"] = "Allocates Irreparable", ["type"] = "explicit", }, [1403] = { - ["id"] = "explicit.stat_448592698|31", - ["text"] = "+# to Level of all Bone Offering Skills", + ["id"] = "explicit.stat_2954116742|16618", + ["text"] = "Allocates Jack of all Trades", ["type"] = "explicit", }, [1404] = { - ["id"] = "explicit.stat_448592698|135", - ["text"] = "+# to Level of all Armour Breaker Skills", + ["id"] = "explicit.stat_2954116742|10265", + ["text"] = "Allocates Javelin", ["type"] = "explicit", }, [1405] = { - ["id"] = "explicit.stat_448592698|48", - ["text"] = "+# to Level of all Rain of Arrows Skills", + ["id"] = "explicit.stat_2954116742|37302", + ["text"] = "Allocates Kept at Bay", ["type"] = "explicit", }, [1406] = { - ["id"] = "explicit.stat_1751584857", - ["text"] = "Monsters inflict # Grasping Vine on Hit", + ["id"] = "explicit.stat_2954116742|56453", + ["text"] = "Allocates Killer Instinct", ["type"] = "explicit", }, [1407] = { - ["id"] = "explicit.stat_448592698|12", - ["text"] = "+# to Level of all Berserk Skills", + ["id"] = "explicit.stat_2954116742|26107", + ["text"] = "Allocates Kite Runner", ["type"] = "explicit", }, [1408] = { - ["id"] = "explicit.stat_2889664727", - ["text"] = "#% chance to Avoid Lightning Damage from Hits", + ["id"] = "explicit.stat_2954116742|2397", + ["text"] = "Allocates Last Stand", ["type"] = "explicit", }, [1409] = { - ["id"] = "explicit.stat_448592698|148", - ["text"] = "+# to Level of all Vine Arrow Skills", + ["id"] = "explicit.stat_2954116742|64659", + ["text"] = "Allocates Lasting Boons", ["type"] = "explicit", }, [1410] = { - ["id"] = "explicit.stat_448592698|120", - ["text"] = "+# to Level of all Herald of Ash Skills", + ["id"] = "explicit.stat_2954116742|58096", + ["text"] = "Allocates Lasting Incantations", ["type"] = "explicit", }, [1411] = { - ["id"] = "explicit.stat_3743375737", - ["text"] = "#% chance to Avoid Cold Damage from Hits", + ["id"] = "explicit.stat_2954116742|61741", + ["text"] = "Allocates Lasting Toxins", ["type"] = "explicit", }, [1412] = { - ["id"] = "explicit.stat_448592698|60", - ["text"] = "+# to Level of all Mantra of Destruction Skills", + ["id"] = "explicit.stat_2954116742|18496", + ["text"] = "Allocates Lasting Trauma", ["type"] = "explicit", }, [1413] = { - ["id"] = "explicit.stat_2342939473", - ["text"] = "#% of Current Energy Shield also grants Elemental Damage reduction", + ["id"] = "explicit.stat_2954116742|8607", + ["text"] = "Allocates Lavianga's Brew", ["type"] = "explicit", }, [1414] = { - ["id"] = "explicit.stat_448592698|137", - ["text"] = "+# to Level of all Infernal Cry Skills", + ["id"] = "explicit.stat_2954116742|45599", + ["text"] = "Allocates Lay Siege", ["type"] = "explicit", }, [1415] = { - ["id"] = "explicit.stat_3007552094", - ["text"] = "You have Unholy Might", + ["id"] = "explicit.stat_2954116742|40687", + ["text"] = "Allocates Lead by Example", ["type"] = "explicit", }, [1416] = { - ["id"] = "explicit.stat_448592698|63", - ["text"] = "+# to Level of all Blasphemy Skills", + ["id"] = "explicit.stat_2954116742|8531", + ["text"] = "Allocates Leaping Ambush", ["type"] = "explicit", }, [1417] = { - ["id"] = "explicit.stat_4274637468", - ["text"] = "Convert #% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%", + ["id"] = "explicit.stat_2954116742|51446", + ["text"] = "Allocates Leather Bound Gauntlets", ["type"] = "explicit", }, [1418] = { - ["id"] = "explicit.stat_448592698|71", - ["text"] = "+# to Level of all Time of Need Skills", + ["id"] = "explicit.stat_2954116742|63431", + ["text"] = "Allocates Leeching Toxins", ["type"] = "explicit", }, [1419] = { - ["id"] = "explicit.stat_275498888", - ["text"] = "Maximum Quality is #%", + ["id"] = "explicit.stat_2954116742|19644", + ["text"] = "Allocates Left Hand of Darkness", ["type"] = "explicit", }, [1420] = { - ["id"] = "explicit.stat_448592698|78", - ["text"] = "+# to Level of all Detonate Dead Skills", + ["id"] = "explicit.stat_2954116742|55375", + ["text"] = "Allocates Licking Wounds", ["type"] = "explicit", }, [1421] = { - ["id"] = "explicit.stat_448592698|85", - ["text"] = "+# to Level of all Wave of Frost Skills", + ["id"] = "explicit.stat_2954116742|31129", + ["text"] = "Allocates Lifelong Friend", ["type"] = "explicit", }, [1422] = { - ["id"] = "explicit.stat_448592698|147", - ["text"] = "+# to Level of all Snipe Skills", + ["id"] = "explicit.stat_2954116742|55131", + ["text"] = "Allocates Light on your Feet", ["type"] = "explicit", }, [1423] = { - ["id"] = "explicit.stat_448592698|43", - ["text"] = "+# to Level of all Emergency Reload Skills", + ["id"] = "explicit.stat_2954116742|13738", + ["text"] = "Allocates Lightning Quick", ["type"] = "explicit", }, [1424] = { - ["id"] = "explicit.stat_1207006772", - ["text"] = "# to Deflection Rating per 50 missing Energy Shield", + ["id"] = "explicit.stat_2954116742|44566", + ["text"] = "Allocates Lightning Rod", ["type"] = "explicit", }, [1425] = { - ["id"] = "explicit.stat_448592698|124", - ["text"] = "+# to Level of all Ghost Dance Skills", + ["id"] = "explicit.stat_2954116742|56063", + ["text"] = "Allocates Lingering Horror", ["type"] = "explicit", }, [1426] = { - ["id"] = "explicit.stat_448592698|157", - ["text"] = "+# to Level of all Frost Bomb Skills", + ["id"] = "explicit.stat_2954116742|16499", + ["text"] = "Allocates Lingering Whispers", ["type"] = "explicit", }, [1427] = { - ["id"] = "explicit.stat_448592698|56", - ["text"] = "+# to Level of all Detonating Arrow Skills", + ["id"] = "explicit.stat_2954116742|62887", + ["text"] = "Allocates Living Death", ["type"] = "explicit", }, [1428] = { - ["id"] = "explicit.stat_448592698|7", - ["text"] = "+# to Level of all Charge Regulation Skills", + ["id"] = "explicit.stat_2954116742|31745", + ["text"] = "Allocates Lockdown", ["type"] = "explicit", }, [1429] = { - ["id"] = "explicit.stat_448592698|54", - ["text"] = "+# to Level of all Oil Grenade Skills", + ["id"] = "explicit.stat_2954116742|56999", + ["text"] = "Allocates Locked On", ["type"] = "explicit", }, [1430] = { - ["id"] = "explicit.stat_448592698|108", - ["text"] = "+# to Level of all Toxic Growth Skills", + ["id"] = "explicit.stat_2954116742|12964", + ["text"] = "Allocates Lone Warrior", ["type"] = "explicit", }, [1431] = { - ["id"] = "explicit.stat_448592698|96", - ["text"] = "+# to Level of all Voltaic Mark Skills", + ["id"] = "explicit.stat_2954116742|31826", + ["text"] = "Allocates Long Distance Relationship", ["type"] = "explicit", }, [1432] = { - ["id"] = "explicit.stat_448592698|79", - ["text"] = "+# to Level of all Sniper's Mark Skills", + ["id"] = "explicit.stat_2954116742|13542", + ["text"] = "Allocates Loose Flesh", ["type"] = "explicit", }, [1433] = { - ["id"] = "explicit.stat_448592698|29", - ["text"] = "+# to Level of all Firestorm Skills", + ["id"] = "explicit.stat_2954116742|33240", + ["text"] = "Allocates Lord of Horrors", ["type"] = "explicit", }, [1434] = { - ["id"] = "explicit.stat_448592698|175", - ["text"] = "+# to Level of all Permafrost Bolts Skills", + ["id"] = "explicit.stat_2954116742|42959", + ["text"] = "Allocates Low Tolerance", ["type"] = "explicit", }, [1435] = { - ["id"] = "explicit.stat_448592698|72", - ["text"] = "+# to Level of all Elemental Invocation Skills", + ["id"] = "explicit.stat_2954116742|51891", + ["text"] = "Allocates Lucidity", ["type"] = "explicit", }, [1436] = { - ["id"] = "explicit.stat_448592698|68", - ["text"] = "+# to Level of all Lingering Illusion Skills", + ["id"] = "explicit.stat_2954116742|59303", + ["text"] = "Allocates Lucky Rabbit Foot", ["type"] = "explicit", }, [1437] = { - ["id"] = "explicit.stat_448592698|110", - ["text"] = "+# to Level of all Electrocuting Arrow Skills", + ["id"] = "explicit.stat_2954116742|1104", + ["text"] = "Allocates Lust for Power", ["type"] = "explicit", }, [1438] = { - ["id"] = "explicit.stat_42242677", - ["text"] = "#% chance to Avoid Fire Damage from Hits", + ["id"] = "explicit.stat_2954116742|27009", + ["text"] = "Allocates Lust for Sacrifice", ["type"] = "explicit", }, [1439] = { - ["id"] = "explicit.stat_448592698|132", - ["text"] = "+# to Level of all Withering Presence Skills", + ["id"] = "explicit.stat_2954116742|44952", + ["text"] = "Allocates Made to Last", ["type"] = "explicit", }, [1440] = { - ["id"] = "explicit.stat_448592698|9", - ["text"] = "+# to Level of all Reaper's Invocation Skills", + ["id"] = "explicit.stat_2954116742|23738", + ["text"] = "Allocates Madness in the Bones", ["type"] = "explicit", }, [1441] = { - ["id"] = "explicit.stat_448592698|143", - ["text"] = "+# to Level of all Staggering Palm Skills", + ["id"] = "explicit.stat_2954116742|41580", + ["text"] = "Allocates Maiming Strike", ["type"] = "explicit", }, [1442] = { - ["id"] = "explicit.stat_448592698|33", - ["text"] = "+# to Level of all Seismic Cry Skills", + ["id"] = "explicit.stat_2954116742|37742", + ["text"] = "Allocates Manifold Method", ["type"] = "explicit", }, [1443] = { - ["id"] = "explicit.stat_448592698|45", - ["text"] = "+# to Level of all Frost Wall Skills", + ["id"] = "explicit.stat_2954116742|64050", + ["text"] = "Allocates Marathon Runner", ["type"] = "explicit", }, [1444] = { - ["id"] = "explicit.stat_448592698|159", - ["text"] = "+# to Level of all Contagion Skills", + ["id"] = "explicit.stat_2954116742|44756", + ["text"] = "Allocates Marked Agility", ["type"] = "explicit", }, [1445] = { - ["id"] = "explicit.stat_448592698|87", - ["text"] = "+# to Level of all Voltaic Grenade Skills", + ["id"] = "explicit.stat_2954116742|36976", + ["text"] = "Allocates Marked for Death", ["type"] = "explicit", }, [1446] = { - ["id"] = "explicit.stat_448592698|76", - ["text"] = "+# to Level of all Combat Frenzy Skills", + ["id"] = "explicit.stat_2954116742|63830", + ["text"] = "Allocates Marked for Sickness", ["type"] = "explicit", }, [1447] = { - ["id"] = "explicit.stat_448592698|70", - ["text"] = "+# to Level of all Defiance Banner Skills", + ["id"] = "explicit.stat_2954116742|2113", + ["text"] = "Allocates Martial Artistry", ["type"] = "explicit", }, [1448] = { - ["id"] = "explicit.stat_448592698|22", - ["text"] = "+# to Level of all Soul Offering Skills", + ["id"] = "explicit.stat_2954116742|27108", + ["text"] = "Allocates Mass Hysteria", ["type"] = "explicit", }, [1449] = { - ["id"] = "explicit.stat_448592698|146", - ["text"] = "+# to Level of all Stormcaller Arrow Skills", + ["id"] = "explicit.stat_2954116742|34340", + ["text"] = "Allocates Mass Rejuvenation", ["type"] = "explicit", }, [1450] = { - ["id"] = "explicit.stat_448592698|82", - ["text"] = "+# to Level of all Conductivity Skills", + ["id"] = "explicit.stat_2954116742|30341", + ["text"] = "Allocates Master Fletching", ["type"] = "explicit", }, [1451] = { - ["id"] = "explicit.stat_448592698|93", - ["text"] = "+# to Level of all Glacial Bolt Skills", + ["id"] = "explicit.stat_2954116742|40345", + ["text"] = "Allocates Master of Hexes", ["type"] = "explicit", }, [1452] = { - ["id"] = "explicit.stat_448592698|104", - ["text"] = "+# to Level of all Gas Grenade Skills", + ["id"] = "explicit.stat_2954116742|27513", + ["text"] = "Allocates Material Solidification", ["type"] = "explicit", }, [1453] = { - ["id"] = "explicit.stat_448592698|2", - ["text"] = "+# to Level of all Cast on Dodge Skills", + ["id"] = "explicit.stat_2954116742|11886", + ["text"] = "Allocates Mauling Stuns", ["type"] = "explicit", }, [1454] = { - ["id"] = "explicit.stat_448592698|51", - ["text"] = "+# to Level of all Siege Ballista Skills", + ["id"] = "explicit.stat_2954116742|25620", + ["text"] = "Allocates Meat Recycling", ["type"] = "explicit", }, [1455] = { - ["id"] = "explicit.stat_448592698|165", - ["text"] = "+# to Level of all Escape Shot Skills", + ["id"] = "explicit.stat_2954116742|3215", + ["text"] = "Allocates Melding", ["type"] = "explicit", }, [1456] = { - ["id"] = "explicit.stat_448592698|88", - ["text"] = "+# to Level of all Siphoning Strike Skills", + ["id"] = "explicit.stat_2954116742|43939", + ["text"] = "Allocates Melting Flames", ["type"] = "explicit", }, [1457] = { - ["id"] = "explicit.stat_448592698|100", - ["text"] = "+# to Level of all Barrage Skills", + ["id"] = "explicit.stat_2954116742|9652", + ["text"] = "Allocates Mending Deflection", ["type"] = "explicit", }, [1458] = { - ["id"] = "explicit.stat_448592698|105", - ["text"] = "+# to Level of all Pain Offering Skills", + ["id"] = "explicit.stat_2954116742|16466", + ["text"] = "Allocates Mental Alacrity", ["type"] = "explicit", }, [1459] = { - ["id"] = "explicit.stat_448592698|4", - ["text"] = "+# to Level of all Dread Banner Skills", + ["id"] = "explicit.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", ["type"] = "explicit", }, [1460] = { - ["id"] = "explicit.stat_448592698|14", - ["text"] = "+# to Level of all Temporal Chains Skills", + ["id"] = "explicit.stat_2954116742|24120", + ["text"] = "Allocates Mental Toughness", ["type"] = "explicit", }, [1461] = { - ["id"] = "explicit.stat_448592698|75", - ["text"] = "+# to Level of all Herald of Plague Skills", + ["id"] = "explicit.stat_2954116742|45632", + ["text"] = "Allocates Mind Eraser", ["type"] = "explicit", }, [1462] = { - ["id"] = "explicit.stat_448592698|166", - ["text"] = "+# to Level of all Glacial Cascade Skills", + ["id"] = "explicit.stat_2954116742|11392", + ["text"] = "Allocates Molten Being", ["type"] = "explicit", }, [1463] = { - ["id"] = "explicit.stat_3620731914", - ["text"] = "Attacks with this Weapon gain #% of Physical damage as Extra damage of each Element", + ["id"] = "explicit.stat_2954116742|51868", + ["text"] = "Allocates Molten Carapace", ["type"] = "explicit", }, [1464] = { - ["id"] = "explicit.stat_448592698|18", - ["text"] = "+# to Level of all Eye of Winter Skills", + ["id"] = "explicit.stat_2954116742|36100", + ["text"] = "Allocates Molten Claw", ["type"] = "explicit", }, [1465] = { - ["id"] = "explicit.stat_448592698|36", - ["text"] = "+# to Level of all Supercharged Slam Skills", + ["id"] = "explicit.stat_2954116742|17548", + ["text"] = "Allocates Moment of Truth", ["type"] = "explicit", }, [1466] = { - ["id"] = "explicit.stat_2818518881", - ["text"] = "#% increased Spell Damage per 10 Intelligence", + ["id"] = "explicit.stat_2954116742|63579", + ["text"] = "Allocates Momentum", ["type"] = "explicit", }, [1467] = { - ["id"] = "explicit.stat_448592698|5", - ["text"] = "+# to Level of all Attrition Skills", + ["id"] = "explicit.stat_2954116742|47560", + ["text"] = "Allocates Multi Shot", ["type"] = "explicit", }, [1468] = { - ["id"] = "explicit.stat_448592698|95", - ["text"] = "+# to Level of all Freezing Mark Skills", + ["id"] = "explicit.stat_2954116742|8810", + ["text"] = "Allocates Multitasking", ["type"] = "explicit", }, [1469] = { - ["id"] = "explicit.stat_448592698|62", - ["text"] = "+# to Level of all Hand of Chayula Skills", + ["id"] = "explicit.stat_2954116742|52764", + ["text"] = "Allocates Mystical Rage", ["type"] = "explicit", }, [1470] = { - ["id"] = "explicit.stat_448592698|112", - ["text"] = "+# to Level of all Perfect Strike Skills", + ["id"] = "explicit.stat_2954116742|934", + ["text"] = "Allocates Natural Immunity", ["type"] = "explicit", }, [1471] = { - ["id"] = "explicit.stat_448592698|163", - ["text"] = "+# to Level of all Boneshatter Skills", + ["id"] = "explicit.stat_2954116742|53265", + ["text"] = "Allocates Nature's Bite", ["type"] = "explicit", }, [1472] = { - ["id"] = "explicit.stat_448592698|59", - ["text"] = "+# to Level of all Stormblast Bolts Skills", + ["id"] = "explicit.stat_2954116742|4709", + ["text"] = "Allocates Near Sighted", ["type"] = "explicit", }, [1473] = { - ["id"] = "explicit.stat_448592698|69", - ["text"] = "+# to Level of all Cast on Minion Death Skills", + ["id"] = "explicit.stat_2954116742|35581", + ["text"] = "Allocates Near at Hand", ["type"] = "explicit", }, [1474] = { - ["id"] = "explicit.stat_448592698|115", - ["text"] = "+# to Level of all Rapid Shot Skills", + ["id"] = "explicit.stat_2954116742|10499", + ["text"] = "Allocates Necromantic Ward", ["type"] = "explicit", }, [1475] = { - ["id"] = "explicit.stat_448592698|52", - ["text"] = "+# to Level of all Volcanic Fissure Skills", + ["id"] = "explicit.stat_2954116742|11376", + ["text"] = "Allocates Necrotic Touch", ["type"] = "explicit", }, [1476] = { - ["id"] = "explicit.stat_448592698|28", - ["text"] = "+# to Level of all Gathering Storm Skills", + ["id"] = "explicit.stat_2954116742|59541", + ["text"] = "Allocates Necrotised Flesh", ["type"] = "explicit", }, [1477] = { - ["id"] = "explicit.stat_448592698|46", - ["text"] = "+# to Level of all Despair Skills", + ["id"] = "explicit.stat_2954116742|40292", + ["text"] = "Allocates Nimble Strength", ["type"] = "explicit", }, [1478] = { - ["id"] = "explicit.stat_448592698|173", - ["text"] = "+# to Level of all Fragmentation Rounds Skills", + ["id"] = "explicit.stat_2954116742|37266", + ["text"] = "Allocates Nourishing Ally", ["type"] = "explicit", }, [1479] = { - ["id"] = "explicit.stat_448592698|102", - ["text"] = "+# to Level of all Wind Blast Skills", + ["id"] = "explicit.stat_2954116742|60992", + ["text"] = "Allocates Nurturing Guardian", ["type"] = "explicit", }, [1480] = { - ["id"] = "explicit.stat_448592698|30", - ["text"] = "+# to Level of all Ball Lightning Skills", + ["id"] = "explicit.stat_2954116742|42036", + ["text"] = "Allocates Off-Balancing Retort", ["type"] = "explicit", }, [1481] = { - ["id"] = "explicit.stat_448592698|94", - ["text"] = "+# to Level of all Storm Wave Skills", + ["id"] = "explicit.stat_2954116742|35918", + ["text"] = "Allocates One For All", ["type"] = "explicit", }, [1482] = { - ["id"] = "explicit.stat_448592698|125", - ["text"] = "+# to Level of all Mana Remnants Skills", + ["id"] = "explicit.stat_2954116742|44753", + ["text"] = "Allocates One With Flame", ["type"] = "explicit", }, [1483] = { - ["id"] = "explicit.stat_448592698|74", - ["text"] = "+# to Level of all Overwhelming Presence Skills", + ["id"] = "explicit.stat_2954116742|34316", + ["text"] = "Allocates One with the River", ["type"] = "explicit", }, [1484] = { - ["id"] = "explicit.stat_448592698|122", - ["text"] = "+# to Level of all Herald of Thunder Skills", + ["id"] = "explicit.stat_2954116742|9444", + ["text"] = "Allocates One with the Storm", ["type"] = "explicit", }, [1485] = { - ["id"] = "explicit.stat_448592698|142", - ["text"] = "+# to Level of all Flash Grenade Skills", + ["id"] = "explicit.stat_2954116742|52199", + ["text"] = "Allocates Overexposure", ["type"] = "explicit", }, [1486] = { - ["id"] = "explicit.stat_448592698|84", - ["text"] = "+# to Level of all Earthshatter Skills", + ["id"] = "explicit.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", ["type"] = "explicit", }, [1487] = { - ["id"] = "explicit.stat_448592698|8", - ["text"] = "+# to Level of all Alchemist's Boon Skills", + ["id"] = "explicit.stat_2954116742|42390", + ["text"] = "Allocates Overheating Blow", ["type"] = "explicit", }, [1488] = { - ["id"] = "explicit.stat_448592698|27", - ["text"] = "+# to Level of all Magnetic Salvo Skills", + ["id"] = "explicit.stat_2954116742|47635", + ["text"] = "Allocates Overload", ["type"] = "explicit", }, [1489] = { - ["id"] = "explicit.stat_448592698|118", - ["text"] = "+# to Level of all Freezing Salvo Skills", + ["id"] = "explicit.stat_2954116742|25513", + ["text"] = "Allocates Overwhelm", ["type"] = "explicit", }, [1490] = { - ["id"] = "explicit.stat_448592698|97", - ["text"] = "+# to Level of all Raise Zombie Skills", + ["id"] = "explicit.stat_2954116742|57388", + ["text"] = "Allocates Overwhelming Strike", ["type"] = "explicit", }, [1491] = { - ["id"] = "explicit.stat_448592698|83", - ["text"] = "+# to Level of all Vulnerability Skills", + ["id"] = "explicit.stat_2954116742|10295", + ["text"] = "Allocates Overzealous", ["type"] = "explicit", }, [1492] = { - ["id"] = "explicit.stat_448592698|24", - ["text"] = "+# to Level of all Siege Cascade Skills", + ["id"] = "explicit.stat_2954116742|21784", + ["text"] = "Allocates Pack Encouragement", ["type"] = "explicit", }, [1493] = { - ["id"] = "explicit.stat_263495202", - ["text"] = "#% increased Cost Efficiency", + ["id"] = "explicit.stat_2954116742|20686", + ["text"] = "Allocates Paragon", ["type"] = "explicit", }, [1494] = { - ["id"] = "explicit.stat_1404607671", - ["text"] = "Soul Eater", + ["id"] = "explicit.stat_2954116742|24766", + ["text"] = "Allocates Paranoia", ["type"] = "explicit", }, [1495] = { - ["id"] = "explicit.stat_448592698|6", - ["text"] = "+# to Level of all Elemental Conflux Skills", + ["id"] = "explicit.stat_2954116742|56016", + ["text"] = "Allocates Passthrough Rounds", ["type"] = "explicit", }, [1496] = { - ["id"] = "explicit.stat_448592698|150", - ["text"] = "+# to Level of all High Velocity Rounds Skills", + ["id"] = "explicit.stat_2954116742|62230", + ["text"] = "Allocates Patient Barrier", ["type"] = "explicit", }, [1497] = { - ["id"] = "explicit.stat_448592698|171", - ["text"] = "+# to Level of all Poisonburst Arrow Skills", + ["id"] = "explicit.stat_2954116742|60404", + ["text"] = "Allocates Perfect Opportunity", ["type"] = "explicit", }, [1498] = { - ["id"] = "explicit.stat_2257118425", - ["text"] = "Vaal Pact", + ["id"] = "explicit.stat_2954116742|49661", + ["text"] = "Allocates Perfectly Placed Knife", ["type"] = "explicit", }, [1499] = { - ["id"] = "explicit.stat_2972244965", - ["text"] = "#% increased Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently", + ["id"] = "explicit.stat_2954116742|17330", + ["text"] = "Allocates Perforation", ["type"] = "explicit", }, [1500] = { - ["id"] = "explicit.stat_448592698|90", - ["text"] = "+# to Level of all Profane Ritual Skills", + ["id"] = "explicit.stat_2954116742|2863", + ["text"] = "Allocates Perpetual Freeze", ["type"] = "explicit", }, [1501] = { - ["id"] = "explicit.stat_448592698|170", - ["text"] = "+# to Level of all Unearth Skills", + ["id"] = "explicit.stat_2954116742|34308", + ["text"] = "Allocates Personal Touch", ["type"] = "explicit", }, [1502] = { - ["id"] = "explicit.stat_448592698|172", - ["text"] = "+# to Level of all Lightning Rod Skills", + ["id"] = "explicit.stat_2954116742|7651", + ["text"] = "Allocates Pierce the Heart", ["type"] = "explicit", }, [1503] = { - ["id"] = "explicit.stat_448592698|40", - ["text"] = "+# to Level of all Hailstorm Rounds Skills", + ["id"] = "explicit.stat_2954116742|17260", + ["text"] = "Allocates Piercing Claw", ["type"] = "explicit", }, [1504] = { - ["id"] = "explicit.stat_448592698|35", - ["text"] = "+# to Level of all Whirling Assault Skills", + ["id"] = "explicit.stat_2954116742|4534", + ["text"] = "Allocates Piercing Shot", ["type"] = "explicit", }, [1505] = { - ["id"] = "explicit.stat_448592698|73", - ["text"] = "+# to Level of all Shard Scavenger Skills", + ["id"] = "explicit.stat_2954116742|51129", + ["text"] = "Allocates Pile On", ["type"] = "explicit", }, [1506] = { - ["id"] = "explicit.stat_448592698|26", - ["text"] = "+# to Level of all Cluster Grenade Skills", + ["id"] = "explicit.stat_2954116742|60083", + ["text"] = "Allocates Pin and Run", ["type"] = "explicit", }, [1507] = { - ["id"] = "explicit.stat_448592698|114", - ["text"] = "+# to Level of all Molten Blast Skills", + ["id"] = "explicit.stat_2954116742|4447", + ["text"] = "Allocates Pin their Motivation", ["type"] = "explicit", }, [1508] = { - ["id"] = "explicit.stat_3452816629", - ["text"] = "1% more Unarmed Damage per # Strength", + ["id"] = "explicit.stat_2954116742|16816", + ["text"] = "Allocates Pinpoint Shot", ["type"] = "explicit", }, [1509] = { - ["id"] = "explicit.stat_448592698|116", - ["text"] = "+# to Level of all Ice Shards Skills", + ["id"] = "explicit.stat_2954116742|38111", + ["text"] = "Allocates Pliable Flesh", ["type"] = "explicit", }, [1510] = { - ["id"] = "explicit.stat_448592698|174", - ["text"] = "+# to Level of all Armour Piercing Rounds Skills", + ["id"] = "explicit.stat_2954116742|58426", + ["text"] = "Allocates Pocket Sand", ["type"] = "explicit", }, [1511] = { - ["id"] = "explicit.stat_448592698|167", - ["text"] = "+# to Level of all Killing Palm Skills", + ["id"] = "explicit.stat_2954116742|27950", + ["text"] = "Allocates Polished Iron", ["type"] = "explicit", }, [1512] = { - ["id"] = "explicit.stat_448592698|49", - ["text"] = "+# to Level of all Sunder Skills", + ["id"] = "explicit.stat_2954116742|57047", + ["text"] = "Allocates Polymathy", ["type"] = "explicit", }, [1513] = { - ["id"] = "explicit.stat_448592698|111", - ["text"] = "+# to Level of all Snap Skills", + ["id"] = "explicit.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", ["type"] = "explicit", }, [1514] = { - ["id"] = "explicit.stat_448592698|80", - ["text"] = "+# to Level of all Flammability Skills", + ["id"] = "explicit.stat_2954116742|15083", + ["text"] = "Allocates Power Conduction", ["type"] = "explicit", }, [1515] = { - ["id"] = "explicit.stat_448592698|133", - ["text"] = "+# to Level of all Shield Charge Skills", + ["id"] = "explicit.stat_2954116742|6178", + ["text"] = "Allocates Power Shots", ["type"] = "explicit", }, [1516] = { - ["id"] = "explicit.stat_448592698|152", - ["text"] = "+# to Level of all Vaulting Impact Skills", + ["id"] = "explicit.stat_2954116742|49150", + ["text"] = "Allocates Precise Invocations", ["type"] = "explicit", }, [1517] = { - ["id"] = "explicit.stat_448592698|61", - ["text"] = "+# to Level of all Ice Shot Skills", + ["id"] = "explicit.stat_2954116742|13895", + ["text"] = "Allocates Precise Point", ["type"] = "explicit", }, [1518] = { - ["id"] = "explicit.stat_448592698|128", - ["text"] = "+# to Level of all Wind Dancer Skills", + ["id"] = "explicit.stat_2954116742|34425", + ["text"] = "Allocates Precise Volatility", ["type"] = "explicit", }, [1519] = { - ["id"] = "explicit.stat_448592698|47", - ["text"] = "+# to Level of all Lightning Warp Skills", + ["id"] = "explicit.stat_2954116742|19337", + ["text"] = "Allocates Precision Salvo", ["type"] = "explicit", }, [1520] = { - ["id"] = "explicit.stat_448592698|155", - ["text"] = "+# to Level of all Falling Thunder Skills", + ["id"] = "explicit.stat_2954116742|21380", + ["text"] = "Allocates Preemptive Strike", ["type"] = "explicit", }, [1521] = { - ["id"] = "explicit.stat_448592698|17", - ["text"] = "+# to Level of all Skeletal Cleric Skills", + ["id"] = "explicit.stat_2954116742|37872", + ["text"] = "Allocates Presence Present", ["type"] = "explicit", }, [1522] = { - ["id"] = "explicit.stat_448592698|129", - ["text"] = "+# to Level of all Grim Feast Skills", + ["id"] = "explicit.stat_2954116742|32951", + ["text"] = "Allocates Preservation", ["type"] = "explicit", }, [1523] = { - ["id"] = "explicit.stat_448592698|109", - ["text"] = "+# to Level of all Solar Orb Skills", + ["id"] = "explicit.stat_2954116742|28329", + ["text"] = "Allocates Pressure Points", ["type"] = "explicit", }, [1524] = { - ["id"] = "explicit.stat_448592698|64", - ["text"] = "+# to Level of all Cast on Shock Skills", + ["id"] = "explicit.stat_2954116742|9908", + ["text"] = "Allocates Price of Freedom", ["type"] = "explicit", }, [1525] = { - ["id"] = "explicit.stat_448592698|15", - ["text"] = "+# to Level of all Flameblast Skills", + ["id"] = "explicit.stat_2954116742|32071", + ["text"] = "Allocates Primal Growth", ["type"] = "explicit", }, [1526] = { - ["id"] = "explicit.stat_448592698|164", - ["text"] = "+# to Level of all Rolling Slam Skills", + ["id"] = "explicit.stat_2954116742|31364", + ["text"] = "Allocates Primal Protection", ["type"] = "explicit", }, [1527] = { - ["id"] = "explicit.stat_4097212302", - ["text"] = "# to maximum number of Elemental Infusions", + ["id"] = "explicit.stat_2954116742|28892", + ["text"] = "Allocates Primal Rage", ["type"] = "explicit", }, [1528] = { - ["id"] = "explicit.stat_57896763", - ["text"] = "# metre to Dodge Roll distance if you've Dodge Rolled Recently", + ["id"] = "explicit.stat_2954116742|50884", + ["text"] = "Allocates Primal Sundering", ["type"] = "explicit", }, [1529] = { - ["id"] = "explicit.stat_448592698|1", - ["text"] = "+# to Level of all Cast on Critical Skills", + ["id"] = "explicit.stat_2954116742|26356", + ["text"] = "Allocates Primed to Explode", ["type"] = "explicit", }, [1530] = { - ["id"] = "explicit.stat_3926910174", - ["text"] = "# to # added Physical Thorns damage per Runic Plate", + ["id"] = "explicit.stat_2954116742|62034", + ["text"] = "Allocates Prism Guard", ["type"] = "explicit", }, [1531] = { - ["id"] = "explicit.stat_2480962043", - ["text"] = "Skills which require Glory generate # Glory every 2 seconds", + ["id"] = "explicit.stat_2954116742|54814", + ["text"] = "Allocates Profane Commander", ["type"] = "explicit", }, [1532] = { - ["id"] = "explicit.stat_448592698|77", - ["text"] = "+# to Level of all Leap Slam Skills", + ["id"] = "explicit.stat_2954116742|58397", + ["text"] = "Allocates Proficiency", ["type"] = "explicit", }, [1533] = { - ["id"] = "explicit.stat_448592698|119", - ["text"] = "+# to Level of all Arctic Armour Skills", + ["id"] = "explicit.stat_2954116742|19236", + ["text"] = "Allocates Projectile Bulwark", ["type"] = "explicit", }, [1534] = { - ["id"] = "explicit.stat_448592698|20", - ["text"] = "+# to Level of all Spiral Volley Skills", + ["id"] = "explicit.stat_2954116742|45874", + ["text"] = "Allocates Proliferating Weeds", ["type"] = "explicit", }, [1535] = { - ["id"] = "explicit.stat_448592698|169", - ["text"] = "+# to Level of all Frozen Locus Skills", + ["id"] = "explicit.stat_2954116742|19442", + ["text"] = "Allocates Prolonged Assault", ["type"] = "explicit", }, [1536] = { - ["id"] = "explicit.stat_448592698|121", - ["text"] = "+# to Level of all Herald of Ice Skills", + ["id"] = "explicit.stat_2954116742|49550", + ["text"] = "Allocates Prolonged Fury", ["type"] = "explicit", }, [1537] = { - ["id"] = "explicit.stat_4159551976", - ["text"] = "Your Critical Hit Chance cannot be Rerolled", + ["id"] = "explicit.stat_2954116742|54998", + ["text"] = "Allocates Protraction", ["type"] = "explicit", }, [1538] = { - ["id"] = "explicit.stat_448592698|134", - ["text"] = "+# to Level of all Enfeeble Skills", + ["id"] = "explicit.stat_2954116742|38614", + ["text"] = "Allocates Psychic Fragmentation", ["type"] = "explicit", }, [1539] = { - ["id"] = "explicit.stat_448592698|81", - ["text"] = "+# to Level of all Hypothermia Skills", + ["id"] = "explicit.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", ["type"] = "explicit", }, [1540] = { - ["id"] = "explicit.stat_1237409891", - ["text"] = "Cannot be Used manually", + ["id"] = "explicit.stat_2954116742|55149", + ["text"] = "Allocates Pure Chaos", ["type"] = "explicit", }, [1541] = { - ["id"] = "explicit.stat_448592698|162", - ["text"] = "+# to Level of all Flame Wall Skills", + ["id"] = "explicit.stat_2954116742|28975", + ["text"] = "Allocates Pure Power", ["type"] = "explicit", }, [1542] = { - ["id"] = "explicit.stat_448592698|127", - ["text"] = "+# to Level of all Raging Spirits Skills", + ["id"] = "explicit.stat_2954116742|6229", + ["text"] = "Allocates Push the Advantage", ["type"] = "explicit", }, [1543] = { - ["id"] = "explicit.stat_448592698|58", - ["text"] = "+# to Level of all Dark Effigy Skills", + ["id"] = "explicit.stat_2954116742|33542", + ["text"] = "Allocates Quick Fingers", ["type"] = "explicit", }, [1544] = { - ["id"] = "explicit.stat_448592698|168", - ["text"] = "+# to Level of all Explosive Grenade Skills", + ["id"] = "explicit.stat_2954116742|48240", + ["text"] = "Allocates Quick Recovery", ["type"] = "explicit", }, [1545] = { - ["id"] = "explicit.stat_448592698|55", - ["text"] = "+# to Level of all Charged Staff Skills", + ["id"] = "explicit.stat_2954116742|55450", + ["text"] = "Allocates Rallying Form", ["type"] = "explicit", }, [1546] = { - ["id"] = "explicit.stat_448592698|38", - ["text"] = "+# to Level of all Shattering Palm Skills", + ["id"] = "explicit.stat_2954116742|43791", + ["text"] = "Allocates Rallying Icon", ["type"] = "explicit", }, [1547] = { - ["id"] = "explicit.stat_448592698|65", - ["text"] = "+# to Level of all Cast on Freeze Skills", + ["id"] = "explicit.stat_2954116742|64119", + ["text"] = "Allocates Rapid Reload", ["type"] = "explicit", }, [1548] = { - ["id"] = "explicit.stat_4123841473", - ["text"] = "Lightning Skills Chain # times", + ["id"] = "explicit.stat_2954116742|7604", + ["text"] = "Allocates Rapid Strike", ["type"] = "explicit", }, [1549] = { - ["id"] = "explicit.stat_448592698|113", - ["text"] = "+# to Level of all Resonating Shield Skills", + ["id"] = "explicit.stat_2954116742|62185", + ["text"] = "Allocates Rattled", ["type"] = "explicit", }, [1550] = { - ["id"] = "explicit.stat_448592698|66", - ["text"] = "+# to Level of all Cast on Ignite Skills", + ["id"] = "explicit.stat_2954116742|3567", + ["text"] = "Allocates Raw Mana", ["type"] = "explicit", }, [1551] = { - ["id"] = "explicit.stat_4287372938", - ["text"] = "Bear Skills Convert #% of Physical Damage to Fire Damage", + ["id"] = "explicit.stat_2954116742|17372", + ["text"] = "Allocates Reaching Strike", ["type"] = "explicit", }, [1552] = { - ["id"] = "explicit.stat_448592698|57", - ["text"] = "+# to Level of all Fireball Skills", + ["id"] = "explicit.stat_2954116742|10602", + ["text"] = "Allocates Reaving", ["type"] = "explicit", }, [1553] = { - ["id"] = "explicit.stat_448592698|140", - ["text"] = "+# to Level of all Frostbolt Skills", + ["id"] = "explicit.stat_2954116742|45244", + ["text"] = "Allocates Refills", ["type"] = "explicit", }, [1554] = { - ["id"] = "explicit.stat_448592698|130", - ["text"] = "+# to Level of all Scavenged Plating Skills", + ["id"] = "explicit.stat_2954116742|26447", + ["text"] = "Allocates Refocus", ["type"] = "explicit", }, [1555] = { - ["id"] = "explicit.stat_448592698|91", - ["text"] = "+# to Level of all Shield Wall Skills", + ["id"] = "explicit.stat_2954116742|20388", + ["text"] = "Allocates Regenerative Flesh", ["type"] = "explicit", }, [1556] = { - ["id"] = "explicit.stat_2531622767", - ["text"] = "#% increased Block chance per 100 total Item Armour on Equipped Armour Items", + ["id"] = "explicit.stat_2954116742|56388", + ["text"] = "Allocates Reinforced Rallying", ["type"] = "explicit", }, [1557] = { - ["id"] = "explicit.stat_2589572664", - ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Mana", + ["id"] = "explicit.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", ["type"] = "explicit", }, [1558] = { - ["id"] = "explicit.stat_2252419505", - ["text"] = "Cannot be Light Stunned by Deflected Hits", + ["id"] = "explicit.stat_2954116742|55180", + ["text"] = "Allocates Relentless Fallen", ["type"] = "explicit", }, [1559] = { - ["id"] = "explicit.stat_448592698|89", - ["text"] = "+# to Level of all Gas Arrow Skills", + ["id"] = "explicit.stat_2954116742|1506", + ["text"] = "Allocates Remnant Attraction", ["type"] = "explicit", }, [1560] = { - ["id"] = "explicit.stat_1823942939", - ["text"] = "# to maximum number of Summoned Ballista Totems", + ["id"] = "explicit.stat_2954116742|65468", + ["text"] = "Allocates Repeating Explosives", ["type"] = "explicit", }, [1561] = { - ["id"] = "explicit.stat_448592698|123", - ["text"] = "+# to Level of all Plague Bearer Skills", + ["id"] = "explicit.stat_2954116742|20414", + ["text"] = "Allocates Reprisal", ["type"] = "explicit", }, [1562] = { - ["id"] = "explicit.stat_448592698|11", - ["text"] = "+# to Level of all Archmage Skills", + ["id"] = "explicit.stat_2954116742|10029", + ["text"] = "Allocates Repulsion", ["type"] = "explicit", }, [1563] = { - ["id"] = "explicit.stat_448592698|149", - ["text"] = "+# to Level of all Ember Fusillade Skills", + ["id"] = "explicit.stat_2954116742|56860", + ["text"] = "Allocates Resolute Reprisal", ["type"] = "explicit", }, [1564] = { - ["id"] = "explicit.stat_448592698|13", - ["text"] = "+# to Level of all Flicker Strike Skills", + ["id"] = "explicit.stat_2954116742|40325", + ["text"] = "Allocates Resolution", ["type"] = "explicit", }, [1565] = { - ["id"] = "explicit.stat_448592698|117", - ["text"] = "+# to Level of all Galvanic Shards Skills", + ["id"] = "explicit.stat_2954116742|38972", + ["text"] = "Allocates Restless Dead", ["type"] = "explicit", }, [1566] = { - ["id"] = "explicit.stat_448592698|139", - ["text"] = "+# to Level of all Essence Drain Skills", + ["id"] = "explicit.stat_2954116742|31773", + ["text"] = "Allocates Resurging Archon", ["type"] = "explicit", }, [1567] = { - ["id"] = "explicit.stat_448592698|145", - ["text"] = "+# to Level of all Bone Cage Skills", + ["id"] = "explicit.stat_2954116742|7395", + ["text"] = "Allocates Retaliation", ["type"] = "explicit", }, [1568] = { - ["id"] = "explicit.stat_1972661424", - ["text"] = "#% more Life Flask Recovery", + ["id"] = "explicit.stat_2954116742|9009", + ["text"] = "Allocates Return to Nature", ["type"] = "explicit", }, [1569] = { - ["id"] = "explicit.stat_916833363", - ["text"] = "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", + ["id"] = "explicit.stat_2954116742|7062", + ["text"] = "Allocates Reusable Ammunition", ["type"] = "explicit", }, [1570] = { - ["id"] = "explicit.stat_448592698|158", - ["text"] = "+# to Level of all Earthquake Skills", + ["id"] = "explicit.stat_2954116742|3188", + ["text"] = "Allocates Revenge", ["type"] = "explicit", }, [1571] = { - ["id"] = "explicit.stat_448592698|156", - ["text"] = "+# to Level of all Lightning Arrow Skills", + ["id"] = "explicit.stat_2954116742|8660", + ["text"] = "Allocates Reverberation", ["type"] = "explicit", }, [1572] = { - ["id"] = "explicit.stat_448592698|99", - ["text"] = "+# to Level of all Incinerate Skills", + ["id"] = "explicit.stat_2954116742|8957", + ["text"] = "Allocates Right Hand of Darkness", ["type"] = "explicit", }, [1573] = { - ["id"] = "explicit.stat_448592698|98", - ["text"] = "+# to Level of all Arc Skills", + ["id"] = "explicit.stat_2954116742|28613", + ["text"] = "Allocates Roaring Cries", ["type"] = "explicit", }, [1574] = { - ["id"] = "explicit.stat_448592698|41", - ["text"] = "+# to Level of all Shockburst Rounds Skills", + ["id"] = "explicit.stat_2954116742|60269", + ["text"] = "Allocates Roil", ["type"] = "explicit", }, [1575] = { - ["id"] = "explicit.stat_448592698|153", - ["text"] = "+# to Level of all Ice Nova Skills", + ["id"] = "explicit.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", ["type"] = "explicit", }, [1576] = { - ["id"] = "explicit.stat_448592698|103", - ["text"] = "+# to Level of all Ice Strike Skills", + ["id"] = "explicit.stat_2954116742|8483", + ["text"] = "Allocates Ruin", ["type"] = "explicit", }, [1577] = { - ["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", + ["id"] = "explicit.stat_2954116742|18959", + ["text"] = "Allocates Ruinic Helm", ["type"] = "explicit", }, [1578] = { - ["id"] = "explicit.stat_3783473032", - ["text"] = "The Bodach haunts your Presence", + ["id"] = "explicit.stat_2954116742|53566", + ["text"] = "Allocates Run and Gun", ["type"] = "explicit", }, [1579] = { - ["id"] = "explicit.stat_448592698|107", - ["text"] = "+# to Level of all Bonestorm Skills", + ["id"] = "explicit.stat_2954116742|7782", + ["text"] = "Allocates Rupturing Pins", ["type"] = "explicit", }, [1580] = { - ["id"] = "explicit.stat_448592698|25", - ["text"] = "+# to Level of all Plasma Blast Skills", + ["id"] = "explicit.stat_2954116742|9290", + ["text"] = "Allocates Rusted Pins", ["type"] = "explicit", }, [1581] = { - ["id"] = "explicit.stat_1515657623", - ["text"] = "# to Maximum Endurance Charges", + ["id"] = "explicit.stat_2954116742|14294", + ["text"] = "Allocates Sacrificial Blood", ["type"] = "explicit", }, [1582] = { - ["id"] = "explicit.stat_448592698|92", - ["text"] = "+# to Level of all Explosive Shot Skills", + ["id"] = "explicit.stat_2954116742|25619", + ["text"] = "Allocates Sand in the Eyes", ["type"] = "explicit", }, [1583] = { - ["id"] = "explicit.stat_668076381", - ["text"] = "Heavy Stuns Enemies that are on Full Life", + ["id"] = "explicit.stat_2954116742|58215", + ["text"] = "Allocates Sanguimantic Rituals", ["type"] = "explicit", }, [1584] = { - ["id"] = "explicit.stat_448592698|23", - ["text"] = "+# to Level of all Hammer of the Gods Skills", + ["id"] = "explicit.stat_2954116742|4810", + ["text"] = "Allocates Sanguine Tolerance", ["type"] = "explicit", }, [1585] = { - ["id"] = "explicit.stat_1327522346", - ["text"] = "#% increased Mana Regeneration Rate while moving", + ["id"] = "explicit.stat_2954116742|42070", + ["text"] = "Allocates Saqawal's Guidance", ["type"] = "explicit", }, [1586] = { - ["id"] = "explicit.stat_1509533589", - ["text"] = "Enemies take #% increased Damage for each Elemental Ailment type amongyour Ailments on them", + ["id"] = "explicit.stat_2954116742|63255", + ["text"] = "Allocates Savagery", ["type"] = "explicit", }, [1587] = { - ["id"] = "explicit.stat_2080373320", - ["text"] = "Enemies in your Presence are Blinded", + ["id"] = "explicit.stat_2954116742|18397", + ["text"] = "Allocates Savoured Blood", ["type"] = "explicit", }, [1588] = { - ["id"] = "explicit.stat_2760344900", - ["text"] = "#% chance when you Reload a Crossbow to be immediate", + ["id"] = "explicit.stat_2954116742|45713", + ["text"] = "Allocates Savouring", ["type"] = "explicit", }, [1589] = { - ["id"] = "explicit.stat_2896115339", - ["text"] = "#% of Elemental Damage taken Recouped as Energy Shield", + ["id"] = "explicit.stat_2954116742|60619", + ["text"] = "Allocates Scales of the Wyvern", ["type"] = "explicit", }, [1590] = { - ["id"] = "explicit.stat_1345486764", - ["text"] = "+1 to Maximum Spirit per # Maximum Life", + ["id"] = "explicit.stat_2954116742|39884", + ["text"] = "Allocates Searing Heat", ["type"] = "explicit", }, [1591] = { - ["id"] = "explicit.stat_448592698|39", - ["text"] = "+# to Level of all Stampede Skills", + ["id"] = "explicit.stat_2954116742|52229", + ["text"] = "Allocates Secrets of the Orb", ["type"] = "explicit", }, [1592] = { - ["id"] = "explicit.stat_448592698|106", - ["text"] = "+# to Level of all Tempest Flurry Skills", + ["id"] = "explicit.stat_2954116742|5009", + ["text"] = "Allocates Seeing Stars", ["type"] = "explicit", }, [1593] = { - ["id"] = "explicit.stat_448592698|144", - ["text"] = "+# to Level of all Tempest Bell Skills", + ["id"] = "explicit.stat_2954116742|23630", + ["text"] = "Allocates Self Immolation", ["type"] = "explicit", }, [1594] = { - ["id"] = "explicit.stat_1661347488", - ["text"] = "Lose #% of maximum Life per second", + ["id"] = "explicit.stat_2954116742|44917", + ["text"] = "Allocates Self Mortification", ["type"] = "explicit", }, [1595] = { - ["id"] = "explicit.stat_448592698|16", - ["text"] = "+# to Level of all Skeletal Brute Skills", + ["id"] = "explicit.stat_2954116742|36085", + ["text"] = "Allocates Serrated Edges", ["type"] = "explicit", }, [1596] = { - ["id"] = "explicit.stat_330530785", - ["text"] = "#% increased Immobilisation buildup", + ["id"] = "explicit.stat_2954116742|13457", + ["text"] = "Allocates Shadow Dancing", ["type"] = "explicit", }, [1597] = { - ["id"] = "explicit.stat_3063814459", - ["text"] = "Pin Enemies which are Primed for Pinning", + ["id"] = "explicit.stat_2954116742|53150", + ["text"] = "Allocates Sharp Sight", ["type"] = "explicit", }, [1598] = { - ["id"] = "explicit.stat_279110104", - ["text"] = "Withered does not expire on Enemies Ignited by you", + ["id"] = "explicit.stat_2954116742|61703", + ["text"] = "Allocates Sharpened Claw", ["type"] = "explicit", }, [1599] = { - ["id"] = "explicit.stat_664606484", - ["text"] = "Abyssal Monsters have #% increased Effectiveness for each closed Pit, up to 100%", + ["id"] = "explicit.stat_2954116742|41811", + ["text"] = "Allocates Shatter Palm", ["type"] = "explicit", }, [1600] = { - ["id"] = "explicit.stat_448592698|3", - ["text"] = "+# to Level of all Blink Skills", + ["id"] = "explicit.stat_2954116742|49740", + ["text"] = "Allocates Shattered Crystal", ["type"] = "explicit", }, [1601] = { - ["id"] = "explicit.stat_538981065", - ["text"] = "Grenades have #% chance to activate a second time", + ["id"] = "explicit.stat_2954116742|48658", + ["text"] = "Allocates Shattering", ["type"] = "explicit", }, [1602] = { - ["id"] = "explicit.stat_3507701584", - ["text"] = "# to Level of Vulnerability Skills", + ["id"] = "explicit.stat_2954116742|53527", + ["text"] = "Allocates Shattering Blow", ["type"] = "explicit", }, [1603] = { - ["id"] = "explicit.stat_1294464552", - ["text"] = "Small Passive Skills in Radius also grant # to maximum Mana", + ["id"] = "explicit.stat_2954116742|64415", + ["text"] = "Allocates Shattering Daze", ["type"] = "explicit", }, [1604] = { - ["id"] = "explicit.stat_2856328513", - ["text"] = "#% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", + ["id"] = "explicit.stat_2954116742|15644", + ["text"] = "Allocates Shedding Skin", ["type"] = "explicit", }, [1605] = { - ["id"] = "explicit.stat_3773763721", - ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", + ["id"] = "explicit.stat_2954116742|37244", + ["text"] = "Allocates Shield Expertise", ["type"] = "explicit", }, [1606] = { - ["id"] = "explicit.stat_448592698|160", - ["text"] = "+# to Level of all Skeletal Sniper Skills", + ["id"] = "explicit.stat_2954116742|57617", + ["text"] = "Allocates Shifted Strikes", ["type"] = "explicit", }, [1607] = { - ["id"] = "explicit.stat_448592698|34", - ["text"] = "+# to Level of all Hexblast Skills", + ["id"] = "explicit.stat_2954116742|53941", + ["text"] = "Allocates Shimmering", ["type"] = "explicit", }, [1608] = { - ["id"] = "explicit.stat_448592698|19", - ["text"] = "+# to Level of all Lightning Conduit Skills", + ["id"] = "explicit.stat_2954116742|5335", + ["text"] = "Allocates Shimmering Mirage", ["type"] = "explicit", }, [1609] = { - ["id"] = "explicit.stat_3480095574", - ["text"] = "Charms applied to you have #% increased Effect", + ["id"] = "explicit.stat_2954116742|29800", + ["text"] = "Allocates Shocking Limit", ["type"] = "explicit", }, [1610] = { - ["id"] = "explicit.stat_1088082880", - ["text"] = "Spells which cost Life Gain #% of Damage as Extra Physical Damage", + ["id"] = "explicit.stat_2954116742|32448", + ["text"] = "Allocates Shockproof", ["type"] = "explicit", }, [1611] = { - ["id"] = "explicit.stat_2720781168", - ["text"] = "Attack Projectiles Return if they Pierced at least # times", + ["id"] = "explicit.stat_2954116742|1087", + ["text"] = "Allocates Shockwaves", ["type"] = "explicit", }, [1612] = { - ["id"] = "explicit.stat_1697191405", - ["text"] = "#% increased Reservation Efficiency of Herald Skills", + ["id"] = "explicit.stat_2954116742|46296", + ["text"] = "Allocates Short Shot", ["type"] = "explicit", }, [1613] = { - ["id"] = "explicit.stat_3605616594", - ["text"] = "Gain Onslaught for 4 seconds when a Minion Dies", + ["id"] = "explicit.stat_2954116742|55060", + ["text"] = "Allocates Shrapnel", ["type"] = "explicit", }, [1614] = { - ["id"] = "explicit.stat_905072977", - ["text"] = "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup", + ["id"] = "explicit.stat_2954116742|14211", + ["text"] = "Allocates Shredding Contraptions", ["type"] = "explicit", }, [1615] = { - ["id"] = "explicit.stat_2061237517", - ["text"] = "# to Level of all Corrupted Spell Skill Gems", + ["id"] = "explicit.stat_2954116742|5284", + ["text"] = "Allocates Shredding Force", ["type"] = "explicit", }, [1616] = { - ["id"] = "explicit.stat_2363593824", - ["text"] = "#% increased speed of Recoup Effects", + ["id"] = "explicit.stat_2954116742|47088", + ["text"] = "Allocates Sic 'Em", ["type"] = "explicit", }, [1617] = { - ["id"] = "explicit.stat_1365079333", - ["text"] = "Players steal the Eaten Souls of Slain Rare Monsters in Area", + ["id"] = "explicit.stat_2954116742|63037", + ["text"] = "Allocates Sigil of Fire", ["type"] = "explicit", }, [1618] = { - ["id"] = "explicit.stat_448592698|37", - ["text"] = "+# to Level of all Comet Skills", + ["id"] = "explicit.stat_2954116742|40803", + ["text"] = "Allocates Sigil of Ice", ["type"] = "explicit", }, [1619] = { - ["id"] = "explicit.stat_3581035970", - ["text"] = "#% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", + ["id"] = "explicit.stat_2954116742|46024", + ["text"] = "Allocates Sigil of Lightning", ["type"] = "explicit", }, [1620] = { - ["id"] = "explicit.stat_448592698|21", - ["text"] = "+# to Level of all Ancestral Warrior Totem Skills", + ["id"] = "explicit.stat_2954116742|17229", + ["text"] = "Allocates Silent Guardian", ["type"] = "explicit", }, [1621] = { - ["id"] = "explicit.stat_1705072014", - ["text"] = "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", + ["id"] = "explicit.stat_2954116742|52392", + ["text"] = "Allocates Singular Purpose", ["type"] = "explicit", }, [1622] = { - ["id"] = "explicit.stat_1266185101", - ["text"] = "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", + ["id"] = "explicit.stat_2954116742|15829", + ["text"] = "Allocates Siphon", ["type"] = "explicit", }, [1623] = { - ["id"] = "explicit.stat_2783157569", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", + ["id"] = "explicit.stat_2954116742|12906", + ["text"] = "Allocates Sitting Duck", ["type"] = "explicit", }, [1624] = { - ["id"] = "explicit.stat_262946222", - ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", + ["id"] = "explicit.stat_2954116742|2645", + ["text"] = "Allocates Skullcrusher", ["type"] = "explicit", }, [1625] = { - ["id"] = "explicit.stat_448592698|50", - ["text"] = "+# to Level of all Skeletal Reaver Skills", + ["id"] = "explicit.stat_2954116742|55308", + ["text"] = "Allocates Sling Shots", ["type"] = "explicit", }, [1626] = { - ["id"] = "explicit.stat_3742268652", - ["text"] = "Grants effect of Dreaming Gloom Shrine", + ["id"] = "explicit.stat_2954116742|23362", + ["text"] = "Allocates Slippery Ice", ["type"] = "explicit", }, [1627] = { - ["id"] = "explicit.stat_3655769732", - ["text"] = "#% to Quality of all Skills", + ["id"] = "explicit.stat_2954116742|31326", + ["text"] = "Allocates Slow Burn", ["type"] = "explicit", }, [1628] = { - ["id"] = "explicit.stat_1914226331", - ["text"] = "#% increased Cast Speed while on Full Mana", + ["id"] = "explicit.stat_2954116742|54148", + ["text"] = "Allocates Smoke Inhalation", ["type"] = "explicit", }, [1629] = { - ["id"] = "explicit.stat_446027070", - ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Hit", + ["id"] = "explicit.stat_2954116742|11526", + ["text"] = "Allocates Sniper", ["type"] = "explicit", }, [1630] = { - ["id"] = "explicit.stat_988575597", - ["text"] = "#% increased Energy Shield Recovery rate", + ["id"] = "explicit.stat_2954116742|9421", + ["text"] = "Allocates Snowpiercer", ["type"] = "explicit", }, [1631] = { - ["id"] = "explicit.stat_883169830", - ["text"] = "Projectiles deal #% increased Damage with Hits for each time they have Pierced", + ["id"] = "explicit.stat_2954116742|51169", + ["text"] = "Allocates Soul Bloom", ["type"] = "explicit", }, [1632] = { - ["id"] = "explicit.stat_150590298", - ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also Boots", + ["id"] = "explicit.stat_2954116742|34473", + ["text"] = "Allocates Spaghettification", ["type"] = "explicit", }, [1633] = { - ["id"] = "explicit.stat_4106787208", - ["text"] = "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", + ["id"] = "explicit.stat_2954116742|14602", + ["text"] = "Allocates Specialised Shots", ["type"] = "explicit", }, [1634] = { - ["id"] = "explicit.stat_448592698|126", - ["text"] = "+# to Level of all Magma Barrier Skills", + ["id"] = "explicit.stat_2954116742|34324", + ["text"] = "Allocates Spectral Ward", ["type"] = "explicit", }, [1635] = { - ["id"] = "explicit.stat_3915618954", - ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", + ["id"] = "explicit.stat_2954116742|17254", + ["text"] = "Allocates Spell Haste", ["type"] = "explicit", }, [1636] = { - ["id"] = "explicit.stat_2443032293", - ["text"] = "Gain # Guard for 0.5 seconds per Combo expended when using Skills", + ["id"] = "explicit.stat_2954116742|49984", + ["text"] = "Allocates Spellblade", ["type"] = "explicit", }, [1637] = { - ["id"] = "explicit.stat_1570501432", - ["text"] = "Leech Life #% faster", + ["id"] = "explicit.stat_2954116742|3698", + ["text"] = "Allocates Spike Pit", ["type"] = "explicit", }, [1638] = { - ["id"] = "explicit.stat_3076483222|38303", - ["text"] = "Sacrifice up to 20 Arcanist's Etchers to receive double on Trial completion", + ["id"] = "explicit.stat_2954116742|40117", + ["text"] = "Allocates Spiked Armour", ["type"] = "explicit", }, [1639] = { - ["id"] = "explicit.stat_3407849389", - ["text"] = "#% reduced effect of Curses on you", + ["id"] = "explicit.stat_2954116742|36808", + ["text"] = "Allocates Spiked Shield", ["type"] = "explicit", }, [1640] = { - ["id"] = "explicit.stat_160888068", - ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Life", + ["id"] = "explicit.stat_2954116742|1546", + ["text"] = "Allocates Spiral into Depression", ["type"] = "explicit", }, [1641] = { - ["id"] = "explicit.stat_311641062", - ["text"] = "#% chance for Flasks you use to not consume Charges", + ["id"] = "explicit.stat_2954116742|2138", + ["text"] = "Allocates Spiral into Insanity", ["type"] = "explicit", }, [1642] = { - ["id"] = "explicit.stat_2526112819", - ["text"] = "Hits with this Weapon inflict # Gruelling Madness", + ["id"] = "explicit.stat_2954116742|14934", + ["text"] = "Allocates Spiral into Mania", ["type"] = "explicit", }, [1643] = { - ["id"] = "explicit.stat_3076483222|19854", - ["text"] = "Sacrifice up to 3 Orb of Annulments to receive double on Trial completion", + ["id"] = "explicit.stat_2954116742|51105", + ["text"] = "Allocates Spirit Bond", ["type"] = "explicit", }, [1644] = { - ["id"] = "explicit.stat_448592698|136", - ["text"] = "+# to Level of all Shockwave Totem Skills", + ["id"] = "explicit.stat_2954116742|9328", + ["text"] = "Allocates Spirit of the Bear", ["type"] = "explicit", }, [1645] = { - ["id"] = "explicit.stat_1949851472", - ["text"] = "#% chance when a Charm is used to use another Charm without consuming Charges", + ["id"] = "explicit.stat_2954116742|3348", + ["text"] = "Allocates Spirit of the Wolf", ["type"] = "explicit", }, [1646] = { - ["id"] = "explicit.stat_318092306", - ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", + ["id"] = "explicit.stat_2954116742|26104", + ["text"] = "Allocates Spirit of the Wyvern", ["type"] = "explicit", }, [1647] = { - ["id"] = "explicit.stat_472809816", - ["text"] = "#% increased Quantity of Wombgifts found", + ["id"] = "explicit.stat_2954116742|49088", + ["text"] = "Allocates Splintering Force", ["type"] = "explicit", }, [1648] = { - ["id"] = "explicit.stat_1518586897", - ["text"] = "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", + ["id"] = "explicit.stat_2954116742|7449", + ["text"] = "Allocates Splinters", ["type"] = "explicit", }, [1649] = { - ["id"] = "explicit.stat_4186798932", - ["text"] = "# to # Added Attack Fire Damage per 25 Strength", + ["id"] = "explicit.stat_2954116742|42302", + ["text"] = "Allocates Split Shot", ["type"] = "explicit", }, [1650] = { - ["id"] = "explicit.stat_3076483222|45026", - ["text"] = "Sacrifice up to 3 Orbs of Chance to receive double on Trial completion", + ["id"] = "explicit.stat_2954116742|13980", + ["text"] = "Allocates Split the Earth", ["type"] = "explicit", }, [1651] = { - ["id"] = "explicit.stat_1514844108", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + ["id"] = "explicit.stat_2954116742|20251", + ["text"] = "Allocates Splitting Ground", ["type"] = "explicit", }, [1652] = { - ["id"] = "explicit.stat_4258524206", - ["text"] = "#% chance to build an additional Combo on Hit", + ["id"] = "explicit.stat_2954116742|23736", + ["text"] = "Allocates Spray and Pray", ["type"] = "explicit", }, [1653] = { - ["id"] = "explicit.stat_1827379101", - ["text"] = "Enemies in your Presence have additional Power equal to their Gruelling Madness", + ["id"] = "explicit.stat_2954116742|11578", + ["text"] = "Allocates Spreading Shocks", ["type"] = "explicit", }, [1654] = { - ["id"] = "explicit.stat_4033618138", - ["text"] = "Recover #% of Maximum Life when you expend at least 10 Combo", + ["id"] = "explicit.stat_2954116742|63759", + ["text"] = "Allocates Stacking Toxins", ["type"] = "explicit", }, [1655] = { - ["id"] = "explicit.stat_2991045011", - ["text"] = "Recover #% of Maximum Mana when you expend at least 10 Combo", + ["id"] = "explicit.stat_2954116742|39881", + ["text"] = "Allocates Staggering Palm", ["type"] = "explicit", }, [1656] = { - ["id"] = "explicit.stat_4274247770", - ["text"] = "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", + ["id"] = "explicit.stat_2954116742|61104", + ["text"] = "Allocates Staggering Wounds", ["type"] = "explicit", }, [1657] = { - ["id"] = "explicit.stat_2705185939", - ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["id"] = "explicit.stat_2954116742|6304", + ["text"] = "Allocates Stand Ground", ["type"] = "explicit", }, [1658] = { - ["id"] = "explicit.stat_3190283174", - ["text"] = "Area has patches of Mana Siphoning Ground", + ["id"] = "explicit.stat_2954116742|5802", + ["text"] = "Allocates Stand and Deliver", ["type"] = "explicit", }, [1659] = { - ["id"] = "explicit.stat_2543331226", - ["text"] = "#% increased Damage while you have a Totem", + ["id"] = "explicit.stat_2954116742|2486", + ["text"] = "Allocates Stars Aligned", ["type"] = "explicit", }, [1660] = { - ["id"] = "explicit.stat_1493485657", - ["text"] = "Spells have #% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_2954116742|34908", + ["text"] = "Allocates Staunch Deflection", ["type"] = "explicit", }, [1661] = { - ["id"] = "explicit.stat_1781372024", - ["text"] = "Recover #% of maximum Life on Killing a Poisoned Enemy", + ["id"] = "explicit.stat_2954116742|37408", + ["text"] = "Allocates Staunching", ["type"] = "explicit", }, [1662] = { - ["id"] = "explicit.stat_448592698|141", - ["text"] = "+# to Level of all Skeletal Arsonist Skills", + ["id"] = "explicit.stat_2954116742|26479", + ["text"] = "Allocates Steadfast Resolve", ["type"] = "explicit", }, [1663] = { - ["id"] = "explicit.stat_1539671749", - ["text"] = "Defend with #% of Armour while you have Energy Shield", + ["id"] = "explicit.stat_2954116742|47782", + ["text"] = "Allocates Steady Footing", ["type"] = "explicit", }, [1664] = { - ["id"] = "explicit.stat_1495814176", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + ["id"] = "explicit.stat_2954116742|47441", + ["text"] = "Allocates Stigmata", ["type"] = "explicit", }, [1665] = { - ["id"] = "explicit.stat_3923947492", - ["text"] = "Hits against you have #% increased Critical Hit Chance while you are Chilled", + ["id"] = "explicit.stat_2954116742|7163", + ["text"] = "Allocates Stimulants", ["type"] = "explicit", }, [1666] = { - ["id"] = "explicit.stat_2422708892|64601", - ["text"] = "Passives in Radius of Hollow Palm Technique can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|1603", + ["text"] = "Allocates Storm Driven", ["type"] = "explicit", }, [1667] = { - ["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", + ["id"] = "explicit.stat_2954116742|61921", + ["text"] = "Allocates Storm Surge", ["type"] = "explicit", }, [1668] = { - ["id"] = "explicit.stat_2749595652", - ["text"] = "#% chance for Skills to retain 40% of Glory on use", + ["id"] = "explicit.stat_2954116742|336", + ["text"] = "Allocates Storm Swell", ["type"] = "explicit", }, [1669] = { - ["id"] = "explicit.stat_1243721142", - ["text"] = "Arrows Return if they have Pierced a target which had Fully Broken Armour", + ["id"] = "explicit.stat_2954116742|43139", + ["text"] = "Allocates Stormbreaker", ["type"] = "explicit", }, [1670] = { - ["id"] = "explicit.stat_1316656343", - ["text"] = "Small Passive Skills in Radius also grant # to maximum Life", + ["id"] = "explicit.stat_2954116742|38535", + ["text"] = "Allocates Stormcharged", ["type"] = "explicit", }, [1671] = { - ["id"] = "explicit.stat_2433436306", - ["text"] = "Unstable Breaches have #% increased chance to contain Vruun, Marshal of Xesht", + ["id"] = "explicit.stat_2954116742|13515", + ["text"] = "Allocates Stormwalker", ["type"] = "explicit", }, [1672] = { - ["id"] = "explicit.stat_448592698|101", - ["text"] = "+# to Level of all Skeletal Frost Mage Skills", + ["id"] = "explicit.stat_2954116742|45177", + ["text"] = "Allocates Strike True", ["type"] = "explicit", }, [1673] = { - ["id"] = "explicit.stat_3128077011", - ["text"] = "#% increased Effect of Jewel Socket Passive Skillscontaining Corrupted Rare Jewels", + ["id"] = "explicit.stat_2954116742|33922", + ["text"] = "Allocates Stripped Defences", ["type"] = "explicit", }, [1674] = { - ["id"] = "explicit.stat_2839557359", - ["text"] = "Possessed by Spirit Of The Cat for # seconds on use", + ["id"] = "explicit.stat_2954116742|10998", + ["text"] = "Allocates Strong Chin", ["type"] = "explicit", }, [1675] = { - ["id"] = "explicit.stat_4121454694", - ["text"] = "Recover #% of maximum Mana when a Charm is used", + ["id"] = "explicit.stat_2954116742|39369", + ["text"] = "Allocates Struck Through", ["type"] = "explicit", }, [1676] = { - ["id"] = "explicit.stat_501873429", - ["text"] = "#% chance for Charms you use to not consume Charges", + ["id"] = "explicit.stat_2954116742|38342", + ["text"] = "Allocates Stupefy", ["type"] = "explicit", }, [1677] = { - ["id"] = "explicit.stat_3336230913", - ["text"] = "# to maximum Runic Ward", + ["id"] = "explicit.stat_2954116742|8791", + ["text"] = "Allocates Sturdy Ally", ["type"] = "explicit", }, [1678] = { - ["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", + ["id"] = "explicit.stat_2954116742|60138", + ["text"] = "Allocates Stylebender", ["type"] = "explicit", }, [1679] = { - ["id"] = "explicit.stat_3685424517", - ["text"] = "Possessed by Spirit Of The Stag for # seconds on use", + ["id"] = "explicit.stat_2954116742|55193", + ["text"] = "Allocates Subterfuge Mask", ["type"] = "explicit", }, [1680] = { - ["id"] = "explicit.stat_758893621", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["id"] = "explicit.stat_2954116742|30392", + ["text"] = "Allocates Succour", ["type"] = "explicit", }, [1681] = { - ["id"] = "explicit.stat_2399592398", - ["text"] = "Abysses lead to an Abyssal Boss", + ["id"] = "explicit.stat_2954116742|10398", + ["text"] = "Allocates Sudden Escalation", ["type"] = "explicit", }, [1682] = { - ["id"] = "explicit.stat_3274422940", - ["text"] = "#% increased Ice Crystal Life", + ["id"] = "explicit.stat_2954116742|29372", + ["text"] = "Allocates Sudden Infuriation", ["type"] = "explicit", }, [1683] = { - ["id"] = "explicit.stat_3950000557", - ["text"] = "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", + ["id"] = "explicit.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", ["type"] = "explicit", }, [1684] = { - ["id"] = "explicit.stat_448592698|161", - ["text"] = "+# to Level of all Skeletal Sniper Skills", + ["id"] = "explicit.stat_2954116742|2511", + ["text"] = "Allocates Sundering", ["type"] = "explicit", }, [1685] = { - ["id"] = "explicit.stat_2889272422", - ["text"] = "Wombgifts have #% chance to drop one Level higher", + ["id"] = "explicit.stat_2954116742|19249", + ["text"] = "Allocates Supportive Ancestors", ["type"] = "explicit", }, [1686] = { - ["id"] = "explicit.stat_448592698|32", - ["text"] = "+# to Level of all Skeletal Storm Mage Skills", + ["id"] = "explicit.stat_2954116742|29881", + ["text"] = "Allocates Surging Beast", ["type"] = "explicit", }, [1687] = { - ["id"] = "explicit.stat_2880019685", - ["text"] = "#% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", + ["id"] = "explicit.stat_2954116742|42065", + ["text"] = "Allocates Surging Currents", ["type"] = "explicit", }, [1688] = { - ["id"] = "explicit.stat_3711973554", - ["text"] = "Invocated Spells have #% chance to consume half as much Energy", + ["id"] = "explicit.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", ["type"] = "explicit", }, [1689] = { - ["id"] = "explicit.stat_242637938", - ["text"] = "#% increased chance to inflict Bleeding", + ["id"] = "explicit.stat_2954116742|32353", + ["text"] = "Allocates Swift Claw", ["type"] = "explicit", }, [1690] = { - ["id"] = "explicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["id"] = "explicit.stat_2954116742|56714", + ["text"] = "Allocates Swift Flight", ["type"] = "explicit", }, [1691] = { - ["id"] = "explicit.stat_448592698|154", - ["text"] = "+# to Level of all Spark Skills", + ["id"] = "explicit.stat_2954116742|65265", + ["text"] = "Allocates Swift Interruption", ["type"] = "explicit", }, [1692] = { - ["id"] = "explicit.stat_2544540062", - ["text"] = "Skills which create Fissures have a #% chance to create an additional Fissure", + ["id"] = "explicit.stat_2954116742|53367", + ["text"] = "Allocates Symbol of Defiance", ["type"] = "explicit", }, [1693] = { - ["id"] = "explicit.stat_1261076060", - ["text"] = "#% increased Life Regeneration rate during Effect of any Life Flask", + ["id"] = "explicit.stat_2954116742|17825", + ["text"] = "Allocates Tactical Retreat", ["type"] = "explicit", }, [1694] = { - ["id"] = "explicit.stat_2013356568", - ["text"] = "Melee Attack Skills have # to maximum number of Summoned Totems", + ["id"] = "explicit.stat_2954116742|22864", + ["text"] = "Allocates Tainted Strike", ["type"] = "explicit", }, [1695] = { - ["id"] = "explicit.stat_2474424958", - ["text"] = "Spell Skills have # to maximum number of Summoned Totems", + ["id"] = "explicit.stat_2954116742|40213", + ["text"] = "Allocates Taste for Blood", ["type"] = "explicit", }, [1696] = { - ["id"] = "explicit.stat_4136346606", - ["text"] = "#% increased Spell Damage while wielding a Melee Weapon", + ["id"] = "explicit.stat_2954116742|48774", + ["text"] = "Allocates Taut Flesh", ["type"] = "explicit", }, [1697] = { - ["id"] = "explicit.stat_2408625104", - ["text"] = "Players and their Minions deal no damage for 3 out of every 10 seconds", + ["id"] = "explicit.stat_2954116742|18157", + ["text"] = "Allocates Tempered Defences", ["type"] = "explicit", }, [1698] = { - ["id"] = "explicit.stat_231726304", - ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", + ["id"] = "explicit.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", ["type"] = "explicit", }, [1699] = { - ["id"] = "explicit.stat_448592698|199", - ["text"] = "+# to Level of all Herald of Blood Skills", + ["id"] = "explicit.stat_2954116742|12412", + ["text"] = "Allocates Temporal Mastery", ["type"] = "explicit", }, [1700] = { - ["id"] = "explicit.stat_4015438188", - ["text"] = "#% increased Damage with Hits against targets in your Presence", + ["id"] = "explicit.stat_2954116742|25971", + ["text"] = "Allocates Tenfold Attacks", ["type"] = "explicit", }, [1701] = { - ["id"] = "explicit.stat_2258007247", - ["text"] = "Gain # Rage on Hit", + ["id"] = "explicit.stat_2954116742|4544", + ["text"] = "Allocates The Ancient Serpent", ["type"] = "explicit", }, [1702] = { - ["id"] = "explicit.stat_3763491818", - ["text"] = "Possessed by Spirit Of The Primate for # seconds on use", + ["id"] = "explicit.stat_2954116742|7847", + ["text"] = "Allocates The Fabled Stag", ["type"] = "explicit", }, [1703] = { - ["id"] = "explicit.stat_3076483222|136", - ["text"] = "Sacrifice up to 20 Glassblower's Baubles to receive double on Trial completion", + ["id"] = "explicit.stat_2954116742|34543", + ["text"] = "Allocates The Frenzied Bear", ["type"] = "explicit", }, [1704] = { - ["id"] = "explicit.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", + ["id"] = "explicit.stat_2954116742|54031", + ["text"] = "Allocates The Great Boar", ["type"] = "explicit", }, [1705] = { - ["id"] = "explicit.stat_3463873033", - ["text"] = "Possessed by Spirit Of The Ox for # seconds on use", + ["id"] = "explicit.stat_2954116742|48734", + ["text"] = "Allocates The Howling Primate", ["type"] = "explicit", }, [1706] = { - ["id"] = "explicit.stat_1864159246", - ["text"] = "#% increased Magnitude of Poison you inflict on targets that are not Poisoned", + ["id"] = "explicit.stat_2954116742|28542", + ["text"] = "Allocates The Molten One's Gift", ["type"] = "explicit", }, [1707] = { - ["id"] = "explicit.stat_3972229254", - ["text"] = "#% of Armour also applies to Chaos Damage", + ["id"] = "explicit.stat_2954116742|2745", + ["text"] = "Allocates The Noble Wolf", ["type"] = "explicit", }, [1708] = { - ["id"] = "explicit.stat_3313255158", - ["text"] = "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", + ["id"] = "explicit.stat_2954116742|27176", + ["text"] = "Allocates The Power Within", ["type"] = "explicit", }, [1709] = { - ["id"] = "explicit.stat_1286199571", - ["text"] = "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", + ["id"] = "explicit.stat_2954116742|21349", + ["text"] = "Allocates The Quick Fox", ["type"] = "explicit", }, [1710] = { - ["id"] = "explicit.stat_2422708892|42680", - ["text"] = "Passives in Radius of Blackflame Covenant can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|45370", + ["text"] = "Allocates The Raging Ox", ["type"] = "explicit", }, [1711] = { - ["id"] = "explicit.stat_3504441212", - ["text"] = "Possessed by Spirit Of The Wolf for # seconds on use", + ["id"] = "explicit.stat_2954116742|52971", + ["text"] = "Allocates The Soul Meridian", ["type"] = "explicit", }, [1712] = { - ["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", + ["id"] = "explicit.stat_2954116742|11774", + ["text"] = "Allocates The Spring Hare", ["type"] = "explicit", }, [1713] = { - ["id"] = "explicit.stat_3181677174", - ["text"] = "Possessed by Spirit Of The Serpent for # seconds on use", + ["id"] = "explicit.stat_2954116742|22811", + ["text"] = "Allocates The Wild Cat", ["type"] = "explicit", }, [1714] = { - ["id"] = "explicit.stat_3396435291", - ["text"] = "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", + ["id"] = "explicit.stat_2954116742|53185", + ["text"] = "Allocates The Winter Owl", ["type"] = "explicit", }, [1715] = { - ["id"] = "explicit.stat_3076483222|53954", - ["text"] = "Sacrifice up to 10 Gemcutter's Prisms to receive double on Trial completion", + ["id"] = "explicit.stat_2954116742|35849", + ["text"] = "Allocates Thickened Arteries", ["type"] = "explicit", }, [1716] = { - ["id"] = "explicit.stat_2408983956", - ["text"] = "#% increased Critical Damage Bonus while Shocked", + ["id"] = "explicit.stat_2954116742|56893", + ["text"] = "Allocates Thicket Warding", ["type"] = "explicit", }, [1717] = { - ["id"] = "explicit.stat_4224832423", - ["text"] = "#% chance for Spell Skills to fire 8 additional Projectiles in a circle", + ["id"] = "explicit.stat_2954116742|19722", + ["text"] = "Allocates Thin Ice", ["type"] = "explicit", }, [1718] = { - ["id"] = "explicit.stat_3403424702", - ["text"] = "Possessed by Spirit Of The Bear for # seconds on use", + ["id"] = "explicit.stat_2954116742|59433", + ["text"] = "Allocates Thirst for Endurance", ["type"] = "explicit", }, [1719] = { - ["id"] = "explicit.stat_2479683456", - ["text"] = "Minions Regenerate #% of maximum Life per second", + ["id"] = "explicit.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", ["type"] = "explicit", }, [1720] = { - ["id"] = "explicit.stat_3481083201", - ["text"] = "#% increased chance to Poison", + ["id"] = "explicit.stat_2954116742|17600", + ["text"] = "Allocates Thirsting Ally", ["type"] = "explicit", }, [1721] = { - ["id"] = "explicit.stat_3871530702", - ["text"] = "Conquered Attribute Passive Skills also grant # to Strength", + ["id"] = "explicit.stat_2954116742|43711", + ["text"] = "Allocates Thornhide", ["type"] = "explicit", }, [1722] = { - ["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", + ["id"] = "explicit.stat_2954116742|42714", + ["text"] = "Allocates Thousand Cuts", ["type"] = "explicit", }, [1723] = { - ["id"] = "explicit.stat_603573028", - ["text"] = "You can have any number of Companions of different types", + ["id"] = "explicit.stat_2954116742|25711", + ["text"] = "Allocates Thrill of Battle", ["type"] = "explicit", }, [1724] = { - ["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", + ["id"] = "explicit.stat_2954116742|15606", + ["text"] = "Allocates Thrill of the Fight", ["type"] = "explicit", }, [1725] = { - ["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", + ["id"] = "explicit.stat_2954116742|56265", + ["text"] = "Allocates Throatseeker", ["type"] = "explicit", }, [1726] = { - ["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", + ["id"] = "explicit.stat_2954116742|63585", + ["text"] = "Allocates Thunderstruck", ["type"] = "explicit", }, [1727] = { - ["id"] = "explicit.stat_909236563", - ["text"] = "#% increased Surrounded Area of Effect", + ["id"] = "explicit.stat_2954116742|42813", + ["text"] = "Allocates Tides of Change", ["type"] = "explicit", }, [1728] = { - ["id"] = "explicit.stat_2853314994", - ["text"] = "Regenerate # Rage per second", + ["id"] = "explicit.stat_2954116742|24240", + ["text"] = "Allocates Time Manipulation", ["type"] = "explicit", }, [1729] = { - ["id"] = "explicit.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["id"] = "explicit.stat_2954116742|65160", + ["text"] = "Allocates Titanic", ["type"] = "explicit", }, [1730] = { - ["id"] = "explicit.stat_2931872063", - ["text"] = "Gain Volatility on Critical Hit", + ["id"] = "explicit.stat_2954116742|2843", + ["text"] = "Allocates Tolerant Equipment", ["type"] = "explicit", }, [1731] = { - ["id"] = "explicit.stat_1746561819", - ["text"] = "Enemies Hindered by you take #% increased Chaos Damage", + ["id"] = "explicit.stat_2954116742|28482", + ["text"] = "Allocates Total Incineration", ["type"] = "explicit", }, [1732] = { - ["id"] = "explicit.stat_300107724", - ["text"] = "Possessed by Spirit Of The Owl for # seconds on use", + ["id"] = "explicit.stat_2954116742|27626", + ["text"] = "Allocates Touch the Arcane", ["type"] = "explicit", }, [1733] = { - ["id"] = "explicit.stat_212649958", - ["text"] = "Enemies Hindered by you take #% increased Elemental Damage", + ["id"] = "explicit.stat_2954116742|53823", + ["text"] = "Allocates Towering Shield", ["type"] = "explicit", }, [1734] = { - ["id"] = "explicit.stat_2422708892|11230", - ["text"] = "Passives in Radius of Ritual Cadence can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|261", + ["text"] = "Allocates Toxic Sludge", ["type"] = "explicit", }, [1735] = { - ["id"] = "explicit.stat_2552484522", - ["text"] = "Conquered Attribute Passive Skills also grant # to all Attributes", + ["id"] = "explicit.stat_2954116742|2134", + ["text"] = "Allocates Toxic Tolerance", ["type"] = "explicit", }, [1736] = { - ["id"] = "explicit.stat_3927679277", - ["text"] = "#% chance when collecting an Elemental Infusion to gain anadditional Elemental Infusion of the same type", + ["id"] = "explicit.stat_2954116742|52180", + ["text"] = "Allocates Trained Deflection", ["type"] = "explicit", }, [1737] = { - ["id"] = "explicit.stat_2221570601", - ["text"] = "#% Global chance to Blind Enemies on Hit", + ["id"] = "explicit.stat_2954116742|57785", + ["text"] = "Allocates Trained Turrets", ["type"] = "explicit", }, [1738] = { - ["id"] = "explicit.stat_4273473110", - ["text"] = "#% increased maximum Runic Ward", + ["id"] = "explicit.stat_2954116742|750", + ["text"] = "Allocates Tribal Fury", ["type"] = "explicit", }, [1739] = { - ["id"] = "explicit.stat_1174076861", - ["text"] = "#% increased Cast Speed if you've dealt a Critical Hit Recently", + ["id"] = "explicit.stat_2954116742|23221", + ["text"] = "Allocates Trick Shot", ["type"] = "explicit", }, [1740] = { - ["id"] = "explicit.stat_4163076972", - ["text"] = "No Inherent loss of Rage", + ["id"] = "explicit.stat_2954116742|61601", + ["text"] = "Allocates True Strike", ["type"] = "explicit", }, [1741] = { - ["id"] = "explicit.stat_3982604001", - ["text"] = "Skills have #% longer Perfect Timing window during effect", + ["id"] = "explicit.stat_2954116742|53131", + ["text"] = "Allocates Tukohama's Brew", ["type"] = "explicit", }, [1742] = { - ["id"] = "explicit.stat_448592698|204", - ["text"] = "+# to Level of all Ravenous Swarm Skills", + ["id"] = "explicit.stat_2954116742|35564", + ["text"] = "Allocates Turn the Clock Back", ["type"] = "explicit", }, [1743] = { - ["id"] = "explicit.stat_1685559578", - ["text"] = "Possessed by Spirit Of The Boar for # seconds on use", + ["id"] = "explicit.stat_2954116742|2335", + ["text"] = "Allocates Turn the Clock Forward", ["type"] = "explicit", }, [1744] = { - ["id"] = "explicit.stat_2422708892|61942", - ["text"] = "Passives in Radius of Lord of the Wilds can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|1352", + ["text"] = "Allocates Unbending", ["type"] = "explicit", }, [1745] = { - ["id"] = "explicit.stat_67169579", - ["text"] = "# to Level of all Chaos Skills", + ["id"] = "explicit.stat_2954116742|4579", + ["text"] = "Allocates Unbothering Cold", ["type"] = "explicit", }, [1746] = { - ["id"] = "explicit.stat_2146799605", - ["text"] = "#% less Movement Speed", + ["id"] = "explicit.stat_2954116742|64543", + ["text"] = "Allocates Unbound Forces", ["type"] = "explicit", }, [1747] = { - ["id"] = "explicit.stat_1119086588", - ["text"] = "Conquered Attribute Passive Skills also grant # to Tribute", + ["id"] = "explicit.stat_2954116742|53921", + ["text"] = "Allocates Unbreaking", ["type"] = "explicit", }, [1748] = { - ["id"] = "explicit.stat_1633735772", - ["text"] = "#% less maximum Life", + ["id"] = "explicit.stat_2954116742|38888", + ["text"] = "Allocates Unerring Impact", ["type"] = "explicit", }, [1749] = { - ["id"] = "explicit.stat_2083058281", - ["text"] = "Enemies you Mark take #% increased Damage", + ["id"] = "explicit.stat_2954116742|31189", + ["text"] = "Allocates Unexpected Finesse", ["type"] = "explicit", }, [1750] = { - ["id"] = "explicit.stat_448592698|182", - ["text"] = "+# to Level of all Glacial Lance Skills", + ["id"] = "explicit.stat_2954116742|8881", + ["text"] = "Allocates Unforgiving", ["type"] = "explicit", }, [1751] = { - ["id"] = "explicit.stat_448592698|197", - ["text"] = "+# to Level of all Trinity Skills", + ["id"] = "explicit.stat_2954116742|32543", + ["text"] = "Allocates Unhindered", ["type"] = "explicit", }, [1752] = { - ["id"] = "explicit.stat_3116427713", - ["text"] = "Conquered Attribute Passive Skills also grant # to Intelligence", + ["id"] = "explicit.stat_2954116742|51394", + ["text"] = "Allocates Unimpeded", ["type"] = "explicit", }, [1753] = { - ["id"] = "explicit.stat_1103616075", - ["text"] = "Break Armour equal to #% of Physical Damage dealt", + ["id"] = "explicit.stat_2954116742|20008", + ["text"] = "Allocates Unleash Fire", ["type"] = "explicit", }, [1754] = { - ["id"] = "explicit.stat_656291658", - ["text"] = "#% increased Cast Speed when on Full Life", + ["id"] = "explicit.stat_2954116742|4547", + ["text"] = "Allocates Unnatural Resilience", ["type"] = "explicit", }, [1755] = { - ["id"] = "explicit.stat_1803659985", - ["text"] = "#% less Armour, Evasion and Energy Shield", + ["id"] = "explicit.stat_2954116742|51602", + ["text"] = "Allocates Unsight", ["type"] = "explicit", }, [1756] = { - ["id"] = "explicit.stat_448592698|187", - ["text"] = "+# to Level of all Whirlwind Lance Skills", + ["id"] = "explicit.stat_2954116742|33585", + ["text"] = "Allocates Unspoken Bond", ["type"] = "explicit", }, [1757] = { - ["id"] = "explicit.stat_1793740180", - ["text"] = "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", + ["id"] = "explicit.stat_2954116742|18485", + ["text"] = "Allocates Unstable Bond", ["type"] = "explicit", }, [1758] = { - ["id"] = "explicit.stat_448592698|195", - ["text"] = "+# to Level of all Storm Lance Skills", + ["id"] = "explicit.stat_2954116742|33978", + ["text"] = "Allocates Unstoppable Barrier", ["type"] = "explicit", }, [1759] = { - ["id"] = "explicit.stat_986616727", - ["text"] = "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", + ["id"] = "explicit.stat_2954116742|10774", + ["text"] = "Allocates Unyielding", ["type"] = "explicit", }, [1760] = { - ["id"] = "explicit.stat_448592698|190", - ["text"] = "+# to Level of all Wind Serpent's Fury Skills", + ["id"] = "explicit.stat_2954116742|1169", + ["text"] = "Allocates Urgent Call", ["type"] = "explicit", }, [1761] = { - ["id"] = "explicit.stat_448592698|188", - ["text"] = "+# to Level of all Primal Strikes Skills", + ["id"] = "explicit.stat_2954116742|17303", + ["text"] = "Allocates Utility Ordnance", ["type"] = "explicit", }, [1762] = { - ["id"] = "explicit.stat_1742651309", - ["text"] = "#% of Fire Damage taken Recouped as Life", + ["id"] = "explicit.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", ["type"] = "explicit", }, [1763] = { - ["id"] = "explicit.stat_448592698|178", - ["text"] = "+# to Level of all Blood Hunt Skills", + ["id"] = "explicit.stat_2954116742|12750", + ["text"] = "Allocates Vale Shelter", ["type"] = "explicit", }, [1764] = { - ["id"] = "explicit.stat_1274947822", - ["text"] = "#% less Damage", + ["id"] = "explicit.stat_2954116742|17762", + ["text"] = "Allocates Vengeance", ["type"] = "explicit", }, [1765] = { - ["id"] = "explicit.stat_2392260628", - ["text"] = "#% increased Runic Ward Regeneration Rate", + ["id"] = "explicit.stat_2954116742|54937", + ["text"] = "Allocates Vengeful Fury", ["type"] = "explicit", }, [1766] = { - ["id"] = "explicit.stat_302024054", - ["text"] = "Regenerate #% of maximum Life per second while Ignited", + ["id"] = "explicit.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", ["type"] = "explicit", }, [1767] = { - ["id"] = "explicit.stat_1370804479", - ["text"] = "Elemental Ailments other than Freeze you inflict are Reflected to you", + ["id"] = "explicit.stat_2954116742|65193", + ["text"] = "Allocates Viciousness", ["type"] = "explicit", }, [1768] = { - ["id"] = "explicit.stat_537850431", - ["text"] = "#% less Spirit", + ["id"] = "explicit.stat_2954116742|22967", + ["text"] = "Allocates Vigilance", ["type"] = "explicit", }, [1769] = { - ["id"] = "explicit.stat_448592698|203", - ["text"] = "+# to Level of all Cull The Weak Skills", + ["id"] = "explicit.stat_2954116742|63739", + ["text"] = "Allocates Vigorous Remnants", ["type"] = "explicit", }, [1770] = { - ["id"] = "explicit.stat_448592698|202", - ["text"] = "+# to Level of all Convalescence Skills", + ["id"] = "explicit.stat_2954116742|36507", + ["text"] = "Allocates Vile Mending", ["type"] = "explicit", }, [1771] = { - ["id"] = "explicit.stat_3359797958", - ["text"] = "#% increased Projectile Speed for Spell Skills", + ["id"] = "explicit.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", ["type"] = "explicit", }, [1772] = { - ["id"] = "explicit.stat_3045154261", - ["text"] = "#% less maximum Mana", + ["id"] = "explicit.stat_2954116742|3492", + ["text"] = "Allocates Void", ["type"] = "explicit", }, [1773] = { - ["id"] = "explicit.stat_448592698|196", - ["text"] = "+# to Level of all Elemental Sundering Skills", + ["id"] = "explicit.stat_2954116742|17882", + ["text"] = "Allocates Volatile Grenades", ["type"] = "explicit", }, [1774] = { - ["id"] = "explicit.stat_4240116297", - ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Damage", + ["id"] = "explicit.stat_2954116742|11366", + ["text"] = "Allocates Volcanic Skin", ["type"] = "explicit", }, [1775] = { - ["id"] = "explicit.stat_448592698|198", - ["text"] = "+# to Level of all Trail of Caltrops Skills", + ["id"] = "explicit.stat_2954116742|46060", + ["text"] = "Allocates Voracious", ["type"] = "explicit", }, [1776] = { - ["id"] = "explicit.stat_2840930496", - ["text"] = "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", + ["id"] = "explicit.stat_2954116742|27303", + ["text"] = "Allocates Vulgar Methods", ["type"] = "explicit", }, [1777] = { - ["id"] = "explicit.stat_2250681686", - ["text"] = "Grenade Skills have +# Cooldown Use", + ["id"] = "explicit.stat_2954116742|25211", + ["text"] = "Allocates Waning Hindrances", ["type"] = "explicit", }, [1778] = { - ["id"] = "explicit.stat_310246444", - ["text"] = "#% increased Damage while Leeching", + ["id"] = "explicit.stat_2954116742|31925", + ["text"] = "Allocates Warding Fetish", ["type"] = "explicit", }, [1779] = { - ["id"] = "explicit.stat_2422708892|49547", - ["text"] = "Passives in Radius of Scarred Faith can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|47418", + ["text"] = "Allocates Warding Potions", ["type"] = "explicit", }, [1780] = { - ["id"] = "explicit.stat_1099200124", - ["text"] = "Gain a Power Charge every Second if you haven't lost Power Charges Recently", + ["id"] = "explicit.stat_2954116742|53187", + ["text"] = "Allocates Warlord Berserker", ["type"] = "explicit", }, [1781] = { - ["id"] = "explicit.stat_448592698|209", - ["text"] = "+# to Level of all Toxic Domain Skills", + ["id"] = "explicit.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", ["type"] = "explicit", }, [1782] = { - ["id"] = "explicit.stat_3076483222|61382", - ["text"] = "Sacrifice up to 3 Divine Orbs to receive double on Trial completion", + ["id"] = "explicit.stat_2954116742|12998", + ["text"] = "Allocates Warm the Heart", ["type"] = "explicit", }, [1783] = { - ["id"] = "explicit.stat_2422708892|49363", - ["text"] = "Passives in Radius of Wildsurge Incantation can be Allocatedwithout being connected to your tree", + ["id"] = "explicit.stat_2954116742|64650", + ["text"] = "Allocates Wary Dodging", ["type"] = "explicit", }, [1784] = { - ["id"] = "explicit.stat_448592698|194", - ["text"] = "+# to Level of all Spear of Solaris Skills", + ["id"] = "explicit.stat_2954116742|51213", + ["text"] = "Allocates Wasting", ["type"] = "explicit", }, [1785] = { - ["id"] = "explicit.stat_1028592286", - ["text"] = "#% chance to Chain an additional time", + ["id"] = "explicit.stat_2954116742|61444", + ["text"] = "Allocates Wasting Casts", ["type"] = "explicit", }, [1786] = { - ["id"] = "explicit.stat_448592698|184", - ["text"] = "+# to Level of all Explosive Spear Skills", + ["id"] = "explicit.stat_2954116742|5580", + ["text"] = "Allocates Watchtowers", ["type"] = "explicit", }, [1787] = { - ["id"] = "explicit.stat_1058934731", - ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", + ["id"] = "explicit.stat_2954116742|51509", + ["text"] = "Allocates Waters of Life", ["type"] = "explicit", }, [1788] = { - ["id"] = "explicit.stat_1382805233", - ["text"] = "#% increased Deflection Rating while moving", + ["id"] = "explicit.stat_2954116742|58198", + ["text"] = "Allocates Well of Power", ["type"] = "explicit", }, [1789] = { - ["id"] = "explicit.stat_287294012", - ["text"] = "# to # Fire Thorns damage per 100 maximum Life", + ["id"] = "explicit.stat_2954116742|2021", + ["text"] = "Allocates Wellspring", ["type"] = "explicit", }, [1790] = { - ["id"] = "explicit.stat_2039822488", - ["text"] = "#% to Maximum Quality", + ["id"] = "explicit.stat_2954116742|37514", + ["text"] = "Allocates Whirling Assault", ["type"] = "explicit", }, [1791] = { - ["id"] = "explicit.stat_4225700219", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", + ["id"] = "explicit.stat_2954116742|46384", + ["text"] = "Allocates Wide Barrier", ["type"] = "explicit", }, [1792] = { - ["id"] = "explicit.stat_3038857426", - ["text"] = "Conquered Small Passive Skills also grant #% increased Spell damage", + ["id"] = "explicit.stat_2954116742|65256", + ["text"] = "Allocates Widespread Coverage", ["type"] = "explicit", }, [1793] = { - ["id"] = "explicit.stat_448592698|216", - ["text"] = "+# to Level of all Elemental Weakness Skills", + ["id"] = "explicit.stat_2954116742|7809", + ["text"] = "Allocates Wild Storm", ["type"] = "explicit", }, [1794] = { - ["id"] = "explicit.stat_1675120891", - ["text"] = "Chance to Deflect is Lucky while on Low Life", + ["id"] = "explicit.stat_2954116742|44373", + ["text"] = "Allocates Wither Away", ["type"] = "explicit", }, [1795] = { - ["id"] = "explicit.stat_448592698|215", - ["text"] = "+# to Level of all Cast on Elemental Ailment Skills", + ["id"] = "explicit.stat_2954116742|57921", + ["text"] = "Allocates Wolf's Howl", ["type"] = "explicit", }, [1796] = { - ["id"] = "explicit.stat_2879725899", - ["text"] = "#% increased Attack Damage while Surrounded", + ["id"] = "explicit.stat_2954116742|62803", + ["text"] = "Allocates Woodland Aspect", ["type"] = "explicit", }, [1797] = { - ["id"] = "explicit.stat_448592698|210", - ["text"] = "+# to Level of all Ice-Tipped Arrows Skills", + ["id"] = "explicit.stat_2954116742|30132", + ["text"] = "Allocates Wrapped Quiver", ["type"] = "explicit", }, [1798] = { - ["id"] = "explicit.stat_1045789614", - ["text"] = "#% increased Critical Hit Chance against Marked Enemies", + ["id"] = "explicit.stat_2954116742|35417", + ["text"] = "Allocates Wyvern's Breath", ["type"] = "explicit", }, [1799] = { - ["id"] = "explicit.stat_1691403182", - ["text"] = "Minions have #% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_2954116742|50485", + ["text"] = "Allocates Zone of Control", ["type"] = "explicit", }, [1800] = { - ["id"] = "explicit.stat_173471035", - ["text"] = "Meta Skills gain #% increased Energy while on Full Mana", + ["id"] = "explicit.stat_2676834156", + ["text"] = "Also grants # Guard", ["type"] = "explicit", }, [1801] = { - ["id"] = "explicit.stat_448592698|218", - ["text"] = "+# to Level of all Tornado Skills", + ["id"] = "explicit.stat_258955603", + ["text"] = "Alternating every 5 seconds:Take #% more Damage from HitsTake #% more Damage over time", ["type"] = "explicit", }, [1802] = { - ["id"] = "explicit.stat_448592698|177", - ["text"] = "+# to Level of all Disengage Skills", + ["id"] = "explicit.stat_4126210832", + ["text"] = "Always Hits", ["type"] = "explicit", }, [1803] = { - ["id"] = "explicit.stat_346374719", - ["text"] = "Recover #% of maximum Mana when you consume a Power Charge", + ["id"] = "explicit.stat_2214130968", + ["text"] = "Always deals Critical Hits against Heavy Stunned Enemies", ["type"] = "explicit", }, [1804] = { - ["id"] = "explicit.stat_359357545", - ["text"] = "Enemies Hindered by you take #% increased Physical Damage", + ["id"] = "explicit.stat_3831171903|1", + ["text"] = "Ancestral Bond", ["type"] = "explicit", }, [1805] = { - ["id"] = "explicit.stat_448592698|212", - ["text"] = "+# to Level of all Mortar Cannon Skills", + ["id"] = "explicit.stat_4021234281", + ["text"] = "Any number of Poisons from this Weapon can affect a target at the same time", ["type"] = "explicit", }, [1806] = { - ["id"] = "explicit.stat_2710292678", - ["text"] = "#% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", + ["id"] = "explicit.stat_2586152168", + ["text"] = "Archon recovery period expires #% faster", ["type"] = "explicit", }, [1807] = { - ["id"] = "explicit.stat_3191479793", - ["text"] = "Offering Skills have #% increased Buff effect", + ["id"] = "explicit.stat_3490187949", + ["text"] = "Area contains # additional Abysses", ["type"] = "explicit", }, [1808] = { - ["id"] = "explicit.stat_3302775221", - ["text"] = "+# maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", + ["id"] = "explicit.stat_358129101", + ["text"] = "Area contains # additional Azmeri Spirit", ["type"] = "explicit", }, [1809] = { - ["id"] = "explicit.stat_448592698|179", - ["text"] = "+# to Level of all Whirling Slash Skills", + ["id"] = "explicit.stat_3757259819", + ["text"] = "Area contains # additional packs of Beasts", ["type"] = "explicit", }, [1810] = { - ["id"] = "explicit.stat_448592698|192", - ["text"] = "+# to Level of all Bloodhound's Mark Skills", + ["id"] = "explicit.stat_3309089125", + ["text"] = "Area contains # additional packs of Bramble Monsters", ["type"] = "explicit", }, [1811] = { - ["id"] = "explicit.stat_448592698|185", - ["text"] = "+# to Level of all Thunderous Leap Skills", + ["id"] = "explicit.stat_1436812886", + ["text"] = "Area contains # additional packs of Ezomyte Monsters", ["type"] = "explicit", }, [1812] = { - ["id"] = "explicit.stat_448592698|189", - ["text"] = "+# to Level of all Fangs of Frost Skills", + ["id"] = "explicit.stat_4130878258", + ["text"] = "Area contains # additional packs of Faridun Monsters", ["type"] = "explicit", }, [1813] = { - ["id"] = "explicit.stat_3566150527", - ["text"] = "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", + ["id"] = "explicit.stat_2949706590", + ["text"] = "Area contains # additional packs of Iron Guards", ["type"] = "explicit", }, [1814] = { - ["id"] = "explicit.stat_448592698|207", - ["text"] = "+# to Level of all Forge Hammer Skills", + ["id"] = "explicit.stat_3592067990", + ["text"] = "Area contains # additional packs of Plagued Monsters", ["type"] = "explicit", }, [1815] = { - ["id"] = "explicit.stat_448592698|205", - ["text"] = "+# to Level of all Iron Ward Skills", + ["id"] = "explicit.stat_1689473577", + ["text"] = "Area contains # additional packs of Transcended Monsters", ["type"] = "explicit", }, [1816] = { - ["id"] = "explicit.stat_2723294374", - ["text"] = "Attacks have added Physical damage equal to #% of maximum Life", + ["id"] = "explicit.stat_240445958", + ["text"] = "Area contains # additional packs of Undead", ["type"] = "explicit", }, [1817] = { - ["id"] = "explicit.stat_448592698|180", - ["text"] = "+# to Level of all Spearfield Skills", + ["id"] = "explicit.stat_4181857719", + ["text"] = "Area contains # additional packs of Vaal Monsters", ["type"] = "explicit", }, [1818] = { - ["id"] = "explicit.stat_4277795662", - ["text"] = "#% to Cold and Lightning Resistances", + ["id"] = "explicit.stat_1640965354", + ["text"] = "Area contains #% increased number of Runic Monster Markers", ["type"] = "explicit", }, [1819] = { - ["id"] = "explicit.stat_4257790560", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", + ["id"] = "explicit.stat_1070816711", + ["text"] = "Area contains an additional Abyss", ["type"] = "explicit", }, [1820] = { - ["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", + ["id"] = "explicit.stat_395808938", + ["text"] = "Area contains an additional Essence", ["type"] = "explicit", }, [1821] = { - ["id"] = "explicit.stat_3143918757", - ["text"] = "#% increased Glory generation", + ["id"] = "explicit.stat_1827854662", + ["text"] = "Area contains an additional Incubator Queen", ["type"] = "explicit", }, [1822] = { - ["id"] = "explicit.stat_448592698|208", - ["text"] = "+# to Level of all Ancestral Cry Skills", + ["id"] = "explicit.stat_2396719220", + ["text"] = "Area contains an additional Magic Chest", ["type"] = "explicit", }, [1823] = { - ["id"] = "explicit.stat_448592698|200", - ["text"] = "+# to Level of all Summon Spectre Skills", + ["id"] = "explicit.stat_231864447", + ["text"] = "Area contains an additional Rare Chest", ["type"] = "explicit", }, [1824] = { - ["id"] = "explicit.stat_3839676903", - ["text"] = "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", + ["id"] = "explicit.stat_1468737867", + ["text"] = "Area contains an additional Shrine", ["type"] = "explicit", }, [1825] = { - ["id"] = "explicit.stat_3024873336", - ["text"] = "Skills have #% chance to not remove Elemental Infusions but still count as consuming them", + ["id"] = "explicit.stat_3240183538", + ["text"] = "Area contains an additional Strongbox", ["type"] = "explicit", }, [1826] = { - ["id"] = "explicit.stat_70760090", - ["text"] = "#% of Physical damage dealt by your Hits causes Blood Loss", + ["id"] = "explicit.stat_2839545956", + ["text"] = "Area contains an additional Summoning Circle", ["type"] = "explicit", }, [1827] = { - ["id"] = "explicit.stat_23669307", - ["text"] = "#% increased Critical Damage Bonus if you've consumed a Power Charge Recently", + ["id"] = "explicit.stat_2571125745", + ["text"] = "Area has #% chance to contain a Shrine", ["type"] = "explicit", }, [1828] = { - ["id"] = "explicit.stat_448592698|238", - ["text"] = "+# to Level of all Briarpatch Skills", + ["id"] = "explicit.stat_2388936716", + ["text"] = "Area has #% chance to contain a Strongbox", ["type"] = "explicit", }, [1829] = { - ["id"] = "explicit.stat_448592698|224", - ["text"] = "+# to Level of all Furious Slam Skills", + ["id"] = "explicit.stat_4098286334", + ["text"] = "Area has #% chance to contain an Essence", ["type"] = "explicit", }, [1830] = { - ["id"] = "explicit.stat_448592698|244", - ["text"] = "+# to Level of all Living Bomb Skills", + ["id"] = "explicit.stat_2890355696", + ["text"] = "Area has #% chance to contain four additional Abysses", ["type"] = "explicit", }, [1831] = { - ["id"] = "explicit.stat_448592698|176", - ["text"] = "+# to Level of all Rapid Assault Skills", + ["id"] = "explicit.stat_3815617979", + ["text"] = "Area has #% increased chance to contain Azmeri Spirits", ["type"] = "explicit", }, [1832] = { - ["id"] = "explicit.stat_2915988346", - ["text"] = "#% to Fire and Cold Resistances", + ["id"] = "explicit.stat_1825943485", + ["text"] = "Area has #% increased chance to contain Essences", ["type"] = "explicit", }, [1833] = { - ["id"] = "explicit.stat_448592698|191", - ["text"] = "+# to Level of all Rake Skills", + ["id"] = "explicit.stat_1352729973", + ["text"] = "Area has #% increased chance to contain Rogue Exiles", ["type"] = "explicit", }, [1834] = { - ["id"] = "explicit.stat_2135541924", - ["text"] = "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", + ["id"] = "explicit.stat_689816330", + ["text"] = "Area has #% increased chance to contain Shrines", ["type"] = "explicit", }, [1835] = { - ["id"] = "explicit.stat_85367160", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", + ["id"] = "explicit.stat_4279535856", + ["text"] = "Area has #% increased chance to contain Strongboxes", ["type"] = "explicit", }, [1836] = { - ["id"] = "explicit.stat_3694078435", - ["text"] = "You take #% of damage from Blocked Hits with a raised Shield", + ["id"] = "explicit.stat_267210597", + ["text"] = "Area has #% increased chance to contain a Summoning Circle", ["type"] = "explicit", }, [1837] = { - ["id"] = "explicit.stat_8816597", - ["text"] = "Conquered Small Passive Skills also grant #% increased Attack damage", + ["id"] = "explicit.stat_349586058", + ["text"] = "Area has patches of Chilled Ground", ["type"] = "explicit", }, [1838] = { - ["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", + ["id"] = "explicit.stat_133340941", + ["text"] = "Area has patches of Ignited Ground", ["type"] = "explicit", }, [1839] = { - ["id"] = "explicit.stat_569299859", - ["text"] = "#% to all maximum Resistances", + ["id"] = "explicit.stat_3190283174", + ["text"] = "Area has patches of Mana Siphoning Ground", ["type"] = "explicit", }, [1840] = { - ["id"] = "explicit.stat_3831171903|12", - ["text"] = "Necromantic Talisman", + ["id"] = "explicit.stat_3477720557", + ["text"] = "Area has patches of Shocked Ground", ["type"] = "explicit", }, [1841] = { - ["id"] = "explicit.stat_448592698|183", - ["text"] = "+# to Level of all Twister Skills", + ["id"] = "explicit.stat_3550168289", + ["text"] = "Area is inhabited by # additional Rogue Exile", ["type"] = "explicit", }, [1842] = { - ["id"] = "explicit.stat_448592698|242", - ["text"] = "+# to Level of all Barkskin Skills", + ["id"] = "explicit.stat_2741291867", + ["text"] = "Area is overrun by the Abyssal", ["type"] = "explicit", }, [1843] = { - ["id"] = "explicit.stat_448592698|214", - ["text"] = "+# to Level of all Siphon Elements Skills", + ["id"] = "explicit.stat_3049505189", + ["text"] = "Areas which contain Breaches have #% chance to contain an additional Breach", ["type"] = "explicit", }, [1844] = { - ["id"] = "explicit.stat_448592698|229", - ["text"] = "+# to Level of all Flame Breath Skills", + ["id"] = "explicit.stat_2440265466", + ["text"] = "Areas which contain Breaches have #% chance to contain three additional Breaches", ["type"] = "explicit", }, [1845] = { - ["id"] = "explicit.stat_448592698|221", - ["text"] = "+# to Level of all Pounce Skills", + ["id"] = "explicit.stat_3042527515", + ["text"] = "Areas with Map Powerful Map Bosses contain an additional Shrine", ["type"] = "explicit", }, [1846] = { - ["id"] = "explicit.stat_448592698|241", - ["text"] = "+# to Level of all Walking Calamity Skills", + ["id"] = "explicit.stat_775597083", + ["text"] = "Areas with Powerful Map Bosses contain an additional Azmeri Spirit", ["type"] = "explicit", }, [1847] = { - ["id"] = "explicit.stat_1829333149", - ["text"] = "Conquered Small Passive Skills also grant #% increased Physical damage", + ["id"] = "explicit.stat_2162684861", + ["text"] = "Areas with Powerful Map Bosses contain an additional Essence", ["type"] = "explicit", }, [1848] = { - ["id"] = "explicit.stat_3593401321", - ["text"] = "Hits have #% chance to treat Enemy Monster Elemental Resistance values as inverted", + ["id"] = "explicit.stat_3042527515", + ["text"] = "Areas with Powerful Map Bosses contain an additional Shrine", ["type"] = "explicit", }, [1849] = { - ["id"] = "explicit.stat_448592698|181", - ["text"] = "+# to Level of all Lightning Spear Skills", + ["id"] = "explicit.stat_3040603554", + ["text"] = "Areas with Powerful Map Bosses contain an additional Strongbox", ["type"] = "explicit", }, [1850] = { - ["id"] = "explicit.stat_2601021356", - ["text"] = "Conquered Small Passive Skills also grant #% increased Chaos damage", + ["id"] = "explicit.stat_713266390", + ["text"] = "Armour is increased by Uncapped Fire Resistance", ["type"] = "explicit", }, [1851] = { - ["id"] = "explicit.stat_3537994888", - ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", + ["id"] = "explicit.stat_2421436896", + ["text"] = "Arrows Fork", ["type"] = "explicit", }, [1852] = { - ["id"] = "explicit.stat_448592698|223", - ["text"] = "+# to Level of all Thunderstorm Skills", + ["id"] = "explicit.stat_2138799639", + ["text"] = "Arrows Pierce all targets after Forking", ["type"] = "explicit", }, [1853] = { - ["id"] = "explicit.stat_1338406168", - ["text"] = "Maximum amount of Guard is based on maximum Energy Shield instead", + ["id"] = "explicit.stat_3423006863", + ["text"] = "Arrows Pierce an additional Target", ["type"] = "explicit", }, [1854] = { - ["id"] = "explicit.stat_448592698|186", - ["text"] = "+# to Level of all Herald of Blood Skills", + ["id"] = "explicit.stat_1243721142", + ["text"] = "Arrows Return if they have Pierced a target which had Fully Broken Armour", ["type"] = "explicit", }, [1855] = { - ["id"] = "explicit.stat_467146530", - ["text"] = "Skills Cost Divinity instead of Mana or Life", + ["id"] = "explicit.stat_300723956", + ["text"] = "Attack Hits apply Incision", ["type"] = "explicit", }, [1856] = { - ["id"] = "explicit.stat_448592698|213", - ["text"] = "+# to Level of all Mirage Archer Skills", + ["id"] = "explicit.stat_33298888", + ["text"] = "Attack Hits inflict Spectral Fire for # seconds", ["type"] = "explicit", }, [1857] = { - ["id"] = "explicit.stat_448592698|201", - ["text"] = "+# to Level of all Tamed Companion Skills", + ["id"] = "explicit.stat_2720781168", + ["text"] = "Attack Projectiles Return if they Pierced at least # times", ["type"] = "explicit", }, [1858] = { - ["id"] = "explicit.stat_2189073790", - ["text"] = "Projectiles have #% chance to Fork if you've dealt a Melee Hit in the past eight seconds", + ["id"] = "explicit.stat_3868118796", + ["text"] = "Attacks Chain an additional time", ["type"] = "explicit", }, [1859] = { - ["id"] = "explicit.stat_448592698|206", - ["text"] = "+# to Level of all Fortifying Cry Skills", + ["id"] = "explicit.stat_1484500028", + ["text"] = "Attacks Gain #% of Damage as Extra Cold Damage", ["type"] = "explicit", }, [1860] = { - ["id"] = "explicit.stat_3831171903|30", - ["text"] = "Scarred Faith", + ["id"] = "explicit.stat_1049080093", + ["text"] = "Attacks Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, [1861] = { - ["id"] = "explicit.stat_4100842845", - ["text"] = "Mana Recovery from Flasks can Overflow maximum Mana during Effect", + ["id"] = "explicit.stat_261503687", + ["text"] = "Attacks Gain #% of Physical Damage as extra Chaos Damage", ["type"] = "explicit", }, [1862] = { - ["id"] = "explicit.stat_448592698|240", - ["text"] = "+# to Level of all Savage Fury Skills", + ["id"] = "explicit.stat_3550545679", + ["text"] = "Attacks consume an Endurance Charge to Critically Hit", ["type"] = "explicit", }, [1863] = { - ["id"] = "explicit.stat_3831171903|16", - ["text"] = "Primal Hunger", + ["id"] = "explicit.stat_2157692677", + ["text"] = "Attacks cost an additional #% of your maximum Mana", ["type"] = "explicit", }, [1864] = { - ["id"] = "explicit.stat_891466814", - ["text"] = "Create a Fragment of Divinity in your Presence every 4 seconds", + ["id"] = "explicit.stat_3258071686", + ["text"] = "Attacks have Added maximum Lightning Damage equal to #% of maximum Mana", ["type"] = "explicit", }, [1865] = { - ["id"] = "explicit.stat_3831171903|29", - ["text"] = "Ritual Cadence", + ["id"] = "explicit.stat_2723294374", + ["text"] = "Attacks have added Physical damage equal to #% of maximum Life", ["type"] = "explicit", }, [1866] = { - ["id"] = "explicit.stat_3831171903|19", - ["text"] = "Oasis", + ["id"] = "explicit.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", ["type"] = "explicit", }, [1867] = { - ["id"] = "explicit.stat_3831171903|15", - ["text"] = "Eternal Youth", + ["id"] = "explicit.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", ["type"] = "explicit", }, [1868] = { - ["id"] = "explicit.stat_1689748350", - ["text"] = "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", + ["id"] = "explicit.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", ["type"] = "explicit", }, [1869] = { - ["id"] = "explicit.stat_2780670304", - ["text"] = "Conquered Small Passive Skills also grant #% increased Energy Shield", + ["id"] = "explicit.stat_3620731914", + ["text"] = "Attacks with this Weapon gain #% of Physical damage as Extra damage of each Element", ["type"] = "explicit", }, [1870] = { - ["id"] = "explicit.stat_3831171903|24", - ["text"] = "Bulwark", + ["id"] = "explicit.stat_566086661", + ["text"] = "Attacks with this Weapon have Added Cold Damage equal to #% to #% of maximum Mana", ["type"] = "explicit", }, [1871] = { - ["id"] = "explicit.stat_1434716233", - ["text"] = "Warcries Empower an additional Attack", + ["id"] = "explicit.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "explicit", }, [1872] = { - ["id"] = "explicit.stat_4147510958", - ["text"] = "Sealed Skills have # to maximum Seals", + ["id"] = "explicit.stat_3831171903|4", + ["text"] = "Avatar of Fire", ["type"] = "explicit", }, [1873] = { - ["id"] = "explicit.stat_3831171903|22", - ["text"] = "Glancing Blows", + ["id"] = "explicit.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", ["type"] = "explicit", }, [1874] = { - ["id"] = "explicit.stat_3831171903|2", - ["text"] = "Giant's Blood", + ["id"] = "explicit.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", ["type"] = "explicit", }, [1875] = { - ["id"] = "explicit.stat_1938221597", - ["text"] = "Conquered Attribute Passive Skills also grant # to Dexterity", + ["id"] = "explicit.stat_1761741119", + ["text"] = "Banners always have maximum Valour", ["type"] = "explicit", }, [1876] = { - ["id"] = "explicit.stat_2954116742|50562", - ["text"] = "Allocates Barbaric Strength", + ["id"] = "explicit.stat_2635559734", + ["text"] = "Base Critical Hit Chance for Attacks with Weapons is #%", ["type"] = "explicit", }, [1877] = { - ["id"] = "explicit.stat_3874491706", - ["text"] = "All Mage's Legacies have #% increased effect per duplicate Mage's Legacy you have", + ["id"] = "explicit.stat_4287372938", + ["text"] = "Bear Skills Convert #% of Physical Damage to Fire Damage", ["type"] = "explicit", }, [1878] = { - ["id"] = "explicit.stat_3831171903|4", - ["text"] = "Avatar of Fire", + ["id"] = "explicit.stat_335885735", + ["text"] = "Bears the Mark of the Abyssal Lord", ["type"] = "explicit", }, [1879] = { - ["id"] = "explicit.stat_3343033032", - ["text"] = "Conquered Small Passive Skills also grant Minions deal #% increased damage", + ["id"] = "explicit.stat_1451444093", + ["text"] = "Bifurcates Critical Hits", ["type"] = "explicit", }, [1880] = { - ["id"] = "explicit.stat_3831171903|31", - ["text"] = "Lord of the Wilds", + ["id"] = "explicit.stat_3831171903|28", + ["text"] = "Blackflame Covenant", ["type"] = "explicit", }, [1881] = { - ["id"] = "explicit.stat_1034611536", - ["text"] = "Notable Passive Skills in Radius also grant Charms gain # charge per Second", + ["id"] = "explicit.stat_1016759424", + ["text"] = "Bleeding you inflict deals Fire Damage instead of Physical Damage", ["type"] = "explicit", }, [1882] = { - ["id"] = "explicit.stat_2116424886", - ["text"] = "#% increased Life Regeneration Rate while moving", + ["id"] = "explicit.stat_841429130", + ["text"] = "Bleeding you inflict is Aggravated", ["type"] = "explicit", }, [1883] = { - ["id"] = "explicit.stat_3831171903|11", - ["text"] = "Whispers of Doom", + ["id"] = "explicit.stat_3450276548", + ["text"] = "Blind Chilled enemies on Hit", ["type"] = "explicit", }, [1884] = { - ["id"] = "explicit.stat_4264952559", - ["text"] = "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", + ["id"] = "explicit.stat_3587953142", + ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", ["type"] = "explicit", }, [1885] = { - ["id"] = "explicit.stat_3831171903|32", - ["text"] = "Wildsurge Incantation", + ["id"] = "explicit.stat_60826109", + ["text"] = "Blind Targets when you Poison them", ["type"] = "explicit", }, [1886] = { - ["id"] = "explicit.stat_448592698|193", - ["text"] = "+# to Level of all Tamed Companion Skills", + ["id"] = "explicit.stat_4195198267", + ["text"] = "Blocking Damage Poisons the Enemy as though dealing # Base Chaos Damage", ["type"] = "explicit", }, [1887] = { - ["id"] = "explicit.stat_2558253923", - ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", + ["id"] = "explicit.stat_3831171903|5", + ["text"] = "Blood Magic", ["type"] = "explicit", }, [1888] = { - ["id"] = "explicit.stat_448592698|239", - ["text"] = "+# to Level of all Eternal Rage Skills", + ["id"] = "explicit.stat_2801937280", + ["text"] = "Blood Magic", ["type"] = "explicit", }, [1889] = { - ["id"] = "explicit.stat_3831171903|18", - ["text"] = "Heartstopper", + ["id"] = "explicit.stat_842299438", + ["text"] = "Bolts fired by Crossbow Attacks have #% chance to notexpend Ammunition if you've Reloaded Recently", ["type"] = "explicit", }, [1890] = { - ["id"] = "explicit.stat_740421489", - ["text"] = "Ice Crystals have #% increased maximum Life per 5% Cold Resistance you have", + ["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", }, [1891] = { - ["id"] = "explicit.stat_2839036860", - ["text"] = "#% increased Endurance, Frenzy and Power Charge Duration", + ["id"] = "explicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "explicit", }, [1892] = { - ["id"] = "explicit.stat_1138742368", - ["text"] = "Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value", + ["id"] = "explicit.stat_2734787892", + ["text"] = "Breach Hives have an additional wave of Hiveborn Monsters", ["type"] = "explicit", }, [1893] = { - ["id"] = "explicit.stat_3470876581", - ["text"] = "# to Evasion Rating while on Low Life", + ["id"] = "explicit.stat_1217651243", + ["text"] = "Breaches expand to at least # metre in radiusBreaches remain open while there are alive Breach Monsters", ["type"] = "explicit", }, [1894] = { - ["id"] = "explicit.stat_3831171903|13", - ["text"] = "Conduit", + ["id"] = "explicit.stat_1210760818", + ["text"] = "Breaches have #% increased Monster density", ["type"] = "explicit", }, [1895] = { - ["id"] = "explicit.stat_3831171903|1", - ["text"] = "Ancestral Bond", + ["id"] = "explicit.stat_2224050171", + ["text"] = "Breaches in Area contain # additional Clasped Hand", ["type"] = "explicit", }, [1896] = { - ["id"] = "explicit.stat_3831171903|6", - ["text"] = "Resolute Technique", + ["id"] = "explicit.stat_1090596078", + ["text"] = "Breaches in Area spawn #% increased Magic Monsters", ["type"] = "explicit", }, [1897] = { - ["id"] = "explicit.stat_3602667353", - ["text"] = "#% chance to inflict Exposure on Hit", + ["id"] = "explicit.stat_1653625239", + ["text"] = "Breaches in Area spawn an additional Rare Monster", ["type"] = "explicit", }, [1898] = { - ["id"] = "explicit.stat_3831171903|27", - ["text"] = "Hollow Palm Technique", + ["id"] = "explicit.stat_2224050171", + ["text"] = "Breaches in your Maps contain # additional Clasped Hand", ["type"] = "explicit", }, [1899] = { - ["id"] = "explicit.stat_448592698|219", - ["text"] = "+# to Level of all Volcano Skills", + ["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", }, [1900] = { - ["id"] = "explicit.stat_3831171903|25", - ["text"] = "Trusted Kinship", + ["id"] = "explicit.stat_2504358770", + ["text"] = "Breaches in your Maps open and close #% faster", ["type"] = "explicit", }, [1901] = { - ["id"] = "explicit.stat_2653231923", - ["text"] = "#% increased Mana Cost Efficiency of Spells", + ["id"] = "explicit.stat_1090596078", + ["text"] = "Breaches in your Maps spawn #% increased Magic Monsters", ["type"] = "explicit", }, [1902] = { - ["id"] = "explicit.stat_448592698|228", - ["text"] = "+# to Level of all Oil Barrage Skills", + ["id"] = "explicit.stat_1653625239", + ["text"] = "Breaches in your Maps spawn an additional Rare Monster", ["type"] = "explicit", }, [1903] = { - ["id"] = "explicit.stat_3939216292", - ["text"] = "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", + ["id"] = "explicit.stat_2504358770", + ["text"] = "Breaches open and close #% faster", ["type"] = "explicit", }, [1904] = { - ["id"] = "explicit.stat_3872306017", - ["text"] = "#% increased Power Charge Duration", + ["id"] = "explicit.stat_1776411443", + ["text"] = "Break #% increased Armour", ["type"] = "explicit", }, [1905] = { - ["id"] = "explicit.stat_3831171903|33", - ["text"] = "Zealot's Oath", + ["id"] = "explicit.stat_1103616075", + ["text"] = "Break Armour equal to #% of Physical Damage dealt", ["type"] = "explicit", }, [1906] = { - ["id"] = "explicit.stat_264262054|5", - ["text"] = "Legacy of Gold", + ["id"] = "explicit.stat_1286199571", + ["text"] = "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", ["type"] = "explicit", }, [1907] = { - ["id"] = "explicit.stat_3831171903|23", - ["text"] = "Elemental Equilibrium", + ["id"] = "explicit.stat_949573361", + ["text"] = "Breaks Armour equal to #% of damage from Hits with this weapon", ["type"] = "explicit", }, [1908] = { - ["id"] = "explicit.stat_3831171903|8", - ["text"] = "Chaos Inoculation", + ["id"] = "explicit.stat_3831171903|24", + ["text"] = "Bulwark", ["type"] = "explicit", }, [1909] = { - ["id"] = "explicit.stat_448592698|230", - ["text"] = "+# to Level of all Entangle Skills", + ["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", }, [1910] = { - ["id"] = "explicit.stat_1586136369", - ["text"] = "#% increased Evasion Rating while Sprinting", + ["id"] = "explicit.stat_738592688", + ["text"] = "Can Allocate Passive Skills from the Mercenary's starting point", ["type"] = "explicit", }, [1911] = { - ["id"] = "explicit.stat_3831171903|28", - ["text"] = "Blackflame Covenant", + ["id"] = "explicit.stat_3116298775", + ["text"] = "Can Allocate Passive Skills from the Ranger's starting point", ["type"] = "explicit", }, [1912] = { - ["id"] = "explicit.stat_2954116742|30132", - ["text"] = "Allocates Wrapped Quiver", + ["id"] = "explicit.stat_2218479786", + ["text"] = "Can Allocate Passive Skills from the Shadow's starting point", ["type"] = "explicit", }, [1913] = { - ["id"] = "explicit.stat_2954116742|27303", - ["text"] = "Allocates Vulgar Methods", + ["id"] = "explicit.stat_3359496001", + ["text"] = "Can Allocate Passive Skills from the Sorceress's starting point", ["type"] = "explicit", }, [1914] = { - ["id"] = "explicit.stat_2954116742|7809", - ["text"] = "Allocates Wild Storm", + ["id"] = "explicit.stat_1688294122", + ["text"] = "Can Allocate Passive Skills from the Templar's starting point", ["type"] = "explicit", }, [1915] = { - ["id"] = "explicit.stat_448592698|226", - ["text"] = "+# to Level of all Spell Totem Skills", + ["id"] = "explicit.stat_1359862146", + ["text"] = "Can Allocate Passive Skills from the Warrior's starting point", ["type"] = "explicit", }, [1916] = { - ["id"] = "explicit.stat_2954116742|57388", - ["text"] = "Allocates Overwhelming Strike", + ["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", }, [1917] = { - ["id"] = "explicit.stat_3399401168", - ["text"] = "#% to Fire Spell Critical Hit Chance", + ["id"] = "explicit.stat_2500154144", + ["text"] = "Can Reroll Favours at Ritual Altars in your Maps twice as many times", ["type"] = "explicit", }, [1918] = { - ["id"] = "explicit.stat_448592698|211", - ["text"] = "+# to Level of all Frost Darts Skills", + ["id"] = "explicit.stat_1161337167", + ["text"] = "Can be modified while Corrupted", ["type"] = "explicit", }, [1919] = { - ["id"] = "explicit.stat_448592698|236", - ["text"] = "+# to Level of all Lunar Blessing Skills", + ["id"] = "explicit.stat_1135194732", + ["text"] = "Can have # additional Instilled Modifiers", ["type"] = "explicit", }, [1920] = { - ["id"] = "explicit.stat_448592698|231", - ["text"] = "+# to Level of all Fury of the Mountain Skills", + ["id"] = "explicit.stat_3418590244", + ["text"] = "Can only be applied to Precursor Tower MapsCompleting the Tower makes all nearby Maps accessible", ["type"] = "explicit", }, [1921] = { - ["id"] = "explicit.stat_878697053", - ["text"] = "#% increased maximum Divinity", + ["id"] = "explicit.stat_4007482102", + ["text"] = "Can't use Body Armour", ["type"] = "explicit", }, [1922] = { - ["id"] = "explicit.stat_1148433552", - ["text"] = "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", + ["id"] = "explicit.stat_64726306", + ["text"] = "Can't use other Rings", ["type"] = "explicit", }, [1923] = { - ["id"] = "explicit.stat_448592698|227", - ["text"] = "+# to Level of all Wing Blast Skills", + ["id"] = "explicit.stat_1465760952", + ["text"] = "Cannot Block", ["type"] = "explicit", }, [1924] = { - ["id"] = "explicit.stat_4266776872", - ["text"] = "Glancing Blows", + ["id"] = "explicit.stat_474452755", + ["text"] = "Cannot Evade Enemy Attacks", ["type"] = "explicit", }, [1925] = { - ["id"] = "explicit.stat_448592698|225", - ["text"] = "+# to Level of all Ferocious Roar Skills", + ["id"] = "explicit.stat_4062529591", + ["text"] = "Cannot Immobilise enemies", ["type"] = "explicit", }, [1926] = { - ["id"] = "explicit.stat_448592698|217", - ["text"] = "+# to Level of all Rolling Magma Skills", + ["id"] = "explicit.stat_1458880585", + ["text"] = "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", ["type"] = "explicit", }, [1927] = { - ["id"] = "explicit.stat_3831171903|26", - ["text"] = "Crimson Assault", + ["id"] = "explicit.stat_1436284579", + ["text"] = "Cannot be Blinded", ["type"] = "explicit", }, [1928] = { - ["id"] = "explicit.stat_2954116742|38535", - ["text"] = "Allocates Stormcharged", + ["id"] = "explicit.stat_331731406", + ["text"] = "Cannot be Ignited", ["type"] = "explicit", }, [1929] = { - ["id"] = "explicit.stat_1245896889", - ["text"] = "Life Recovery from Flasks can Overflow Maximum Life", + ["id"] = "explicit.stat_1000739259", + ["text"] = "Cannot be Light Stunned", ["type"] = "explicit", }, [1930] = { - ["id"] = "explicit.stat_448592698|237", - ["text"] = "+# to Level of all Arctic Howl Skills", + ["id"] = "explicit.stat_2252419505", + ["text"] = "Cannot be Light Stunned by Deflected Hits", ["type"] = "explicit", }, [1931] = { - ["id"] = "explicit.stat_2954116742|26107", - ["text"] = "Allocates Kite Runner", + ["id"] = "explicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", ["type"] = "explicit", }, [1932] = { - ["id"] = "explicit.stat_448592698|234", - ["text"] = "+# to Level of all Devour Skills", + ["id"] = "explicit.stat_491899612", + ["text"] = "Cannot be Shocked", ["type"] = "explicit", }, [1933] = { - ["id"] = "explicit.stat_2942439603", - ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", + ["id"] = "explicit.stat_1237409891", + ["text"] = "Cannot be Used manually", ["type"] = "explicit", }, [1934] = { - ["id"] = "explicit.stat_1980802737", - ["text"] = "Grenade Skills Fire an additional Projectile", + ["id"] = "explicit.stat_398335579", + ["text"] = "Cannot be used while Manifested", ["type"] = "explicit", }, [1935] = { - ["id"] = "explicit.stat_2954116742|28975", - ["text"] = "Allocates Pure Power", + ["id"] = "explicit.stat_410952253", + ["text"] = "Cannot have Energy Shield", ["type"] = "explicit", }, [1936] = { - ["id"] = "explicit.stat_1818915622", - ["text"] = "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", + ["id"] = "explicit.stat_4056809290", + ["text"] = "Cannot inflict Elemental Ailments", ["type"] = "explicit", }, [1937] = { - ["id"] = "explicit.stat_2488361432", - ["text"] = "#% increased Monster Cast Speed", + ["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", }, [1938] = { - ["id"] = "explicit.stat_2306522833", - ["text"] = "#% increased Monster Movement Speed", + ["id"] = "explicit.stat_1961849903", + ["text"] = "Cannot use Projectile Attacks", ["type"] = "explicit", }, [1939] = { - ["id"] = "explicit.stat_1913583994", - ["text"] = "#% increased Monster Attack Speed", + ["id"] = "explicit.stat_65135897", + ["text"] = "Cannot use Shield Skills", ["type"] = "explicit", }, [1940] = { - ["id"] = "explicit.stat_3198163869", - ["text"] = "Raven-Touched", + ["id"] = "explicit.stat_2598171606", + ["text"] = "Cannot use Warcries", ["type"] = "explicit", }, [1941] = { - ["id"] = "explicit.stat_3831171903|10", - ["text"] = "Mind Over Matter", + ["id"] = "explicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", ["type"] = "explicit", }, [1942] = { - ["id"] = "explicit.stat_1133965702", - ["text"] = "#% increased Gold found in this Area", + ["id"] = "explicit.stat_2091621414", + ["text"] = "Causes Bleeding on Hit", ["type"] = "explicit", }, [1943] = { - ["id"] = "explicit.stat_1133965702", - ["text"] = "#% increased Gold found in your Maps", + ["id"] = "explicit.stat_1559935218", + ["text"] = "Causes Daze buildup equal to #% of Damage dealt", ["type"] = "explicit", }, [1944] = { - ["id"] = "explicit.stat_3831171903|5", - ["text"] = "Blood Magic", + ["id"] = "explicit.stat_769129523", + ["text"] = "Causes Double Stun Buildup", ["type"] = "explicit", }, [1945] = { - ["id"] = "explicit.stat_3831171903|17", - ["text"] = "Dance With Death", + ["id"] = "explicit.stat_2957287092", + ["text"] = "Chance to Block Damage is Lucky", ["type"] = "explicit", }, [1946] = { - ["id"] = "explicit.stat_3831171903|14", - ["text"] = "Resonance", + ["id"] = "explicit.stat_1675120891", + ["text"] = "Chance to Deflect is Lucky while on Low Life", ["type"] = "explicit", }, [1947] = { - ["id"] = "explicit.stat_504210122", - ["text"] = "#% chance to gain an additional random Charge when you gain a Charge", + ["id"] = "explicit.stat_2315177528", + ["text"] = "Chaos Damage from Hits also Contributes to Electrocute Buildup", ["type"] = "explicit", }, [1948] = { - ["id"] = "explicit.stat_264262054|9", - ["text"] = "Legacy of Ruby", + ["id"] = "explicit.stat_2973498992", + ["text"] = "Chaos Damage from Hits also Contributes to Freeze Buildup", ["type"] = "explicit", }, [1949] = { - ["id"] = "explicit.stat_3831171903|21", - ["text"] = "Iron Reflexes", + ["id"] = "explicit.stat_2418601510", + ["text"] = "Chaos Damage from Hits also Contributes to Shock Chance", ["type"] = "explicit", }, [1950] = { - ["id"] = "explicit.stat_448592698|243", - ["text"] = "+# to Level of all Feral Invocation Skills", + ["id"] = "explicit.stat_3831171903|8", + ["text"] = "Chaos Inoculation", ["type"] = "explicit", }, [1951] = { - ["id"] = "explicit.stat_2896801635", - ["text"] = "Convert 100% of maximum Energy Shield to maximum Divinity", + ["id"] = "explicit.stat_2439129490", + ["text"] = "Chaos Resistance is zero", ["type"] = "explicit", }, [1952] = { - ["id"] = "explicit.stat_2954116742|62230", - ["text"] = "Allocates Patient Barrier", + ["id"] = "explicit.stat_3480095574", + ["text"] = "Charms applied to you have #% increased Effect", ["type"] = "explicit", }, [1953] = { - ["id"] = "explicit.stat_886088880", - ["text"] = "Your Heavy Stun buildup empties #% faster", + ["id"] = "explicit.stat_185580205", + ["text"] = "Charms gain # charge per Second", ["type"] = "explicit", }, [1954] = { - ["id"] = "explicit.stat_321970274", - ["text"] = "#% of Physical Damage taken as Lightning while your Shield is raised", + ["id"] = "explicit.stat_2620375641", + ["text"] = "Charms use no Charges", ["type"] = "explicit", }, [1955] = { - ["id"] = "explicit.stat_3831171903|20", - ["text"] = "Vaal Pact", + ["id"] = "explicit.stat_1261612903", + ["text"] = "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", ["type"] = "explicit", }, [1956] = { - ["id"] = "explicit.stat_3910614548", - ["text"] = "#% increased Attack and Cast Speed if you've summoned a Totem Recently", + ["id"] = "explicit.stat_4207433208", + ["text"] = "Cold Resistance is unaffected by Area Penalties", ["type"] = "explicit", }, [1957] = { - ["id"] = "explicit.stat_448592698|220", - ["text"] = "+# to Level of all Wolf Pack Skills", + ["id"] = "explicit.stat_234296660", + ["text"] = "Companions deal #% increased Damage", ["type"] = "explicit", }, [1958] = { - ["id"] = "explicit.stat_448592698|235", - ["text"] = "+# to Level of all Thrashing Vines Skills", + ["id"] = "explicit.stat_1067622524", + ["text"] = "Companions deal #% increased damage to your Marked targets", ["type"] = "explicit", }, [1959] = { - ["id"] = "explicit.stat_264262054|14", - ["text"] = "Legacy of Topaz", + ["id"] = "explicit.stat_666077204", + ["text"] = "Companions have #% increased Attack Speed", ["type"] = "explicit", }, [1960] = { - ["id"] = "explicit.stat_970480050", - ["text"] = "Conquered Small Passive Skills also grant #% increased Armour", + ["id"] = "explicit.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", ["type"] = "explicit", }, [1961] = { - ["id"] = "explicit.stat_1283490138", - ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", + ["id"] = "explicit.stat_3831171903|13", + ["text"] = "Conduit", ["type"] = "explicit", }, [1962] = { - ["id"] = "explicit.stat_448592698|233", - ["text"] = "+# to Level of all Lunar Assault Skills", + ["id"] = "explicit.stat_1938221597", + ["text"] = "Conquered Attribute Passive Skills also grant # to Dexterity", ["type"] = "explicit", }, [1963] = { - ["id"] = "explicit.stat_830161081", - ["text"] = "#% increased Runic Ward", + ["id"] = "explicit.stat_3116427713", + ["text"] = "Conquered Attribute Passive Skills also grant # to Intelligence", ["type"] = "explicit", }, [1964] = { - ["id"] = "explicit.stat_3831171903|7", - ["text"] = "Pain Attunement", + ["id"] = "explicit.stat_3871530702", + ["text"] = "Conquered Attribute Passive Skills also grant # to Strength", ["type"] = "explicit", }, [1965] = { - ["id"] = "explicit.stat_2954116742|34473", - ["text"] = "Allocates Spaghettification", + ["id"] = "explicit.stat_1119086588", + ["text"] = "Conquered Attribute Passive Skills also grant # to Tribute", ["type"] = "explicit", }, [1966] = { - ["id"] = "explicit.stat_2954116742|55193", - ["text"] = "Allocates Subterfuge Mask", + ["id"] = "explicit.stat_2552484522", + ["text"] = "Conquered Attribute Passive Skills also grant # to all Attributes", ["type"] = "explicit", }, [1967] = { - ["id"] = "explicit.stat_2357996603", - ["text"] = "#% increased Totem Duration", + ["id"] = "explicit.stat_970480050", + ["text"] = "Conquered Small Passive Skills also grant #% increased Armour", ["type"] = "explicit", }, [1968] = { - ["id"] = "explicit.stat_3831171903|9", - ["text"] = "Eldritch Battery", + ["id"] = "explicit.stat_8816597", + ["text"] = "Conquered Small Passive Skills also grant #% increased Attack damage", ["type"] = "explicit", }, [1969] = { - ["id"] = "explicit.stat_264262054|12", - ["text"] = "Legacy of Stibnite", + ["id"] = "explicit.stat_2601021356", + ["text"] = "Conquered Small Passive Skills also grant #% increased Chaos damage", ["type"] = "explicit", }, [1970] = { - ["id"] = "explicit.stat_2954116742|56776", - ["text"] = "Allocates Cooked", + ["id"] = "explicit.stat_1283490138", + ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", ["type"] = "explicit", }, [1971] = { - ["id"] = "explicit.stat_2954116742|46197", - ["text"] = "Allocates Careful Assassin", + ["id"] = "explicit.stat_4240116297", + ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Damage", ["type"] = "explicit", }, [1972] = { - ["id"] = "explicit.stat_3831171903|3", - ["text"] = "Unwavering Stance", + ["id"] = "explicit.stat_2780670304", + ["text"] = "Conquered Small Passive Skills also grant #% increased Energy Shield", ["type"] = "explicit", }, [1973] = { @@ -10053,4963 +10057,4963 @@ return { ["type"] = "explicit", }, [1974] = { - ["id"] = "explicit.stat_2954116742|28044", - ["text"] = "Allocates Coming Calamity", + ["id"] = "explicit.stat_4264952559", + ["text"] = "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", ["type"] = "explicit", }, [1975] = { - ["id"] = "explicit.stat_1486714289", - ["text"] = "Minions have #% chance to inflict Gruelling Madness on Hit", + ["id"] = "explicit.stat_1818915622", + ["text"] = "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", ["type"] = "explicit", }, [1976] = { - ["id"] = "explicit.stat_264262054|1", - ["text"] = "Legacy of Amethyst", + ["id"] = "explicit.stat_1829333149", + ["text"] = "Conquered Small Passive Skills also grant #% increased Physical damage", ["type"] = "explicit", }, [1977] = { - ["id"] = "explicit.stat_2954116742|60034", - ["text"] = "Allocates Falcon Dive", + ["id"] = "explicit.stat_3038857426", + ["text"] = "Conquered Small Passive Skills also grant #% increased Spell damage", ["type"] = "explicit", }, [1978] = { - ["id"] = "explicit.stat_264262054|11", - ["text"] = "Legacy of Silver", + ["id"] = "explicit.stat_2475870935", + ["text"] = "Conquered Small Passive Skills also grant #% increased Stun Threshold", ["type"] = "explicit", }, [1979] = { - ["id"] = "explicit.stat_2122183138", - ["text"] = "# Mana gained when you Block", + ["id"] = "explicit.stat_3343033032", + ["text"] = "Conquered Small Passive Skills also grant Minions deal #% increased damage", ["type"] = "explicit", }, [1980] = { - ["id"] = "explicit.stat_2954116742|56265", - ["text"] = "Allocates Throatseeker", + ["id"] = "explicit.stat_1683568809", + ["text"] = "Convert #% of Fire Damage with Mace Skills to Cold Damage", ["type"] = "explicit", }, [1981] = { - ["id"] = "explicit.stat_2954116742|17340", - ["text"] = "Allocates Adrenaline Rush", + ["id"] = "explicit.stat_4274637468", + ["text"] = "Convert #% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%", ["type"] = "explicit", }, [1982] = { - ["id"] = "explicit.stat_3998863698", - ["text"] = "Monsters have #% increased Freeze Buildup", + ["id"] = "explicit.stat_2896801635", + ["text"] = "Convert 100% of maximum Energy Shield to maximum Divinity", ["type"] = "explicit", }, [1983] = { - ["id"] = "explicit.stat_953593695", - ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", + ["id"] = "explicit.stat_3351912431", + ["text"] = "Convert All Armour to Evasion Rating", ["type"] = "explicit", }, [1984] = { - ["id"] = "explicit.stat_2508044078", - ["text"] = "Monsters inflict #% increased Flammability Magnitude", + ["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", }, [1985] = { - ["id"] = "explicit.stat_3190121041", - ["text"] = "#% of Volatility Physical Damage Taken as Cold Damage", + ["id"] = "explicit.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", ["type"] = "explicit", }, [1986] = { - ["id"] = "explicit.stat_2475870935", - ["text"] = "Conquered Small Passive Skills also grant #% increased Stun Threshold", + ["id"] = "explicit.stat_891466814", + ["text"] = "Create a Fragment of Divinity in your Presence every 4 seconds", ["type"] = "explicit", }, [1987] = { - ["id"] = "explicit.stat_264262054|3", - ["text"] = "Legacy of Bismuth", + ["id"] = "explicit.stat_3849649145", + ["text"] = "Creates Consecrated Ground on use", ["type"] = "explicit", }, [1988] = { - ["id"] = "explicit.stat_2954116742|58016", - ["text"] = "Allocates All Natural", + ["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", }, [1989] = { - ["id"] = "explicit.stat_2260055669", - ["text"] = "Freezes Enemies that are on Full Life", + ["id"] = "explicit.stat_3831171903|26", + ["text"] = "Crimson Assault", ["type"] = "explicit", }, [1990] = { - ["id"] = "explicit.stat_448592698|222", - ["text"] = "+# to Level of all Rampage Skills", + ["id"] = "explicit.stat_1289045485", + ["text"] = "Critical Hits Ignore Enemy Monster Lightning Resistance", ["type"] = "explicit", }, [1991] = { - ["id"] = "explicit.stat_4010198893", - ["text"] = "Gain Finality for # seconds per Combo expended when using Skills", + ["id"] = "explicit.stat_62849030", + ["text"] = "Critical Hits Poison the enemy", ["type"] = "explicit", }, [1992] = { - ["id"] = "explicit.stat_2954116742|1546", - ["text"] = "Allocates Spiral into Depression", + ["id"] = "explicit.stat_3414998042", + ["text"] = "Critical Hits cannot Extract Impale", ["type"] = "explicit", }, [1993] = { - ["id"] = "explicit.stat_2954116742|116", - ["text"] = "Allocates Insightfulness", + ["id"] = "explicit.stat_1094937621", + ["text"] = "Critical Hits ignore Enemy Monster Elemental Resistances", ["type"] = "explicit", }, [1994] = { - ["id"] = "explicit.stat_2148576938", - ["text"] = "Gain Overencumbrance for 4 seconds when you Dodge Roll", + ["id"] = "explicit.stat_3058238353", + ["text"] = "Critical Hits inflict Impale", ["type"] = "explicit", }, [1995] = { - ["id"] = "explicit.stat_2954116742|39881", - ["text"] = "Allocates Staggering Palm", + ["id"] = "explicit.stat_1550131834", + ["text"] = "Critical Hits with Spells apply # Stack of Critical Weakness", ["type"] = "explicit", }, [1996] = { - ["id"] = "explicit.stat_2954116742|31172", - ["text"] = "Allocates Falcon Technique", + ["id"] = "explicit.stat_2524254339", + ["text"] = "Culling Strike", ["type"] = "explicit", }, [1997] = { - ["id"] = "explicit.stat_2954116742|40990", - ["text"] = "Allocates Exposed to the Storm", + ["id"] = "explicit.stat_1158324489", + ["text"] = "Culling Strike against Frozen Enemies", ["type"] = "explicit", }, [1998] = { - ["id"] = "explicit.stat_2954116742|44566", - ["text"] = "Allocates Lightning Rod", + ["id"] = "explicit.stat_2378065031", + ["text"] = "Curse Skills have #% increased Cast Speed", ["type"] = "explicit", }, [1999] = { - ["id"] = "explicit.stat_1485480327", - ["text"] = "Minions have #% increased Immobilisation buildup", + ["id"] = "explicit.stat_3751072557", + ["text"] = "Curses have no Activation Delay", ["type"] = "explicit", }, [2000] = { - ["id"] = "explicit.stat_3076483222|30874", - ["text"] = "Sacrifice up to 10 Greater Regal Orbs to receive double on Trial completion", + ["id"] = "explicit.stat_4275855121", + ["text"] = "Curses you inflict are reflected back to you", ["type"] = "explicit", }, [2001] = { - ["id"] = "explicit.stat_1217651243", - ["text"] = "Breaches expand to at least # metre in radiusBreaches remain open while there are alive Breach Monsters", + ["id"] = "explicit.stat_1367119630", + ["text"] = "Curses you inflict can affect Hexproof Enemies", ["type"] = "explicit", }, [2002] = { - ["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", + ["id"] = "explicit.stat_2609822974", + ["text"] = "Curses you inflict have infinite Duration", ["type"] = "explicit", }, [2003] = { - ["id"] = "explicit.stat_2954116742|36085", - ["text"] = "Allocates Serrated Edges", + ["id"] = "explicit.stat_1793470535", + ["text"] = "Curses you inflict ignore Curse limit", ["type"] = "explicit", }, [2004] = { - ["id"] = "explicit.stat_448592698|232", - ["text"] = "+# to Level of all Cross Slash Skills", + ["id"] = "explicit.stat_986616727", + ["text"] = "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", ["type"] = "explicit", }, [2005] = { - ["id"] = "explicit.stat_2639983772", - ["text"] = "#% increased Totem Damage per Curse on you", + ["id"] = "explicit.stat_2875218423", + ["text"] = "Damage Blocked is Recouped as Mana", ["type"] = "explicit", }, [2006] = { - ["id"] = "explicit.stat_2954116742|52392", - ["text"] = "Allocates Singular Purpose", + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "explicit", }, [2007] = { - ["id"] = "explicit.stat_2954116742|28267", - ["text"] = "Allocates Desensitisation", + ["id"] = "explicit.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", ["type"] = "explicit", }, [2008] = { - ["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", + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "explicit", }, [2009] = { - ["id"] = "explicit.stat_2954116742|32353", - ["text"] = "Allocates Swift Claw", + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "explicit", }, [2010] = { - ["id"] = "explicit.stat_1797815732", - ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", + ["id"] = "explicit.stat_3753748365", + ["text"] = "Damage of Enemies Hitting you is Unlucky while you are on Low Life", ["type"] = "explicit", }, [2011] = { - ["id"] = "explicit.stat_805298720", - ["text"] = "# to Level of all Curse Skills", + ["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", }, [2012] = { - ["id"] = "explicit.stat_2954116742|59208", - ["text"] = "Allocates Frantic Fighter", + ["id"] = "explicit.stat_2886108529", + ["text"] = "Damage over Time cannot bypass your Energy Shield", ["type"] = "explicit", }, [2013] = { - ["id"] = "explicit.stat_2954116742|44756", - ["text"] = "Allocates Marked Agility", + ["id"] = "explicit.stat_2432200638", + ["text"] = "Damage taken Recouped as Life is also Recouped as Energy Shield", ["type"] = "explicit", }, [2014] = { - ["id"] = "explicit.stat_264262054|10", - ["text"] = "Legacy of Sapphire", + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", ["type"] = "explicit", }, [2015] = { - ["id"] = "explicit.stat_2462683918", - ["text"] = "#% increased Attack Damage while not on Low Mana", + ["id"] = "explicit.stat_3831171903|17", + ["text"] = "Dance With Death", ["type"] = "explicit", }, [2016] = { - ["id"] = "explicit.stat_2954116742|57204", - ["text"] = "Allocates Critical Exploit", + ["id"] = "explicit.stat_2933846633", + ["text"] = "Dazes on Hit", ["type"] = "explicit", }, [2017] = { - ["id"] = "explicit.stat_2954116742|13724", - ["text"] = "Allocates Deadly Force", + ["id"] = "explicit.stat_3146310524", + ["text"] = "Dazes on Hit", ["type"] = "explicit", }, [2018] = { - ["id"] = "explicit.stat_2954116742|59303", - ["text"] = "Allocates Lucky Rabbit Foot", + ["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", }, [2019] = { - ["id"] = "explicit.stat_2954116742|28963", - ["text"] = "Allocates Chakra of Rhythm", + ["id"] = "explicit.stat_2301852600", + ["text"] = "Deal #% of Overkill damage to enemies within 2 metres of the enemy killed", ["type"] = "explicit", }, [2020] = { - ["id"] = "explicit.stat_2954116742|45013", - ["text"] = "Allocates Finishing Blows", + ["id"] = "explicit.stat_2998305364", + ["text"] = "Deal no Elemental Damage", ["type"] = "explicit", }, [2021] = { - ["id"] = "explicit.stat_2954116742|22864", - ["text"] = "Allocates Tainted Strike", + ["id"] = "explicit.stat_2107791433", + ["text"] = "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", ["type"] = "explicit", }, [2022] = { - ["id"] = "explicit.stat_2954116742|16618", - ["text"] = "Allocates Jack of all Trades", + ["id"] = "explicit.stat_3311259821", + ["text"] = "Deals #% of current Mana as Chaos Damage to you when Effect ends", ["type"] = "explicit", }, [2023] = { - ["id"] = "explicit.stat_2954116742|6229", - ["text"] = "Allocates Push the Advantage", + ["id"] = "explicit.stat_541021467", + ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", ["type"] = "explicit", }, [2024] = { - ["id"] = "explicit.stat_2954116742|57190", - ["text"] = "Allocates Doomsayer", + ["id"] = "explicit.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", ["type"] = "explicit", }, [2025] = { - ["id"] = "explicit.stat_2954116742|38053", - ["text"] = "Allocates Deafening Cries", + ["id"] = "explicit.stat_3650992555", + ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", ["type"] = "explicit", }, [2026] = { - ["id"] = "explicit.stat_2954116742|48006", - ["text"] = "Allocates Devastation", + ["id"] = "explicit.stat_3872034802", + ["text"] = "Decimating Strike", ["type"] = "explicit", }, [2027] = { - ["id"] = "explicit.stat_2954116742|19125", - ["text"] = "Allocates Potent Incantation", + ["id"] = "explicit.stat_679087890", + ["text"] = "Defend against Hits as though you had #% more Armour per 1% current Energy Shield", ["type"] = "explicit", }, [2028] = { - ["id"] = "explicit.stat_3481736410", - ["text"] = "#% increased Area of Effect if you've Killed Recently", + ["id"] = "explicit.stat_1539671749", + ["text"] = "Defend with #% of Armour while you have Energy Shield", ["type"] = "explicit", }, [2029] = { - ["id"] = "explicit.stat_2954116742|9020", - ["text"] = "Allocates Giantslayer", + ["id"] = "explicit.stat_3387008487", + ["text"] = "Defend with 200% of Armour", ["type"] = "explicit", }, [2030] = { - ["id"] = "explicit.stat_3076483222|42106", - ["text"] = "Sacrifice up to 5 Greater Chaos Orbs to receive double on Trial completion", + ["id"] = "explicit.stat_3138344128", + ["text"] = "Defend with 200% of Armour during effect", ["type"] = "explicit", }, [2031] = { - ["id"] = "explicit.stat_2954116742|58183", - ["text"] = "Allocates Blood Tearing", + ["id"] = "explicit.stat_1345835998", + ["text"] = "Deferring Favours at Ritual Altars in Area costs #% increased Tribute", ["type"] = "explicit", }, [2032] = { - ["id"] = "explicit.stat_264262054|2", - ["text"] = "Legacy of Basalt", + ["id"] = "explicit.stat_1345835998", + ["text"] = "Deferring Favours at Ritual Altars in your Maps costs #% increased Tribute", ["type"] = "explicit", }, [2033] = { - ["id"] = "explicit.stat_2954116742|42177", - ["text"] = "Allocates Blurred Motion", + ["id"] = "explicit.stat_3428124128", + ["text"] = "Delirious Monsters Killed in Area provide #% increased Reward Progress", ["type"] = "explicit", }, [2034] = { - ["id"] = "explicit.stat_2954116742|24655", - ["text"] = "Allocates Breath of Fire", + ["id"] = "explicit.stat_3428124128", + ["text"] = "Delirious Monsters killed in your Maps provide #% increased Reward Progress", ["type"] = "explicit", }, [2035] = { - ["id"] = "explicit.stat_2954116742|21380", - ["text"] = "Allocates Preemptive Strike", + ["id"] = "explicit.stat_3962960008", + ["text"] = "Delirium Encounters in Area are #% more likely to spawn Unique Bosses", ["type"] = "explicit", }, [2036] = { - ["id"] = "explicit.stat_2954116742|16816", - ["text"] = "Allocates Pinpoint Shot", + ["id"] = "explicit.stat_1770833858", + ["text"] = "Delirium Encounters in Area have #% chance to generate an additional Reward", ["type"] = "explicit", }, [2037] = { - ["id"] = "explicit.stat_2954116742|44330", - ["text"] = "Allocates Coated Arms", + ["id"] = "explicit.stat_1770833858", + ["text"] = "Delirium Encounters in your Maps have #% chance to generate an additional Reward", ["type"] = "explicit", }, [2038] = { - ["id"] = "explicit.stat_2103621252", - ["text"] = "Eat a Soul when you Hit a Unique Enemy, no more than once every second", + ["id"] = "explicit.stat_3350944114", + ["text"] = "Delirium Fog dissipates #% faster", ["type"] = "explicit", }, [2039] = { - ["id"] = "explicit.stat_2954116742|3985", - ["text"] = "Allocates Forces of Nature", + ["id"] = "explicit.stat_3350944114", + ["text"] = "Delirium Fog in Area dissipates #% faster", ["type"] = "explicit", }, [2040] = { - ["id"] = "explicit.stat_2954116742|13407", - ["text"] = "Allocates Heartbreaking", + ["id"] = "explicit.stat_3226351972", + ["text"] = "Delirium Fog in Area lasts # additional seconds before dissipating", ["type"] = "explicit", }, [2041] = { - ["id"] = "explicit.stat_1394184789", - ["text"] = "Remove Bleeding when you use a Life Flask", + ["id"] = "explicit.stat_1174954559", + ["text"] = "Delirium Fog in Area lasts # additional seconds before dissipating", ["type"] = "explicit", }, [2042] = { - ["id"] = "explicit.stat_2954116742|17854", - ["text"] = "Allocates Escape Velocity", + ["id"] = "explicit.stat_551040294", + ["text"] = "Delirium Fog in Area spawns #% increased Fracturing Mirrors", ["type"] = "explicit", }, [2043] = { - ["id"] = "explicit.stat_2954116742|19955", - ["text"] = "Allocates Endless Blizzard", + ["id"] = "explicit.stat_1174954559", + ["text"] = "Delirium Fog in your Maps lasts # additional seconds before dissipating", ["type"] = "explicit", }, [2044] = { - ["id"] = "explicit.stat_2954116742|30408", - ["text"] = "Allocates Efficient Contraptions", + ["id"] = "explicit.stat_3226351972", + ["text"] = "Delirium Fog in your Maps lasts # additional seconds before dissipating", ["type"] = "explicit", }, [2045] = { - ["id"] = "explicit.stat_2954116742|2394", - ["text"] = "Allocates Blade Flurry", + ["id"] = "explicit.stat_1084853859", + ["text"] = "Delirium Fog in your Maps never dissipates", ["type"] = "explicit", }, [2046] = { - ["id"] = "explicit.stat_2954116742|43082", - ["text"] = "Allocates Acceleration", + ["id"] = "explicit.stat_3465791711", + ["text"] = "Delirium Monsters in Area have #% increased Pack Size", ["type"] = "explicit", }, [2047] = { - ["id"] = "explicit.stat_2954116742|55149", - ["text"] = "Allocates Pure Chaos", + ["id"] = "explicit.stat_3465791711", + ["text"] = "Delirium Monsters in your Maps have #% increased Pack Size", ["type"] = "explicit", }, [2048] = { - ["id"] = "explicit.stat_2954116742|24630", - ["text"] = "Allocates Fulmination", + ["id"] = "explicit.stat_1769611692", + ["text"] = "Delirium in Area increases #% faster with distance from the mirror", ["type"] = "explicit", }, [2049] = { - ["id"] = "explicit.stat_2954116742|54814", - ["text"] = "Allocates Profane Commander", + ["id"] = "explicit.stat_1769611692", + ["text"] = "Delirium in your Maps increases #% faster with distance from the mirror", ["type"] = "explicit", }, [2050] = { - ["id"] = "explicit.stat_4007938693", - ["text"] = "Triggers Level # Manifest Dancing Dervishes on Rampage", + ["id"] = "explicit.stat_2971398565", + ["text"] = "Divine Flight", ["type"] = "explicit", }, [2051] = { - ["id"] = "explicit.stat_3076483222|8084", - ["text"] = "Sacrifice up to 10 Greater Exalted Orbs to receive double on Trial completion", + ["id"] = "explicit.stat_3518087336", + ["text"] = "Dodge Roll avoids all Hits", ["type"] = "explicit", }, [2052] = { - ["id"] = "explicit.stat_2954116742|60138", - ["text"] = "Allocates Stylebender", + ["id"] = "explicit.stat_1298316550", + ["text"] = "Dodge Roll passes through Enemies", ["type"] = "explicit", }, [2053] = { - ["id"] = "explicit.stat_2954116742|60404", - ["text"] = "Allocates Perfect Opportunity", + ["id"] = "explicit.stat_3686997387", + ["text"] = "Double Stun Threshold while Shield is Raised", ["type"] = "explicit", }, [2054] = { - ["id"] = "explicit.stat_2954116742|25513", - ["text"] = "Allocates Overwhelm", + ["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", }, [2055] = { - ["id"] = "explicit.stat_2954116742|4985", - ["text"] = "Allocates Flip the Script", + ["id"] = "explicit.stat_65133983", + ["text"] = "Drop Shocked Ground while moving, lasting 8 seconds", ["type"] = "explicit", }, [2056] = { - ["id"] = "explicit.stat_3076483222|51981", - ["text"] = "Sacrifice up to 3 Perfect Regal Orbs to receive double on Trial completion", + ["id"] = "explicit.stat_3891922348", + ["text"] = "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", ["type"] = "explicit", }, [2057] = { - ["id"] = "explicit.stat_2954116742|51707", - ["text"] = "Allocates Enhanced Reflexes", + ["id"] = "explicit.stat_2103621252", + ["text"] = "Eat a Soul when you Hit a Unique Enemy, no more than once every second", ["type"] = "explicit", }, [2058] = { - ["id"] = "explicit.stat_2954116742|15083", - ["text"] = "Allocates Power Conduction", + ["id"] = "explicit.stat_2932359713", + ["text"] = "Effect is not removed when Unreserved Life is Filled", ["type"] = "explicit", }, [2059] = { - ["id"] = "explicit.stat_2954116742|61338", - ["text"] = "Allocates Breath of Lightning", + ["id"] = "explicit.stat_3969608626", + ["text"] = "Effect is not removed when Unreserved Mana is Filled", ["type"] = "explicit", }, [2060] = { - ["id"] = "explicit.stat_2954116742|19337", - ["text"] = "Allocates Precision Salvo", + ["id"] = "explicit.stat_3831171903|9", + ["text"] = "Eldritch Battery", ["type"] = "explicit", }, [2061] = { - ["id"] = "explicit.stat_2954116742|17548", - ["text"] = "Allocates Moment of Truth", + ["id"] = "explicit.stat_2262736444", + ["text"] = "Eldritch Battery", ["type"] = "explicit", }, [2062] = { - ["id"] = "explicit.stat_1949833742", - ["text"] = "#% increased Daze Buildup", + ["id"] = "explicit.stat_1000566389", + ["text"] = "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", ["type"] = "explicit", }, [2063] = { - ["id"] = "explicit.stat_2954116742|23939", - ["text"] = "Allocates Glazed Flesh", + ["id"] = "explicit.stat_1370804479", + ["text"] = "Elemental Ailments other than Freeze you inflict are Reflected to you", ["type"] = "explicit", }, [2064] = { - ["id"] = "explicit.stat_2954116742|19715", - ["text"] = "Allocates Cremation", + ["id"] = "explicit.stat_2678924815", + ["text"] = "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance", ["type"] = "explicit", }, [2065] = { - ["id"] = "explicit.stat_2954116742|20677", - ["text"] = "Allocates For the Jugular", + ["id"] = "explicit.stat_3831171903|23", + ["text"] = "Elemental Equilibrium", ["type"] = "explicit", }, [2066] = { - ["id"] = "explicit.stat_2954116742|2138", - ["text"] = "Allocates Spiral into Insanity", + ["id"] = "explicit.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", ["type"] = "explicit", }, [2067] = { - ["id"] = "explicit.stat_2954116742|38537", - ["text"] = "Allocates Heartstopping", + ["id"] = "explicit.stat_3119292058", + ["text"] = "Enemies Chilled by your Hits can be Shattered as though Frozen", ["type"] = "explicit", }, [2068] = { - ["id"] = "explicit.stat_398335579", - ["text"] = "Cannot be used while Manifested", + ["id"] = "explicit.stat_1816894864", + ["text"] = "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", ["type"] = "explicit", }, [2069] = { - ["id"] = "explicit.stat_2954116742|10398", - ["text"] = "Allocates Sudden Escalation", + ["id"] = "explicit.stat_849085925", + ["text"] = "Enemies Frozen by you take #% increased Damage", ["type"] = "explicit", }, [2070] = { - ["id"] = "explicit.stat_2954116742|65265", - ["text"] = "Allocates Swift Interruption", + ["id"] = "explicit.stat_1746561819", + ["text"] = "Enemies Hindered by you take #% increased Chaos Damage", ["type"] = "explicit", }, [2071] = { - ["id"] = "explicit.stat_2954116742|50062", - ["text"] = "Allocates Barrier of Venarius", + ["id"] = "explicit.stat_212649958", + ["text"] = "Enemies Hindered by you take #% increased Elemental Damage", ["type"] = "explicit", }, [2072] = { - ["id"] = "explicit.stat_2954116742|29514", - ["text"] = "Allocates Cluster Bombs", + ["id"] = "explicit.stat_359357545", + ["text"] = "Enemies Hindered by you take #% increased Physical Damage", ["type"] = "explicit", }, [2073] = { - ["id"] = "explicit.stat_2954116742|42077", - ["text"] = "Allocates Essence Infusion", + ["id"] = "explicit.stat_1613322341", + ["text"] = "Enemies Immobilised by you take #% less Damage", ["type"] = "explicit", }, [2074] = { - ["id"] = "explicit.stat_2954116742|7777", - ["text"] = "Allocates Breaking Point", + ["id"] = "explicit.stat_381470861", + ["text"] = "Enemies are Culled on Block", ["type"] = "explicit", }, [2075] = { - ["id"] = "explicit.stat_2954116742|5728", - ["text"] = "Allocates Ancient Aegis", + ["id"] = "explicit.stat_3868746097", + ["text"] = "Enemies have an Accuracy Penalty against you based on Distance", ["type"] = "explicit", }, [2076] = { - ["id"] = "explicit.stat_120969026", - ["text"] = "#% increased Magnitude of Poison you inflict while Poisoned", + ["id"] = "explicit.stat_1224838456", + ["text"] = "Enemies in your Presence Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, [2077] = { - ["id"] = "explicit.stat_3518449420", - ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", + ["id"] = "explicit.stat_2786852525", + ["text"] = "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", ["type"] = "explicit", }, [2078] = { - ["id"] = "explicit.stat_2954116742|62310", - ["text"] = "Allocates Incendiary", + ["id"] = "explicit.stat_2080373320", + ["text"] = "Enemies in your Presence are Blinded", ["type"] = "explicit", }, [2079] = { - ["id"] = "explicit.stat_2954116742|51867", - ["text"] = "Allocates Finality", + ["id"] = "explicit.stat_1464727508", + ["text"] = "Enemies in your Presence are Blinded", ["type"] = "explicit", }, [2080] = { - ["id"] = "explicit.stat_2954116742|32507", - ["text"] = "Allocates Cut to the Bone", + ["id"] = "explicit.stat_2890401248", + ["text"] = "Enemies in your Presence are Hindered", ["type"] = "explicit", }, [2081] = { - ["id"] = "explicit.stat_1414945937", - ["text"] = "Manifested Dancing Dervishes die when Rampage ends", + ["id"] = "explicit.stat_1433051415", + ["text"] = "Enemies in your Presence are Ignited as though dealt # Base Fire Damage", ["type"] = "explicit", }, [2082] = { - ["id"] = "explicit.stat_1443502073", - ["text"] = "#% increased Effect of Prefixes", + ["id"] = "explicit.stat_3491722585", + ["text"] = "Enemies in your Presence are Intimidated", ["type"] = "explicit", }, [2083] = { - ["id"] = "explicit.stat_2954116742|10772", - ["text"] = "Allocates Bloodthirsty", + ["id"] = "explicit.stat_1285684287", + ["text"] = "Enemies in your Presence count as being on Low Life", ["type"] = "explicit", }, [2084] = { - ["id"] = "explicit.stat_2954116742|5703", - ["text"] = "Allocates Echoing Thunder", + ["id"] = "explicit.stat_2836928993", + ["text"] = "Enemies in your Presence count as having double Power", ["type"] = "explicit", }, [2085] = { - ["id"] = "explicit.stat_2889807051", - ["text"] = "Melee Hits count as Rampage KillsRampage", + ["id"] = "explicit.stat_3628041050", + ["text"] = "Enemies in your Presence gain 1 Gruelling Madness each second", ["type"] = "explicit", }, [2086] = { - ["id"] = "explicit.stat_2954116742|10998", - ["text"] = "Allocates Strong Chin", + ["id"] = "explicit.stat_990363519", + ["text"] = "Enemies in your Presence have #% to Fire Resistance", ["type"] = "explicit", }, [2087] = { - ["id"] = "explicit.stat_2954116742|48581", - ["text"] = "Allocates Exploit the Elements", + ["id"] = "explicit.stat_724806967", + ["text"] = "Enemies in your Presence have Exposure", ["type"] = "explicit", }, [2088] = { - ["id"] = "explicit.stat_2954116742|30341", - ["text"] = "Allocates Master Fletching", + ["id"] = "explicit.stat_1546580830", + ["text"] = "Enemies in your Presence have Lightning Resistance equal to yours", ["type"] = "explicit", }, [2089] = { - ["id"] = "explicit.stat_2954116742|65204", - ["text"] = "Allocates Overflowing Power", + ["id"] = "explicit.stat_1827379101", + ["text"] = "Enemies in your Presence have additional Power equal to their Gruelling Madness", ["type"] = "explicit", }, [2090] = { - ["id"] = "explicit.stat_2954116742|56999", - ["text"] = "Allocates Locked On", + ["id"] = "explicit.stat_1953536251", + ["text"] = "Enemies in your Presence have at least #% of Life Reserved", ["type"] = "explicit", }, [2091] = { - ["id"] = "explicit.stat_2954116742|19044", - ["text"] = "Allocates Arcane Intensity", + ["id"] = "explicit.stat_83011992", + ["text"] = "Enemies in your Presence have no Elemental Resistances", ["type"] = "explicit", }, [2092] = { - ["id"] = "explicit.stat_2954116742|11526", - ["text"] = "Allocates Sniper", + ["id"] = "explicit.stat_1576794517", + ["text"] = "Enemies in your Presence killed by anyone count as being killed by you instead", ["type"] = "explicit", }, [2093] = { - ["id"] = "explicit.stat_2954116742|9227", - ["text"] = "Allocates Focused Thrust", + ["id"] = "explicit.stat_1509533589", + ["text"] = "Enemies take #% increased Damage for each Elemental Ailment type amongyour Ailments on them", ["type"] = "explicit", }, [2094] = { - ["id"] = "explicit.stat_2954116742|52191", - ["text"] = "Allocates Event Horizon", + ["id"] = "explicit.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", ["type"] = "explicit", }, [2095] = { - ["id"] = "explicit.stat_2954116742|49661", - ["text"] = "Allocates Perfectly Placed Knife", + ["id"] = "explicit.stat_2083058281", + ["text"] = "Enemies you Mark take #% increased Damage", ["type"] = "explicit", }, [2096] = { - ["id"] = "explicit.stat_2954116742|63074", - ["text"] = "Allocates Dark Entries", + ["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", }, [2097] = { - ["id"] = "explicit.stat_2954116742|22811", - ["text"] = "Allocates The Wild Cat", + ["id"] = "explicit.stat_793801176", + ["text"] = "Energy Generation is doubled", ["type"] = "explicit", }, [2098] = { - ["id"] = "explicit.stat_2954116742|8273", - ["text"] = "Allocates Endless Circuit", + ["id"] = "explicit.stat_1419390131", + ["text"] = "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", ["type"] = "explicit", }, [2099] = { - ["id"] = "explicit.stat_2954116742|45599", - ["text"] = "Allocates Lay Siege", + ["id"] = "explicit.stat_1056492907", + ["text"] = "Energy Shield Recharge starts on use", ["type"] = "explicit", }, [2100] = { - ["id"] = "explicit.stat_2954116742|18505", - ["text"] = "Allocates Crushing Verdict", + ["id"] = "explicit.stat_2402413437", + ["text"] = "Energy Shield Recharge starts when you use a Mana Flask", ["type"] = "explicit", }, [2101] = { - ["id"] = "explicit.stat_2954116742|62609", - ["text"] = "Allocates Ancestral Unity", + ["id"] = "explicit.stat_2147773348", + ["text"] = "Energy Shield is increased by Uncapped Cold Resistance", ["type"] = "explicit", }, [2102] = { - ["id"] = "explicit.stat_2954116742|31433", - ["text"] = "Allocates Catalysis", + ["id"] = "explicit.stat_752930724", + ["text"] = "Equipment and Skill Gems have #% increased Attribute Requirements", ["type"] = "explicit", }, [2103] = { - ["id"] = "explicit.stat_2954116742|44299", - ["text"] = "Allocates Enhanced Barrier", + ["id"] = "explicit.stat_2480151124", + ["text"] = "Equipment has no Attribute Requirements", ["type"] = "explicit", }, [2104] = { - ["id"] = "explicit.stat_2954116742|63759", - ["text"] = "Allocates Stacking Toxins", + ["id"] = "explicit.stat_3831171903|15", + ["text"] = "Eternal Youth", ["type"] = "explicit", }, [2105] = { - ["id"] = "explicit.stat_2954116742|42714", - ["text"] = "Allocates Thousand Cuts", + ["id"] = "explicit.stat_1272938854", + ["text"] = "Evasion Rating is doubled if you have not been Hit Recently", ["type"] = "explicit", }, [2106] = { - ["id"] = "explicit.stat_2954116742|51394", - ["text"] = "Allocates Unimpeded", + ["id"] = "explicit.stat_419098854", + ["text"] = "Evasion Rating is increased by Uncapped Lightning Resistance", ["type"] = "explicit", }, [2107] = { - ["id"] = "explicit.stat_2954116742|3215", - ["text"] = "Allocates Melding", + ["id"] = "explicit.stat_145598447", + ["text"] = "Everlasting Sacrifice", ["type"] = "explicit", }, [2108] = { - ["id"] = "explicit.stat_2954116742|17029", - ["text"] = "Allocates Blade Catcher", + ["id"] = "explicit.stat_2625554454", + ["text"] = "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", ["type"] = "explicit", }, [2109] = { - ["id"] = "explicit.stat_2954116742|24753", - ["text"] = "Allocates Determined Precision", + ["id"] = "explicit.stat_2879778895", + ["text"] = "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", ["type"] = "explicit", }, [2110] = { - ["id"] = "explicit.stat_2954116742|41580", - ["text"] = "Allocates Maiming Strike", + ["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", }, [2111] = { - ["id"] = "explicit.stat_2954116742|9968", - ["text"] = "Allocates Feel the Earth", + ["id"] = "explicit.stat_3764198549", + ["text"] = "Every 3 seconds, Consume a nearby Corpse to Recover #% of maximum Life", ["type"] = "explicit", }, [2112] = { - ["id"] = "explicit.stat_2954116742|32951", - ["text"] = "Allocates Preservation", + ["id"] = "explicit.stat_1457411584", + ["text"] = "Every 4 seconds, Recover 1 Life for every # Life Recovery per second from Regeneration", ["type"] = "explicit", }, [2113] = { - ["id"] = "explicit.stat_2954116742|6178", - ["text"] = "Allocates Power Shots", + ["id"] = "explicit.stat_1895552497", + ["text"] = "Every 5 Rage also grants #% of Damage taken Recouped as Life", ["type"] = "explicit", }, [2114] = { - ["id"] = "explicit.stat_2954116742|61601", - ["text"] = "Allocates True Strike", + ["id"] = "explicit.stat_2995914769", + ["text"] = "Every Rage also grants #% increased Armour", ["type"] = "explicit", }, [2115] = { - ["id"] = "explicit.stat_2954116742|55180", - ["text"] = "Allocates Relentless Fallen", + ["id"] = "explicit.stat_352044736", + ["text"] = "Every Rage also grants #% increased Stun Threshold", ["type"] = "explicit", }, [2116] = { - ["id"] = "explicit.stat_2954116742|54911", - ["text"] = "Allocates Firestarter", + ["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", }, [2117] = { - ["id"] = "explicit.stat_2954116742|57471", - ["text"] = "Allocates Hunker Down", + ["id"] = "explicit.stat_1052498387", + ["text"] = "Every second, inflicts Critical Weakness on enemies in your Presence for # second", ["type"] = "explicit", }, [2118] = { - ["id"] = "explicit.stat_2954116742|41905", - ["text"] = "Allocates Gravedigger", + ["id"] = "explicit.stat_636464211", + ["text"] = "Excess Life Recovery added as Guard for # seconds", ["type"] = "explicit", }, [2119] = { - ["id"] = "explicit.stat_2954116742|38459", - ["text"] = "Allocates Disorientation", + ["id"] = "explicit.stat_999436592", + ["text"] = "Excess Life Recovery from Leech is applied to Energy Shield", ["type"] = "explicit", }, [2120] = { - ["id"] = "explicit.stat_2954116742|51820", - ["text"] = "Allocates Ancestral Conduits", + ["id"] = "explicit.stat_144770454", + ["text"] = "Expedition Monsters in your Maps spawn with half of their Life missing", ["type"] = "explicit", }, [2121] = { - ["id"] = "explicit.stat_3841138199", - ["text"] = "#% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", + ["id"] = "explicit.stat_3753446846", + ["text"] = "Expeditions in Area have # Remnants", ["type"] = "explicit", }, [2122] = { - ["id"] = "explicit.stat_2954116742|4661", - ["text"] = "Allocates Inspiring Leader", + ["id"] = "explicit.stat_3753446846", + ["text"] = "Expeditions in your Maps have # Remnant", ["type"] = "explicit", }, [2123] = { - ["id"] = "explicit.stat_2954116742|30523", - ["text"] = "Allocates Dead can Dance", + ["id"] = "explicit.stat_28208665", + ["text"] = "Favours Deferred at Ritual Altars in Area reappear #% sooner", ["type"] = "explicit", }, [2124] = { - ["id"] = "explicit.stat_2954116742|44952", - ["text"] = "Allocates Made to Last", + ["id"] = "explicit.stat_28208665", + ["text"] = "Favours Deferred at Ritual Altars in your Maps reappear #% sooner", ["type"] = "explicit", }, [2125] = { - ["id"] = "explicit.stat_1079292660", - ["text"] = "#% increased Energy Shield Recharge Rate if you've Blocked Recently", + ["id"] = "explicit.stat_937291386", + ["text"] = "Favours Rerolled at Ritual Altars in Area have #% chance to cost no Tribute", ["type"] = "explicit", }, [2126] = { - ["id"] = "explicit.stat_2954116742|9472", - ["text"] = "Allocates Catapult", + ["id"] = "explicit.stat_937291386", + ["text"] = "Favours Rerolled at Ritual Altars in your Maps have #% chance to cost no Tribute", ["type"] = "explicit", }, [2127] = { - ["id"] = "explicit.stat_2954116742|42032", - ["text"] = "Allocates Escalating Mayhem", + ["id"] = "explicit.stat_1228222525", + ["text"] = "Favours at Ritual Altars in Area costs #% increased Tribute", ["type"] = "explicit", }, [2128] = { - ["id"] = "explicit.stat_2954116742|372", - ["text"] = "Allocates Heatproof", + ["id"] = "explicit.stat_1221641885", + ["text"] = "Fire Damage also Contributes to Bleeding Magnitude", ["type"] = "explicit", }, [2129] = { - ["id"] = "explicit.stat_2954116742|56453", - ["text"] = "Allocates Killer Instinct", + ["id"] = "explicit.stat_2949096603", + ["text"] = "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", ["type"] = "explicit", }, [2130] = { - ["id"] = "explicit.stat_2954116742|38111", - ["text"] = "Allocates Pliable Flesh", + ["id"] = "explicit.stat_3247805335", + ["text"] = "Fire Resistance is unaffected by Area Penalties", ["type"] = "explicit", }, [2131] = { - ["id"] = "explicit.stat_2954116742|35966", - ["text"] = "Allocates Heart Tissue", + ["id"] = "explicit.stat_1540254896", + ["text"] = "Flammability Magnitude is doubled", ["type"] = "explicit", }, [2132] = { - ["id"] = "explicit.stat_2954116742|12337", - ["text"] = "Allocates Flash Storm", + ["id"] = "explicit.stat_265717301", + ["text"] = "Flasks do not recover Life", ["type"] = "explicit", }, [2133] = { - ["id"] = "explicit.stat_2954116742|64119", - ["text"] = "Allocates Rapid Reload", + ["id"] = "explicit.stat_2260055669", + ["text"] = "Freezes Enemies that are on Full Life", ["type"] = "explicit", }, [2134] = { - ["id"] = "explicit.stat_2954116742|15644", - ["text"] = "Allocates Shedding Skin", + ["id"] = "explicit.stat_3278008231", + ["text"] = "Fully Armour Broken enemies you kill with Hits Shatter", ["type"] = "explicit", }, [2135] = { - ["id"] = "explicit.stat_2954116742|43423", - ["text"] = "Allocates Emboldened Avatar", + ["id"] = "explicit.stat_3841984913", + ["text"] = "Gain # Fragile Regrowth each second", ["type"] = "explicit", }, [2136] = { - ["id"] = "explicit.stat_2954116742|35564", - ["text"] = "Allocates Turn the Clock Back", + ["id"] = "explicit.stat_2443032293", + ["text"] = "Gain # Guard for 0.5 seconds per Combo expended when using Skills", ["type"] = "explicit", }, [2137] = { - ["id"] = "explicit.stat_2954116742|51871", - ["text"] = "Allocates Immortal Thirst", + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "explicit", }, [2138] = { - ["id"] = "explicit.stat_2954116742|23738", - ["text"] = "Allocates Madness in the Bones", + ["id"] = "explicit.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", ["type"] = "explicit", }, [2139] = { - ["id"] = "explicit.stat_2954116742|5802", - ["text"] = "Allocates Stand and Deliver", + ["id"] = "explicit.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", ["type"] = "explicit", }, [2140] = { - ["id"] = "explicit.stat_2954116742|27176", - ["text"] = "Allocates The Power Within", + ["id"] = "explicit.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", ["type"] = "explicit", }, [2141] = { - ["id"] = "explicit.stat_2954116742|8827", - ["text"] = "Allocates Fast Metabolism", + ["id"] = "explicit.stat_2258007247", + ["text"] = "Gain # Rage on Hit", ["type"] = "explicit", }, [2142] = { - ["id"] = "explicit.stat_2954116742|54805", - ["text"] = "Allocates Hindered Capabilities", + ["id"] = "explicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", ["type"] = "explicit", }, [2143] = { - ["id"] = "explicit.stat_1132041585", - ["text"] = "Virtuous", + ["id"] = "explicit.stat_1466716929", + ["text"] = "Gain # Rage when Critically Hit by an Enemy", ["type"] = "explicit", }, [2144] = { - ["id"] = "explicit.stat_2954116742|52618", - ["text"] = "Allocates Boon of the Beast", + ["id"] = "explicit.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", ["type"] = "explicit", }, [2145] = { - ["id"] = "explicit.stat_2954116742|39369", - ["text"] = "Allocates Struck Through", + ["id"] = "explicit.stat_555311715", + ["text"] = "Gain # Rage when Hit by an Enemy during effect", ["type"] = "explicit", }, [2146] = { - ["id"] = "explicit.stat_1753977518", - ["text"] = "#% of Thorns Damage Leeched as Life", + ["id"] = "explicit.stat_2469544361", + ["text"] = "Gain #% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", ["type"] = "explicit", }, [2147] = { - ["id"] = "explicit.stat_2954116742|57379", - ["text"] = "Allocates In Your Face", + ["id"] = "explicit.stat_997343726", + ["text"] = "Gain #% of Damage as Chaos Damage per Undead Minion", ["type"] = "explicit", }, [2148] = { - ["id"] = "explicit.stat_2954116742|32071", - ["text"] = "Allocates Primal Growth", + ["id"] = "explicit.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, [2149] = { - ["id"] = "explicit.stat_2954116742|4534", - ["text"] = "Allocates Piercing Shot", + ["id"] = "explicit.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "explicit", }, [2150] = { - ["id"] = "explicit.stat_2954116742|64443", - ["text"] = "Allocates Impact Force", + ["id"] = "explicit.stat_825116955", + ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", ["type"] = "explicit", }, [2151] = { - ["id"] = "explicit.stat_2954116742|47316", - ["text"] = "Allocates Goring", + ["id"] = "explicit.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, [2152] = { - ["id"] = "explicit.stat_2954116742|23427", - ["text"] = "Allocates Chilled to the Bone", + ["id"] = "explicit.stat_589361270", + ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", ["type"] = "explicit", }, [2153] = { - ["id"] = "explicit.stat_2954116742|59720", - ["text"] = "Allocates Beastial Skin", + ["id"] = "explicit.stat_1321054058", + ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", ["type"] = "explicit", }, [2154] = { - ["id"] = "explicit.stat_2954116742|8810", - ["text"] = "Allocates Multitasking", + ["id"] = "explicit.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "explicit", }, [2155] = { - ["id"] = "explicit.stat_2954116742|29372", - ["text"] = "Allocates Sudden Infuriation", + ["id"] = "explicit.stat_323800555", + ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", ["type"] = "explicit", }, [2156] = { - ["id"] = "explicit.stat_2954116742|38614", - ["text"] = "Allocates Psychic Fragmentation", + ["id"] = "explicit.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", ["type"] = "explicit", }, [2157] = { - ["id"] = "explicit.stat_2954116742|35876", - ["text"] = "Allocates Admonisher", + ["id"] = "explicit.stat_1158842087", + ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", ["type"] = "explicit", }, [2158] = { - ["id"] = "explicit.stat_2954116742|7604", - ["text"] = "Allocates Rapid Strike", + ["id"] = "explicit.stat_701564564", + ["text"] = "Gain #% of Elemental Damage as Extra Fire Damage", ["type"] = "explicit", }, [2159] = { - ["id"] = "explicit.stat_2954116742|2486", - ["text"] = "Allocates Stars Aligned", + ["id"] = "explicit.stat_3550887155", + ["text"] = "Gain #% of Elemental Damage as Extra Lightning Damage", ["type"] = "explicit", }, [2160] = { - ["id"] = "explicit.stat_2954116742|61703", - ["text"] = "Allocates Sharpened Claw", + ["id"] = "explicit.stat_1546604934", + ["text"] = "Gain #% of Evasion Rating as extra Armour", ["type"] = "explicit", }, [2161] = { - ["id"] = "explicit.stat_2954116742|34324", - ["text"] = "Allocates Spectral Ward", + ["id"] = "explicit.stat_514290151", + ["text"] = "Gain #% of Maximum Mana as Armour", ["type"] = "explicit", }, [2162] = { - ["id"] = "explicit.stat_2954116742|39567", - ["text"] = "Allocates Ingenuity", + ["id"] = "explicit.stat_758893621", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", ["type"] = "explicit", }, [2163] = { - ["id"] = "explicit.stat_2954116742|39347", - ["text"] = "Allocates Breaking Blows", + ["id"] = "explicit.stat_915546383", + ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", ["type"] = "explicit", }, [2164] = { - ["id"] = "explicit.stat_2954116742|47635", - ["text"] = "Allocates Overload", + ["id"] = "explicit.stat_1228337241", + ["text"] = "Gain #% of maximum Life as Extra maximum Energy Shield", ["type"] = "explicit", }, [2165] = { - ["id"] = "explicit.stat_2954116742|2113", - ["text"] = "Allocates Martial Artistry", + ["id"] = "explicit.stat_3027830452", + ["text"] = "Gain #% of maximum Mana as Extra maximum Energy Shield", ["type"] = "explicit", }, [2166] = { - ["id"] = "explicit.stat_2954116742|17260", - ["text"] = "Allocates Piercing Claw", + ["id"] = "explicit.stat_796381300", + ["text"] = "Gain 0% to #% increased Movement Speed at random when Hit, until Hit again", ["type"] = "explicit", }, [2167] = { - ["id"] = "explicit.stat_2954116742|27687", - ["text"] = "Allocates Greatest Defence", + ["id"] = "explicit.stat_2482970488", + ["text"] = "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", ["type"] = "explicit", }, [2168] = { - ["id"] = "explicit.stat_2886108529", - ["text"] = "Damage over Time cannot bypass your Energy Shield", + ["id"] = "explicit.stat_1273508088", + ["text"] = "Gain 1 Druidic Prowess for every 20 total Rage spent", ["type"] = "explicit", }, [2169] = { - ["id"] = "explicit.stat_2954116742|49088", - ["text"] = "Allocates Splintering Force", + ["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", }, [2170] = { - ["id"] = "explicit.stat_2954116742|46972", - ["text"] = "Allocates Arcane Mixtures", + ["id"] = "explicit.stat_3775736880", + ["text"] = "Gain 1 Fear Incarnate when you Cull a target", ["type"] = "explicit", }, [2171] = { - ["id"] = "explicit.stat_2954116742|3894", - ["text"] = "Allocates Eldritch Will", + ["id"] = "explicit.stat_343703314", + ["text"] = "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill", ["type"] = "explicit", }, [2172] = { - ["id"] = "explicit.stat_2954116742|18086", - ["text"] = "Allocates Breath of Ice", + ["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", }, [2173] = { - ["id"] = "explicit.stat_2954116742|21349", - ["text"] = "Allocates The Quick Fox", + ["id"] = "explicit.stat_3170380905", + ["text"] = "Gain 1% of damage as Fire damage per #% Chance to Block", ["type"] = "explicit", }, [2174] = { - ["id"] = "explicit.stat_2954116742|8531", - ["text"] = "Allocates Leaping Ambush", + ["id"] = "explicit.stat_3625518318", + ["text"] = "Gain Arcane Surge when a Minion Dies", ["type"] = "explicit", }, [2175] = { - ["id"] = "explicit.stat_2954116742|39050", - ["text"] = "Allocates Exploit", + ["id"] = "explicit.stat_1435496528", + ["text"] = "Gain Cold Thorns Damage equal to #% of your maximum Mana", ["type"] = "explicit", }, [2176] = { - ["id"] = "explicit.stat_2954116742|3492", - ["text"] = "Allocates Void", + ["id"] = "explicit.stat_1752419596", + ["text"] = "Gain Deflection Rating equal to #% of Armour", ["type"] = "explicit", }, [2177] = { - ["id"] = "explicit.stat_2954116742|21164", - ["text"] = "Allocates Fleshcrafting", + ["id"] = "explicit.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", ["type"] = "explicit", }, [2178] = { - ["id"] = "explicit.stat_2954116742|4238", - ["text"] = "Allocates Versatile Arms", + ["id"] = "explicit.stat_4010198893", + ["text"] = "Gain Finality for # seconds per Combo expended when using Skills", ["type"] = "explicit", }, [2179] = { - ["id"] = "explicit.stat_2189090852", - ["text"] = "#% increased maximum Divinity per Corrupted Item Equipped", + ["id"] = "explicit.stat_469006068", + ["text"] = "Gain Guard equal to #% of missing Energy Shield for 4 seconds when you Dodge Roll", ["type"] = "explicit", }, [2180] = { - ["id"] = "explicit.stat_2954116742|55060", - ["text"] = "Allocates Shrapnel", + ["id"] = "explicit.stat_3605616594", + ["text"] = "Gain Onslaught for 4 seconds when a Minion Dies", ["type"] = "explicit", }, [2181] = { - ["id"] = "explicit.stat_2954116742|21206", - ["text"] = "Allocates Explosive Impact", + ["id"] = "explicit.stat_2148576938", + ["text"] = "Gain Overencumbrance for 4 seconds when you Dodge Roll", ["type"] = "explicit", }, [2182] = { - ["id"] = "explicit.stat_2954116742|53935", - ["text"] = "Allocates Briny Carapace", + ["id"] = "explicit.stat_2163764037", + ["text"] = "Gain Physical Thorns damage equal to #% - #% of maximum Life", ["type"] = "explicit", }, [2183] = { - ["id"] = "explicit.stat_2954116742|2511", - ["text"] = "Allocates Sundering", + ["id"] = "explicit.stat_1793740180", + ["text"] = "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", ["type"] = "explicit", }, [2184] = { - ["id"] = "explicit.stat_2954116742|49984", - ["text"] = "Allocates Spellblade", + ["id"] = "explicit.stat_2459662130", + ["text"] = "Gain Tailwind on Critical Hit, no more than once per second", ["type"] = "explicit", }, [2185] = { - ["id"] = "explicit.stat_2954116742|14294", - ["text"] = "Allocates Sacrificial Blood", + ["id"] = "explicit.stat_2931872063", + ["text"] = "Gain Volatility on Critical Hit", ["type"] = "explicit", }, [2186] = { - ["id"] = "explicit.stat_3249412463", - ["text"] = "Supported Minions' Strikes have Melee Splash", + ["id"] = "explicit.stat_1099200124", + ["text"] = "Gain a Power Charge every Second if you haven't lost Power Charges Recently", ["type"] = "explicit", }, [2187] = { - ["id"] = "explicit.stat_2954116742|8831", - ["text"] = "Allocates Tempered Mind", + ["id"] = "explicit.stat_2284588585", + ["text"] = "Gain a random Charge on reaching Maximum Rage, no more than once every # seconds", ["type"] = "explicit", }, [2188] = { - ["id"] = "explicit.stat_2954116742|17664", - ["text"] = "Allocates Decisive Retreat", + ["id"] = "explicit.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, [2189] = { - ["id"] = "explicit.stat_2954116742|54998", - ["text"] = "Allocates Protraction", + ["id"] = "explicit.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, [2190] = { - ["id"] = "explicit.stat_2954116742|43088", - ["text"] = "Allocates Agonising Calamity", + ["id"] = "explicit.stat_4187571952", + ["text"] = "Gain no inherent bonus from Intelligence", ["type"] = "explicit", }, [2191] = { - ["id"] = "explicit.stat_774059442", - ["text"] = "# to maximum Runic Ward", + ["id"] = "explicit.stat_1873752457", + ["text"] = "Gains # Charges per Second", ["type"] = "explicit", }, [2192] = { - ["id"] = "explicit.stat_2954116742|5284", - ["text"] = "Allocates Shredding Force", + ["id"] = "explicit.stat_1875158664", + ["text"] = "Giant's Blood", ["type"] = "explicit", }, [2193] = { - ["id"] = "explicit.stat_2954116742|17372", - ["text"] = "Allocates Reaching Strike", + ["id"] = "explicit.stat_3831171903|2", + ["text"] = "Giant's Blood", ["type"] = "explicit", }, [2194] = { - ["id"] = "explicit.stat_2535713562", - ["text"] = "Recover #% of maximum Life per Poison affecting Enemies you Kill", + ["id"] = "explicit.stat_3831171903|22", + ["text"] = "Glancing Blows", ["type"] = "explicit", }, [2195] = { - ["id"] = "explicit.stat_2954116742|26356", - ["text"] = "Allocates Primed to Explode", + ["id"] = "explicit.stat_4266776872", + ["text"] = "Glancing Blows", ["type"] = "explicit", }, [2196] = { - ["id"] = "explicit.stat_2954116742|4031", - ["text"] = "Allocates Icebreaker", + ["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", }, [2197] = { - ["id"] = "explicit.stat_2408276841", - ["text"] = "#% increased Energy Shield Recharge Rate per 4 Strength", + ["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", }, [2198] = { - ["id"] = "explicit.stat_2954116742|50392", - ["text"] = "Allocates Brute Strength", + ["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", }, [2199] = { - ["id"] = "explicit.stat_2954116742|36808", - ["text"] = "Allocates Spiked Shield", + ["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", }, [2200] = { - ["id"] = "explicit.stat_3428124128", - ["text"] = "Delirious Monsters Killed in Area provide #% increased Reward Progress", + ["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", }, [2201] = { - ["id"] = "explicit.stat_3428124128", - ["text"] = "Delirious Monsters killed in your Maps provide #% increased Reward Progress", + ["id"] = "explicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", ["type"] = "explicit", }, [2202] = { - ["id"] = "explicit.stat_2954116742|7338", - ["text"] = "Allocates Abasement", + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", ["type"] = "explicit", }, [2203] = { - ["id"] = "explicit.stat_2954116742|55131", - ["text"] = "Allocates Light on your Feet", + ["id"] = "explicit.stat_618665892", + ["text"] = "Grants Onslaught during effect", ["type"] = "explicit", }, [2204] = { - ["id"] = "explicit.stat_2954116742|32664", - ["text"] = "Allocates Chakra of Breathing", + ["id"] = "explicit.stat_280890192", + ["text"] = "Grants a Frenzy Charge on use", ["type"] = "explicit", }, [2205] = { - ["id"] = "explicit.stat_2954116742|51934", - ["text"] = "Allocates Invocated Efficiency", + ["id"] = "explicit.stat_2566921799", + ["text"] = "Grants a Power Charge on use", ["type"] = "explicit", }, [2206] = { - ["id"] = "explicit.stat_2954116742|49618", - ["text"] = "Allocates Deadly Flourish", + ["id"] = "explicit.stat_3742268652", + ["text"] = "Grants effect of Dreaming Gloom Shrine", ["type"] = "explicit", }, [2207] = { - ["id"] = "explicit.stat_2954116742|336", - ["text"] = "Allocates Storm Swell", + ["id"] = "explicit.stat_234657505", + ["text"] = "Grants effect of Guided Freezing Shrine", ["type"] = "explicit", }, [2208] = { - ["id"] = "explicit.stat_2224050171", - ["text"] = "Breaches in Area contain # additional Clasped Hand", + ["id"] = "explicit.stat_3917429943", + ["text"] = "Grants effect of Guided Meteoric Shrine", ["type"] = "explicit", }, [2209] = { - ["id"] = "explicit.stat_2224050171", - ["text"] = "Breaches in your Maps contain # additional Clasped Hand", + ["id"] = "explicit.stat_2800412928", + ["text"] = "Grants effect of Guided Tempest Shrine", ["type"] = "explicit", }, [2210] = { - ["id"] = "explicit.stat_2954116742|15829", - ["text"] = "Allocates Siphon", + ["id"] = "explicit.stat_1509210032", + ["text"] = "Grants up to your maximum Rage on use", ["type"] = "explicit", }, [2211] = { - ["id"] = "explicit.stat_2954116742|22967", - ["text"] = "Allocates Vigilance", + ["id"] = "explicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", ["type"] = "explicit", }, [2212] = { - ["id"] = "explicit.stat_2954116742|3567", - ["text"] = "Allocates Raw Mana", + ["id"] = "explicit.stat_2250681686", + ["text"] = "Grenade Skills have +# Cooldown Use", ["type"] = "explicit", }, [2213] = { - ["id"] = "explicit.stat_2954116742|29527", - ["text"] = "Allocates First Approach", + ["id"] = "explicit.stat_538981065", + ["text"] = "Grenades have #% chance to activate a second time", ["type"] = "explicit", }, [2214] = { - ["id"] = "explicit.stat_2954116742|50673", - ["text"] = "Allocates Avoiding Deflection", + ["id"] = "explicit.stat_1416292992", + ["text"] = "Has # Charm Slot", ["type"] = "explicit", }, [2215] = { - ["id"] = "explicit.stat_2954116742|25711", - ["text"] = "Allocates Thrill of Battle", + ["id"] = "explicit.stat_1955786041", + ["text"] = "Has # to # Physical damage, # to # per Boss's Face Broken", ["type"] = "explicit", }, [2216] = { - ["id"] = "explicit.stat_2954116742|63830", - ["text"] = "Allocates Marked for Sickness", + ["id"] = "explicit.stat_2739148464", + ["text"] = "Has no Attribute Requirements", ["type"] = "explicit", }, [2217] = { - ["id"] = "explicit.stat_2954116742|35739", - ["text"] = "Allocates Crushing Judgement", + ["id"] = "explicit.stat_3831171903|18", + ["text"] = "Heartstopper", ["type"] = "explicit", }, [2218] = { - ["id"] = "explicit.stat_2954116742|20916", - ["text"] = "Allocates Blinding Strike", + ["id"] = "explicit.stat_668076381", + ["text"] = "Heavy Stuns Enemies that are on Full Life", ["type"] = "explicit", }, [2219] = { - ["id"] = "explicit.stat_2482970488", - ["text"] = "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", + ["id"] = "explicit.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", ["type"] = "explicit", }, [2220] = { - ["id"] = "explicit.stat_2954116742|40399", - ["text"] = "Allocates Energise", + ["id"] = "explicit.stat_3787436548", + ["text"] = "Historic", ["type"] = "explicit", }, [2221] = { - ["id"] = "explicit.stat_2954116742|53941", - ["text"] = "Allocates Shimmering", + ["id"] = "explicit.stat_289086688", + ["text"] = "Hits Break # Armour", ["type"] = "explicit", }, [2222] = { - ["id"] = "explicit.stat_2954116742|13738", - ["text"] = "Allocates Lightning Quick", + ["id"] = "explicit.stat_3923947492", + ["text"] = "Hits against you have #% increased Critical Hit Chance while you are Chilled", ["type"] = "explicit", }, [2223] = { - ["id"] = "explicit.stat_933768533", - ["text"] = "#% increased Global Armour, Evasion and Energy Shield per Socket filled", + ["id"] = "explicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "explicit", }, [2224] = { - ["id"] = "explicit.stat_2954116742|10500", - ["text"] = "Allocates Dazing Blocks", + ["id"] = "explicit.stat_701923421", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus per Socket filled", ["type"] = "explicit", }, [2225] = { - ["id"] = "explicit.stat_2954116742|10423", - ["text"] = "Allocates Exposed to the Inferno", + ["id"] = "explicit.stat_3593401321", + ["text"] = "Hits have #% chance to treat Enemy Monster Elemental Resistance values as inverted", ["type"] = "explicit", }, [2226] = { - ["id"] = "explicit.stat_2954116742|50795", - ["text"] = "Allocates Careful Aim", + ["id"] = "explicit.stat_4270096386", + ["text"] = "Hits have #% increased Critical Hit Chance against you", ["type"] = "explicit", }, [2227] = { - ["id"] = "explicit.stat_2954116742|17254", - ["text"] = "Allocates Spell Haste", + ["id"] = "explicit.stat_1689748350", + ["text"] = "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", ["type"] = "explicit", }, [2228] = { - ["id"] = "explicit.stat_2954116742|56997", - ["text"] = "Allocates Heavy Contact", + ["id"] = "explicit.stat_1867725690", + ["text"] = "Hits with this Weapon have #% chance to Trigger Molten Shower per 25 Strength", ["type"] = "explicit", }, [2229] = { - ["id"] = "explicit.stat_2954116742|49150", - ["text"] = "Allocates Precise Invocations", + ["id"] = "explicit.stat_2558253923", + ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", ["type"] = "explicit", }, [2230] = { - ["id"] = "explicit.stat_2954116742|52684", - ["text"] = "Allocates Eroding Chains", + ["id"] = "explicit.stat_1508661598", + ["text"] = "Hits with this Weapon have no Critical Damage Bonus", ["type"] = "explicit", }, [2231] = { - ["id"] = "explicit.stat_2954116742|40166", - ["text"] = "Allocates Deep Trance", + ["id"] = "explicit.stat_2526112819", + ["text"] = "Hits with this Weapon inflict # Gruelling Madness", ["type"] = "explicit", }, [2232] = { - ["id"] = "explicit.stat_2954116742|43944", - ["text"] = "Allocates Instability", + ["id"] = "explicit.stat_2036307261", + ["text"] = "Hits with this weapon have # to # Added Physical Damage per 1% Block Chance", ["type"] = "explicit", }, [2233] = { - ["id"] = "explicit.stat_2954116742|55847", - ["text"] = "Allocates Ice Walls", + ["id"] = "explicit.stat_3831171903|27", + ["text"] = "Hollow Palm Technique", ["type"] = "explicit", }, [2234] = { - ["id"] = "explicit.stat_2954116742|9908", - ["text"] = "Allocates Price of Freedom", + ["id"] = "explicit.stat_740421489", + ["text"] = "Ice Crystals have #% increased maximum Life per 5% Cold Resistance you have", ["type"] = "explicit", }, [2235] = { - ["id"] = "explicit.stat_2954116742|54990", - ["text"] = "Allocates Bloodletting", + ["id"] = "explicit.stat_2371108370", + ["text"] = "If Map was not previously Irradiated, completing Map adds Irradiation instead", ["type"] = "explicit", }, [2236] = { - ["id"] = "explicit.stat_2954116742|2745", - ["text"] = "Allocates The Noble Wolf", + ["id"] = "explicit.stat_983582600", + ["text"] = "Ignite you inflict deals Chaos Damage instead of Fire Damage", ["type"] = "explicit", }, [2237] = { - ["id"] = "explicit.stat_1617268696", - ["text"] = "Burning Enemies you kill have a #% chance to Explode, dealing atenth of their maximum Life as Fire Damage", + ["id"] = "explicit.stat_3314057862", + ["text"] = "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", ["type"] = "explicit", }, [2238] = { - ["id"] = "explicit.stat_2954116742|47418", - ["text"] = "Allocates Warding Potions", + ["id"] = "explicit.stat_4238331303", + ["text"] = "Immobilise enemies at #% buildup instead of 100%", ["type"] = "explicit", }, [2239] = { - ["id"] = "explicit.stat_2954116742|17825", - ["text"] = "Allocates Tactical Retreat", + ["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", }, [2240] = { - ["id"] = "explicit.stat_2954116742|25971", - ["text"] = "Allocates Tenfold Attacks", + ["id"] = "explicit.stat_1138742368", + ["text"] = "Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value", ["type"] = "explicit", }, [2241] = { - ["id"] = "explicit.stat_2954116742|42245", - ["text"] = "Allocates Efficient Inscriptions", + ["id"] = "explicit.stat_3407300125", + ["text"] = "Increases and Reductions to Mana Regeneration Rate alsoapply to Energy Shield Recharge Rate", ["type"] = "explicit", }, [2242] = { - ["id"] = "explicit.stat_2954116742|8483", - ["text"] = "Allocates Ruin", + ["id"] = "explicit.stat_2293111154", + ["text"] = "Increases and Reductions to Minion Attack Speed also affect you", ["type"] = "explicit", }, [2243] = { - ["id"] = "explicit.stat_2954116742|48418", - ["text"] = "Allocates Hefty Unit", + ["id"] = "explicit.stat_1631928082", + ["text"] = "Increases and Reductions to Minion Damage also affect you", ["type"] = "explicit", }, [2244] = { - ["id"] = "explicit.stat_2954116742|23227", - ["text"] = "Allocates Initiative", + ["id"] = "explicit.stat_414821772", + ["text"] = "Increases and Reductions to Projectile Speed also apply to Damage with Bows", ["type"] = "explicit", }, [2245] = { - ["id"] = "explicit.stat_2954116742|57047", - ["text"] = "Allocates Polymathy", + ["id"] = "explicit.stat_3811649872", + ["text"] = "Increases and Reductions to Spell damage also apply to Attacks", ["type"] = "explicit", }, [2246] = { - ["id"] = "explicit.stat_2954116742|48617", - ["text"] = "Allocates Hunter", + ["id"] = "explicit.stat_1076031760", + ["text"] = "Infinite Parry Range", ["type"] = "explicit", }, [2247] = { - ["id"] = "explicit.stat_2954116742|37806", - ["text"] = "Allocates Branching Bolts", + ["id"] = "explicit.stat_971590056", + ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", ["type"] = "explicit", }, [2248] = { - ["id"] = "explicit.stat_2954116742|43090", - ["text"] = "Allocates Electrotherapy", + ["id"] = "explicit.stat_3005701891", + ["text"] = "Inflict Cold Exposure on Hit", ["type"] = "explicit", }, [2249] = { - ["id"] = "explicit.stat_2954116742|9652", - ["text"] = "Allocates Mending Deflection", + ["id"] = "explicit.stat_3314536008", + ["text"] = "Inflict Cold Exposure on Igniting an Enemy", ["type"] = "explicit", }, [2250] = { - ["id"] = "explicit.stat_2954116742|55568", - ["text"] = "Allocates Forthcoming", + ["id"] = "explicit.stat_1695767482", + ["text"] = "Inflict Corrupted Blood for # second on Block, dealing #% ofyour maximum Life as Physical damage per second", ["type"] = "explicit", }, [2251] = { - ["id"] = "explicit.stat_2954116742|48524", - ["text"] = "Allocates Blood Transfusion", + ["id"] = "explicit.stat_533542952", + ["text"] = "Inflict Elemental Exposure on Hit", ["type"] = "explicit", }, [2252] = { - ["id"] = "explicit.stat_2954116742|31175", - ["text"] = "Allocates Grip of Evil", + ["id"] = "explicit.stat_2951965588", + ["text"] = "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", ["type"] = "explicit", }, [2253] = { - ["id"] = "explicit.stat_2954116742|63585", - ["text"] = "Allocates Thunderstruck", + ["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", }, [2254] = { - ["id"] = "explicit.stat_1174954559", - ["text"] = "Delirium Fog in Area lasts # additional seconds before dissipating", + ["id"] = "explicit.stat_1538879632", + ["text"] = "Inflict Fire Exposure on Shocking an Enemy", ["type"] = "explicit", }, [2255] = { - ["id"] = "explicit.stat_1174954559", - ["text"] = "Delirium Fog in your Maps lasts # additional seconds before dissipating", + ["id"] = "explicit.stat_2665488635", + ["text"] = "Inflict Lightning Exposure on Critical Hit", ["type"] = "explicit", }, [2256] = { - ["id"] = "explicit.stat_2954116742|19442", - ["text"] = "Allocates Prolonged Assault", + ["id"] = "explicit.stat_359380213", + ["text"] = "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", ["type"] = "explicit", }, [2257] = { - ["id"] = "explicit.stat_2954116742|23221", - ["text"] = "Allocates Trick Shot", + ["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", }, [2258] = { - ["id"] = "explicit.stat_2954116742|34316", - ["text"] = "Allocates One with the River", + ["id"] = "explicit.stat_2918129907", + ["text"] = "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", ["type"] = "explicit", }, [2259] = { - ["id"] = "explicit.stat_2954116742|5335", - ["text"] = "Allocates Shimmering Mirage", + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", ["type"] = "explicit", }, [2260] = { - ["id"] = "explicit.stat_2954116742|56806", - ["text"] = "Allocates Swift Blocking", + ["id"] = "explicit.stat_3703496511", + ["text"] = "Intimidate Enemies on Block for # second", ["type"] = "explicit", }, [2261] = { - ["id"] = "explicit.stat_2954116742|60692", - ["text"] = "Allocates Echoing Flames", + ["id"] = "explicit.stat_1078309513", + ["text"] = "Invocated Spells deal #% increased Damage", ["type"] = "explicit", }, [2262] = { - ["id"] = "explicit.stat_2954116742|11838", - ["text"] = "Allocates Dreamcatcher", + ["id"] = "explicit.stat_3711973554", + ["text"] = "Invocated Spells have #% chance to consume half as much Energy", ["type"] = "explicit", }, [2263] = { - ["id"] = "explicit.stat_2954116742|2021", - ["text"] = "Allocates Wellspring", + ["id"] = "explicit.stat_1615901249", + ["text"] = "Invocated skills have #% increased Maximum Energy", ["type"] = "explicit", }, [2264] = { - ["id"] = "explicit.stat_2954116742|42981", - ["text"] = "Allocates Cruel Methods", + ["id"] = "explicit.stat_3528245713", + ["text"] = "Iron Grip", ["type"] = "explicit", }, [2265] = { - ["id"] = "explicit.stat_2954116742|38398", - ["text"] = "Allocates Apocalypse", + ["id"] = "explicit.stat_326965591", + ["text"] = "Iron Reflexes", ["type"] = "explicit", }, [2266] = { - ["id"] = "explicit.stat_2954116742|934", - ["text"] = "Allocates Natural Immunity", + ["id"] = "explicit.stat_3831171903|21", + ["text"] = "Iron Reflexes", ["type"] = "explicit", }, [2267] = { - ["id"] = "explicit.stat_2954116742|18308", - ["text"] = "Allocates Bleeding Out", + ["id"] = "explicit.stat_281311123", + ["text"] = "Iron Will", ["type"] = "explicit", }, [2268] = { - ["id"] = "explicit.stat_2954116742|63037", - ["text"] = "Allocates Sigil of Fire", + ["id"] = "explicit.stat_281201999", + ["text"] = "Knockback direction is reversed", ["type"] = "explicit", }, [2269] = { - ["id"] = "explicit.stat_2954116742|30456", - ["text"] = "Allocates High Alert", + ["id"] = "explicit.stat_3739186583", + ["text"] = "Knocks Back Enemies on Hit", ["type"] = "explicit", }, [2270] = { - ["id"] = "explicit.stat_2954116742|32932", - ["text"] = "Allocates Ichlotl's Inferno", + ["id"] = "explicit.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", ["type"] = "explicit", }, [2271] = { - ["id"] = "explicit.stat_2954116742|4673", - ["text"] = "Allocates Hulking Smash", + ["id"] = "explicit.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", ["type"] = "explicit", }, [2272] = { - ["id"] = "explicit.stat_2954116742|44005", - ["text"] = "Allocates Casting Cascade", + ["id"] = "explicit.stat_1570501432", + ["text"] = "Leech Life #% faster", ["type"] = "explicit", }, [2273] = { - ["id"] = "explicit.stat_2954116742|34543", - ["text"] = "Allocates The Frenzied Bear", + ["id"] = "explicit.stat_3389184522", + ["text"] = "Leech from Critical Hits is instant", ["type"] = "explicit", }, [2274] = { - ["id"] = "explicit.stat_2954116742|11366", - ["text"] = "Allocates Volcanic Skin", + ["id"] = "explicit.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", ["type"] = "explicit", }, [2275] = { - ["id"] = "explicit.stat_2954116742|20511", - ["text"] = "Allocates Cremating Cries", + ["id"] = "explicit.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "explicit", }, [2276] = { - ["id"] = "explicit.stat_2954116742|62803", - ["text"] = "Allocates Woodland Aspect", + ["id"] = "explicit.stat_335699483", + ["text"] = "Leeches #% of maximum Life when you Cast a Spell", ["type"] = "explicit", }, [2277] = { - ["id"] = "explicit.stat_2954116742|4627", - ["text"] = "Allocates Climate Change", + ["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", }, [2278] = { - ["id"] = "explicit.stat_2954116742|31373", - ["text"] = "Allocates Vocal Empowerment", + ["id"] = "explicit.stat_2437476305", + ["text"] = "Left ring slot: Projectiles from Spells Fork", ["type"] = "explicit", }, [2279] = { - ["id"] = "explicit.stat_2954116742|4959", - ["text"] = "Allocates Heavy Frost", + ["id"] = "explicit.stat_3647242059", + ["text"] = "Left ring slot: Projectiles from Spells cannot Chain", ["type"] = "explicit", }, [2280] = { - ["id"] = "explicit.stat_2954116742|32543", - ["text"] = "Allocates Unhindered", + ["id"] = "explicit.stat_264262054|1", + ["text"] = "Legacy of Amethyst", ["type"] = "explicit", }, [2281] = { - ["id"] = "explicit.stat_2954116742|2134", - ["text"] = "Allocates Toxic Tolerance", + ["id"] = "explicit.stat_264262054|2", + ["text"] = "Legacy of Basalt", ["type"] = "explicit", }, [2282] = { - ["id"] = "explicit.stat_2954116742|63579", - ["text"] = "Allocates Momentum", + ["id"] = "explicit.stat_264262054|3", + ["text"] = "Legacy of Bismuth", ["type"] = "explicit", }, [2283] = { - ["id"] = "explicit.stat_2954116742|59214", - ["text"] = "Allocates Fated End", + ["id"] = "explicit.stat_264262054|4", + ["text"] = "Legacy of Diamond", ["type"] = "explicit", }, [2284] = { - ["id"] = "explicit.stat_2954116742|48014", - ["text"] = "Allocates Honourless", + ["id"] = "explicit.stat_264262054|5", + ["text"] = "Legacy of Gold", ["type"] = "explicit", }, [2285] = { - ["id"] = "explicit.stat_2954116742|8904", - ["text"] = "Allocates Death from Afar", + ["id"] = "explicit.stat_264262054|6", + ["text"] = "Legacy of Granite", ["type"] = "explicit", }, [2286] = { - ["id"] = "explicit.stat_2954116742|48658", - ["text"] = "Allocates Shattering", + ["id"] = "explicit.stat_264262054|7", + ["text"] = "Legacy of Jade", ["type"] = "explicit", }, [2287] = { - ["id"] = "explicit.stat_2954116742|10681", - ["text"] = "Allocates Defensive Stance", + ["id"] = "explicit.stat_264262054|8", + ["text"] = "Legacy of Quicksilver", ["type"] = "explicit", }, [2288] = { - ["id"] = "explicit.stat_2954116742|38972", - ["text"] = "Allocates Restless Dead", + ["id"] = "explicit.stat_264262054|9", + ["text"] = "Legacy of Ruby", ["type"] = "explicit", }, [2289] = { - ["id"] = "explicit.stat_2954116742|46696", - ["text"] = "Allocates Impair", + ["id"] = "explicit.stat_264262054|10", + ["text"] = "Legacy of Sapphire", ["type"] = "explicit", }, [2290] = { - ["id"] = "explicit.stat_2954116742|17229", - ["text"] = "Allocates Silent Guardian", + ["id"] = "explicit.stat_264262054|11", + ["text"] = "Legacy of Silver", ["type"] = "explicit", }, [2291] = { - ["id"] = "explicit.stat_2954116742|46060", - ["text"] = "Allocates Voracious", + ["id"] = "explicit.stat_264262054|12", + ["text"] = "Legacy of Stibnite", ["type"] = "explicit", }, [2292] = { - ["id"] = "explicit.stat_2954116742|40213", - ["text"] = "Allocates Taste for Blood", + ["id"] = "explicit.stat_264262054|13", + ["text"] = "Legacy of Sulphur", ["type"] = "explicit", }, [2293] = { - ["id"] = "explicit.stat_1176947534", - ["text"] = "Undead Minions have #% reduced Reservation", + ["id"] = "explicit.stat_264262054|14", + ["text"] = "Legacy of Topaz", ["type"] = "explicit", }, [2294] = { - ["id"] = "explicit.stat_2954116742|13895", - ["text"] = "Allocates Precise Point", + ["id"] = "explicit.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", ["type"] = "explicit", }, [2295] = { - ["id"] = "explicit.stat_2954116742|42347", - ["text"] = "Allocates Chakra of Sight", + ["id"] = "explicit.stat_1200347828", + ["text"] = "Life Flasks used while on Low Life apply Recovery Instantly", ["type"] = "explicit", }, [2296] = { - ["id"] = "explicit.stat_2954116742|4709", - ["text"] = "Allocates Near Sighted", + ["id"] = "explicit.stat_2714890129", + ["text"] = "Life Leech can Overflow Maximum Life", ["type"] = "explicit", }, [2297] = { - ["id"] = "explicit.stat_2954116742|34531", - ["text"] = "Allocates Hallowed", + ["id"] = "explicit.stat_3314050176", + ["text"] = "Life Leech is Converted to Energy Shield Leech", ["type"] = "explicit", }, [2298] = { - ["id"] = "explicit.stat_2954116742|7163", - ["text"] = "Allocates Stimulants", + ["id"] = "explicit.stat_825825364", + ["text"] = "Life Leech recovers based on your Chaos damage instead of Physical damage", ["type"] = "explicit", }, [2299] = { - ["id"] = "explicit.stat_3198708642", - ["text"] = "#% of Lightning damage taken as Cold damage", + ["id"] = "explicit.stat_1092555766", + ["text"] = "Life Leech recovers based on your Lightning damage as well as Physical damage", ["type"] = "explicit", }, [2300] = { - ["id"] = "explicit.stat_2954116742|12611", - ["text"] = "Allocates Harness the Elements", + ["id"] = "explicit.stat_3971919056", + ["text"] = "Life Recharges", ["type"] = "explicit", }, [2301] = { - ["id"] = "explicit.stat_2954116742|42354", - ["text"] = "Allocates Blinding Flash", + ["id"] = "explicit.stat_2812872407", + ["text"] = "Life Recovery from Flasks also applies to Energy Shield", ["type"] = "explicit", }, [2302] = { - ["id"] = "explicit.stat_2954116742|9226", - ["text"] = "Allocates Mental Perseverance", + ["id"] = "explicit.stat_1245896889", + ["text"] = "Life Recovery from Flasks can Overflow Maximum Life", ["type"] = "explicit", }, [2303] = { - ["id"] = "explicit.stat_2954116742|55708", - ["text"] = "Allocates Electric Amplification", + ["id"] = "explicit.stat_720388959", + ["text"] = "Life Recovery from Flasks is instant", ["type"] = "explicit", }, [2304] = { - ["id"] = "explicit.stat_2954116742|37872", - ["text"] = "Allocates Presence Present", + ["id"] = "explicit.stat_3947672598", + ["text"] = "Life Recovery from Regeneration is not applied", ["type"] = "explicit", }, [2305] = { - ["id"] = "explicit.stat_2954116742|36341", - ["text"] = "Allocates Cull the Hordes", + ["id"] = "explicit.stat_451403019", + ["text"] = "Life Recovery other than Flasks cannot Recover Life to above Low Life", ["type"] = "explicit", }, [2306] = { - ["id"] = "explicit.stat_2954116742|10873", - ["text"] = "Allocates Bestial Rage", + ["id"] = "explicit.stat_632761194", + ["text"] = "Life Regeneration is applied to Energy Shield instead", ["type"] = "explicit", }, [2307] = { - ["id"] = "explicit.stat_1010703902", - ["text"] = "The Effect of Blind on you is reversed", + ["id"] = "explicit.stat_932866937", + ["text"] = "Life and Mana Flasks can be equipped in either slot", ["type"] = "explicit", }, [2308] = { - ["id"] = "explicit.stat_2954116742|15374", - ["text"] = "Allocates Hale Heart", + ["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", }, [2309] = { - ["id"] = "explicit.stat_2954116742|16466", - ["text"] = "Allocates Mental Alacrity", + ["id"] = "explicit.stat_1011772129", + ["text"] = "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", ["type"] = "explicit", }, [2310] = { - ["id"] = "explicit.stat_2954116742|36623", - ["text"] = "Allocates Convalescence", + ["id"] = "explicit.stat_3121133045", + ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", ["type"] = "explicit", }, [2311] = { - ["id"] = "explicit.stat_2954116742|25482", - ["text"] = "Allocates Beef", + ["id"] = "explicit.stat_4224965099", + ["text"] = "Lightning Damage of Enemies Hitting you is Lucky", ["type"] = "explicit", }, [2312] = { - ["id"] = "explicit.stat_2954116742|8881", - ["text"] = "Allocates Unforgiving", + ["id"] = "explicit.stat_3246948616", + ["text"] = "Lightning Damage of Enemies Hitting you is Lucky during effect", ["type"] = "explicit", }, [2313] = { - ["id"] = "explicit.stat_555706343", - ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", + ["id"] = "explicit.stat_3999959974", + ["text"] = "Lightning Resistance does not affect Lightning damage taken", ["type"] = "explicit", }, [2314] = { - ["id"] = "explicit.stat_2954116742|20397", - ["text"] = "Allocates Authority", + ["id"] = "explicit.stat_3631920880", + ["text"] = "Lightning Resistance is unaffected by Area Penalties", ["type"] = "explicit", }, [2315] = { - ["id"] = "explicit.stat_2954116742|48565", - ["text"] = "Allocates Bringer of Order", + ["id"] = "explicit.stat_4123841473", + ["text"] = "Lightning Skills Chain # times", ["type"] = "explicit", }, [2316] = { - ["id"] = "explicit.stat_2954116742|35792", - ["text"] = "Allocates Blood of Rage", + ["id"] = "explicit.stat_1017648537", + ["text"] = "Lightning damage from Hits Contributes to Electrocution Buildup", ["type"] = "explicit", }, [2317] = { - ["id"] = "explicit.stat_2954116742|53294", - ["text"] = "Allocates Burn Away", + ["id"] = "explicit.stat_1967051901", + ["text"] = "Loads an additional bolt", ["type"] = "explicit", }, [2318] = { - ["id"] = "explicit.stat_2954116742|2843", - ["text"] = "Allocates Tolerant Equipment", + ["id"] = "explicit.stat_3831171903|31", + ["text"] = "Lord of the Wilds", ["type"] = "explicit", }, [2319] = { - ["id"] = "explicit.stat_2954116742|55", - ["text"] = "Allocates Fast Acting Toxins", + ["id"] = "explicit.stat_1902409192", + ["text"] = "Lose # Life when you use a Skill", ["type"] = "explicit", }, [2320] = { - ["id"] = "explicit.stat_323800555", - ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", + ["id"] = "explicit.stat_1147913864", + ["text"] = "Lose #% Life per second while you have no Runic Ward during Effect", ["type"] = "explicit", }, [2321] = { - ["id"] = "explicit.stat_2954116742|23940", - ["text"] = "Allocates Fortified Aegis", + ["id"] = "explicit.stat_1661347488", + ["text"] = "Lose #% of maximum Life per second", ["type"] = "explicit", }, [2322] = { - ["id"] = "explicit.stat_2954116742|12906", - ["text"] = "Allocates Sitting Duck", + ["id"] = "explicit.stat_1306791873", + ["text"] = "Lose all Fragile Regrowth when Hit", ["type"] = "explicit", }, [2323] = { - ["id"] = "explicit.stat_2954116742|44293", - ["text"] = "Allocates Hastening Barrier", + ["id"] = "explicit.stat_2135899247", + ["text"] = "Lose all Power Charges on reaching maximum Power Charges", ["type"] = "explicit", }, [2324] = { - ["id"] = "explicit.stat_1265767008", - ["text"] = "Your Minions are Gigantic if they have Revived Recently", + ["id"] = "explicit.stat_3851480592", + ["text"] = "Lose all Rage on reaching Maximum Rage", ["type"] = "explicit", }, [2325] = { - ["id"] = "explicit.stat_2954116742|7341", - ["text"] = "Allocates Ignore Pain", + ["id"] = "explicit.stat_367897259", + ["text"] = "Lose all Tailwind when Hit", ["type"] = "explicit", }, [2326] = { - ["id"] = "explicit.stat_2954116742|11826", - ["text"] = "Allocates Heavy Ammunition", + ["id"] = "explicit.stat_2895144208", + ["text"] = "Maim on Critical Hit", ["type"] = "explicit", }, [2327] = { - ["id"] = "explicit.stat_2954116742|42036", - ["text"] = "Allocates Off-Balancing Retort", + ["id"] = "explicit.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", ["type"] = "explicit", }, [2328] = { - ["id"] = "explicit.stat_2954116742|2863", - ["text"] = "Allocates Perpetual Freeze", + ["id"] = "explicit.stat_1839832419", + ["text"] = "Mana Flasks used while on Low Mana apply Recovery Instantly", ["type"] = "explicit", }, [2329] = { - ["id"] = "explicit.stat_2954116742|25362", - ["text"] = "Allocates Chakra of Impact", + ["id"] = "explicit.stat_4100842845", + ["text"] = "Mana Recovery from Flasks can Overflow maximum Mana during Effect", ["type"] = "explicit", }, [2330] = { - ["id"] = "explicit.stat_2954116742|34300", - ["text"] = "Allocates Conservative Casting", + ["id"] = "explicit.stat_3593063598", + ["text"] = "Mana Recovery other than Regeneration cannot Recover Mana", ["type"] = "explicit", }, [2331] = { - ["id"] = "explicit.stat_2954116742|54937", - ["text"] = "Allocates Vengeful Fury", + ["id"] = "explicit.stat_1414945937", + ["text"] = "Manifested Dancing Dervishes die when Rampage ends", ["type"] = "explicit", }, [2332] = { - ["id"] = "explicit.stat_2954116742|10315", - ["text"] = "Allocates Easy Going", + ["id"] = "explicit.stat_1314787770", + ["text"] = "Map Boss has +#% chance to drop a Waystone of the current tier or higher", ["type"] = "explicit", }, [2333] = { - ["id"] = "explicit.stat_2954116742|53150", - ["text"] = "Allocates Sharp Sight", + ["id"] = "explicit.stat_2588474575", + ["text"] = "Map Bosses are Hunted by Azmeri Spirits", ["type"] = "explicit", }, [2334] = { - ["id"] = "explicit.stat_2954116742|61921", - ["text"] = "Allocates Storm Surge", + ["id"] = "explicit.stat_3860150265", + ["text"] = "Map Bosses grant #% increased Experience", ["type"] = "explicit", }, [2335] = { - ["id"] = "explicit.stat_2954116742|33240", - ["text"] = "Allocates Lord of Horrors", + ["id"] = "explicit.stat_1458461453", + ["text"] = "Map Bosses have # additional Modifier", ["type"] = "explicit", }, [2336] = { - ["id"] = "explicit.stat_2954116742|51213", - ["text"] = "Allocates Wasting", + ["id"] = "explicit.stat_588512487", + ["text"] = "Map has # additional random Modifier", ["type"] = "explicit", }, [2337] = { - ["id"] = "explicit.stat_2954116742|5663", - ["text"] = "Allocates Endurance", + ["id"] = "explicit.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", ["type"] = "explicit", }, [2338] = { - ["id"] = "explicit.stat_2954116742|59541", - ["text"] = "Allocates Necrotised Flesh", + ["id"] = "explicit.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", ["type"] = "explicit", }, [2339] = { - ["id"] = "explicit.stat_2954116742|10265", - ["text"] = "Allocates Javelin", + ["id"] = "explicit.stat_1173537953", + ["text"] = "Maximum # Fragile Regrowth", ["type"] = "explicit", }, [2340] = { - ["id"] = "explicit.stat_2954116742|17330", - ["text"] = "Allocates Perforation", + ["id"] = "explicit.stat_1500744699", + ["text"] = "Maximum Chance to Evade is 50%", ["type"] = "explicit", }, [2341] = { - ["id"] = "explicit.stat_2954116742|48103", - ["text"] = "Allocates Forcewave", + ["id"] = "explicit.stat_2104359366", + ["text"] = "Maximum Energy Shield cannot be Converted", ["type"] = "explicit", }, [2342] = { - ["id"] = "explicit.stat_2954116742|38969", - ["text"] = "Allocates Finesse", + ["id"] = "explicit.stat_3960211755", + ["text"] = "Maximum Physical Damage Reduction is 50%", ["type"] = "explicit", }, [2343] = { - ["id"] = "explicit.stat_2954116742|51602", - ["text"] = "Allocates Unsight", + ["id"] = "explicit.stat_275498888", + ["text"] = "Maximum Quality is #%", ["type"] = "explicit", }, [2344] = { - ["id"] = "explicit.stat_2954116742|32976", - ["text"] = "Allocates Gem Enthusiast", + ["id"] = "explicit.stat_1338406168", + ["text"] = "Maximum amount of Guard is based on maximum Energy Shield instead", ["type"] = "explicit", }, [2345] = { - ["id"] = "explicit.stat_2954116742|38888", - ["text"] = "Allocates Unerring Impact", + ["id"] = "explicit.stat_2013356568", + ["text"] = "Melee Attack Skills have # to maximum number of Summoned Totems", ["type"] = "explicit", }, [2346] = { - ["id"] = "explicit.stat_2954116742|30562", - ["text"] = "Allocates Inner Faith", + ["id"] = "explicit.stat_2889807051", + ["text"] = "Melee Hits count as Rampage KillsRampage", ["type"] = "explicit", }, [2347] = { - ["id"] = "explicit.stat_2954116742|43939", - ["text"] = "Allocates Melting Flames", + ["id"] = "explicit.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "explicit", }, [2348] = { - ["id"] = "explicit.stat_2954116742|47270", - ["text"] = "Allocates Inescapable Cold", + ["id"] = "explicit.stat_173471035", + ["text"] = "Meta Skills gain #% increased Energy while on Full Mana", ["type"] = "explicit", }, [2349] = { - ["id"] = "explicit.stat_2954116742|47514", - ["text"] = "Allocates Dizzying Hits", + ["id"] = "explicit.stat_3831171903|10", + ["text"] = "Mind Over Matter", ["type"] = "explicit", }, [2350] = { - ["id"] = "explicit.stat_2954116742|27491", - ["text"] = "Allocates Heavy Buffer", + ["id"] = "explicit.stat_195270549", + ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", ["type"] = "explicit", }, [2351] = { - ["id"] = "explicit.stat_2954116742|54031", - ["text"] = "Allocates The Great Boar", + ["id"] = "explicit.stat_2479683456", + ["text"] = "Minions Regenerate #% of maximum Life per second", ["type"] = "explicit", }, [2352] = { - ["id"] = "explicit.stat_2954116742|5009", - ["text"] = "Allocates Seeing Stars", + ["id"] = "explicit.stat_2639966148", + ["text"] = "Minions Revive #% faster", ["type"] = "explicit", }, [2353] = { - ["id"] = "explicit.stat_2954116742|56493", - ["text"] = "Allocates Agile Succession", + ["id"] = "explicit.stat_4046380260", + ["text"] = "Minions cannot Die while affected by a Life Flask", ["type"] = "explicit", }, [2354] = { - ["id"] = "explicit.stat_2954116742|4716", - ["text"] = "Allocates Afterimage", + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", ["type"] = "explicit", }, [2355] = { - ["id"] = "explicit.stat_2954116742|15986", - ["text"] = "Allocates Building Toxins", + ["id"] = "explicit.stat_2337295272", + ["text"] = "Minions deal #% increased Damage if you've Hit Recently", ["type"] = "explicit", }, [2356] = { - ["id"] = "explicit.stat_2954116742|41394", - ["text"] = "Allocates Invigorating Archon", + ["id"] = "explicit.stat_3742865955", + ["text"] = "Minions deal #% increased Damage with Command Skills", ["type"] = "explicit", }, [2357] = { - ["id"] = "explicit.stat_2954116742|48699", - ["text"] = "Allocates Frostwalker", + ["id"] = "explicit.stat_943702197", + ["text"] = "Minions gain #% of their maximum Life as Extra maximum Energy Shield", ["type"] = "explicit", }, [2358] = { - ["id"] = "explicit.stat_2954116742|16256", - ["text"] = "Allocates Ether Flow", + ["id"] = "explicit.stat_1797815732", + ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", ["type"] = "explicit", }, [2359] = { - ["id"] = "explicit.stat_2954116742|14383", - ["text"] = "Allocates Suffusion", + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", ["type"] = "explicit", }, [2360] = { - ["id"] = "explicit.stat_2201614328", - ["text"] = "Regenerate #% of maximum Life per second if you have been Hit Recently", + ["id"] = "explicit.stat_1486714289", + ["text"] = "Minions have #% chance to inflict Gruelling Madness on Hit", ["type"] = "explicit", }, [2361] = { - ["id"] = "explicit.stat_2954116742|34908", - ["text"] = "Allocates Staunch Deflection", + ["id"] = "explicit.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", ["type"] = "explicit", }, [2362] = { - ["id"] = "explicit.stat_2954116742|63031", - ["text"] = "Allocates Glorious Anticipation", + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", ["type"] = "explicit", }, [2363] = { - ["id"] = "explicit.stat_2954116742|7651", - ["text"] = "Allocates Pierce the Heart", + ["id"] = "explicit.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, [2364] = { - ["id"] = "explicit.stat_2954116742|42959", - ["text"] = "Allocates Low Tolerance", + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", ["type"] = "explicit", }, [2365] = { - ["id"] = "explicit.stat_2954116742|31189", - ["text"] = "Allocates Unexpected Finesse", + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", ["type"] = "explicit", }, [2366] = { - ["id"] = "explicit.stat_2954116742|45713", - ["text"] = "Allocates Savouring", + ["id"] = "explicit.stat_1485480327", + ["text"] = "Minions have #% increased Immobilisation buildup", ["type"] = "explicit", }, [2367] = { - ["id"] = "explicit.stat_2954116742|10295", - ["text"] = "Allocates Overzealous", + ["id"] = "explicit.stat_953593695", + ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", ["type"] = "explicit", }, [2368] = { - ["id"] = "explicit.stat_2954116742|5227", - ["text"] = "Allocates Escape Strategy", + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", ["type"] = "explicit", }, [2369] = { - ["id"] = "explicit.stat_2954116742|21537", - ["text"] = "Allocates Fervour", + ["id"] = "explicit.stat_73032170", + ["text"] = "Minions have #% increased Skill Speed with Command Skills", ["type"] = "explicit", }, [2370] = { - ["id"] = "explicit.stat_2954116742|17955", - ["text"] = "Allocates Careful Consideration", + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", ["type"] = "explicit", }, [2371] = { - ["id"] = "explicit.stat_2954116742|41512", - ["text"] = "Allocates Heavy Weaponry", + ["id"] = "explicit.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", ["type"] = "explicit", }, [2372] = { - ["id"] = "explicit.stat_2954116742|4331", - ["text"] = "Allocates Guided Hand", + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, [2373] = { - ["id"] = "explicit.stat_2954116742|33978", - ["text"] = "Allocates Unstoppable Barrier", + ["id"] = "explicit.stat_3893509584", + ["text"] = "Minions have Unholy Might", ["type"] = "explicit", }, [2374] = { - ["id"] = "explicit.stat_2954116742|6544", - ["text"] = "Allocates Burning Strikes", + ["id"] = "explicit.stat_3045072899", + ["text"] = "Minions' Resistances are equal to yours", ["type"] = "explicit", }, [2375] = { - ["id"] = "explicit.stat_2954116742|35560", - ["text"] = "Allocates At your Command", + ["id"] = "explicit.stat_3679696791", + ["text"] = "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", ["type"] = "explicit", }, [2376] = { - ["id"] = "explicit.stat_2954116742|11392", - ["text"] = "Allocates Molten Being", + ["id"] = "explicit.stat_3201111383", + ["text"] = "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", ["type"] = "explicit", }, [2377] = { - ["id"] = "explicit.stat_2954116742|62185", - ["text"] = "Allocates Rattled", + ["id"] = "explicit.stat_1898978455", + ["text"] = "Monster Damage Penetrates #% Elemental Resistances", ["type"] = "explicit", }, [2378] = { - ["id"] = "explicit.stat_2954116742|1104", - ["text"] = "Allocates Lust for Power", + ["id"] = "explicit.stat_1138708335", + ["text"] = "Monster Damage penetrates #% of Cold Resistance", ["type"] = "explicit", }, [2379] = { - ["id"] = "explicit.stat_2954116742|36931", - ["text"] = "Allocates Concussive Attack", + ["id"] = "explicit.stat_3588388638", + ["text"] = "Monster Damage penetrates #% of Fire Resistance", ["type"] = "explicit", }, [2380] = { - ["id"] = "explicit.stat_2954116742|32721", - ["text"] = "Allocates Distracted Target", + ["id"] = "explicit.stat_3093465148", + ["text"] = "Monster Damage penetrates #% of Lightning Resistance", ["type"] = "explicit", }, [2381] = { - ["id"] = "explicit.stat_2954116742|41753", - ["text"] = "Allocates Evocational Practitioner", + ["id"] = "explicit.stat_3877264671", + ["text"] = "Monster have #% increased Elemental Ailment Application", ["type"] = "explicit", }, [2382] = { - ["id"] = "explicit.stat_2954116742|36333", - ["text"] = "Allocates Explosive Empowerment", + ["id"] = "explicit.stat_1879340377", + ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", ["type"] = "explicit", }, [2383] = { - ["id"] = "explicit.stat_2954116742|26331", - ["text"] = "Allocates Harsh Winter", + ["id"] = "explicit.stat_159726667", + ["text"] = "Monsters Sacrificed at Ritual Altars grant #% increased Tribute", ["type"] = "explicit", }, [2384] = { - ["id"] = "explicit.stat_2954116742|35918", - ["text"] = "Allocates One For All", + ["id"] = "explicit.stat_159726667", + ["text"] = "Monsters Sacrificed at Ritual Altars in Area grant #% increased Tribute", ["type"] = "explicit", }, [2385] = { - ["id"] = "explicit.stat_2954116742|23078", - ["text"] = "Allocates Holy Protector", + ["id"] = "explicit.stat_2539290279", + ["text"] = "Monsters are Armoured", ["type"] = "explicit", }, [2386] = { - ["id"] = "explicit.stat_2954116742|56893", - ["text"] = "Allocates Thicket Warding", + ["id"] = "explicit.stat_2570249991", + ["text"] = "Monsters are Evasive", ["type"] = "explicit", }, [2387] = { - ["id"] = "explicit.stat_2954116742|16150", - ["text"] = "Allocates Inspiring Ally", + ["id"] = "explicit.stat_2200661314", + ["text"] = "Monsters deal #% of Damage as Extra Chaos", ["type"] = "explicit", }, [2388] = { - ["id"] = "explicit.stat_2954116742|18959", - ["text"] = "Allocates Ruinic Helm", + ["id"] = "explicit.stat_211727", + ["text"] = "Monsters deal #% of Damage as Extra Cold", ["type"] = "explicit", }, [2389] = { - ["id"] = "explicit.stat_2954116742|11774", - ["text"] = "Allocates The Spring Hare", + ["id"] = "explicit.stat_92381065", + ["text"] = "Monsters deal #% of Damage as Extra Fire", ["type"] = "explicit", }, [2390] = { - ["id"] = "explicit.stat_2954116742|2645", - ["text"] = "Allocates Skullcrusher", + ["id"] = "explicit.stat_512071314", + ["text"] = "Monsters deal #% of Damage as Extra Lightning", ["type"] = "explicit", }, [2391] = { - ["id"] = "explicit.stat_2954116742|62034", - ["text"] = "Allocates Prism Guard", + ["id"] = "explicit.stat_1309819744", + ["text"] = "Monsters fire # additional Projectiles", ["type"] = "explicit", }, [2392] = { - ["id"] = "explicit.stat_2954116742|26070", - ["text"] = "Allocates Bolstering Yell", + ["id"] = "explicit.stat_2887760183", + ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", ["type"] = "explicit", }, [2393] = { - ["id"] = "explicit.stat_2954116742|13457", - ["text"] = "Allocates Shadow Dancing", + ["id"] = "explicit.stat_57326096", + ["text"] = "Monsters have #% Critical Damage Bonus", ["type"] = "explicit", }, [2394] = { - ["id"] = "explicit.stat_2954116742|27626", - ["text"] = "Allocates Touch the Arcane", + ["id"] = "explicit.stat_95221307", + ["text"] = "Monsters have #% chance to Poison on Hit", ["type"] = "explicit", }, [2395] = { - ["id"] = "explicit.stat_2954116742|20414", - ["text"] = "Allocates Reprisal", + ["id"] = "explicit.stat_2506820610", + ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, [2396] = { - ["id"] = "explicit.stat_2954116742|61112", - ["text"] = "Allocates Roll and Strike", + ["id"] = "explicit.stat_3222482040", + ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", ["type"] = "explicit", }, [2397] = { - ["id"] = "explicit.stat_2954116742|27875", - ["text"] = "Allocates General Electric", + ["id"] = "explicit.stat_1588049749", + ["text"] = "Monsters have #% increased Accuracy Rating", ["type"] = "explicit", }, [2398] = { - ["id"] = "explicit.stat_2954116742|17882", - ["text"] = "Allocates Volatile Grenades", + ["id"] = "explicit.stat_1994551050", + ["text"] = "Monsters have #% increased Ailment Threshold", ["type"] = "explicit", }, [2399] = { - ["id"] = "explicit.stat_2954116742|44373", - ["text"] = "Allocates Wither Away", + ["id"] = "explicit.stat_1708461270", + ["text"] = "Monsters have #% increased Area of Effect", ["type"] = "explicit", }, [2400] = { - ["id"] = "explicit.stat_2954116742|61444", - ["text"] = "Allocates Wasting Casts", + ["id"] = "explicit.stat_3906866585", + ["text"] = "Monsters have #% increased Armour, Evasion and Energy Shield", ["type"] = "explicit", }, [2401] = { - ["id"] = "explicit.stat_2954116742|62887", - ["text"] = "Allocates Living Death", + ["id"] = "explicit.stat_3909654181", + ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", ["type"] = "explicit", }, [2402] = { - ["id"] = "explicit.stat_2954116742|38342", - ["text"] = "Allocates Stupefy", + ["id"] = "explicit.stat_2753083623", + ["text"] = "Monsters have #% increased Critical Hit Chance", ["type"] = "explicit", }, [2403] = { - ["id"] = "explicit.stat_2954116742|31364", - ["text"] = "Allocates Primal Protection", + ["id"] = "explicit.stat_3998863698", + ["text"] = "Monsters have #% increased Freeze Buildup", ["type"] = "explicit", }, [2404] = { - ["id"] = "explicit.stat_2954116742|4547", - ["text"] = "Allocates Unnatural Resilience", + ["id"] = "explicit.stat_1984618452", + ["text"] = "Monsters have #% increased Shock Chance", ["type"] = "explicit", }, [2405] = { - ["id"] = "explicit.stat_2954116742|45488", - ["text"] = "Allocates Cross Strike", + ["id"] = "explicit.stat_115425161", + ["text"] = "Monsters have #% increased Stun Buildup", ["type"] = "explicit", }, [2406] = { - ["id"] = "explicit.stat_2954116742|35809", - ["text"] = "Allocates Reinvigoration", + ["id"] = "explicit.stat_4101943684", + ["text"] = "Monsters have #% increased Stun Threshold", ["type"] = "explicit", }, [2407] = { - ["id"] = "explicit.stat_2954116742|32301", - ["text"] = "Allocates Frazzled", + ["id"] = "explicit.stat_1751584857", + ["text"] = "Monsters inflict # Grasping Vine on Hit", ["type"] = "explicit", }, [2408] = { - ["id"] = "explicit.stat_2954116742|41033", - ["text"] = "Allocates Utmost Offering", + ["id"] = "explicit.stat_2508044078", + ["text"] = "Monsters inflict #% increased Flammability Magnitude", ["type"] = "explicit", }, [2409] = { - ["id"] = "explicit.stat_2954116742|16499", - ["text"] = "Allocates Lingering Whispers", + ["id"] = "explicit.stat_337935900", + ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", ["type"] = "explicit", }, [2410] = { - ["id"] = "explicit.stat_2954116742|42045", - ["text"] = "Allocates Archon of the Blizzard", + ["id"] = "explicit.stat_4112450013", + ["text"] = "Moving while Bleeding doesn't cause you to take extra damage", ["type"] = "explicit", }, [2411] = { - ["id"] = "explicit.stat_2954116742|26518", - ["text"] = "Allocates Cold Nature", + ["id"] = "explicit.stat_1266185101", + ["text"] = "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", ["type"] = "explicit", }, [2412] = { - ["id"] = "explicit.stat_2954116742|50485", - ["text"] = "Allocates Zone of Control", + ["id"] = "explicit.stat_1168851547", + ["text"] = "Natural Rare Monsters in Area have # extra Abyssal Modifier", ["type"] = "explicit", }, [2413] = { - ["id"] = "explicit.stat_2954116742|40985", - ["text"] = "Allocates Empowering Remnants", + ["id"] = "explicit.stat_3831171903|12", + ["text"] = "Necromantic Talisman", ["type"] = "explicit", }, [2414] = { - ["id"] = "explicit.stat_2954116742|53527", - ["text"] = "Allocates Shattering Blow", + ["id"] = "explicit.stat_4163076972", + ["text"] = "No Inherent loss of Rage", ["type"] = "explicit", }, [2415] = { - ["id"] = "explicit.stat_2954116742|56063", - ["text"] = "Allocates Lingering Horror", + ["id"] = "explicit.stat_3464644319", + ["text"] = "No Inherent loss of Rage during effect", ["type"] = "explicit", }, [2416] = { - ["id"] = "explicit.stat_2954116742|9421", - ["text"] = "Allocates Snowpiercer", + ["id"] = "explicit.stat_585231074", + ["text"] = "No Movement Speed Penalty while Shield is Raised", ["type"] = "explicit", }, [2417] = { - ["id"] = "explicit.stat_2954116742|10612", - ["text"] = "Allocates Embodiment of Frost", + ["id"] = "explicit.stat_1920747151", + ["text"] = "Non-Channelling Spells cost an additional #% of your maximum Life", ["type"] = "explicit", }, [2418] = { - ["id"] = "explicit.stat_2954116742|54148", - ["text"] = "Allocates Smoke Inhalation", + ["id"] = "explicit.stat_1027889455", + ["text"] = "Non-Channelling Spells deal #% increased Damage per 100 maximum Life", ["type"] = "explicit", }, [2419] = { - ["id"] = "explicit.stat_2954116742|17600", - ["text"] = "Allocates Thirsting Ally", + ["id"] = "explicit.stat_3843734793", + ["text"] = "Non-Channelling Spells deal #% increased Damage per 100 maximum Mana", ["type"] = "explicit", }, [2420] = { - ["id"] = "explicit.stat_2954116742|40073", - ["text"] = "Allocates Drenched", + ["id"] = "explicit.stat_170426423", + ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Life", ["type"] = "explicit", }, [2421] = { - ["id"] = "explicit.stat_2954116742|2397", - ["text"] = "Allocates Last Stand", + ["id"] = "explicit.stat_1367999357", + ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Mana", ["type"] = "explicit", }, [2422] = { - ["id"] = "explicit.stat_2954116742|16940", - ["text"] = "Allocates Arcane Nature", + ["id"] = "explicit.stat_4245905059", + ["text"] = "Non-Channelling Spells have #% increased Magnitude of Ailments per 100 maximum Life", ["type"] = "explicit", }, [2423] = { - ["id"] = "explicit.stat_2954116742|34553", - ["text"] = "Allocates Emboldening Lead", + ["id"] = "explicit.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "explicit", }, [2424] = { - ["id"] = "explicit.stat_1559935218", - ["text"] = "Causes Daze buildup equal to #% of Damage dealt", + ["id"] = "explicit.stat_3991877392", + ["text"] = "Notable Passive Skills in Radius also grant # to Spirit", ["type"] = "explicit", }, [2425] = { - ["id"] = "explicit.stat_2954116742|14934", - ["text"] = "Allocates Spiral into Mania", + ["id"] = "explicit.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", ["type"] = "explicit", }, [2426] = { - ["id"] = "explicit.stat_2954116742|35369", - ["text"] = "Allocates Investing Energies", + ["id"] = "explicit.stat_4225700219", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", ["type"] = "explicit", }, [2427] = { - ["id"] = "explicit.stat_2954116742|33887", - ["text"] = "Allocates Full Salvo", + ["id"] = "explicit.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", ["type"] = "explicit", }, [2428] = { - ["id"] = "explicit.stat_2954116742|26291", - ["text"] = "Allocates Electrifying Nature", + ["id"] = "explicit.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", ["type"] = "explicit", }, [2429] = { - ["id"] = "explicit.stat_2954116742|19156", - ["text"] = "Allocates Immaterial", + ["id"] = "explicit.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", ["type"] = "explicit", }, [2430] = { - ["id"] = "explicit.stat_2954116742|24438", - ["text"] = "Allocates Hardened Wood", + ["id"] = "explicit.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", ["type"] = "explicit", }, [2431] = { - ["id"] = "explicit.stat_2954116742|18419", - ["text"] = "Allocates Ancestral Mending", + ["id"] = "explicit.stat_3429148113", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "explicit", }, [2432] = { - ["id"] = "explicit.stat_2954116742|6655", - ["text"] = "Allocates Aggravation", + ["id"] = "explicit.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", ["type"] = "explicit", }, [2433] = { - ["id"] = "explicit.stat_2954116742|14761", - ["text"] = "Allocates Warlord Leader", + ["id"] = "explicit.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", ["type"] = "explicit", }, [2434] = { - ["id"] = "explicit.stat_2954116742|58426", - ["text"] = "Allocates Pocket Sand", + ["id"] = "explicit.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", ["type"] = "explicit", }, [2435] = { - ["id"] = "explicit.stat_2954116742|13542", - ["text"] = "Allocates Loose Flesh", + ["id"] = "explicit.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", ["type"] = "explicit", }, [2436] = { - ["id"] = "explicit.stat_1484026495", - ["text"] = "+# maximum stacks of Puppet Master", + ["id"] = "explicit.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", ["type"] = "explicit", }, [2437] = { - ["id"] = "explicit.stat_2954116742|40270", - ["text"] = "Allocates Frenetic", + ["id"] = "explicit.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", ["type"] = "explicit", }, [2438] = { - ["id"] = "explicit.stat_2954116742|33093", - ["text"] = "Allocates Effervescent", + ["id"] = "explicit.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", ["type"] = "explicit", }, [2439] = { - ["id"] = "explicit.stat_2954116742|14945", - ["text"] = "Allocates Growing Swarm", + ["id"] = "explicit.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", ["type"] = "explicit", }, [2440] = { - ["id"] = "explicit.stat_2954116742|53823", - ["text"] = "Allocates Towering Shield", + ["id"] = "explicit.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", ["type"] = "explicit", }, [2441] = { - ["id"] = "explicit.stat_2954116742|10602", - ["text"] = "Allocates Reaving", + ["id"] = "explicit.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", ["type"] = "explicit", }, [2442] = { - ["id"] = "explicit.stat_2954116742|43139", - ["text"] = "Allocates Stormbreaker", + ["id"] = "explicit.stat_61644361", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", ["type"] = "explicit", }, [2443] = { - ["id"] = "explicit.stat_2954116742|58397", - ["text"] = "Allocates Proficiency", + ["id"] = "explicit.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, [2444] = { - ["id"] = "explicit.stat_2954116742|34308", - ["text"] = "Allocates Personal Touch", + ["id"] = "explicit.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", ["type"] = "explicit", }, [2445] = { - ["id"] = "explicit.stat_2954116742|2335", - ["text"] = "Allocates Turn the Clock Forward", + ["id"] = "explicit.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "explicit", }, [2446] = { - ["id"] = "explicit.stat_2954116742|50687", - ["text"] = "Allocates Coursing Energy", + ["id"] = "explicit.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", ["type"] = "explicit", }, [2447] = { - ["id"] = "explicit.stat_2954116742|52257", - ["text"] = "Allocates Conductive Embrace", + ["id"] = "explicit.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", ["type"] = "explicit", }, [2448] = { - ["id"] = "explicit.stat_2954116742|27761", - ["text"] = "Allocates Counterstancing", + ["id"] = "explicit.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "explicit", }, [2449] = { - ["id"] = "explicit.stat_2954116742|24120", - ["text"] = "Allocates Mental Toughness", + ["id"] = "explicit.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", ["type"] = "explicit", }, [2450] = { - ["id"] = "explicit.stat_2954116742|22626", - ["text"] = "Allocates Irreparable", + ["id"] = "explicit.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", ["type"] = "explicit", }, [2451] = { - ["id"] = "explicit.stat_2954116742|27009", - ["text"] = "Allocates Lust for Sacrifice", + ["id"] = "explicit.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", ["type"] = "explicit", }, [2452] = { - ["id"] = "explicit.stat_2954116742|65256", - ["text"] = "Allocates Widespread Coverage", + ["id"] = "explicit.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", ["type"] = "explicit", }, [2453] = { - ["id"] = "explicit.stat_2954116742|47782", - ["text"] = "Allocates Steady Footing", + ["id"] = "explicit.stat_2717786748", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Dexterity", ["type"] = "explicit", }, [2454] = { - ["id"] = "explicit.stat_2954116742|30748", - ["text"] = "Allocates Controlled Chaos", + ["id"] = "explicit.stat_2272980012", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", ["type"] = "explicit", }, [2455] = { - ["id"] = "explicit.stat_2954116742|43791", - ["text"] = "Allocates Rallying Icon", + ["id"] = "explicit.stat_1323216174", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "explicit", }, [2456] = { - ["id"] = "explicit.stat_2954116742|30392", - ["text"] = "Allocates Succour", + ["id"] = "explicit.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", ["type"] = "explicit", }, [2457] = { - ["id"] = "explicit.stat_2954116742|32151", - ["text"] = "Allocates Crystalline Resistance", + ["id"] = "explicit.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", ["type"] = "explicit", }, [2458] = { - ["id"] = "explicit.stat_2954116742|51169", - ["text"] = "Allocates Soul Bloom", + ["id"] = "explicit.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", ["type"] = "explicit", }, [2459] = { - ["id"] = "explicit.stat_2954116742|27388", - ["text"] = "Allocates Aspiring Genius", + ["id"] = "explicit.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", ["type"] = "explicit", }, [2460] = { - ["id"] = "explicit.stat_2954116742|58096", - ["text"] = "Allocates Lasting Incantations", + ["id"] = "explicit.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", ["type"] = "explicit", }, [2461] = { - ["id"] = "explicit.stat_2954116742|64050", - ["text"] = "Allocates Marathon Runner", + ["id"] = "explicit.stat_2783157569", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", ["type"] = "explicit", }, [2462] = { - ["id"] = "explicit.stat_2954116742|19249", - ["text"] = "Allocates Supportive Ancestors", + ["id"] = "explicit.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", ["type"] = "explicit", }, [2463] = { - ["id"] = "explicit.stat_2954116742|39990", - ["text"] = "Allocates Chronomancy", + ["id"] = "explicit.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", ["type"] = "explicit", }, [2464] = { - ["id"] = "explicit.stat_2954116742|35028", - ["text"] = "Allocates In the Thick of It", + ["id"] = "explicit.stat_40618390", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Intelligence", ["type"] = "explicit", }, [2465] = { - ["id"] = "explicit.stat_3471443885", - ["text"] = "#% of Damage taken from Deflected Hits Recouped as Life", + ["id"] = "explicit.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", ["type"] = "explicit", }, [2466] = { - ["id"] = "explicit.stat_2954116742|65160", - ["text"] = "Allocates Titanic", + ["id"] = "explicit.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", ["type"] = "explicit", }, [2467] = { - ["id"] = "explicit.stat_2954116742|55835", - ["text"] = "Allocates Exposed to the Cosmos", + ["id"] = "explicit.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", ["type"] = "explicit", }, [2468] = { - ["id"] = "explicit.stat_2954116742|11578", - ["text"] = "Allocates Spreading Shocks", + ["id"] = "explicit.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", ["type"] = "explicit", }, [2469] = { - ["id"] = "explicit.stat_2954116742|42065", - ["text"] = "Allocates Surging Currents", + ["id"] = "explicit.stat_391602279", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", ["type"] = "explicit", }, [2470] = { - ["id"] = "explicit.stat_2954116742|3688", - ["text"] = "Allocates Dynamism", + ["id"] = "explicit.stat_4092130601", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "explicit", }, [2471] = { - ["id"] = "explicit.stat_2954116742|20008", - ["text"] = "Allocates Unleash Fire", + ["id"] = "explicit.stat_462424929", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", ["type"] = "explicit", }, [2472] = { - ["id"] = "explicit.stat_2954116742|15617", - ["text"] = "Allocates Heavy Drinker", + ["id"] = "explicit.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", ["type"] = "explicit", }, [2473] = { - ["id"] = "explicit.stat_2954116742|51606", - ["text"] = "Allocates Freedom of Movement", + ["id"] = "explicit.stat_4257790560", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", ["type"] = "explicit", }, [2474] = { - ["id"] = "explicit.stat_2954116742|46296", - ["text"] = "Allocates Short Shot", + ["id"] = "explicit.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", ["type"] = "explicit", }, [2475] = { - ["id"] = "explicit.stat_2954116742|4931", - ["text"] = "Allocates Dependable Ward", + ["id"] = "explicit.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "explicit", }, [2476] = { - ["id"] = "explicit.stat_2954116742|16626", - ["text"] = "Allocates Impact Area", + ["id"] = "explicit.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", ["type"] = "explicit", }, [2477] = { - ["id"] = "explicit.stat_2954116742|6514", - ["text"] = "Allocates Cacophony", + ["id"] = "explicit.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", ["type"] = "explicit", }, [2478] = { - ["id"] = "explicit.stat_3423006863", - ["text"] = "Arrows Pierce an additional Target", + ["id"] = "explicit.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", ["type"] = "explicit", }, [2479] = { - ["id"] = "explicit.stat_2954116742|8791", - ["text"] = "Allocates Sturdy Ally", + ["id"] = "explicit.stat_4032352472", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", ["type"] = "explicit", }, [2480] = { - ["id"] = "explicit.stat_2954116742|3698", - ["text"] = "Allocates Spike Pit", + ["id"] = "explicit.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", ["type"] = "explicit", }, [2481] = { - ["id"] = "explicit.stat_2954116742|39083", - ["text"] = "Allocates Blood Rush", + ["id"] = "explicit.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", ["type"] = "explicit", }, [2482] = { - ["id"] = "explicit.stat_2954116742|5642", - ["text"] = "Allocates Behemoth", + ["id"] = "explicit.stat_3579898587", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", ["type"] = "explicit", }, [2483] = { - ["id"] = "explicit.stat_2954116742|33059", - ["text"] = "Allocates Back in Action", + ["id"] = "explicit.stat_2580617872", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", ["type"] = "explicit", }, [2484] = { - ["id"] = "explicit.stat_2954116742|750", - ["text"] = "Allocates Tribal Fury", + ["id"] = "explicit.stat_1842384813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Strength", ["type"] = "explicit", }, [2485] = { - ["id"] = "explicit.stat_2954116742|14211", - ["text"] = "Allocates Shredding Contraptions", + ["id"] = "explicit.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", ["type"] = "explicit", }, [2486] = { - ["id"] = "explicit.stat_2954116742|12822", - ["text"] = "Allocates Adaptable Assault", + ["id"] = "explicit.stat_2392824305", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", ["type"] = "explicit", }, [2487] = { - ["id"] = "explicit.stat_2954116742|43677", - ["text"] = "Allocates Crippling Toxins", + ["id"] = "explicit.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", ["type"] = "explicit", }, [2488] = { - ["id"] = "explicit.stat_2954116742|26339", - ["text"] = "Allocates Ancestral Artifice", + ["id"] = "explicit.stat_2675129731", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", ["type"] = "explicit", }, [2489] = { - ["id"] = "explicit.stat_2954116742|29800", - ["text"] = "Allocates Shocking Limit", + ["id"] = "explicit.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", ["type"] = "explicit", }, [2490] = { - ["id"] = "explicit.stat_2954116742|21748", - ["text"] = "Allocates Impending Doom", + ["id"] = "explicit.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", ["type"] = "explicit", }, [2491] = { - ["id"] = "explicit.stat_2954116742|36630", - ["text"] = "Allocates Incision", + ["id"] = "explicit.stat_4180952808", + ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", ["type"] = "explicit", }, [2492] = { - ["id"] = "explicit.stat_2954116742|53367", - ["text"] = "Allocates Symbol of Defiance", + ["id"] = "explicit.stat_412709880", + ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", ["type"] = "explicit", }, [2493] = { - ["id"] = "explicit.stat_2954116742|64415", - ["text"] = "Allocates Shattering Daze", + ["id"] = "explicit.stat_160888068", + ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Life", ["type"] = "explicit", }, [2494] = { - ["id"] = "explicit.stat_2954116742|22817", - ["text"] = "Allocates Inevitable Rupture", + ["id"] = "explicit.stat_2589572664", + ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Mana", ["type"] = "explicit", }, [2495] = { - ["id"] = "explicit.stat_2954116742|17150", - ["text"] = "Allocates General's Bindings", + ["id"] = "explicit.stat_2709646369", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", ["type"] = "explicit", }, [2496] = { - ["id"] = "explicit.stat_2954116742|53030", - ["text"] = "Allocates Immolation", + ["id"] = "explicit.stat_3669820740", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", ["type"] = "explicit", }, [2497] = { - ["id"] = "explicit.stat_2954116742|9896", - ["text"] = "Allocates Heartstopping Presence", + ["id"] = "explicit.stat_85367160", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", ["type"] = "explicit", }, [2498] = { - ["id"] = "explicit.stat_2954116742|52180", - ["text"] = "Allocates Trained Deflection", + ["id"] = "explicit.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", ["type"] = "explicit", }, [2499] = { - ["id"] = "explicit.stat_2954116742|23736", - ["text"] = "Allocates Spray and Pray", + ["id"] = "explicit.stat_1687542781", + ["text"] = "Notable Passive Skills in Radius also grant #% to Lightning Resistance", ["type"] = "explicit", }, [2500] = { - ["id"] = "explicit.stat_2954116742|32858", - ["text"] = "Allocates Dread Engineer's Concoction", + ["id"] = "explicit.stat_1731760476", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Chaos Resistance", ["type"] = "explicit", }, [2501] = { - ["id"] = "explicit.stat_2954116742|59070", - ["text"] = "Allocates Enduring Archon", + ["id"] = "explicit.stat_1862508014", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Cold Resistance", ["type"] = "explicit", }, [2502] = { - ["id"] = "explicit.stat_2954116742|43854", - ["text"] = "Allocates All For One", + ["id"] = "explicit.stat_4151994709", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Fire Resistance", ["type"] = "explicit", }, [2503] = { - ["id"] = "explicit.stat_2954116742|60764", - ["text"] = "Allocates Feathered Fletching", + ["id"] = "explicit.stat_2217513089", + ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Lightning Resistance", ["type"] = "explicit", }, [2504] = { - ["id"] = "explicit.stat_2954116742|40345", - ["text"] = "Allocates Master of Hexes", + ["id"] = "explicit.stat_3243034867", + ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", ["type"] = "explicit", }, [2505] = { - ["id"] = "explicit.stat_2954116742|52229", - ["text"] = "Allocates Secrets of the Orb", + ["id"] = "explicit.stat_1034611536", + ["text"] = "Notable Passive Skills in Radius also grant Charms gain # charge per Second", ["type"] = "explicit", }, [2506] = { - ["id"] = "explicit.stat_2954116742|32354", - ["text"] = "Allocates Defiance", + ["id"] = "explicit.stat_3173882956", + ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", ["type"] = "explicit", }, [2507] = { - ["id"] = "explicit.stat_2954116742|42103", - ["text"] = "Allocates Enduring Deflection", + ["id"] = "explicit.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", ["type"] = "explicit", }, [2508] = { - ["id"] = "explicit.stat_2954116742|47363", - ["text"] = "Allocates Colossal Weapon", + ["id"] = "explicit.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", ["type"] = "explicit", }, [2509] = { - ["id"] = "explicit.stat_2954116742|24766", - ["text"] = "Allocates Paranoia", + ["id"] = "explicit.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", ["type"] = "explicit", }, [2510] = { - ["id"] = "explicit.stat_2954116742|46683", - ["text"] = "Allocates Inherited Strength ", + ["id"] = "explicit.stat_2603051299", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, [2511] = { - ["id"] = "explicit.stat_2954116742|32799", - ["text"] = "Allocates Captivating Companionship", + ["id"] = "explicit.stat_833138896", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Cold Damage", ["type"] = "explicit", }, [2512] = { - ["id"] = "explicit.stat_3775736880", - ["text"] = "Gain 1 Fear Incarnate when you Cull a target", + ["id"] = "explicit.stat_338620903", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, [2513] = { - ["id"] = "explicit.stat_2954116742|29899", - ["text"] = "Allocates Finish Them", + ["id"] = "explicit.stat_852470634", + ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Lightning Damage", ["type"] = "explicit", }, [2514] = { - ["id"] = "explicit.stat_2954116742|52348", - ["text"] = "Allocates Carved Earth", + ["id"] = "explicit.stat_2135541924", + ["text"] = "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", ["type"] = "explicit", }, [2515] = { - ["id"] = "explicit.stat_2954116742|41811", - ["text"] = "Allocates Shatter Palm", + ["id"] = "explicit.stat_1148433552", + ["text"] = "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", ["type"] = "explicit", }, [2516] = { - ["id"] = "explicit.stat_2954116742|4447", - ["text"] = "Allocates Pin their Motivation", + ["id"] = "explicit.stat_3939216292", + ["text"] = "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", ["type"] = "explicit", }, [2517] = { - ["id"] = "explicit.stat_2954116742|5332", - ["text"] = "Allocates Crystallised Immunities", + ["id"] = "explicit.stat_2849546516", + ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", ["type"] = "explicit", }, [2518] = { - ["id"] = "explicit.stat_2954116742|17762", - ["text"] = "Allocates Vengeance", + ["id"] = "explicit.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", ["type"] = "explicit", }, [2519] = { - ["id"] = "explicit.stat_2954116742|15606", - ["text"] = "Allocates Thrill of the Fight", + ["id"] = "explicit.stat_3106718406", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", ["type"] = "explicit", }, [2520] = { - ["id"] = "explicit.stat_2954116742|35581", - ["text"] = "Allocates Near at Hand", + ["id"] = "explicit.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", ["type"] = "explicit", }, [2521] = { - ["id"] = "explicit.stat_2954116742|18397", - ["text"] = "Allocates Savoured Blood", + ["id"] = "explicit.stat_3628935286", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", ["type"] = "explicit", }, [2522] = { - ["id"] = "explicit.stat_2954116742|13823", - ["text"] = "Allocates Controlling Magic", + ["id"] = "explicit.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", ["type"] = "explicit", }, [2523] = { - ["id"] = "explicit.stat_264262054|8", - ["text"] = "Legacy of Quicksilver", + ["id"] = "explicit.stat_4258720395", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "explicit", }, [2524] = { - ["id"] = "explicit.stat_2954116742|61741", - ["text"] = "Allocates Lasting Toxins", + ["id"] = "explicit.stat_2334956771", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "explicit", }, [2525] = { - ["id"] = "explicit.stat_2954116742|1352", - ["text"] = "Allocates Unbending", + ["id"] = "explicit.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", ["type"] = "explicit", }, [2526] = { - ["id"] = "explicit.stat_2954116742|31826", - ["text"] = "Allocates Long Distance Relationship", + ["id"] = "explicit.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "explicit", }, [2527] = { - ["id"] = "explicit.stat_2954116742|62455", - ["text"] = "Allocates Bannerman", + ["id"] = "explicit.stat_3566150527", + ["text"] = "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", ["type"] = "explicit", }, [2528] = { - ["id"] = "explicit.stat_2954116742|49550", - ["text"] = "Allocates Prolonged Fury", + ["id"] = "explicit.stat_3831171903|19", + ["text"] = "Oasis", ["type"] = "explicit", }, [2529] = { - ["id"] = "explicit.stat_2954116742|9444", - ["text"] = "Allocates One with the Storm", + ["id"] = "explicit.stat_3430033313", + ["text"] = "Off-hand Hits inflict Runefather's Challenge", ["type"] = "explicit", }, [2530] = { - ["id"] = "explicit.stat_2954116742|46499", - ["text"] = "Allocates Guts", + ["id"] = "explicit.stat_3191479793", + ["text"] = "Offering Skills have #% increased Buff effect", ["type"] = "explicit", }, [2531] = { - ["id"] = "explicit.stat_2954116742|14777", - ["text"] = "Allocates Bravado", + ["id"] = "explicit.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", ["type"] = "explicit", }, [2532] = { - ["id"] = "explicit.stat_2954116742|27434", - ["text"] = "Allocates Archon of the Storm", + ["id"] = "explicit.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", ["type"] = "explicit", }, [2533] = { - ["id"] = "explicit.stat_2954116742|64851", - ["text"] = "Allocates Flashy Parrying", + ["id"] = "explicit.stat_4215035940", + ["text"] = "On Corruption, Item gains two Enchantments", ["type"] = "explicit", }, [2534] = { - ["id"] = "explicit.stat_2954116742|43396", - ["text"] = "Allocates Ancestral Reach", + ["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", }, [2535] = { - ["id"] = "explicit.stat_3526763442", - ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", + ["id"] = "explicit.stat_259470957", + ["text"] = "On-Kill Effects happen twice", ["type"] = "explicit", }, [2536] = { - ["id"] = "explicit.stat_2954116742|8554", - ["text"] = "Allocates Burning Nature", + ["id"] = "explicit.stat_250458861", + ["text"] = "Only Soul Cores can be Socketed in this item", ["type"] = "explicit", }, [2537] = { - ["id"] = "explicit.stat_2954116742|50912", - ["text"] = "Allocates Imbibed Power", + ["id"] = "explicit.stat_3642528642|6", + ["text"] = "Only affects Passives in Large Ring", ["type"] = "explicit", }, [2538] = { - ["id"] = "explicit.stat_2954116742|25619", - ["text"] = "Allocates Sand in the Eyes", + ["id"] = "explicit.stat_3642528642|8", + ["text"] = "Only affects Passives in Massive Ring", ["type"] = "explicit", }, [2539] = { - ["id"] = "explicit.stat_2954116742|38628", - ["text"] = "Allocates Escalating Toxins", + ["id"] = "explicit.stat_3642528642|4", + ["text"] = "Only affects Passives in Medium Ring", ["type"] = "explicit", }, [2540] = { - ["id"] = "explicit.stat_2954116742|63739", - ["text"] = "Allocates Vigorous Remnants", + ["id"] = "explicit.stat_3642528642|5", + ["text"] = "Only affects Passives in Medium-Large Ring", ["type"] = "explicit", }, [2541] = { - ["id"] = "explicit.stat_315717203", - ["text"] = "Remnants you create affect Allies in your Presence as well as you when collected", + ["id"] = "explicit.stat_3642528642|3", + ["text"] = "Only affects Passives in Medium-Small Ring", ["type"] = "explicit", }, [2542] = { - ["id"] = "explicit.stat_2954116742|53853", - ["text"] = "Allocates Backup Plan", + ["id"] = "explicit.stat_3642528642|2", + ["text"] = "Only affects Passives in Small Ring", ["type"] = "explicit", }, [2543] = { - ["id"] = "explicit.stat_2954116742|48240", - ["text"] = "Allocates Quick Recovery", + ["id"] = "explicit.stat_3642528642|7", + ["text"] = "Only affects Passives in Very Large Ring", ["type"] = "explicit", }, [2544] = { - ["id"] = "explicit.stat_2954116742|30720", - ["text"] = "Allocates Entropic Incarnation", + ["id"] = "explicit.stat_3642528642|1", + ["text"] = "Only affects Passives in Very Small Ring", ["type"] = "explicit", }, [2545] = { - ["id"] = "explicit.stat_2954116742|12750", - ["text"] = "Allocates Vale Shelter", + ["id"] = "explicit.stat_1520059289", + ["text"] = "Onslaught", ["type"] = "explicit", }, [2546] = { - ["id"] = "explicit.stat_2954116742|55308", - ["text"] = "Allocates Sling Shots", + ["id"] = "explicit.stat_3831171903|7", + ["text"] = "Pain Attunement", ["type"] = "explicit", }, [2547] = { - ["id"] = "explicit.stat_2954116742|42302", - ["text"] = "Allocates Split Shot", + ["id"] = "explicit.stat_98977150", + ["text"] = "Pain Attunement", ["type"] = "explicit", }, [2548] = { - ["id"] = "explicit.stat_2954116742|8660", - ["text"] = "Allocates Reverberation", + ["id"] = "explicit.stat_3488640354", + ["text"] = "Parried enemies take more Spell Damage instead of more Attack Damage", ["type"] = "explicit", }, [2549] = { - ["id"] = "explicit.stat_2954116742|40117", - ["text"] = "Allocates Spiked Armour", + ["id"] = "explicit.stat_2104138899", + ["text"] = "Parrying applies # Stack of Critical Weakness", ["type"] = "explicit", }, [2550] = { - ["id"] = "explicit.stat_2954116742|65243", - ["text"] = "Allocates Enveloping Presence", + ["id"] = "explicit.stat_4077035099", + ["text"] = "Passives in Radius can be Allocated without being connected to your tree", ["type"] = "explicit", }, [2551] = { - ["id"] = "explicit.stat_2954116742|35849", - ["text"] = "Allocates Thickened Arteries", + ["id"] = "explicit.stat_2422708892|45202", + ["text"] = "Passives in Radius of Ancestral Bond can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2552] = { - ["id"] = "explicit.stat_2954116742|23630", - ["text"] = "Allocates Self Immolation", + ["id"] = "explicit.stat_2422708892|18684", + ["text"] = "Passives in Radius of Avatar of Fire can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2553] = { - ["id"] = "explicit.stat_2954116742|27513", - ["text"] = "Allocates Material Solidification", + ["id"] = "explicit.stat_2422708892|42680", + ["text"] = "Passives in Radius of Blackflame Covenant can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2554] = { - ["id"] = "explicit.stat_2954116742|40803", - ["text"] = "Allocates Sigil of Ice", + ["id"] = "explicit.stat_2422708892|51749", + ["text"] = "Passives in Radius of Blood Magic can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2555] = { - ["id"] = "explicit.stat_2954116742|21453", - ["text"] = "Allocates Breakage", + ["id"] = "explicit.stat_2422708892|56605", + ["text"] = "Passives in Radius of Bulwark can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2556] = { - ["id"] = "explicit.stat_2954116742|28329", - ["text"] = "Allocates Pressure Points", + ["id"] = "explicit.stat_2422708892|56349", + ["text"] = "Passives in Radius of Chaos Inoculation can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2557] = { - ["id"] = "explicit.stat_2954116742|13980", - ["text"] = "Allocates Split the Earth", + ["id"] = "explicit.stat_2422708892|33979", + ["text"] = "Passives in Radius of Conduit can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2558] = { - ["id"] = "explicit.stat_2954116742|42390", - ["text"] = "Allocates Overheating Blow", + ["id"] = "explicit.stat_2422708892|9085", + ["text"] = "Passives in Radius of Crimson Assault can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2559] = { - ["id"] = "explicit.stat_2954116742|50884", - ["text"] = "Allocates Primal Sundering", + ["id"] = "explicit.stat_2422708892|14226", + ["text"] = "Passives in Radius of Dance with Death can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2560] = { - ["id"] = "explicit.stat_2954116742|40687", - ["text"] = "Allocates Lead by Example", + ["id"] = "explicit.stat_2422708892|57513", + ["text"] = "Passives in Radius of Eldritch Battery can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2561] = { - ["id"] = "explicit.stat_2954116742|13708", - ["text"] = "Allocates Curved Weapon", + ["id"] = "explicit.stat_2422708892|46742", + ["text"] = "Passives in Radius of Elemental Equilibrium can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2562] = { - ["id"] = "explicit.stat_2954116742|40480", - ["text"] = "Allocates Harmonic Generator", + ["id"] = "explicit.stat_2422708892|33404", + ["text"] = "Passives in Radius of Eternal Youth can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2563] = { - ["id"] = "explicit.stat_2954116742|5594", - ["text"] = "Allocates Decrepifying Curse", + ["id"] = "explicit.stat_2422708892|32349", + ["text"] = "Passives in Radius of Giant's Blood can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2564] = { - ["id"] = "explicit.stat_2954116742|52199", - ["text"] = "Allocates Overexposure", + ["id"] = "explicit.stat_2422708892|19288", + ["text"] = "Passives in Radius of Glancing Blows can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2565] = { - ["id"] = "explicit.stat_2954116742|34425", - ["text"] = "Allocates Precise Volatility", + ["id"] = "explicit.stat_2422708892|34497", + ["text"] = "Passives in Radius of Heartstopper can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2566] = { - ["id"] = "explicit.stat_2954116742|36976", - ["text"] = "Allocates Marked for Death", + ["id"] = "explicit.stat_2422708892|64601", + ["text"] = "Passives in Radius of Hollow Palm Technique can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2567] = { - ["id"] = "explicit.stat_2954116742|50253", - ["text"] = "Allocates Aftershocks", + ["id"] = "explicit.stat_2422708892|28492", + ["text"] = "Passives in Radius of Iron Reflexes can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2568] = { - ["id"] = "explicit.stat_2954116742|37514", - ["text"] = "Allocates Whirling Assault", + ["id"] = "explicit.stat_2422708892|61942", + ["text"] = "Passives in Radius of Lord of the Wilds can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2569] = { - ["id"] = "explicit.stat_1992191903", - ["text"] = "# to Level of all Mark Skills", + ["id"] = "explicit.stat_2422708892|45918", + ["text"] = "Passives in Radius of Mind Over Matter can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2570] = { - ["id"] = "explicit.stat_2954116742|5580", - ["text"] = "Allocates Watchtowers", + ["id"] = "explicit.stat_2422708892|39935", + ["text"] = "Passives in Radius of Necromantic Talisman can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2571] = { - ["id"] = "explicit.stat_2954116742|40325", - ["text"] = "Allocates Resolution", + ["id"] = "explicit.stat_2422708892|25100", + ["text"] = "Passives in Radius of Oasis can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2572] = { - ["id"] = "explicit.stat_2954116742|4544", - ["text"] = "Allocates The Ancient Serpent", + ["id"] = "explicit.stat_2422708892|55048", + ["text"] = "Passives in Radius of Pain Attunement can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2573] = { - ["id"] = "explicit.stat_2954116742|2575", - ["text"] = "Allocates Ancestral Alacrity", + ["id"] = "explicit.stat_2422708892|37484", + ["text"] = "Passives in Radius of Primal Hunger can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2574] = { - ["id"] = "explicit.stat_325171970", - ["text"] = "#% increased Attack Speed while missing Runic Ward", + ["id"] = "explicit.stat_2422708892|44017", + ["text"] = "Passives in Radius of Resolute Technique can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2575] = { - ["id"] = "explicit.stat_2954116742|46384", - ["text"] = "Allocates Wide Barrier", + ["id"] = "explicit.stat_2422708892|25520", + ["text"] = "Passives in Radius of Resonance can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2576] = { - ["id"] = "explicit.stat_2954116742|1823", - ["text"] = "Allocates Illuminated Crown", + ["id"] = "explicit.stat_2422708892|11230", + ["text"] = "Passives in Radius of Ritual Cadence can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2577] = { - ["id"] = "explicit.stat_2954116742|24483", - ["text"] = "Allocates Direct Approach", + ["id"] = "explicit.stat_2422708892|49547", + ["text"] = "Passives in Radius of Scarred Faith can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2578] = { - ["id"] = "explicit.stat_2954116742|34340", - ["text"] = "Allocates Mass Rejuvenation", + ["id"] = "explicit.stat_2422708892|41861", + ["text"] = "Passives in Radius of Trusted Kinship can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2579] = { - ["id"] = "explicit.stat_2954116742|45244", - ["text"] = "Allocates Refills", + ["id"] = "explicit.stat_2422708892|14540", + ["text"] = "Passives in Radius of Unwavering Stance can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2580] = { - ["id"] = "explicit.stat_2954116742|37742", - ["text"] = "Allocates Manifold Method", + ["id"] = "explicit.stat_2422708892|33369", + ["text"] = "Passives in Radius of Vaal Pact can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2581] = { - ["id"] = "explicit.stat_2954116742|34541", - ["text"] = "Allocates Energising Deflection", + ["id"] = "explicit.stat_2422708892|47759", + ["text"] = "Passives in Radius of Whispers of Doom can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2582] = { - ["id"] = "explicit.stat_2319832234", - ["text"] = "#% of Damage Taken Recouped as Life, Mana and Energy Shield", + ["id"] = "explicit.stat_2422708892|49363", + ["text"] = "Passives in Radius of Wildsurge Incantation can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2583] = { - ["id"] = "explicit.stat_2954116742|58714", - ["text"] = "Allocates Grenadier", + ["id"] = "explicit.stat_2422708892|52", + ["text"] = "Passives in Radius of Zealot's Oath can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, [2584] = { - ["id"] = "explicit.stat_2954116742|58215", - ["text"] = "Allocates Sanguimantic Rituals", + ["id"] = "explicit.stat_2930706364", + ["text"] = "Permanently Intimidate enemies on Block", ["type"] = "explicit", }, [2585] = { - ["id"] = "explicit.stat_2954116742|55817", - ["text"] = "Allocates Alchemical Oil", + ["id"] = "explicit.stat_2041668411", + ["text"] = "Physical Damage is Pinning", ["type"] = "explicit", }, [2586] = { - ["id"] = "explicit.stat_2954116742|12661", - ["text"] = "Allocates Asceticism", + ["id"] = "explicit.stat_2424163939", + ["text"] = "Physical Damage of Enemies Hitting you is Lucky", ["type"] = "explicit", }, [2587] = { - ["id"] = "explicit.stat_2954116742|12964", - ["text"] = "Allocates Lone Warrior", + ["id"] = "explicit.stat_905072977", + ["text"] = "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup", ["type"] = "explicit", }, [2588] = { - ["id"] = "explicit.stat_679019978", - ["text"] = "#% of Damage is taken from Mana before Life while not on Low Mana", + ["id"] = "explicit.stat_3063814459", + ["text"] = "Pin Enemies which are Primed for Pinning", ["type"] = "explicit", }, [2589] = { - ["id"] = "explicit.stat_2954116742|64543", - ["text"] = "Allocates Unbound Forces", + ["id"] = "explicit.stat_2408625104", + ["text"] = "Players and their Minions deal no damage for 3 out of every 10 seconds", ["type"] = "explicit", }, [2590] = { - ["id"] = "explicit.stat_2954116742|15030", - ["text"] = "Allocates Consistent Intake", + ["id"] = "explicit.stat_558910024", + ["text"] = "Players are Cursed with Elemental Weakness", ["type"] = "explicit", }, [2591] = { - ["id"] = "explicit.stat_2954116742|65016", - ["text"] = "Allocates Intense Flames", + ["id"] = "explicit.stat_4103440490", + ["text"] = "Players are Cursed with Enfeeble", ["type"] = "explicit", }, [2592] = { - ["id"] = "explicit.stat_2954116742|64240", - ["text"] = "Allocates Battle Fever", + ["id"] = "explicit.stat_2326202293", + ["text"] = "Players are Cursed with Temporal Chains", ["type"] = "explicit", }, [2593] = { - ["id"] = "explicit.stat_2954116742|52971", - ["text"] = "Allocates The Soul Meridian", + ["id"] = "explicit.stat_436406826", + ["text"] = "Players are Marked for Death for # secondsafter killing a Rare or Unique monster", ["type"] = "explicit", }, [2594] = { - ["id"] = "explicit.stat_2954116742|19722", - ["text"] = "Allocates Thin Ice", + ["id"] = "explicit.stat_554690751", + ["text"] = "Players are periodically Cursed with Elemental Weakness", ["type"] = "explicit", }, [2595] = { - ["id"] = "explicit.stat_2954116742|9736", - ["text"] = "Allocates Insulated Treads", + ["id"] = "explicit.stat_2029171424", + ["text"] = "Players are periodically Cursed with Enfeeble", ["type"] = "explicit", }, [2596] = { - ["id"] = "explicit.stat_2954116742|65193", - ["text"] = "Allocates Viciousness", + ["id"] = "explicit.stat_1629357380", + ["text"] = "Players are periodically Cursed with Temporal Chains", ["type"] = "explicit", }, [2597] = { - ["id"] = "explicit.stat_2954116742|26479", - ["text"] = "Allocates Steadfast Resolve", + ["id"] = "explicit.stat_2549889921", + ["text"] = "Players gain #% reduced Flask Charges", ["type"] = "explicit", }, [2598] = { - ["id"] = "explicit.stat_2954116742|35324", - ["text"] = "Allocates Burnout", + ["id"] = "explicit.stat_4181072906", + ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", ["type"] = "explicit", }, [2599] = { - ["id"] = "explicit.stat_2954116742|58939", - ["text"] = "Allocates Dispatch Foes", + ["id"] = "explicit.stat_3510648768", + ["text"] = "Players have #% more Armour, Evasion and Energy Shield", ["type"] = "explicit", }, [2600] = { - ["id"] = "explicit.stat_2954116742|7275", - ["text"] = "Allocates Electrocuting Exposure", + ["id"] = "explicit.stat_941368244", + ["text"] = "Players have #% more Cooldown Recovery Rate", ["type"] = "explicit", }, [2601] = { - ["id"] = "explicit.stat_2954116742|53566", - ["text"] = "Allocates Run and Gun", + ["id"] = "explicit.stat_4274247770", + ["text"] = "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", ["type"] = "explicit", }, [2602] = { - ["id"] = "explicit.stat_2954116742|11376", - ["text"] = "Allocates Necrotic Touch", + ["id"] = "explicit.stat_1310597900", + ["text"] = "Players have #% more Recovery Rate of Life, Mana and Energy Shield", ["type"] = "explicit", }, [2603] = { - ["id"] = "explicit.stat_2954116742|51509", - ["text"] = "Allocates Waters of Life", + ["id"] = "explicit.stat_3119282240", + ["text"] = "Players have #% more maximum Life and Energy Shield", ["type"] = "explicit", }, [2604] = { - ["id"] = "explicit.stat_2954116742|57785", - ["text"] = "Allocates Trained Turrets", + ["id"] = "explicit.stat_1365079333", + ["text"] = "Players steal the Eaten Souls of Slain Rare Monsters in Area", ["type"] = "explicit", }, [2605] = { - ["id"] = "explicit.stat_2954116742|24087", - ["text"] = "Allocates Everlasting Infusions", + ["id"] = "explicit.stat_3403424702", + ["text"] = "Possessed by Spirit Of The Bear for # seconds on use", ["type"] = "explicit", }, [2606] = { - ["id"] = "explicit.stat_2954116742|15114", - ["text"] = "Allocates Boundless Growth", + ["id"] = "explicit.stat_1685559578", + ["text"] = "Possessed by Spirit Of The Boar for # seconds on use", ["type"] = "explicit", }, [2607] = { - ["id"] = "explicit.stat_2954116742|35855", - ["text"] = "Allocates Fortifying Blood", + ["id"] = "explicit.stat_2839557359", + ["text"] = "Possessed by Spirit Of The Cat for # seconds on use", ["type"] = "explicit", }, [2608] = { - ["id"] = "explicit.stat_2954116742|61104", - ["text"] = "Allocates Staggering Wounds", + ["id"] = "explicit.stat_300107724", + ["text"] = "Possessed by Spirit Of The Owl for # seconds on use", ["type"] = "explicit", }, [2609] = { - ["id"] = "explicit.stat_1359862146", - ["text"] = "Can Allocate Passive Skills from the Warrior's starting point", + ["id"] = "explicit.stat_3463873033", + ["text"] = "Possessed by Spirit Of The Ox for # seconds on use", ["type"] = "explicit", }, [2610] = { - ["id"] = "explicit.stat_2954116742|35477", - ["text"] = "Allocates Far Sighted", + ["id"] = "explicit.stat_3763491818", + ["text"] = "Possessed by Spirit Of The Primate for # seconds on use", ["type"] = "explicit", }, [2611] = { - ["id"] = "explicit.stat_2954116742|7668", - ["text"] = "Allocates Internal Bleeding", + ["id"] = "explicit.stat_3181677174", + ["text"] = "Possessed by Spirit Of The Serpent for # seconds on use", ["type"] = "explicit", }, [2612] = { - ["id"] = "explicit.stat_2954116742|23764", - ["text"] = "Allocates Alternating Current", + ["id"] = "explicit.stat_3685424517", + ["text"] = "Possessed by Spirit Of The Stag for # seconds on use", ["type"] = "explicit", }, [2613] = { - ["id"] = "explicit.stat_2954116742|20251", - ["text"] = "Allocates Splitting Ground", + ["id"] = "explicit.stat_3504441212", + ["text"] = "Possessed by Spirit Of The Wolf for # seconds on use", ["type"] = "explicit", }, [2614] = { - ["id"] = "explicit.stat_2954116742|33099", - ["text"] = "Allocates Hunter's Talisman", + ["id"] = "explicit.stat_1810907437", + ["text"] = "Presence Radius is doubled", ["type"] = "explicit", }, [2615] = { - ["id"] = "explicit.stat_2954116742|45632", - ["text"] = "Allocates Mind Eraser", + ["id"] = "explicit.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", ["type"] = "explicit", }, [2616] = { - ["id"] = "explicit.stat_2954116742|57110", - ["text"] = "Allocates Infused Flesh", + ["id"] = "explicit.stat_3831171903|16", + ["text"] = "Primal Hunger", ["type"] = "explicit", }, [2617] = { - ["id"] = "explicit.stat_2954116742|44917", - ["text"] = "Allocates Self Mortification", + ["id"] = "explicit.stat_3932115504", + ["text"] = "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", ["type"] = "explicit", }, [2618] = { - ["id"] = "explicit.stat_4259875040", - ["text"] = "#% increased Magnitude of Impales inflicted with Spells", + ["id"] = "explicit.stat_2214228141", + ["text"] = "Projectiles Pierce all Ignited enemies", ["type"] = "explicit", }, [2619] = { - ["id"] = "explicit.stat_54812069", - ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", + ["id"] = "explicit.stat_3464380325", + ["text"] = "Projectiles Split towards # targets", ["type"] = "explicit", }, [2620] = { - ["id"] = "explicit.stat_2954116742|47088", - ["text"] = "Allocates Sic 'Em", + ["id"] = "explicit.stat_2825946427", + ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", ["type"] = "explicit", }, [2621] = { - ["id"] = "explicit.stat_2954116742|60619", - ["text"] = "Allocates Scales of the Wyvern", + ["id"] = "explicit.stat_2468595624", + ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies within 2m", ["type"] = "explicit", }, [2622] = { - ["id"] = "explicit.stat_2954116742|51105", - ["text"] = "Allocates Spirit Bond", + ["id"] = "explicit.stat_883169830", + ["text"] = "Projectiles deal #% increased Damage with Hits for each time they have Pierced", ["type"] = "explicit", }, [2623] = { - ["id"] = "explicit.stat_2954116742|11886", - ["text"] = "Allocates Mauling Stuns", + ["id"] = "explicit.stat_3826125995", + ["text"] = "Projectiles from Spells cannot Pierce", ["type"] = "explicit", }, [2624] = { - ["id"] = "explicit.stat_1002535626", - ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", + ["id"] = "explicit.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "explicit", }, [2625] = { - ["id"] = "explicit.stat_2954116742|8782", - ["text"] = "Allocates Empowering Infusions", + ["id"] = "explicit.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "explicit", }, [2626] = { - ["id"] = "explicit.stat_3742865955", - ["text"] = "Minions deal #% increased Damage with Command Skills", + ["id"] = "explicit.stat_2189073790", + ["text"] = "Projectiles have #% chance to Fork if you've dealt a Melee Hit in the past eight seconds", ["type"] = "explicit", }, [2627] = { - ["id"] = "explicit.stat_797289402", - ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", + ["id"] = "explicit.stat_2573406169", + ["text"] = "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", ["type"] = "explicit", }, [2628] = { - ["id"] = "explicit.stat_2954116742|37276", - ["text"] = "Allocates Battle Trance", + ["id"] = "explicit.stat_2706625504", + ["text"] = "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", ["type"] = "explicit", }, [2629] = { - ["id"] = "explicit.stat_2954116742|28542", - ["text"] = "Allocates The Molten One's Gift", + ["id"] = "explicit.stat_1163615092", + ["text"] = "Projectiles have #% increased Critical Hit chance for each time they have Pierced", ["type"] = "explicit", }, [2630] = { - ["id"] = "explicit.stat_2954116742|56767", - ["text"] = "Allocates Electrifying Daze", + ["id"] = "explicit.stat_2550456553", + ["text"] = "Rare Monsters have # additional Modifier", ["type"] = "explicit", }, [2631] = { - ["id"] = "explicit.stat_4108426433", - ["text"] = "#% of Fire damage taken as Cold damage", + ["id"] = "explicit.stat_3732878551", + ["text"] = "Rare Monsters have a #% Surpassing chance to have an additional Modifier", ["type"] = "explicit", }, [2632] = { - ["id"] = "explicit.stat_2954116742|8397", - ["text"] = "Allocates Empowering Remains", + ["id"] = "explicit.stat_2550456553", + ["text"] = "Rare Monsters in your Maps have # additional Modifier", ["type"] = "explicit", }, [2633] = { - ["id"] = "explicit.stat_2954116742|16790", - ["text"] = "Allocates Efficient Casting", + ["id"] = "explicit.stat_3732878551", + ["text"] = "Rare Monsters in your Maps have a #% Surpassing chance to have an additional Modifier", ["type"] = "explicit", }, [2634] = { - ["id"] = "explicit.stat_2954116742|48774", - ["text"] = "Allocates Taut Flesh", + ["id"] = "explicit.stat_3198163869", + ["text"] = "Raven-Touched", ["type"] = "explicit", }, [2635] = { - ["id"] = "explicit.stat_2954116742|64650", - ["text"] = "Allocates Wary Dodging", + ["id"] = "explicit.stat_2365392475", + ["text"] = "Recover # Life when Used", ["type"] = "explicit", }, [2636] = { - ["id"] = "explicit.stat_2954116742|63451", - ["text"] = "Allocates Cranial Impact", + ["id"] = "explicit.stat_1120862500", + ["text"] = "Recover # Mana when Used", ["type"] = "explicit", }, [2637] = { - ["id"] = "explicit.stat_2954116742|65023", - ["text"] = "Allocates Impenetrable Shell", + ["id"] = "explicit.stat_554145967", + ["text"] = "Recover # Runic Ward when a Charm is used", ["type"] = "explicit", }, [2638] = { - ["id"] = "explicit.stat_2954116742|46692", - ["text"] = "Allocates Efficient Alchemy", + ["id"] = "explicit.stat_1568848828", + ["text"] = "Recover # Runic Ward when you Block", ["type"] = "explicit", }, [2639] = { - ["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", + ["id"] = "explicit.stat_4033618138", + ["text"] = "Recover #% of Maximum Life when you expend at least 10 Combo", ["type"] = "explicit", }, [2640] = { - ["id"] = "explicit.stat_2954116742|1603", - ["text"] = "Allocates Storm Driven", + ["id"] = "explicit.stat_2991045011", + ["text"] = "Recover #% of Maximum Mana when you expend at least 10 Combo", ["type"] = "explicit", }, [2641] = { - ["id"] = "explicit.stat_2954116742|27950", - ["text"] = "Allocates Polished Iron", + ["id"] = "explicit.stat_1990472846", + ["text"] = "Recover #% of Missing Life before being Hit by an Enemy", ["type"] = "explicit", }, [2642] = { - ["id"] = "explicit.stat_2954116742|29306", - ["text"] = "Allocates Chakra of Thought", + ["id"] = "explicit.stat_939832726", + ["text"] = "Recover #% of maximum Life for each Endurance Charge consumed", ["type"] = "explicit", }, [2643] = { - ["id"] = "explicit.stat_2954116742|6304", - ["text"] = "Allocates Stand Ground", + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "explicit", }, [2644] = { - ["id"] = "explicit.stat_2954116742|55375", - ["text"] = "Allocates Licking Wounds", + ["id"] = "explicit.stat_1781372024", + ["text"] = "Recover #% of maximum Life on Killing a Poisoned Enemy", ["type"] = "explicit", }, [2645] = { - ["id"] = "explicit.stat_2954116742|26447", - ["text"] = "Allocates Refocus", + ["id"] = "explicit.stat_2535713562", + ["text"] = "Recover #% of maximum Life per Poison affecting Enemies you Kill", ["type"] = "explicit", }, [2646] = { - ["id"] = "explicit.stat_2954116742|3188", - ["text"] = "Allocates Revenge", + ["id"] = "explicit.stat_2442647190", + ["text"] = "Recover #% of maximum Life when you Block", ["type"] = "explicit", }, [2647] = { - ["id"] = "explicit.stat_2475221757", - ["text"] = "#% increased Effect of Suffixes", + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", ["type"] = "explicit", }, [2648] = { - ["id"] = "explicit.stat_2218479786", - ["text"] = "Can Allocate Passive Skills from the Shadow's starting point", + ["id"] = "explicit.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "explicit", }, [2649] = { - ["id"] = "explicit.stat_2954116742|9290", - ["text"] = "Allocates Rusted Pins", + ["id"] = "explicit.stat_4121454694", + ["text"] = "Recover #% of maximum Mana when a Charm is used", ["type"] = "explicit", }, [2650] = { - ["id"] = "explicit.stat_2954116742|25211", - ["text"] = "Allocates Waning Hindrances", + ["id"] = "explicit.stat_346374719", + ["text"] = "Recover #% of maximum Mana when you consume a Power Charge", ["type"] = "explicit", }, [2651] = { - ["id"] = "explicit.stat_2954116742|20388", - ["text"] = "Allocates Regenerative Flesh", + ["id"] = "explicit.stat_3503117295", + ["text"] = "Recover #% of your maximum Life when an Enemy dies in your Presence", ["type"] = "explicit", }, [2652] = { - ["id"] = "explicit.stat_2954116742|63400", - ["text"] = "Allocates Chakra of Elements", + ["id"] = "explicit.stat_2456226238", + ["text"] = "Recover #% of your maximum Mana when an Enemy dies in your Presence", ["type"] = "explicit", }, [2653] = { - ["id"] = "explicit.stat_1067622524", - ["text"] = "Companions deal #% increased damage to your Marked targets", + ["id"] = "explicit.stat_2716923832", + ["text"] = "Recover Life equal to #% of Mana Flask's Recovery Amount when used", ["type"] = "explicit", }, [2654] = { - ["id"] = "explicit.stat_2954116742|9328", - ["text"] = "Allocates Spirit of the Bear", + ["id"] = "explicit.stat_3891350097", + ["text"] = "Recover Mana equal to #% of Life Flask's Recovery Amount when used", ["type"] = "explicit", }, [2655] = { - ["id"] = "explicit.stat_2954116742|46224", - ["text"] = "Allocates Arcane Alchemy", + ["id"] = "explicit.stat_1002973905", + ["text"] = "Recover all Mana when Used", ["type"] = "explicit", }, [2656] = { - ["id"] = "explicit.stat_2954116742|48215", - ["text"] = "Allocates Headshot", + ["id"] = "explicit.stat_746505085", + ["text"] = "Reflects opposite Ring", ["type"] = "explicit", }, [2657] = { - ["id"] = "explicit.stat_2638381947", - ["text"] = "Skills from Corrupted Gems have #% increased Cost Efficiency during any Flask Effect", + ["id"] = "explicit.stat_1312381104", + ["text"] = "Regenerate # Life per second for every 10 Intelligence", ["type"] = "explicit", }, [2658] = { - ["id"] = "explicit.stat_2020463573", - ["text"] = "#% of Charges consumed by used Life Flasks are granted to your Charms", + ["id"] = "explicit.stat_3276271783", + ["text"] = "Regenerate # Life per second per Maximum Energy Shield", ["type"] = "explicit", }, [2659] = { - ["id"] = "explicit.stat_2954116742|52245", - ["text"] = "Allocates Distant Dreamer", + ["id"] = "explicit.stat_2853314994", + ["text"] = "Regenerate # Rage per second", ["type"] = "explicit", }, [2660] = { - ["id"] = "explicit.stat_2954116742|37543", - ["text"] = "Allocates Full Recovery", + ["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", }, [2661] = { - ["id"] = "explicit.stat_2954116742|33542", - ["text"] = "Allocates Quick Fingers", + ["id"] = "explicit.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", ["type"] = "explicit", }, [2662] = { - ["id"] = "explicit.stat_1571268546", - ["text"] = "#% increased Corrupted Charms effect duration", + ["id"] = "explicit.stat_2201614328", + ["text"] = "Regenerate #% of maximum Life per second if you have been Hit Recently", ["type"] = "explicit", }, [2663] = { - ["id"] = "explicit.stat_3628041050", - ["text"] = "Enemies in your Presence gain 1 Gruelling Madness each second", + ["id"] = "explicit.stat_302024054", + ["text"] = "Regenerate #% of maximum Life per second while Ignited", ["type"] = "explicit", }, [2664] = { - ["id"] = "explicit.stat_632698321", - ["text"] = "#% increased chance Vaal Beacons summon additional Monsters", + ["id"] = "explicit.stat_2002533190", + ["text"] = "Regenerate #% of maximum Life per second while Surrounded", ["type"] = "explicit", }, [2665] = { - ["id"] = "explicit.stat_2954116742|16142", - ["text"] = "Allocates Deep Freeze", + ["id"] = "explicit.stat_3942946753", + ["text"] = "Regenerate #% of maximum Life per second while on Low Life", ["type"] = "explicit", }, [2666] = { - ["id"] = "explicit.stat_469006068", - ["text"] = "Gain Guard equal to #% of missing Energy Shield for 4 seconds when you Dodge Roll", + ["id"] = "explicit.stat_3418580811|22", + ["text"] = "Remembrancing # songworthy deeds by the line of MedvedPassives in radius are Conquered by the Kalguur", ["type"] = "explicit", }, [2667] = { - ["id"] = "explicit.stat_504054855", - ["text"] = "#% faster Dodge Roll", + ["id"] = "explicit.stat_3418580811|23", + ["text"] = "Remembrancing # songworthy deeds by the line of OlrothPassives in radius are Conquered by the Kalguur", ["type"] = "explicit", }, [2668] = { - ["id"] = "explicit.stat_2954116742|61026", - ["text"] = "Allocates Crystalline Flesh", + ["id"] = "explicit.stat_3418580811|21", + ["text"] = "Remembrancing # songworthy deeds by the line of VoranaPassives in radius are Conquered by the Kalguur", ["type"] = "explicit", }, [2669] = { - ["id"] = "explicit.stat_2954116742|58198", - ["text"] = "Allocates Well of Power", + ["id"] = "explicit.stat_3482326075", + ["text"] = "Remnants can be collected from #% further away", ["type"] = "explicit", }, [2670] = { - ["id"] = "explicit.stat_2954116742|18157", - ["text"] = "Allocates Tempered Defences", + ["id"] = "explicit.stat_315717203", + ["text"] = "Remnants you create affect Allies in your Presence as well as you when collected", ["type"] = "explicit", }, [2671] = { - ["id"] = "explicit.stat_2954116742|52803", - ["text"] = "Allocates Hale Traveller", + ["id"] = "explicit.stat_1999910726", + ["text"] = "Remnants you create have #% increased effect", ["type"] = "explicit", }, [2672] = { - ["id"] = "explicit.stat_3774577097", - ["text"] = "You are Blind", + ["id"] = "explicit.stat_1394184789", + ["text"] = "Remove Bleeding when you use a Life Flask", ["type"] = "explicit", }, [2673] = { - ["id"] = "explicit.stat_2954116742|1169", - ["text"] = "Allocates Urgent Call", + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", ["type"] = "explicit", }, [2674] = { - ["id"] = "explicit.stat_2954116742|44765", - ["text"] = "Allocates Distracting Presence", + ["id"] = "explicit.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", ["type"] = "explicit", }, [2675] = { - ["id"] = "explicit.stat_2954116742|18485", - ["text"] = "Allocates Unstable Bond", + ["id"] = "explicit.stat_2306588612", + ["text"] = "Repeatable Attacks with this Bow Repeat # time if no enemies are in your Presence", ["type"] = "explicit", }, [2676] = { - ["id"] = "explicit.stat_3116298775", - ["text"] = "Can Allocate Passive Skills from the Ranger's starting point", + ["id"] = "explicit.stat_2267564181", + ["text"] = "Require # additional enemies to be Surrounded", ["type"] = "explicit", }, [2677] = { - ["id"] = "explicit.stat_3984146263", - ["text"] = "Tempest Bells are destroyed after an additional # Hits", + ["id"] = "explicit.stat_2282052746", + ["text"] = "Rerolling Favours at Ritual Altars costs #% increased Tribute", ["type"] = "explicit", }, [2678] = { - ["id"] = "explicit.stat_2954116742|27108", - ["text"] = "Allocates Mass Hysteria", + ["id"] = "explicit.stat_2282052746", + ["text"] = "Rerolling Favours at Ritual Altars in Area costs #% increased Tribute", ["type"] = "explicit", }, [2679] = { - ["id"] = "explicit.stat_2954116742|12245", - ["text"] = "Allocates Arsonist", + ["id"] = "explicit.stat_3831171903|6", + ["text"] = "Resolute Technique", ["type"] = "explicit", }, [2680] = { - ["id"] = "explicit.stat_3858572996", - ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", + ["id"] = "explicit.stat_3831171903|14", + ["text"] = "Resonance", ["type"] = "explicit", }, [2681] = { - ["id"] = "explicit.stat_2954116742|35031", - ["text"] = "Allocates Chakra of Life", + ["id"] = "explicit.stat_1031644647", + ["text"] = "Revived Monsters from Ritual Altars have #% increased chance to be Magic", ["type"] = "explicit", }, [2682] = { - ["id"] = "explicit.stat_2954116742|33585", - ["text"] = "Allocates Unspoken Bond", + ["id"] = "explicit.stat_3979184174", + ["text"] = "Revived Monsters from Ritual Altars have #% increased chance to be Rare", ["type"] = "explicit", }, [2683] = { - ["id"] = "explicit.stat_2954116742|5257", - ["text"] = "Allocates Echoing Frost", + ["id"] = "explicit.stat_1031644647", + ["text"] = "Revived Monsters from Ritual Altars in Area have #% increased chance to be Magic", ["type"] = "explicit", }, [2684] = { - ["id"] = "explicit.stat_2954116742|25620", - ["text"] = "Allocates Meat Recycling", + ["id"] = "explicit.stat_3979184174", + ["text"] = "Revived Monsters from Ritual Altars in Area have #% increased chance to be Rare", ["type"] = "explicit", }, [2685] = { - ["id"] = "explicit.stat_2954116742|51446", - ["text"] = "Allocates Leather Bound Gauntlets", + ["id"] = "explicit.stat_1555918911", + ["text"] = "Right ring slot: Projectiles from Spells Chain +# times", ["type"] = "explicit", }, [2686] = { - ["id"] = "explicit.stat_2951965588", - ["text"] = "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", + ["id"] = "explicit.stat_2933024469", + ["text"] = "Right ring slot: Projectiles from Spells cannot Fork", ["type"] = "explicit", }, [2687] = { - ["id"] = "explicit.stat_2954116742|31724", - ["text"] = "Allocates Iron Slippers", + ["id"] = "explicit.stat_120737942", + ["text"] = "Ritual Altars allow rerolling Favours an additional time", ["type"] = "explicit", }, [2688] = { - ["id"] = "explicit.stat_2954116742|29762", - ["text"] = "Allocates Guttural Roar", + ["id"] = "explicit.stat_120737942", + ["text"] = "Ritual Altars in Area allow rerolling Favours an additional time", ["type"] = "explicit", }, [2689] = { - ["id"] = "explicit.stat_3273962791", - ["text"] = "# metres to Melee Strike Range while Unarmed", + ["id"] = "explicit.stat_3831171903|29", + ["text"] = "Ritual Cadence", ["type"] = "explicit", }, [2690] = { - ["id"] = "explicit.stat_2954116742|17725", - ["text"] = "Allocates Bonded Precision", + ["id"] = "explicit.stat_4219853180", + ["text"] = "Ritual Favours in Area have #% increased chance to be Omens", ["type"] = "explicit", }, [2691] = { - ["id"] = "explicit.stat_2954116742|36364", - ["text"] = "Allocates Electrocution", + ["id"] = "explicit.stat_4219853180", + ["text"] = "Ritual Favours in your Maps have #% increased chance to be Omens", ["type"] = "explicit", }, [2692] = { - ["id"] = "explicit.stat_2954116742|41935", - ["text"] = "Allocates Hide of the Bear", + ["id"] = "explicit.stat_3108672983", + ["text"] = "Rolls only the minimum or maximum Damage value for each Damage Type", ["type"] = "explicit", }, [2693] = { - ["id"] = "explicit.stat_2954116742|60464", - ["text"] = "Allocates Fan the Flames", + ["id"] = "explicit.stat_2816104578", + ["text"] = "Runic Monsters in your Maps are Duplicated", ["type"] = "explicit", }, [2694] = { - ["id"] = "explicit.stat_1347539079", - ["text"] = "#% Surpassing chance to fire an additional Projectile", + ["id"] = "explicit.stat_76982026", + ["text"] = "Sacrifice # Life to not consume the last bolt when firing", ["type"] = "explicit", }, [2695] = { - ["id"] = "explicit.stat_2954116742|45612", - ["text"] = "Allocates Defensive Reflexes", + ["id"] = "explicit.stat_613752285", + ["text"] = "Sacrifice #% of maximum Life to gain that much Energy Shield when you Cast a Spell", ["type"] = "explicit", }, [2696] = { - ["id"] = "explicit.stat_2954116742|31773", - ["text"] = "Allocates Resurging Archon", + ["id"] = "explicit.stat_3076483222|49977", + ["text"] = "Sacrifice up to 10 Chaos Orbs to receive double on Trial completion", ["type"] = "explicit", }, [2697] = { - ["id"] = "explicit.stat_3107707789", - ["text"] = "#% increased Movement Speed while Sprinting", + ["id"] = "explicit.stat_3076483222|53954", + ["text"] = "Sacrifice up to 10 Gemcutter's Prisms to receive double on Trial completion", ["type"] = "explicit", }, [2698] = { - ["id"] = "explicit.stat_2954116742|33216", - ["text"] = "Allocates Deep Wounds", + ["id"] = "explicit.stat_3076483222|8084", + ["text"] = "Sacrifice up to 10 Greater Exalted Orbs to receive double on Trial completion", ["type"] = "explicit", }, [2699] = { - ["id"] = "explicit.stat_2895378479", - ["text"] = "#% increased Effectiveness of Rare Breach Monsters", + ["id"] = "explicit.stat_3076483222|30874", + ["text"] = "Sacrifice up to 10 Greater Regal Orbs to receive double on Trial completion", ["type"] = "explicit", }, [2700] = { - ["id"] = "explicit.stat_2954116742|7847", - ["text"] = "Allocates The Fabled Stag", + ["id"] = "explicit.stat_3076483222|20358", + ["text"] = "Sacrifice up to 10 Orbs of Alchemy to receive double on Trial completion", ["type"] = "explicit", }, [2701] = { - ["id"] = "explicit.stat_589361270", - ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", + ["id"] = "explicit.stat_3076483222|64921", + ["text"] = "Sacrifice up to 10 Vaal Orbs to receive double on Trial completion", ["type"] = "explicit", }, [2702] = { - ["id"] = "explicit.stat_2954116742|4810", - ["text"] = "Allocates Sanguine Tolerance", + ["id"] = "explicit.stat_3076483222|38303", + ["text"] = "Sacrifice up to 20 Arcanist's Etchers to receive double on Trial completion", ["type"] = "explicit", }, [2703] = { - ["id"] = "explicit.stat_2954116742|20289", - ["text"] = "Allocates Frozen Claw", + ["id"] = "explicit.stat_3076483222|4897", + ["text"] = "Sacrifice up to 20 Armourer's Scraps to receive double on Trial completion", ["type"] = "explicit", }, [2704] = { - ["id"] = "explicit.stat_2954116742|53683", - ["text"] = "Allocates Efficient Loading", + ["id"] = "explicit.stat_3076483222|19846", + ["text"] = "Sacrifice up to 20 Artificer's Orbs to receive double on Trial completion", ["type"] = "explicit", }, [2705] = { - ["id"] = "explicit.stat_2954116742|51891", - ["text"] = "Allocates Lucidity", + ["id"] = "explicit.stat_3076483222|32821", + ["text"] = "Sacrifice up to 20 Blacksmith's Whetstones to receive double on Trial completion", ["type"] = "explicit", }, [2706] = { - ["id"] = "explicit.stat_971590056", - ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", + ["id"] = "explicit.stat_3076483222|62634", + ["text"] = "Sacrifice up to 20 Exalted Orbs to receive double on Trial completion", ["type"] = "explicit", }, [2707] = { - ["id"] = "explicit.stat_554145967", - ["text"] = "Recover # Runic Ward when a Charm is used", + ["id"] = "explicit.stat_3076483222|136", + ["text"] = "Sacrifice up to 20 Glassblower's Baubles to receive double on Trial completion", ["type"] = "explicit", }, [2708] = { - ["id"] = "explicit.stat_2954116742|14602", - ["text"] = "Allocates Specialised Shots", + ["id"] = "explicit.stat_3076483222|54496", + ["text"] = "Sacrifice up to 20 Regal Orbs to receive double on Trial completion", ["type"] = "explicit", }, [2709] = { - ["id"] = "explicit.stat_2954116742|7062", - ["text"] = "Allocates Reusable Ammunition", + ["id"] = "explicit.stat_3076483222|61382", + ["text"] = "Sacrifice up to 3 Divine Orbs to receive double on Trial completion", ["type"] = "explicit", }, [2710] = { - ["id"] = "explicit.stat_1687542781", - ["text"] = "Notable Passive Skills in Radius also grant #% to Lightning Resistance", + ["id"] = "explicit.stat_3076483222|19854", + ["text"] = "Sacrifice up to 3 Orb of Annulments to receive double on Trial completion", ["type"] = "explicit", }, [2711] = { - ["id"] = "explicit.stat_2954116742|56714", - ["text"] = "Allocates Swift Flight", + ["id"] = "explicit.stat_3076483222|45026", + ["text"] = "Sacrifice up to 3 Orbs of Chance to receive double on Trial completion", ["type"] = "explicit", }, [2712] = { - ["id"] = "explicit.stat_2954116742|52764", - ["text"] = "Allocates Mystical Rage", + ["id"] = "explicit.stat_3076483222|56025", + ["text"] = "Sacrifice up to 3 Perfect Chaos Orbs to receive double on Trial completion", ["type"] = "explicit", }, [2713] = { - ["id"] = "explicit.stat_2954116742|24491", - ["text"] = "Allocates Invocated Echoes", + ["id"] = "explicit.stat_3076483222|6774", + ["text"] = "Sacrifice up to 3 Perfect Exalted Orbs to receive double on Trial completion", ["type"] = "explicit", }, [2714] = { - ["id"] = "explicit.stat_2954116742|39884", - ["text"] = "Allocates Searing Heat", + ["id"] = "explicit.stat_3076483222|51981", + ["text"] = "Sacrifice up to 3 Perfect Regal Orbs to receive double on Trial completion", ["type"] = "explicit", }, [2715] = { - ["id"] = "explicit.stat_2954116742|63431", - ["text"] = "Allocates Leeching Toxins", + ["id"] = "explicit.stat_3076483222|42106", + ["text"] = "Sacrifice up to 5 Greater Chaos Orbs to receive double on Trial completion", ["type"] = "explicit", }, [2716] = { - ["id"] = "explicit.stat_2954116742|38570", - ["text"] = "Allocates Demolitionist", + ["id"] = "explicit.stat_3831171903|30", + ["text"] = "Scarred Faith", ["type"] = "explicit", }, [2717] = { - ["id"] = "explicit.stat_2954116742|53131", - ["text"] = "Allocates Tukohama's Brew", + ["id"] = "explicit.stat_4147510958", + ["text"] = "Sealed Skills have # to maximum Seals", ["type"] = "explicit", }, [2718] = { - ["id"] = "explicit.stat_1568848828", - ["text"] = "Recover # Runic Ward when you Block", + ["id"] = "explicit.stat_3384867265", + ["text"] = "Sealed Skills have #% increased Seal gain frequency", ["type"] = "explicit", }, [2719] = { - ["id"] = "explicit.stat_264262054|4", - ["text"] = "Legacy of Diamond", + ["id"] = "explicit.stat_2535267021", + ["text"] = "Share Charges with Allies in your Presence", ["type"] = "explicit", }, [2720] = { - ["id"] = "explicit.stat_2954116742|4579", - ["text"] = "Allocates Unbothering Cold", + ["id"] = "explicit.stat_4256314560", + ["text"] = "Shocks you when you reach maximum Power Charges", ["type"] = "explicit", }, [2721] = { - ["id"] = "explicit.stat_1867725690", - ["text"] = "Hits with this Weapon have #% chance to Trigger Molten Shower per 25 Strength", + ["id"] = "explicit.stat_4245256219", + ["text"] = "Skill Gems have no Attribute Requirements", ["type"] = "explicit", }, [2722] = { - ["id"] = "explicit.stat_4056809290", - ["text"] = "Cannot inflict Elemental Ailments", + ["id"] = "explicit.stat_467146530", + ["text"] = "Skills Cost Divinity instead of Mana or Life", ["type"] = "explicit", }, [2723] = { - ["id"] = "explicit.stat_2954116742|37302", - ["text"] = "Allocates Kept at Bay", + ["id"] = "explicit.stat_3605834869", + ["text"] = "Skills Gain #% of Mana Cost as Extra Life Cost", ["type"] = "explicit", }, [2724] = { - ["id"] = "explicit.stat_2954116742|28408", - ["text"] = "Allocates Invigorating Hate", + ["id"] = "explicit.stat_2638381947", + ["text"] = "Skills from Corrupted Gems have #% increased Cost Efficiency during any Flask Effect", ["type"] = "explicit", }, [2725] = { - ["id"] = "explicit.stat_2954116742|41972", - ["text"] = "Allocates Glaciation", + ["id"] = "explicit.stat_2035336006", + ["text"] = "Skills from Corrupted Gems have #% of Mana Costs Converted to Life Costs", ["type"] = "explicit", }, [2726] = { - ["id"] = "explicit.stat_2954116742|42660", - ["text"] = "Allocates Commanding Rage", + ["id"] = "explicit.stat_4117005593", + ["text"] = "Skills gain #% of Damage as Chaos Damage per 3 Life Cost", ["type"] = "explicit", }, [2727] = { - ["id"] = "explicit.stat_2954116742|59433", - ["text"] = "Allocates Thirst for Endurance", + ["id"] = "explicit.stat_396200591", + ["text"] = "Skills have # seconds to Cooldown", ["type"] = "explicit", }, [2728] = { - ["id"] = "explicit.stat_2954116742|56488", - ["text"] = "Allocates Glancing Deflection", + ["id"] = "explicit.stat_2942439603", + ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", ["type"] = "explicit", }, [2729] = { - ["id"] = "explicit.stat_2678924815", - ["text"] = "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance", + ["id"] = "explicit.stat_3024873336", + ["text"] = "Skills have #% chance to not remove Elemental Infusions but still count as consuming them", ["type"] = "explicit", }, [2730] = { - ["id"] = "explicit.stat_2954116742|1502", - ["text"] = "Allocates Draiocht Cleansing", + ["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", }, [2731] = { - ["id"] = "explicit.stat_2954116742|13844", - ["text"] = "Allocates Growing Peril", + ["id"] = "explicit.stat_3982604001", + ["text"] = "Skills have #% longer Perfect Timing window during effect", ["type"] = "explicit", }, [2732] = { - ["id"] = "explicit.stat_2954116742|23244", - ["text"] = "Allocates Bounty Hunter", + ["id"] = "explicit.stat_2942704390", + ["text"] = "Skills have +# to Limit", ["type"] = "explicit", }, [2733] = { - ["id"] = "explicit.stat_195270549", - ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", + ["id"] = "explicit.stat_3200877707", + ["text"] = "Skills have a #% chance to not consume Glory", ["type"] = "explicit", }, [2734] = { - ["id"] = "explicit.stat_2954116742|14324", - ["text"] = "Allocates Arcane Blossom", + ["id"] = "explicit.stat_1373370443", + ["text"] = "Skills have a #% longer Perfect Timing window", ["type"] = "explicit", }, [2735] = { - ["id"] = "explicit.stat_3574578302", - ["text"] = "#% increased Explicit Fire Modifier magnitudes", + ["id"] = "explicit.stat_2838161567", + ["text"] = "Skills reserve 50% less Spirit", ["type"] = "explicit", }, [2736] = { - ["id"] = "explicit.stat_3441501978", - ["text"] = "#% to Fire and Lightning Resistances", + ["id"] = "explicit.stat_2538411280", + ["text"] = "Skills which Empower an Attack have #% chance to not count that Attack", ["type"] = "explicit", }, [2737] = { - ["id"] = "explicit.stat_2954116742|38895", - ["text"] = "Allocates Crystal Elixir", + ["id"] = "explicit.stat_2544540062", + ["text"] = "Skills which create Fissures have a #% chance to create an additional Fissure", ["type"] = "explicit", }, [2738] = { - ["id"] = "explicit.stat_825116955", - ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", + ["id"] = "explicit.stat_2480962043", + ["text"] = "Skills which require Glory generate # Glory every 2 seconds", ["type"] = "explicit", }, [2739] = { - ["id"] = "explicit.stat_174664100", - ["text"] = "Minions have #% increased Movement Speed", + ["id"] = "explicit.stat_2323782229", + ["text"] = "Slaying Rare Monsters in Area pauses the Delirium Mirror Timer for 1 second", ["type"] = "explicit", }, [2740] = { - ["id"] = "explicit.stat_3120508478", - ["text"] = "#% increased Damage against Immobilised Enemies", + ["id"] = "explicit.stat_2323782229", + ["text"] = "Slaying Rare Monsters in your Maps pauses the Delirium Mirror Timer for 1 second", ["type"] = "explicit", }, [2741] = { - ["id"] = "explicit.stat_2954116742|22532", - ["text"] = "Allocates Fearful Paralysis", + ["id"] = "explicit.stat_1316656343", + ["text"] = "Small Passive Skills in Radius also grant # to maximum Life", ["type"] = "explicit", }, [2742] = { - ["id"] = "explicit.stat_2954116742|26563", - ["text"] = "Allocates Bone Chains", + ["id"] = "explicit.stat_1294464552", + ["text"] = "Small Passive Skills in Radius also grant # to maximum Mana", ["type"] = "explicit", }, [2743] = { - ["id"] = "explicit.stat_2954116742|45370", - ["text"] = "Allocates The Raging Ox", + ["id"] = "explicit.stat_2610562860", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", ["type"] = "explicit", }, [2744] = { - ["id"] = "explicit.stat_1615901249", - ["text"] = "Invocated skills have #% increased Maximum Energy", + ["id"] = "explicit.stat_2840989393", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", ["type"] = "explicit", }, [2745] = { - ["id"] = "explicit.stat_2954116742|38965", - ["text"] = "Allocates Infused Limits", + ["id"] = "explicit.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, [2746] = { - ["id"] = "explicit.stat_2954116742|51129", - ["text"] = "Allocates Pile On", + ["id"] = "explicit.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", ["type"] = "explicit", }, [2747] = { - ["id"] = "explicit.stat_2954116742|31326", - ["text"] = "Allocates Slow Burn", + ["id"] = "explicit.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", ["type"] = "explicit", }, [2748] = { - ["id"] = "explicit.stat_2954116742|14343", - ["text"] = "Allocates Deterioration", + ["id"] = "explicit.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", ["type"] = "explicit", }, [2749] = { - ["id"] = "explicit.stat_2954116742|38532", - ["text"] = "Allocates Thirst for Power", + ["id"] = "explicit.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", ["type"] = "explicit", }, [2750] = { - ["id"] = "explicit.stat_2954116742|46365", - ["text"] = "Allocates Gigantic Following", + ["id"] = "explicit.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "explicit", }, [2751] = { - ["id"] = "explicit.stat_2416650879", - ["text"] = "#% increased Rage Cost Efficiency", + ["id"] = "explicit.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", ["type"] = "explicit", }, [2752] = { - ["id"] = "explicit.stat_2954116742|9323", - ["text"] = "Allocates Craving Slaughter", + ["id"] = "explicit.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "explicit", }, [2753] = { - ["id"] = "explicit.stat_541021467", - ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", + ["id"] = "explicit.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", ["type"] = "explicit", }, [2754] = { - ["id"] = "explicit.stat_2954116742|51868", - ["text"] = "Allocates Molten Carapace", + ["id"] = "explicit.stat_1834658952", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", ["type"] = "explicit", }, [2755] = { - ["id"] = "explicit.stat_2954116742|31745", - ["text"] = "Allocates Lockdown", + ["id"] = "explicit.stat_1892122971", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", ["type"] = "explicit", }, [2756] = { - ["id"] = "explicit.stat_1793470535", - ["text"] = "Curses you inflict ignore Curse limit", + ["id"] = "explicit.stat_266564538", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", ["type"] = "explicit", }, [2757] = { - ["id"] = "explicit.stat_2954116742|7395", - ["text"] = "Allocates Retaliation", + ["id"] = "explicit.stat_3752589831", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", ["type"] = "explicit", }, [2758] = { - ["id"] = "explicit.stat_1014398896", - ["text"] = "#% increased Spell Damage during any Flask Effect", + ["id"] = "explicit.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", ["type"] = "explicit", }, [2759] = { - ["id"] = "explicit.stat_1548338404", - ["text"] = "Spell Hits Gain #% of Damage as Extra Physical Damage per Curse on target", + ["id"] = "explicit.stat_517664839", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", ["type"] = "explicit", }, [2760] = { - ["id"] = "explicit.stat_3121133045", - ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", + ["id"] = "explicit.stat_147764878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "explicit", }, [2761] = { - ["id"] = "explicit.stat_933355817", - ["text"] = "#% to gain Archon of Undeath when you create an Offering", + ["id"] = "explicit.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", ["type"] = "explicit", }, [2762] = { - ["id"] = "explicit.stat_3128773415", - ["text"] = "Your speed is Unaffected by Slows while Sprinting", + ["id"] = "explicit.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", ["type"] = "explicit", }, [2763] = { - ["id"] = "explicit.stat_2954116742|19644", - ["text"] = "Allocates Left Hand of Darkness", + ["id"] = "explicit.stat_821948283", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", ["type"] = "explicit", }, [2764] = { - ["id"] = "explicit.stat_2954116742|40292", - ["text"] = "Allocates Nimble Strength", + ["id"] = "explicit.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", ["type"] = "explicit", }, [2765] = { - ["id"] = "explicit.stat_2954116742|7782", - ["text"] = "Allocates Rupturing Pins", + ["id"] = "explicit.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", ["type"] = "explicit", }, [2766] = { - ["id"] = "explicit.stat_2954116742|32128", - ["text"] = "Allocates Flow of Time", + ["id"] = "explicit.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", ["type"] = "explicit", }, [2767] = { - ["id"] = "explicit.stat_2954116742|42760", - ["text"] = "Allocates Chakra of Stability", + ["id"] = "explicit.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", ["type"] = "explicit", }, [2768] = { - ["id"] = "explicit.stat_2954116742|59589", - ["text"] = "Allocates Heavy Armour", + ["id"] = "explicit.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", ["type"] = "explicit", }, [2769] = { - ["id"] = "explicit.stat_2954116742|6133", - ["text"] = "Allocates Core of the Guardian", + ["id"] = "explicit.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "explicit", }, [2770] = { - ["id"] = "explicit.stat_2954116742|29288", - ["text"] = "Allocates Deadly Invocations", + ["id"] = "explicit.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "explicit", }, [2771] = { - ["id"] = "explicit.stat_2424163939", - ["text"] = "Physical Damage of Enemies Hitting you is Lucky", + ["id"] = "explicit.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", ["type"] = "explicit", }, [2772] = { - ["id"] = "explicit.stat_2954116742|46024", - ["text"] = "Allocates Sigil of Lightning", + ["id"] = "explicit.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", ["type"] = "explicit", }, [2773] = { - ["id"] = "explicit.stat_2954116742|36507", - ["text"] = "Allocates Vile Mending", + ["id"] = "explicit.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", ["type"] = "explicit", }, [2774] = { - ["id"] = "explicit.stat_2538411280", - ["text"] = "Skills which Empower an Attack have #% chance to not count that Attack", + ["id"] = "explicit.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "explicit", }, [2775] = { - ["id"] = "explicit.stat_3832076641", - ["text"] = "Used when you release a skill with Perfect Timing", + ["id"] = "explicit.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", ["type"] = "explicit", }, [2776] = { - ["id"] = "explicit.stat_2954116742|2344", - ["text"] = "Allocates Dimensional Weakspot", + ["id"] = "explicit.stat_980177976", + ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", ["type"] = "explicit", }, [2777] = { - ["id"] = "explicit.stat_3359496001", - ["text"] = "Can Allocate Passive Skills from the Sorceress's starting point", + ["id"] = "explicit.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", ["type"] = "explicit", }, [2778] = { - ["id"] = "explicit.stat_2954116742|48734", - ["text"] = "Allocates The Howling Primate", + ["id"] = "explicit.stat_3774951878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", ["type"] = "explicit", }, [2779] = { - ["id"] = "explicit.stat_3621874554", - ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", + ["id"] = "explicit.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", ["type"] = "explicit", }, [2780] = { - ["id"] = "explicit.stat_2939415499", - ["text"] = "#% more Curse Magnitudes", + ["id"] = "explicit.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", ["type"] = "explicit", }, [2781] = { - ["id"] = "explicit.stat_1335369947", - ["text"] = "#% increased Explicit Physical Modifier magnitudes", + ["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", }, [2782] = { - ["id"] = "explicit.stat_2954116742|17303", - ["text"] = "Allocates Utility Ordnance", + ["id"] = "explicit.stat_793875384", + ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", ["type"] = "explicit", }, [2783] = { - ["id"] = "explicit.stat_2954116742|53187", - ["text"] = "Allocates Warlord Berserker", + ["id"] = "explicit.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", ["type"] = "explicit", }, [2784] = { - ["id"] = "explicit.stat_2653175601", - ["text"] = "Spell Hits Gain #% of Damage as Extra Chaos Damage per Curse on target", + ["id"] = "explicit.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", ["type"] = "explicit", }, [2785] = { - ["id"] = "explicit.stat_3422093970", - ["text"] = "#% chance for Remnants you pick up to count as picking up an additional Remnant", + ["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", }, [2786] = { - ["id"] = "explicit.stat_2954116742|20495", - ["text"] = "Allocates Dark Entropy", + ["id"] = "explicit.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", ["type"] = "explicit", }, [2787] = { - ["id"] = "explicit.stat_3753008264", - ["text"] = "#% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", + ["id"] = "explicit.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", ["type"] = "explicit", }, [2788] = { - ["id"] = "explicit.stat_1311130924", - ["text"] = "#% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", + ["id"] = "explicit.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", ["type"] = "explicit", }, [2789] = { - ["id"] = "explicit.stat_2954116742|46124", - ["text"] = "Allocates Arcane Remnants", + ["id"] = "explicit.stat_654207792", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "explicit", }, [2790] = { - ["id"] = "explicit.stat_2954116742|28482", - ["text"] = "Allocates Total Incineration", + ["id"] = "explicit.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", ["type"] = "explicit", }, [2791] = { - ["id"] = "explicit.stat_2954116742|48974", - ["text"] = "Allocates Altered Brain Chemistry", + ["id"] = "explicit.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", ["type"] = "explicit", }, [2792] = { - ["id"] = "explicit.stat_3891355829|3", - ["text"] = "Upgrades Radius to Very Large", + ["id"] = "explicit.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", ["type"] = "explicit", }, [2793] = { - ["id"] = "explicit.stat_2954116742|4295", - ["text"] = "Allocates Adverse Growth", + ["id"] = "explicit.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", ["type"] = "explicit", }, [2794] = { - ["id"] = "explicit.stat_264262054|13", - ["text"] = "Legacy of Sulphur", + ["id"] = "explicit.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", ["type"] = "explicit", }, [2795] = { - ["id"] = "explicit.stat_264262054|7", - ["text"] = "Legacy of Jade", + ["id"] = "explicit.stat_1129429646", + ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", ["type"] = "explicit", }, [2796] = { - ["id"] = "explicit.stat_2954116742|9187", - ["text"] = "Allocates Escalation", + ["id"] = "explicit.stat_3666476747", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", ["type"] = "explicit", }, [2797] = { - ["id"] = "explicit.stat_2954116742|26214", - ["text"] = "Allocates Dominion", + ["id"] = "explicit.stat_3700202631", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", ["type"] = "explicit", }, [2798] = { - ["id"] = "explicit.stat_343703314", - ["text"] = "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill", + ["id"] = "explicit.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", ["type"] = "explicit", }, [2799] = { - ["id"] = "explicit.stat_3430033313", - ["text"] = "Off-hand Hits inflict Runefather's Challenge", + ["id"] = "explicit.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", ["type"] = "explicit", }, [2800] = { - ["id"] = "explicit.stat_2954116742|61404", - ["text"] = "Allocates Equilibrium", + ["id"] = "explicit.stat_1809641701", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Life", ["type"] = "explicit", }, [2801] = { - ["id"] = "explicit.stat_231689132", - ["text"] = "#% increased Explicit Elemental Damage Modifier magnitudes", + ["id"] = "explicit.stat_1247628870", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Mana", ["type"] = "explicit", }, [2802] = { - ["id"] = "explicit.stat_2954116742|15443", - ["text"] = "Allocates Endured Suffering", + ["id"] = "explicit.stat_860443350", + ["text"] = "Small Passive Skills in Radius also grant #% reduced Freeze Duration on you", ["type"] = "explicit", }, [2803] = { - ["id"] = "explicit.stat_2954116742|37408", - ["text"] = "Allocates Staunching", + ["id"] = "explicit.stat_3474941090", + ["text"] = "Small Passive Skills in Radius also grant #% reduced Ignite Duration on you", ["type"] = "explicit", }, [2804] = { - ["id"] = "explicit.stat_2954116742|33229", - ["text"] = "Allocates Haemorrhaging Cuts", + ["id"] = "explicit.stat_1627878766", + ["text"] = "Small Passive Skills in Radius also grant #% reduced Shock duration on you", ["type"] = "explicit", }, [2805] = { - ["id"] = "explicit.stat_2954116742|60083", - ["text"] = "Allocates Pin and Run", + ["id"] = "explicit.stat_2264240911", + ["text"] = "Small Passive Skills in Radius also grant #% to Chaos Resistance", ["type"] = "explicit", }, [2806] = { - ["id"] = "explicit.stat_2954116742|2999", - ["text"] = "Allocates Final Barrage", + ["id"] = "explicit.stat_2884937919", + ["text"] = "Small Passive Skills in Radius also grant #% to Cold Resistance", ["type"] = "explicit", }, [2807] = { - ["id"] = "explicit.stat_2954116742|38479", - ["text"] = "Allocates Close Confines", + ["id"] = "explicit.stat_2948688907", + ["text"] = "Small Passive Skills in Radius also grant #% to Fire Resistance", ["type"] = "explicit", }, [2808] = { - ["id"] = "explicit.stat_2954116742|63255", - ["text"] = "Allocates Savagery", + ["id"] = "explicit.stat_3994876825", + ["text"] = "Small Passive Skills in Radius also grant #% to Lightning Resistance", ["type"] = "explicit", }, [2809] = { - ["id"] = "explicit.stat_2954116742|1420", - ["text"] = "Allocates Dizzying Sweep", + ["id"] = "explicit.stat_318092306", + ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", ["type"] = "explicit", }, [2810] = { - ["id"] = "explicit.stat_2954116742|54640", - ["text"] = "Allocates Constricting", + ["id"] = "explicit.stat_4142814612", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", ["type"] = "explicit", }, [2811] = { - ["id"] = "explicit.stat_2954116742|57805", - ["text"] = "Allocates Clear Space", + ["id"] = "explicit.stat_2690740379", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", ["type"] = "explicit", }, [2812] = { - ["id"] = "explicit.stat_2954116742|7302", - ["text"] = "Allocates Echoing Pulse", + ["id"] = "explicit.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", ["type"] = "explicit", }, [2813] = { - ["id"] = "explicit.stat_2954116742|20686", - ["text"] = "Allocates Paragon", + ["id"] = "explicit.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", ["type"] = "explicit", }, [2814] = { - ["id"] = "explicit.stat_2954116742|53607", - ["text"] = "Allocates Fortified Location", + ["id"] = "explicit.stat_2638756573", + ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", ["type"] = "explicit", }, [2815] = { - ["id"] = "explicit.stat_1683568809", - ["text"] = "Convert #% of Fire Damage with Mace Skills to Cold Damage", + ["id"] = "explicit.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", ["type"] = "explicit", }, [2816] = { - ["id"] = "explicit.stat_566086661", - ["text"] = "Attacks with this Weapon have Added Cold Damage equal to #% to #% of maximum Mana", + ["id"] = "explicit.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", ["type"] = "explicit", }, [2817] = { - ["id"] = "explicit.stat_2954116742|24240", - ["text"] = "Allocates Time Manipulation", + ["id"] = "explicit.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", ["type"] = "explicit", }, [2818] = { - ["id"] = "explicit.stat_1092555766", - ["text"] = "Life Leech recovers based on your Lightning damage as well as Physical damage", + ["id"] = "explicit.stat_4258000627", + ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", ["type"] = "explicit", }, [2819] = { - ["id"] = "explicit.stat_145581225", - ["text"] = "#% increased Cast Speed during any Flask Effect", + ["id"] = "explicit.stat_3395186672", + ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", ["type"] = "explicit", }, [2820] = { - ["id"] = "explicit.stat_1972391381", - ["text"] = "#% increased Explicit Resistance Modifier magnitudes", + ["id"] = "explicit.stat_693237939", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, [2821] = { - ["id"] = "explicit.stat_738592688", - ["text"] = "Can Allocate Passive Skills from the Mercenary's starting point", + ["id"] = "explicit.stat_1653682082", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, [2822] = { - ["id"] = "explicit.stat_2381897042", - ["text"] = "#% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", + ["id"] = "explicit.stat_3065378291", + ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", ["type"] = "explicit", }, [2823] = { - ["id"] = "explicit.stat_1321054058", - ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", + ["id"] = "explicit.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", ["type"] = "explicit", }, [2824] = { - ["id"] = "explicit.stat_264262054|6", - ["text"] = "Legacy of Granite", + ["id"] = "explicit.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", ["type"] = "explicit", }, [2825] = { - ["id"] = "explicit.stat_2954116742|30395", - ["text"] = "Allocates Howling Beast", + ["id"] = "explicit.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", ["type"] = "explicit", }, [2826] = { - ["id"] = "explicit.stat_2954116742|47420", - ["text"] = "Allocates Expendable Army", + ["id"] = "explicit.stat_30438393", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", ["type"] = "explicit", }, [2827] = { - ["id"] = "explicit.stat_2954116742|9535", - ["text"] = "Allocates Brinerot Ferocity", + ["id"] = "explicit.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", ["type"] = "explicit", }, [2828] = { - ["id"] = "explicit.stat_2954116742|35417", - ["text"] = "Allocates Wyvern's Breath", + ["id"] = "explicit.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", ["type"] = "explicit", }, [2829] = { - ["id"] = "explicit.stat_2954116742|47560", - ["text"] = "Allocates Multi Shot", + ["id"] = "explicit.stat_3225608889", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, [2830] = { - ["id"] = "explicit.stat_2954116742|63541", - ["text"] = "Allocates Brush Off", + ["id"] = "explicit.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", ["type"] = "explicit", }, [2831] = { - ["id"] = "explicit.stat_2954116742|42070", - ["text"] = "Allocates Saqawal's Guidance", + ["id"] = "explicit.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", ["type"] = "explicit", }, [2832] = { - ["id"] = "explicit.stat_2954116742|28613", - ["text"] = "Allocates Roaring Cries", + ["id"] = "explicit.stat_1404607671", + ["text"] = "Soul Eater", ["type"] = "explicit", }, [2833] = { - ["id"] = "explicit.stat_3384867265", - ["text"] = "Sealed Skills have #% increased Seal gain frequency", + ["id"] = "explicit.stat_4106787208", + ["text"] = "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", ["type"] = "explicit", }, [2834] = { - ["id"] = "explicit.stat_2954116742|20416", - ["text"] = "Allocates Grit", + ["id"] = "explicit.stat_2653175601", + ["text"] = "Spell Hits Gain #% of Damage as Extra Chaos Damage per Curse on target", ["type"] = "explicit", }, [2835] = { - ["id"] = "explicit.stat_73032170", - ["text"] = "Minions have #% increased Skill Speed with Command Skills", + ["id"] = "explicit.stat_1548338404", + ["text"] = "Spell Hits Gain #% of Damage as Extra Physical Damage per Curse on target", ["type"] = "explicit", }, [2836] = { - ["id"] = "explicit.stat_2954116742|8896", - ["text"] = "Allocates Agile Sprinter", + ["id"] = "explicit.stat_2474424958", + ["text"] = "Spell Skills have # to maximum number of Summoned Totems", ["type"] = "explicit", }, [2837] = { - ["id"] = "explicit.stat_2954116742|45874", - ["text"] = "Allocates Proliferating Weeds", + ["id"] = "explicit.stat_1967040409", + ["text"] = "Spell Skills have #% increased Area of Effect", ["type"] = "explicit", }, [2838] = { - ["id"] = "explicit.stat_2954116742|20032", - ["text"] = "Allocates Erraticism", + ["id"] = "explicit.stat_555706343", + ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", ["type"] = "explicit", }, [2839] = { - ["id"] = "explicit.stat_2954116742|60269", - ["text"] = "Allocates Roil", + ["id"] = "explicit.stat_1013492127", + ["text"] = "Spells fire # additional ProjectilesSpells fire Projectiles in a circle", ["type"] = "explicit", }, [2840] = { - ["id"] = "explicit.stat_1180552088", - ["text"] = "#% increased effect of Archon Buffs on you", + ["id"] = "explicit.stat_1493485657", + ["text"] = "Spells have #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, [2841] = { - ["id"] = "explicit.stat_2954116742|10029", - ["text"] = "Allocates Repulsion", + ["id"] = "explicit.stat_2348696937", + ["text"] = "Spells have a #% chance to inflict Withered for 4 seconds on Hit", ["type"] = "explicit", }, [2842] = { - ["id"] = "explicit.stat_3929993388", - ["text"] = "Allocates # Sinister Jewel sockets", + ["id"] = "explicit.stat_1088082880", + ["text"] = "Spells which cost Life Gain #% of Damage as Extra Physical Damage", ["type"] = "explicit", }, [2843] = { - ["id"] = "explicit.stat_2954116742|19236", - ["text"] = "Allocates Projectile Bulwark", + ["id"] = "explicit.stat_2230687504", + ["text"] = "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", ["type"] = "explicit", }, [2844] = { - ["id"] = "explicit.stat_1805633363", - ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["id"] = "explicit.stat_3675300253", + ["text"] = "Strikes deal Splash Damage", ["type"] = "explicit", }, [2845] = { - ["id"] = "explicit.stat_3587953142", - ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", + ["id"] = "explicit.stat_3249412463", + ["text"] = "Supported Minions' Strikes have Melee Splash", ["type"] = "explicit", }, [2846] = { - ["id"] = "explicit.stat_1147913864", - ["text"] = "Lose #% Life per second while you have no Runic Ward during Effect", + ["id"] = "explicit.stat_3164544692", + ["text"] = "Take # Chaos damage per second per Endurance Charge", ["type"] = "explicit", }, [2847] = { - ["id"] = "explicit.stat_1315418254", - ["text"] = "Zealot's Oath", + ["id"] = "explicit.stat_2518598473", + ["text"] = "Take # Fire Damage when you Ignite an Enemy", ["type"] = "explicit", }, [2848] = { - ["id"] = "explicit.stat_1312381104", - ["text"] = "Regenerate # Life per second for every 10 Intelligence", + ["id"] = "explicit.stat_3181887481", + ["text"] = "Take #% of Mana Costs you pay for Skills as Physical Damage", ["type"] = "explicit", }, [2849] = { - ["id"] = "explicit.stat_2954116742|13515", - ["text"] = "Allocates Stormwalker", + ["id"] = "explicit.stat_4294267596", + ["text"] = "Take no Extra Damage from Critical Hits", ["type"] = "explicit", }, [2850] = { - ["id"] = "explicit.stat_2954116742|3921", - ["text"] = "Allocates Fate Finding", + ["id"] = "explicit.stat_1755296234", + ["text"] = "Targets can be affected by # of your Poisons at the same time", ["type"] = "explicit", }, [2851] = { - ["id"] = "explicit.stat_2954116742|53185", - ["text"] = "Allocates The Winter Owl", + ["id"] = "explicit.stat_3984146263", + ["text"] = "Tempest Bells are destroyed after an additional # Hits", ["type"] = "explicit", }, [2852] = { - ["id"] = "explicit.stat_915546383", - ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", + ["id"] = "explicit.stat_1058934731", + ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", ["type"] = "explicit", }, [2853] = { - ["id"] = "explicit.stat_2954116742|43711", - ["text"] = "Allocates Thornhide", + ["id"] = "explicit.stat_3783473032", + ["text"] = "The Bodach haunts your Presence", ["type"] = "explicit", }, [2854] = { - ["id"] = "explicit.stat_2954116742|58817", - ["text"] = "Allocates Artillery Strike", + ["id"] = "explicit.stat_1010703902", + ["text"] = "The Effect of Blind on you is reversed", ["type"] = "explicit", }, [2855] = { - ["id"] = "explicit.stat_2954116742|10774", - ["text"] = "Allocates Unyielding", + ["id"] = "explicit.stat_2955966707", + ["text"] = "The Effect of Chill on you is reversed", ["type"] = "explicit", }, [2856] = { - ["id"] = "explicit.stat_2954116742|35618", - ["text"] = "Allocates Cold Coat", + ["id"] = "explicit.stat_2980117882", + ["text"] = "This Flask cannot be Used but applies its Effect constantly", ["type"] = "explicit", }, [2857] = { - ["id"] = "explicit.stat_2954116742|59938", - ["text"] = "Allocates Against the Elements", + ["id"] = "explicit.stat_3384885789", + ["text"] = "This Weapon's Critical Hit Chance is #%", ["type"] = "explicit", }, [2858] = { - ["id"] = "explicit.stat_2954116742|38329", - ["text"] = "Allocates Biting Frost", + ["id"] = "explicit.stat_2733960806", + ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", ["type"] = "explicit", }, [2859] = { - ["id"] = "explicit.stat_2954116742|43250", - ["text"] = "Allocates Adaptive Skin", + ["id"] = "explicit.stat_1856590738", + ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", ["type"] = "explicit", }, [2860] = { - ["id"] = "explicit.stat_2954116742|44974", - ["text"] = "Allocates Hail", + ["id"] = "explicit.stat_1087787187", + ["text"] = "This item gains bonuses from Socketed Items as though it was a Body Armour", ["type"] = "explicit", }, [2861] = { - ["id"] = "explicit.stat_2954116742|45177", - ["text"] = "Allocates Strike True", + ["id"] = "explicit.stat_1458343515", + ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", ["type"] = "explicit", }, [2862] = { - ["id"] = "explicit.stat_2954116742|12998", - ["text"] = "Allocates Warm the Heart", + ["id"] = "explicit.stat_2044810874", + ["text"] = "This item gains bonuses from Socketed Items as though it was a Shield", ["type"] = "explicit", }, [2863] = { - ["id"] = "explicit.stat_2954116742|44753", - ["text"] = "Allocates One With Flame", + ["id"] = "explicit.stat_150590298", + ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also Boots", ["type"] = "explicit", }, [2864] = { - ["id"] = "explicit.stat_2954116742|49740", - ["text"] = "Allocates Shattered Crystal", + ["id"] = "explicit.stat_3915618954", + ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", ["type"] = "explicit", }, [2865] = { - ["id"] = "explicit.stat_2954116742|59387", - ["text"] = "Allocates Infusion of Power", + ["id"] = "explicit.stat_3773763721", + ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", ["type"] = "explicit", }, [2866] = { - ["id"] = "explicit.stat_2954116742|1506", - ["text"] = "Allocates Remnant Attraction", + ["id"] = "explicit.stat_231726304", + ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", ["type"] = "explicit", }, [2867] = { - ["id"] = "explicit.stat_2954116742|26104", - ["text"] = "Allocates Spirit of the Wyvern", + ["id"] = "explicit.stat_3414243317", + ["text"] = "Thorns can Retaliate against all Hits", ["type"] = "explicit", }, [2868] = { - ["id"] = "explicit.stat_3076483222|56025", - ["text"] = "Sacrifice up to 3 Perfect Chaos Orbs to receive double on Trial completion", + ["id"] = "explicit.stat_3371943724", + ["text"] = "Trigger Decompose every 1.2 metres travelled", ["type"] = "explicit", }, [2869] = { - ["id"] = "explicit.stat_2954116742|56860", - ["text"] = "Allocates Resolute Reprisal", + ["id"] = "explicit.stat_826162720", + ["text"] = "Trigger Ember Fusillade Skill on casting a Spell", ["type"] = "explicit", }, [2870] = { - ["id"] = "explicit.stat_2954116742|29881", - ["text"] = "Allocates Surging Beast", + ["id"] = "explicit.stat_704919631", + ["text"] = "Trigger Lightning Bolt Skill on Critical Hit", ["type"] = "explicit", }, [2871] = { - ["id"] = "explicit.stat_2954116742|9928", - ["text"] = "Allocates Embracing Frost", + ["id"] = "explicit.stat_811217923", + ["text"] = "Trigger Spark Skill on killing a Shocked Enemy", ["type"] = "explicit", }, [2872] = { - ["id"] = "explicit.stat_2954116742|28441", - ["text"] = "Allocates Frantic Swings", + ["id"] = "explicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", ["type"] = "explicit", }, [2873] = { - ["id"] = "explicit.stat_2954116742|31129", - ["text"] = "Allocates Lifelong Friend", + ["id"] = "explicit.stat_4007938693", + ["text"] = "Triggers Level # Manifest Dancing Dervishes on Rampage", ["type"] = "explicit", }, [2874] = { - ["id"] = "explicit.stat_2954116742|60992", - ["text"] = "Allocates Nurturing Guardian", + ["id"] = "explicit.stat_3831171903|25", + ["text"] = "Trusted Kinship", ["type"] = "explicit", }, [2875] = { - ["id"] = "explicit.stat_2954116742|45329", - ["text"] = "Allocates Delayed Danger", + ["id"] = "explicit.stat_1176947534", + ["text"] = "Undead Minions have #% reduced Reservation", ["type"] = "explicit", }, [2876] = { - ["id"] = "explicit.stat_2954116742|43633", - ["text"] = "Allocates Energising Archon", + ["id"] = "explicit.stat_3371085671", + ["text"] = "Unique Monsters have # additional Rare Modifier", ["type"] = "explicit", }, [2877] = { - ["id"] = "explicit.stat_2954116742|33922", - ["text"] = "Allocates Stripped Defences", + ["id"] = "explicit.stat_3371085671", + ["text"] = "Unique Monsters in your Maps have # additional Rare Modifier", ["type"] = "explicit", }, [2878] = { - ["id"] = "explicit.stat_2954116742|42813", - ["text"] = "Allocates Tides of Change", + ["id"] = "explicit.stat_2433436306", + ["text"] = "Unstable Breaches have #% increased chance to contain Vruun, Marshal of Xesht", ["type"] = "explicit", }, [2879] = { - ["id"] = "explicit.stat_2954116742|261", - ["text"] = "Allocates Toxic Sludge", + ["id"] = "explicit.stat_3762913035", + ["text"] = "Unstable Breaches spawn an additional Rare Monster when Stabilised", ["type"] = "explicit", }, [2880] = { - ["id"] = "explicit.stat_1688294122", - ["text"] = "Can Allocate Passive Skills from the Templar's starting point", + ["id"] = "explicit.stat_4104094246", + ["text"] = "Unstable Breaches take an additional second to collapse after timer is filled", ["type"] = "explicit", }, [2881] = { - ["id"] = "explicit.stat_2954116742|12412", - ["text"] = "Allocates Temporal Mastery", + ["id"] = "explicit.stat_3831171903|3", + ["text"] = "Unwavering Stance", ["type"] = "explicit", }, [2882] = { - ["id"] = "explicit.stat_2954116742|28892", - ["text"] = "Allocates Primal Rage", + ["id"] = "explicit.stat_1683578560", + ["text"] = "Unwavering Stance", ["type"] = "explicit", }, [2883] = { - ["id"] = "explicit.stat_2954116742|8957", - ["text"] = "Allocates Right Hand of Darkness", + ["id"] = "explicit.stat_3891355829|2", + ["text"] = "Upgrades Radius to Large", ["type"] = "explicit", }, [2884] = { - ["id"] = "explicit.stat_2625554454", - ["text"] = "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", + ["id"] = "explicit.stat_3891355829|1", + ["text"] = "Upgrades Radius to Medium", ["type"] = "explicit", }, [2885] = { - ["id"] = "explicit.stat_2388936716", - ["text"] = "Area has #% chance to contain a Strongbox", + ["id"] = "explicit.stat_3891355829|3", + ["text"] = "Upgrades Radius to Very Large", ["type"] = "explicit", }, [2886] = { - ["id"] = "explicit.stat_2388936716", - ["text"] = "Your Maps have #% chance to contain a Strongbox", + ["id"] = "explicit.stat_3832076641", + ["text"] = "Used when you release a skill with Perfect Timing", ["type"] = "explicit", }, [2887] = { - ["id"] = "explicit.stat_4032948616", - ["text"] = "#% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", + ["id"] = "explicit.stat_2777675751", + ["text"] = "Using a Mana Flask grants Guard equal to #% of Flask's recovery amount for 4 seconds", ["type"] = "explicit", }, [2888] = { - ["id"] = "explicit.stat_2954116742|53921", - ["text"] = "Allocates Unbreaking", + ["id"] = "explicit.stat_3831171903|20", + ["text"] = "Vaal Pact", ["type"] = "explicit", }, [2889] = { - ["id"] = "explicit.stat_2954116742|21784", - ["text"] = "Allocates Pack Encouragement", + ["id"] = "explicit.stat_2257118425", + ["text"] = "Vaal Pact", ["type"] = "explicit", }, [2890] = { - ["id"] = "explicit.stat_3200877707", - ["text"] = "Skills have a #% chance to not consume Glory", + ["id"] = "explicit.stat_1132041585", + ["text"] = "Virtuous", ["type"] = "explicit", }, [2891] = { - ["id"] = "explicit.stat_2954116742|41620", - ["text"] = "Allocates Bear's Roar", + ["id"] = "explicit.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", ["type"] = "explicit", }, [2892] = { - ["id"] = "explicit.stat_2954116742|7128", - ["text"] = "Allocates Dangerous Blossom", + ["id"] = "explicit.stat_11014011", + ["text"] = "Warcries Explode Corpses dealing #% of their Life as Physical Damage", ["type"] = "explicit", }, [2893] = { - ["id"] = "explicit.stat_2954116742|65468", - ["text"] = "Allocates Repeating Explosives", + ["id"] = "explicit.stat_2567751411", + ["text"] = "Warcry Skills have #% increased Area of Effect", ["type"] = "explicit", }, [2894] = { - ["id"] = "explicit.stat_2954116742|33730", - ["text"] = "Allocates Focused Channel", + ["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", }, [2895] = { - ["id"] = "explicit.stat_2954116742|24062", - ["text"] = "Allocates Immortal Infamy", + ["id"] = "explicit.stat_447757144", + ["text"] = "When you Consume a Charge Trigger Chaotic Surge to gain # Chaos Surge", ["type"] = "explicit", }, [2896] = { - ["id"] = "explicit.stat_2954116742|7542", - ["text"] = "Allocates Encompassing Domain", + ["id"] = "explicit.stat_2913235441", + ["text"] = "When you kill a Rare monster, you gain its Modifiers for 60 seconds", ["type"] = "explicit", }, [2897] = { - ["id"] = "explicit.stat_2954116742|37244", - ["text"] = "Allocates Shield Expertise", + ["id"] = "explicit.stat_331648983", + ["text"] = "When you reload, triggers Gemini Surge to alternatelygain # Cold Surge or # Fire Surge", ["type"] = "explicit", }, [2898] = { - ["id"] = "explicit.stat_2954116742|9009", - ["text"] = "Allocates Return to Nature", + ["id"] = "explicit.stat_3831171903|11", + ["text"] = "Whispers of Doom", ["type"] = "explicit", }, [2899] = { - ["id"] = "explicit.stat_2954116742|37266", - ["text"] = "Allocates Nourishing Ally", + ["id"] = "explicit.stat_3831171903|32", + ["text"] = "Wildsurge Incantation", ["type"] = "explicit", }, [2900] = { - ["id"] = "explicit.stat_2954116742|7449", - ["text"] = "Allocates Splinters", + ["id"] = "explicit.stat_2626360934", + ["text"] = "Wind Skills which can be boosted by Elemental Ground Surfaces countas being boosted by Chilled Ground", ["type"] = "explicit", }, [2901] = { - ["id"] = "explicit.stat_2954116742|32448", - ["text"] = "Allocates Shockproof", + ["id"] = "explicit.stat_279110104", + ["text"] = "Withered does not expire on Enemies Ignited by you", ["type"] = "explicit", }, [2902] = { - ["id"] = "explicit.stat_2954116742|5686", - ["text"] = "Allocates Chillproof", + ["id"] = "explicit.stat_1910297038", + ["text"] = "Withered you inflict also increases Fire Damage taken", ["type"] = "explicit", }, [2903] = { - ["id"] = "explicit.stat_2954116742|53265", - ["text"] = "Allocates Nature's Bite", + ["id"] = "explicit.stat_1354656031", + ["text"] = "Withered you inflict has infinite Duration", ["type"] = "explicit", }, [2904] = { - ["id"] = "explicit.stat_2954116742|24764", - ["text"] = "Allocates Infusing Power", + ["id"] = "explicit.stat_2889272422", + ["text"] = "Wombgifts have #% chance to drop one Level higher", ["type"] = "explicit", }, [2905] = { - ["id"] = "explicit.stat_2954116742|47441", - ["text"] = "Allocates Stigmata", + ["id"] = "explicit.stat_3429986699", + ["text"] = "You and Allies in your Presence have #% increased Accuracy Rating", ["type"] = "explicit", }, [2906] = { - ["id"] = "explicit.stat_2954116742|5410", - ["text"] = "Allocates Channelled Heritage", + ["id"] = "explicit.stat_3408222535", + ["text"] = "You and Allies in your Presence have #% increased Attack Speed", ["type"] = "explicit", }, [2907] = { - ["id"] = "explicit.stat_3076483222|6774", - ["text"] = "Sacrifice up to 3 Perfect Exalted Orbs to receive double on Trial completion", + ["id"] = "explicit.stat_281990982", + ["text"] = "You and Allies in your Presence have #% increased Cast Speed", ["type"] = "explicit", }, [2908] = { - ["id"] = "explicit.stat_2954116742|46182", - ["text"] = "Allocates Intense Dose", + ["id"] = "explicit.stat_36954843", + ["text"] = "You and Allies in your Presence have #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, [2909] = { - ["id"] = "explicit.stat_2954116742|56616", - ["text"] = "Allocates Desperate Times", + ["id"] = "explicit.stat_1404134612", + ["text"] = "You and Allies in your Presence have #% to Chaos Resistance", ["type"] = "explicit", }, [2910] = { - ["id"] = "explicit.stat_2571125745", - ["text"] = "Area has #% chance to contain a Shrine", + ["id"] = "explicit.stat_3774577097", + ["text"] = "You are Blind", ["type"] = "explicit", }, [2911] = { - ["id"] = "explicit.stat_2571125745", - ["text"] = "Your Maps have #% chance to contain a Shrine", + ["id"] = "explicit.stat_356835700", + ["text"] = "You are considered on Low Life while at #% of maximum Life or below instead", ["type"] = "explicit", }, [2912] = { - ["id"] = "explicit.stat_2954116742|94", - ["text"] = "Allocates Efficient Killing", + ["id"] = "explicit.stat_664024640", + ["text"] = "You can Socket an additional copy of each Lineage Support Gem, in different Skills", ["type"] = "explicit", }, [2913] = { - ["id"] = "explicit.stat_2954116742|64525", - ["text"] = "Allocates Easy Target", + ["id"] = "explicit.stat_30642521", + ["text"] = "You can apply # additional Curses", ["type"] = "explicit", }, [2914] = { - ["id"] = "explicit.stat_2954116742|43584", - ["text"] = "Allocates Flare", + ["id"] = "explicit.stat_603573028", + ["text"] = "You can have any number of Companions of different types", ["type"] = "explicit", }, [2915] = { - ["id"] = "explicit.stat_2954116742|45777", - ["text"] = "Allocates Hidden Barb", + ["id"] = "explicit.stat_1888024332", + ["text"] = "You can have two Companions of different types", ["type"] = "explicit", }, [2916] = { - ["id"] = "explicit.stat_2954116742|13524", - ["text"] = "Allocates Everlasting Glory", + ["id"] = "explicit.stat_3598729471", + ["text"] = "You can only Socket Emerald Jewels in this item", ["type"] = "explicit", }, [2917] = { - ["id"] = "explicit.stat_2954116742|3348", - ["text"] = "Allocates Spirit of the Wolf", + ["id"] = "explicit.stat_4031148736", + ["text"] = "You can only Socket Ruby Jewels in this item", ["type"] = "explicit", }, [2918] = { - ["id"] = "explicit.stat_2954116742|19546", - ["text"] = "Allocates Favourable Odds", + ["id"] = "explicit.stat_21302430", + ["text"] = "You can only Socket Sapphire Jewels in this item", ["type"] = "explicit", }, [2919] = { - ["id"] = "explicit.stat_2954116742|10727", - ["text"] = "Allocates Emboldening Casts", + ["id"] = "explicit.stat_3635316831", + ["text"] = "You can wield Two-Handed Axes, Maces and Swords in one hand", ["type"] = "explicit", }, [2920] = { - ["id"] = "explicit.stat_2954116742|50715", - ["text"] = "Allocates Frozen Limit", + ["id"] = "explicit.stat_1536107934", + ["text"] = "You cannot Sprint", ["type"] = "explicit", }, [2921] = { - ["id"] = "explicit.stat_2954116742|30546", - ["text"] = "Allocates Electrified Claw", + ["id"] = "explicit.stat_2306924373", + ["text"] = "You cannot be Chilled for # second after being Chilled", ["type"] = "explicit", }, [2922] = { - ["id"] = "explicit.stat_2971398565", - ["text"] = "Divine Flight", + ["id"] = "explicit.stat_2996245527", + ["text"] = "You cannot be Chilled or Frozen", ["type"] = "explicit", }, [2923] = { - ["id"] = "explicit.stat_2954116742|36100", - ["text"] = "Allocates Molten Claw", + ["id"] = "explicit.stat_3612464552", + ["text"] = "You cannot be Frozen for # second after being Frozen", ["type"] = "explicit", }, [2924] = { - ["id"] = "explicit.stat_2954116742|1087", - ["text"] = "Allocates Shockwaves", + ["id"] = "explicit.stat_947072590", + ["text"] = "You cannot be Ignited for # second after being Ignited", ["type"] = "explicit", }, [2925] = { - ["id"] = "explicit.stat_3624940721", - ["text"] = "#% increased Explicit Lightning Modifier magnitudes", + ["id"] = "explicit.stat_215346464", + ["text"] = "You cannot be Shocked for # second after being Shocked", ["type"] = "explicit", }, [2926] = { - ["id"] = "explicit.stat_2954116742|23362", - ["text"] = "Allocates Slippery Ice", + ["id"] = "explicit.stat_423304126", + ["text"] = "You count as on Full Mana while at #% of maximum Mana or above", ["type"] = "explicit", }, [2927] = { - ["id"] = "explicit.stat_2954116742|10499", - ["text"] = "Allocates Necromantic Ward", + ["id"] = "explicit.stat_3154256486", + ["text"] = "You count as on Low Life while at #% of maximum Mana or below", ["type"] = "explicit", }, [2928] = { - ["id"] = "explicit.stat_2954116742|13482", - ["text"] = "Allocates Punctured Lung", + ["id"] = "explicit.stat_1143240184", + ["text"] = "You count as on Low Mana while at #% of maximum Life or below", ["type"] = "explicit", }, [2929] = { - ["id"] = "explicit.stat_2954116742|56988", - ["text"] = "Allocates Electric Blood", + ["id"] = "explicit.stat_1195849808", + ["text"] = "You gain Onslaught for # seconds on Kill", ["type"] = "explicit", }, [2930] = { - ["id"] = "explicit.stat_2954116742|48649", - ["text"] = "Allocates Insulating Hide", + ["id"] = "explicit.stat_1736538865", + ["text"] = "You have Consecrated Ground around you while stationary", ["type"] = "explicit", }, [2931] = { - ["id"] = "explicit.stat_2954116742|56016", - ["text"] = "Allocates Passthrough Rounds", + ["id"] = "explicit.stat_3007552094", + ["text"] = "You have Unholy Might", ["type"] = "explicit", }, [2932] = { - ["id"] = "explicit.stat_2954116742|31925", - ["text"] = "Allocates Warding Fetish", + ["id"] = "explicit.stat_2592455368", + ["text"] = "You have a Smoke Cloud around you while stationary", ["type"] = "explicit", }, [2933] = { - ["id"] = "explicit.stat_2954116742|43829", - ["text"] = "Allocates Advanced Munitions", + ["id"] = "explicit.stat_3070990531", + ["text"] = "You have no Accuracy Penalty at Distance", ["type"] = "explicit", }, [2934] = { - ["id"] = "explicit.stat_2954116742|62963", - ["text"] = "Allocates Flamewalker", + ["id"] = "explicit.stat_4058681894", + ["text"] = "You have no Critical Damage Bonus", ["type"] = "explicit", }, [2935] = { - ["id"] = "explicit.stat_2954116742|50023", - ["text"] = "Allocates Invigorating Grandeur", + ["id"] = "explicit.stat_1776968075", + ["text"] = "You have no Elemental Resistances", ["type"] = "explicit", }, [2936] = { - ["id"] = "explicit.stat_2954116742|49214", - ["text"] = "Allocates Blood of the Wolf", + ["id"] = "explicit.stat_854225133", + ["text"] = "You have no Life Regeneration", ["type"] = "explicit", }, [2937] = { - ["id"] = "explicit.stat_2954116742|15991", - ["text"] = "Allocates Embodiment of Lightning", + ["id"] = "explicit.stat_3148264775", + ["text"] = "You have no Spirit", ["type"] = "explicit", }, [2938] = { - ["id"] = "explicit.stat_2954116742|338", - ["text"] = "Allocates Invocated Limit", + ["id"] = "explicit.stat_2350411833", + ["text"] = "You lose #% of maximum Energy Shield per second", ["type"] = "explicit", }, [2939] = { - ["id"] = "explicit.stat_1910297038", - ["text"] = "Withered you inflict also increases Fire Damage taken", + ["id"] = "explicit.stat_2905515354", + ["text"] = "You take #% of damage from Blocked Hits", ["type"] = "explicit", }, [2940] = { - ["id"] = "explicit.stat_2954116742|8607", - ["text"] = "Allocates Lavianga's Brew", + ["id"] = "explicit.stat_3694078435", + ["text"] = "You take #% of damage from Blocked Hits with a raised Shield", ["type"] = "explicit", }, [2941] = { - ["id"] = "explicit.stat_2954116742|25753", - ["text"] = "Allocates Blazing Arms", + ["id"] = "explicit.stat_2022332470", + ["text"] = "You take Fire Damage instead of Physical Damage from Bleeding", ["type"] = "explicit", }, [2942] = { - ["id"] = "explicit.stat_2954116742|8916", - ["text"] = "Allocates Bashing Beast", + ["id"] = "explicit.stat_2516303866", + ["text"] = "Your Critical Damage Bonus is 250%", ["type"] = "explicit", }, [2943] = { - ["id"] = "explicit.stat_2954116742|32655", - ["text"] = "Allocates Hunting Companion", + ["id"] = "explicit.stat_4159551976", + ["text"] = "Your Critical Hit Chance cannot be Rerolled", ["type"] = "explicit", }, [2944] = { - ["id"] = "explicit.stat_2954116742|57921", - ["text"] = "Allocates Wolf's Howl", + ["id"] = "explicit.stat_886088880", + ["text"] = "Your Heavy Stun buildup empties #% faster", ["type"] = "explicit", }, [2945] = { - ["id"] = "explicit.stat_1416292992", - ["text"] = "Has # Charm Slot", + ["id"] = "explicit.stat_2890792988", + ["text"] = "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", ["type"] = "explicit", }, [2946] = { - ["id"] = "explicit.stat_2954116742|60273", - ["text"] = "Allocates Hindering Obstacles", + ["id"] = "explicit.stat_2397460217", + ["text"] = "Your Life Flask also applies to your Minions", ["type"] = "explicit", }, [2947] = { - ["id"] = "explicit.stat_4098286334", - ["text"] = "Area has #% chance to contain an Essence", + ["id"] = "explicit.stat_3550168289", + ["text"] = "Your Maps are inhabited by # additional Rogue Exile", ["type"] = "explicit", }, [2948] = { - ["id"] = "explicit.stat_4098286334", - ["text"] = "Your Maps have #% chance to contain an Essence", + ["id"] = "explicit.stat_3240183538", + ["text"] = "Your Maps contain # additional Strongboxes", ["type"] = "explicit", }, [2949] = { - ["id"] = "explicit.stat_2954116742|2814", - ["text"] = "Allocates Engineered Blaze", + ["id"] = "explicit.stat_1070816711", + ["text"] = "Your Maps contain an additional Abyss", ["type"] = "explicit", }, [2950] = { - ["id"] = "explicit.stat_2897413282", - ["text"] = "# to all Attributes", + ["id"] = "explicit.stat_395808938", + ["text"] = "Your Maps contain an additional Essence", ["type"] = "explicit", }, [2951] = { - ["id"] = "explicit.stat_2241560081", - ["text"] = "#% increased Attack Speed per 25 Dexterity", + ["id"] = "explicit.stat_231864447", + ["text"] = "Your Maps contain an additional Rare Chest", ["type"] = "explicit", }, [2952] = { - ["id"] = "explicit.stat_2954116742|64659", - ["text"] = "Allocates Lasting Boons", + ["id"] = "explicit.stat_1468737867", + ["text"] = "Your Maps contain an additional Shrine", ["type"] = "explicit", }, [2953] = { - ["id"] = "explicit.stat_2954116742|61354", - ["text"] = "Allocates Infernal Limit", + ["id"] = "explicit.stat_588512487", + ["text"] = "Your Maps have # additional random Modifier", ["type"] = "explicit", }, [2954] = { - ["id"] = "explicit.stat_2954116742|56388", - ["text"] = "Allocates Reinforced Rallying", + ["id"] = "explicit.stat_2571125745", + ["text"] = "Your Maps have #% chance to contain a Shrine", ["type"] = "explicit", }, [2955] = { - ["id"] = "explicit.stat_1314787770", - ["text"] = "Map Boss has +#% chance to drop a Waystone of the current tier or higher", + ["id"] = "explicit.stat_2388936716", + ["text"] = "Your Maps have #% chance to contain a Strongbox", ["type"] = "explicit", }, [2956] = { - ["id"] = "explicit.stat_2954116742|18496", - ["text"] = "Allocates Lasting Trauma", + ["id"] = "explicit.stat_4098286334", + ["text"] = "Your Maps have #% chance to contain an Essence", ["type"] = "explicit", }, [2957] = { - ["id"] = "explicit.stat_1157523820", - ["text"] = "#% chance for Slam Skills to cause an additional Aftershock", + ["id"] = "explicit.stat_3049505189", + ["text"] = "Your Maps which contain Breaches have #% chance to contain an additional Breach", ["type"] = "explicit", }, [2958] = { - ["id"] = "explicit.stat_2954116742|57617", - ["text"] = "Allocates Shifted Strikes", + ["id"] = "explicit.stat_2440265466", + ["text"] = "Your Maps which contain Breaches have #% chance to contain three additional Breaches", ["type"] = "explicit", }, [2959] = { - ["id"] = "explicit.stat_2954116742|45751", - ["text"] = "Allocates Frightening Shield", + ["id"] = "explicit.stat_1265767008", + ["text"] = "Your Minions are Gigantic if they have Revived Recently", ["type"] = "explicit", }, [2960] = { - ["id"] = "explicit.stat_2954116742|55450", - ["text"] = "Allocates Rallying Form", + ["id"] = "explicit.stat_3091132047", + ["text"] = "Your base Energy Shield Recharge Delay is # second", ["type"] = "explicit", }, [2961] = { - ["id"] = "explicit.stat_2954116742|56237", - ["text"] = "Allocates Enhancing Attacks", + ["id"] = "explicit.stat_758226825", + ["text"] = "Your maximum Energy Shield is equal to #% of your Strength", ["type"] = "explicit", }, [2962] = { - ["id"] = "explicit.stat_2954116742|56112", - ["text"] = "Allocates Extinguishing Exhalation", + ["id"] = "explicit.stat_3128773415", + ["text"] = "Your speed is Unaffected by Slows while Sprinting", ["type"] = "explicit", }, [2963] = { - ["id"] = "explicit.stat_2954116742|48925", - ["text"] = "Allocates Blessing of the Moon", + ["id"] = "explicit.stat_50721145", + ["text"] = "Your speed is unaffected by Slows", ["type"] = "explicit", }, [2964] = { - ["id"] = "explicit.stat_2954116742|20558", - ["text"] = "Allocates Among the Hordes", + ["id"] = "explicit.stat_1315418254", + ["text"] = "Zealot's Oath", ["type"] = "explicit", }, [2965] = { - ["id"] = "explicit.stat_3005701891", - ["text"] = "Inflict Cold Exposure on Hit", + ["id"] = "explicit.stat_3831171903|33", + ["text"] = "Zealot's Oath", ["type"] = "explicit", }, }, @@ -15019,148 +15023,148 @@ return { [3] = { ["entries"] = { [1] = { - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "implicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", ["type"] = "implicit", }, [2] = { - ["id"] = "implicit.stat_275498888", - ["text"] = "Maximum Quality is #%", + ["id"] = "implicit.stat_3182714256", + ["text"] = "# Prefix Modifier allowed", ["type"] = "implicit", }, [3] = { - ["id"] = "implicit.stat_4041853756", - ["text"] = "Adds Irradiated to a Map # use remaining", + ["id"] = "implicit.stat_718638445", + ["text"] = "# Suffix Modifier allowed", ["type"] = "implicit", }, [4] = { - ["id"] = "implicit.stat_3981240776", - ["text"] = "# to Spirit", + ["id"] = "implicit.stat_2264295449", + ["text"] = "# metres to Melee Strike Range", ["type"] = "implicit", }, [5] = { - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "implicit.stat_803737631", + ["text"] = "# to Accuracy Rating", ["type"] = "implicit", }, [6] = { - ["id"] = "implicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "implicit.stat_809229260", + ["text"] = "# to Armour", ["type"] = "implicit", }, [7] = { - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["id"] = "implicit.stat_3261801346", + ["text"] = "# to Dexterity", ["type"] = "implicit", }, [8] = { - ["id"] = "implicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["id"] = "implicit.stat_328541901", + ["text"] = "# to Intelligence", ["type"] = "implicit", }, [9] = { - ["id"] = "implicit.stat_1379411836", - ["text"] = "# to all Attributes", + ["id"] = "implicit.stat_1078455967", + ["text"] = "# to Level of all Cold Skills", ["type"] = "implicit", }, [10] = { - ["id"] = "implicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "implicit.stat_2251279027", + ["text"] = "# to Level of all Corrupted Skill Gems", ["type"] = "implicit", }, [11] = { - ["id"] = "implicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "implicit.stat_1181501418", + ["text"] = "# to Maximum Rage", ["type"] = "implicit", }, [12] = { - ["id"] = "implicit.stat_328541901", - ["text"] = "# to Intelligence", + ["id"] = "implicit.stat_3981240776", + ["text"] = "# to Spirit", ["type"] = "implicit", }, [13] = { - ["id"] = "implicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "implicit.stat_4080418644", + ["text"] = "# to Strength", ["type"] = "implicit", }, [14] = { - ["id"] = "implicit.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "implicit.stat_1379411836", + ["text"] = "# to all Attributes", ["type"] = "implicit", }, [15] = { - ["id"] = "implicit.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "implicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", ["type"] = "implicit", }, [16] = { - ["id"] = "implicit.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "implicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "implicit", }, [17] = { - ["id"] = "implicit.stat_2219129443", - ["text"] = "Adds an Otherworldy Breach to a Map # use remaining", + ["id"] = "implicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "implicit", }, [18] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "implicit.stat_774059442", + ["text"] = "# to maximum Runic Ward", ["type"] = "implicit", }, [19] = { - ["id"] = "implicit.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "implicit.stat_3336230913", + ["text"] = "# to maximum Runic Ward", ["type"] = "implicit", }, [20] = { - ["id"] = "implicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", + ["id"] = "implicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", ["type"] = "implicit", }, [21] = { - ["id"] = "implicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["id"] = "implicit.stat_1028592286", + ["text"] = "#% chance to Chain an additional time", ["type"] = "implicit", }, [22] = { - ["id"] = "implicit.stat_958696139", - ["text"] = "Grants 1 additional Skill Slot", + ["id"] = "implicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", ["type"] = "implicit", }, [23] = { - ["id"] = "implicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "implicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", ["type"] = "implicit", }, [24] = { - ["id"] = "implicit.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["id"] = "implicit.stat_3954735777", + ["text"] = "#% chance to Poison on Hit with Attacks", ["type"] = "implicit", }, [25] = { - ["id"] = "implicit.stat_3879011313", - ["text"] = "Adds a Mirror of Delirium to a Map # use remaining", + ["id"] = "implicit.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", ["type"] = "implicit", }, [26] = { - ["id"] = "implicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", + ["id"] = "implicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "implicit", }, [27] = { - ["id"] = "implicit.stat_3376302538", - ["text"] = "Empowers the Map Boss of a Map # use remaining", + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", ["type"] = "implicit", }, [28] = { - ["id"] = "implicit.stat_462041840", - ["text"] = "#% of Flask Recovery applied Instantly", + ["id"] = "implicit.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", ["type"] = "implicit", }, [29] = { - ["id"] = "implicit.stat_548198834", - ["text"] = "#% increased Melee Strike Range with this weapon", + ["id"] = "implicit.stat_1207554355", + ["text"] = "#% increased Arrow Speed", ["type"] = "implicit", }, [30] = { @@ -15169,693 +15173,693 @@ return { ["type"] = "implicit", }, [31] = { - ["id"] = "implicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", + ["id"] = "implicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", ["type"] = "implicit", }, [32] = { - ["id"] = "implicit.stat_809229260", - ["text"] = "# to Armour", + ["id"] = "implicit.stat_1803308202", + ["text"] = "#% increased Bolt Speed", ["type"] = "implicit", }, [33] = { - ["id"] = "implicit.stat_1702195217", - ["text"] = "#% to Block chance", + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "implicit", }, [34] = { - ["id"] = "implicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", + ["id"] = "implicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "implicit", }, [35] = { - ["id"] = "implicit.stat_1980802737", - ["text"] = "Grenade Skills Fire an additional Projectile", + ["id"] = "implicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", ["type"] = "implicit", }, [36] = { - ["id"] = "implicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", + ["id"] = "implicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", ["type"] = "implicit", }, [37] = { - ["id"] = "implicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", + ["id"] = "implicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", ["type"] = "implicit", }, [38] = { - ["id"] = "implicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", + ["id"] = "implicit.stat_3691641145", + ["text"] = "#% increased Damage taken", ["type"] = "implicit", }, [39] = { - ["id"] = "implicit.stat_1416292992", - ["text"] = "Has # Charm Slot", + ["id"] = "implicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", ["type"] = "implicit", }, [40] = { - ["id"] = "implicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["id"] = "implicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "implicit", }, [41] = { - ["id"] = "implicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", + ["id"] = "implicit.stat_1539368271", + ["text"] = "#% increased Expedition Explosive Placement Range", ["type"] = "implicit", }, [42] = { - ["id"] = "implicit.stat_731781020", - ["text"] = "Flasks gain # charges per Second", + ["id"] = "implicit.stat_3289828378", + ["text"] = "#% increased Expedition Explosive Radius", ["type"] = "implicit", }, [43] = { - ["id"] = "implicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", + ["id"] = "implicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", ["type"] = "implicit", }, [44] = { - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "implicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", ["type"] = "implicit", }, [45] = { - ["id"] = "implicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", + ["id"] = "implicit.stat_473429811", + ["text"] = "#% increased Freeze Buildup", ["type"] = "implicit", }, [46] = { - ["id"] = "implicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", + ["id"] = "implicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", ["type"] = "implicit", }, [47] = { - ["id"] = "implicit.stat_1541903247", - ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", ["type"] = "implicit", }, [48] = { - ["id"] = "implicit.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["id"] = "implicit.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", ["type"] = "implicit", }, [49] = { - ["id"] = "implicit.stat_3166002380", - ["text"] = "Adds Ritual Altars to a Map # use remaining", + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", ["type"] = "implicit", }, [50] = { - ["id"] = "implicit.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", + ["id"] = "implicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", ["type"] = "implicit", }, [51] = { - ["id"] = "implicit.stat_1803308202", - ["text"] = "#% increased Bolt Speed", + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "implicit", }, [52] = { - ["id"] = "implicit.stat_1967051901", - ["text"] = "Loads an additional bolt", + ["id"] = "implicit.stat_4169430079", + ["text"] = "#% increased Maximum Life for each Corrupted Item Equipped", ["type"] = "implicit", }, [53] = { - ["id"] = "implicit.stat_1207554355", - ["text"] = "#% increased Arrow Speed", + ["id"] = "implicit.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", ["type"] = "implicit", }, [54] = { - ["id"] = "implicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "implicit", }, [55] = { - ["id"] = "implicit.stat_1714888636", - ["text"] = "Adds a Kalguuran Expedition to a Map # use remaining", + ["id"] = "implicit.stat_2590797182", + ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", ["type"] = "implicit", }, [56] = { - ["id"] = "implicit.stat_2994271459", - ["text"] = "Used when you take Cold damage from a Hit", + ["id"] = "implicit.stat_3398402065", + ["text"] = "#% increased Projectile Range", ["type"] = "implicit", }, [57] = { - ["id"] = "implicit.stat_3854901951", - ["text"] = "Used when you take Fire damage from a Hit", + ["id"] = "implicit.stat_535217483", + ["text"] = "#% increased Projectile Speed with this Weapon", ["type"] = "implicit", }, [58] = { - ["id"] = "implicit.stat_2016937536", - ["text"] = "Used when you take Lightning damage from a Hit", + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", ["type"] = "implicit", }, [59] = { - ["id"] = "implicit.stat_1028592286", - ["text"] = "#% chance to Chain an additional time", + ["id"] = "implicit.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", ["type"] = "implicit", }, [60] = { - ["id"] = "implicit.stat_1810482573", - ["text"] = "Used when you become Stunned", + ["id"] = "implicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "implicit", }, [61] = { - ["id"] = "implicit.stat_3675300253", - ["text"] = "Strikes deal Splash Damage", + ["id"] = "implicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", ["type"] = "implicit", }, [62] = { - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", + ["id"] = "implicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", ["type"] = "implicit", }, [63] = { - ["id"] = "implicit.stat_1691862754", - ["text"] = "Used when you become Frozen", + ["id"] = "implicit.stat_1879206848", + ["text"] = "#% increased effect of Fully Broken Armour", ["type"] = "implicit", }, [64] = { - ["id"] = "implicit.stat_2933846633", - ["text"] = "Dazes on Hit", + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", ["type"] = "implicit", }, [65] = { - ["id"] = "implicit.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", + ["id"] = "implicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "implicit", }, [66] = { - ["id"] = "implicit.stat_1412682799", - ["text"] = "Used when you become Poisoned", + ["id"] = "implicit.stat_4273473110", + ["text"] = "#% increased maximum Runic Ward", ["type"] = "implicit", }, [67] = { - ["id"] = "implicit.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", + ["id"] = "implicit.stat_3051490307", + ["text"] = "#% increased number of Expedition Explosives", ["type"] = "implicit", }, [68] = { - ["id"] = "implicit.stat_2778646494", - ["text"] = "Used when you are affected by a Slow", + ["id"] = "implicit.stat_3051490307", + ["text"] = "#% increased number of Explosives", ["type"] = "implicit", }, [69] = { - ["id"] = "implicit.stat_3676540188", - ["text"] = "Used when you start Bleeding", + ["id"] = "implicit.stat_1640965354", + ["text"] = "#% increased number of Runic Monster Markers", ["type"] = "implicit", }, [70] = { - ["id"] = "implicit.stat_4010341289", - ["text"] = "Used when you kill a Rare or Unique enemy", + ["id"] = "implicit.stat_4219583418", + ["text"] = "#% increased quantity of Artifacts dropped by Monsters", ["type"] = "implicit", }, [71] = { - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", + ["id"] = "implicit.stat_4219583418", + ["text"] = "#% increased quantity of Artifacts dropped by Monsters in your Maps", ["type"] = "implicit", }, [72] = { - ["id"] = "implicit.stat_585126960", - ["text"] = "Used when you become Ignited", + ["id"] = "implicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "implicit", }, [73] = { - ["id"] = "implicit.stat_3699444296", - ["text"] = "Used when you become Shocked", + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "implicit", }, [74] = { - ["id"] = "implicit.stat_3954735777", - ["text"] = "#% chance to Poison on Hit with Attacks", + ["id"] = "implicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "implicit", }, [75] = { - ["id"] = "implicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["id"] = "implicit.stat_462041840", + ["text"] = "#% of Flask Recovery applied Instantly", ["type"] = "implicit", }, [76] = { - ["id"] = "implicit.stat_2055966527", - ["text"] = "Attacks have #% chance to cause Bleeding", + ["id"] = "implicit.stat_3627052716", + ["text"] = "#% of Lightning Damage Converted to Cold Damage", ["type"] = "implicit", }, [77] = { - ["id"] = "implicit.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", + ["id"] = "implicit.stat_3544050945", + ["text"] = "#% of Spell Mana Cost Converted to Life Cost", ["type"] = "implicit", }, [78] = { - ["id"] = "implicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", + ["id"] = "implicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", ["type"] = "implicit", }, [79] = { - ["id"] = "implicit.stat_3310778564", - ["text"] = "Used when you take Chaos damage from a Hit", + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", ["type"] = "implicit", }, [80] = { - ["id"] = "implicit.stat_1539368271", - ["text"] = "#% increased Expedition Explosive Placement Range", + ["id"] = "implicit.stat_1443060084", + ["text"] = "#% reduced Enemy Stun Threshold", ["type"] = "implicit", }, [81] = { - ["id"] = "implicit.stat_1915989164", - ["text"] = "Area contains #% increased number of Monster Markers", + ["id"] = "implicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", ["type"] = "implicit", }, [82] = { - ["id"] = "implicit.stat_4219583418", - ["text"] = "#% increased quantity of Artifacts dropped by Monsters", + ["id"] = "implicit.stat_1702195217", + ["text"] = "#% to Block chance", ["type"] = "implicit", }, [83] = { - ["id"] = "implicit.stat_4219583418", - ["text"] = "#% increased quantity of Artifacts dropped by Monsters in your Maps", + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "implicit", }, [84] = { - ["id"] = "implicit.stat_1871805225", - ["text"] = "Remnants have #% chance to have an additional Suffix Modifier", + ["id"] = "implicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "implicit", }, [85] = { - ["id"] = "implicit.stat_1871805225", - ["text"] = "Remnants in your Maps have #% chance to have an additional Suffix Modifier", + ["id"] = "implicit.stat_4277795662", + ["text"] = "#% to Cold and Lightning Resistances", ["type"] = "implicit", }, [86] = { - ["id"] = "implicit.stat_3289828378", - ["text"] = "#% increased Expedition Explosive Radius", + ["id"] = "implicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", ["type"] = "implicit", }, [87] = { - ["id"] = "implicit.stat_1640965354", - ["text"] = "Area contains #% increased number of Runic Monster Markers", + ["id"] = "implicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "implicit", }, [88] = { - ["id"] = "implicit.stat_1640965354", - ["text"] = "#% increased number of Runic Monster Markers", + ["id"] = "implicit.stat_2915988346", + ["text"] = "#% to Fire and Cold Resistances", ["type"] = "implicit", }, [89] = { - ["id"] = "implicit.stat_2991413918", - ["text"] = "Area contains #% increased number of Remnants", + ["id"] = "implicit.stat_3441501978", + ["text"] = "#% to Fire and Lightning Resistances", ["type"] = "implicit", }, [90] = { - ["id"] = "implicit.stat_3051490307", - ["text"] = "#% increased number of Explosives", + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "implicit", }, [91] = { - ["id"] = "implicit.stat_3051490307", - ["text"] = "#% increased number of Expedition Explosives", + ["id"] = "implicit.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", ["type"] = "implicit", }, [92] = { - ["id"] = "implicit.stat_4160330571", - ["text"] = "Area contains # additional Chest Marker", + ["id"] = "implicit.stat_2039822488", + ["text"] = "#% to Maximum Quality", ["type"] = "implicit", }, [93] = { - ["id"] = "implicit.stat_4160330571", - ["text"] = "Expedition encounters in your Maps contain # additional Chest Marker", + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "implicit", }, [94] = { - ["id"] = "implicit.stat_2369421690", - ["text"] = "Adds Abysses to a Map # use remaining", + ["id"] = "implicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "implicit", }, [95] = { - ["id"] = "implicit.stat_2646093132", - ["text"] = "Inflict Abyssal Wasting on Hit", + ["id"] = "implicit.stat_569299859", + ["text"] = "#% to all maximum Resistances", ["type"] = "implicit", }, [96] = { - ["id"] = "implicit.stat_3398402065", - ["text"] = "#% increased Projectile Range", + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", ["type"] = "implicit", }, [97] = { - ["id"] = "implicit.stat_2763429652", - ["text"] = "#% chance to Maim on Hit", + ["id"] = "implicit.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", ["type"] = "implicit", }, [98] = { - ["id"] = "implicit.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "implicit", }, [99] = { - ["id"] = "implicit.stat_718638445", - ["text"] = "# Suffix Modifier allowed", + ["id"] = "implicit.stat_2369421690", + ["text"] = "Adds Abysses to a Map # use remaining", ["type"] = "implicit", }, [100] = { - ["id"] = "implicit.stat_3663551379", - ["text"] = "Cannot load or fire Ammunition", + ["id"] = "implicit.stat_4041853756", + ["text"] = "Adds Irradiated to a Map # use remaining", ["type"] = "implicit", }, [101] = { - ["id"] = "implicit.stat_3182714256", - ["text"] = "# Prefix Modifier allowed", + ["id"] = "implicit.stat_3166002380", + ["text"] = "Adds Ritual Altars to a Map # use remaining", ["type"] = "implicit", }, [102] = { - ["id"] = "implicit.stat_1181501418", - ["text"] = "# to Maximum Rage", + ["id"] = "implicit.stat_3035440454", + ["text"] = "Adds Vaal Beacons to a Map # use remaining", ["type"] = "implicit", }, [103] = { - ["id"] = "implicit.stat_535217483", - ["text"] = "#% increased Projectile Speed with this Weapon", + ["id"] = "implicit.stat_1714888636", + ["text"] = "Adds a Kalguuran Expedition to a Map # use remaining", ["type"] = "implicit", }, [104] = { - ["id"] = "implicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", + ["id"] = "implicit.stat_3879011313", + ["text"] = "Adds a Mirror of Delirium to a Map # use remaining", ["type"] = "implicit", }, [105] = { - ["id"] = "implicit.stat_3552135623", - ["text"] = "Prevent #% of Damage from Deflected Hits", + ["id"] = "implicit.stat_2219129443", + ["text"] = "Adds an Otherworldy Breach to a Map # use remaining", ["type"] = "implicit", }, [106] = { - ["id"] = "implicit.stat_1503146834", - ["text"] = "Crushes Enemies on Hit", + ["id"] = "implicit.stat_4126210832", + ["text"] = "Always Hits", ["type"] = "implicit", }, [107] = { - ["id"] = "implicit.stat_3239978999", - ["text"] = "Excavated Chests have a #% chance to contain twice as many Items", + ["id"] = "implicit.stat_4160330571", + ["text"] = "Area contains # additional Chest Marker", ["type"] = "implicit", }, [108] = { - ["id"] = "implicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", + ["id"] = "implicit.stat_1915989164", + ["text"] = "Area contains #% increased number of Monster Markers", ["type"] = "implicit", }, [109] = { - ["id"] = "implicit.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", + ["id"] = "implicit.stat_2991413918", + ["text"] = "Area contains #% increased number of Remnants", ["type"] = "implicit", }, [110] = { - ["id"] = "implicit.stat_4126210832", - ["text"] = "Always Hits", + ["id"] = "implicit.stat_1640965354", + ["text"] = "Area contains #% increased number of Runic Monster Markers", ["type"] = "implicit", }, [111] = { - ["id"] = "implicit.stat_2590797182", - ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", + ["id"] = "implicit.stat_2055966527", + ["text"] = "Attacks have #% chance to cause Bleeding", ["type"] = "implicit", }, [112] = { - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", + ["id"] = "implicit.stat_1451444093", + ["text"] = "Bifurcates Critical Hits", ["type"] = "implicit", }, [113] = { - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "implicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", ["type"] = "implicit", }, [114] = { - ["id"] = "implicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", + ["id"] = "implicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "implicit", }, [115] = { - ["id"] = "implicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", + ["id"] = "implicit.stat_4270348114", + ["text"] = "Breaks # Armour on Critical Hit", ["type"] = "implicit", }, [116] = { - ["id"] = "implicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["id"] = "implicit.stat_129891052", + ["text"] = "Can roll Ring Modifiers", ["type"] = "implicit", }, [117] = { - ["id"] = "implicit.stat_2251279027", - ["text"] = "# to Level of all Corrupted Skill Gems", + ["id"] = "implicit.stat_3663551379", + ["text"] = "Cannot load or fire Ammunition", ["type"] = "implicit", }, [118] = { - ["id"] = "implicit.stat_1434716233", - ["text"] = "Warcries Empower an additional Attack", + ["id"] = "implicit.stat_1961849903", + ["text"] = "Cannot use Projectile Attacks", ["type"] = "implicit", }, [119] = { - ["id"] = "implicit.stat_3035440454", - ["text"] = "Adds Vaal Beacons to a Map # use remaining", + ["id"] = "implicit.stat_254952842", + ["text"] = "Catalysts can be applied to this item", ["type"] = "implicit", }, [120] = { - ["id"] = "implicit.stat_2039822488", - ["text"] = "#% to Maximum Quality", + ["id"] = "implicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", ["type"] = "implicit", }, [121] = { - ["id"] = "implicit.stat_3441501978", - ["text"] = "#% to Fire and Lightning Resistances", + ["id"] = "implicit.stat_1559935218", + ["text"] = "Causes Daze buildup equal to #% of Damage dealt", ["type"] = "implicit", }, [122] = { - ["id"] = "implicit.stat_2392260628", - ["text"] = "#% increased Runic Ward Regeneration Rate", + ["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_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["id"] = "implicit.stat_1503146834", + ["text"] = "Crushes Enemies on Hit", ["type"] = "implicit", }, [124] = { - ["id"] = "implicit.stat_4277795662", - ["text"] = "#% to Cold and Lightning Resistances", + ["id"] = "implicit.stat_1574531783", + ["text"] = "Culling Strike (Local)", ["type"] = "implicit", }, [125] = { - ["id"] = "implicit.stat_1856590738", - ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", + ["id"] = "implicit.stat_2933846633", + ["text"] = "Dazes on Hit", ["type"] = "implicit", }, [126] = { - ["id"] = "implicit.stat_4077843608", - ["text"] = "Has 1 Socket", + ["id"] = "implicit.stat_3376302538", + ["text"] = "Empowers the Map Boss of a Map # use remaining", ["type"] = "implicit", }, [127] = { - ["id"] = "implicit.stat_1754445556", - ["text"] = "Adds # to # Lightning damage to Attacks", + ["id"] = "implicit.stat_3239978999", + ["text"] = "Excavated Chests have a #% chance to contain twice as many Items", ["type"] = "implicit", }, [128] = { - ["id"] = "implicit.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", + ["id"] = "implicit.stat_4160330571", + ["text"] = "Expedition encounters in your Maps contain # additional Chest Marker", ["type"] = "implicit", }, [129] = { - ["id"] = "implicit.stat_1879206848", - ["text"] = "#% increased effect of Fully Broken Armour", + ["id"] = "implicit.stat_731781020", + ["text"] = "Flasks gain # charges per Second", ["type"] = "implicit", }, [130] = { - ["id"] = "implicit.stat_1725749947", - ["text"] = "Grants # Rage on Hit", + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "implicit", }, [131] = { - ["id"] = "implicit.stat_669069897", - ["text"] = "Leeches #% of Physical Damage as Mana", + ["id"] = "implicit.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", ["type"] = "implicit", }, [132] = { - ["id"] = "implicit.stat_129891052", - ["text"] = "Can roll Ring Modifiers", + ["id"] = "implicit.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", ["type"] = "implicit", }, [133] = { - ["id"] = "implicit.stat_1574531783", - ["text"] = "Culling Strike (Local)", + ["id"] = "implicit.stat_1725749947", + ["text"] = "Grants # Rage on Hit", ["type"] = "implicit", }, [134] = { - ["id"] = "implicit.stat_1458343515", - ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", + ["id"] = "implicit.stat_958696139", + ["text"] = "Grants 1 additional Skill Slot", ["type"] = "implicit", }, [135] = { - ["id"] = "implicit.stat_3336230913", - ["text"] = "# to maximum Runic Ward", + ["id"] = "implicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", ["type"] = "implicit", }, [136] = { - ["id"] = "implicit.stat_1050883682", - ["text"] = "Has no Accuracy Penalty from Range", + ["id"] = "implicit.stat_1416292992", + ["text"] = "Has # Charm Slot", ["type"] = "implicit", }, [137] = { - ["id"] = "implicit.stat_1443060084", - ["text"] = "#% reduced Enemy Stun Threshold", + ["id"] = "implicit.stat_4077843608", + ["text"] = "Has 1 Socket", ["type"] = "implicit", }, [138] = { - ["id"] = "implicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "implicit.stat_1050883682", + ["text"] = "Has no Accuracy Penalty from Range", ["type"] = "implicit", }, [139] = { - ["id"] = "implicit.stat_1840985759", - ["text"] = "#% increased Area of Effect for Attacks", + ["id"] = "implicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "implicit", }, [140] = { - ["id"] = "implicit.stat_774059442", - ["text"] = "# to maximum Runic Ward", + ["id"] = "implicit.stat_2646093132", + ["text"] = "Inflict Abyssal Wasting on Hit", ["type"] = "implicit", }, [141] = { - ["id"] = "implicit.stat_1559935218", - ["text"] = "Causes Daze buildup equal to #% of Damage dealt", + ["id"] = "implicit.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "implicit", }, [142] = { - ["id"] = "implicit.stat_254952842", - ["text"] = "Catalysts can be applied to this item", + ["id"] = "implicit.stat_1967051901", + ["text"] = "Loads an additional bolt", ["type"] = "implicit", }, [143] = { - ["id"] = "implicit.stat_3791899485", - ["text"] = "#% increased Ignite Magnitude", + ["id"] = "implicit.stat_275498888", + ["text"] = "Maximum Quality is #%", ["type"] = "implicit", }, [144] = { - ["id"] = "implicit.stat_2915988346", - ["text"] = "#% to Fire and Cold Resistances", + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", ["type"] = "implicit", }, [145] = { - ["id"] = "implicit.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "implicit.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", ["type"] = "implicit", }, [146] = { - ["id"] = "implicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", + ["id"] = "implicit.stat_1568848828", + ["text"] = "Recover # Runic Ward when you Block", ["type"] = "implicit", }, [147] = { - ["id"] = "implicit.stat_4270348114", - ["text"] = "Breaks # Armour on Critical Hit", + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", ["type"] = "implicit", }, [148] = { - ["id"] = "implicit.stat_4273473110", - ["text"] = "#% increased maximum Runic Ward", + ["id"] = "implicit.stat_1871805225", + ["text"] = "Remnants have #% chance to have an additional Suffix Modifier", ["type"] = "implicit", }, [149] = { - ["id"] = "implicit.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", + ["id"] = "implicit.stat_1871805225", + ["text"] = "Remnants in your Maps have #% chance to have an additional Suffix Modifier", ["type"] = "implicit", }, [150] = { - ["id"] = "implicit.stat_1568848828", - ["text"] = "Recover # Runic Ward when you Block", + ["id"] = "implicit.stat_2728425538", + ["text"] = "Skills Gain #% of damage as Extra Lightning damage per 50 Runic Ward Cost", ["type"] = "implicit", }, [151] = { - ["id"] = "implicit.stat_1078455967", - ["text"] = "# to Level of all Cold Skills", + ["id"] = "implicit.stat_3675300253", + ["text"] = "Strikes deal Splash Damage", ["type"] = "implicit", }, [152] = { - ["id"] = "implicit.stat_4169430079", - ["text"] = "#% increased Maximum Life for each Corrupted Item Equipped", + ["id"] = "implicit.stat_2733960806", + ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", ["type"] = "implicit", }, [153] = { - ["id"] = "implicit.stat_2264295449", - ["text"] = "# metres to Melee Strike Range", + ["id"] = "implicit.stat_1856590738", + ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", ["type"] = "implicit", }, [154] = { - ["id"] = "implicit.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["id"] = "implicit.stat_1458343515", + ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", ["type"] = "implicit", }, [155] = { - ["id"] = "implicit.stat_569299859", - ["text"] = "#% to all maximum Resistances", + ["id"] = "implicit.stat_1137147997", + ["text"] = "Unblockable", ["type"] = "implicit", }, [156] = { - ["id"] = "implicit.stat_2728425538", - ["text"] = "Skills Gain #% of damage as Extra Lightning damage per 50 Runic Ward Cost", + ["id"] = "implicit.stat_2778646494", + ["text"] = "Used when you are affected by a Slow", ["type"] = "implicit", }, [157] = { - ["id"] = "implicit.stat_2733960806", - ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", + ["id"] = "implicit.stat_1691862754", + ["text"] = "Used when you become Frozen", ["type"] = "implicit", }, [158] = { - ["id"] = "implicit.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", + ["id"] = "implicit.stat_585126960", + ["text"] = "Used when you become Ignited", ["type"] = "implicit", }, [159] = { - ["id"] = "implicit.stat_473429811", - ["text"] = "#% increased Freeze Buildup", + ["id"] = "implicit.stat_1412682799", + ["text"] = "Used when you become Poisoned", ["type"] = "implicit", }, [160] = { - ["id"] = "implicit.stat_3627052716", - ["text"] = "#% of Lightning Damage Converted to Cold Damage", + ["id"] = "implicit.stat_3699444296", + ["text"] = "Used when you become Shocked", ["type"] = "implicit", }, [161] = { - ["id"] = "implicit.stat_1961849903", - ["text"] = "Cannot use Projectile Attacks", + ["id"] = "implicit.stat_1810482573", + ["text"] = "Used when you become Stunned", ["type"] = "implicit", }, [162] = { - ["id"] = "implicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "implicit.stat_4010341289", + ["text"] = "Used when you kill a Rare or Unique enemy", ["type"] = "implicit", }, [163] = { - ["id"] = "implicit.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", + ["id"] = "implicit.stat_3676540188", + ["text"] = "Used when you start Bleeding", ["type"] = "implicit", }, [164] = { - ["id"] = "implicit.stat_1451444093", - ["text"] = "Bifurcates Critical Hits", + ["id"] = "implicit.stat_3310778564", + ["text"] = "Used when you take Chaos damage from a Hit", ["type"] = "implicit", }, [165] = { - ["id"] = "implicit.stat_3544050945", - ["text"] = "#% of Spell Mana Cost Converted to Life Cost", + ["id"] = "implicit.stat_2994271459", + ["text"] = "Used when you take Cold damage from a Hit", ["type"] = "implicit", }, [166] = { - ["id"] = "implicit.stat_1137147997", - ["text"] = "Unblockable", + ["id"] = "implicit.stat_3854901951", + ["text"] = "Used when you take Fire damage from a Hit", ["type"] = "implicit", }, [167] = { - ["id"] = "implicit.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", + ["id"] = "implicit.stat_2016937536", + ["text"] = "Used when you take Lightning damage from a Hit", ["type"] = "implicit", }, [168] = { - ["id"] = "implicit.stat_3691641145", - ["text"] = "#% increased Damage taken", + ["id"] = "implicit.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", ["type"] = "implicit", }, }, @@ -15865,5463 +15869,5463 @@ return { [4] = { ["entries"] = { [1] = { - ["id"] = "fractured.stat_1754445556", - ["text"] = "Adds # to # Lightning damage to Attacks", + ["id"] = "fractured.stat_3325883026", + ["text"] = "# Life Regeneration per second", ["type"] = "fractured", }, [2] = { - ["id"] = "fractured.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "fractured.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", ["type"] = "fractured", }, [3] = { - ["id"] = "fractured.stat_518292764", - ["text"] = "#% to Critical Hit Chance", + ["id"] = "fractured.stat_803737631", + ["text"] = "# to Accuracy Rating", ["type"] = "fractured", }, [4] = { - ["id"] = "fractured.stat_3981240776", - ["text"] = "# to Spirit", + ["id"] = "fractured.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", ["type"] = "fractured", }, [5] = { - ["id"] = "fractured.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "fractured.stat_809229260", + ["text"] = "# to Armour", ["type"] = "fractured", }, [6] = { - ["id"] = "fractured.stat_1202301673", - ["text"] = "# to Level of all Projectile Skills", + ["id"] = "fractured.stat_3484657501", + ["text"] = "# to Armour (Local)", ["type"] = "fractured", }, [7] = { - ["id"] = "fractured.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "fractured.stat_3261801346", + ["text"] = "# to Dexterity", ["type"] = "fractured", }, [8] = { - ["id"] = "fractured.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "fractured.stat_2144192055", + ["text"] = "# to Evasion Rating", ["type"] = "fractured", }, [9] = { - ["id"] = "fractured.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "fractured.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", ["type"] = "fractured", }, [10] = { - ["id"] = "fractured.stat_124131830", - ["text"] = "# to Level of all Spell Skills", + ["id"] = "fractured.stat_328541901", + ["text"] = "# to Intelligence", ["type"] = "fractured", }, [11] = { - ["id"] = "fractured.stat_4052037485", - ["text"] = "# to maximum Energy Shield (Local)", + ["id"] = "fractured.stat_3035140377", + ["text"] = "# to Level of all Attack Skills", ["type"] = "fractured", }, [12] = { - ["id"] = "fractured.stat_4015621042", - ["text"] = "#% increased Energy Shield", + ["id"] = "fractured.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", ["type"] = "fractured", }, [13] = { - ["id"] = "fractured.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "fractured.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", ["type"] = "fractured", }, [14] = { - ["id"] = "fractured.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "fractured.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", ["type"] = "fractured", }, [15] = { - ["id"] = "fractured.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "fractured.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", ["type"] = "fractured", }, [16] = { - ["id"] = "fractured.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["id"] = "fractured.stat_9187492", + ["text"] = "# to Level of all Melee Skills", ["type"] = "fractured", }, [17] = { - ["id"] = "fractured.stat_1940865751", - ["text"] = "Adds # to # Physical Damage", + ["id"] = "fractured.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", ["type"] = "fractured", }, [18] = { - ["id"] = "fractured.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", + ["id"] = "fractured.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", ["type"] = "fractured", }, [19] = { - ["id"] = "fractured.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "fractured.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", ["type"] = "fractured", }, [20] = { - ["id"] = "fractured.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "fractured.stat_124131830", + ["text"] = "# to Level of all Spell Skills", ["type"] = "fractured", }, [21] = { - ["id"] = "fractured.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "fractured.stat_1181501418", + ["text"] = "# to Maximum Rage", ["type"] = "fractured", }, [22] = { - ["id"] = "fractured.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "fractured.stat_3981240776", + ["text"] = "# to Spirit", ["type"] = "fractured", }, [23] = { - ["id"] = "fractured.stat_9187492", - ["text"] = "# to Level of all Melee Skills", + ["id"] = "fractured.stat_4080418644", + ["text"] = "# to Strength", ["type"] = "fractured", }, [24] = { - ["id"] = "fractured.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", + ["id"] = "fractured.stat_915769802", + ["text"] = "# to Stun Threshold", ["type"] = "fractured", }, [25] = { - ["id"] = "fractured.stat_587431675", - ["text"] = "#% increased Critical Hit Chance", + ["id"] = "fractured.stat_1379411836", + ["text"] = "# to all Attributes", ["type"] = "fractured", }, [26] = { - ["id"] = "fractured.stat_328541901", - ["text"] = "# to Intelligence", + ["id"] = "fractured.stat_3489782002", + ["text"] = "# to maximum Energy Shield", ["type"] = "fractured", }, [27] = { - ["id"] = "fractured.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "fractured.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "fractured", }, [28] = { - ["id"] = "fractured.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "fractured.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "fractured", }, [29] = { - ["id"] = "fractured.stat_3891355829|2", - ["text"] = "Upgrades Radius to Large", + ["id"] = "fractured.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "fractured", }, [30] = { - ["id"] = "fractured.stat_691932474", - ["text"] = "# to Accuracy Rating (Local)", + ["id"] = "fractured.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", ["type"] = "fractured", }, [31] = { - ["id"] = "fractured.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", + ["id"] = "fractured.stat_1347539079", + ["text"] = "#% Surpassing chance to fire an additional Projectile", ["type"] = "fractured", }, [32] = { - ["id"] = "fractured.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", + ["id"] = "fractured.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", ["type"] = "fractured", }, [33] = { - ["id"] = "fractured.stat_53045048", - ["text"] = "# to Evasion Rating (Local)", + ["id"] = "fractured.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", ["type"] = "fractured", }, [34] = { - ["id"] = "fractured.stat_4067062424", - ["text"] = "Adds # to # Cold damage to Attacks", + ["id"] = "fractured.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", ["type"] = "fractured", }, [35] = { - ["id"] = "fractured.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", + ["id"] = "fractured.stat_795138349", + ["text"] = "#% chance to Poison on Hit", ["type"] = "fractured", }, [36] = { - ["id"] = "fractured.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", + ["id"] = "fractured.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", ["type"] = "fractured", }, [37] = { - ["id"] = "fractured.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["id"] = "fractured.stat_3749502527", + ["text"] = "#% chance to gain Volatility on Kill", ["type"] = "fractured", }, [38] = { - ["id"] = "fractured.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "fractured.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", ["type"] = "fractured", }, [39] = { - ["id"] = "fractured.stat_2081918629", - ["text"] = "#% increased effect of Socketed Augment Items", + ["id"] = "fractured.stat_1104825894", + ["text"] = "#% faster Curse Activation", ["type"] = "fractured", }, [40] = { - ["id"] = "fractured.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["id"] = "fractured.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "fractured", }, [41] = { - ["id"] = "fractured.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", + ["id"] = "fractured.stat_624954515", + ["text"] = "#% increased Accuracy Rating", ["type"] = "fractured", }, [42] = { - ["id"] = "fractured.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "fractured.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", ["type"] = "fractured", }, [43] = { - ["id"] = "fractured.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "fractured.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "fractured", }, [44] = { - ["id"] = "fractured.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "fractured.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", ["type"] = "fractured", }, [45] = { - ["id"] = "fractured.stat_3325883026", - ["text"] = "# Life Regeneration per second", + ["id"] = "fractured.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "fractured", }, [46] = { - ["id"] = "fractured.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "fractured.stat_1062208444", + ["text"] = "#% increased Armour (Local)", ["type"] = "fractured", }, [47] = { - ["id"] = "fractured.stat_3714003708", - ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["id"] = "fractured.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", ["type"] = "fractured", }, [48] = { - ["id"] = "fractured.stat_709508406", - ["text"] = "Adds # to # Fire Damage", + ["id"] = "fractured.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", ["type"] = "fractured", }, [49] = { - ["id"] = "fractured.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", + ["id"] = "fractured.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", ["type"] = "fractured", }, [50] = { - ["id"] = "fractured.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "fractured.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", ["type"] = "fractured", }, [51] = { - ["id"] = "fractured.stat_274716455", - ["text"] = "#% increased Critical Spell Damage Bonus", + ["id"] = "fractured.stat_2523933828", + ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "fractured", }, [52] = { - ["id"] = "fractured.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", + ["id"] = "fractured.stat_2843214518", + ["text"] = "#% increased Attack Damage", ["type"] = "fractured", }, [53] = { - ["id"] = "fractured.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", + ["id"] = "fractured.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "fractured", }, [54] = { - ["id"] = "fractured.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", + ["id"] = "fractured.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "fractured", }, [55] = { - ["id"] = "fractured.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", + ["id"] = "fractured.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", ["type"] = "fractured", }, [56] = { - ["id"] = "fractured.stat_1104825894", - ["text"] = "#% faster Curse Activation", + ["id"] = "fractured.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", ["type"] = "fractured", }, [57] = { - ["id"] = "fractured.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "fractured.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", ["type"] = "fractured", }, [58] = { - ["id"] = "fractured.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "fractured.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", ["type"] = "fractured", }, [59] = { - ["id"] = "fractured.stat_1379411836", - ["text"] = "# to all Attributes", + ["id"] = "fractured.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", ["type"] = "fractured", }, [60] = { - ["id"] = "fractured.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "fractured.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", ["type"] = "fractured", }, [61] = { - ["id"] = "fractured.stat_2359002191", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["id"] = "fractured.stat_1585769763", + ["text"] = "#% increased Blind Effect", ["type"] = "fractured", }, [62] = { - ["id"] = "fractured.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", + ["id"] = "fractured.stat_4147897060", + ["text"] = "#% increased Block chance", ["type"] = "fractured", }, [63] = { - ["id"] = "fractured.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", + ["id"] = "fractured.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", ["type"] = "fractured", }, [64] = { - ["id"] = "fractured.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["id"] = "fractured.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "fractured", }, [65] = { - ["id"] = "fractured.stat_3033371881", - ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["id"] = "fractured.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "fractured", }, [66] = { - ["id"] = "fractured.stat_3035140377", - ["text"] = "# to Level of all Attack Skills", + ["id"] = "fractured.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", ["type"] = "fractured", }, [67] = { - ["id"] = "fractured.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["id"] = "fractured.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", ["type"] = "fractured", }, [68] = { - ["id"] = "fractured.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "fractured.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", ["type"] = "fractured", }, [69] = { - ["id"] = "fractured.stat_2144192055", - ["text"] = "# to Evasion Rating", + ["id"] = "fractured.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "fractured", }, [70] = { - ["id"] = "fractured.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["id"] = "fractured.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "fractured", }, [71] = { - ["id"] = "fractured.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["id"] = "fractured.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", ["type"] = "fractured", }, [72] = { - ["id"] = "fractured.stat_3984865854", - ["text"] = "#% increased Spirit", + ["id"] = "fractured.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", ["type"] = "fractured", }, [73] = { - ["id"] = "fractured.stat_915769802", - ["text"] = "# to Stun Threshold", + ["id"] = "fractured.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", ["type"] = "fractured", }, [74] = { - ["id"] = "fractured.stat_4234573345", - ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["id"] = "fractured.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", ["type"] = "fractured", }, [75] = { - ["id"] = "fractured.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + ["id"] = "fractured.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", ["type"] = "fractured", }, [76] = { - ["id"] = "fractured.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "fractured.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "fractured", }, [77] = { - ["id"] = "fractured.stat_669069897", - ["text"] = "Leeches #% of Physical Damage as Mana", + ["id"] = "fractured.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", ["type"] = "fractured", }, [78] = { - ["id"] = "fractured.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", + ["id"] = "fractured.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", ["type"] = "fractured", }, [79] = { - ["id"] = "fractured.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "fractured.stat_3824372849", + ["text"] = "#% increased Curse Duration", ["type"] = "fractured", }, [80] = { - ["id"] = "fractured.stat_55876295", - ["text"] = "Leeches #% of Physical Damage as Life", + ["id"] = "fractured.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", ["type"] = "fractured", }, [81] = { - ["id"] = "fractured.stat_2077117738", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["id"] = "fractured.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", ["type"] = "fractured", }, [82] = { - ["id"] = "fractured.stat_2466785537", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["id"] = "fractured.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", ["type"] = "fractured", }, [83] = { - ["id"] = "fractured.stat_1241625305", - ["text"] = "#% increased Damage with Bow Skills", + ["id"] = "fractured.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", ["type"] = "fractured", }, [84] = { - ["id"] = "fractured.stat_1062208444", - ["text"] = "#% increased Armour (Local)", + ["id"] = "fractured.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", ["type"] = "fractured", }, [85] = { - ["id"] = "fractured.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["id"] = "fractured.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", ["type"] = "fractured", }, [86] = { - ["id"] = "fractured.stat_1200678966", - ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["id"] = "fractured.stat_4188894176", + ["text"] = "#% increased Damage with Bows", ["type"] = "fractured", }, [87] = { - ["id"] = "fractured.stat_3484657501", - ["text"] = "# to Armour (Local)", + ["id"] = "fractured.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", ["type"] = "fractured", }, [88] = { - ["id"] = "fractured.stat_2557965901", - ["text"] = "Leech #% of Physical Attack Damage as Life", + ["id"] = "fractured.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "fractured", }, [89] = { - ["id"] = "fractured.stat_1352561456", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["id"] = "fractured.stat_1181419800", + ["text"] = "#% increased Damage with Maces", ["type"] = "fractured", }, [90] = { - ["id"] = "fractured.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "fractured.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", ["type"] = "fractured", }, [91] = { - ["id"] = "fractured.stat_2456523742", - ["text"] = "#% increased Critical Damage Bonus with Spears", + ["id"] = "fractured.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", ["type"] = "fractured", }, [92] = { - ["id"] = "fractured.stat_3865605585", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["id"] = "fractured.stat_2696027455", + ["text"] = "#% increased Damage with Spears", ["type"] = "fractured", }, [93] = { - ["id"] = "fractured.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", + ["id"] = "fractured.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", ["type"] = "fractured", }, [94] = { - ["id"] = "fractured.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["id"] = "fractured.stat_4139681126", + ["text"] = "#% increased Dexterity", ["type"] = "fractured", }, [95] = { - ["id"] = "fractured.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "fractured.stat_1692879867", + ["text"] = "#% increased Duration of Bleeding on You", ["type"] = "fractured", }, [96] = { - ["id"] = "fractured.stat_153777645", - ["text"] = "#% increased Area of Effect of Curses", + ["id"] = "fractured.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", ["type"] = "fractured", }, [97] = { - ["id"] = "fractured.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["id"] = "fractured.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "fractured", }, [98] = { - ["id"] = "fractured.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", + ["id"] = "fractured.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", ["type"] = "fractured", }, [99] = { - ["id"] = "fractured.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", + ["id"] = "fractured.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", ["type"] = "fractured", }, [100] = { - ["id"] = "fractured.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", + ["id"] = "fractured.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", ["type"] = "fractured", }, [101] = { - ["id"] = "fractured.stat_1881230714", - ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["id"] = "fractured.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", ["type"] = "fractured", }, [102] = { - ["id"] = "fractured.stat_1060572482", - ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["id"] = "fractured.stat_3141070085", + ["text"] = "#% increased Elemental Damage", ["type"] = "fractured", }, [103] = { - ["id"] = "fractured.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", + ["id"] = "fractured.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", ["type"] = "fractured", }, [104] = { - ["id"] = "fractured.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", + ["id"] = "fractured.stat_4015621042", + ["text"] = "#% increased Energy Shield", ["type"] = "fractured", }, [105] = { - ["id"] = "fractured.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["id"] = "fractured.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "fractured", }, [106] = { - ["id"] = "fractured.stat_4180952808", - ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + ["id"] = "fractured.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", ["type"] = "fractured", }, [107] = { - ["id"] = "fractured.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", + ["id"] = "fractured.stat_2106365538", + ["text"] = "#% increased Evasion Rating", ["type"] = "fractured", }, [108] = { - ["id"] = "fractured.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "fractured.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "fractured", }, [109] = { - ["id"] = "fractured.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", + ["id"] = "fractured.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "fractured", }, [110] = { - ["id"] = "fractured.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "fractured.stat_57434274", + ["text"] = "#% increased Experience gain", ["type"] = "fractured", }, [111] = { - ["id"] = "fractured.stat_1967051901", - ["text"] = "Loads an additional bolt", + ["id"] = "fractured.stat_57434274", + ["text"] = "#% increased Experience gain in your Maps", ["type"] = "fractured", }, [112] = { - ["id"] = "fractured.stat_1854213750", - ["text"] = "Minions have #% increased Critical Damage Bonus", + ["id"] = "fractured.stat_1972391381", + ["text"] = "#% increased Explicit Resistance Modifier magnitudes", ["type"] = "fractured", }, [113] = { - ["id"] = "fractured.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", + ["id"] = "fractured.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "fractured", }, [114] = { - ["id"] = "fractured.stat_3665922113", - ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["id"] = "fractured.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", ["type"] = "fractured", }, [115] = { - ["id"] = "fractured.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", + ["id"] = "fractured.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", ["type"] = "fractured", }, [116] = { - ["id"] = "fractured.stat_440490623", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["id"] = "fractured.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", ["type"] = "fractured", }, [117] = { - ["id"] = "fractured.stat_1604736568", - ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["id"] = "fractured.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", ["type"] = "fractured", }, [118] = { - ["id"] = "fractured.stat_2843214518", - ["text"] = "#% increased Attack Damage", + ["id"] = "fractured.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", ["type"] = "fractured", }, [119] = { - ["id"] = "fractured.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", + ["id"] = "fractured.stat_473429811", + ["text"] = "#% increased Freeze Buildup", ["type"] = "fractured", }, [120] = { - ["id"] = "fractured.stat_1177404658", - ["text"] = "#% increased Global Armour, Evasion and Energy Shield", + ["id"] = "fractured.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", ["type"] = "fractured", }, [121] = { - ["id"] = "fractured.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", + ["id"] = "fractured.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", ["type"] = "fractured", }, [122] = { - ["id"] = "fractured.stat_3891355829|1", - ["text"] = "Upgrades Radius to Medium", + ["id"] = "fractured.stat_1177404658", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield", ["type"] = "fractured", }, [123] = { - ["id"] = "fractured.stat_1839076647", - ["text"] = "#% increased Projectile Damage", + ["id"] = "fractured.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", ["type"] = "fractured", }, [124] = { - ["id"] = "fractured.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", + ["id"] = "fractured.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", ["type"] = "fractured", }, [125] = { - ["id"] = "fractured.stat_3222402650", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["id"] = "fractured.stat_1276056105", + ["text"] = "#% increased Gold found in this Area (Gold Piles)", ["type"] = "fractured", }, [126] = { - ["id"] = "fractured.stat_748522257", - ["text"] = "#% increased Stun Duration", + ["id"] = "fractured.stat_1276056105", + ["text"] = "#% increased Gold found in your Maps (Gold Piles)", ["type"] = "fractured", }, [127] = { - ["id"] = "fractured.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["id"] = "fractured.stat_1697951953", + ["text"] = "#% increased Hazard Damage", ["type"] = "fractured", }, [128] = { - ["id"] = "fractured.stat_844449513", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["id"] = "fractured.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", ["type"] = "fractured", }, [129] = { - ["id"] = "fractured.stat_491450213", - ["text"] = "Minions have #% increased Critical Hit Chance", + ["id"] = "fractured.stat_656461285", + ["text"] = "#% increased Intelligence", ["type"] = "fractured", }, [130] = { - ["id"] = "fractured.stat_293638271", - ["text"] = "#% increased chance to Shock", + ["id"] = "fractured.stat_565784293", + ["text"] = "#% increased Knockback Distance", ["type"] = "fractured", }, [131] = { - ["id"] = "fractured.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", + ["id"] = "fractured.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", ["type"] = "fractured", }, [132] = { - ["id"] = "fractured.stat_1653682082", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["id"] = "fractured.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", ["type"] = "fractured", }, [133] = { - ["id"] = "fractured.stat_138421180", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["id"] = "fractured.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", ["type"] = "fractured", }, [134] = { - ["id"] = "fractured.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", + ["id"] = "fractured.stat_1263695895", + ["text"] = "#% increased Light Radius", ["type"] = "fractured", }, [135] = { - ["id"] = "fractured.stat_1303248024", - ["text"] = "#% increased Magnitude of Ailments you inflict", + ["id"] = "fractured.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "fractured", }, [136] = { - ["id"] = "fractured.stat_2704905000", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["id"] = "fractured.stat_3873704640", + ["text"] = "#% increased Magic Monsters", ["type"] = "fractured", }, [137] = { - ["id"] = "fractured.stat_3579898587", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["id"] = "fractured.stat_1714706956", + ["text"] = "#% increased Magic Pack Size", ["type"] = "fractured", }, [138] = { - ["id"] = "fractured.stat_1137305356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["id"] = "fractured.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", ["type"] = "fractured", }, [139] = { - ["id"] = "fractured.stat_4092130601", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["id"] = "fractured.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", ["type"] = "fractured", }, [140] = { - ["id"] = "fractured.stat_2768835289", - ["text"] = "#% increased Spell Physical Damage", + ["id"] = "fractured.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "fractured", }, [141] = { - ["id"] = "fractured.stat_2696027455", - ["text"] = "#% increased Damage with Spears", + ["id"] = "fractured.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", ["type"] = "fractured", }, [142] = { - ["id"] = "fractured.stat_3067892458", - ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["id"] = "fractured.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", ["type"] = "fractured", }, [143] = { - ["id"] = "fractured.stat_1321104829", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["id"] = "fractured.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", ["type"] = "fractured", }, [144] = { - ["id"] = "fractured.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", + ["id"] = "fractured.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", ["type"] = "fractured", }, [145] = { - ["id"] = "fractured.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["id"] = "fractured.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", ["type"] = "fractured", }, [146] = { - ["id"] = "fractured.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", + ["id"] = "fractured.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "fractured", }, [147] = { - ["id"] = "fractured.stat_4188894176", - ["text"] = "#% increased Damage with Bows", + ["id"] = "fractured.stat_1002362373", + ["text"] = "#% increased Melee Damage", ["type"] = "fractured", }, [148] = { - ["id"] = "fractured.stat_4019237939", - ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["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_455816363", - ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["id"] = "fractured.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", ["type"] = "fractured", }, [150] = { - ["id"] = "fractured.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["id"] = "fractured.stat_1913583994", + ["text"] = "#% increased Monster Attack Speed", ["type"] = "fractured", }, [151] = { - ["id"] = "fractured.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", + ["id"] = "fractured.stat_2488361432", + ["text"] = "#% increased Monster Cast Speed", ["type"] = "fractured", }, [152] = { - ["id"] = "fractured.stat_2881298780", - ["text"] = "# to # Physical Thorns damage", + ["id"] = "fractured.stat_1890519597", + ["text"] = "#% increased Monster Damage", ["type"] = "fractured", }, [153] = { - ["id"] = "fractured.stat_1022759479", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["id"] = "fractured.stat_2306522833", + ["text"] = "#% increased Monster Movement Speed", ["type"] = "fractured", }, [154] = { - ["id"] = "fractured.stat_3859848445", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["id"] = "fractured.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "fractured", }, [155] = { - ["id"] = "fractured.stat_3850614073", - ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["id"] = "fractured.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", ["type"] = "fractured", }, [156] = { - ["id"] = "fractured.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", + ["id"] = "fractured.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", ["type"] = "fractured", }, [157] = { - ["id"] = "fractured.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", + ["id"] = "fractured.stat_1569159338", + ["text"] = "#% increased Parry Damage", ["type"] = "fractured", }, [158] = { - ["id"] = "fractured.stat_99927264", - ["text"] = "#% reduced Shock duration on you", + ["id"] = "fractured.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "fractured", }, [159] = { - ["id"] = "fractured.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", + ["id"] = "fractured.stat_3473929743", + ["text"] = "#% increased Pin Buildup", ["type"] = "fractured", }, [160] = { - ["id"] = "fractured.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["id"] = "fractured.stat_2011656677", + ["text"] = "#% increased Poison Duration", ["type"] = "fractured", }, [161] = { - ["id"] = "fractured.stat_315791320", - ["text"] = "Aura Skills have #% increased Magnitudes", + ["id"] = "fractured.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", ["type"] = "fractured", }, [162] = { - ["id"] = "fractured.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", + ["id"] = "fractured.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", ["type"] = "fractured", }, [163] = { - ["id"] = "fractured.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", + ["id"] = "fractured.stat_1839076647", + ["text"] = "#% increased Projectile Damage", ["type"] = "fractured", }, [164] = { - ["id"] = "fractured.stat_1896066427", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["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_3391917254", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["id"] = "fractured.stat_3759663284", + ["text"] = "#% increased Projectile Speed", ["type"] = "fractured", }, [166] = { - ["id"] = "fractured.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["id"] = "fractured.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "fractured", }, [167] = { - ["id"] = "fractured.stat_1426522529", - ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["id"] = "fractured.stat_3793155082", + ["text"] = "#% increased Rare Monsters", ["type"] = "fractured", }, [168] = { - ["id"] = "fractured.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["id"] = "fractured.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", ["type"] = "fractured", }, [169] = { - ["id"] = "fractured.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", + ["id"] = "fractured.stat_3668351662", + ["text"] = "#% increased Shock Duration", ["type"] = "fractured", }, [170] = { - ["id"] = "fractured.stat_1165163804", - ["text"] = "#% increased Attack Speed with Spears", + ["id"] = "fractured.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", ["type"] = "fractured", }, [171] = { - ["id"] = "fractured.stat_2768899959", - ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["id"] = "fractured.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", ["type"] = "fractured", }, [172] = { - ["id"] = "fractured.stat_2347036682", - ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["id"] = "fractured.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "fractured", }, [173] = { - ["id"] = "fractured.stat_473429811", - ["text"] = "#% increased Freeze Buildup", + ["id"] = "fractured.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "fractured", }, [174] = { - ["id"] = "fractured.stat_624954515", - ["text"] = "#% increased Accuracy Rating", + ["id"] = "fractured.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", ["type"] = "fractured", }, [175] = { - ["id"] = "fractured.stat_2854751904", - ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["id"] = "fractured.stat_3984865854", + ["text"] = "#% increased Spirit", ["type"] = "fractured", }, [176] = { - ["id"] = "fractured.stat_1692879867", - ["text"] = "#% increased Duration of Bleeding on You", + ["id"] = "fractured.stat_1416406066", + ["text"] = "#% increased Spirit", ["type"] = "fractured", }, [177] = { - ["id"] = "fractured.stat_3174700878", - ["text"] = "#% increased Energy Shield from Equipped Focus", + ["id"] = "fractured.stat_734614379", + ["text"] = "#% increased Strength", ["type"] = "fractured", }, [178] = { - ["id"] = "fractured.stat_1166140625", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["id"] = "fractured.stat_239367161", + ["text"] = "#% increased Stun Buildup", ["type"] = "fractured", }, [179] = { - ["id"] = "fractured.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["id"] = "fractured.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", ["type"] = "fractured", }, [180] = { - ["id"] = "fractured.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", + ["id"] = "fractured.stat_748522257", + ["text"] = "#% increased Stun Duration", ["type"] = "fractured", }, [181] = { - ["id"] = "fractured.stat_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["id"] = "fractured.stat_680068163", + ["text"] = "#% increased Stun Threshold", ["type"] = "fractured", }, [182] = { - ["id"] = "fractured.stat_849987426", - ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", + ["id"] = "fractured.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "fractured", }, [183] = { - ["id"] = "fractured.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["id"] = "fractured.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", ["type"] = "fractured", }, [184] = { - ["id"] = "fractured.stat_2822644689", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["id"] = "fractured.stat_1315743832", + ["text"] = "#% increased Thorns damage", ["type"] = "fractured", }, [185] = { - ["id"] = "fractured.stat_1309799717", - ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["id"] = "fractured.stat_3851254963", + ["text"] = "#% increased Totem Damage", ["type"] = "fractured", }, [186] = { - ["id"] = "fractured.stat_1874553720", - ["text"] = "#% reduced Chill Duration on you", + ["id"] = "fractured.stat_686254215", + ["text"] = "#% increased Totem Life", ["type"] = "fractured", }, [187] = { - ["id"] = "fractured.stat_2954360902", - ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["id"] = "fractured.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", ["type"] = "fractured", }, [188] = { - ["id"] = "fractured.stat_3824372849", - ["text"] = "#% increased Curse Duration", + ["id"] = "fractured.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", ["type"] = "fractured", }, [189] = { - ["id"] = "fractured.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["id"] = "fractured.stat_1316278494", + ["text"] = "#% increased Warcry Speed", ["type"] = "fractured", }, [190] = { - ["id"] = "fractured.stat_525523040", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["id"] = "fractured.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", ["type"] = "fractured", }, [191] = { - ["id"] = "fractured.stat_3668351662", - ["text"] = "#% increased Shock Duration", + ["id"] = "fractured.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", ["type"] = "fractured", }, [192] = { - ["id"] = "fractured.stat_1852872083", - ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["id"] = "fractured.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", ["type"] = "fractured", }, [193] = { - ["id"] = "fractured.stat_3106718406", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + ["id"] = "fractured.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", ["type"] = "fractured", }, [194] = { - ["id"] = "fractured.stat_2809428780", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["id"] = "fractured.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", ["type"] = "fractured", }, [195] = { - ["id"] = "fractured.stat_1039268420", - ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["id"] = "fractured.stat_293638271", + ["text"] = "#% increased chance to Shock", ["type"] = "fractured", }, [196] = { - ["id"] = "fractured.stat_427684353", - ["text"] = "#% increased Damage with Crossbows", + ["id"] = "fractured.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", ["type"] = "fractured", }, [197] = { - ["id"] = "fractured.stat_593241812", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["id"] = "fractured.stat_2081918629", + ["text"] = "#% increased effect of Socketed Augment Items", ["type"] = "fractured", }, [198] = { - ["id"] = "fractured.stat_533892981", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["id"] = "fractured.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "fractured", }, [199] = { - ["id"] = "fractured.stat_3301100256", - ["text"] = "#% increased Poison Duration on you", + ["id"] = "fractured.stat_983749596", + ["text"] = "#% increased maximum Life", ["type"] = "fractured", }, [200] = { - ["id"] = "fractured.stat_2442527254", - ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["id"] = "fractured.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "fractured", }, [201] = { - ["id"] = "fractured.stat_945774314", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["id"] = "fractured.stat_3796523155", + ["text"] = "#% less effect of Curses on Monsters", ["type"] = "fractured", }, [202] = { - ["id"] = "fractured.stat_335885735", - ["text"] = "Bears the Mark of the Abyssal Lord", + ["id"] = "fractured.stat_95249895", + ["text"] = "#% more Monster Life", ["type"] = "fractured", }, [203] = { - ["id"] = "fractured.stat_1829102168", - ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["id"] = "fractured.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "fractured", }, [204] = { - ["id"] = "fractured.stat_4032352472", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + ["id"] = "fractured.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", ["type"] = "fractured", }, [205] = { - ["id"] = "fractured.stat_517664839", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + ["id"] = "fractured.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "fractured", }, [206] = { - ["id"] = "fractured.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", + ["id"] = "fractured.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "fractured", }, [207] = { - ["id"] = "fractured.stat_4045894391", - ["text"] = "#% increased Damage with Quarterstaves", + ["id"] = "fractured.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "fractured", }, [208] = { - ["id"] = "fractured.stat_416040624", - ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["id"] = "fractured.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", ["type"] = "fractured", }, [209] = { - ["id"] = "fractured.stat_3394832998", - ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["id"] = "fractured.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", ["type"] = "fractured", }, [210] = { - ["id"] = "fractured.stat_394473632", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["id"] = "fractured.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", ["type"] = "fractured", }, [211] = { - ["id"] = "fractured.stat_3628935286", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + ["id"] = "fractured.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "fractured", }, [212] = { - ["id"] = "fractured.stat_2726713579", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["id"] = "fractured.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", ["type"] = "fractured", }, [213] = { - ["id"] = "fractured.stat_473917671", - ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["id"] = "fractured.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", ["type"] = "fractured", }, [214] = { - ["id"] = "fractured.stat_3225608889", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + ["id"] = "fractured.stat_644456512", + ["text"] = "#% reduced Flask Charges used", ["type"] = "fractured", }, [215] = { - ["id"] = "fractured.stat_2849546516", - ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["id"] = "fractured.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", ["type"] = "fractured", }, [216] = { - ["id"] = "fractured.stat_21071013", - ["text"] = "Herald Skills deal #% increased Damage", + ["id"] = "fractured.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", ["type"] = "fractured", }, [217] = { - ["id"] = "fractured.stat_234296660", - ["text"] = "Companions deal #% increased Damage", + ["id"] = "fractured.stat_99927264", + ["text"] = "#% reduced Shock duration on you", ["type"] = "fractured", }, [218] = { - ["id"] = "fractured.stat_3791899485", - ["text"] = "#% increased Ignite Magnitude", + ["id"] = "fractured.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "fractured", }, [219] = { - ["id"] = "fractured.stat_1135928777", - ["text"] = "#% increased Attack Speed with Crossbows", + ["id"] = "fractured.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "fractured", }, [220] = { - ["id"] = "fractured.stat_3256879910", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["id"] = "fractured.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", ["type"] = "fractured", }, [221] = { - ["id"] = "fractured.stat_3169585282", - ["text"] = "Allies in your Presence have # to Accuracy Rating", + ["id"] = "fractured.stat_518292764", + ["text"] = "#% to Critical Hit Chance", ["type"] = "fractured", }, [222] = { - ["id"] = "fractured.stat_2440073079", - ["text"] = "#% increased Damage while Shapeshifted", + ["id"] = "fractured.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "fractured", }, [223] = { - ["id"] = "fractured.stat_868556494", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["id"] = "fractured.stat_3399401168", + ["text"] = "#% to Fire Spell Critical Hit Chance", ["type"] = "fractured", }, [224] = { - ["id"] = "fractured.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", + ["id"] = "fractured.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "fractured", }, [225] = { - ["id"] = "fractured.stat_3787460122", - ["text"] = "Offerings have #% increased Maximum Life", + ["id"] = "fractured.stat_1301765461", + ["text"] = "#% to Maximum Chaos Resistance", ["type"] = "fractured", }, [226] = { - ["id"] = "fractured.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", + ["id"] = "fractured.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", ["type"] = "fractured", }, [227] = { - ["id"] = "fractured.stat_2954116742|50562", - ["text"] = "Allocates Barbaric Strength", + ["id"] = "fractured.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", ["type"] = "fractured", }, [228] = { - ["id"] = "fractured.stat_715957346", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["id"] = "fractured.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", ["type"] = "fractured", }, [229] = { - ["id"] = "fractured.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", + ["id"] = "fractured.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "fractured", }, [230] = { - ["id"] = "fractured.stat_3398301358", - ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["id"] = "fractured.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "fractured", }, [231] = { - ["id"] = "fractured.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["id"] = "fractured.stat_1054098949", + ["text"] = "+#% Monster Elemental Resistances", ["type"] = "fractured", }, [232] = { - ["id"] = "fractured.stat_1552666713", - ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["id"] = "fractured.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", ["type"] = "fractured", }, [233] = { - ["id"] = "fractured.stat_3669820740", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + ["id"] = "fractured.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", ["type"] = "fractured", }, [234] = { - ["id"] = "fractured.stat_2107703111", - ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["id"] = "fractured.stat_709508406", + ["text"] = "Adds # to # Fire Damage", ["type"] = "fractured", }, [235] = { - ["id"] = "fractured.stat_1994296038", - ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["id"] = "fractured.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", ["type"] = "fractured", }, [236] = { - ["id"] = "fractured.stat_2487305362", - ["text"] = "#% increased Magnitude of Poison you inflict", + ["id"] = "fractured.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "fractured", }, [237] = { - ["id"] = "fractured.stat_821948283", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + ["id"] = "fractured.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", ["type"] = "fractured", }, [238] = { - ["id"] = "fractured.stat_980177976", - ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["id"] = "fractured.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", ["type"] = "fractured", }, [239] = { - ["id"] = "fractured.stat_1805182458", - ["text"] = "Companions have #% increased maximum Life", + ["id"] = "fractured.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "fractured", }, [240] = { - ["id"] = "fractured.stat_3409275777", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["id"] = "fractured.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", ["type"] = "fractured", }, [241] = { - ["id"] = "fractured.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["id"] = "fractured.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", ["type"] = "fractured", }, [242] = { - ["id"] = "fractured.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", + ["id"] = "fractured.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", ["type"] = "fractured", }, [243] = { - ["id"] = "fractured.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", + ["id"] = "fractured.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", ["type"] = "fractured", }, [244] = { - ["id"] = "fractured.stat_2272980012", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["id"] = "fractured.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "fractured", }, [245] = { - ["id"] = "fractured.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", + ["id"] = "fractured.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "fractured", }, [246] = { - ["id"] = "fractured.stat_2840989393", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + ["id"] = "fractured.stat_3169585282", + ["text"] = "Allies in your Presence have # to Accuracy Rating", ["type"] = "fractured", }, [247] = { - ["id"] = "fractured.stat_809229260", - ["text"] = "# to Armour", + ["id"] = "fractured.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "fractured", }, [248] = { - ["id"] = "fractured.stat_3283482523", - ["text"] = "#% increased Attack Speed with Quarterstaves", + ["id"] = "fractured.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "fractured", }, [249] = { - ["id"] = "fractured.stat_1772247089", - ["text"] = "#% increased chance to inflict Ailments", + ["id"] = "fractured.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "fractured", }, [250] = { - ["id"] = "fractured.stat_1266413530", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["id"] = "fractured.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", ["type"] = "fractured", }, [251] = { - ["id"] = "fractured.stat_3641543553", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["id"] = "fractured.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", ["type"] = "fractured", }, [252] = { - ["id"] = "fractured.stat_3192728503", - ["text"] = "#% increased Crossbow Reload Speed", + ["id"] = "fractured.stat_2954116742|7338", + ["text"] = "Allocates Abasement", ["type"] = "fractured", }, [253] = { - ["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", + ["id"] = "fractured.stat_2954116742|43082", + ["text"] = "Allocates Acceleration", ["type"] = "fractured", }, [254] = { - ["id"] = "fractured.stat_1494950893", - ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["id"] = "fractured.stat_2954116742|12822", + ["text"] = "Allocates Adaptable Assault", ["type"] = "fractured", }, [255] = { - ["id"] = "fractured.stat_1087108135", - ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["id"] = "fractured.stat_2954116742|35876", + ["text"] = "Allocates Admonisher", ["type"] = "fractured", }, [256] = { - ["id"] = "fractured.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", + ["id"] = "fractured.stat_2954116742|17340", + ["text"] = "Allocates Adrenaline Rush", ["type"] = "fractured", }, [257] = { - ["id"] = "fractured.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", + ["id"] = "fractured.stat_2954116742|43829", + ["text"] = "Allocates Advanced Munitions", ["type"] = "fractured", }, [258] = { - ["id"] = "fractured.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["id"] = "fractured.stat_2954116742|4716", + ["text"] = "Allocates Afterimage", ["type"] = "fractured", }, [259] = { - ["id"] = "fractured.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", + ["id"] = "fractured.stat_2954116742|6655", + ["text"] = "Allocates Aggravation", ["type"] = "fractured", }, [260] = { - ["id"] = "fractured.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", + ["id"] = "fractured.stat_2954116742|8896", + ["text"] = "Allocates Agile Sprinter", ["type"] = "fractured", }, [261] = { - ["id"] = "fractured.stat_3419203492", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["id"] = "fractured.stat_2954116742|56493", + ["text"] = "Allocates Agile Succession", ["type"] = "fractured", }, [262] = { - ["id"] = "fractured.stat_3473929743", - ["text"] = "#% increased Pin Buildup", + ["id"] = "fractured.stat_2954116742|43088", + ["text"] = "Allocates Agonising Calamity", ["type"] = "fractured", }, [263] = { - ["id"] = "fractured.stat_2954116742|28975", - ["text"] = "Allocates Pure Power", + ["id"] = "fractured.stat_2954116742|58016", + ["text"] = "Allocates All Natural", ["type"] = "fractured", }, [264] = { - ["id"] = "fractured.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", + ["id"] = "fractured.stat_2954116742|23764", + ["text"] = "Allocates Alternating Current", ["type"] = "fractured", }, [265] = { - ["id"] = "fractured.stat_253641217", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["id"] = "fractured.stat_2954116742|2575", + ["text"] = "Allocates Ancestral Alacrity", ["type"] = "fractured", }, [266] = { - ["id"] = "fractured.stat_169946467", - ["text"] = "#% increased Accuracy Rating with Bows", + ["id"] = "fractured.stat_2954116742|51820", + ["text"] = "Allocates Ancestral Conduits", ["type"] = "fractured", }, [267] = { - ["id"] = "fractured.stat_2594634307", - ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["id"] = "fractured.stat_2954116742|62609", + ["text"] = "Allocates Ancestral Unity", ["type"] = "fractured", }, [268] = { - ["id"] = "fractured.stat_693237939", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["id"] = "fractured.stat_2954116742|5728", + ["text"] = "Allocates Ancient Aegis", ["type"] = "fractured", }, [269] = { - ["id"] = "fractured.stat_1697447343", - ["text"] = "#% increased Freeze Buildup with Quarterstaves", + ["id"] = "fractured.stat_2954116742|38398", + ["text"] = "Allocates Apocalypse", ["type"] = "fractured", }, [270] = { - ["id"] = "fractured.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", + ["id"] = "fractured.stat_2954116742|46224", + ["text"] = "Allocates Arcane Alchemy", ["type"] = "fractured", }, [271] = { - ["id"] = "fractured.stat_2839066308", - ["text"] = "#% increased amount of Mana Leeched", + ["id"] = "fractured.stat_2954116742|14324", + ["text"] = "Allocates Arcane Blossom", ["type"] = "fractured", }, [272] = { - ["id"] = "fractured.stat_3774951878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["id"] = "fractured.stat_2954116742|19044", + ["text"] = "Allocates Arcane Intensity", ["type"] = "fractured", }, [273] = { - ["id"] = "fractured.stat_1773308808", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["id"] = "fractured.stat_2954116742|46972", + ["text"] = "Allocates Arcane Mixtures", ["type"] = "fractured", }, [274] = { - ["id"] = "fractured.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", + ["id"] = "fractured.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", ["type"] = "fractured", }, [275] = { - ["id"] = "fractured.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", + ["id"] = "fractured.stat_2954116742|42045", + ["text"] = "Allocates Archon of the Blizzard", ["type"] = "fractured", }, [276] = { - ["id"] = "fractured.stat_830345042", - ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["id"] = "fractured.stat_2954116742|27434", + ["text"] = "Allocates Archon of the Storm", ["type"] = "fractured", }, [277] = { - ["id"] = "fractured.stat_111835965", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + ["id"] = "fractured.stat_2954116742|12661", + ["text"] = "Allocates Asceticism", ["type"] = "fractured", }, [278] = { - ["id"] = "fractured.stat_462424929", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["id"] = "fractured.stat_2954116742|27388", + ["text"] = "Allocates Aspiring Genius", ["type"] = "fractured", }, [279] = { - ["id"] = "fractured.stat_255840549", - ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["id"] = "fractured.stat_2954116742|35560", + ["text"] = "Allocates At your Command", ["type"] = "fractured", }, [280] = { - ["id"] = "fractured.stat_4215035940", - ["text"] = "On Corruption, Item gains two Enchantments", + ["id"] = "fractured.stat_2954116742|20397", + ["text"] = "Allocates Authority", ["type"] = "fractured", }, [281] = { - ["id"] = "fractured.stat_2969557004", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["id"] = "fractured.stat_2954116742|50673", + ["text"] = "Allocates Avoiding Deflection", ["type"] = "fractured", }, [282] = { - ["id"] = "fractured.stat_1714971114", - ["text"] = "Mark Skills have #% increased Use Speed", + ["id"] = "fractured.stat_2954116742|33059", + ["text"] = "Allocates Back in Action", ["type"] = "fractured", }, [283] = { - ["id"] = "fractured.stat_3700202631", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + ["id"] = "fractured.stat_2954116742|53853", + ["text"] = "Allocates Backup Plan", ["type"] = "fractured", }, [284] = { - ["id"] = "fractured.stat_656461285", - ["text"] = "#% increased Intelligence", + ["id"] = "fractured.stat_2954116742|50562", + ["text"] = "Allocates Barbaric Strength", ["type"] = "fractured", }, [285] = { - ["id"] = "fractured.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", + ["id"] = "fractured.stat_2954116742|50062", + ["text"] = "Allocates Barrier of Venarius", ["type"] = "fractured", }, [286] = { - ["id"] = "fractured.stat_1697951953", - ["text"] = "#% increased Hazard Damage", + ["id"] = "fractured.stat_2954116742|64240", + ["text"] = "Allocates Battle Fever", ["type"] = "fractured", }, [287] = { - ["id"] = "fractured.stat_2954116742|57388", - ["text"] = "Allocates Overwhelming Strike", + ["id"] = "fractured.stat_2954116742|37276", + ["text"] = "Allocates Battle Trance", ["type"] = "fractured", }, [288] = { - ["id"] = "fractured.stat_3513818125", - ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["id"] = "fractured.stat_2954116742|59720", + ["text"] = "Allocates Beastial Skin", ["type"] = "fractured", }, [289] = { - ["id"] = "fractured.stat_2954116742|7809", - ["text"] = "Allocates Wild Storm", + ["id"] = "fractured.stat_2954116742|25482", + ["text"] = "Allocates Beef", ["type"] = "fractured", }, [290] = { - ["id"] = "fractured.stat_1777421941", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["id"] = "fractured.stat_2954116742|5642", + ["text"] = "Allocates Behemoth", ["type"] = "fractured", }, [291] = { - ["id"] = "fractured.stat_3113764475", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["id"] = "fractured.stat_2954116742|10873", + ["text"] = "Allocates Bestial Rage", ["type"] = "fractured", }, [292] = { - ["id"] = "fractured.stat_2638756573", - ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + ["id"] = "fractured.stat_2954116742|17029", + ["text"] = "Allocates Blade Catcher", ["type"] = "fractured", }, [293] = { - ["id"] = "fractured.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "fractured.stat_2954116742|2394", + ["text"] = "Allocates Blade Flurry", ["type"] = "fractured", }, [294] = { - ["id"] = "fractured.stat_627767961", - ["text"] = "#% increased Damage while you have an active Charm", + ["id"] = "fractured.stat_2954116742|18308", + ["text"] = "Allocates Bleeding Out", ["type"] = "fractured", }, [295] = { - ["id"] = "fractured.stat_61644361", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["id"] = "fractured.stat_2954116742|42354", + ["text"] = "Allocates Blinding Flash", ["type"] = "fractured", }, [296] = { - ["id"] = "fractured.stat_2954116742|55193", - ["text"] = "Allocates Subterfuge Mask", + ["id"] = "fractured.stat_2954116742|20916", + ["text"] = "Allocates Blinding Strike", ["type"] = "fractured", }, [297] = { - ["id"] = "fractured.stat_1185341308", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["id"] = "fractured.stat_2954116742|39083", + ["text"] = "Allocates Blood Rush", ["type"] = "fractured", }, [298] = { - ["id"] = "fractured.stat_538241406", - ["text"] = "Damaging Ailments deal damage #% faster", + ["id"] = "fractured.stat_2954116742|58183", + ["text"] = "Allocates Blood Tearing", ["type"] = "fractured", }, [299] = { - ["id"] = "fractured.stat_2202308025", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["id"] = "fractured.stat_2954116742|48524", + ["text"] = "Allocates Blood Transfusion", ["type"] = "fractured", }, [300] = { - ["id"] = "fractured.stat_3028809864", - ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["id"] = "fractured.stat_2954116742|35792", + ["text"] = "Allocates Blood of Rage", ["type"] = "fractured", }, [301] = { - ["id"] = "fractured.stat_3856744003", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["id"] = "fractured.stat_2954116742|54990", + ["text"] = "Allocates Bloodletting", ["type"] = "fractured", }, [302] = { - ["id"] = "fractured.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["id"] = "fractured.stat_2954116742|42177", + ["text"] = "Allocates Blurred Motion", ["type"] = "fractured", }, [303] = { - ["id"] = "fractured.stat_3752589831", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["id"] = "fractured.stat_2954116742|26070", + ["text"] = "Allocates Bolstering Yell", ["type"] = "fractured", }, [304] = { - ["id"] = "fractured.stat_1590846356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + ["id"] = "fractured.stat_2954116742|17725", + ["text"] = "Allocates Bonded Precision", ["type"] = "fractured", }, [305] = { - ["id"] = "fractured.stat_734614379", - ["text"] = "#% increased Strength", + ["id"] = "fractured.stat_2954116742|52618", + ["text"] = "Allocates Boon of the Beast", ["type"] = "fractured", }, [306] = { - ["id"] = "fractured.stat_1087531620", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["id"] = "fractured.stat_2954116742|15114", + ["text"] = "Allocates Boundless Growth", ["type"] = "fractured", }, [307] = { - ["id"] = "fractured.stat_1323216174", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["id"] = "fractured.stat_2954116742|23244", + ["text"] = "Allocates Bounty Hunter", ["type"] = "fractured", }, [308] = { - ["id"] = "fractured.stat_147764878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + ["id"] = "fractured.stat_2954116742|37806", + ["text"] = "Allocates Branching Bolts", ["type"] = "fractured", }, [309] = { - ["id"] = "fractured.stat_1062710370", - ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["id"] = "fractured.stat_2954116742|21453", + ["text"] = "Allocates Breakage", ["type"] = "fractured", }, [310] = { - ["id"] = "fractured.stat_4162678661", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["id"] = "fractured.stat_2954116742|39347", + ["text"] = "Allocates Breaking Blows", ["type"] = "fractured", }, [311] = { - ["id"] = "fractured.stat_1846980580", - ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["id"] = "fractured.stat_2954116742|7777", + ["text"] = "Allocates Breaking Point", ["type"] = "fractured", }, [312] = { - ["id"] = "fractured.stat_3173882956", - ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["id"] = "fractured.stat_2954116742|24655", + ["text"] = "Allocates Breath of Fire", ["type"] = "fractured", }, [313] = { - ["id"] = "fractured.stat_412709880", - ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + ["id"] = "fractured.stat_2954116742|18086", + ["text"] = "Allocates Breath of Ice", ["type"] = "fractured", }, [314] = { - ["id"] = "fractured.stat_2954116742|39881", - ["text"] = "Allocates Staggering Palm", + ["id"] = "fractured.stat_2954116742|61338", + ["text"] = "Allocates Breath of Lightning", ["type"] = "fractured", }, [315] = { - ["id"] = "fractured.stat_2954116742|27303", - ["text"] = "Allocates Vulgar Methods", + ["id"] = "fractured.stat_2954116742|48565", + ["text"] = "Allocates Bringer of Order", ["type"] = "fractured", }, [316] = { - ["id"] = "fractured.stat_918325986", - ["text"] = "#% increased Skill Speed while Shapeshifted", + ["id"] = "fractured.stat_2954116742|53935", + ["text"] = "Allocates Briny Carapace", ["type"] = "fractured", }, [317] = { - ["id"] = "fractured.stat_793875384", - ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", + ["id"] = "fractured.stat_2954116742|50392", + ["text"] = "Allocates Brute Strength", ["type"] = "fractured", }, [318] = { - ["id"] = "fractured.stat_2320654813", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["id"] = "fractured.stat_2954116742|15986", + ["text"] = "Allocates Building Toxins", ["type"] = "fractured", }, [319] = { - ["id"] = "fractured.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", + ["id"] = "fractured.stat_2954116742|53294", + ["text"] = "Allocates Burn Away", ["type"] = "fractured", }, [320] = { - ["id"] = "fractured.stat_221701169", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["id"] = "fractured.stat_2954116742|8554", + ["text"] = "Allocates Burning Nature", ["type"] = "fractured", }, [321] = { - ["id"] = "fractured.stat_2954116742|22864", - ["text"] = "Allocates Tainted Strike", + ["id"] = "fractured.stat_2954116742|6544", + ["text"] = "Allocates Burning Strikes", ["type"] = "fractured", }, [322] = { - ["id"] = "fractured.stat_1337740333", - ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["id"] = "fractured.stat_2954116742|50795", + ["text"] = "Allocates Careful Aim", ["type"] = "fractured", }, [323] = { - ["id"] = "fractured.stat_1944020877", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["id"] = "fractured.stat_2954116742|46197", + ["text"] = "Allocates Careful Assassin", ["type"] = "fractured", }, [324] = { - ["id"] = "fractured.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["id"] = "fractured.stat_2954116742|17955", + ["text"] = "Allocates Careful Consideration", ["type"] = "fractured", }, [325] = { - ["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", + ["id"] = "fractured.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", ["type"] = "fractured", }, [326] = { - ["id"] = "fractured.stat_1569159338", - ["text"] = "#% increased Parry Damage", + ["id"] = "fractured.stat_2954116742|31433", + ["text"] = "Allocates Catalysis", ["type"] = "fractured", }, [327] = { - ["id"] = "fractured.stat_127081978", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["id"] = "fractured.stat_2954116742|9472", + ["text"] = "Allocates Catapult", ["type"] = "fractured", }, [328] = { - ["id"] = "fractured.stat_2610562860", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + ["id"] = "fractured.stat_2954116742|32664", + ["text"] = "Allocates Chakra of Breathing", ["type"] = "fractured", }, [329] = { - ["id"] = "fractured.stat_654207792", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + ["id"] = "fractured.stat_2954116742|63400", + ["text"] = "Allocates Chakra of Elements", ["type"] = "fractured", }, [330] = { - ["id"] = "fractured.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", + ["id"] = "fractured.stat_2954116742|25362", + ["text"] = "Allocates Chakra of Impact", ["type"] = "fractured", }, [331] = { - ["id"] = "fractured.stat_2118708619", - ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["id"] = "fractured.stat_2954116742|35031", + ["text"] = "Allocates Chakra of Life", ["type"] = "fractured", }, [332] = { - ["id"] = "fractured.stat_2954116742|38535", - ["text"] = "Allocates Stormcharged", + ["id"] = "fractured.stat_2954116742|28963", + ["text"] = "Allocates Chakra of Rhythm", ["type"] = "fractured", }, [333] = { - ["id"] = "fractured.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["id"] = "fractured.stat_2954116742|42347", + ["text"] = "Allocates Chakra of Sight", ["type"] = "fractured", }, [334] = { - ["id"] = "fractured.stat_4258720395", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + ["id"] = "fractured.stat_2954116742|29306", + ["text"] = "Allocates Chakra of Thought", ["type"] = "fractured", }, [335] = { - ["id"] = "fractured.stat_2954116742|26107", - ["text"] = "Allocates Kite Runner", + ["id"] = "fractured.stat_2954116742|5410", + ["text"] = "Allocates Channelled Heritage", ["type"] = "fractured", }, [336] = { - ["id"] = "fractured.stat_266564538", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + ["id"] = "fractured.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", ["type"] = "fractured", }, [337] = { - ["id"] = "fractured.stat_1417267954", - ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["id"] = "fractured.stat_2954116742|39990", + ["text"] = "Allocates Chronomancy", ["type"] = "fractured", }, [338] = { - ["id"] = "fractured.stat_3749502527", - ["text"] = "#% chance to gain Volatility on Kill", + ["id"] = "fractured.stat_2954116742|57805", + ["text"] = "Allocates Clear Space", ["type"] = "fractured", }, [339] = { - ["id"] = "fractured.stat_4101445926", - ["text"] = "#% increased Mana Cost Efficiency", + ["id"] = "fractured.stat_2954116742|4627", + ["text"] = "Allocates Climate Change", ["type"] = "fractured", }, [340] = { - ["id"] = "fractured.stat_2954116742|31172", - ["text"] = "Allocates Falcon Technique", + ["id"] = "fractured.stat_2954116742|38479", + ["text"] = "Allocates Close Confines", ["type"] = "fractured", }, [341] = { - ["id"] = "fractured.stat_2256120736", - ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["id"] = "fractured.stat_2954116742|29514", + ["text"] = "Allocates Cluster Bombs", ["type"] = "fractured", }, [342] = { - ["id"] = "fractured.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", + ["id"] = "fractured.stat_2954116742|44330", + ["text"] = "Allocates Coated Arms", ["type"] = "fractured", }, [343] = { - ["id"] = "fractured.stat_2954116742|56265", - ["text"] = "Allocates Throatseeker", + ["id"] = "fractured.stat_2954116742|35618", + ["text"] = "Allocates Cold Coat", ["type"] = "fractured", }, [344] = { - ["id"] = "fractured.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", + ["id"] = "fractured.stat_2954116742|26518", + ["text"] = "Allocates Cold Nature", ["type"] = "fractured", }, [345] = { - ["id"] = "fractured.stat_2954116742|62230", - ["text"] = "Allocates Patient Barrier", + ["id"] = "fractured.stat_2954116742|47363", + ["text"] = "Allocates Colossal Weapon", ["type"] = "fractured", }, [346] = { - ["id"] = "fractured.stat_1405298142", - ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["id"] = "fractured.stat_2954116742|28044", + ["text"] = "Allocates Coming Calamity", ["type"] = "fractured", }, [347] = { - ["id"] = "fractured.stat_3596695232", - ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["id"] = "fractured.stat_2954116742|36931", + ["text"] = "Allocates Concussive Attack", ["type"] = "fractured", }, [348] = { - ["id"] = "fractured.stat_3666476747", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + ["id"] = "fractured.stat_2954116742|34300", + ["text"] = "Allocates Conservative Casting", ["type"] = "fractured", }, [349] = { - ["id"] = "fractured.stat_2954116742|30132", - ["text"] = "Allocates Wrapped Quiver", + ["id"] = "fractured.stat_2954116742|15030", + ["text"] = "Allocates Consistent Intake", ["type"] = "fractured", }, [350] = { - ["id"] = "fractured.stat_2770044702", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["id"] = "fractured.stat_2954116742|54640", + ["text"] = "Allocates Constricting", ["type"] = "fractured", }, [351] = { - ["id"] = "fractured.stat_391602279", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["id"] = "fractured.stat_2954116742|13823", + ["text"] = "Allocates Controlling Magic", ["type"] = "fractured", }, [352] = { - ["id"] = "fractured.stat_2523933828", - ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["id"] = "fractured.stat_2954116742|36623", + ["text"] = "Allocates Convalescence", ["type"] = "fractured", }, [353] = { - ["id"] = "fractured.stat_3146310524", - ["text"] = "Dazes on Hit", + ["id"] = "fractured.stat_2954116742|56776", + ["text"] = "Allocates Cooked", ["type"] = "fractured", }, [354] = { - ["id"] = "fractured.stat_2954116742|56776", - ["text"] = "Allocates Cooked", + ["id"] = "fractured.stat_2954116742|6133", + ["text"] = "Allocates Core of the Guardian", ["type"] = "fractured", }, [355] = { - ["id"] = "fractured.stat_3837707023", - ["text"] = "Minions have #% to Chaos Resistance", + ["id"] = "fractured.stat_2954116742|50687", + ["text"] = "Allocates Coursing Energy", ["type"] = "fractured", }, [356] = { - ["id"] = "fractured.stat_2108821127", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["id"] = "fractured.stat_2954116742|19715", + ["text"] = "Allocates Cremation", ["type"] = "fractured", }, [357] = { - ["id"] = "fractured.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", + ["id"] = "fractured.stat_2954116742|43677", + ["text"] = "Allocates Crippling Toxins", ["type"] = "fractured", }, [358] = { - ["id"] = "fractured.stat_2954116742|60034", - ["text"] = "Allocates Falcon Dive", + ["id"] = "fractured.stat_2954116742|57204", + ["text"] = "Allocates Critical Exploit", ["type"] = "fractured", }, [359] = { - ["id"] = "fractured.stat_3243034867", - ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", + ["id"] = "fractured.stat_2954116742|45488", + ["text"] = "Allocates Cross Strike", ["type"] = "fractured", }, [360] = { - ["id"] = "fractured.stat_2954116742|58016", - ["text"] = "Allocates All Natural", + ["id"] = "fractured.stat_2954116742|42981", + ["text"] = "Allocates Cruel Methods", ["type"] = "fractured", }, [361] = { - ["id"] = "fractured.stat_2580617872", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["id"] = "fractured.stat_2954116742|35739", + ["text"] = "Allocates Crushing Judgement", ["type"] = "fractured", }, [362] = { - ["id"] = "fractured.stat_2954116742|1546", - ["text"] = "Allocates Spiral into Depression", + ["id"] = "fractured.stat_2954116742|18505", + ["text"] = "Allocates Crushing Verdict", ["type"] = "fractured", }, [363] = { - ["id"] = "fractured.stat_3088348485", - ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["id"] = "fractured.stat_2954116742|38895", + ["text"] = "Allocates Crystal Elixir", ["type"] = "fractured", }, [364] = { - ["id"] = "fractured.stat_2954116742|19044", - ["text"] = "Allocates Arcane Intensity", + ["id"] = "fractured.stat_2954116742|61026", + ["text"] = "Allocates Crystalline Flesh", ["type"] = "fractured", }, [365] = { - ["id"] = "fractured.stat_179541474", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + ["id"] = "fractured.stat_2954116742|32151", + ["text"] = "Allocates Crystalline Resistance", ["type"] = "fractured", }, [366] = { - ["id"] = "fractured.stat_4139681126", - ["text"] = "#% increased Dexterity", + ["id"] = "fractured.stat_2954116742|5332", + ["text"] = "Allocates Crystallised Immunities", ["type"] = "fractured", }, [367] = { - ["id"] = "fractured.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "fractured.stat_2954116742|36341", + ["text"] = "Allocates Cull the Hordes", ["type"] = "fractured", }, [368] = { - ["id"] = "fractured.stat_3973629633", - ["text"] = "#% increased Withered Magnitude", + ["id"] = "fractured.stat_2954116742|32507", + ["text"] = "Allocates Cut to the Bone", ["type"] = "fractured", }, [369] = { - ["id"] = "fractured.stat_2954116742|55149", - ["text"] = "Allocates Pure Chaos", + ["id"] = "fractured.stat_2954116742|63074", + ["text"] = "Allocates Dark Entries", ["type"] = "fractured", }, [370] = { - ["id"] = "fractured.stat_2518900926", - ["text"] = "#% increased Damage with Plant Skills", + ["id"] = "fractured.stat_2954116742|30523", + ["text"] = "Allocates Dead can Dance", ["type"] = "fractured", }, [371] = { - ["id"] = "fractured.stat_2954116742|116", - ["text"] = "Allocates Insightfulness", + ["id"] = "fractured.stat_2954116742|49618", + ["text"] = "Allocates Deadly Flourish", ["type"] = "fractured", }, [372] = { - ["id"] = "fractured.stat_2954116742|57204", - ["text"] = "Allocates Critical Exploit", + ["id"] = "fractured.stat_2954116742|13724", + ["text"] = "Allocates Deadly Force", ["type"] = "fractured", }, [373] = { - ["id"] = "fractured.stat_2056107438", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["id"] = "fractured.stat_2954116742|29288", + ["text"] = "Allocates Deadly Invocations", ["type"] = "fractured", }, [374] = { - ["id"] = "fractured.stat_2954116742|44566", - ["text"] = "Allocates Lightning Rod", + ["id"] = "fractured.stat_2954116742|38053", + ["text"] = "Allocates Deafening Cries", ["type"] = "fractured", }, [375] = { - ["id"] = "fractured.stat_484792219", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["id"] = "fractured.stat_2954116742|8904", + ["text"] = "Allocates Death from Afar", ["type"] = "fractured", }, [376] = { - ["id"] = "fractured.stat_2954116742|5703", - ["text"] = "Allocates Echoing Thunder", + ["id"] = "fractured.stat_2954116742|17664", + ["text"] = "Allocates Decisive Retreat", ["type"] = "fractured", }, [377] = { - ["id"] = "fractured.stat_2954116742|12337", - ["text"] = "Allocates Flash Storm", + ["id"] = "fractured.stat_2954116742|40166", + ["text"] = "Allocates Deep Trance", ["type"] = "fractured", }, [378] = { - ["id"] = "fractured.stat_1869147066", - ["text"] = "#% increased Glory generation for Banner Skills", + ["id"] = "fractured.stat_2954116742|33216", + ["text"] = "Allocates Deep Wounds", ["type"] = "fractured", }, [379] = { - ["id"] = "fractured.stat_2954116742|36085", - ["text"] = "Allocates Serrated Edges", + ["id"] = "fractured.stat_2954116742|45612", + ["text"] = "Allocates Defensive Reflexes", ["type"] = "fractured", }, [380] = { - ["id"] = "fractured.stat_2957407601", - ["text"] = "Offering Skills have #% increased Duration", + ["id"] = "fractured.stat_2954116742|10681", + ["text"] = "Allocates Defensive Stance", ["type"] = "fractured", }, [381] = { - ["id"] = "fractured.stat_2954116742|46060", - ["text"] = "Allocates Voracious", + ["id"] = "fractured.stat_2954116742|32354", + ["text"] = "Allocates Defiance", ["type"] = "fractured", }, [382] = { - ["id"] = "fractured.stat_1594812856", - ["text"] = "#% increased Damage with Warcries", + ["id"] = "fractured.stat_2954116742|28267", + ["text"] = "Allocates Desensitisation", ["type"] = "fractured", }, [383] = { - ["id"] = "fractured.stat_2954116742|44299", - ["text"] = "Allocates Enhanced Barrier", + ["id"] = "fractured.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", ["type"] = "fractured", }, [384] = { - ["id"] = "fractured.stat_2954116742|19955", - ["text"] = "Allocates Endless Blizzard", + ["id"] = "fractured.stat_2954116742|14343", + ["text"] = "Allocates Deterioration", ["type"] = "fractured", }, [385] = { - ["id"] = "fractured.stat_2954116742|5802", - ["text"] = "Allocates Stand and Deliver", + ["id"] = "fractured.stat_2954116742|24753", + ["text"] = "Allocates Determined Precision", ["type"] = "fractured", }, [386] = { - ["id"] = "fractured.stat_2954116742|34473", - ["text"] = "Allocates Spaghettification", + ["id"] = "fractured.stat_2954116742|48006", + ["text"] = "Allocates Devastation", ["type"] = "fractured", }, [387] = { - ["id"] = "fractured.stat_2954116742|372", - ["text"] = "Allocates Heatproof", + ["id"] = "fractured.stat_2954116742|24483", + ["text"] = "Allocates Direct Approach", ["type"] = "fractured", }, [388] = { - ["id"] = "fractured.stat_1181501418", - ["text"] = "# to Maximum Rage", + ["id"] = "fractured.stat_2954116742|38459", + ["text"] = "Allocates Disorientation", ["type"] = "fractured", }, [389] = { - ["id"] = "fractured.stat_2954116742|41580", - ["text"] = "Allocates Maiming Strike", + ["id"] = "fractured.stat_2954116742|58939", + ["text"] = "Allocates Dispatch Foes", ["type"] = "fractured", }, [390] = { - ["id"] = "fractured.stat_2954116742|25513", - ["text"] = "Allocates Overwhelm", + ["id"] = "fractured.stat_2954116742|52245", + ["text"] = "Allocates Distant Dreamer", ["type"] = "fractured", }, [391] = { - ["id"] = "fractured.stat_2954116742|5728", - ["text"] = "Allocates Ancient Aegis", + ["id"] = "fractured.stat_2954116742|32721", + ["text"] = "Allocates Distracted Target", ["type"] = "fractured", }, [392] = { - ["id"] = "fractured.stat_2954116742|18505", - ["text"] = "Allocates Crushing Verdict", + ["id"] = "fractured.stat_2954116742|44765", + ["text"] = "Allocates Distracting Presence", ["type"] = "fractured", }, [393] = { - ["id"] = "fractured.stat_2907381231", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["id"] = "fractured.stat_2954116742|47514", + ["text"] = "Allocates Dizzying Hits", ["type"] = "fractured", }, [394] = { - ["id"] = "fractured.stat_2954116742|21380", - ["text"] = "Allocates Preemptive Strike", + ["id"] = "fractured.stat_2954116742|57190", + ["text"] = "Allocates Doomsayer", ["type"] = "fractured", }, [395] = { - ["id"] = "fractured.stat_2954116742|43082", - ["text"] = "Allocates Acceleration", + ["id"] = "fractured.stat_2954116742|11838", + ["text"] = "Allocates Dreamcatcher", ["type"] = "fractured", }, [396] = { - ["id"] = "fractured.stat_2954116742|8827", - ["text"] = "Allocates Fast Metabolism", + ["id"] = "fractured.stat_2954116742|40073", + ["text"] = "Allocates Drenched", ["type"] = "fractured", }, [397] = { - ["id"] = "fractured.stat_3003542304", - ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["id"] = "fractured.stat_2954116742|3688", + ["text"] = "Allocates Dynamism", ["type"] = "fractured", }, [398] = { - ["id"] = "fractured.stat_2954116742|2394", - ["text"] = "Allocates Blade Flurry", + ["id"] = "fractured.stat_2954116742|10315", + ["text"] = "Allocates Easy Going", ["type"] = "fractured", }, [399] = { - ["id"] = "fractured.stat_1852184471", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", + ["id"] = "fractured.stat_2954116742|60692", + ["text"] = "Allocates Echoing Flames", ["type"] = "fractured", }, [400] = { - ["id"] = "fractured.stat_442393998", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["id"] = "fractured.stat_2954116742|5257", + ["text"] = "Allocates Echoing Frost", ["type"] = "fractured", }, [401] = { - ["id"] = "fractured.stat_2954116742|19715", - ["text"] = "Allocates Cremation", + ["id"] = "fractured.stat_2954116742|7302", + ["text"] = "Allocates Echoing Pulse", ["type"] = "fractured", }, [402] = { - ["id"] = "fractured.stat_2954116742|46972", - ["text"] = "Allocates Arcane Mixtures", + ["id"] = "fractured.stat_2954116742|5703", + ["text"] = "Allocates Echoing Thunder", ["type"] = "fractured", }, [403] = { - ["id"] = "fractured.stat_4147897060", - ["text"] = "#% increased Block chance", + ["id"] = "fractured.stat_2954116742|33093", + ["text"] = "Allocates Effervescent", ["type"] = "fractured", }, [404] = { - ["id"] = "fractured.stat_3851254963", - ["text"] = "#% increased Totem Damage", + ["id"] = "fractured.stat_2954116742|46692", + ["text"] = "Allocates Efficient Alchemy", ["type"] = "fractured", }, [405] = { - ["id"] = "fractured.stat_2954116742|40990", - ["text"] = "Allocates Exposed to the Storm", + ["id"] = "fractured.stat_2954116742|16790", + ["text"] = "Allocates Efficient Casting", ["type"] = "fractured", }, [406] = { - ["id"] = "fractured.stat_2954116742|6229", - ["text"] = "Allocates Push the Advantage", + ["id"] = "fractured.stat_2954116742|30408", + ["text"] = "Allocates Efficient Contraptions", ["type"] = "fractured", }, [407] = { - ["id"] = "fractured.stat_2954116742|17340", - ["text"] = "Allocates Adrenaline Rush", + ["id"] = "fractured.stat_2954116742|42245", + ["text"] = "Allocates Efficient Inscriptions", ["type"] = "fractured", }, [408] = { - ["id"] = "fractured.stat_378796798", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["id"] = "fractured.stat_2954116742|94", + ["text"] = "Allocates Efficient Killing", ["type"] = "fractured", }, [409] = { - ["id"] = "fractured.stat_2954116742|28044", - ["text"] = "Allocates Coming Calamity", + ["id"] = "fractured.stat_2954116742|3894", + ["text"] = "Allocates Eldritch Will", ["type"] = "fractured", }, [410] = { - ["id"] = "fractured.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", + ["id"] = "fractured.stat_2954116742|55708", + ["text"] = "Allocates Electric Amplification", ["type"] = "fractured", }, [411] = { - ["id"] = "fractured.stat_4258000627", - ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", + ["id"] = "fractured.stat_2954116742|30546", + ["text"] = "Allocates Electrified Claw", ["type"] = "fractured", }, [412] = { - ["id"] = "fractured.stat_2954116742|15083", - ["text"] = "Allocates Power Conduction", + ["id"] = "fractured.stat_2954116742|26291", + ["text"] = "Allocates Electrifying Nature", ["type"] = "fractured", }, [413] = { - ["id"] = "fractured.stat_2066964205", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["id"] = "fractured.stat_2954116742|7275", + ["text"] = "Allocates Electrocuting Exposure", ["type"] = "fractured", }, [414] = { - ["id"] = "fractured.stat_2954116742|44756", - ["text"] = "Allocates Marked Agility", + ["id"] = "fractured.stat_2954116742|36364", + ["text"] = "Allocates Electrocution", ["type"] = "fractured", }, [415] = { - ["id"] = "fractured.stat_2954116742|64119", - ["text"] = "Allocates Rapid Reload", + ["id"] = "fractured.stat_2954116742|43090", + ["text"] = "Allocates Electrotherapy", ["type"] = "fractured", }, [416] = { - ["id"] = "fractured.stat_3065378291", - ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["id"] = "fractured.stat_2954116742|10612", + ["text"] = "Allocates Embodiment of Frost", ["type"] = "fractured", }, [417] = { - ["id"] = "fractured.stat_2954116742|13724", - ["text"] = "Allocates Deadly Force", + ["id"] = "fractured.stat_2954116742|15991", + ["text"] = "Allocates Embodiment of Lightning", ["type"] = "fractured", }, [418] = { - ["id"] = "fractured.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", + ["id"] = "fractured.stat_2954116742|43423", + ["text"] = "Allocates Emboldened Avatar", ["type"] = "fractured", }, [419] = { - ["id"] = "fractured.stat_1892122971", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["id"] = "fractured.stat_2954116742|8397", + ["text"] = "Allocates Empowering Remains", ["type"] = "fractured", }, [420] = { - ["id"] = "fractured.stat_680068163", - ["text"] = "#% increased Stun Threshold", + ["id"] = "fractured.stat_2954116742|40985", + ["text"] = "Allocates Empowering Remnants", ["type"] = "fractured", }, [421] = { - ["id"] = "fractured.stat_2954116742|46197", - ["text"] = "Allocates Careful Assassin", + ["id"] = "fractured.stat_2954116742|19955", + ["text"] = "Allocates Endless Blizzard", ["type"] = "fractured", }, [422] = { - ["id"] = "fractured.stat_3292710273", - ["text"] = "Gain # Rage when Hit by an Enemy", + ["id"] = "fractured.stat_2954116742|8273", + ["text"] = "Allocates Endless Circuit", ["type"] = "fractured", }, [423] = { - ["id"] = "fractured.stat_2954116742|4238", - ["text"] = "Allocates Versatile Arms", + ["id"] = "fractured.stat_2954116742|5663", + ["text"] = "Allocates Endurance", ["type"] = "fractured", }, [424] = { - ["id"] = "fractured.stat_1007380041", - ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["id"] = "fractured.stat_2954116742|15443", + ["text"] = "Allocates Endured Suffering", ["type"] = "fractured", }, [425] = { - ["id"] = "fractured.stat_239367161", - ["text"] = "#% increased Stun Buildup", + ["id"] = "fractured.stat_2954116742|59070", + ["text"] = "Allocates Enduring Archon", ["type"] = "fractured", }, [426] = { - ["id"] = "fractured.stat_2374711847", - ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["id"] = "fractured.stat_2954116742|40399", + ["text"] = "Allocates Energise", ["type"] = "fractured", }, [427] = { - ["id"] = "fractured.stat_2954116742|11826", - ["text"] = "Allocates Heavy Ammunition", + ["id"] = "fractured.stat_2954116742|2814", + ["text"] = "Allocates Engineered Blaze", ["type"] = "fractured", }, [428] = { - ["id"] = "fractured.stat_2954116742|43944", - ["text"] = "Allocates Instability", + ["id"] = "fractured.stat_2954116742|44299", + ["text"] = "Allocates Enhanced Barrier", ["type"] = "fractured", }, [429] = { - ["id"] = "fractured.stat_2954116742|10265", - ["text"] = "Allocates Javelin", + ["id"] = "fractured.stat_2954116742|51707", + ["text"] = "Allocates Enhanced Reflexes", ["type"] = "fractured", }, [430] = { - ["id"] = "fractured.stat_2954116742|6178", - ["text"] = "Allocates Power Shots", + ["id"] = "fractured.stat_2954116742|30720", + ["text"] = "Allocates Entropic Incarnation", ["type"] = "fractured", }, [431] = { - ["id"] = "fractured.stat_1285594161", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["id"] = "fractured.stat_2954116742|65243", + ["text"] = "Allocates Enveloping Presence", ["type"] = "fractured", }, [432] = { - ["id"] = "fractured.stat_2954116742|62034", - ["text"] = "Allocates Prism Guard", + ["id"] = "fractured.stat_2954116742|61404", + ["text"] = "Allocates Equilibrium", ["type"] = "fractured", }, [433] = { - ["id"] = "fractured.stat_2954116742|9968", - ["text"] = "Allocates Feel the Earth", + ["id"] = "fractured.stat_2954116742|20032", + ["text"] = "Allocates Erraticism", ["type"] = "fractured", }, [434] = { - ["id"] = "fractured.stat_2954116742|2138", - ["text"] = "Allocates Spiral into Insanity", + ["id"] = "fractured.stat_2954116742|38628", + ["text"] = "Allocates Escalating Toxins", ["type"] = "fractured", }, [435] = { - ["id"] = "fractured.stat_2954116742|3688", - ["text"] = "Allocates Dynamism", + ["id"] = "fractured.stat_2954116742|5227", + ["text"] = "Allocates Escape Strategy", ["type"] = "fractured", }, [436] = { - ["id"] = "fractured.stat_1432756708", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["id"] = "fractured.stat_2954116742|17854", + ["text"] = "Allocates Escape Velocity", ["type"] = "fractured", }, [437] = { - ["id"] = "fractured.stat_2954116742|16816", - ["text"] = "Allocates Pinpoint Shot", + ["id"] = "fractured.stat_2954116742|42077", + ["text"] = "Allocates Essence Infusion", ["type"] = "fractured", }, [438] = { - ["id"] = "fractured.stat_2954116742|19125", - ["text"] = "Allocates Potent Incantation", + ["id"] = "fractured.stat_2954116742|16256", + ["text"] = "Allocates Ether Flow", ["type"] = "fractured", }, [439] = { - ["id"] = "fractured.stat_1800303440", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["id"] = "fractured.stat_2954116742|52191", + ["text"] = "Allocates Event Horizon", ["type"] = "fractured", }, [440] = { - ["id"] = "fractured.stat_2954116742|48581", - ["text"] = "Allocates Exploit the Elements", + ["id"] = "fractured.stat_2954116742|41753", + ["text"] = "Allocates Evocational Practitioner", ["type"] = "fractured", }, [441] = { - ["id"] = "fractured.stat_2954116742|54814", - ["text"] = "Allocates Profane Commander", + ["id"] = "fractured.stat_2954116742|47420", + ["text"] = "Allocates Expendable Army", ["type"] = "fractured", }, [442] = { - ["id"] = "fractured.stat_2392824305", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + ["id"] = "fractured.stat_2954116742|39050", + ["text"] = "Allocates Exploit", ["type"] = "fractured", }, [443] = { - ["id"] = "fractured.stat_1316278494", - ["text"] = "#% increased Warcry Speed", + ["id"] = "fractured.stat_2954116742|48581", + ["text"] = "Allocates Exploit the Elements", ["type"] = "fractured", }, [444] = { - ["id"] = "fractured.stat_2954116742|13407", - ["text"] = "Allocates Heartbreaking", + ["id"] = "fractured.stat_2954116742|36333", + ["text"] = "Allocates Explosive Empowerment", ["type"] = "fractured", }, [445] = { - ["id"] = "fractured.stat_4089835882", - ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["id"] = "fractured.stat_2954116742|21206", + ["text"] = "Allocates Explosive Impact", ["type"] = "fractured", }, [446] = { - ["id"] = "fractured.stat_712554801", - ["text"] = "#% increased Effect of your Mark Skills", + ["id"] = "fractured.stat_2954116742|10423", + ["text"] = "Allocates Exposed to the Inferno", ["type"] = "fractured", }, [447] = { - ["id"] = "fractured.stat_644456512", - ["text"] = "#% reduced Flask Charges used", + ["id"] = "fractured.stat_2954116742|40990", + ["text"] = "Allocates Exposed to the Storm", ["type"] = "fractured", }, [448] = { - ["id"] = "fractured.stat_2954116742|27491", - ["text"] = "Allocates Heavy Buffer", + ["id"] = "fractured.stat_2954116742|56112", + ["text"] = "Allocates Extinguishing Exhalation", ["type"] = "fractured", }, [449] = { - ["id"] = "fractured.stat_2954116742|3985", - ["text"] = "Allocates Forces of Nature", + ["id"] = "fractured.stat_2954116742|60034", + ["text"] = "Allocates Falcon Dive", ["type"] = "fractured", }, [450] = { - ["id"] = "fractured.stat_2954116742|11526", - ["text"] = "Allocates Sniper", + ["id"] = "fractured.stat_2954116742|31172", + ["text"] = "Allocates Falcon Technique", ["type"] = "fractured", }, [451] = { - ["id"] = "fractured.stat_2954116742|29372", - ["text"] = "Allocates Sudden Infuriation", + ["id"] = "fractured.stat_2954116742|60464", + ["text"] = "Allocates Fan the Flames", ["type"] = "fractured", }, [452] = { - ["id"] = "fractured.stat_2954116742|29527", - ["text"] = "Allocates First Approach", + ["id"] = "fractured.stat_2954116742|35477", + ["text"] = "Allocates Far Sighted", ["type"] = "fractured", }, [453] = { - ["id"] = "fractured.stat_2954116742|20677", - ["text"] = "Allocates For the Jugular", + ["id"] = "fractured.stat_2954116742|55", + ["text"] = "Allocates Fast Acting Toxins", ["type"] = "fractured", }, [454] = { - ["id"] = "fractured.stat_139889694", - ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["id"] = "fractured.stat_2954116742|8827", + ["text"] = "Allocates Fast Metabolism", ["type"] = "fractured", }, [455] = { - ["id"] = "fractured.stat_2954116742|32353", - ["text"] = "Allocates Swift Claw", + ["id"] = "fractured.stat_2954116742|3921", + ["text"] = "Allocates Fate Finding", ["type"] = "fractured", }, [456] = { - ["id"] = "fractured.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", + ["id"] = "fractured.stat_2954116742|59214", + ["text"] = "Allocates Fated End", ["type"] = "fractured", }, [457] = { - ["id"] = "fractured.stat_2954116742|9472", - ["text"] = "Allocates Catapult", + ["id"] = "fractured.stat_2954116742|19546", + ["text"] = "Allocates Favourable Odds", ["type"] = "fractured", }, [458] = { - ["id"] = "fractured.stat_2954116742|34324", - ["text"] = "Allocates Spectral Ward", + ["id"] = "fractured.stat_2954116742|60764", + ["text"] = "Allocates Feathered Fletching", ["type"] = "fractured", }, [459] = { - ["id"] = "fractured.stat_2954116742|10681", - ["text"] = "Allocates Defensive Stance", + ["id"] = "fractured.stat_2954116742|9968", + ["text"] = "Allocates Feel the Earth", ["type"] = "fractured", }, [460] = { - ["id"] = "fractured.stat_2954116742|51707", - ["text"] = "Allocates Enhanced Reflexes", + ["id"] = "fractured.stat_2954116742|21537", + ["text"] = "Allocates Fervour", ["type"] = "fractured", }, [461] = { - ["id"] = "fractured.stat_2954116742|57379", - ["text"] = "Allocates In Your Face", + ["id"] = "fractured.stat_2954116742|2999", + ["text"] = "Allocates Final Barrage", ["type"] = "fractured", }, [462] = { - ["id"] = "fractured.stat_2954116742|39369", - ["text"] = "Allocates Struck Through", + ["id"] = "fractured.stat_2954116742|51867", + ["text"] = "Allocates Finality", ["type"] = "fractured", }, [463] = { - ["id"] = "fractured.stat_2954116742|8273", - ["text"] = "Allocates Endless Circuit", + ["id"] = "fractured.stat_2954116742|38969", + ["text"] = "Allocates Finesse", ["type"] = "fractured", }, [464] = { - ["id"] = "fractured.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", + ["id"] = "fractured.stat_2954116742|29899", + ["text"] = "Allocates Finish Them", ["type"] = "fractured", }, [465] = { - ["id"] = "fractured.stat_2334956771", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["id"] = "fractured.stat_2954116742|45013", + ["text"] = "Allocates Finishing Blows", ["type"] = "fractured", }, [466] = { - ["id"] = "fractured.stat_4173554949", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["id"] = "fractured.stat_2954116742|54911", + ["text"] = "Allocates Firestarter", ["type"] = "fractured", }, [467] = { - ["id"] = "fractured.stat_2954116742|17548", - ["text"] = "Allocates Moment of Truth", + ["id"] = "fractured.stat_2954116742|29527", + ["text"] = "Allocates First Approach", ["type"] = "fractured", }, [468] = { - ["id"] = "fractured.stat_2954116742|51867", - ["text"] = "Allocates Finality", + ["id"] = "fractured.stat_2954116742|12337", + ["text"] = "Allocates Flash Storm", ["type"] = "fractured", }, [469] = { - ["id"] = "fractured.stat_2954116742|52618", - ["text"] = "Allocates Boon of the Beast", + ["id"] = "fractured.stat_2954116742|64851", + ["text"] = "Allocates Flashy Parrying", ["type"] = "fractured", }, [470] = { - ["id"] = "fractured.stat_2954116742|9020", - ["text"] = "Allocates Giantslayer", + ["id"] = "fractured.stat_2954116742|21164", + ["text"] = "Allocates Fleshcrafting", ["type"] = "fractured", }, [471] = { - ["id"] = "fractured.stat_2131720304", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["id"] = "fractured.stat_2954116742|9227", + ["text"] = "Allocates Focused Thrust", ["type"] = "fractured", }, [472] = { - ["id"] = "fractured.stat_2954116742|30562", - ["text"] = "Allocates Inner Faith", + ["id"] = "fractured.stat_2954116742|20677", + ["text"] = "Allocates For the Jugular", ["type"] = "fractured", }, [473] = { - ["id"] = "fractured.stat_1602294220", - ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["id"] = "fractured.stat_2954116742|3985", + ["text"] = "Allocates Forces of Nature", ["type"] = "fractured", }, [474] = { - ["id"] = "fractured.stat_1911237468", - ["text"] = "#% increased Stun Threshold while Parrying", + ["id"] = "fractured.stat_2954116742|48103", + ["text"] = "Allocates Forcewave", ["type"] = "fractured", }, [475] = { - ["id"] = "fractured.stat_2954116742|45599", - ["text"] = "Allocates Lay Siege", + ["id"] = "fractured.stat_2954116742|23940", + ["text"] = "Allocates Fortified Aegis", ["type"] = "fractured", }, [476] = { - ["id"] = "fractured.stat_2954116742|44330", - ["text"] = "Allocates Coated Arms", + ["id"] = "fractured.stat_2954116742|35855", + ["text"] = "Allocates Fortifying Blood", ["type"] = "fractured", }, [477] = { - ["id"] = "fractured.stat_2954116742|36341", - ["text"] = "Allocates Cull the Hordes", + ["id"] = "fractured.stat_2954116742|59208", + ["text"] = "Allocates Frantic Fighter", ["type"] = "fractured", }, [478] = { - ["id"] = "fractured.stat_2954116742|4709", - ["text"] = "Allocates Near Sighted", + ["id"] = "fractured.stat_2954116742|28441", + ["text"] = "Allocates Frantic Swings", ["type"] = "fractured", }, [479] = { - ["id"] = "fractured.stat_2912416697", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["id"] = "fractured.stat_2954116742|32301", + ["text"] = "Allocates Frazzled", ["type"] = "fractured", }, [480] = { - ["id"] = "fractured.stat_2954116742|1823", - ["text"] = "Allocates Illuminated Crown", + ["id"] = "fractured.stat_2954116742|51606", + ["text"] = "Allocates Freedom of Movement", ["type"] = "fractured", }, [481] = { - ["id"] = "fractured.stat_2954116742|16618", - ["text"] = "Allocates Jack of all Trades", + ["id"] = "fractured.stat_2954116742|40270", + ["text"] = "Allocates Frenetic", ["type"] = "fractured", }, [482] = { - ["id"] = "fractured.stat_2954116742|8531", - ["text"] = "Allocates Leaping Ambush", + ["id"] = "fractured.stat_2954116742|48699", + ["text"] = "Allocates Frostwalker", ["type"] = "fractured", }, [483] = { - ["id"] = "fractured.stat_3401186585", - ["text"] = "#% increased Parried Debuff Duration", + ["id"] = "fractured.stat_2954116742|50715", + ["text"] = "Allocates Frozen Limit", ["type"] = "fractured", }, [484] = { - ["id"] = "fractured.stat_2954116742|56806", - ["text"] = "Allocates Swift Blocking", + ["id"] = "fractured.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", ["type"] = "fractured", }, [485] = { - ["id"] = "fractured.stat_2954116742|52392", - ["text"] = "Allocates Singular Purpose", + ["id"] = "fractured.stat_2954116742|33887", + ["text"] = "Allocates Full Salvo", ["type"] = "fractured", }, [486] = { - ["id"] = "fractured.stat_2954116742|35966", - ["text"] = "Allocates Heart Tissue", + ["id"] = "fractured.stat_2954116742|24630", + ["text"] = "Allocates Fulmination", ["type"] = "fractured", }, [487] = { - ["id"] = "fractured.stat_2954116742|10998", - ["text"] = "Allocates Strong Chin", + ["id"] = "fractured.stat_2954116742|32976", + ["text"] = "Allocates Gem Enthusiast", ["type"] = "fractured", }, [488] = { - ["id"] = "fractured.stat_2954116742|47316", - ["text"] = "Allocates Goring", + ["id"] = "fractured.stat_2954116742|27875", + ["text"] = "Allocates General Electric", ["type"] = "fractured", }, [489] = { - ["id"] = "fractured.stat_2954116742|65265", - ["text"] = "Allocates Swift Interruption", + ["id"] = "fractured.stat_2954116742|17150", + ["text"] = "Allocates General's Bindings", ["type"] = "fractured", }, [490] = { - ["id"] = "fractured.stat_3171212276", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["id"] = "fractured.stat_2954116742|9020", + ["text"] = "Allocates Giantslayer", ["type"] = "fractured", }, [491] = { - ["id"] = "fractured.stat_2954116742|934", - ["text"] = "Allocates Natural Immunity", + ["id"] = "fractured.stat_2954116742|46365", + ["text"] = "Allocates Gigantic Following", ["type"] = "fractured", }, [492] = { - ["id"] = "fractured.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["id"] = "fractured.stat_2954116742|41972", + ["text"] = "Allocates Glaciation", ["type"] = "fractured", }, [493] = { - ["id"] = "fractured.stat_2954116742|37514", - ["text"] = "Allocates Whirling Assault", + ["id"] = "fractured.stat_2954116742|56488", + ["text"] = "Allocates Glancing Deflection", ["type"] = "fractured", }, [494] = { - ["id"] = "fractured.stat_2954116742|47363", - ["text"] = "Allocates Colossal Weapon", + ["id"] = "fractured.stat_2954116742|23939", + ["text"] = "Allocates Glazed Flesh", ["type"] = "fractured", }, [495] = { - ["id"] = "fractured.stat_2954116742|55180", - ["text"] = "Allocates Relentless Fallen", + ["id"] = "fractured.stat_2954116742|47316", + ["text"] = "Allocates Goring", ["type"] = "fractured", }, [496] = { - ["id"] = "fractured.stat_2954116742|62609", - ["text"] = "Allocates Ancestral Unity", + ["id"] = "fractured.stat_2954116742|58714", + ["text"] = "Allocates Grenadier", ["type"] = "fractured", }, [497] = { - ["id"] = "fractured.stat_2954116742|36623", - ["text"] = "Allocates Convalescence", + ["id"] = "fractured.stat_2954116742|20416", + ["text"] = "Allocates Grit", ["type"] = "fractured", }, [498] = { - ["id"] = "fractured.stat_2954116742|2021", - ["text"] = "Allocates Wellspring", + ["id"] = "fractured.stat_2954116742|14945", + ["text"] = "Allocates Growing Swarm", ["type"] = "fractured", }, [499] = { - ["id"] = "fractured.stat_2954116742|42077", - ["text"] = "Allocates Essence Infusion", + ["id"] = "fractured.stat_2954116742|4331", + ["text"] = "Allocates Guided Hand", ["type"] = "fractured", }, [500] = { - ["id"] = "fractured.stat_2954116742|13980", - ["text"] = "Allocates Split the Earth", + ["id"] = "fractured.stat_2954116742|29762", + ["text"] = "Allocates Guttural Roar", ["type"] = "fractured", }, [501] = { - ["id"] = "fractured.stat_2954116742|63037", - ["text"] = "Allocates Sigil of Fire", + ["id"] = "fractured.stat_2954116742|33229", + ["text"] = "Allocates Haemorrhaging Cuts", ["type"] = "fractured", }, [502] = { - ["id"] = "fractured.stat_2954116742|37872", - ["text"] = "Allocates Presence Present", + ["id"] = "fractured.stat_2954116742|15374", + ["text"] = "Allocates Hale Heart", ["type"] = "fractured", }, [503] = { - ["id"] = "fractured.stat_2954116742|42065", - ["text"] = "Allocates Surging Currents", + ["id"] = "fractured.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", ["type"] = "fractured", }, [504] = { - ["id"] = "fractured.stat_2954116742|47635", - ["text"] = "Allocates Overload", + ["id"] = "fractured.stat_2954116742|24438", + ["text"] = "Allocates Hardened Wood", ["type"] = "fractured", }, [505] = { - ["id"] = "fractured.stat_2954116742|30408", - ["text"] = "Allocates Efficient Contraptions", + ["id"] = "fractured.stat_2954116742|40480", + ["text"] = "Allocates Harmonic Generator", ["type"] = "fractured", }, [506] = { - ["id"] = "fractured.stat_2954116742|22967", - ["text"] = "Allocates Vigilance", + ["id"] = "fractured.stat_2954116742|12611", + ["text"] = "Allocates Harness the Elements", ["type"] = "fractured", }, [507] = { - ["id"] = "fractured.stat_2954116742|50062", - ["text"] = "Allocates Barrier of Venarius", + ["id"] = "fractured.stat_2954116742|44293", + ["text"] = "Allocates Hastening Barrier", ["type"] = "fractured", }, [508] = { - ["id"] = "fractured.stat_2954116742|23939", - ["text"] = "Allocates Glazed Flesh", + ["id"] = "fractured.stat_2954116742|48215", + ["text"] = "Allocates Headshot", ["type"] = "fractured", }, [509] = { - ["id"] = "fractured.stat_2954116742|7338", - ["text"] = "Allocates Abasement", + ["id"] = "fractured.stat_2954116742|35966", + ["text"] = "Allocates Heart Tissue", ["type"] = "fractured", }, [510] = { - ["id"] = "fractured.stat_2954116742|56999", - ["text"] = "Allocates Locked On", + ["id"] = "fractured.stat_2954116742|13407", + ["text"] = "Allocates Heartbreaking", ["type"] = "fractured", }, [511] = { - ["id"] = "fractured.stat_2954116742|25482", - ["text"] = "Allocates Beef", + ["id"] = "fractured.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", ["type"] = "fractured", }, [512] = { - ["id"] = "fractured.stat_2954116742|5663", - ["text"] = "Allocates Endurance", + ["id"] = "fractured.stat_2954116742|372", + ["text"] = "Allocates Heatproof", ["type"] = "fractured", }, [513] = { - ["id"] = "fractured.stat_2954116742|60764", - ["text"] = "Allocates Feathered Fletching", + ["id"] = "fractured.stat_2954116742|11826", + ["text"] = "Allocates Heavy Ammunition", ["type"] = "fractured", }, [514] = { - ["id"] = "fractured.stat_2954116742|3894", - ["text"] = "Allocates Eldritch Will", + ["id"] = "fractured.stat_2954116742|27491", + ["text"] = "Allocates Heavy Buffer", ["type"] = "fractured", }, [515] = { - ["id"] = "fractured.stat_2954116742|32071", - ["text"] = "Allocates Primal Growth", + ["id"] = "fractured.stat_2954116742|56997", + ["text"] = "Allocates Heavy Contact", ["type"] = "fractured", }, [516] = { - ["id"] = "fractured.stat_2954116742|57471", - ["text"] = "Allocates Hunker Down", + ["id"] = "fractured.stat_2954116742|15617", + ["text"] = "Allocates Heavy Drinker", ["type"] = "fractured", }, [517] = { - ["id"] = "fractured.stat_1301765461", - ["text"] = "#% to Maximum Chaos Resistance", + ["id"] = "fractured.stat_2954116742|4959", + ["text"] = "Allocates Heavy Frost", ["type"] = "fractured", }, [518] = { - ["id"] = "fractured.stat_2954116742|17882", - ["text"] = "Allocates Volatile Grenades", + ["id"] = "fractured.stat_2954116742|41512", + ["text"] = "Allocates Heavy Weaponry", ["type"] = "fractured", }, [519] = { - ["id"] = "fractured.stat_2954116742|8904", - ["text"] = "Allocates Death from Afar", + ["id"] = "fractured.stat_2954116742|48418", + ["text"] = "Allocates Hefty Unit", ["type"] = "fractured", }, [520] = { - ["id"] = "fractured.stat_2954116742|54911", - ["text"] = "Allocates Firestarter", + ["id"] = "fractured.stat_2954116742|30456", + ["text"] = "Allocates High Alert", ["type"] = "fractured", }, [521] = { - ["id"] = "fractured.stat_2720982137", - ["text"] = "Banner Skills have #% increased Duration", + ["id"] = "fractured.stat_2954116742|48014", + ["text"] = "Allocates Honourless", ["type"] = "fractured", }, [522] = { - ["id"] = "fractured.stat_2954116742|52191", - ["text"] = "Allocates Event Horizon", + ["id"] = "fractured.stat_2954116742|4673", + ["text"] = "Allocates Hulking Smash", ["type"] = "fractured", }, [523] = { - ["id"] = "fractured.stat_2954116742|13738", - ["text"] = "Allocates Lightning Quick", + ["id"] = "fractured.stat_2954116742|57471", + ["text"] = "Allocates Hunker Down", ["type"] = "fractured", }, [524] = { - ["id"] = "fractured.stat_2954116742|7777", - ["text"] = "Allocates Breaking Point", + ["id"] = "fractured.stat_2954116742|48617", + ["text"] = "Allocates Hunter", ["type"] = "fractured", }, [525] = { - ["id"] = "fractured.stat_2954116742|13895", - ["text"] = "Allocates Precise Point", + ["id"] = "fractured.stat_2954116742|55847", + ["text"] = "Allocates Ice Walls", ["type"] = "fractured", }, [526] = { - ["id"] = "fractured.stat_2954116742|336", - ["text"] = "Allocates Storm Swell", + ["id"] = "fractured.stat_2954116742|4031", + ["text"] = "Allocates Icebreaker", ["type"] = "fractured", }, [527] = { - ["id"] = "fractured.stat_2954116742|39050", - ["text"] = "Allocates Exploit", + ["id"] = "fractured.stat_2954116742|7341", + ["text"] = "Allocates Ignore Pain", ["type"] = "fractured", }, [528] = { - ["id"] = "fractured.stat_2954116742|33240", - ["text"] = "Allocates Lord of Horrors", + ["id"] = "fractured.stat_2954116742|1823", + ["text"] = "Allocates Illuminated Crown", ["type"] = "fractured", }, [529] = { - ["id"] = "fractured.stat_2954116742|17260", - ["text"] = "Allocates Piercing Claw", + ["id"] = "fractured.stat_2954116742|19156", + ["text"] = "Allocates Immaterial", ["type"] = "fractured", }, [530] = { - ["id"] = "fractured.stat_2954116742|38459", - ["text"] = "Allocates Disorientation", + ["id"] = "fractured.stat_2954116742|53030", + ["text"] = "Allocates Immolation", ["type"] = "fractured", }, [531] = { - ["id"] = "fractured.stat_2954116742|41512", - ["text"] = "Allocates Heavy Weaponry", + ["id"] = "fractured.stat_2954116742|51871", + ["text"] = "Allocates Immortal Thirst", ["type"] = "fractured", }, [532] = { - ["id"] = "fractured.stat_2954116742|51820", - ["text"] = "Allocates Ancestral Conduits", + ["id"] = "fractured.stat_2954116742|16626", + ["text"] = "Allocates Impact Area", ["type"] = "fractured", }, [533] = { - ["id"] = "fractured.stat_4009879772", - ["text"] = "#% increased Life Flask Charges gained", + ["id"] = "fractured.stat_2954116742|64443", + ["text"] = "Allocates Impact Force", ["type"] = "fractured", }, [534] = { - ["id"] = "fractured.stat_2954116742|53941", - ["text"] = "Allocates Shimmering", + ["id"] = "fractured.stat_2954116742|46696", + ["text"] = "Allocates Impair", ["type"] = "fractured", }, [535] = { - ["id"] = "fractured.stat_2954116742|53823", - ["text"] = "Allocates Towering Shield", + ["id"] = "fractured.stat_2954116742|21748", + ["text"] = "Allocates Impending Doom", ["type"] = "fractured", }, [536] = { - ["id"] = "fractured.stat_554690751", - ["text"] = "Players are periodically Cursed with Elemental Weakness", + ["id"] = "fractured.stat_2954116742|65023", + ["text"] = "Allocates Impenetrable Shell", ["type"] = "fractured", }, [537] = { - ["id"] = "fractured.stat_2954116742|53030", - ["text"] = "Allocates Immolation", + ["id"] = "fractured.stat_2954116742|57379", + ["text"] = "Allocates In Your Face", ["type"] = "fractured", }, [538] = { - ["id"] = "fractured.stat_2954116742|17330", - ["text"] = "Allocates Perforation", + ["id"] = "fractured.stat_2954116742|35028", + ["text"] = "Allocates In the Thick of It", ["type"] = "fractured", }, [539] = { - ["id"] = "fractured.stat_2954116742|25971", - ["text"] = "Allocates Tenfold Attacks", + ["id"] = "fractured.stat_2954116742|62310", + ["text"] = "Allocates Incendiary", ["type"] = "fractured", }, [540] = { - ["id"] = "fractured.stat_2954116742|53853", - ["text"] = "Allocates Backup Plan", + ["id"] = "fractured.stat_2954116742|36630", + ["text"] = "Allocates Incision", ["type"] = "fractured", }, [541] = { - ["id"] = "fractured.stat_2954116742|21349", - ["text"] = "Allocates The Quick Fox", + ["id"] = "fractured.stat_2954116742|47270", + ["text"] = "Allocates Inescapable Cold", ["type"] = "fractured", }, [542] = { - ["id"] = "fractured.stat_2954116742|28267", - ["text"] = "Allocates Desensitisation", + ["id"] = "fractured.stat_2954116742|22817", + ["text"] = "Allocates Inevitable Rupture", ["type"] = "fractured", }, [543] = { - ["id"] = "fractured.stat_2954116742|27176", - ["text"] = "Allocates The Power Within", + ["id"] = "fractured.stat_2954116742|24764", + ["text"] = "Allocates Infusing Power", ["type"] = "fractured", }, [544] = { - ["id"] = "fractured.stat_2954116742|55", - ["text"] = "Allocates Fast Acting Toxins", + ["id"] = "fractured.stat_2954116742|39567", + ["text"] = "Allocates Ingenuity", ["type"] = "fractured", }, [545] = { - ["id"] = "fractured.stat_2954116742|16499", - ["text"] = "Allocates Lingering Whispers", + ["id"] = "fractured.stat_2954116742|23227", + ["text"] = "Allocates Initiative", ["type"] = "fractured", }, [546] = { - ["id"] = "fractured.stat_2954116742|63759", - ["text"] = "Allocates Stacking Toxins", + ["id"] = "fractured.stat_2954116742|30562", + ["text"] = "Allocates Inner Faith", ["type"] = "fractured", }, [547] = { - ["id"] = "fractured.stat_2954116742|19337", - ["text"] = "Allocates Precision Salvo", + ["id"] = "fractured.stat_2954116742|116", + ["text"] = "Allocates Insightfulness", ["type"] = "fractured", }, [548] = { - ["id"] = "fractured.stat_2954116742|31826", - ["text"] = "Allocates Long Distance Relationship", + ["id"] = "fractured.stat_2954116742|16150", + ["text"] = "Allocates Inspiring Ally", ["type"] = "fractured", }, [549] = { - ["id"] = "fractured.stat_2954116742|55708", - ["text"] = "Allocates Electric Amplification", + ["id"] = "fractured.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", ["type"] = "fractured", }, [550] = { - ["id"] = "fractured.stat_2954116742|57190", - ["text"] = "Allocates Doomsayer", + ["id"] = "fractured.stat_2954116742|43944", + ["text"] = "Allocates Instability", ["type"] = "fractured", }, [551] = { - ["id"] = "fractured.stat_2954116742|59303", - ["text"] = "Allocates Lucky Rabbit Foot", + ["id"] = "fractured.stat_2954116742|9736", + ["text"] = "Allocates Insulated Treads", ["type"] = "fractured", }, [552] = { - ["id"] = "fractured.stat_1181419800", - ["text"] = "#% increased Damage with Maces", + ["id"] = "fractured.stat_2954116742|65016", + ["text"] = "Allocates Intense Flames", ["type"] = "fractured", }, [553] = { - ["id"] = "fractured.stat_1160637284", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["id"] = "fractured.stat_2954116742|7668", + ["text"] = "Allocates Internal Bleeding", ["type"] = "fractured", }, [554] = { - ["id"] = "fractured.stat_2954116742|2511", - ["text"] = "Allocates Sundering", + ["id"] = "fractured.stat_2954116742|35369", + ["text"] = "Allocates Investing Energies", ["type"] = "fractured", }, [555] = { - ["id"] = "fractured.stat_2954116742|3215", - ["text"] = "Allocates Melding", + ["id"] = "fractured.stat_2954116742|41394", + ["text"] = "Allocates Invigorating Archon", ["type"] = "fractured", }, [556] = { - ["id"] = "fractured.stat_2954116742|17854", - ["text"] = "Allocates Escape Velocity", + ["id"] = "fractured.stat_2954116742|50023", + ["text"] = "Allocates Invigorating Grandeur", ["type"] = "fractured", }, [557] = { - ["id"] = "fractured.stat_2954116742|32976", - ["text"] = "Allocates Gem Enthusiast", + ["id"] = "fractured.stat_2954116742|51934", + ["text"] = "Allocates Invocated Efficiency", ["type"] = "fractured", }, [558] = { - ["id"] = "fractured.stat_2954116742|61338", - ["text"] = "Allocates Breath of Lightning", + ["id"] = "fractured.stat_2954116742|22626", + ["text"] = "Allocates Irreparable", ["type"] = "fractured", }, [559] = { - ["id"] = "fractured.stat_2954116742|64240", - ["text"] = "Allocates Battle Fever", + ["id"] = "fractured.stat_2954116742|16618", + ["text"] = "Allocates Jack of all Trades", ["type"] = "fractured", }, [560] = { - ["id"] = "fractured.stat_2954116742|61703", - ["text"] = "Allocates Sharpened Claw", + ["id"] = "fractured.stat_2954116742|10265", + ["text"] = "Allocates Javelin", ["type"] = "fractured", }, [561] = { - ["id"] = "fractured.stat_2954116742|59720", - ["text"] = "Allocates Beastial Skin", + ["id"] = "fractured.stat_2954116742|37302", + ["text"] = "Allocates Kept at Bay", ["type"] = "fractured", }, [562] = { - ["id"] = "fractured.stat_2954116742|30523", - ["text"] = "Allocates Dead can Dance", + ["id"] = "fractured.stat_2954116742|56453", + ["text"] = "Allocates Killer Instinct", ["type"] = "fractured", }, [563] = { - ["id"] = "fractured.stat_3936121440", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["id"] = "fractured.stat_2954116742|26107", + ["text"] = "Allocates Kite Runner", ["type"] = "fractured", }, [564] = { - ["id"] = "fractured.stat_2954116742|8831", - ["text"] = "Allocates Tempered Mind", + ["id"] = "fractured.stat_2954116742|2397", + ["text"] = "Allocates Last Stand", ["type"] = "fractured", }, [565] = { - ["id"] = "fractured.stat_2954116742|2645", - ["text"] = "Allocates Skullcrusher", + ["id"] = "fractured.stat_2954116742|58096", + ["text"] = "Allocates Lasting Incantations", ["type"] = "fractured", }, [566] = { - ["id"] = "fractured.stat_2954116742|40166", - ["text"] = "Allocates Deep Trance", + ["id"] = "fractured.stat_2954116742|61741", + ["text"] = "Allocates Lasting Toxins", ["type"] = "fractured", }, [567] = { - ["id"] = "fractured.stat_1129429646", - ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + ["id"] = "fractured.stat_2954116742|18496", + ["text"] = "Allocates Lasting Trauma", ["type"] = "fractured", }, [568] = { - ["id"] = "fractured.stat_2954116742|24630", - ["text"] = "Allocates Fulmination", + ["id"] = "fractured.stat_2954116742|8607", + ["text"] = "Allocates Lavianga's Brew", ["type"] = "fractured", }, [569] = { - ["id"] = "fractured.stat_2954116742|25711", - ["text"] = "Allocates Thrill of Battle", + ["id"] = "fractured.stat_2954116742|45599", + ["text"] = "Allocates Lay Siege", ["type"] = "fractured", }, [570] = { - ["id"] = "fractured.stat_2954116742|17372", - ["text"] = "Allocates Reaching Strike", + ["id"] = "fractured.stat_2954116742|40687", + ["text"] = "Allocates Lead by Example", ["type"] = "fractured", }, [571] = { - ["id"] = "fractured.stat_2954116742|50884", - ["text"] = "Allocates Primal Sundering", + ["id"] = "fractured.stat_2954116742|8531", + ["text"] = "Allocates Leaping Ambush", ["type"] = "fractured", }, [572] = { - ["id"] = "fractured.stat_2954116742|49984", - ["text"] = "Allocates Spellblade", + ["id"] = "fractured.stat_2954116742|63431", + ["text"] = "Allocates Leeching Toxins", ["type"] = "fractured", }, [573] = { - ["id"] = "fractured.stat_2954116742|42177", - ["text"] = "Allocates Blurred Motion", + ["id"] = "fractured.stat_2954116742|55131", + ["text"] = "Allocates Light on your Feet", ["type"] = "fractured", }, [574] = { - ["id"] = "fractured.stat_2112395885", - ["text"] = "#% increased amount of Life Leeched", + ["id"] = "fractured.stat_2954116742|13738", + ["text"] = "Allocates Lightning Quick", ["type"] = "fractured", }, [575] = { - ["id"] = "fractured.stat_2954116742|62803", - ["text"] = "Allocates Woodland Aspect", + ["id"] = "fractured.stat_2954116742|44566", + ["text"] = "Allocates Lightning Rod", ["type"] = "fractured", }, [576] = { - ["id"] = "fractured.stat_2954116742|30456", - ["text"] = "Allocates High Alert", + ["id"] = "fractured.stat_2954116742|56063", + ["text"] = "Allocates Lingering Horror", ["type"] = "fractured", }, [577] = { - ["id"] = "fractured.stat_2954116742|21537", - ["text"] = "Allocates Fervour", + ["id"] = "fractured.stat_2954116742|16499", + ["text"] = "Allocates Lingering Whispers", ["type"] = "fractured", }, [578] = { - ["id"] = "fractured.stat_2954116742|50392", - ["text"] = "Allocates Brute Strength", + ["id"] = "fractured.stat_2954116742|62887", + ["text"] = "Allocates Living Death", ["type"] = "fractured", }, [579] = { - ["id"] = "fractured.stat_2954116742|34531", - ["text"] = "Allocates Hallowed", + ["id"] = "fractured.stat_2954116742|31745", + ["text"] = "Allocates Lockdown", ["type"] = "fractured", }, [580] = { - ["id"] = "fractured.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["id"] = "fractured.stat_2954116742|56999", + ["text"] = "Allocates Locked On", ["type"] = "fractured", }, [581] = { - ["id"] = "fractured.stat_1776411443", - ["text"] = "Break #% increased Armour", + ["id"] = "fractured.stat_2954116742|31826", + ["text"] = "Allocates Long Distance Relationship", ["type"] = "fractured", }, [582] = { - ["id"] = "fractured.stat_2954116742|11774", - ["text"] = "Allocates The Spring Hare", + ["id"] = "fractured.stat_2954116742|13542", + ["text"] = "Allocates Loose Flesh", ["type"] = "fractured", }, [583] = { - ["id"] = "fractured.stat_2954116742|35560", - ["text"] = "Allocates At your Command", + ["id"] = "fractured.stat_2954116742|33240", + ["text"] = "Allocates Lord of Horrors", ["type"] = "fractured", }, [584] = { - ["id"] = "fractured.stat_2954116742|60404", - ["text"] = "Allocates Perfect Opportunity", + ["id"] = "fractured.stat_2954116742|42959", + ["text"] = "Allocates Low Tolerance", ["type"] = "fractured", }, [585] = { - ["id"] = "fractured.stat_2954116742|8554", - ["text"] = "Allocates Burning Nature", + ["id"] = "fractured.stat_2954116742|51891", + ["text"] = "Allocates Lucidity", ["type"] = "fractured", }, [586] = { - ["id"] = "fractured.stat_2954116742|58426", - ["text"] = "Allocates Pocket Sand", + ["id"] = "fractured.stat_2954116742|59303", + ["text"] = "Allocates Lucky Rabbit Foot", ["type"] = "fractured", }, [587] = { - ["id"] = "fractured.stat_2954116742|43677", - ["text"] = "Allocates Crippling Toxins", + ["id"] = "fractured.stat_2954116742|1104", + ["text"] = "Allocates Lust for Power", ["type"] = "fractured", }, [588] = { - ["id"] = "fractured.stat_2954116742|12611", - ["text"] = "Allocates Harness the Elements", + ["id"] = "fractured.stat_2954116742|27009", + ["text"] = "Allocates Lust for Sacrifice", ["type"] = "fractured", }, [589] = { - ["id"] = "fractured.stat_3477720557", - ["text"] = "Area has patches of Shocked Ground", + ["id"] = "fractured.stat_2954116742|44952", + ["text"] = "Allocates Made to Last", ["type"] = "fractured", }, [590] = { - ["id"] = "fractured.stat_1347539079", - ["text"] = "#% Surpassing chance to fire an additional Projectile", + ["id"] = "fractured.stat_2954116742|23738", + ["text"] = "Allocates Madness in the Bones", ["type"] = "fractured", }, [591] = { - ["id"] = "fractured.stat_2954116742|9226", - ["text"] = "Allocates Mental Perseverance", + ["id"] = "fractured.stat_2954116742|41580", + ["text"] = "Allocates Maiming Strike", ["type"] = "fractured", }, [592] = { - ["id"] = "fractured.stat_2954116742|33887", - ["text"] = "Allocates Full Salvo", + ["id"] = "fractured.stat_2954116742|37742", + ["text"] = "Allocates Manifold Method", ["type"] = "fractured", }, [593] = { - ["id"] = "fractured.stat_2954116742|17955", - ["text"] = "Allocates Careful Consideration", + ["id"] = "fractured.stat_2954116742|64050", + ["text"] = "Allocates Marathon Runner", ["type"] = "fractured", }, [594] = { - ["id"] = "fractured.stat_2954116742|65023", - ["text"] = "Allocates Impenetrable Shell", + ["id"] = "fractured.stat_2954116742|44756", + ["text"] = "Allocates Marked Agility", ["type"] = "fractured", }, [595] = { - ["id"] = "fractured.stat_2954116742|5284", - ["text"] = "Allocates Shredding Force", + ["id"] = "fractured.stat_2954116742|36976", + ["text"] = "Allocates Marked for Death", ["type"] = "fractured", }, [596] = { - ["id"] = "fractured.stat_2954116742|39567", - ["text"] = "Allocates Ingenuity", + ["id"] = "fractured.stat_2954116742|63830", + ["text"] = "Allocates Marked for Sickness", ["type"] = "fractured", }, [597] = { - ["id"] = "fractured.stat_2954116742|46224", - ["text"] = "Allocates Arcane Alchemy", + ["id"] = "fractured.stat_2954116742|2113", + ["text"] = "Allocates Martial Artistry", ["type"] = "fractured", }, [598] = { - ["id"] = "fractured.stat_2954116742|4031", - ["text"] = "Allocates Icebreaker", + ["id"] = "fractured.stat_2954116742|27108", + ["text"] = "Allocates Mass Hysteria", ["type"] = "fractured", }, [599] = { - ["id"] = "fractured.stat_2954116742|38628", - ["text"] = "Allocates Escalating Toxins", + ["id"] = "fractured.stat_2954116742|30341", + ["text"] = "Allocates Master Fletching", ["type"] = "fractured", }, [600] = { - ["id"] = "fractured.stat_2954116742|47514", - ["text"] = "Allocates Dizzying Hits", + ["id"] = "fractured.stat_2954116742|27513", + ["text"] = "Allocates Material Solidification", ["type"] = "fractured", }, [601] = { - ["id"] = "fractured.stat_3821543413", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["id"] = "fractured.stat_2954116742|3215", + ["text"] = "Allocates Melding", ["type"] = "fractured", }, [602] = { - ["id"] = "fractured.stat_2954116742|35876", - ["text"] = "Allocates Admonisher", + ["id"] = "fractured.stat_2954116742|43939", + ["text"] = "Allocates Melting Flames", ["type"] = "fractured", }, [603] = { - ["id"] = "fractured.stat_2954116742|44765", - ["text"] = "Allocates Distracting Presence", + ["id"] = "fractured.stat_2954116742|16466", + ["text"] = "Allocates Mental Alacrity", ["type"] = "fractured", }, [604] = { - ["id"] = "fractured.stat_2954116742|13542", - ["text"] = "Allocates Loose Flesh", + ["id"] = "fractured.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", ["type"] = "fractured", }, [605] = { - ["id"] = "fractured.stat_2954116742|30720", - ["text"] = "Allocates Entropic Incarnation", + ["id"] = "fractured.stat_2954116742|24120", + ["text"] = "Allocates Mental Toughness", ["type"] = "fractured", }, [606] = { - ["id"] = "fractured.stat_2954116742|28329", - ["text"] = "Allocates Pressure Points", + ["id"] = "fractured.stat_2954116742|11392", + ["text"] = "Allocates Molten Being", ["type"] = "fractured", }, [607] = { - ["id"] = "fractured.stat_2954116742|31373", - ["text"] = "Allocates Vocal Empowerment", + ["id"] = "fractured.stat_2954116742|17548", + ["text"] = "Allocates Moment of Truth", ["type"] = "fractured", }, [608] = { - ["id"] = "fractured.stat_2954116742|40270", - ["text"] = "Allocates Frenetic", + ["id"] = "fractured.stat_2954116742|63579", + ["text"] = "Allocates Momentum", ["type"] = "fractured", }, [609] = { - ["id"] = "fractured.stat_2954116742|6655", - ["text"] = "Allocates Aggravation", + ["id"] = "fractured.stat_2954116742|8810", + ["text"] = "Allocates Multitasking", ["type"] = "fractured", }, [610] = { - ["id"] = "fractured.stat_2954116742|22817", - ["text"] = "Allocates Inevitable Rupture", + ["id"] = "fractured.stat_2954116742|934", + ["text"] = "Allocates Natural Immunity", ["type"] = "fractured", }, [611] = { - ["id"] = "fractured.stat_2954116742|6544", - ["text"] = "Allocates Burning Strikes", + ["id"] = "fractured.stat_2954116742|4709", + ["text"] = "Allocates Near Sighted", ["type"] = "fractured", }, [612] = { - ["id"] = "fractured.stat_942519401", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["id"] = "fractured.stat_2954116742|35581", + ["text"] = "Allocates Near at Hand", ["type"] = "fractured", }, [613] = { - ["id"] = "fractured.stat_2954116742|57047", - ["text"] = "Allocates Polymathy", + ["id"] = "fractured.stat_2954116742|11376", + ["text"] = "Allocates Necrotic Touch", ["type"] = "fractured", }, [614] = { - ["id"] = "fractured.stat_565784293", - ["text"] = "#% increased Knockback Distance", + ["id"] = "fractured.stat_2954116742|37266", + ["text"] = "Allocates Nourishing Ally", ["type"] = "fractured", }, [615] = { - ["id"] = "fractured.stat_3429148113", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["id"] = "fractured.stat_2954116742|60992", + ["text"] = "Allocates Nurturing Guardian", ["type"] = "fractured", }, [616] = { - ["id"] = "fractured.stat_2954116742|7604", - ["text"] = "Allocates Rapid Strike", + ["id"] = "fractured.stat_2954116742|42036", + ["text"] = "Allocates Off-Balancing Retort", ["type"] = "fractured", }, [617] = { - ["id"] = "fractured.stat_1495814176", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + ["id"] = "fractured.stat_2954116742|34316", + ["text"] = "Allocates One with the River", ["type"] = "fractured", }, [618] = { - ["id"] = "fractured.stat_2954116742|64543", - ["text"] = "Allocates Unbound Forces", + ["id"] = "fractured.stat_2954116742|9444", + ["text"] = "Allocates One with the Storm", ["type"] = "fractured", }, [619] = { - ["id"] = "fractured.stat_2954116742|19442", - ["text"] = "Allocates Prolonged Assault", + ["id"] = "fractured.stat_2954116742|52199", + ["text"] = "Allocates Overexposure", ["type"] = "fractured", }, [620] = { - ["id"] = "fractured.stat_2954116742|10398", - ["text"] = "Allocates Sudden Escalation", + ["id"] = "fractured.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", ["type"] = "fractured", }, [621] = { - ["id"] = "fractured.stat_2954116742|28482", - ["text"] = "Allocates Total Incineration", + ["id"] = "fractured.stat_2954116742|47635", + ["text"] = "Allocates Overload", ["type"] = "fractured", }, [622] = { - ["id"] = "fractured.stat_2954116742|42347", - ["text"] = "Allocates Chakra of Sight", + ["id"] = "fractured.stat_2954116742|25513", + ["text"] = "Allocates Overwhelm", ["type"] = "fractured", }, [623] = { - ["id"] = "fractured.stat_2954116742|40117", - ["text"] = "Allocates Spiked Armour", + ["id"] = "fractured.stat_2954116742|57388", + ["text"] = "Allocates Overwhelming Strike", ["type"] = "fractured", }, [624] = { - ["id"] = "fractured.stat_2954116742|23427", - ["text"] = "Allocates Chilled to the Bone", + ["id"] = "fractured.stat_2954116742|10295", + ["text"] = "Allocates Overzealous", ["type"] = "fractured", }, [625] = { - ["id"] = "fractured.stat_2954116742|1104", - ["text"] = "Allocates Lust for Power", + ["id"] = "fractured.stat_2954116742|62230", + ["text"] = "Allocates Patient Barrier", ["type"] = "fractured", }, [626] = { - ["id"] = "fractured.stat_2954116742|51891", - ["text"] = "Allocates Lucidity", + ["id"] = "fractured.stat_2954116742|60404", + ["text"] = "Allocates Perfect Opportunity", ["type"] = "fractured", }, [627] = { - ["id"] = "fractured.stat_2954116742|32354", - ["text"] = "Allocates Defiance", + ["id"] = "fractured.stat_2954116742|49661", + ["text"] = "Allocates Perfectly Placed Knife", ["type"] = "fractured", }, [628] = { - ["id"] = "fractured.stat_2954116742|15644", - ["text"] = "Allocates Shedding Skin", + ["id"] = "fractured.stat_2954116742|17330", + ["text"] = "Allocates Perforation", ["type"] = "fractured", }, [629] = { - ["id"] = "fractured.stat_2954116742|20414", - ["text"] = "Allocates Reprisal", + ["id"] = "fractured.stat_2954116742|2863", + ["text"] = "Allocates Perpetual Freeze", ["type"] = "fractured", }, [630] = { - ["id"] = "fractured.stat_2954116742|63074", - ["text"] = "Allocates Dark Entries", + ["id"] = "fractured.stat_2954116742|34308", + ["text"] = "Allocates Personal Touch", ["type"] = "fractured", }, [631] = { - ["id"] = "fractured.stat_2954116742|48418", - ["text"] = "Allocates Hefty Unit", + ["id"] = "fractured.stat_2954116742|7651", + ["text"] = "Allocates Pierce the Heart", ["type"] = "fractured", }, [632] = { - ["id"] = "fractured.stat_2954116742|51871", - ["text"] = "Allocates Immortal Thirst", + ["id"] = "fractured.stat_2954116742|17260", + ["text"] = "Allocates Piercing Claw", ["type"] = "fractured", }, [633] = { - ["id"] = "fractured.stat_2954116742|14211", - ["text"] = "Allocates Shredding Contraptions", + ["id"] = "fractured.stat_2954116742|60083", + ["text"] = "Allocates Pin and Run", ["type"] = "fractured", }, [634] = { - ["id"] = "fractured.stat_2954116742|38053", - ["text"] = "Allocates Deafening Cries", + ["id"] = "fractured.stat_2954116742|16816", + ["text"] = "Allocates Pinpoint Shot", ["type"] = "fractured", }, [635] = { - ["id"] = "fractured.stat_3858398337", - ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["id"] = "fractured.stat_2954116742|38111", + ["text"] = "Allocates Pliable Flesh", ["type"] = "fractured", }, [636] = { - ["id"] = "fractured.stat_2954116742|23227", - ["text"] = "Allocates Initiative", + ["id"] = "fractured.stat_2954116742|58426", + ["text"] = "Allocates Pocket Sand", ["type"] = "fractured", }, [637] = { - ["id"] = "fractured.stat_2954116742|16466", - ["text"] = "Allocates Mental Alacrity", + ["id"] = "fractured.stat_2954116742|57047", + ["text"] = "Allocates Polymathy", ["type"] = "fractured", }, [638] = { - ["id"] = "fractured.stat_2954116742|49550", - ["text"] = "Allocates Prolonged Fury", + ["id"] = "fractured.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", ["type"] = "fractured", }, [639] = { - ["id"] = "fractured.stat_2954116742|17229", - ["text"] = "Allocates Silent Guardian", + ["id"] = "fractured.stat_2954116742|15083", + ["text"] = "Allocates Power Conduction", ["type"] = "fractured", }, [640] = { - ["id"] = "fractured.stat_2954116742|39347", - ["text"] = "Allocates Breaking Blows", + ["id"] = "fractured.stat_2954116742|6178", + ["text"] = "Allocates Power Shots", ["type"] = "fractured", }, [641] = { - ["id"] = "fractured.stat_2954116742|53935", - ["text"] = "Allocates Briny Carapace", + ["id"] = "fractured.stat_2954116742|13895", + ["text"] = "Allocates Precise Point", ["type"] = "fractured", }, [642] = { - ["id"] = "fractured.stat_2954116742|21164", - ["text"] = "Allocates Fleshcrafting", + ["id"] = "fractured.stat_2954116742|19337", + ["text"] = "Allocates Precision Salvo", ["type"] = "fractured", }, [643] = { - ["id"] = "fractured.stat_2954116742|15030", - ["text"] = "Allocates Consistent Intake", + ["id"] = "fractured.stat_2954116742|21380", + ["text"] = "Allocates Preemptive Strike", ["type"] = "fractured", }, [644] = { - ["id"] = "fractured.stat_2954116742|63255", - ["text"] = "Allocates Savagery", + ["id"] = "fractured.stat_2954116742|37872", + ["text"] = "Allocates Presence Present", ["type"] = "fractured", }, [645] = { - ["id"] = "fractured.stat_2954116742|53294", - ["text"] = "Allocates Burn Away", + ["id"] = "fractured.stat_2954116742|32951", + ["text"] = "Allocates Preservation", ["type"] = "fractured", }, [646] = { - ["id"] = "fractured.stat_2954116742|17150", - ["text"] = "Allocates General's Bindings", + ["id"] = "fractured.stat_2954116742|28329", + ["text"] = "Allocates Pressure Points", ["type"] = "fractured", }, [647] = { - ["id"] = "fractured.stat_2954116742|46365", - ["text"] = "Allocates Gigantic Following", + ["id"] = "fractured.stat_2954116742|9908", + ["text"] = "Allocates Price of Freedom", ["type"] = "fractured", }, [648] = { - ["id"] = "fractured.stat_2174054121", - ["text"] = "#% chance to inflict Bleeding on Hit", + ["id"] = "fractured.stat_2954116742|32071", + ["text"] = "Allocates Primal Growth", ["type"] = "fractured", }, [649] = { - ["id"] = "fractured.stat_2954116742|14934", - ["text"] = "Allocates Spiral into Mania", + ["id"] = "fractured.stat_2954116742|50884", + ["text"] = "Allocates Primal Sundering", ["type"] = "fractured", }, [650] = { - ["id"] = "fractured.stat_2954116742|7651", - ["text"] = "Allocates Pierce the Heart", + ["id"] = "fractured.stat_2954116742|26356", + ["text"] = "Allocates Primed to Explode", ["type"] = "fractured", }, [651] = { - ["id"] = "fractured.stat_2954116742|34300", - ["text"] = "Allocates Conservative Casting", + ["id"] = "fractured.stat_2954116742|62034", + ["text"] = "Allocates Prism Guard", ["type"] = "fractured", }, [652] = { - ["id"] = "fractured.stat_2954116742|3567", - ["text"] = "Allocates Raw Mana", + ["id"] = "fractured.stat_2954116742|54814", + ["text"] = "Allocates Profane Commander", ["type"] = "fractured", }, [653] = { - ["id"] = "fractured.stat_2480498143", - ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["id"] = "fractured.stat_2954116742|58397", + ["text"] = "Allocates Proficiency", ["type"] = "fractured", }, [654] = { - ["id"] = "fractured.stat_2954116742|30392", - ["text"] = "Allocates Succour", + ["id"] = "fractured.stat_2954116742|19236", + ["text"] = "Allocates Projectile Bulwark", ["type"] = "fractured", }, [655] = { - ["id"] = "fractured.stat_2954116742|56714", - ["text"] = "Allocates Swift Flight", + ["id"] = "fractured.stat_2954116742|19442", + ["text"] = "Allocates Prolonged Assault", ["type"] = "fractured", }, [656] = { - ["id"] = "fractured.stat_2954116742|56997", - ["text"] = "Allocates Heavy Contact", + ["id"] = "fractured.stat_2954116742|49550", + ["text"] = "Allocates Prolonged Fury", ["type"] = "fractured", }, [657] = { - ["id"] = "fractured.stat_1416406066", - ["text"] = "#% increased Spirit", + ["id"] = "fractured.stat_2954116742|38614", + ["text"] = "Allocates Psychic Fragmentation", ["type"] = "fractured", }, [658] = { - ["id"] = "fractured.stat_2954116742|56453", - ["text"] = "Allocates Killer Instinct", + ["id"] = "fractured.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", ["type"] = "fractured", }, [659] = { - ["id"] = "fractured.stat_3386297724", - ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["id"] = "fractured.stat_2954116742|55149", + ["text"] = "Allocates Pure Chaos", ["type"] = "fractured", }, [660] = { - ["id"] = "fractured.stat_2954116742|42354", - ["text"] = "Allocates Blinding Flash", + ["id"] = "fractured.stat_2954116742|28975", + ["text"] = "Allocates Pure Power", ["type"] = "fractured", }, [661] = { - ["id"] = "fractured.stat_2954116742|47782", - ["text"] = "Allocates Steady Footing", + ["id"] = "fractured.stat_2954116742|6229", + ["text"] = "Allocates Push the Advantage", ["type"] = "fractured", }, [662] = { - ["id"] = "fractured.stat_2954116742|21206", - ["text"] = "Allocates Explosive Impact", + ["id"] = "fractured.stat_2954116742|64119", + ["text"] = "Allocates Rapid Reload", ["type"] = "fractured", }, [663] = { - ["id"] = "fractured.stat_2954116742|40399", - ["text"] = "Allocates Energise", + ["id"] = "fractured.stat_2954116742|7604", + ["text"] = "Allocates Rapid Strike", ["type"] = "fractured", }, [664] = { - ["id"] = "fractured.stat_2954116742|65160", - ["text"] = "Allocates Titanic", + ["id"] = "fractured.stat_2954116742|62185", + ["text"] = "Allocates Rattled", ["type"] = "fractured", }, [665] = { - ["id"] = "fractured.stat_2954116742|35369", - ["text"] = "Allocates Investing Energies", + ["id"] = "fractured.stat_2954116742|3567", + ["text"] = "Allocates Raw Mana", ["type"] = "fractured", }, [666] = { - ["id"] = "fractured.stat_2954116742|64851", - ["text"] = "Allocates Flashy Parrying", + ["id"] = "fractured.stat_2954116742|17372", + ["text"] = "Allocates Reaching Strike", ["type"] = "fractured", }, [667] = { - ["id"] = "fractured.stat_872504239", - ["text"] = "#% increased Stun Buildup with Maces", + ["id"] = "fractured.stat_2954116742|10602", + ["text"] = "Allocates Reaving", ["type"] = "fractured", }, [668] = { - ["id"] = "fractured.stat_2954116742|40803", - ["text"] = "Allocates Sigil of Ice", + ["id"] = "fractured.stat_2954116742|45244", + ["text"] = "Allocates Refills", ["type"] = "fractured", }, [669] = { - ["id"] = "fractured.stat_2954116742|62185", - ["text"] = "Allocates Rattled", + ["id"] = "fractured.stat_2954116742|20388", + ["text"] = "Allocates Regenerative Flesh", ["type"] = "fractured", }, [670] = { - ["id"] = "fractured.stat_2954116742|47270", - ["text"] = "Allocates Inescapable Cold", + ["id"] = "fractured.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", ["type"] = "fractured", }, [671] = { - ["id"] = "fractured.stat_2954116742|34308", - ["text"] = "Allocates Personal Touch", + ["id"] = "fractured.stat_2954116742|55180", + ["text"] = "Allocates Relentless Fallen", ["type"] = "fractured", }, [672] = { - ["id"] = "fractured.stat_1569101201", - ["text"] = "Empowered Attacks deal #% increased Damage", + ["id"] = "fractured.stat_2954116742|65468", + ["text"] = "Allocates Repeating Explosives", ["type"] = "fractured", }, [673] = { - ["id"] = "fractured.stat_2954116742|35855", - ["text"] = "Allocates Fortifying Blood", + ["id"] = "fractured.stat_2954116742|20414", + ["text"] = "Allocates Reprisal", ["type"] = "fractured", }, [674] = { - ["id"] = "fractured.stat_2954116742|32951", - ["text"] = "Allocates Preservation", + ["id"] = "fractured.stat_2954116742|10029", + ["text"] = "Allocates Repulsion", ["type"] = "fractured", }, [675] = { - ["id"] = "fractured.stat_2954116742|17725", - ["text"] = "Allocates Bonded Precision", + ["id"] = "fractured.stat_2954116742|40325", + ["text"] = "Allocates Resolution", ["type"] = "fractured", }, [676] = { - ["id"] = "fractured.stat_2954116742|36976", - ["text"] = "Allocates Marked for Death", + ["id"] = "fractured.stat_2954116742|38972", + ["text"] = "Allocates Restless Dead", ["type"] = "fractured", }, [677] = { - ["id"] = "fractured.stat_2976476845", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["id"] = "fractured.stat_2954116742|7395", + ["text"] = "Allocates Retaliation", ["type"] = "fractured", }, [678] = { - ["id"] = "fractured.stat_2954116742|48699", - ["text"] = "Allocates Frostwalker", + ["id"] = "fractured.stat_2954116742|7062", + ["text"] = "Allocates Reusable Ammunition", ["type"] = "fractured", }, [679] = { - ["id"] = "fractured.stat_2954116742|64443", - ["text"] = "Allocates Impact Force", + ["id"] = "fractured.stat_2954116742|3188", + ["text"] = "Allocates Revenge", ["type"] = "fractured", }, [680] = { - ["id"] = "fractured.stat_2954116742|2486", - ["text"] = "Allocates Stars Aligned", + ["id"] = "fractured.stat_2954116742|8660", + ["text"] = "Allocates Reverberation", ["type"] = "fractured", }, [681] = { - ["id"] = "fractured.stat_2954116742|38398", - ["text"] = "Allocates Apocalypse", + ["id"] = "fractured.stat_2954116742|8957", + ["text"] = "Allocates Right Hand of Darkness", ["type"] = "fractured", }, [682] = { - ["id"] = "fractured.stat_2954116742|10295", - ["text"] = "Allocates Overzealous", + ["id"] = "fractured.stat_2954116742|28613", + ["text"] = "Allocates Roaring Cries", ["type"] = "fractured", }, [683] = { - ["id"] = "fractured.stat_2954116742|59208", - ["text"] = "Allocates Frantic Fighter", + ["id"] = "fractured.stat_2954116742|60269", + ["text"] = "Allocates Roil", ["type"] = "fractured", }, [684] = { - ["id"] = "fractured.stat_2954116742|52199", - ["text"] = "Allocates Overexposure", + ["id"] = "fractured.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", ["type"] = "fractured", }, [685] = { - ["id"] = "fractured.stat_3395186672", - ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["id"] = "fractured.stat_2954116742|53566", + ["text"] = "Allocates Run and Gun", ["type"] = "fractured", }, [686] = { - ["id"] = "fractured.stat_3107707789", - ["text"] = "#% increased Movement Speed while Sprinting", + ["id"] = "fractured.stat_2954116742|14294", + ["text"] = "Allocates Sacrificial Blood", ["type"] = "fractured", }, [687] = { - ["id"] = "fractured.stat_2954116742|27626", - ["text"] = "Allocates Touch the Arcane", + ["id"] = "fractured.stat_2954116742|25619", + ["text"] = "Allocates Sand in the Eyes", ["type"] = "fractured", }, [688] = { - ["id"] = "fractured.stat_2954116742|10602", - ["text"] = "Allocates Reaving", + ["id"] = "fractured.stat_2954116742|58215", + ["text"] = "Allocates Sanguimantic Rituals", ["type"] = "fractured", }, [689] = { - ["id"] = "fractured.stat_2954116742|65193", - ["text"] = "Allocates Viciousness", + ["id"] = "fractured.stat_2954116742|4810", + ["text"] = "Allocates Sanguine Tolerance", ["type"] = "fractured", }, [690] = { - ["id"] = "fractured.stat_2954116742|28963", - ["text"] = "Allocates Chakra of Rhythm", + ["id"] = "fractured.stat_2954116742|63255", + ["text"] = "Allocates Savagery", ["type"] = "fractured", }, [691] = { - ["id"] = "fractured.stat_2301718443", - ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["id"] = "fractured.stat_2954116742|18397", + ["text"] = "Allocates Savoured Blood", ["type"] = "fractured", }, [692] = { - ["id"] = "fractured.stat_2954116742|21453", - ["text"] = "Allocates Breakage", + ["id"] = "fractured.stat_2954116742|45713", + ["text"] = "Allocates Savouring", ["type"] = "fractured", }, [693] = { - ["id"] = "fractured.stat_2954116742|45488", - ["text"] = "Allocates Cross Strike", + ["id"] = "fractured.stat_2954116742|5009", + ["text"] = "Allocates Seeing Stars", ["type"] = "fractured", }, [694] = { - ["id"] = "fractured.stat_2954116742|2999", - ["text"] = "Allocates Final Barrage", + ["id"] = "fractured.stat_2954116742|23630", + ["text"] = "Allocates Self Immolation", ["type"] = "fractured", }, [695] = { - ["id"] = "fractured.stat_2954116742|11392", - ["text"] = "Allocates Molten Being", + ["id"] = "fractured.stat_2954116742|44917", + ["text"] = "Allocates Self Mortification", ["type"] = "fractured", }, [696] = { - ["id"] = "fractured.stat_2954116742|20032", - ["text"] = "Allocates Erraticism", + ["id"] = "fractured.stat_2954116742|36085", + ["text"] = "Allocates Serrated Edges", ["type"] = "fractured", }, [697] = { - ["id"] = "fractured.stat_2954116742|45244", - ["text"] = "Allocates Refills", + ["id"] = "fractured.stat_2954116742|13457", + ["text"] = "Allocates Shadow Dancing", ["type"] = "fractured", }, [698] = { - ["id"] = "fractured.stat_2954116742|55131", - ["text"] = "Allocates Light on your Feet", + ["id"] = "fractured.stat_2954116742|53150", + ["text"] = "Allocates Sharp Sight", ["type"] = "fractured", }, [699] = { - ["id"] = "fractured.stat_2954116742|56893", - ["text"] = "Allocates Thicket Warding", + ["id"] = "fractured.stat_2954116742|61703", + ["text"] = "Allocates Sharpened Claw", ["type"] = "fractured", }, [700] = { - ["id"] = "fractured.stat_2954116742|62887", - ["text"] = "Allocates Living Death", + ["id"] = "fractured.stat_2954116742|41811", + ["text"] = "Allocates Shatter Palm", ["type"] = "fractured", }, [701] = { - ["id"] = "fractured.stat_2954116742|8810", - ["text"] = "Allocates Multitasking", + ["id"] = "fractured.stat_2954116742|48658", + ["text"] = "Allocates Shattering", ["type"] = "fractured", }, [702] = { - ["id"] = "fractured.stat_2954116742|7341", - ["text"] = "Allocates Ignore Pain", + ["id"] = "fractured.stat_2954116742|64415", + ["text"] = "Allocates Shattering Daze", ["type"] = "fractured", }, [703] = { - ["id"] = "fractured.stat_2954116742|51602", - ["text"] = "Allocates Unsight", + ["id"] = "fractured.stat_2954116742|15644", + ["text"] = "Allocates Shedding Skin", ["type"] = "fractured", }, [704] = { - ["id"] = "fractured.stat_2954116742|57805", - ["text"] = "Allocates Clear Space", + ["id"] = "fractured.stat_2954116742|53941", + ["text"] = "Allocates Shimmering", ["type"] = "fractured", }, [705] = { - ["id"] = "fractured.stat_2954116742|10423", - ["text"] = "Allocates Exposed to the Inferno", + ["id"] = "fractured.stat_2954116742|5335", + ["text"] = "Allocates Shimmering Mirage", ["type"] = "fractured", }, [706] = { - ["id"] = "fractured.stat_2954116742|61601", - ["text"] = "Allocates True Strike", + ["id"] = "fractured.stat_2954116742|32448", + ["text"] = "Allocates Shockproof", ["type"] = "fractured", }, [707] = { - ["id"] = "fractured.stat_2954116742|46024", - ["text"] = "Allocates Sigil of Lightning", + ["id"] = "fractured.stat_2954116742|46296", + ["text"] = "Allocates Short Shot", ["type"] = "fractured", }, [708] = { - ["id"] = "fractured.stat_2954116742|32664", - ["text"] = "Allocates Chakra of Breathing", + ["id"] = "fractured.stat_2954116742|55060", + ["text"] = "Allocates Shrapnel", ["type"] = "fractured", }, [709] = { - ["id"] = "fractured.stat_2954116742|53150", - ["text"] = "Allocates Sharp Sight", + ["id"] = "fractured.stat_2954116742|14211", + ["text"] = "Allocates Shredding Contraptions", ["type"] = "fractured", }, [710] = { - ["id"] = "fractured.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["id"] = "fractured.stat_2954116742|5284", + ["text"] = "Allocates Shredding Force", ["type"] = "fractured", }, [711] = { - ["id"] = "fractured.stat_2954116742|58397", - ["text"] = "Allocates Proficiency", + ["id"] = "fractured.stat_2954116742|63037", + ["text"] = "Allocates Sigil of Fire", ["type"] = "fractured", }, [712] = { - ["id"] = "fractured.stat_4142814612", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + ["id"] = "fractured.stat_2954116742|40803", + ["text"] = "Allocates Sigil of Ice", ["type"] = "fractured", }, [713] = { - ["id"] = "fractured.stat_2954116742|42959", - ["text"] = "Allocates Low Tolerance", + ["id"] = "fractured.stat_2954116742|46024", + ["text"] = "Allocates Sigil of Lightning", ["type"] = "fractured", }, [714] = { - ["id"] = "fractured.stat_2954116742|40480", - ["text"] = "Allocates Harmonic Generator", + ["id"] = "fractured.stat_2954116742|17229", + ["text"] = "Allocates Silent Guardian", ["type"] = "fractured", }, [715] = { - ["id"] = "fractured.stat_2954116742|27513", - ["text"] = "Allocates Material Solidification", + ["id"] = "fractured.stat_2954116742|52392", + ["text"] = "Allocates Singular Purpose", ["type"] = "fractured", }, [716] = { - ["id"] = "fractured.stat_2954116742|49618", - ["text"] = "Allocates Deadly Flourish", + ["id"] = "fractured.stat_2954116742|15829", + ["text"] = "Allocates Siphon", ["type"] = "fractured", }, [717] = { - ["id"] = "fractured.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["id"] = "fractured.stat_2954116742|12906", + ["text"] = "Allocates Sitting Duck", ["type"] = "fractured", }, [718] = { - ["id"] = "fractured.stat_2954116742|62310", - ["text"] = "Allocates Incendiary", + ["id"] = "fractured.stat_2954116742|2645", + ["text"] = "Allocates Skullcrusher", ["type"] = "fractured", }, [719] = { - ["id"] = "fractured.stat_2954116742|30341", - ["text"] = "Allocates Master Fletching", + ["id"] = "fractured.stat_2954116742|23362", + ["text"] = "Allocates Slippery Ice", ["type"] = "fractured", }, [720] = { - ["id"] = "fractured.stat_2954116742|51509", - ["text"] = "Allocates Waters of Life", + ["id"] = "fractured.stat_2954116742|31326", + ["text"] = "Allocates Slow Burn", ["type"] = "fractured", }, [721] = { - ["id"] = "fractured.stat_2690740379", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + ["id"] = "fractured.stat_2954116742|11526", + ["text"] = "Allocates Sniper", ["type"] = "fractured", }, [722] = { - ["id"] = "fractured.stat_2954116742|22626", - ["text"] = "Allocates Irreparable", + ["id"] = "fractured.stat_2954116742|9421", + ["text"] = "Allocates Snowpiercer", ["type"] = "fractured", }, [723] = { - ["id"] = "fractured.stat_2954116742|38972", - ["text"] = "Allocates Restless Dead", + ["id"] = "fractured.stat_2954116742|51169", + ["text"] = "Allocates Soul Bloom", ["type"] = "fractured", }, [724] = { - ["id"] = "fractured.stat_1276056105", - ["text"] = "#% increased Gold found in this Area (Gold Piles)", + ["id"] = "fractured.stat_2954116742|34473", + ["text"] = "Allocates Spaghettification", ["type"] = "fractured", }, [725] = { - ["id"] = "fractured.stat_1276056105", - ["text"] = "#% increased Gold found in your Maps (Gold Piles)", + ["id"] = "fractured.stat_2954116742|34324", + ["text"] = "Allocates Spectral Ward", ["type"] = "fractured", }, [726] = { - ["id"] = "fractured.stat_2954116742|36630", - ["text"] = "Allocates Incision", + ["id"] = "fractured.stat_2954116742|17254", + ["text"] = "Allocates Spell Haste", ["type"] = "fractured", }, [727] = { - ["id"] = "fractured.stat_2954116742|7062", - ["text"] = "Allocates Reusable Ammunition", + ["id"] = "fractured.stat_2954116742|49984", + ["text"] = "Allocates Spellblade", ["type"] = "fractured", }, [728] = { - ["id"] = "fractured.stat_2954116742|4716", - ["text"] = "Allocates Afterimage", + ["id"] = "fractured.stat_2954116742|40117", + ["text"] = "Allocates Spiked Armour", ["type"] = "fractured", }, [729] = { - ["id"] = "fractured.stat_2954116742|54937", - ["text"] = "Allocates Vengeful Fury", + ["id"] = "fractured.stat_2954116742|36808", + ["text"] = "Allocates Spiked Shield", ["type"] = "fractured", }, [730] = { - ["id"] = "fractured.stat_2954116742|6133", - ["text"] = "Allocates Core of the Guardian", + ["id"] = "fractured.stat_2954116742|1546", + ["text"] = "Allocates Spiral into Depression", ["type"] = "fractured", }, [731] = { - ["id"] = "fractured.stat_2954116742|47418", - ["text"] = "Allocates Warding Potions", + ["id"] = "fractured.stat_2954116742|2138", + ["text"] = "Allocates Spiral into Insanity", ["type"] = "fractured", }, [732] = { - ["id"] = "fractured.stat_2709646369", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + ["id"] = "fractured.stat_2954116742|14934", + ["text"] = "Allocates Spiral into Mania", ["type"] = "fractured", }, [733] = { - ["id"] = "fractured.stat_2954116742|58183", - ["text"] = "Allocates Blood Tearing", + ["id"] = "fractured.stat_2954116742|49088", + ["text"] = "Allocates Splintering Force", ["type"] = "fractured", }, [734] = { - ["id"] = "fractured.stat_512071314", - ["text"] = "Monsters deal #% of Damage as Extra Lightning", + ["id"] = "fractured.stat_2954116742|13980", + ["text"] = "Allocates Split the Earth", ["type"] = "fractured", }, [735] = { - ["id"] = "fractured.stat_429143663", - ["text"] = "Banner Skills have #% increased Area of Effect", + ["id"] = "fractured.stat_2954116742|20251", + ["text"] = "Allocates Splitting Ground", ["type"] = "fractured", }, [736] = { - ["id"] = "fractured.stat_2954116742|35849", - ["text"] = "Allocates Thickened Arteries", + ["id"] = "fractured.stat_2954116742|23736", + ["text"] = "Allocates Spray and Pray", ["type"] = "fractured", }, [737] = { - ["id"] = "fractured.stat_2954116742|10612", - ["text"] = "Allocates Embodiment of Frost", + ["id"] = "fractured.stat_2954116742|11578", + ["text"] = "Allocates Spreading Shocks", ["type"] = "fractured", }, [738] = { - ["id"] = "fractured.stat_2954116742|49661", - ["text"] = "Allocates Perfectly Placed Knife", + ["id"] = "fractured.stat_2954116742|63759", + ["text"] = "Allocates Stacking Toxins", ["type"] = "fractured", }, [739] = { - ["id"] = "fractured.stat_2954116742|31433", - ["text"] = "Allocates Catalysis", + ["id"] = "fractured.stat_2954116742|39881", + ["text"] = "Allocates Staggering Palm", ["type"] = "fractured", }, [740] = { - ["id"] = "fractured.stat_2954116742|12750", - ["text"] = "Allocates Vale Shelter", + ["id"] = "fractured.stat_2954116742|5802", + ["text"] = "Allocates Stand and Deliver", ["type"] = "fractured", }, [741] = { - ["id"] = "fractured.stat_2954116742|2134", - ["text"] = "Allocates Toxic Tolerance", + ["id"] = "fractured.stat_2954116742|2486", + ["text"] = "Allocates Stars Aligned", ["type"] = "fractured", }, [742] = { - ["id"] = "fractured.stat_2954116742|46692", - ["text"] = "Allocates Efficient Alchemy", + ["id"] = "fractured.stat_2954116742|47782", + ["text"] = "Allocates Steady Footing", ["type"] = "fractured", }, [743] = { - ["id"] = "fractured.stat_2954116742|35792", - ["text"] = "Allocates Blood of Rage", + ["id"] = "fractured.stat_2954116742|7163", + ["text"] = "Allocates Stimulants", ["type"] = "fractured", }, [744] = { - ["id"] = "fractured.stat_2954116742|29514", - ["text"] = "Allocates Cluster Bombs", + ["id"] = "fractured.stat_2954116742|1603", + ["text"] = "Allocates Storm Driven", ["type"] = "fractured", }, [745] = { - ["id"] = "fractured.stat_2954116742|38895", - ["text"] = "Allocates Crystal Elixir", + ["id"] = "fractured.stat_2954116742|61921", + ["text"] = "Allocates Storm Surge", ["type"] = "fractured", }, [746] = { - ["id"] = "fractured.stat_2954116742|46384", - ["text"] = "Allocates Wide Barrier", + ["id"] = "fractured.stat_2954116742|336", + ["text"] = "Allocates Storm Swell", ["type"] = "fractured", }, [747] = { - ["id"] = "fractured.stat_2954116742|48565", - ["text"] = "Allocates Bringer of Order", + ["id"] = "fractured.stat_2954116742|43139", + ["text"] = "Allocates Stormbreaker", ["type"] = "fractured", }, [748] = { - ["id"] = "fractured.stat_2954116742|50795", - ["text"] = "Allocates Careful Aim", + ["id"] = "fractured.stat_2954116742|38535", + ["text"] = "Allocates Stormcharged", ["type"] = "fractured", }, [749] = { - ["id"] = "fractured.stat_2954116742|14324", - ["text"] = "Allocates Arcane Blossom", + ["id"] = "fractured.stat_2954116742|13515", + ["text"] = "Allocates Stormwalker", ["type"] = "fractured", }, [750] = { - ["id"] = "fractured.stat_2954116742|43139", - ["text"] = "Allocates Stormbreaker", + ["id"] = "fractured.stat_2954116742|10998", + ["text"] = "Allocates Strong Chin", ["type"] = "fractured", }, [751] = { - ["id"] = "fractured.stat_2954116742|35477", - ["text"] = "Allocates Far Sighted", + ["id"] = "fractured.stat_2954116742|39369", + ["text"] = "Allocates Struck Through", ["type"] = "fractured", }, [752] = { - ["id"] = "fractured.stat_2954116742|15617", - ["text"] = "Allocates Heavy Drinker", + ["id"] = "fractured.stat_2954116742|38342", + ["text"] = "Allocates Stupefy", ["type"] = "fractured", }, [753] = { - ["id"] = "fractured.stat_2954116742|61921", - ["text"] = "Allocates Storm Surge", + ["id"] = "fractured.stat_2954116742|60138", + ["text"] = "Allocates Stylebender", ["type"] = "fractured", }, [754] = { - ["id"] = "fractured.stat_2954116742|11838", - ["text"] = "Allocates Dreamcatcher", + ["id"] = "fractured.stat_2954116742|55193", + ["text"] = "Allocates Subterfuge Mask", ["type"] = "fractured", }, [755] = { - ["id"] = "fractured.stat_3399401168", - ["text"] = "#% to Fire Spell Critical Hit Chance", + ["id"] = "fractured.stat_2954116742|30392", + ["text"] = "Allocates Succour", ["type"] = "fractured", }, [756] = { - ["id"] = "fractured.stat_2954116742|53367", - ["text"] = "Allocates Symbol of Defiance", + ["id"] = "fractured.stat_2954116742|10398", + ["text"] = "Allocates Sudden Escalation", ["type"] = "fractured", }, [757] = { - ["id"] = "fractured.stat_2954116742|2575", - ["text"] = "Allocates Ancestral Alacrity", + ["id"] = "fractured.stat_2954116742|29372", + ["text"] = "Allocates Sudden Infuriation", ["type"] = "fractured", }, [758] = { - ["id"] = "fractured.stat_2954116742|23736", - ["text"] = "Allocates Spray and Pray", + ["id"] = "fractured.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", ["type"] = "fractured", }, [759] = { - ["id"] = "fractured.stat_2954116742|15374", - ["text"] = "Allocates Hale Heart", + ["id"] = "fractured.stat_2954116742|2511", + ["text"] = "Allocates Sundering", ["type"] = "fractured", }, [760] = { - ["id"] = "fractured.stat_2954116742|23940", - ["text"] = "Allocates Fortified Aegis", + ["id"] = "fractured.stat_2954116742|19249", + ["text"] = "Allocates Supportive Ancestors", ["type"] = "fractured", }, [761] = { - ["id"] = "fractured.stat_2954116742|22811", - ["text"] = "Allocates The Wild Cat", + ["id"] = "fractured.stat_2954116742|42065", + ["text"] = "Allocates Surging Currents", ["type"] = "fractured", }, [762] = { - ["id"] = "fractured.stat_2954116742|46696", - ["text"] = "Allocates Impair", + ["id"] = "fractured.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", ["type"] = "fractured", }, [763] = { - ["id"] = "fractured.stat_2954116742|38342", - ["text"] = "Allocates Stupefy", + ["id"] = "fractured.stat_2954116742|32353", + ["text"] = "Allocates Swift Claw", ["type"] = "fractured", }, [764] = { - ["id"] = "fractured.stat_2954116742|45013", - ["text"] = "Allocates Finishing Blows", + ["id"] = "fractured.stat_2954116742|56714", + ["text"] = "Allocates Swift Flight", ["type"] = "fractured", }, [765] = { - ["id"] = "fractured.stat_1972391381", - ["text"] = "#% increased Explicit Resistance Modifier magnitudes", + ["id"] = "fractured.stat_2954116742|65265", + ["text"] = "Allocates Swift Interruption", ["type"] = "fractured", }, [766] = { - ["id"] = "fractured.stat_4225700219", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", + ["id"] = "fractured.stat_2954116742|53367", + ["text"] = "Allocates Symbol of Defiance", ["type"] = "fractured", }, [767] = { - ["id"] = "fractured.stat_2954116742|40213", - ["text"] = "Allocates Taste for Blood", + ["id"] = "fractured.stat_2954116742|17825", + ["text"] = "Allocates Tactical Retreat", ["type"] = "fractured", }, [768] = { - ["id"] = "fractured.stat_2954116742|51934", - ["text"] = "Allocates Invocated Efficiency", + ["id"] = "fractured.stat_2954116742|22864", + ["text"] = "Allocates Tainted Strike", ["type"] = "fractured", }, [769] = { - ["id"] = "fractured.stat_2954116742|16626", - ["text"] = "Allocates Impact Area", + ["id"] = "fractured.stat_2954116742|40213", + ["text"] = "Allocates Taste for Blood", ["type"] = "fractured", }, [770] = { - ["id"] = "fractured.stat_1879340377", - ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", + ["id"] = "fractured.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", ["type"] = "fractured", }, [771] = { - ["id"] = "fractured.stat_3590792340", - ["text"] = "#% increased Mana Flask Charges gained", + ["id"] = "fractured.stat_2954116742|12412", + ["text"] = "Allocates Temporal Mastery", ["type"] = "fractured", }, [772] = { - ["id"] = "fractured.stat_2954116742|40073", - ["text"] = "Allocates Drenched", + ["id"] = "fractured.stat_2954116742|25971", + ["text"] = "Allocates Tenfold Attacks", ["type"] = "fractured", }, [773] = { - ["id"] = "fractured.stat_2954116742|17825", - ["text"] = "Allocates Tactical Retreat", + ["id"] = "fractured.stat_2954116742|7847", + ["text"] = "Allocates The Fabled Stag", ["type"] = "fractured", }, [774] = { - ["id"] = "fractured.stat_1505023559", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["id"] = "fractured.stat_2954116742|34543", + ["text"] = "Allocates The Frenzied Bear", ["type"] = "fractured", }, [775] = { - ["id"] = "fractured.stat_2954116742|17762", - ["text"] = "Allocates Vengeance", + ["id"] = "fractured.stat_2954116742|48734", + ["text"] = "Allocates The Howling Primate", ["type"] = "fractured", }, [776] = { - ["id"] = "fractured.stat_2954116742|58939", - ["text"] = "Allocates Dispatch Foes", + ["id"] = "fractured.stat_2954116742|28542", + ["text"] = "Allocates The Molten One's Gift", ["type"] = "fractured", }, [777] = { - ["id"] = "fractured.stat_2954116742|33059", - ["text"] = "Allocates Back in Action", + ["id"] = "fractured.stat_2954116742|27176", + ["text"] = "Allocates The Power Within", ["type"] = "fractured", }, [778] = { - ["id"] = "fractured.stat_2954116742|27009", - ["text"] = "Allocates Lust for Sacrifice", + ["id"] = "fractured.stat_2954116742|21349", + ["text"] = "Allocates The Quick Fox", ["type"] = "fractured", }, [779] = { - ["id"] = "fractured.stat_2954116742|16256", - ["text"] = "Allocates Ether Flow", + ["id"] = "fractured.stat_2954116742|52971", + ["text"] = "Allocates The Soul Meridian", ["type"] = "fractured", }, [780] = { - ["id"] = "fractured.stat_2954116742|54640", - ["text"] = "Allocates Constricting", + ["id"] = "fractured.stat_2954116742|11774", + ["text"] = "Allocates The Spring Hare", ["type"] = "fractured", }, [781] = { - ["id"] = "fractured.stat_1320662475", - ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["id"] = "fractured.stat_2954116742|22811", + ["text"] = "Allocates The Wild Cat", ["type"] = "fractured", }, [782] = { - ["id"] = "fractured.stat_944643028", - ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["id"] = "fractured.stat_2954116742|53185", + ["text"] = "Allocates The Winter Owl", ["type"] = "fractured", }, [783] = { - ["id"] = "fractured.stat_2954116742|60138", - ["text"] = "Allocates Stylebender", + ["id"] = "fractured.stat_2954116742|35849", + ["text"] = "Allocates Thickened Arteries", ["type"] = "fractured", }, [784] = { - ["id"] = "fractured.stat_1756380435", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["id"] = "fractured.stat_2954116742|56893", + ["text"] = "Allocates Thicket Warding", ["type"] = "fractured", }, [785] = { - ["id"] = "fractured.stat_2954116742|9227", - ["text"] = "Allocates Focused Thrust", + ["id"] = "fractured.stat_2954116742|19722", + ["text"] = "Allocates Thin Ice", ["type"] = "fractured", }, [786] = { - ["id"] = "fractured.stat_2954116742|65204", - ["text"] = "Allocates Overflowing Power", + ["id"] = "fractured.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", ["type"] = "fractured", }, [787] = { - ["id"] = "fractured.stat_1585769763", - ["text"] = "#% increased Blind Effect", + ["id"] = "fractured.stat_2954116742|25711", + ["text"] = "Allocates Thrill of Battle", ["type"] = "fractured", }, [788] = { - ["id"] = "fractured.stat_2954116742|38969", - ["text"] = "Allocates Finesse", + ["id"] = "fractured.stat_2954116742|56265", + ["text"] = "Allocates Throatseeker", ["type"] = "fractured", }, [789] = { - ["id"] = "fractured.stat_2954116742|51394", - ["text"] = "Allocates Unimpeded", + ["id"] = "fractured.stat_2954116742|63585", + ["text"] = "Allocates Thunderstruck", ["type"] = "fractured", }, [790] = { - ["id"] = "fractured.stat_2954116742|17664", - ["text"] = "Allocates Decisive Retreat", + ["id"] = "fractured.stat_2954116742|42813", + ["text"] = "Allocates Tides of Change", ["type"] = "fractured", }, [791] = { - ["id"] = "fractured.stat_2954116742|20397", - ["text"] = "Allocates Authority", + ["id"] = "fractured.stat_2954116742|24240", + ["text"] = "Allocates Time Manipulation", ["type"] = "fractured", }, [792] = { - ["id"] = "fractured.stat_2954116742|38537", - ["text"] = "Allocates Heartstopping", + ["id"] = "fractured.stat_2954116742|65160", + ["text"] = "Allocates Titanic", ["type"] = "fractured", }, [793] = { - ["id"] = "fractured.stat_2954116742|44005", - ["text"] = "Allocates Casting Cascade", + ["id"] = "fractured.stat_2954116742|28482", + ["text"] = "Allocates Total Incineration", ["type"] = "fractured", }, [794] = { - ["id"] = "fractured.stat_2954116742|12661", - ["text"] = "Allocates Asceticism", + ["id"] = "fractured.stat_2954116742|27626", + ["text"] = "Allocates Touch the Arcane", ["type"] = "fractured", }, [795] = { - ["id"] = "fractured.stat_2954116742|35028", - ["text"] = "Allocates In the Thick of It", + ["id"] = "fractured.stat_2954116742|53823", + ["text"] = "Allocates Towering Shield", ["type"] = "fractured", }, [796] = { - ["id"] = "fractured.stat_2954116742|4627", - ["text"] = "Allocates Climate Change", + ["id"] = "fractured.stat_2954116742|2134", + ["text"] = "Allocates Toxic Tolerance", ["type"] = "fractured", }, [797] = { - ["id"] = "fractured.stat_2954116742|42245", - ["text"] = "Allocates Efficient Inscriptions", + ["id"] = "fractured.stat_2954116742|52180", + ["text"] = "Allocates Trained Deflection", ["type"] = "fractured", }, [798] = { - ["id"] = "fractured.stat_2954116742|58714", - ["text"] = "Allocates Grenadier", + ["id"] = "fractured.stat_2954116742|57785", + ["text"] = "Allocates Trained Turrets", ["type"] = "fractured", }, [799] = { - ["id"] = "fractured.stat_2954116742|26291", - ["text"] = "Allocates Electrifying Nature", + ["id"] = "fractured.stat_2954116742|750", + ["text"] = "Allocates Tribal Fury", ["type"] = "fractured", }, [800] = { - ["id"] = "fractured.stat_2954116742|24240", - ["text"] = "Allocates Time Manipulation", + ["id"] = "fractured.stat_2954116742|61601", + ["text"] = "Allocates True Strike", ["type"] = "fractured", }, [801] = { - ["id"] = "fractured.stat_2954116742|28542", - ["text"] = "Allocates The Molten One's Gift", + ["id"] = "fractured.stat_2954116742|2335", + ["text"] = "Allocates Turn the Clock Forward", ["type"] = "fractured", }, [802] = { - ["id"] = "fractured.stat_2954116742|44952", - ["text"] = "Allocates Made to Last", + ["id"] = "fractured.stat_2954116742|1352", + ["text"] = "Allocates Unbending", ["type"] = "fractured", }, [803] = { - ["id"] = "fractured.stat_2954116742|29306", - ["text"] = "Allocates Chakra of Thought", + ["id"] = "fractured.stat_2954116742|64543", + ["text"] = "Allocates Unbound Forces", ["type"] = "fractured", }, [804] = { - ["id"] = "fractured.stat_2954116742|19236", - ["text"] = "Allocates Projectile Bulwark", + ["id"] = "fractured.stat_2954116742|53921", + ["text"] = "Allocates Unbreaking", ["type"] = "fractured", }, [805] = { - ["id"] = "fractured.stat_2954116742|56616", - ["text"] = "Allocates Desperate Times", + ["id"] = "fractured.stat_2954116742|38888", + ["text"] = "Allocates Unerring Impact", ["type"] = "fractured", }, [806] = { - ["id"] = "fractured.stat_2954116742|3921", - ["text"] = "Allocates Fate Finding", + ["id"] = "fractured.stat_2954116742|31189", + ["text"] = "Allocates Unexpected Finesse", ["type"] = "fractured", }, [807] = { - ["id"] = "fractured.stat_2954116742|5257", - ["text"] = "Allocates Echoing Frost", + ["id"] = "fractured.stat_2954116742|8881", + ["text"] = "Allocates Unforgiving", ["type"] = "fractured", }, [808] = { - ["id"] = "fractured.stat_2954116742|36333", - ["text"] = "Allocates Explosive Empowerment", + ["id"] = "fractured.stat_2954116742|51394", + ["text"] = "Allocates Unimpeded", ["type"] = "fractured", }, [809] = { - ["id"] = "fractured.stat_2954116742|42813", - ["text"] = "Allocates Tides of Change", + ["id"] = "fractured.stat_2954116742|51602", + ["text"] = "Allocates Unsight", ["type"] = "fractured", }, [810] = { - ["id"] = "fractured.stat_2306522833", - ["text"] = "#% increased Monster Movement Speed", + ["id"] = "fractured.stat_2954116742|18485", + ["text"] = "Allocates Unstable Bond", ["type"] = "fractured", }, [811] = { - ["id"] = "fractured.stat_2954116742|37266", - ["text"] = "Allocates Nourishing Ally", + ["id"] = "fractured.stat_2954116742|33978", + ["text"] = "Allocates Unstoppable Barrier", ["type"] = "fractured", }, [812] = { - ["id"] = "fractured.stat_2954116742|56493", - ["text"] = "Allocates Agile Succession", + ["id"] = "fractured.stat_2954116742|1169", + ["text"] = "Allocates Urgent Call", ["type"] = "fractured", }, [813] = { - ["id"] = "fractured.stat_2954116742|57785", - ["text"] = "Allocates Trained Turrets", + ["id"] = "fractured.stat_2954116742|17303", + ["text"] = "Allocates Utility Ordnance", ["type"] = "fractured", }, [814] = { - ["id"] = "fractured.stat_2954116742|5410", - ["text"] = "Allocates Channelled Heritage", + ["id"] = "fractured.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", ["type"] = "fractured", }, [815] = { - ["id"] = "fractured.stat_2954116742|8660", - ["text"] = "Allocates Reverberation", + ["id"] = "fractured.stat_2954116742|12750", + ["text"] = "Allocates Vale Shelter", ["type"] = "fractured", }, [816] = { - ["id"] = "fractured.stat_2954116742|64050", - ["text"] = "Allocates Marathon Runner", + ["id"] = "fractured.stat_2954116742|17762", + ["text"] = "Allocates Vengeance", ["type"] = "fractured", }, [817] = { - ["id"] = "fractured.stat_2954116742|53187", - ["text"] = "Allocates Warlord Berserker", + ["id"] = "fractured.stat_2954116742|54937", + ["text"] = "Allocates Vengeful Fury", ["type"] = "fractured", }, [818] = { - ["id"] = "fractured.stat_2954116742|29762", - ["text"] = "Allocates Guttural Roar", + ["id"] = "fractured.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", ["type"] = "fractured", }, [819] = { - ["id"] = "fractured.stat_2954116742|12412", - ["text"] = "Allocates Temporal Mastery", + ["id"] = "fractured.stat_2954116742|65193", + ["text"] = "Allocates Viciousness", ["type"] = "fractured", }, [820] = { - ["id"] = "fractured.stat_2954116742|56488", - ["text"] = "Allocates Glancing Deflection", + ["id"] = "fractured.stat_2954116742|22967", + ["text"] = "Allocates Vigilance", ["type"] = "fractured", }, [821] = { - ["id"] = "fractured.stat_2954116742|36931", - ["text"] = "Allocates Concussive Attack", + ["id"] = "fractured.stat_2954116742|36507", + ["text"] = "Allocates Vile Mending", ["type"] = "fractured", }, [822] = { - ["id"] = "fractured.stat_2954116742|59214", - ["text"] = "Allocates Fated End", + ["id"] = "fractured.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", ["type"] = "fractured", }, [823] = { - ["id"] = "fractured.stat_2954116742|35031", - ["text"] = "Allocates Chakra of Life", + ["id"] = "fractured.stat_2954116742|3492", + ["text"] = "Allocates Void", ["type"] = "fractured", }, [824] = { - ["id"] = "fractured.stat_2954116742|13515", - ["text"] = "Allocates Stormwalker", + ["id"] = "fractured.stat_2954116742|17882", + ["text"] = "Allocates Volatile Grenades", ["type"] = "fractured", }, [825] = { - ["id"] = "fractured.stat_2954116742|64415", - ["text"] = "Allocates Shattering Daze", + ["id"] = "fractured.stat_2954116742|11366", + ["text"] = "Allocates Volcanic Skin", ["type"] = "fractured", }, [826] = { - ["id"] = "fractured.stat_2954116742|16150", - ["text"] = "Allocates Inspiring Ally", + ["id"] = "fractured.stat_2954116742|46060", + ["text"] = "Allocates Voracious", ["type"] = "fractured", }, [827] = { - ["id"] = "fractured.stat_2954116742|18308", - ["text"] = "Allocates Bleeding Out", + ["id"] = "fractured.stat_2954116742|27303", + ["text"] = "Allocates Vulgar Methods", ["type"] = "fractured", }, [828] = { - ["id"] = "fractured.stat_2954116742|3492", - ["text"] = "Allocates Void", + ["id"] = "fractured.stat_2954116742|47418", + ["text"] = "Allocates Warding Potions", ["type"] = "fractured", }, [829] = { - ["id"] = "fractured.stat_2954116742|11376", - ["text"] = "Allocates Necrotic Touch", + ["id"] = "fractured.stat_2954116742|53187", + ["text"] = "Allocates Warlord Berserker", ["type"] = "fractured", }, [830] = { - ["id"] = "fractured.stat_2954116742|46296", - ["text"] = "Allocates Short Shot", + ["id"] = "fractured.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", ["type"] = "fractured", }, [831] = { - ["id"] = "fractured.stat_4101943684", - ["text"] = "Monsters have #% increased Stun Threshold", + ["id"] = "fractured.stat_2954116742|12998", + ["text"] = "Allocates Warm the Heart", ["type"] = "fractured", }, [832] = { - ["id"] = "fractured.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", + ["id"] = "fractured.stat_2954116742|51509", + ["text"] = "Allocates Waters of Life", ["type"] = "fractured", }, [833] = { - ["id"] = "fractured.stat_2954116742|53185", - ["text"] = "Allocates The Winter Owl", + ["id"] = "fractured.stat_2954116742|2021", + ["text"] = "Allocates Wellspring", ["type"] = "fractured", }, [834] = { - ["id"] = "fractured.stat_2954116742|50673", - ["text"] = "Allocates Avoiding Deflection", + ["id"] = "fractured.stat_2954116742|37514", + ["text"] = "Allocates Whirling Assault", ["type"] = "fractured", }, [835] = { - ["id"] = "fractured.stat_2954116742|7163", - ["text"] = "Allocates Stimulants", + ["id"] = "fractured.stat_2954116742|46384", + ["text"] = "Allocates Wide Barrier", ["type"] = "fractured", }, [836] = { - ["id"] = "fractured.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["id"] = "fractured.stat_2954116742|7809", + ["text"] = "Allocates Wild Storm", ["type"] = "fractured", }, [837] = { - ["id"] = "fractured.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", + ["id"] = "fractured.stat_2954116742|62803", + ["text"] = "Allocates Woodland Aspect", ["type"] = "fractured", }, [838] = { - ["id"] = "fractured.stat_686254215", - ["text"] = "#% increased Totem Life", + ["id"] = "fractured.stat_2954116742|30132", + ["text"] = "Allocates Wrapped Quiver", ["type"] = "fractured", }, [839] = { - ["id"] = "fractured.stat_2954116742|8607", - ["text"] = "Allocates Lavianga's Brew", + ["id"] = "fractured.stat_2949706590", + ["text"] = "Area contains # additional packs of Iron Guards", ["type"] = "fractured", }, [840] = { - ["id"] = "fractured.stat_2954116742|8957", - ["text"] = "Allocates Right Hand of Darkness", + ["id"] = "fractured.stat_349586058", + ["text"] = "Area has patches of Chilled Ground", ["type"] = "fractured", }, [841] = { - ["id"] = "fractured.stat_2954116742|18086", - ["text"] = "Allocates Breath of Ice", + ["id"] = "fractured.stat_133340941", + ["text"] = "Area has patches of Ignited Ground", ["type"] = "fractured", }, [842] = { - ["id"] = "fractured.stat_2954116742|27875", - ["text"] = "Allocates General Electric", + ["id"] = "fractured.stat_3477720557", + ["text"] = "Area has patches of Shocked Ground", ["type"] = "fractured", }, [843] = { - ["id"] = "fractured.stat_2550456553", - ["text"] = "Rare Monsters have # additional Modifier", + ["id"] = "fractured.stat_300723956", + ["text"] = "Attack Hits apply Incision", ["type"] = "fractured", }, [844] = { - ["id"] = "fractured.stat_2550456553", - ["text"] = "Rare Monsters in your Maps have # additional Modifier", + ["id"] = "fractured.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "fractured", }, [845] = { - ["id"] = "fractured.stat_2954116742|35581", - ["text"] = "Allocates Near at Hand", + ["id"] = "fractured.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", ["type"] = "fractured", }, [846] = { - ["id"] = "fractured.stat_2954116742|48014", - ["text"] = "Allocates Honourless", + ["id"] = "fractured.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", ["type"] = "fractured", }, [847] = { - ["id"] = "fractured.stat_2954116742|50715", - ["text"] = "Allocates Frozen Limit", + ["id"] = "fractured.stat_335885735", + ["text"] = "Bears the Mark of the Abyssal Lord", ["type"] = "fractured", }, [848] = { - ["id"] = "fractured.stat_2954116742|41033", - ["text"] = "Allocates Utmost Offering", + ["id"] = "fractured.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "fractured", }, [849] = { - ["id"] = "fractured.stat_4181072906", - ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", + ["id"] = "fractured.stat_1776411443", + ["text"] = "Break #% increased Armour", ["type"] = "fractured", }, [850] = { - ["id"] = "fractured.stat_2200661314", - ["text"] = "Monsters deal #% of Damage as Extra Chaos", + ["id"] = "fractured.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", ["type"] = "fractured", }, [851] = { - ["id"] = "fractured.stat_2954116742|65468", - ["text"] = "Allocates Repeating Explosives", + ["id"] = "fractured.stat_234296660", + ["text"] = "Companions deal #% increased Damage", ["type"] = "fractured", }, [852] = { - ["id"] = "fractured.stat_349586058", - ["text"] = "Area has patches of Chilled Ground", + ["id"] = "fractured.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", ["type"] = "fractured", }, [853] = { - ["id"] = "fractured.stat_2954116742|2863", - ["text"] = "Allocates Perpetual Freeze", + ["id"] = "fractured.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "fractured", }, [854] = { - ["id"] = "fractured.stat_2954116742|47420", - ["text"] = "Allocates Expendable Army", + ["id"] = "fractured.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "fractured", }, [855] = { - ["id"] = "fractured.stat_2954116742|65243", - ["text"] = "Allocates Enveloping Presence", + ["id"] = "fractured.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "fractured", }, [856] = { - ["id"] = "fractured.stat_2954116742|24120", - ["text"] = "Allocates Mental Toughness", + ["id"] = "fractured.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", ["type"] = "fractured", }, [857] = { - ["id"] = "fractured.stat_3222482040", - ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", + ["id"] = "fractured.stat_3146310524", + ["text"] = "Dazes on Hit", ["type"] = "fractured", }, [858] = { - ["id"] = "fractured.stat_2954116742|24438", - ["text"] = "Allocates Hardened Wood", + ["id"] = "fractured.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", ["type"] = "fractured", }, [859] = { - ["id"] = "fractured.stat_2954116742|28613", - ["text"] = "Allocates Roaring Cries", + ["id"] = "fractured.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", ["type"] = "fractured", }, [860] = { - ["id"] = "fractured.stat_2954116742|18485", - ["text"] = "Allocates Unstable Bond", + ["id"] = "fractured.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "fractured", }, [861] = { - ["id"] = "fractured.stat_2954116742|23362", - ["text"] = "Allocates Slippery Ice", + ["id"] = "fractured.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", ["type"] = "fractured", }, [862] = { - ["id"] = "fractured.stat_2954116742|34543", - ["text"] = "Allocates The Frenzied Bear", + ["id"] = "fractured.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", ["type"] = "fractured", }, [863] = { - ["id"] = "fractured.stat_2954116742|54990", - ["text"] = "Allocates Bloodletting", + ["id"] = "fractured.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", ["type"] = "fractured", }, [864] = { - ["id"] = "fractured.stat_2954116742|37302", - ["text"] = "Allocates Kept at Bay", + ["id"] = "fractured.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", ["type"] = "fractured", }, [865] = { - ["id"] = "fractured.stat_2954116742|60464", - ["text"] = "Allocates Fan the Flames", + ["id"] = "fractured.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "fractured", }, [866] = { - ["id"] = "fractured.stat_318092306", - ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", + ["id"] = "fractured.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "fractured", }, [867] = { - ["id"] = "fractured.stat_2954116742|7302", - ["text"] = "Allocates Echoing Pulse", + ["id"] = "fractured.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "fractured", }, [868] = { - ["id"] = "fractured.stat_1054098949", - ["text"] = "+#% Monster Elemental Resistances", + ["id"] = "fractured.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", ["type"] = "fractured", }, [869] = { - ["id"] = "fractured.stat_2954116742|15443", - ["text"] = "Allocates Endured Suffering", + ["id"] = "fractured.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", ["type"] = "fractured", }, [870] = { - ["id"] = "fractured.stat_4159248054", - ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["id"] = "fractured.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "fractured", }, [871] = { - ["id"] = "fractured.stat_2954116742|43088", - ["text"] = "Allocates Agonising Calamity", + ["id"] = "fractured.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "fractured", }, [872] = { - ["id"] = "fractured.stat_3873704640", - ["text"] = "#% increased Magic Monsters", + ["id"] = "fractured.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", ["type"] = "fractured", }, [873] = { - ["id"] = "fractured.stat_941368244", - ["text"] = "Players have #% more Cooldown Recovery Rate", + ["id"] = "fractured.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", ["type"] = "fractured", }, [874] = { - ["id"] = "fractured.stat_2954116742|3188", - ["text"] = "Allocates Revenge", + ["id"] = "fractured.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "fractured", }, [875] = { - ["id"] = "fractured.stat_2954116742|5009", - ["text"] = "Allocates Seeing Stars", + ["id"] = "fractured.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", ["type"] = "fractured", }, [876] = { - ["id"] = "fractured.stat_2954116742|26518", - ["text"] = "Allocates Cold Nature", + ["id"] = "fractured.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", ["type"] = "fractured", }, [877] = { - ["id"] = "fractured.stat_2954116742|750", - ["text"] = "Allocates Tribal Fury", + ["id"] = "fractured.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", ["type"] = "fractured", }, [878] = { - ["id"] = "fractured.stat_2954116742|27434", - ["text"] = "Allocates Archon of the Storm", + ["id"] = "fractured.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "fractured", }, [879] = { - ["id"] = "fractured.stat_2954116742|15114", - ["text"] = "Allocates Boundless Growth", + ["id"] = "fractured.stat_1967051901", + ["text"] = "Loads an additional bolt", ["type"] = "fractured", }, [880] = { - ["id"] = "fractured.stat_2954116742|58096", - ["text"] = "Allocates Lasting Incantations", + ["id"] = "fractured.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", ["type"] = "fractured", }, [881] = { - ["id"] = "fractured.stat_1629357380", - ["text"] = "Players are periodically Cursed with Temporal Chains", + ["id"] = "fractured.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", ["type"] = "fractured", }, [882] = { - ["id"] = "fractured.stat_3119612865", - ["text"] = "Minions have #% additional Physical Damage Reduction", + ["id"] = "fractured.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "fractured", }, [883] = { - ["id"] = "fractured.stat_2954116742|33229", - ["text"] = "Allocates Haemorrhaging Cuts", + ["id"] = "fractured.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", ["type"] = "fractured", }, [884] = { - ["id"] = "fractured.stat_2954116742|38532", - ["text"] = "Allocates Thirst for Power", + ["id"] = "fractured.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", ["type"] = "fractured", }, [885] = { - ["id"] = "fractured.stat_2954116742|37543", - ["text"] = "Allocates Full Recovery", + ["id"] = "fractured.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", ["type"] = "fractured", }, [886] = { - ["id"] = "fractured.stat_2954116742|65016", - ["text"] = "Allocates Intense Flames", + ["id"] = "fractured.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", ["type"] = "fractured", }, [887] = { - ["id"] = "fractured.stat_337935900", - ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", + ["id"] = "fractured.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", ["type"] = "fractured", }, [888] = { - ["id"] = "fractured.stat_2954116742|39990", - ["text"] = "Allocates Chronomancy", + ["id"] = "fractured.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", ["type"] = "fractured", }, [889] = { - ["id"] = "fractured.stat_2534359663", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["id"] = "fractured.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", ["type"] = "fractured", }, [890] = { - ["id"] = "fractured.stat_3998863698", - ["text"] = "Monsters have #% increased Freeze Buildup", + ["id"] = "fractured.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", ["type"] = "fractured", }, [891] = { - ["id"] = "fractured.stat_2954116742|58215", - ["text"] = "Allocates Sanguimantic Rituals", + ["id"] = "fractured.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", ["type"] = "fractured", }, [892] = { - ["id"] = "fractured.stat_2954116742|9908", - ["text"] = "Allocates Price of Freedom", + ["id"] = "fractured.stat_1898978455", + ["text"] = "Monster Damage Penetrates #% Elemental Resistances", ["type"] = "fractured", }, [893] = { - ["id"] = "fractured.stat_2954116742|40985", - ["text"] = "Allocates Empowering Remnants", + ["id"] = "fractured.stat_1879340377", + ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", ["type"] = "fractured", }, [894] = { - ["id"] = "fractured.stat_2954116742|34316", - ["text"] = "Allocates One with the River", + ["id"] = "fractured.stat_2539290279", + ["text"] = "Monsters are Armoured", ["type"] = "fractured", }, [895] = { - ["id"] = "fractured.stat_2954116742|9421", - ["text"] = "Allocates Snowpiercer", + ["id"] = "fractured.stat_2570249991", + ["text"] = "Monsters are Evasive", ["type"] = "fractured", }, [896] = { - ["id"] = "fractured.stat_2954116742|17254", - ["text"] = "Allocates Spell Haste", + ["id"] = "fractured.stat_2200661314", + ["text"] = "Monsters deal #% of Damage as Extra Chaos", ["type"] = "fractured", }, [897] = { - ["id"] = "fractured.stat_2954116742|18496", - ["text"] = "Allocates Lasting Trauma", + ["id"] = "fractured.stat_211727", + ["text"] = "Monsters deal #% of Damage as Extra Cold", ["type"] = "fractured", }, [898] = { - ["id"] = "fractured.stat_2954116742|20416", - ["text"] = "Allocates Grit", + ["id"] = "fractured.stat_92381065", + ["text"] = "Monsters deal #% of Damage as Extra Fire", ["type"] = "fractured", }, [899] = { - ["id"] = "fractured.stat_2949706590", - ["text"] = "Area contains # additional packs of Iron Guards", + ["id"] = "fractured.stat_512071314", + ["text"] = "Monsters deal #% of Damage as Extra Lightning", ["type"] = "fractured", }, [900] = { - ["id"] = "fractured.stat_2954116742|45612", - ["text"] = "Allocates Defensive Reflexes", + ["id"] = "fractured.stat_2887760183", + ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", ["type"] = "fractured", }, [901] = { - ["id"] = "fractured.stat_2954116742|13482", - ["text"] = "Allocates Punctured Lung", + ["id"] = "fractured.stat_57326096", + ["text"] = "Monsters have #% Critical Damage Bonus", ["type"] = "fractured", }, [902] = { - ["id"] = "fractured.stat_2954116742|20251", - ["text"] = "Allocates Splitting Ground", + ["id"] = "fractured.stat_95221307", + ["text"] = "Monsters have #% chance to Poison on Hit", ["type"] = "fractured", }, [903] = { - ["id"] = "fractured.stat_2954116742|23764", - ["text"] = "Allocates Alternating Current", + ["id"] = "fractured.stat_2506820610", + ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", ["type"] = "fractured", }, [904] = { - ["id"] = "fractured.stat_2508044078", - ["text"] = "Monsters inflict #% increased Flammability Magnitude", + ["id"] = "fractured.stat_3222482040", + ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", ["type"] = "fractured", }, [905] = { - ["id"] = "fractured.stat_2954116742|32448", - ["text"] = "Allocates Shockproof", + ["id"] = "fractured.stat_1588049749", + ["text"] = "Monsters have #% increased Accuracy Rating", ["type"] = "fractured", }, [906] = { - ["id"] = "fractured.stat_2954116742|41753", - ["text"] = "Allocates Evocational Practitioner", + ["id"] = "fractured.stat_1994551050", + ["text"] = "Monsters have #% increased Ailment Threshold", ["type"] = "fractured", }, [907] = { - ["id"] = "fractured.stat_2954116742|1603", - ["text"] = "Allocates Storm Driven", + ["id"] = "fractured.stat_2753083623", + ["text"] = "Monsters have #% increased Critical Hit Chance", ["type"] = "fractured", }, [908] = { - ["id"] = "fractured.stat_2954116742|2113", - ["text"] = "Allocates Martial Artistry", + ["id"] = "fractured.stat_3998863698", + ["text"] = "Monsters have #% increased Freeze Buildup", ["type"] = "fractured", }, [909] = { - ["id"] = "fractured.stat_2539290279", - ["text"] = "Monsters are Armoured", + ["id"] = "fractured.stat_1984618452", + ["text"] = "Monsters have #% increased Shock Chance", ["type"] = "fractured", }, [910] = { - ["id"] = "fractured.stat_2954116742|9444", - ["text"] = "Allocates One with the Storm", + ["id"] = "fractured.stat_115425161", + ["text"] = "Monsters have #% increased Stun Buildup", ["type"] = "fractured", }, [911] = { - ["id"] = "fractured.stat_2954116742|37276", - ["text"] = "Allocates Battle Trance", + ["id"] = "fractured.stat_4101943684", + ["text"] = "Monsters have #% increased Stun Threshold", ["type"] = "fractured", }, [912] = { - ["id"] = "fractured.stat_2506820610", - ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", + ["id"] = "fractured.stat_2508044078", + ["text"] = "Monsters inflict #% increased Flammability Magnitude", ["type"] = "fractured", }, [913] = { - ["id"] = "fractured.stat_2954116742|59070", - ["text"] = "Allocates Enduring Archon", + ["id"] = "fractured.stat_337935900", + ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", ["type"] = "fractured", }, [914] = { - ["id"] = "fractured.stat_2954116742|61404", - ["text"] = "Allocates Equilibrium", + ["id"] = "fractured.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "fractured", }, [915] = { - ["id"] = "fractured.stat_2954116742|23630", - ["text"] = "Allocates Self Immolation", + ["id"] = "fractured.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", ["type"] = "fractured", }, [916] = { - ["id"] = "fractured.stat_2954116742|25619", - ["text"] = "Allocates Sand in the Eyes", + ["id"] = "fractured.stat_4225700219", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", ["type"] = "fractured", }, [917] = { - ["id"] = "fractured.stat_2954116742|48617", - ["text"] = "Allocates Hunter", + ["id"] = "fractured.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", ["type"] = "fractured", }, [918] = { - ["id"] = "fractured.stat_2954116742|61741", - ["text"] = "Allocates Lasting Toxins", + ["id"] = "fractured.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", ["type"] = "fractured", }, [919] = { - ["id"] = "fractured.stat_2954116742|33978", - ["text"] = "Allocates Unstoppable Barrier", + ["id"] = "fractured.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", ["type"] = "fractured", }, [920] = { - ["id"] = "fractured.stat_2954116742|19722", - ["text"] = "Allocates Thin Ice", + ["id"] = "fractured.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", ["type"] = "fractured", }, [921] = { - ["id"] = "fractured.stat_2954116742|35809", - ["text"] = "Allocates Reinvigoration", + ["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_2954116742|36364", - ["text"] = "Allocates Electrocution", + ["id"] = "fractured.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", ["type"] = "fractured", }, [923] = { - ["id"] = "fractured.stat_1984618452", - ["text"] = "Monsters have #% increased Shock Chance", + ["id"] = "fractured.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", ["type"] = "fractured", }, [924] = { - ["id"] = "fractured.stat_95249895", - ["text"] = "#% more Monster Life", + ["id"] = "fractured.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", ["type"] = "fractured", }, [925] = { - ["id"] = "fractured.stat_2954116742|60692", - ["text"] = "Allocates Echoing Flames", + ["id"] = "fractured.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", ["type"] = "fractured", }, [926] = { - ["id"] = "fractured.stat_2954116742|23738", - ["text"] = "Allocates Madness in the Bones", + ["id"] = "fractured.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", ["type"] = "fractured", }, [927] = { - ["id"] = "fractured.stat_2954116742|13457", - ["text"] = "Allocates Shadow Dancing", + ["id"] = "fractured.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", ["type"] = "fractured", }, [928] = { - ["id"] = "fractured.stat_2637470878", - ["text"] = "#% increased Armour Break Duration", + ["id"] = "fractured.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", ["type"] = "fractured", }, [929] = { - ["id"] = "fractured.stat_2954116742|14761", - ["text"] = "Allocates Warlord Leader", + ["id"] = "fractured.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", ["type"] = "fractured", }, [930] = { - ["id"] = "fractured.stat_2954116742|8896", - ["text"] = "Allocates Agile Sprinter", + ["id"] = "fractured.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", ["type"] = "fractured", }, [931] = { - ["id"] = "fractured.stat_2954116742|40325", - ["text"] = "Allocates Resolution", + ["id"] = "fractured.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", ["type"] = "fractured", }, [932] = { - ["id"] = "fractured.stat_2954116742|5642", - ["text"] = "Allocates Behemoth", + ["id"] = "fractured.stat_61644361", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", ["type"] = "fractured", }, [933] = { - ["id"] = "fractured.stat_2954116742|61112", - ["text"] = "Allocates Roll and Strike", + ["id"] = "fractured.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", ["type"] = "fractured", }, [934] = { - ["id"] = "fractured.stat_2954116742|56063", - ["text"] = "Allocates Lingering Horror", + ["id"] = "fractured.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", ["type"] = "fractured", }, [935] = { - ["id"] = "fractured.stat_2954116742|27388", - ["text"] = "Allocates Aspiring Genius", + ["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_2954116742|38111", - ["text"] = "Allocates Pliable Flesh", + ["id"] = "fractured.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", ["type"] = "fractured", }, [937] = { - ["id"] = "fractured.stat_3793155082", - ["text"] = "#% increased Rare Monsters", + ["id"] = "fractured.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", ["type"] = "fractured", }, [938] = { - ["id"] = "fractured.stat_2954116742|48215", - ["text"] = "Allocates Headshot", + ["id"] = "fractured.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "fractured", }, [939] = { - ["id"] = "fractured.stat_2954116742|20388", - ["text"] = "Allocates Regenerative Flesh", + ["id"] = "fractured.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", ["type"] = "fractured", }, [940] = { - ["id"] = "fractured.stat_2954116742|5227", - ["text"] = "Allocates Escape Strategy", + ["id"] = "fractured.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", ["type"] = "fractured", }, [941] = { - ["id"] = "fractured.stat_2954116742|55847", - ["text"] = "Allocates Ice Walls", + ["id"] = "fractured.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", ["type"] = "fractured", }, [942] = { - ["id"] = "fractured.stat_2954116742|63400", - ["text"] = "Allocates Chakra of Elements", + ["id"] = "fractured.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", ["type"] = "fractured", }, [943] = { - ["id"] = "fractured.stat_1913583994", - ["text"] = "#% increased Monster Attack Speed", + ["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_2954116742|12998", - ["text"] = "Allocates Warm the Heart", + ["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_2954116742|13823", - ["text"] = "Allocates Controlling Magic", + ["id"] = "fractured.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", ["type"] = "fractured", }, [946] = { - ["id"] = "fractured.stat_2954116742|30546", - ["text"] = "Allocates Electrified Claw", + ["id"] = "fractured.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", ["type"] = "fractured", }, [947] = { - ["id"] = "fractured.stat_2954116742|60992", - ["text"] = "Allocates Nurturing Guardian", + ["id"] = "fractured.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", ["type"] = "fractured", }, [948] = { - ["id"] = "fractured.stat_2954116742|41811", - ["text"] = "Allocates Shatter Palm", + ["id"] = "fractured.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", ["type"] = "fractured", }, [949] = { - ["id"] = "fractured.stat_2954116742|1352", - ["text"] = "Allocates Unbending", + ["id"] = "fractured.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", ["type"] = "fractured", }, [950] = { - ["id"] = "fractured.stat_2954116742|94", - ["text"] = "Allocates Efficient Killing", + ["id"] = "fractured.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", ["type"] = "fractured", }, [951] = { - ["id"] = "fractured.stat_2954116742|15991", - ["text"] = "Allocates Embodiment of Lightning", + ["id"] = "fractured.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", ["type"] = "fractured", }, [952] = { - ["id"] = "fractured.stat_2954116742|48524", - ["text"] = "Allocates Blood Transfusion", + ["id"] = "fractured.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", ["type"] = "fractured", }, [953] = { - ["id"] = "fractured.stat_2954116742|1169", - ["text"] = "Allocates Urgent Call", + ["id"] = "fractured.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", ["type"] = "fractured", }, [954] = { - ["id"] = "fractured.stat_2954116742|60083", - ["text"] = "Allocates Pin and Run", + ["id"] = "fractured.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", ["type"] = "fractured", }, [955] = { - ["id"] = "fractured.stat_1890519597", - ["text"] = "#% increased Monster Damage", + ["id"] = "fractured.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", ["type"] = "fractured", }, [956] = { - ["id"] = "fractured.stat_2954116742|7395", - ["text"] = "Allocates Retaliation", + ["id"] = "fractured.stat_391602279", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", ["type"] = "fractured", }, [957] = { - ["id"] = "fractured.stat_95221307", - ["text"] = "Monsters have #% chance to Poison on Hit", + ["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_2954116742|32507", - ["text"] = "Allocates Cut to the Bone", + ["id"] = "fractured.stat_462424929", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", ["type"] = "fractured", }, [959] = { - ["id"] = "fractured.stat_2954116742|27108", - ["text"] = "Allocates Mass Hysteria", + ["id"] = "fractured.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", ["type"] = "fractured", }, [960] = { - ["id"] = "fractured.stat_2954116742|63830", - ["text"] = "Allocates Marked for Sickness", + ["id"] = "fractured.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", ["type"] = "fractured", }, [961] = { - ["id"] = "fractured.stat_2887760183", - ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", + ["id"] = "fractured.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "fractured", }, [962] = { - ["id"] = "fractured.stat_2954116742|49088", - ["text"] = "Allocates Splintering Force", + ["id"] = "fractured.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", ["type"] = "fractured", }, [963] = { - ["id"] = "fractured.stat_2954116742|29899", - ["text"] = "Allocates Finish Them", + ["id"] = "fractured.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", ["type"] = "fractured", }, [964] = { - ["id"] = "fractured.stat_2954116742|56112", - ["text"] = "Allocates Extinguishing Exhalation", + ["id"] = "fractured.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", ["type"] = "fractured", }, [965] = { - ["id"] = "fractured.stat_2954116742|16940", - ["text"] = "Allocates Arcane Nature", + ["id"] = "fractured.stat_4032352472", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", ["type"] = "fractured", }, [966] = { - ["id"] = "fractured.stat_2954116742|10029", - ["text"] = "Allocates Repulsion", + ["id"] = "fractured.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", ["type"] = "fractured", }, [967] = { - ["id"] = "fractured.stat_300723956", - ["text"] = "Attack Hits apply Incision", + ["id"] = "fractured.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", ["type"] = "fractured", }, [968] = { - ["id"] = "fractured.stat_2954116742|33216", - ["text"] = "Allocates Deep Wounds", + ["id"] = "fractured.stat_3579898587", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", ["type"] = "fractured", }, [969] = { - ["id"] = "fractured.stat_2954116742|4661", - ["text"] = "Allocates Inspiring Leader", + ["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_2954116742|37742", - ["text"] = "Allocates Manifold Method", + ["id"] = "fractured.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", ["type"] = "fractured", }, [971] = { - ["id"] = "fractured.stat_2954116742|32721", - ["text"] = "Allocates Distracted Target", + ["id"] = "fractured.stat_2392824305", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", ["type"] = "fractured", }, [972] = { - ["id"] = "fractured.stat_2954116742|24753", - ["text"] = "Allocates Determined Precision", + ["id"] = "fractured.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", ["type"] = "fractured", }, [973] = { - ["id"] = "fractured.stat_2954116742|5332", - ["text"] = "Allocates Crystallised Immunities", + ["id"] = "fractured.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", ["type"] = "fractured", }, [974] = { - ["id"] = "fractured.stat_2954116742|38479", - ["text"] = "Allocates Close Confines", + ["id"] = "fractured.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", ["type"] = "fractured", }, [975] = { - ["id"] = "fractured.stat_2954116742|14294", - ["text"] = "Allocates Sacrificial Blood", + ["id"] = "fractured.stat_4180952808", + ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", ["type"] = "fractured", }, [976] = { - ["id"] = "fractured.stat_2954116742|35739", - ["text"] = "Allocates Crushing Judgement", + ["id"] = "fractured.stat_412709880", + ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", ["type"] = "fractured", }, [977] = { - ["id"] = "fractured.stat_2954116742|48734", - ["text"] = "Allocates The Howling Primate", + ["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_2954116742|17029", - ["text"] = "Allocates Blade Catcher", + ["id"] = "fractured.stat_3669820740", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", ["type"] = "fractured", }, [979] = { - ["id"] = "fractured.stat_2954116742|48006", - ["text"] = "Allocates Devastation", + ["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_2954116742|43829", - ["text"] = "Allocates Advanced Munitions", + ["id"] = "fractured.stat_3243034867", + ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", ["type"] = "fractured", }, [981] = { - ["id"] = "fractured.stat_2954116742|11366", - ["text"] = "Allocates Volcanic Skin", + ["id"] = "fractured.stat_3173882956", + ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", ["type"] = "fractured", }, [982] = { - ["id"] = "fractured.stat_2954116742|31745", - ["text"] = "Allocates Lockdown", + ["id"] = "fractured.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", ["type"] = "fractured", }, [983] = { - ["id"] = "fractured.stat_2954116742|50687", - ["text"] = "Allocates Coursing Energy", + ["id"] = "fractured.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", ["type"] = "fractured", }, [984] = { - ["id"] = "fractured.stat_2954116742|44917", - ["text"] = "Allocates Self Mortification", + ["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_2954116742|14383", - ["text"] = "Allocates Suffusion", + ["id"] = "fractured.stat_2849546516", + ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", ["type"] = "fractured", }, [986] = { - ["id"] = "fractured.stat_2954116742|7668", - ["text"] = "Allocates Internal Bleeding", + ["id"] = "fractured.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", ["type"] = "fractured", }, [987] = { - ["id"] = "fractured.stat_3796523155", - ["text"] = "#% less effect of Curses on Monsters", + ["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_2954116742|51606", - ["text"] = "Allocates Freedom of Movement", + ["id"] = "fractured.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", ["type"] = "fractured", }, [989] = { - ["id"] = "fractured.stat_2954116742|42045", - ["text"] = "Allocates Archon of the Blizzard", + ["id"] = "fractured.stat_3628935286", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", ["type"] = "fractured", }, [990] = { - ["id"] = "fractured.stat_2954116742|16790", - ["text"] = "Allocates Efficient Casting", + ["id"] = "fractured.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", ["type"] = "fractured", }, [991] = { - ["id"] = "fractured.stat_2954116742|19156", - ["text"] = "Allocates Immaterial", + ["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_1315743832", - ["text"] = "#% increased Thorns damage", + ["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_3374165039", - ["text"] = "#% increased Totem Placement speed", + ["id"] = "fractured.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", ["type"] = "fractured", }, [994] = { - ["id"] = "fractured.stat_2954116742|14945", - ["text"] = "Allocates Growing Swarm", + ["id"] = "fractured.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "fractured", }, [995] = { - ["id"] = "fractured.stat_2954116742|4673", - ["text"] = "Allocates Hulking Smash", + ["id"] = "fractured.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", ["type"] = "fractured", }, [996] = { - ["id"] = "fractured.stat_2954116742|42036", - ["text"] = "Allocates Off-Balancing Retort", + ["id"] = "fractured.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", ["type"] = "fractured", }, [997] = { - ["id"] = "fractured.stat_2954116742|2814", - ["text"] = "Allocates Engineered Blaze", + ["id"] = "fractured.stat_4215035940", + ["text"] = "On Corruption, Item gains two Enchantments", ["type"] = "fractured", }, [998] = { - ["id"] = "fractured.stat_57434274", - ["text"] = "#% increased Experience gain", + ["id"] = "fractured.stat_554690751", + ["text"] = "Players are periodically Cursed with Elemental Weakness", ["type"] = "fractured", }, [999] = { - ["id"] = "fractured.stat_57434274", - ["text"] = "#% increased Experience gain in your Maps", + ["id"] = "fractured.stat_2029171424", + ["text"] = "Players are periodically Cursed with Enfeeble", ["type"] = "fractured", }, [1000] = { - ["id"] = "fractured.stat_2954116742|63579", - ["text"] = "Allocates Momentum", + ["id"] = "fractured.stat_1629357380", + ["text"] = "Players are periodically Cursed with Temporal Chains", ["type"] = "fractured", }, [1001] = { - ["id"] = "fractured.stat_2954116742|17303", - ["text"] = "Allocates Utility Ordnance", + ["id"] = "fractured.stat_2549889921", + ["text"] = "Players gain #% reduced Flask Charges", ["type"] = "fractured", }, [1002] = { - ["id"] = "fractured.stat_2954116742|36507", - ["text"] = "Allocates Vile Mending", + ["id"] = "fractured.stat_4181072906", + ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", ["type"] = "fractured", }, [1003] = { - ["id"] = "fractured.stat_2954116742|2397", - ["text"] = "Allocates Last Stand", + ["id"] = "fractured.stat_941368244", + ["text"] = "Players have #% more Cooldown Recovery Rate", ["type"] = "fractured", }, [1004] = { - ["id"] = "fractured.stat_2954116742|29288", - ["text"] = "Allocates Deadly Invocations", + ["id"] = "fractured.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "fractured", }, [1005] = { - ["id"] = "fractured.stat_2954116742|31189", - ["text"] = "Allocates Unexpected Finesse", + ["id"] = "fractured.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "fractured", }, [1006] = { - ["id"] = "fractured.stat_2549889921", - ["text"] = "Players gain #% reduced Flask Charges", + ["id"] = "fractured.stat_2550456553", + ["text"] = "Rare Monsters have # additional Modifier", ["type"] = "fractured", }, [1007] = { - ["id"] = "fractured.stat_2954116742|60269", - ["text"] = "Allocates Roil", + ["id"] = "fractured.stat_2550456553", + ["text"] = "Rare Monsters in your Maps have # additional Modifier", ["type"] = "fractured", }, [1008] = { - ["id"] = "fractured.stat_2149603090", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["id"] = "fractured.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "fractured", }, [1009] = { - ["id"] = "fractured.stat_2954116742|31326", - ["text"] = "Allocates Slow Burn", + ["id"] = "fractured.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "fractured", }, [1010] = { - ["id"] = "fractured.stat_2954116742|26356", - ["text"] = "Allocates Primed to Explode", + ["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_2954116742|35618", - ["text"] = "Allocates Cold Coat", + ["id"] = "fractured.stat_2840989393", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", ["type"] = "fractured", }, [1012] = { - ["id"] = "fractured.stat_3811191316", - ["text"] = "Minions have #% increased Area of Effect", + ["id"] = "fractured.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", ["type"] = "fractured", }, [1013] = { - ["id"] = "fractured.stat_2954116742|26070", - ["text"] = "Allocates Bolstering Yell", + ["id"] = "fractured.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", ["type"] = "fractured", }, [1014] = { - ["id"] = "fractured.stat_115425161", - ["text"] = "Monsters have #% increased Stun Buildup", + ["id"] = "fractured.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", ["type"] = "fractured", }, [1015] = { - ["id"] = "fractured.stat_2488361432", - ["text"] = "#% increased Monster Cast Speed", + ["id"] = "fractured.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", ["type"] = "fractured", }, [1016] = { - ["id"] = "fractured.stat_1834658952", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["id"] = "fractured.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", ["type"] = "fractured", }, [1017] = { - ["id"] = "fractured.stat_2954116742|24483", - ["text"] = "Allocates Direct Approach", + ["id"] = "fractured.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "fractured", }, [1018] = { - ["id"] = "fractured.stat_2954116742|15829", - ["text"] = "Allocates Siphon", + ["id"] = "fractured.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", ["type"] = "fractured", }, [1019] = { - ["id"] = "fractured.stat_133340941", - ["text"] = "Area has patches of Ignited Ground", + ["id"] = "fractured.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "fractured", }, [1020] = { - ["id"] = "fractured.stat_2954116742|10315", - ["text"] = "Allocates Easy Going", + ["id"] = "fractured.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", ["type"] = "fractured", }, [1021] = { - ["id"] = "fractured.stat_2954116742|63585", - ["text"] = "Allocates Thunderstruck", + ["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_2954116742|5335", - ["text"] = "Allocates Shimmering Mirage", + ["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_2954116742|23244", - ["text"] = "Allocates Bounty Hunter", + ["id"] = "fractured.stat_266564538", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", ["type"] = "fractured", }, [1024] = { - ["id"] = "fractured.stat_1145481685", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["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_1994551050", - ["text"] = "Monsters have #% increased Ailment Threshold", + ["id"] = "fractured.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", ["type"] = "fractured", }, [1026] = { - ["id"] = "fractured.stat_2954116742|44293", - ["text"] = "Allocates Hastening Barrier", + ["id"] = "fractured.stat_517664839", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", ["type"] = "fractured", }, [1027] = { - ["id"] = "fractured.stat_2954116742|12822", - ["text"] = "Allocates Adaptable Assault", + ["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_2954116742|63431", - ["text"] = "Allocates Leeching Toxins", + ["id"] = "fractured.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", ["type"] = "fractured", }, [1029] = { - ["id"] = "fractured.stat_2954116742|18397", - ["text"] = "Allocates Savoured Blood", + ["id"] = "fractured.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", ["type"] = "fractured", }, [1030] = { - ["id"] = "fractured.stat_2954116742|28441", - ["text"] = "Allocates Frantic Swings", + ["id"] = "fractured.stat_821948283", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", ["type"] = "fractured", }, [1031] = { - ["id"] = "fractured.stat_2954116742|43423", - ["text"] = "Allocates Emboldened Avatar", + ["id"] = "fractured.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", ["type"] = "fractured", }, [1032] = { - ["id"] = "fractured.stat_2954116742|4810", - ["text"] = "Allocates Sanguine Tolerance", + ["id"] = "fractured.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", ["type"] = "fractured", }, [1033] = { - ["id"] = "fractured.stat_2954116742|19249", - ["text"] = "Allocates Supportive Ancestors", + ["id"] = "fractured.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", ["type"] = "fractured", }, [1034] = { - ["id"] = "fractured.stat_2954116742|53921", - ["text"] = "Allocates Unbreaking", + ["id"] = "fractured.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", ["type"] = "fractured", }, [1035] = { - ["id"] = "fractured.stat_2954116742|36808", - ["text"] = "Allocates Spiked Shield", + ["id"] = "fractured.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", ["type"] = "fractured", }, [1036] = { - ["id"] = "fractured.stat_2954116742|8881", - ["text"] = "Allocates Unforgiving", + ["id"] = "fractured.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "fractured", }, [1037] = { - ["id"] = "fractured.stat_2954116742|8397", - ["text"] = "Allocates Empowering Remains", + ["id"] = "fractured.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "fractured", }, [1038] = { - ["id"] = "fractured.stat_2954116742|41972", - ["text"] = "Allocates Glaciation", + ["id"] = "fractured.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", ["type"] = "fractured", }, [1039] = { - ["id"] = "fractured.stat_2954116742|20916", - ["text"] = "Allocates Blinding Strike", + ["id"] = "fractured.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", ["type"] = "fractured", }, [1040] = { - ["id"] = "fractured.stat_211727", - ["text"] = "Monsters deal #% of Damage as Extra Cold", + ["id"] = "fractured.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", ["type"] = "fractured", }, [1041] = { - ["id"] = "fractured.stat_2954116742|37806", - ["text"] = "Allocates Branching Bolts", + ["id"] = "fractured.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "fractured", }, [1042] = { - ["id"] = "fractured.stat_2954116742|51169", - ["text"] = "Allocates Soul Bloom", + ["id"] = "fractured.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", ["type"] = "fractured", }, [1043] = { - ["id"] = "fractured.stat_2954116742|52245", - ["text"] = "Allocates Distant Dreamer", + ["id"] = "fractured.stat_980177976", + ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", ["type"] = "fractured", }, [1044] = { - ["id"] = "fractured.stat_2954116742|10873", - ["text"] = "Allocates Bestial Rage", + ["id"] = "fractured.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", ["type"] = "fractured", }, [1045] = { - ["id"] = "fractured.stat_2954116742|52971", - ["text"] = "Allocates The Soul Meridian", + ["id"] = "fractured.stat_3774951878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", ["type"] = "fractured", }, [1046] = { - ["id"] = "fractured.stat_2954116742|53566", - ["text"] = "Allocates Run and Gun", + ["id"] = "fractured.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", ["type"] = "fractured", }, [1047] = { - ["id"] = "fractured.stat_2954116742|43090", - ["text"] = "Allocates Electrotherapy", + ["id"] = "fractured.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", ["type"] = "fractured", }, [1048] = { - ["id"] = "fractured.stat_2954116742|39083", - ["text"] = "Allocates Blood Rush", + ["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_2954116742|21748", - ["text"] = "Allocates Impending Doom", + ["id"] = "fractured.stat_793875384", + ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", ["type"] = "fractured", }, [1050] = { - ["id"] = "fractured.stat_2954116742|48658", - ["text"] = "Allocates Shattering", + ["id"] = "fractured.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", ["type"] = "fractured", }, [1051] = { - ["id"] = "fractured.stat_2954116742|50023", - ["text"] = "Allocates Invigorating Grandeur", + ["id"] = "fractured.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", ["type"] = "fractured", }, [1052] = { - ["id"] = "fractured.stat_2954116742|48103", - ["text"] = "Allocates Forcewave", + ["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_2954116742|4959", - ["text"] = "Allocates Heavy Frost", + ["id"] = "fractured.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", ["type"] = "fractured", }, [1054] = { - ["id"] = "fractured.stat_2954116742|12906", - ["text"] = "Allocates Sitting Duck", + ["id"] = "fractured.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", ["type"] = "fractured", }, [1055] = { - ["id"] = "fractured.stat_1714706956", - ["text"] = "#% increased Magic Pack Size", + ["id"] = "fractured.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", ["type"] = "fractured", }, [1056] = { - ["id"] = "fractured.stat_2954116742|42981", - ["text"] = "Allocates Cruel Methods", + ["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_2954116742|24655", - ["text"] = "Allocates Breath of Fire", + ["id"] = "fractured.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", ["type"] = "fractured", }, [1058] = { - ["id"] = "fractured.stat_2753083623", - ["text"] = "Monsters have #% increased Critical Hit Chance", + ["id"] = "fractured.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", ["type"] = "fractured", }, [1059] = { - ["id"] = "fractured.stat_2954116742|40687", - ["text"] = "Allocates Lead by Example", + ["id"] = "fractured.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", ["type"] = "fractured", }, [1060] = { - ["id"] = "fractured.stat_2954116742|52180", - ["text"] = "Allocates Trained Deflection", + ["id"] = "fractured.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", ["type"] = "fractured", }, [1061] = { - ["id"] = "fractured.stat_1588049749", - ["text"] = "Monsters have #% increased Accuracy Rating", + ["id"] = "fractured.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", ["type"] = "fractured", }, [1062] = { - ["id"] = "fractured.stat_92381065", - ["text"] = "Monsters deal #% of Damage as Extra Fire", + ["id"] = "fractured.stat_1129429646", + ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", ["type"] = "fractured", }, [1063] = { - ["id"] = "fractured.stat_1898978455", - ["text"] = "Monster Damage Penetrates #% Elemental Resistances", + ["id"] = "fractured.stat_3666476747", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", ["type"] = "fractured", }, [1064] = { - ["id"] = "fractured.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", + ["id"] = "fractured.stat_3700202631", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", ["type"] = "fractured", }, [1065] = { - ["id"] = "fractured.stat_1742651309", - ["text"] = "#% of Fire Damage taken Recouped as Life", + ["id"] = "fractured.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", ["type"] = "fractured", }, [1066] = { - ["id"] = "fractured.stat_2954116742|19546", - ["text"] = "Allocates Favourable Odds", + ["id"] = "fractured.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", ["type"] = "fractured", }, [1067] = { - ["id"] = "fractured.stat_2954116742|24764", - ["text"] = "Allocates Infusing Power", + ["id"] = "fractured.stat_318092306", + ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", ["type"] = "fractured", }, [1068] = { - ["id"] = "fractured.stat_2029171424", - ["text"] = "Players are periodically Cursed with Enfeeble", + ["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_1514844108", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + ["id"] = "fractured.stat_2690740379", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", ["type"] = "fractured", }, [1070] = { - ["id"] = "fractured.stat_2954116742|38614", - ["text"] = "Allocates Psychic Fragmentation", + ["id"] = "fractured.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", ["type"] = "fractured", }, [1071] = { - ["id"] = "fractured.stat_2954116742|55060", - ["text"] = "Allocates Shrapnel", + ["id"] = "fractured.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", ["type"] = "fractured", }, [1072] = { - ["id"] = "fractured.stat_2954116742|43939", - ["text"] = "Allocates Melting Flames", + ["id"] = "fractured.stat_2638756573", + ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", ["type"] = "fractured", }, [1073] = { - ["id"] = "fractured.stat_2954116742|33093", - ["text"] = "Allocates Effervescent", + ["id"] = "fractured.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", ["type"] = "fractured", }, [1074] = { - ["id"] = "fractured.stat_2954116742|11578", - ["text"] = "Allocates Spreading Shocks", + ["id"] = "fractured.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", ["type"] = "fractured", }, [1075] = { - ["id"] = "fractured.stat_2954116742|61026", - ["text"] = "Allocates Crystalline Flesh", + ["id"] = "fractured.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", ["type"] = "fractured", }, [1076] = { - ["id"] = "fractured.stat_2954116742|2335", - ["text"] = "Allocates Turn the Clock Forward", + ["id"] = "fractured.stat_4258000627", + ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", ["type"] = "fractured", }, [1077] = { - ["id"] = "fractured.stat_504915064", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["id"] = "fractured.stat_3395186672", + ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", ["type"] = "fractured", }, [1078] = { - ["id"] = "fractured.stat_2954116742|38888", - ["text"] = "Allocates Unerring Impact", + ["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_2570249991", - ["text"] = "Monsters are Evasive", + ["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_57326096", - ["text"] = "Monsters have #% Critical Damage Bonus", + ["id"] = "fractured.stat_3065378291", + ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", ["type"] = "fractured", }, [1081] = { - ["id"] = "fractured.stat_2954116742|32301", - ["text"] = "Allocates Frazzled", + ["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_2954116742|14343", - ["text"] = "Allocates Deterioration", + ["id"] = "fractured.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", ["type"] = "fractured", }, [1083] = { - ["id"] = "fractured.stat_2954116742|7847", - ["text"] = "Allocates The Fabled Stag", + ["id"] = "fractured.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", ["type"] = "fractured", }, [1084] = { - ["id"] = "fractured.stat_2954116742|4331", - ["text"] = "Allocates Guided Hand", + ["id"] = "fractured.stat_30438393", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", ["type"] = "fractured", }, [1085] = { - ["id"] = "fractured.stat_2954116742|41394", - ["text"] = "Allocates Invigorating Archon", + ["id"] = "fractured.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", ["type"] = "fractured", }, [1086] = { - ["id"] = "fractured.stat_2954116742|32151", - ["text"] = "Allocates Crystalline Resistance", + ["id"] = "fractured.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", ["type"] = "fractured", }, [1087] = { - ["id"] = "fractured.stat_2954116742|9736", - ["text"] = "Allocates Insulated Treads", + ["id"] = "fractured.stat_3225608889", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", ["type"] = "fractured", }, [1088] = { - ["id"] = "fractured.stat_2954116742|25362", - ["text"] = "Allocates Chakra of Impact", + ["id"] = "fractured.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", ["type"] = "fractured", }, [1089] = { - ["id"] = "fractured.stat_2954116742|45713", - ["text"] = "Allocates Savouring", + ["id"] = "fractured.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", ["type"] = "fractured", }, [1090] = { - ["id"] = "fractured.stat_2954116742|15986", - ["text"] = "Allocates Building Toxins", + ["id"] = "fractured.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", ["type"] = "fractured", }, [1091] = { - ["id"] = "fractured.stat_2954116742|7275", - ["text"] = "Allocates Electrocuting Exposure", + ["id"] = "fractured.stat_3891355829|2", + ["text"] = "Upgrades Radius to Large", ["type"] = "fractured", }, [1092] = { - ["id"] = "fractured.stat_30438393", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + ["id"] = "fractured.stat_3891355829|1", + ["text"] = "Upgrades Radius to Medium", ["type"] = "fractured", }, }, @@ -21331,848 +21335,848 @@ return { [5] = { ["entries"] = { [1] = { - ["id"] = "crafted.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "crafted.stat_803737631", + ["text"] = "# to Accuracy Rating", ["type"] = "crafted", }, [2] = { - ["id"] = "crafted.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "crafted.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", ["type"] = "crafted", }, [3] = { - ["id"] = "crafted.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "crafted.stat_3261801346", + ["text"] = "# to Dexterity", ["type"] = "crafted", }, [4] = { - ["id"] = "crafted.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", + ["id"] = "crafted.stat_328541901", + ["text"] = "# to Intelligence", ["type"] = "crafted", }, [5] = { - ["id"] = "crafted.stat_518292764", - ["text"] = "#% to Critical Hit Chance", + ["id"] = "crafted.stat_3035140377", + ["text"] = "# to Level of all Attack Skills", ["type"] = "crafted", }, [6] = { - ["id"] = "crafted.stat_124131830", - ["text"] = "# to Level of all Spell Skills", + ["id"] = "crafted.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", ["type"] = "crafted", }, [7] = { - ["id"] = "crafted.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "crafted.stat_124131830", + ["text"] = "# to Level of all Spell Skills", ["type"] = "crafted", }, [8] = { - ["id"] = "crafted.stat_3035140377", - ["text"] = "# to Level of all Attack Skills", + ["id"] = "crafted.stat_1181501418", + ["text"] = "# to Maximum Rage", ["type"] = "crafted", }, [9] = { - ["id"] = "crafted.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "crafted.stat_3981240776", + ["text"] = "# to Spirit", ["type"] = "crafted", }, [10] = { - ["id"] = "crafted.stat_4015621042", - ["text"] = "#% increased Energy Shield", + ["id"] = "crafted.stat_4080418644", + ["text"] = "# to Strength", ["type"] = "crafted", }, [11] = { - ["id"] = "crafted.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "crafted.stat_2897413282", + ["text"] = "# to all Attributes", ["type"] = "crafted", }, [12] = { - ["id"] = "crafted.stat_709508406", - ["text"] = "Adds # to # Fire Damage", + ["id"] = "crafted.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "crafted", }, [13] = { - ["id"] = "crafted.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", + ["id"] = "crafted.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "crafted", }, [14] = { - ["id"] = "crafted.stat_1881230714", - ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["id"] = "crafted.stat_3336230913", + ["text"] = "# to maximum Runic Ward", ["type"] = "crafted", }, [15] = { - ["id"] = "crafted.stat_1177404658", - ["text"] = "#% increased Global Armour, Evasion and Energy Shield", + ["id"] = "crafted.stat_4097212302", + ["text"] = "# to maximum number of Elemental Infusions", ["type"] = "crafted", }, [16] = { - ["id"] = "crafted.stat_3336230913", - ["text"] = "# to maximum Runic Ward", + ["id"] = "crafted.stat_1823942939", + ["text"] = "# to maximum number of Summoned Ballista Totems", ["type"] = "crafted", }, [17] = { - ["id"] = "crafted.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "crafted.stat_2840930496", + ["text"] = "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", ["type"] = "crafted", }, [18] = { - ["id"] = "crafted.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", + ["id"] = "crafted.stat_2749595652", + ["text"] = "#% chance for Skills to retain 40% of Glory on use", ["type"] = "crafted", }, [19] = { - ["id"] = "crafted.stat_4101445926", - ["text"] = "#% increased Mana Cost Efficiency", + ["id"] = "crafted.stat_1028592286", + ["text"] = "#% chance to Chain an additional time", ["type"] = "crafted", }, [20] = { - ["id"] = "crafted.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "crafted.stat_3518449420", + ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", ["type"] = "crafted", }, [21] = { - ["id"] = "crafted.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["id"] = "crafted.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", ["type"] = "crafted", }, [22] = { - ["id"] = "crafted.stat_328541901", - ["text"] = "# to Intelligence", + ["id"] = "crafted.stat_2158617060", + ["text"] = "#% increased Archon Buff duration", ["type"] = "crafted", }, [23] = { - ["id"] = "crafted.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["id"] = "crafted.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "crafted", }, [24] = { - ["id"] = "crafted.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "crafted.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", ["type"] = "crafted", }, [25] = { - ["id"] = "crafted.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "crafted.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "crafted", }, [26] = { - ["id"] = "crafted.stat_1604736568", - ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["id"] = "crafted.stat_1062208444", + ["text"] = "#% increased Armour (Local)", ["type"] = "crafted", }, [27] = { - ["id"] = "crafted.stat_2101383955", - ["text"] = "Damage Penetrates #% Elemental Resistances", + ["id"] = "crafted.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", ["type"] = "crafted", }, [28] = { - ["id"] = "crafted.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", + ["id"] = "crafted.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", ["type"] = "crafted", }, [29] = { - ["id"] = "crafted.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "crafted.stat_2843214518", + ["text"] = "#% increased Attack Damage", ["type"] = "crafted", }, [30] = { - ["id"] = "crafted.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + ["id"] = "crafted.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "crafted", }, [31] = { - ["id"] = "crafted.stat_3981240776", - ["text"] = "# to Spirit", + ["id"] = "crafted.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "crafted", }, [32] = { - ["id"] = "crafted.stat_4273473110", - ["text"] = "#% increased maximum Runic Ward", + ["id"] = "crafted.stat_325171970", + ["text"] = "#% increased Attack Speed while missing Runic Ward", ["type"] = "crafted", }, [33] = { - ["id"] = "crafted.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "crafted.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "crafted", }, [34] = { - ["id"] = "crafted.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", + ["id"] = "crafted.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "crafted", }, [35] = { - ["id"] = "crafted.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "crafted.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "crafted", }, [36] = { - ["id"] = "crafted.stat_325171970", - ["text"] = "#% increased Attack Speed while missing Runic Ward", + ["id"] = "crafted.stat_1002535626", + ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", ["type"] = "crafted", }, [37] = { - ["id"] = "crafted.stat_1062208444", - ["text"] = "#% increased Armour (Local)", + ["id"] = "crafted.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "crafted", }, [38] = { - ["id"] = "crafted.stat_1241625305", - ["text"] = "#% increased Damage with Bow Skills", + ["id"] = "crafted.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", ["type"] = "crafted", }, [39] = { - ["id"] = "crafted.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "crafted.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", ["type"] = "crafted", }, [40] = { - ["id"] = "crafted.stat_1058934731", - ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", + ["id"] = "crafted.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", ["type"] = "crafted", }, [41] = { - ["id"] = "crafted.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["id"] = "crafted.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "crafted", }, [42] = { - ["id"] = "crafted.stat_335885735", - ["text"] = "Bears the Mark of the Abyssal Lord", + ["id"] = "crafted.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", ["type"] = "crafted", }, [43] = { - ["id"] = "crafted.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "crafted.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", ["type"] = "crafted", }, [44] = { - ["id"] = "crafted.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", + ["id"] = "crafted.stat_4139681126", + ["text"] = "#% increased Dexterity", ["type"] = "crafted", }, [45] = { - ["id"] = "crafted.stat_1028592286", - ["text"] = "#% chance to Chain an additional time", + ["id"] = "crafted.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", ["type"] = "crafted", }, [46] = { - ["id"] = "crafted.stat_1840985759", - ["text"] = "#% increased Area of Effect for Attacks", + ["id"] = "crafted.stat_1443502073", + ["text"] = "#% increased Effect of Prefixes", ["type"] = "crafted", }, [47] = { - ["id"] = "crafted.stat_1158842087", - ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", + ["id"] = "crafted.stat_2475221757", + ["text"] = "#% increased Effect of Suffixes", ["type"] = "crafted", }, [48] = { - ["id"] = "crafted.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", + ["id"] = "crafted.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", ["type"] = "crafted", }, [49] = { - ["id"] = "crafted.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "crafted.stat_3141070085", + ["text"] = "#% increased Elemental Damage", ["type"] = "crafted", }, [50] = { - ["id"] = "crafted.stat_315791320", - ["text"] = "Aura Skills have #% increased Magnitudes", + ["id"] = "crafted.stat_4015621042", + ["text"] = "#% increased Energy Shield", ["type"] = "crafted", }, [51] = { - ["id"] = "crafted.stat_691932474", - ["text"] = "# to Accuracy Rating (Local)", + ["id"] = "crafted.stat_2106365538", + ["text"] = "#% increased Evasion Rating", ["type"] = "crafted", }, [52] = { - ["id"] = "crafted.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["id"] = "crafted.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "crafted", }, [53] = { - ["id"] = "crafted.stat_1829102168", - ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["id"] = "crafted.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "crafted", }, [54] = { - ["id"] = "crafted.stat_589361270", - ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", + ["id"] = "crafted.stat_1972391381", + ["text"] = "#% increased Explicit Resistance Modifier magnitudes", ["type"] = "crafted", }, [55] = { - ["id"] = "crafted.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "crafted.stat_2074866941", + ["text"] = "#% increased Exposure Effect", ["type"] = "crafted", }, [56] = { - ["id"] = "crafted.stat_3482326075", - ["text"] = "Remnants can be collected from #% further away", + ["id"] = "crafted.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "crafted", }, [57] = { - ["id"] = "crafted.stat_2840930496", - ["text"] = "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", + ["id"] = "crafted.stat_1177404658", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield", ["type"] = "crafted", }, [58] = { - ["id"] = "crafted.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "crafted.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", ["type"] = "crafted", }, [59] = { - ["id"] = "crafted.stat_2843214518", - ["text"] = "#% increased Attack Damage", + ["id"] = "crafted.stat_656461285", + ["text"] = "#% increased Intelligence", ["type"] = "crafted", }, [60] = { - ["id"] = "crafted.stat_4147510958", - ["text"] = "Sealed Skills have # to maximum Seals", + ["id"] = "crafted.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", ["type"] = "crafted", }, [61] = { - ["id"] = "crafted.stat_2392260628", - ["text"] = "#% increased Runic Ward Regeneration Rate", + ["id"] = "crafted.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "crafted", }, [62] = { - ["id"] = "crafted.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "crafted.stat_797289402", + ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", ["type"] = "crafted", }, [63] = { - ["id"] = "crafted.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["id"] = "crafted.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", ["type"] = "crafted", }, [64] = { - ["id"] = "crafted.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["id"] = "crafted.stat_3621874554", + ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", ["type"] = "crafted", }, [65] = { - ["id"] = "crafted.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "crafted.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", ["type"] = "crafted", }, [66] = { - ["id"] = "crafted.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["id"] = "crafted.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "crafted", }, [67] = { - ["id"] = "crafted.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", + ["id"] = "crafted.stat_3526763442", + ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", ["type"] = "crafted", }, [68] = { - ["id"] = "crafted.stat_274716455", - ["text"] = "#% increased Critical Spell Damage Bonus", + ["id"] = "crafted.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "crafted", }, [69] = { - ["id"] = "crafted.stat_1303248024", - ["text"] = "#% increased Magnitude of Ailments you inflict", + ["id"] = "crafted.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "crafted", }, [70] = { - ["id"] = "crafted.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["id"] = "crafted.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", ["type"] = "crafted", }, [71] = { - ["id"] = "crafted.stat_3865605585", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["id"] = "crafted.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "crafted", }, [72] = { - ["id"] = "crafted.stat_953593695", - ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", + ["id"] = "crafted.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", ["type"] = "crafted", }, [73] = { - ["id"] = "crafted.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["id"] = "crafted.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", ["type"] = "crafted", }, [74] = { - ["id"] = "crafted.stat_1967040409", - ["text"] = "Spell Skills have #% increased Area of Effect", + ["id"] = "crafted.stat_830161081", + ["text"] = "#% increased Runic Ward", ["type"] = "crafted", }, [75] = { - ["id"] = "crafted.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", + ["id"] = "crafted.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", ["type"] = "crafted", }, [76] = { - ["id"] = "crafted.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", + ["id"] = "crafted.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", ["type"] = "crafted", }, [77] = { - ["id"] = "crafted.stat_1797815732", - ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", + ["id"] = "crafted.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "crafted", }, [78] = { - ["id"] = "crafted.stat_1426522529", - ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["id"] = "crafted.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "crafted", }, [79] = { - ["id"] = "crafted.stat_323800555", - ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", + ["id"] = "crafted.stat_734614379", + ["text"] = "#% increased Strength", ["type"] = "crafted", }, [80] = { - ["id"] = "crafted.stat_2466785537", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["id"] = "crafted.stat_1316278494", + ["text"] = "#% increased Warcry Speed", ["type"] = "crafted", }, [81] = { - ["id"] = "crafted.stat_933355817", - ["text"] = "#% to gain Archon of Undeath when you create an Offering", + ["id"] = "crafted.stat_1180552088", + ["text"] = "#% increased effect of Archon Buffs on you", ["type"] = "crafted", }, [82] = { - ["id"] = "crafted.stat_3665922113", - ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["id"] = "crafted.stat_2081918629", + ["text"] = "#% increased effect of Socketed Augment Items", ["type"] = "crafted", }, [83] = { - ["id"] = "crafted.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "crafted.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "crafted", }, [84] = { - ["id"] = "crafted.stat_2704905000", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["id"] = "crafted.stat_983749596", + ["text"] = "#% increased maximum Life", ["type"] = "crafted", }, [85] = { - ["id"] = "crafted.stat_1417267954", - ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["id"] = "crafted.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "crafted", }, [86] = { - ["id"] = "crafted.stat_4139681126", - ["text"] = "#% increased Dexterity", + ["id"] = "crafted.stat_4273473110", + ["text"] = "#% increased maximum Runic Ward", ["type"] = "crafted", }, [87] = { - ["id"] = "crafted.stat_2074866941", - ["text"] = "#% increased Exposure Effect", + ["id"] = "crafted.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", ["type"] = "crafted", }, [88] = { - ["id"] = "crafted.stat_2442527254", - ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["id"] = "crafted.stat_54812069", + ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", ["type"] = "crafted", }, [89] = { - ["id"] = "crafted.stat_73032170", - ["text"] = "Minions have #% increased Skill Speed with Command Skills", + ["id"] = "crafted.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "crafted", }, [90] = { - ["id"] = "crafted.stat_2149603090", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["id"] = "crafted.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", ["type"] = "crafted", }, [91] = { - ["id"] = "crafted.stat_1742651309", - ["text"] = "#% of Fire Damage taken Recouped as Life", + ["id"] = "crafted.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", ["type"] = "crafted", }, [92] = { - ["id"] = "crafted.stat_1568848828", - ["text"] = "Recover # Runic Ward when you Block", + ["id"] = "crafted.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", ["type"] = "crafted", }, [93] = { - ["id"] = "crafted.stat_3714003708", - ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["id"] = "crafted.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "crafted", }, [94] = { - ["id"] = "crafted.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["id"] = "crafted.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "crafted", }, [95] = { - ["id"] = "crafted.stat_825116955", - ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", + ["id"] = "crafted.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "crafted", }, [96] = { - ["id"] = "crafted.stat_1002535626", - ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", + ["id"] = "crafted.stat_518292764", + ["text"] = "#% to Critical Hit Chance", ["type"] = "crafted", }, [97] = { - ["id"] = "crafted.stat_1484026495", - ["text"] = "+# maximum stacks of Puppet Master", + ["id"] = "crafted.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "crafted", }, [98] = { - ["id"] = "crafted.stat_2954116742|7809", - ["text"] = "Allocates Wild Storm", + ["id"] = "crafted.stat_3399401168", + ["text"] = "#% to Fire Spell Critical Hit Chance", ["type"] = "crafted", }, [99] = { - ["id"] = "crafted.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", + ["id"] = "crafted.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "crafted", }, [100] = { - ["id"] = "crafted.stat_4019237939", - ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["id"] = "crafted.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", ["type"] = "crafted", }, [101] = { - ["id"] = "crafted.stat_2954116742|45612", - ["text"] = "Allocates Defensive Reflexes", + ["id"] = "crafted.stat_2039822488", + ["text"] = "#% to Maximum Quality", ["type"] = "crafted", }, [102] = { - ["id"] = "crafted.stat_1805633363", - ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["id"] = "crafted.stat_933355817", + ["text"] = "#% to gain Archon of Undeath when you create an Offering", ["type"] = "crafted", }, [103] = { - ["id"] = "crafted.stat_139889694", - ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["id"] = "crafted.stat_1484026495", + ["text"] = "+# maximum stacks of Puppet Master", ["type"] = "crafted", }, [104] = { - ["id"] = "crafted.stat_830161081", - ["text"] = "#% increased Runic Ward", + ["id"] = "crafted.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", ["type"] = "crafted", }, [105] = { - ["id"] = "crafted.stat_844449513", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["id"] = "crafted.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", ["type"] = "crafted", }, [106] = { - ["id"] = "crafted.stat_2954116742|62185", - ["text"] = "Allocates Rattled", + ["id"] = "crafted.stat_709508406", + ["text"] = "Adds # to # Fire Damage", ["type"] = "crafted", }, [107] = { - ["id"] = "crafted.stat_2954116742|60992", - ["text"] = "Allocates Nurturing Guardian", + ["id"] = "crafted.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "crafted", }, [108] = { - ["id"] = "crafted.stat_2954116742|38532", - ["text"] = "Allocates Thirst for Power", + ["id"] = "crafted.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", ["type"] = "crafted", }, [109] = { - ["id"] = "crafted.stat_2954116742|51602", - ["text"] = "Allocates Unsight", + ["id"] = "crafted.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "crafted", }, [110] = { - ["id"] = "crafted.stat_195270549", - ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", + ["id"] = "crafted.stat_2954116742|56493", + ["text"] = "Allocates Agile Succession", ["type"] = "crafted", }, [111] = { - ["id"] = "crafted.stat_2954116742|30395", - ["text"] = "Allocates Howling Beast", + ["id"] = "crafted.stat_2954116742|26339", + ["text"] = "Allocates Ancestral Artifice", ["type"] = "crafted", }, [112] = { - ["id"] = "crafted.stat_1180552088", - ["text"] = "#% increased effect of Archon Buffs on you", + ["id"] = "crafted.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", ["type"] = "crafted", }, [113] = { - ["id"] = "crafted.stat_1316278494", - ["text"] = "#% increased Warcry Speed", + ["id"] = "crafted.stat_2954116742|41620", + ["text"] = "Allocates Bear's Roar", ["type"] = "crafted", }, [114] = { - ["id"] = "crafted.stat_656461285", - ["text"] = "#% increased Intelligence", + ["id"] = "crafted.stat_2954116742|42177", + ["text"] = "Allocates Blurred Motion", ["type"] = "crafted", }, [115] = { - ["id"] = "crafted.stat_2954116742|16940", - ["text"] = "Allocates Arcane Nature", + ["id"] = "crafted.stat_2954116742|52618", + ["text"] = "Allocates Boon of the Beast", ["type"] = "crafted", }, [116] = { - ["id"] = "crafted.stat_2954116742|18496", - ["text"] = "Allocates Lasting Trauma", + ["id"] = "crafted.stat_2954116742|9535", + ["text"] = "Allocates Brinerot Ferocity", ["type"] = "crafted", }, [117] = { - ["id"] = "crafted.stat_2954116742|1420", - ["text"] = "Allocates Dizzying Sweep", + ["id"] = "crafted.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", ["type"] = "crafted", }, [118] = { - ["id"] = "crafted.stat_1137305356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["id"] = "crafted.stat_2954116742|35031", + ["text"] = "Allocates Chakra of Life", ["type"] = "crafted", }, [119] = { - ["id"] = "crafted.stat_3191479793", - ["text"] = "Offering Skills have #% increased Buff effect", + ["id"] = "crafted.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", ["type"] = "crafted", }, [120] = { - ["id"] = "crafted.stat_3249412463", - ["text"] = "Supported Minions' Strikes have Melee Splash", + ["id"] = "crafted.stat_2954116742|47363", + ["text"] = "Allocates Colossal Weapon", ["type"] = "crafted", }, [121] = { - ["id"] = "crafted.stat_1615901249", - ["text"] = "Invocated skills have #% increased Maximum Energy", + ["id"] = "crafted.stat_2954116742|42660", + ["text"] = "Allocates Commanding Rage", ["type"] = "crafted", }, [122] = { - ["id"] = "crafted.stat_2954116742|52803", - ["text"] = "Allocates Hale Traveller", + ["id"] = "crafted.stat_2954116742|27761", + ["text"] = "Allocates Counterstancing", ["type"] = "crafted", }, [123] = { - ["id"] = "crafted.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "crafted.stat_2954116742|50687", + ["text"] = "Allocates Coursing Energy", ["type"] = "crafted", }, [124] = { - ["id"] = "crafted.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "crafted.stat_2954116742|19715", + ["text"] = "Allocates Cremation", ["type"] = "crafted", }, [125] = { - ["id"] = "crafted.stat_4215035940", - ["text"] = "On Corruption, Item gains two Enchantments", + ["id"] = "crafted.stat_2954116742|18505", + ["text"] = "Allocates Crushing Verdict", ["type"] = "crafted", }, [126] = { - ["id"] = "crafted.stat_2954116742|61921", - ["text"] = "Allocates Storm Surge", + ["id"] = "crafted.stat_2954116742|20495", + ["text"] = "Allocates Dark Entropy", ["type"] = "crafted", }, [127] = { - ["id"] = "crafted.stat_2954116742|35849", - ["text"] = "Allocates Thickened Arteries", + ["id"] = "crafted.stat_2954116742|45612", + ["text"] = "Allocates Defensive Reflexes", ["type"] = "crafted", }, [128] = { - ["id"] = "crafted.stat_1022759479", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["id"] = "crafted.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", ["type"] = "crafted", }, [129] = { - ["id"] = "crafted.stat_2954116742|42177", - ["text"] = "Allocates Blurred Motion", + ["id"] = "crafted.stat_2954116742|1420", + ["text"] = "Allocates Dizzying Sweep", ["type"] = "crafted", }, [130] = { - ["id"] = "crafted.stat_2954116742|56616", - ["text"] = "Allocates Desperate Times", + ["id"] = "crafted.stat_2954116742|26214", + ["text"] = "Allocates Dominion", ["type"] = "crafted", }, [131] = { - ["id"] = "crafted.stat_3587953142", - ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", + ["id"] = "crafted.stat_2954116742|42245", + ["text"] = "Allocates Efficient Inscriptions", ["type"] = "crafted", }, [132] = { - ["id"] = "crafted.stat_2954116742|31745", - ["text"] = "Allocates Lockdown", + ["id"] = "crafted.stat_2954116742|3894", + ["text"] = "Allocates Eldritch Will", ["type"] = "crafted", }, [133] = { - ["id"] = "crafted.stat_1443502073", - ["text"] = "#% increased Effect of Prefixes", + ["id"] = "crafted.stat_2954116742|43633", + ["text"] = "Allocates Energising Archon", ["type"] = "crafted", }, [134] = { - ["id"] = "crafted.stat_2954116742|9290", - ["text"] = "Allocates Rusted Pins", + ["id"] = "crafted.stat_2954116742|17854", + ["text"] = "Allocates Escape Velocity", ["type"] = "crafted", }, [135] = { - ["id"] = "crafted.stat_2954116742|40480", - ["text"] = "Allocates Harmonic Generator", + ["id"] = "crafted.stat_2954116742|60034", + ["text"] = "Allocates Falcon Dive", ["type"] = "crafted", }, [136] = { - ["id"] = "crafted.stat_1972391381", - ["text"] = "#% increased Explicit Resistance Modifier magnitudes", + ["id"] = "crafted.stat_2954116742|60464", + ["text"] = "Allocates Fan the Flames", ["type"] = "crafted", }, [137] = { - ["id"] = "crafted.stat_2954116742|9226", - ["text"] = "Allocates Mental Perseverance", + ["id"] = "crafted.stat_2954116742|3921", + ["text"] = "Allocates Fate Finding", ["type"] = "crafted", }, [138] = { - ["id"] = "crafted.stat_2954116742|41033", - ["text"] = "Allocates Utmost Offering", + ["id"] = "crafted.stat_2954116742|32128", + ["text"] = "Allocates Flow of Time", ["type"] = "crafted", }, [139] = { - ["id"] = "crafted.stat_2954116742|38537", - ["text"] = "Allocates Heartstopping", + ["id"] = "crafted.stat_2954116742|48699", + ["text"] = "Allocates Frostwalker", ["type"] = "crafted", }, [140] = { - ["id"] = "crafted.stat_2954116742|34324", - ["text"] = "Allocates Spectral Ward", + ["id"] = "crafted.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", ["type"] = "crafted", }, [141] = { - ["id"] = "crafted.stat_2954116742|4238", - ["text"] = "Allocates Versatile Arms", + ["id"] = "crafted.stat_2954116742|58714", + ["text"] = "Allocates Grenadier", ["type"] = "crafted", }, [142] = { - ["id"] = "crafted.stat_1940865751", - ["text"] = "Adds # to # Physical Damage", + ["id"] = "crafted.stat_2954116742|13844", + ["text"] = "Allocates Growing Peril", ["type"] = "crafted", }, [143] = { - ["id"] = "crafted.stat_2954116742|19715", - ["text"] = "Allocates Cremation", + ["id"] = "crafted.stat_2954116742|52803", + ["text"] = "Allocates Hale Traveller", ["type"] = "crafted", }, [144] = { - ["id"] = "crafted.stat_2954116742|24120", - ["text"] = "Allocates Mental Toughness", + ["id"] = "crafted.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", ["type"] = "crafted", }, [145] = { - ["id"] = "crafted.stat_2954116742|13407", - ["text"] = "Allocates Heartbreaking", + ["id"] = "crafted.stat_2954116742|40480", + ["text"] = "Allocates Harmonic Generator", ["type"] = "crafted", }, [146] = { - ["id"] = "crafted.stat_2954116742|65256", - ["text"] = "Allocates Widespread Coverage", + ["id"] = "crafted.stat_2954116742|44293", + ["text"] = "Allocates Hastening Barrier", ["type"] = "crafted", }, [147] = { - ["id"] = "crafted.stat_2954116742|46683", - ["text"] = "Allocates Inherited Strength ", + ["id"] = "crafted.stat_2954116742|13407", + ["text"] = "Allocates Heartbreaking", ["type"] = "crafted", }, [148] = { - ["id"] = "crafted.stat_758893621", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["id"] = "crafted.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", ["type"] = "crafted", }, [149] = { - ["id"] = "crafted.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "crafted.stat_2954116742|11826", + ["text"] = "Allocates Heavy Ammunition", ["type"] = "crafted", }, [150] = { - ["id"] = "crafted.stat_2954116742|2745", - ["text"] = "Allocates The Noble Wolf", + ["id"] = "crafted.stat_2954116742|30395", + ["text"] = "Allocates Howling Beast", ["type"] = "crafted", }, [151] = { - ["id"] = "crafted.stat_2954116742|50687", - ["text"] = "Allocates Coursing Energy", + ["id"] = "crafted.stat_2954116742|48617", + ["text"] = "Allocates Hunter", ["type"] = "crafted", }, [152] = { - ["id"] = "crafted.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", + ["id"] = "crafted.stat_2954116742|46683", + ["text"] = "Allocates Inherited Strength ", ["type"] = "crafted", }, [153] = { - ["id"] = "crafted.stat_3391917254", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["id"] = "crafted.stat_2954116742|30562", + ["text"] = "Allocates Inner Faith", ["type"] = "crafted", }, [154] = { - ["id"] = "crafted.stat_2954116742|1169", - ["text"] = "Allocates Urgent Call", + ["id"] = "crafted.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", ["type"] = "crafted", }, [155] = { - ["id"] = "crafted.stat_971590056", - ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", + ["id"] = "crafted.stat_2954116742|41394", + ["text"] = "Allocates Invigorating Archon", ["type"] = "crafted", }, [156] = { - ["id"] = "crafted.stat_554145967", - ["text"] = "Recover # Runic Ward when a Charm is used", + ["id"] = "crafted.stat_2954116742|18496", + ["text"] = "Allocates Lasting Trauma", ["type"] = "crafted", }, [157] = { - ["id"] = "crafted.stat_2954116742|55308", - ["text"] = "Allocates Sling Shots", + ["id"] = "crafted.stat_2954116742|31745", + ["text"] = "Allocates Lockdown", ["type"] = "crafted", }, [158] = { - ["id"] = "crafted.stat_1185341308", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["id"] = "crafted.stat_2954116742|23738", + ["text"] = "Allocates Madness in the Bones", ["type"] = "crafted", }, [159] = { - ["id"] = "crafted.stat_2954116742|26339", - ["text"] = "Allocates Ancestral Artifice", + ["id"] = "crafted.stat_2954116742|37742", + ["text"] = "Allocates Manifold Method", ["type"] = "crafted", }, [160] = { - ["id"] = "crafted.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "crafted.stat_2954116742|64050", + ["text"] = "Allocates Marathon Runner", ["type"] = "crafted", }, [161] = { - ["id"] = "crafted.stat_2954116742|45177", - ["text"] = "Allocates Strike True", + ["id"] = "crafted.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", ["type"] = "crafted", }, [162] = { - ["id"] = "crafted.stat_3858398337", - ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["id"] = "crafted.stat_2954116742|24120", + ["text"] = "Allocates Mental Toughness", ["type"] = "crafted", }, [163] = { - ["id"] = "crafted.stat_2954116742|6178", - ["text"] = "Allocates Power Shots", + ["id"] = "crafted.stat_2954116742|51868", + ["text"] = "Allocates Molten Carapace", ["type"] = "crafted", }, [164] = { - ["id"] = "crafted.stat_2726713579", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["id"] = "crafted.stat_2954116742|52764", + ["text"] = "Allocates Mystical Rage", ["type"] = "crafted", }, [165] = { - ["id"] = "crafted.stat_2954116742|37543", - ["text"] = "Allocates Full Recovery", + ["id"] = "crafted.stat_2954116742|11376", + ["text"] = "Allocates Necrotic Touch", ["type"] = "crafted", }, [166] = { - ["id"] = "crafted.stat_541021467", - ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", + ["id"] = "crafted.stat_2954116742|60992", + ["text"] = "Allocates Nurturing Guardian", ["type"] = "crafted", }, [167] = { - ["id"] = "crafted.stat_2954116742|23427", - ["text"] = "Allocates Chilled to the Bone", + ["id"] = "crafted.stat_2954116742|52199", + ["text"] = "Allocates Overexposure", ["type"] = "crafted", }, [168] = { - ["id"] = "crafted.stat_2954116742|8831", - ["text"] = "Allocates Tempered Mind", + ["id"] = "crafted.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", ["type"] = "crafted", }, [169] = { - ["id"] = "crafted.stat_2768899959", - ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["id"] = "crafted.stat_2954116742|20686", + ["text"] = "Allocates Paragon", ["type"] = "crafted", }, [170] = { @@ -22181,73 +22185,73 @@ return { ["type"] = "crafted", }, [171] = { - ["id"] = "crafted.stat_2954116742|51213", - ["text"] = "Allocates Wasting", + ["id"] = "crafted.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", ["type"] = "crafted", }, [172] = { - ["id"] = "crafted.stat_1691403182", - ["text"] = "Minions have #% increased Cooldown Recovery Rate", + ["id"] = "crafted.stat_2954116742|6178", + ["text"] = "Allocates Power Shots", ["type"] = "crafted", }, [173] = { - ["id"] = "crafted.stat_2954116742|30562", - ["text"] = "Allocates Inner Faith", + ["id"] = "crafted.stat_2954116742|49550", + ["text"] = "Allocates Prolonged Fury", ["type"] = "crafted", }, [174] = { - ["id"] = "crafted.stat_2954116742|52199", - ["text"] = "Allocates Overexposure", + ["id"] = "crafted.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", ["type"] = "crafted", }, [175] = { - ["id"] = "crafted.stat_2954116742|37742", - ["text"] = "Allocates Manifold Method", + ["id"] = "crafted.stat_2954116742|62185", + ["text"] = "Allocates Rattled", ["type"] = "crafted", }, [176] = { - ["id"] = "crafted.stat_2954116742|52764", - ["text"] = "Allocates Mystical Rage", + ["id"] = "crafted.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", ["type"] = "crafted", }, [177] = { - ["id"] = "crafted.stat_2954116742|61112", - ["text"] = "Allocates Roll and Strike", + ["id"] = "crafted.stat_2954116742|20414", + ["text"] = "Allocates Reprisal", ["type"] = "crafted", }, [178] = { - ["id"] = "crafted.stat_3121133045", - ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", + ["id"] = "crafted.stat_2954116742|56860", + ["text"] = "Allocates Resolute Reprisal", ["type"] = "crafted", }, [179] = { - ["id"] = "crafted.stat_2969557004", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["id"] = "crafted.stat_2954116742|38972", + ["text"] = "Allocates Restless Dead", ["type"] = "crafted", }, [180] = { - ["id"] = "crafted.stat_2081918629", - ["text"] = "#% increased effect of Socketed Augment Items", + ["id"] = "crafted.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", ["type"] = "crafted", }, [181] = { - ["id"] = "crafted.stat_3526763442", - ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", + ["id"] = "crafted.stat_2954116742|9290", + ["text"] = "Allocates Rusted Pins", ["type"] = "crafted", }, [182] = { - ["id"] = "crafted.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", + ["id"] = "crafted.stat_2954116742|14294", + ["text"] = "Allocates Sacrificial Blood", ["type"] = "crafted", }, [183] = { - ["id"] = "crafted.stat_2954116742|56806", - ["text"] = "Allocates Swift Blocking", + ["id"] = "crafted.stat_2954116742|4810", + ["text"] = "Allocates Sanguine Tolerance", ["type"] = "crafted", }, [184] = { - ["id"] = "crafted.stat_2954116742|41620", - ["text"] = "Allocates Bear's Roar", + ["id"] = "crafted.stat_2954116742|36085", + ["text"] = "Allocates Serrated Edges", ["type"] = "crafted", }, [185] = { @@ -22256,483 +22260,503 @@ return { ["type"] = "crafted", }, [186] = { - ["id"] = "crafted.stat_2954116742|26214", - ["text"] = "Allocates Dominion", + ["id"] = "crafted.stat_2954116742|17229", + ["text"] = "Allocates Silent Guardian", ["type"] = "crafted", }, [187] = { - ["id"] = "crafted.stat_2954116742|11376", - ["text"] = "Allocates Necrotic Touch", + ["id"] = "crafted.stat_2954116742|55308", + ["text"] = "Allocates Sling Shots", ["type"] = "crafted", }, [188] = { - ["id"] = "crafted.stat_2480498143", - ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["id"] = "crafted.stat_2954116742|14602", + ["text"] = "Allocates Specialised Shots", ["type"] = "crafted", }, [189] = { - ["id"] = "crafted.stat_2954116742|38972", - ["text"] = "Allocates Restless Dead", + ["id"] = "crafted.stat_2954116742|34324", + ["text"] = "Allocates Spectral Ward", ["type"] = "crafted", }, [190] = { - ["id"] = "crafted.stat_2954116742|42714", - ["text"] = "Allocates Thousand Cuts", + ["id"] = "crafted.stat_2954116742|26104", + ["text"] = "Allocates Spirit of the Wyvern", ["type"] = "crafted", }, [191] = { - ["id"] = "crafted.stat_2954116742|31373", - ["text"] = "Allocates Vocal Empowerment", + ["id"] = "crafted.stat_2954116742|11578", + ["text"] = "Allocates Spreading Shocks", ["type"] = "crafted", }, [192] = { - ["id"] = "crafted.stat_2954116742|14383", - ["text"] = "Allocates Suffusion", + ["id"] = "crafted.stat_2954116742|6304", + ["text"] = "Allocates Stand Ground", ["type"] = "crafted", }, [193] = { - ["id"] = "crafted.stat_3621874554", - ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", + ["id"] = "crafted.stat_2954116742|7163", + ["text"] = "Allocates Stimulants", ["type"] = "crafted", }, [194] = { - ["id"] = "crafted.stat_2954116742|48699", - ["text"] = "Allocates Frostwalker", + ["id"] = "crafted.stat_2954116742|61921", + ["text"] = "Allocates Storm Surge", ["type"] = "crafted", }, [195] = { - ["id"] = "crafted.stat_3222402650", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["id"] = "crafted.stat_2954116742|45177", + ["text"] = "Allocates Strike True", ["type"] = "crafted", }, [196] = { - ["id"] = "crafted.stat_3518449420", - ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", + ["id"] = "crafted.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", ["type"] = "crafted", }, [197] = { - ["id"] = "crafted.stat_2954116742|64050", - ["text"] = "Allocates Marathon Runner", + ["id"] = "crafted.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", ["type"] = "crafted", }, [198] = { - ["id"] = "crafted.stat_734614379", - ["text"] = "#% increased Strength", + ["id"] = "crafted.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", ["type"] = "crafted", }, [199] = { - ["id"] = "crafted.stat_2954116742|20414", - ["text"] = "Allocates Reprisal", + ["id"] = "crafted.stat_2954116742|4544", + ["text"] = "Allocates The Ancient Serpent", ["type"] = "crafted", }, [200] = { - ["id"] = "crafted.stat_525523040", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["id"] = "crafted.stat_2954116742|2745", + ["text"] = "Allocates The Noble Wolf", ["type"] = "crafted", }, [201] = { - ["id"] = "crafted.stat_2039822488", - ["text"] = "#% to Maximum Quality", + ["id"] = "crafted.stat_2954116742|52971", + ["text"] = "Allocates The Soul Meridian", ["type"] = "crafted", }, [202] = { - ["id"] = "crafted.stat_1823942939", - ["text"] = "# to maximum number of Summoned Ballista Totems", + ["id"] = "crafted.stat_2954116742|11774", + ["text"] = "Allocates The Spring Hare", ["type"] = "crafted", }, [203] = { - ["id"] = "crafted.stat_1309799717", - ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["id"] = "crafted.stat_2954116742|35849", + ["text"] = "Allocates Thickened Arteries", ["type"] = "crafted", }, [204] = { - ["id"] = "crafted.stat_2951965588", - ["text"] = "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", + ["id"] = "crafted.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", ["type"] = "crafted", }, [205] = { - ["id"] = "crafted.stat_2954116742|23738", - ["text"] = "Allocates Madness in the Bones", + ["id"] = "crafted.stat_2954116742|42714", + ["text"] = "Allocates Thousand Cuts", ["type"] = "crafted", }, [206] = { - ["id"] = "crafted.stat_3891355829|3", - ["text"] = "Upgrades Radius to Very Large", + ["id"] = "crafted.stat_2954116742|57785", + ["text"] = "Allocates Trained Turrets", ["type"] = "crafted", }, [207] = { - ["id"] = "crafted.stat_2954116742|47363", - ["text"] = "Allocates Colossal Weapon", + ["id"] = "crafted.stat_2954116742|61601", + ["text"] = "Allocates True Strike", ["type"] = "crafted", }, [208] = { - ["id"] = "crafted.stat_1846980580", - ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["id"] = "crafted.stat_2954116742|20008", + ["text"] = "Allocates Unleash Fire", ["type"] = "crafted", }, [209] = { - ["id"] = "crafted.stat_2954116742|51868", - ["text"] = "Allocates Molten Carapace", + ["id"] = "crafted.stat_2954116742|4547", + ["text"] = "Allocates Unnatural Resilience", ["type"] = "crafted", }, [210] = { - ["id"] = "crafted.stat_2954116742|20495", - ["text"] = "Allocates Dark Entropy", + ["id"] = "crafted.stat_2954116742|51602", + ["text"] = "Allocates Unsight", ["type"] = "crafted", }, [211] = { - ["id"] = "crafted.stat_2954116742|27761", - ["text"] = "Allocates Counterstancing", + ["id"] = "crafted.stat_2954116742|1169", + ["text"] = "Allocates Urgent Call", ["type"] = "crafted", }, [212] = { - ["id"] = "crafted.stat_2954116742|57785", - ["text"] = "Allocates Trained Turrets", + ["id"] = "crafted.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", ["type"] = "crafted", }, [213] = { - ["id"] = "crafted.stat_2954116742|17229", - ["text"] = "Allocates Silent Guardian", + ["id"] = "crafted.stat_2954116742|17762", + ["text"] = "Allocates Vengeance", ["type"] = "crafted", }, [214] = { - ["id"] = "crafted.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "crafted.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", ["type"] = "crafted", }, [215] = { - ["id"] = "crafted.stat_2954116742|17854", - ["text"] = "Allocates Escape Velocity", + ["id"] = "crafted.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", ["type"] = "crafted", }, [216] = { - ["id"] = "crafted.stat_2897413282", - ["text"] = "# to all Attributes", + ["id"] = "crafted.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", ["type"] = "crafted", }, [217] = { - ["id"] = "crafted.stat_2954116742|4544", - ["text"] = "Allocates The Ancient Serpent", + ["id"] = "crafted.stat_2954116742|51213", + ["text"] = "Allocates Wasting", ["type"] = "crafted", }, [218] = { - ["id"] = "crafted.stat_2954116742|3921", - ["text"] = "Allocates Fate Finding", + ["id"] = "crafted.stat_2954116742|65256", + ["text"] = "Allocates Widespread Coverage", ["type"] = "crafted", }, [219] = { - ["id"] = "crafted.stat_2954116742|32128", - ["text"] = "Allocates Flow of Time", + ["id"] = "crafted.stat_2954116742|7809", + ["text"] = "Allocates Wild Storm", ["type"] = "crafted", }, [220] = { - ["id"] = "crafted.stat_54812069", - ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", + ["id"] = "crafted.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "crafted", }, [221] = { - ["id"] = "crafted.stat_2954116742|34531", - ["text"] = "Allocates Hallowed", + ["id"] = "crafted.stat_335885735", + ["text"] = "Bears the Mark of the Abyssal Lord", ["type"] = "crafted", }, [222] = { - ["id"] = "crafted.stat_4097212302", - ["text"] = "# to maximum number of Elemental Infusions", + ["id"] = "crafted.stat_3587953142", + ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", ["type"] = "crafted", }, [223] = { - ["id"] = "crafted.stat_2954116742|6304", - ["text"] = "Allocates Stand Ground", + ["id"] = "crafted.stat_2101383955", + ["text"] = "Damage Penetrates #% Elemental Resistances", ["type"] = "crafted", }, [224] = { - ["id"] = "crafted.stat_2475221757", - ["text"] = "#% increased Effect of Suffixes", + ["id"] = "crafted.stat_541021467", + ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", ["type"] = "crafted", }, [225] = { - ["id"] = "crafted.stat_2954116742|26104", - ["text"] = "Allocates Spirit of the Wyvern", + ["id"] = "crafted.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", ["type"] = "crafted", }, [226] = { - ["id"] = "crafted.stat_2954116742|4810", - ["text"] = "Allocates Sanguine Tolerance", + ["id"] = "crafted.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "crafted", }, [227] = { - ["id"] = "crafted.stat_1265767008", - ["text"] = "Your Minions are Gigantic if they have Revived Recently", + ["id"] = "crafted.stat_825116955", + ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", ["type"] = "crafted", }, [228] = { - ["id"] = "crafted.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "crafted.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "crafted", }, [229] = { - ["id"] = "crafted.stat_2954116742|56860", - ["text"] = "Allocates Resolute Reprisal", + ["id"] = "crafted.stat_589361270", + ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", ["type"] = "crafted", }, [230] = { - ["id"] = "crafted.stat_2954116742|58714", - ["text"] = "Allocates Grenadier", + ["id"] = "crafted.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "crafted", }, [231] = { - ["id"] = "crafted.stat_1352561456", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["id"] = "crafted.stat_323800555", + ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", ["type"] = "crafted", }, [232] = { - ["id"] = "crafted.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", + ["id"] = "crafted.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", ["type"] = "crafted", }, [233] = { - ["id"] = "crafted.stat_2158617060", - ["text"] = "#% increased Archon Buff duration", + ["id"] = "crafted.stat_1158842087", + ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", ["type"] = "crafted", }, [234] = { - ["id"] = "crafted.stat_2954116742|7163", - ["text"] = "Allocates Stimulants", + ["id"] = "crafted.stat_758893621", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", ["type"] = "crafted", }, [235] = { - ["id"] = "crafted.stat_2954116742|19125", - ["text"] = "Allocates Potent Incantation", + ["id"] = "crafted.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "crafted", }, [236] = { - ["id"] = "crafted.stat_2822644689", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["id"] = "crafted.stat_971590056", + ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", ["type"] = "crafted", }, [237] = { - ["id"] = "crafted.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "crafted.stat_2951965588", + ["text"] = "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", ["type"] = "crafted", }, [238] = { - ["id"] = "crafted.stat_2954116742|60464", - ["text"] = "Allocates Fan the Flames", + ["id"] = "crafted.stat_1615901249", + ["text"] = "Invocated skills have #% increased Maximum Energy", ["type"] = "crafted", }, [239] = { - ["id"] = "crafted.stat_2954116742|42245", - ["text"] = "Allocates Efficient Inscriptions", + ["id"] = "crafted.stat_3121133045", + ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", ["type"] = "crafted", }, [240] = { - ["id"] = "crafted.stat_2954116742|35809", - ["text"] = "Allocates Reinvigoration", + ["id"] = "crafted.stat_195270549", + ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", ["type"] = "crafted", }, [241] = { - ["id"] = "crafted.stat_2954116742|4661", - ["text"] = "Allocates Inspiring Leader", + ["id"] = "crafted.stat_1797815732", + ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", ["type"] = "crafted", }, [242] = { - ["id"] = "crafted.stat_2954116742|13844", - ["text"] = "Allocates Growing Peril", + ["id"] = "crafted.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", ["type"] = "crafted", }, [243] = { - ["id"] = "crafted.stat_2749595652", - ["text"] = "#% chance for Skills to retain 40% of Glory on use", + ["id"] = "crafted.stat_953593695", + ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", ["type"] = "crafted", }, [244] = { - ["id"] = "crafted.stat_2954116742|11826", - ["text"] = "Allocates Heavy Ammunition", + ["id"] = "crafted.stat_73032170", + ["text"] = "Minions have #% increased Skill Speed with Command Skills", ["type"] = "crafted", }, [245] = { - ["id"] = "crafted.stat_2954116742|4547", - ["text"] = "Allocates Unnatural Resilience", + ["id"] = "crafted.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "crafted", }, [246] = { - ["id"] = "crafted.stat_1181501418", - ["text"] = "# to Maximum Rage", + ["id"] = "crafted.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", ["type"] = "crafted", }, [247] = { - ["id"] = "crafted.stat_3984146263", - ["text"] = "Tempest Bells are destroyed after an additional # Hits", + ["id"] = "crafted.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", ["type"] = "crafted", }, [248] = { - ["id"] = "crafted.stat_2954116742|52618", - ["text"] = "Allocates Boon of the Beast", + ["id"] = "crafted.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", ["type"] = "crafted", }, [249] = { - ["id"] = "crafted.stat_555706343", - ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", + ["id"] = "crafted.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", ["type"] = "crafted", }, [250] = { - ["id"] = "crafted.stat_2954116742|56493", - ["text"] = "Allocates Agile Succession", + ["id"] = "crafted.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "crafted", }, [251] = { - ["id"] = "crafted.stat_797289402", - ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", + ["id"] = "crafted.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "crafted", }, [252] = { - ["id"] = "crafted.stat_1994296038", - ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["id"] = "crafted.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", ["type"] = "crafted", }, [253] = { - ["id"] = "crafted.stat_2954116742|11578", - ["text"] = "Allocates Spreading Shocks", + ["id"] = "crafted.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", ["type"] = "crafted", }, [254] = { - ["id"] = "crafted.stat_2954116742|11774", - ["text"] = "Allocates The Spring Hare", + ["id"] = "crafted.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", ["type"] = "crafted", }, [255] = { - ["id"] = "crafted.stat_2954116742|41394", - ["text"] = "Allocates Invigorating Archon", + ["id"] = "crafted.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "crafted", }, [256] = { - ["id"] = "crafted.stat_2954116742|36085", - ["text"] = "Allocates Serrated Edges", + ["id"] = "crafted.stat_1687542781", + ["text"] = "Notable Passive Skills in Radius also grant #% to Lightning Resistance", ["type"] = "crafted", }, [257] = { - ["id"] = "crafted.stat_3399401168", - ["text"] = "#% to Fire Spell Critical Hit Chance", + ["id"] = "crafted.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", ["type"] = "crafted", }, [258] = { - ["id"] = "crafted.stat_2954116742|14602", - ["text"] = "Allocates Specialised Shots", + ["id"] = "crafted.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", ["type"] = "crafted", }, [259] = { - ["id"] = "crafted.stat_1687542781", - ["text"] = "Notable Passive Skills in Radius also grant #% to Lightning Resistance", + ["id"] = "crafted.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "crafted", }, [260] = { - ["id"] = "crafted.stat_2954116742|18505", - ["text"] = "Allocates Crushing Verdict", + ["id"] = "crafted.stat_3191479793", + ["text"] = "Offering Skills have #% increased Buff effect", ["type"] = "crafted", }, [261] = { - ["id"] = "crafted.stat_2954116742|14294", - ["text"] = "Allocates Sacrificial Blood", + ["id"] = "crafted.stat_4215035940", + ["text"] = "On Corruption, Item gains two Enchantments", ["type"] = "crafted", }, [262] = { - ["id"] = "crafted.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", + ["id"] = "crafted.stat_554145967", + ["text"] = "Recover # Runic Ward when a Charm is used", ["type"] = "crafted", }, [263] = { - ["id"] = "crafted.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", + ["id"] = "crafted.stat_1568848828", + ["text"] = "Recover # Runic Ward when you Block", ["type"] = "crafted", }, [264] = { - ["id"] = "crafted.stat_2954116742|20686", - ["text"] = "Allocates Paragon", + ["id"] = "crafted.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "crafted", }, [265] = { - ["id"] = "crafted.stat_2954116742|49550", - ["text"] = "Allocates Prolonged Fury", + ["id"] = "crafted.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "crafted", }, [266] = { - ["id"] = "crafted.stat_2954116742|35031", - ["text"] = "Allocates Chakra of Life", + ["id"] = "crafted.stat_3482326075", + ["text"] = "Remnants can be collected from #% further away", ["type"] = "crafted", }, [267] = { - ["id"] = "crafted.stat_2954116742|60034", - ["text"] = "Allocates Falcon Dive", + ["id"] = "crafted.stat_4147510958", + ["text"] = "Sealed Skills have # to maximum Seals", ["type"] = "crafted", }, [268] = { - ["id"] = "crafted.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", + ["id"] = "crafted.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", ["type"] = "crafted", }, [269] = { - ["id"] = "crafted.stat_2954116742|44293", - ["text"] = "Allocates Hastening Barrier", + ["id"] = "crafted.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", ["type"] = "crafted", }, [270] = { - ["id"] = "crafted.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", + ["id"] = "crafted.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "crafted", }, [271] = { - ["id"] = "crafted.stat_2954116742|9535", - ["text"] = "Allocates Brinerot Ferocity", + ["id"] = "crafted.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "crafted", }, [272] = { - ["id"] = "crafted.stat_2954116742|13482", - ["text"] = "Allocates Punctured Lung", + ["id"] = "crafted.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", ["type"] = "crafted", }, [273] = { - ["id"] = "crafted.stat_2954116742|14761", - ["text"] = "Allocates Warlord Leader", + ["id"] = "crafted.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "crafted", }, [274] = { - ["id"] = "crafted.stat_2954116742|3894", - ["text"] = "Allocates Eldritch Will", + ["id"] = "crafted.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "crafted", }, [275] = { - ["id"] = "crafted.stat_2954116742|61601", - ["text"] = "Allocates True Strike", + ["id"] = "crafted.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "crafted", }, [276] = { - ["id"] = "crafted.stat_2954116742|65204", - ["text"] = "Allocates Overflowing Power", + ["id"] = "crafted.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", ["type"] = "crafted", }, [277] = { - ["id"] = "crafted.stat_2954116742|42660", - ["text"] = "Allocates Commanding Rage", + ["id"] = "crafted.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", ["type"] = "crafted", }, [278] = { - ["id"] = "crafted.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "crafted.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", ["type"] = "crafted", }, [279] = { - ["id"] = "crafted.stat_2954116742|48617", - ["text"] = "Allocates Hunter", + ["id"] = "crafted.stat_1967040409", + ["text"] = "Spell Skills have #% increased Area of Effect", ["type"] = "crafted", }, [280] = { - ["id"] = "crafted.stat_2954116742|44005", - ["text"] = "Allocates Casting Cascade", + ["id"] = "crafted.stat_555706343", + ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", + ["type"] = "crafted", + }, + [281] = { + ["id"] = "crafted.stat_3249412463", + ["text"] = "Supported Minions' Strikes have Melee Splash", + ["type"] = "crafted", + }, + [282] = { + ["id"] = "crafted.stat_3984146263", + ["text"] = "Tempest Bells are destroyed after an additional # Hits", + ["type"] = "crafted", + }, + [283] = { + ["id"] = "crafted.stat_1058934731", + ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", + ["type"] = "crafted", + }, + [284] = { + ["id"] = "crafted.stat_3891355829|3", + ["text"] = "Upgrades Radius to Very Large", ["type"] = "crafted", }, - [281] = { - ["id"] = "crafted.stat_2954116742|52971", - ["text"] = "Allocates The Soul Meridian", + [285] = { + ["id"] = "crafted.stat_1265767008", + ["text"] = "Your Minions are Gigantic if they have Revived Recently", ["type"] = "crafted", }, }, @@ -22742,4958 +22766,4958 @@ return { [6] = { ["entries"] = { [1] = { - ["id"] = "enchant.stat_1715784068", - ["text"] = "Players in Area are #% Delirious", + ["id"] = "enchant.stat_762600725", + ["text"] = "# Life gained when you Block", ["type"] = "enchant", }, [2] = { - ["id"] = "enchant.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "enchant.stat_2122183138", + ["text"] = "# Mana gained when you Block", ["type"] = "enchant", }, [3] = { - ["id"] = "enchant.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "enchant.stat_803737631", + ["text"] = "# to Accuracy Rating", ["type"] = "enchant", }, [4] = { - ["id"] = "enchant.stat_328541901", - ["text"] = "# to Intelligence", + ["id"] = "enchant.stat_3261801346", + ["text"] = "# to Dexterity", ["type"] = "enchant", }, [5] = { - ["id"] = "enchant.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "enchant.stat_328541901", + ["text"] = "# to Intelligence", ["type"] = "enchant", }, [6] = { - ["id"] = "enchant.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "enchant.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", ["type"] = "enchant", }, [7] = { - ["id"] = "enchant.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "enchant.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", ["type"] = "enchant", }, [8] = { - ["id"] = "enchant.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "enchant.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", ["type"] = "enchant", }, [9] = { - ["id"] = "enchant.stat_3138466258", - ["text"] = "#% increased Tablets found in Area", + ["id"] = "enchant.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", ["type"] = "enchant", }, [10] = { - ["id"] = "enchant.stat_3138466258", - ["text"] = "#% increased Quantity of Tablets found", + ["id"] = "enchant.stat_9187492", + ["text"] = "# to Level of all Melee Skills", ["type"] = "enchant", }, [11] = { - ["id"] = "enchant.stat_3732878551", - ["text"] = "Rare Monsters have a #% Surpassing chance to have an additional Modifier", + ["id"] = "enchant.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", ["type"] = "enchant", }, [12] = { - ["id"] = "enchant.stat_3732878551", - ["text"] = "Rare Monsters in your Maps have a #% Surpassing chance to have an additional Modifier", + ["id"] = "enchant.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", ["type"] = "enchant", }, [13] = { - ["id"] = "enchant.stat_3371085671", - ["text"] = "Unique Monsters have # additional Rare Modifier", + ["id"] = "enchant.stat_4283407333", + ["text"] = "# to Level of all Skills", ["type"] = "enchant", }, [14] = { - ["id"] = "enchant.stat_3371085671", - ["text"] = "Unique Monsters in your Maps have # additional Rare Modifier", + ["id"] = "enchant.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", ["type"] = "enchant", }, [15] = { - ["id"] = "enchant.stat_3836551197", - ["text"] = "#% increased Stack size of Simulacrum Splinters found in Area", + ["id"] = "enchant.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", ["type"] = "enchant", }, [16] = { - ["id"] = "enchant.stat_3836551197", - ["text"] = "#% increased Stack size of Simulacrum Splinters found in your Maps", + ["id"] = "enchant.stat_227523295", + ["text"] = "# to Maximum Power Charges", ["type"] = "enchant", }, [17] = { - ["id"] = "enchant.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", + ["id"] = "enchant.stat_3981240776", + ["text"] = "# to Spirit", ["type"] = "enchant", }, [18] = { - ["id"] = "enchant.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["id"] = "enchant.stat_4080418644", + ["text"] = "# to Strength", ["type"] = "enchant", }, [19] = { - ["id"] = "enchant.stat_4015621042", - ["text"] = "#% increased Energy Shield", + ["id"] = "enchant.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "enchant", }, [20] = { - ["id"] = "enchant.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "enchant.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "enchant", }, [21] = { - ["id"] = "enchant.stat_3981240776", - ["text"] = "# to Spirit", + ["id"] = "enchant.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", ["type"] = "enchant", }, [22] = { - ["id"] = "enchant.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", + ["id"] = "enchant.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", ["type"] = "enchant", }, [23] = { - ["id"] = "enchant.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "enchant.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", ["type"] = "enchant", }, [24] = { - ["id"] = "enchant.stat_1315743832", - ["text"] = "#% increased Thorns damage", + ["id"] = "enchant.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", ["type"] = "enchant", }, [25] = { - ["id"] = "enchant.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "enchant.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", ["type"] = "enchant", }, [26] = { - ["id"] = "enchant.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "enchant.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", ["type"] = "enchant", }, [27] = { - ["id"] = "enchant.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", + ["id"] = "enchant.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "enchant", }, [28] = { - ["id"] = "enchant.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", + ["id"] = "enchant.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "enchant", }, [29] = { - ["id"] = "enchant.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "enchant.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "enchant", }, [30] = { - ["id"] = "enchant.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "enchant.stat_1062208444", + ["text"] = "#% increased Armour (Local)", ["type"] = "enchant", }, [31] = { - ["id"] = "enchant.stat_3429557654", - ["text"] = "Immune to Maim", + ["id"] = "enchant.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", ["type"] = "enchant", }, [32] = { - ["id"] = "enchant.stat_721014846", - ["text"] = "You cannot be Hindered", + ["id"] = "enchant.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", ["type"] = "enchant", }, [33] = { - ["id"] = "enchant.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", + ["id"] = "enchant.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "enchant", }, [34] = { - ["id"] = "enchant.stat_1658498488", - ["text"] = "Corrupted Blood cannot be inflicted on you", + ["id"] = "enchant.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", ["type"] = "enchant", }, [35] = { - ["id"] = "enchant.stat_1436284579", - ["text"] = "Cannot be Blinded", + ["id"] = "enchant.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", ["type"] = "enchant", }, [36] = { - ["id"] = "enchant.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", + ["id"] = "enchant.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "enchant", }, [37] = { - ["id"] = "enchant.stat_227523295", - ["text"] = "# to Maximum Power Charges", + ["id"] = "enchant.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "enchant", }, [38] = { - ["id"] = "enchant.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "enchant.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", ["type"] = "enchant", }, [39] = { - ["id"] = "enchant.stat_709508406", - ["text"] = "Adds # to # Fire Damage", + ["id"] = "enchant.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "enchant", }, [40] = { - ["id"] = "enchant.stat_2154246560", - ["text"] = "#% increased Damage", + ["id"] = "enchant.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", ["type"] = "enchant", }, [41] = { - ["id"] = "enchant.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", + ["id"] = "enchant.stat_2154246560", + ["text"] = "#% increased Damage", ["type"] = "enchant", }, [42] = { - ["id"] = "enchant.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", + ["id"] = "enchant.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", ["type"] = "enchant", }, [43] = { - ["id"] = "enchant.stat_970213192", - ["text"] = "#% increased Skill Speed", + ["id"] = "enchant.stat_4015621042", + ["text"] = "#% increased Energy Shield", ["type"] = "enchant", }, [44] = { - ["id"] = "enchant.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", + ["id"] = "enchant.stat_2106365538", + ["text"] = "#% increased Evasion Rating", ["type"] = "enchant", }, [45] = { - ["id"] = "enchant.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", + ["id"] = "enchant.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "enchant", }, [46] = { - ["id"] = "enchant.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", + ["id"] = "enchant.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "enchant", }, [47] = { - ["id"] = "enchant.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "enchant.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", ["type"] = "enchant", }, [48] = { - ["id"] = "enchant.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["id"] = "enchant.stat_473429811", + ["text"] = "#% increased Freeze Buildup", ["type"] = "enchant", }, [49] = { - ["id"] = "enchant.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["id"] = "enchant.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", ["type"] = "enchant", }, [50] = { - ["id"] = "enchant.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", + ["id"] = "enchant.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", ["type"] = "enchant", }, [51] = { - ["id"] = "enchant.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", + ["id"] = "enchant.stat_3873704640", + ["text"] = "#% increased Magic Monsters", ["type"] = "enchant", }, [52] = { - ["id"] = "enchant.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "enchant.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "enchant", }, [53] = { - ["id"] = "enchant.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", + ["id"] = "enchant.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", ["type"] = "enchant", }, [54] = { - ["id"] = "enchant.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", + ["id"] = "enchant.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "enchant", }, [55] = { - ["id"] = "enchant.stat_2954116742|57190", - ["text"] = "Allocates Doomsayer", + ["id"] = "enchant.stat_2017682521", + ["text"] = "#% increased Pack Size", ["type"] = "enchant", }, [56] = { - ["id"] = "enchant.stat_1776411443", - ["text"] = "Break #% increased Armour", + ["id"] = "enchant.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "enchant", }, [57] = { - ["id"] = "enchant.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", + ["id"] = "enchant.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", ["type"] = "enchant", }, [58] = { - ["id"] = "enchant.stat_680068163", - ["text"] = "#% increased Stun Threshold", + ["id"] = "enchant.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "enchant", }, [59] = { - ["id"] = "enchant.stat_1062208444", - ["text"] = "#% increased Armour (Local)", + ["id"] = "enchant.stat_3138466258", + ["text"] = "#% increased Quantity of Tablets found", ["type"] = "enchant", }, [60] = { - ["id"] = "enchant.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", + ["id"] = "enchant.stat_3793155082", + ["text"] = "#% increased Rare Monsters", ["type"] = "enchant", }, [61] = { - ["id"] = "enchant.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", + ["id"] = "enchant.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", ["type"] = "enchant", }, [62] = { - ["id"] = "enchant.stat_1725749947", - ["text"] = "Grants # Rage on Hit", + ["id"] = "enchant.stat_2306002879", + ["text"] = "#% increased Rarity of Items found", ["type"] = "enchant", }, [63] = { - ["id"] = "enchant.stat_2954116742|30456", - ["text"] = "Allocates High Alert", + ["id"] = "enchant.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", ["type"] = "enchant", }, [64] = { - ["id"] = "enchant.stat_548198834", - ["text"] = "#% increased Melee Strike Range with this weapon", + ["id"] = "enchant.stat_970213192", + ["text"] = "#% increased Skill Speed", ["type"] = "enchant", }, [65] = { - ["id"] = "enchant.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", + ["id"] = "enchant.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "enchant", }, [66] = { - ["id"] = "enchant.stat_4078695", - ["text"] = "# to Maximum Frenzy Charges", + ["id"] = "enchant.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "enchant", }, [67] = { - ["id"] = "enchant.stat_3650992555", - ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", + ["id"] = "enchant.stat_3984865854", + ["text"] = "#% increased Spirit", ["type"] = "enchant", }, [68] = { - ["id"] = "enchant.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "enchant.stat_3836551197", + ["text"] = "#% increased Stack size of Simulacrum Splinters found in Area", ["type"] = "enchant", }, [69] = { - ["id"] = "enchant.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", + ["id"] = "enchant.stat_3836551197", + ["text"] = "#% increased Stack size of Simulacrum Splinters found in your Maps", ["type"] = "enchant", }, [70] = { - ["id"] = "enchant.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", + ["id"] = "enchant.stat_680068163", + ["text"] = "#% increased Stun Threshold", ["type"] = "enchant", }, [71] = { - ["id"] = "enchant.stat_2954116742|34473", - ["text"] = "Allocates Spaghettification", + ["id"] = "enchant.stat_3138466258", + ["text"] = "#% increased Tablets found in Area", ["type"] = "enchant", }, [72] = { - ["id"] = "enchant.stat_2763429652", - ["text"] = "#% chance to Maim on Hit", + ["id"] = "enchant.stat_1315743832", + ["text"] = "#% increased Thorns damage", ["type"] = "enchant", }, [73] = { - ["id"] = "enchant.stat_9187492", - ["text"] = "# to Level of all Melee Skills", + ["id"] = "enchant.stat_1316278494", + ["text"] = "#% increased Warcry Speed", ["type"] = "enchant", }, [74] = { - ["id"] = "enchant.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["id"] = "enchant.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", ["type"] = "enchant", }, [75] = { - ["id"] = "enchant.stat_2954116742|57388", - ["text"] = "Allocates Overwhelming Strike", + ["id"] = "enchant.stat_293638271", + ["text"] = "#% increased chance to Shock", ["type"] = "enchant", }, [76] = { - ["id"] = "enchant.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", + ["id"] = "enchant.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "enchant", }, [77] = { - ["id"] = "enchant.stat_2301191210", - ["text"] = "#% chance to Blind Enemies on hit", + ["id"] = "enchant.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "enchant", }, [78] = { - ["id"] = "enchant.stat_2954116742|38535", - ["text"] = "Allocates Stormcharged", + ["id"] = "enchant.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "enchant", }, [79] = { - ["id"] = "enchant.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", + ["id"] = "enchant.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "enchant", }, [80] = { - ["id"] = "enchant.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "enchant.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "enchant", }, [81] = { - ["id"] = "enchant.stat_2954116742|42177", - ["text"] = "Allocates Blurred Motion", + ["id"] = "enchant.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", ["type"] = "enchant", }, [82] = { - ["id"] = "enchant.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "enchant.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "enchant", }, [83] = { - ["id"] = "enchant.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "enchant.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "enchant", }, [84] = { - ["id"] = "enchant.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", + ["id"] = "enchant.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", ["type"] = "enchant", }, [85] = { - ["id"] = "enchant.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["id"] = "enchant.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", ["type"] = "enchant", }, [86] = { - ["id"] = "enchant.stat_2557965901", - ["text"] = "Leech #% of Physical Attack Damage as Life", + ["id"] = "enchant.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", ["type"] = "enchant", }, [87] = { - ["id"] = "enchant.stat_2200293569", - ["text"] = "Mana Flasks gain # charges per Second", + ["id"] = "enchant.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "enchant", }, [88] = { - ["id"] = "enchant.stat_185580205", - ["text"] = "Charms gain # charge per Second", + ["id"] = "enchant.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "enchant", }, [89] = { - ["id"] = "enchant.stat_1102738251", - ["text"] = "Life Flasks gain # charges per Second", + ["id"] = "enchant.stat_480796730", + ["text"] = "#% to maximum Block chance", ["type"] = "enchant", }, [90] = { - ["id"] = "enchant.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", + ["id"] = "enchant.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", ["type"] = "enchant", }, [91] = { - ["id"] = "enchant.stat_3984865854", - ["text"] = "#% increased Spirit", + ["id"] = "enchant.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", ["type"] = "enchant", }, [92] = { - ["id"] = "enchant.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", + ["id"] = "enchant.stat_709508406", + ["text"] = "Adds # to # Fire Damage", ["type"] = "enchant", }, [93] = { - ["id"] = "enchant.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", + ["id"] = "enchant.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "enchant", }, [94] = { - ["id"] = "enchant.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["id"] = "enchant.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "enchant", }, [95] = { - ["id"] = "enchant.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["id"] = "enchant.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "enchant", }, [96] = { - ["id"] = "enchant.stat_2954116742|116", - ["text"] = "Allocates Insightfulness", + ["id"] = "enchant.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "enchant", }, [97] = { - ["id"] = "enchant.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "enchant.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "enchant", }, [98] = { - ["id"] = "enchant.stat_2954116742|44566", - ["text"] = "Allocates Lightning Rod", + ["id"] = "enchant.stat_2954116742|7338", + ["text"] = "Allocates Abasement", ["type"] = "enchant", }, [99] = { - ["id"] = "enchant.stat_3885634897", - ["text"] = "#% chance to Poison on Hit with this weapon", + ["id"] = "enchant.stat_2954116742|43082", + ["text"] = "Allocates Acceleration", ["type"] = "enchant", }, [100] = { - ["id"] = "enchant.stat_2954116742|34300", - ["text"] = "Allocates Conservative Casting", + ["id"] = "enchant.stat_2954116742|12822", + ["text"] = "Allocates Adaptable Assault", ["type"] = "enchant", }, [101] = { - ["id"] = "enchant.stat_2954116742|32301", - ["text"] = "Allocates Frazzled", + ["id"] = "enchant.stat_2954116742|43250", + ["text"] = "Allocates Adaptive Skin", ["type"] = "enchant", }, [102] = { - ["id"] = "enchant.stat_762600725", - ["text"] = "# Life gained when you Block", + ["id"] = "enchant.stat_2954116742|35876", + ["text"] = "Allocates Admonisher", ["type"] = "enchant", }, [103] = { - ["id"] = "enchant.stat_2954116742|4534", - ["text"] = "Allocates Piercing Shot", + ["id"] = "enchant.stat_2954116742|17340", + ["text"] = "Allocates Adrenaline Rush", ["type"] = "enchant", }, [104] = { - ["id"] = "enchant.stat_1515657623", - ["text"] = "# to Maximum Endurance Charges", + ["id"] = "enchant.stat_2954116742|43829", + ["text"] = "Allocates Advanced Munitions", ["type"] = "enchant", }, [105] = { - ["id"] = "enchant.stat_2122183138", - ["text"] = "# Mana gained when you Block", + ["id"] = "enchant.stat_2954116742|4295", + ["text"] = "Allocates Adverse Growth", ["type"] = "enchant", }, [106] = { - ["id"] = "enchant.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["id"] = "enchant.stat_2954116742|4716", + ["text"] = "Allocates Afterimage", ["type"] = "enchant", }, [107] = { - ["id"] = "enchant.stat_2954116742|27303", - ["text"] = "Allocates Vulgar Methods", + ["id"] = "enchant.stat_2954116742|50253", + ["text"] = "Allocates Aftershocks", ["type"] = "enchant", }, [108] = { - ["id"] = "enchant.stat_293638271", - ["text"] = "#% increased chance to Shock", + ["id"] = "enchant.stat_2954116742|59938", + ["text"] = "Allocates Against the Elements", ["type"] = "enchant", }, [109] = { - ["id"] = "enchant.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", + ["id"] = "enchant.stat_2954116742|6655", + ["text"] = "Allocates Aggravation", ["type"] = "enchant", }, [110] = { - ["id"] = "enchant.stat_480796730", - ["text"] = "#% to maximum Block chance", + ["id"] = "enchant.stat_2954116742|8896", + ["text"] = "Allocates Agile Sprinter", ["type"] = "enchant", }, [111] = { - ["id"] = "enchant.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", + ["id"] = "enchant.stat_2954116742|56493", + ["text"] = "Allocates Agile Succession", ["type"] = "enchant", }, [112] = { - ["id"] = "enchant.stat_473429811", - ["text"] = "#% increased Freeze Buildup", + ["id"] = "enchant.stat_2954116742|43088", + ["text"] = "Allocates Agonising Calamity", ["type"] = "enchant", }, [113] = { - ["id"] = "enchant.stat_2954116742|55193", - ["text"] = "Allocates Subterfuge Mask", + ["id"] = "enchant.stat_2954116742|55817", + ["text"] = "Allocates Alchemical Oil", ["type"] = "enchant", }, [114] = { - ["id"] = "enchant.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", + ["id"] = "enchant.stat_2954116742|43854", + ["text"] = "Allocates All For One", ["type"] = "enchant", }, [115] = { - ["id"] = "enchant.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", + ["id"] = "enchant.stat_2954116742|58016", + ["text"] = "Allocates All Natural", ["type"] = "enchant", }, [116] = { - ["id"] = "enchant.stat_2954116742|11826", - ["text"] = "Allocates Heavy Ammunition", + ["id"] = "enchant.stat_2954116742|48974", + ["text"] = "Allocates Altered Brain Chemistry", ["type"] = "enchant", }, [117] = { - ["id"] = "enchant.stat_2954116742|28975", - ["text"] = "Allocates Pure Power", + ["id"] = "enchant.stat_2954116742|23764", + ["text"] = "Allocates Alternating Current", ["type"] = "enchant", }, [118] = { - ["id"] = "enchant.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", + ["id"] = "enchant.stat_2954116742|20558", + ["text"] = "Allocates Among the Hordes", ["type"] = "enchant", }, [119] = { - ["id"] = "enchant.stat_2954116742|33099", - ["text"] = "Allocates Hunter's Talisman", + ["id"] = "enchant.stat_2954116742|2575", + ["text"] = "Allocates Ancestral Alacrity", ["type"] = "enchant", }, [120] = { - ["id"] = "enchant.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["id"] = "enchant.stat_2954116742|26339", + ["text"] = "Allocates Ancestral Artifice", ["type"] = "enchant", }, [121] = { - ["id"] = "enchant.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["id"] = "enchant.stat_2954116742|51820", + ["text"] = "Allocates Ancestral Conduits", ["type"] = "enchant", }, [122] = { - ["id"] = "enchant.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", + ["id"] = "enchant.stat_2954116742|18419", + ["text"] = "Allocates Ancestral Mending", ["type"] = "enchant", }, [123] = { - ["id"] = "enchant.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", + ["id"] = "enchant.stat_2954116742|43396", + ["text"] = "Allocates Ancestral Reach", ["type"] = "enchant", }, [124] = { - ["id"] = "enchant.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", + ["id"] = "enchant.stat_2954116742|62609", + ["text"] = "Allocates Ancestral Unity", ["type"] = "enchant", }, [125] = { - ["id"] = "enchant.stat_2954116742|37266", - ["text"] = "Allocates Nourishing Ally", + ["id"] = "enchant.stat_2954116742|5728", + ["text"] = "Allocates Ancient Aegis", ["type"] = "enchant", }, [126] = { - ["id"] = "enchant.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", + ["id"] = "enchant.stat_2954116742|62431", + ["text"] = "Allocates Anticipation", ["type"] = "enchant", }, [127] = { - ["id"] = "enchant.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", + ["id"] = "enchant.stat_2954116742|38398", + ["text"] = "Allocates Apocalypse", ["type"] = "enchant", }, [128] = { - ["id"] = "enchant.stat_2954116742|50562", - ["text"] = "Allocates Barbaric Strength", + ["id"] = "enchant.stat_2954116742|46224", + ["text"] = "Allocates Arcane Alchemy", ["type"] = "enchant", }, [129] = { - ["id"] = "enchant.stat_2954116742|4031", - ["text"] = "Allocates Icebreaker", + ["id"] = "enchant.stat_2954116742|14324", + ["text"] = "Allocates Arcane Blossom", ["type"] = "enchant", }, [130] = { - ["id"] = "enchant.stat_2954116742|61703", - ["text"] = "Allocates Sharpened Claw", + ["id"] = "enchant.stat_2954116742|19044", + ["text"] = "Allocates Arcane Intensity", ["type"] = "enchant", }, [131] = { - ["id"] = "enchant.stat_2954116742|15829", - ["text"] = "Allocates Siphon", + ["id"] = "enchant.stat_2954116742|46972", + ["text"] = "Allocates Arcane Mixtures", ["type"] = "enchant", }, [132] = { - ["id"] = "enchant.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", + ["id"] = "enchant.stat_2954116742|16940", + ["text"] = "Allocates Arcane Nature", ["type"] = "enchant", }, [133] = { - ["id"] = "enchant.stat_2954116742|65160", - ["text"] = "Allocates Titanic", + ["id"] = "enchant.stat_2954116742|46124", + ["text"] = "Allocates Arcane Remnants", ["type"] = "enchant", }, [134] = { - ["id"] = "enchant.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["id"] = "enchant.stat_2954116742|26926", + ["text"] = "Allocates Archon of Undeath", ["type"] = "enchant", }, [135] = { - ["id"] = "enchant.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", + ["id"] = "enchant.stat_2954116742|42045", + ["text"] = "Allocates Archon of the Blizzard", ["type"] = "enchant", }, [136] = { - ["id"] = "enchant.stat_2954116742|5728", - ["text"] = "Allocates Ancient Aegis", + ["id"] = "enchant.stat_2954116742|27434", + ["text"] = "Allocates Archon of the Storm", ["type"] = "enchant", }, [137] = { - ["id"] = "enchant.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["id"] = "enchant.stat_2954116742|12245", + ["text"] = "Allocates Arsonist", ["type"] = "enchant", }, [138] = { - ["id"] = "enchant.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "enchant.stat_2954116742|58817", + ["text"] = "Allocates Artillery Strike", ["type"] = "enchant", }, [139] = { - ["id"] = "enchant.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["id"] = "enchant.stat_2954116742|12661", + ["text"] = "Allocates Asceticism", ["type"] = "enchant", }, [140] = { - ["id"] = "enchant.stat_2954116742|64851", - ["text"] = "Allocates Flashy Parrying", + ["id"] = "enchant.stat_2954116742|27388", + ["text"] = "Allocates Aspiring Genius", ["type"] = "enchant", }, [141] = { - ["id"] = "enchant.stat_2954116742|24120", - ["text"] = "Allocates Mental Toughness", + ["id"] = "enchant.stat_2954116742|35560", + ["text"] = "Allocates At your Command", ["type"] = "enchant", }, [142] = { - ["id"] = "enchant.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", + ["id"] = "enchant.stat_2954116742|17696", + ["text"] = "Allocates Augmented Flesh", ["type"] = "enchant", }, [143] = { - ["id"] = "enchant.stat_1316278494", - ["text"] = "#% increased Warcry Speed", + ["id"] = "enchant.stat_2954116742|20397", + ["text"] = "Allocates Authority", ["type"] = "enchant", }, [144] = { - ["id"] = "enchant.stat_2954116742|26291", - ["text"] = "Allocates Electrifying Nature", + ["id"] = "enchant.stat_2954116742|50673", + ["text"] = "Allocates Avoiding Deflection", ["type"] = "enchant", }, [145] = { - ["id"] = "enchant.stat_2954116742|9226", - ["text"] = "Allocates Mental Perseverance", + ["id"] = "enchant.stat_2954116742|33059", + ["text"] = "Allocates Back in Action", ["type"] = "enchant", }, [146] = { - ["id"] = "enchant.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", + ["id"] = "enchant.stat_2954116742|53853", + ["text"] = "Allocates Backup Plan", ["type"] = "enchant", }, [147] = { - ["id"] = "enchant.stat_2954116742|45599", - ["text"] = "Allocates Lay Siege", + ["id"] = "enchant.stat_2954116742|62455", + ["text"] = "Allocates Bannerman", ["type"] = "enchant", }, [148] = { - ["id"] = "enchant.stat_2954116742|23227", - ["text"] = "Allocates Initiative", + ["id"] = "enchant.stat_2954116742|50562", + ["text"] = "Allocates Barbaric Strength", ["type"] = "enchant", }, [149] = { - ["id"] = "enchant.stat_2954116742|56453", - ["text"] = "Allocates Killer Instinct", + ["id"] = "enchant.stat_2954116742|50062", + ["text"] = "Allocates Barrier of Venarius", ["type"] = "enchant", }, [150] = { - ["id"] = "enchant.stat_2954116742|7809", - ["text"] = "Allocates Wild Storm", + ["id"] = "enchant.stat_2954116742|8916", + ["text"] = "Allocates Bashing Beast", ["type"] = "enchant", }, [151] = { - ["id"] = "enchant.stat_2954116742|21380", - ["text"] = "Allocates Preemptive Strike", + ["id"] = "enchant.stat_2954116742|37846", + ["text"] = "Allocates Bastion of Light", ["type"] = "enchant", }, [152] = { - ["id"] = "enchant.stat_4283407333", - ["text"] = "# to Level of all Skills", + ["id"] = "enchant.stat_2954116742|64240", + ["text"] = "Allocates Battle Fever", ["type"] = "enchant", }, [153] = { - ["id"] = "enchant.stat_2954116742|22864", - ["text"] = "Allocates Tainted Strike", + ["id"] = "enchant.stat_2954116742|37276", + ["text"] = "Allocates Battle Trance", ["type"] = "enchant", }, [154] = { - ["id"] = "enchant.stat_2954116742|59720", - ["text"] = "Allocates Beastial Skin", + ["id"] = "enchant.stat_2954116742|41620", + ["text"] = "Allocates Bear's Roar", ["type"] = "enchant", }, [155] = { - ["id"] = "enchant.stat_2954116742|31172", - ["text"] = "Allocates Falcon Technique", + ["id"] = "enchant.stat_2954116742|59720", + ["text"] = "Allocates Beastial Skin", ["type"] = "enchant", }, [156] = { - ["id"] = "enchant.stat_2954116742|43082", - ["text"] = "Allocates Acceleration", + ["id"] = "enchant.stat_2954116742|25482", + ["text"] = "Allocates Beef", ["type"] = "enchant", }, [157] = { - ["id"] = "enchant.stat_2954116742|9736", - ["text"] = "Allocates Insulated Treads", + ["id"] = "enchant.stat_2954116742|5642", + ["text"] = "Allocates Behemoth", ["type"] = "enchant", }, [158] = { - ["id"] = "enchant.stat_2954116742|62230", - ["text"] = "Allocates Patient Barrier", + ["id"] = "enchant.stat_2954116742|10873", + ["text"] = "Allocates Bestial Rage", ["type"] = "enchant", }, [159] = { - ["id"] = "enchant.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", + ["id"] = "enchant.stat_2954116742|15825", + ["text"] = "Allocates Bhatair's Storm", ["type"] = "enchant", }, [160] = { - ["id"] = "enchant.stat_2954116742|64543", - ["text"] = "Allocates Unbound Forces", + ["id"] = "enchant.stat_2954116742|38329", + ["text"] = "Allocates Biting Frost", ["type"] = "enchant", }, [161] = { - ["id"] = "enchant.stat_2954116742|57204", - ["text"] = "Allocates Critical Exploit", + ["id"] = "enchant.stat_2954116742|17029", + ["text"] = "Allocates Blade Catcher", ["type"] = "enchant", }, [162] = { - ["id"] = "enchant.stat_2954116742|36085", - ["text"] = "Allocates Serrated Edges", + ["id"] = "enchant.stat_2954116742|2394", + ["text"] = "Allocates Blade Flurry", ["type"] = "enchant", }, [163] = { - ["id"] = "enchant.stat_2954116742|40166", - ["text"] = "Allocates Deep Trance", + ["id"] = "enchant.stat_2954116742|25753", + ["text"] = "Allocates Blazing Arms", ["type"] = "enchant", }, [164] = { - ["id"] = "enchant.stat_2954116742|44917", - ["text"] = "Allocates Self Mortification", + ["id"] = "enchant.stat_2954116742|18308", + ["text"] = "Allocates Bleeding Out", ["type"] = "enchant", }, [165] = { - ["id"] = "enchant.stat_2954116742|8827", - ["text"] = "Allocates Fast Metabolism", + ["id"] = "enchant.stat_2954116742|48925", + ["text"] = "Allocates Blessing of the Moon", ["type"] = "enchant", }, [166] = { - ["id"] = "enchant.stat_2954116742|29527", - ["text"] = "Allocates First Approach", + ["id"] = "enchant.stat_2954116742|42354", + ["text"] = "Allocates Blinding Flash", ["type"] = "enchant", }, [167] = { - ["id"] = "enchant.stat_2954116742|42077", - ["text"] = "Allocates Essence Infusion", + ["id"] = "enchant.stat_2954116742|20916", + ["text"] = "Allocates Blinding Strike", ["type"] = "enchant", }, [168] = { - ["id"] = "enchant.stat_2954116742|40480", - ["text"] = "Allocates Harmonic Generator", + ["id"] = "enchant.stat_2954116742|39083", + ["text"] = "Allocates Blood Rush", ["type"] = "enchant", }, [169] = { - ["id"] = "enchant.stat_2954116742|45612", - ["text"] = "Allocates Defensive Reflexes", + ["id"] = "enchant.stat_2954116742|58183", + ["text"] = "Allocates Blood Tearing", ["type"] = "enchant", }, [170] = { - ["id"] = "enchant.stat_2954116742|63074", - ["text"] = "Allocates Dark Entries", + ["id"] = "enchant.stat_2954116742|48524", + ["text"] = "Allocates Blood Transfusion", ["type"] = "enchant", }, [171] = { - ["id"] = "enchant.stat_2954116742|32354", - ["text"] = "Allocates Defiance", + ["id"] = "enchant.stat_2954116742|35792", + ["text"] = "Allocates Blood of Rage", ["type"] = "enchant", }, [172] = { - ["id"] = "enchant.stat_2954116742|15374", - ["text"] = "Allocates Hale Heart", + ["id"] = "enchant.stat_2954116742|49214", + ["text"] = "Allocates Blood of the Wolf", ["type"] = "enchant", }, [173] = { - ["id"] = "enchant.stat_2954116742|32071", - ["text"] = "Allocates Primal Growth", + ["id"] = "enchant.stat_2954116742|54990", + ["text"] = "Allocates Bloodletting", ["type"] = "enchant", }, [174] = { - ["id"] = "enchant.stat_2954116742|58016", - ["text"] = "Allocates All Natural", + ["id"] = "enchant.stat_2954116742|10772", + ["text"] = "Allocates Bloodthirsty", ["type"] = "enchant", }, [175] = { - ["id"] = "enchant.stat_2954116742|56776", - ["text"] = "Allocates Cooked", + ["id"] = "enchant.stat_2954116742|42177", + ["text"] = "Allocates Blurred Motion", ["type"] = "enchant", }, [176] = { - ["id"] = "enchant.stat_2954116742|19044", - ["text"] = "Allocates Arcane Intensity", + ["id"] = "enchant.stat_2954116742|26070", + ["text"] = "Allocates Bolstering Yell", ["type"] = "enchant", }, [177] = { - ["id"] = "enchant.stat_2954116742|18496", - ["text"] = "Allocates Lasting Trauma", + ["id"] = "enchant.stat_2954116742|712", + ["text"] = "Allocates Bond of the Ape", ["type"] = "enchant", }, [178] = { - ["id"] = "enchant.stat_2954116742|58939", - ["text"] = "Allocates Dispatch Foes", + ["id"] = "enchant.stat_2954116742|1448", + ["text"] = "Allocates Bond of the Cat", ["type"] = "enchant", }, [179] = { - ["id"] = "enchant.stat_2954116742|4295", - ["text"] = "Allocates Adverse Growth", + ["id"] = "enchant.stat_2954116742|47853", + ["text"] = "Allocates Bond of the Mamba", ["type"] = "enchant", }, [180] = { - ["id"] = "enchant.stat_2954116742|16618", - ["text"] = "Allocates Jack of all Trades", + ["id"] = "enchant.stat_2954116742|52568", + ["text"] = "Allocates Bond of the Owl", ["type"] = "enchant", }, [181] = { - ["id"] = "enchant.stat_2954116742|11578", - ["text"] = "Allocates Spreading Shocks", + ["id"] = "enchant.stat_2954116742|34478", + ["text"] = "Allocates Bond of the Viper", ["type"] = "enchant", }, [182] = { - ["id"] = "enchant.stat_2954116742|51606", - ["text"] = "Allocates Freedom of Movement", + ["id"] = "enchant.stat_2954116742|5191", + ["text"] = "Allocates Bond of the Wolf", ["type"] = "enchant", }, [183] = { - ["id"] = "enchant.stat_2954116742|8531", - ["text"] = "Allocates Leaping Ambush", + ["id"] = "enchant.stat_2954116742|17725", + ["text"] = "Allocates Bonded Precision", ["type"] = "enchant", }, [184] = { - ["id"] = "enchant.stat_2954116742|372", - ["text"] = "Allocates Heatproof", + ["id"] = "enchant.stat_2954116742|26563", + ["text"] = "Allocates Bone Chains", ["type"] = "enchant", }, [185] = { - ["id"] = "enchant.stat_2954116742|56806", - ["text"] = "Allocates Swift Blocking", + ["id"] = "enchant.stat_2954116742|52618", + ["text"] = "Allocates Boon of the Beast", ["type"] = "enchant", }, [186] = { - ["id"] = "enchant.stat_2954116742|48006", - ["text"] = "Allocates Devastation", + ["id"] = "enchant.stat_2954116742|15114", + ["text"] = "Allocates Boundless Growth", ["type"] = "enchant", }, [187] = { - ["id"] = "enchant.stat_2954116742|10681", - ["text"] = "Allocates Defensive Stance", + ["id"] = "enchant.stat_2954116742|23244", + ["text"] = "Allocates Bounty Hunter", ["type"] = "enchant", }, [188] = { - ["id"] = "enchant.stat_2954116742|57047", - ["text"] = "Allocates Polymathy", + ["id"] = "enchant.stat_2954116742|37806", + ["text"] = "Allocates Branching Bolts", ["type"] = "enchant", }, [189] = { - ["id"] = "enchant.stat_2954116742|53853", - ["text"] = "Allocates Backup Plan", + ["id"] = "enchant.stat_2954116742|14777", + ["text"] = "Allocates Bravado", ["type"] = "enchant", }, [190] = { - ["id"] = "enchant.stat_2954116742|16256", - ["text"] = "Allocates Ether Flow", + ["id"] = "enchant.stat_2954116742|21453", + ["text"] = "Allocates Breakage", ["type"] = "enchant", }, [191] = { - ["id"] = "enchant.stat_2954116742|38537", - ["text"] = "Allocates Heartstopping", + ["id"] = "enchant.stat_2954116742|39347", + ["text"] = "Allocates Breaking Blows", ["type"] = "enchant", }, [192] = { - ["id"] = "enchant.stat_2954116742|17955", - ["text"] = "Allocates Careful Consideration", + ["id"] = "enchant.stat_2954116742|7777", + ["text"] = "Allocates Breaking Point", ["type"] = "enchant", }, [193] = { - ["id"] = "enchant.stat_2954116742|61601", - ["text"] = "Allocates True Strike", + ["id"] = "enchant.stat_2954116742|24655", + ["text"] = "Allocates Breath of Fire", ["type"] = "enchant", }, [194] = { - ["id"] = "enchant.stat_2954116742|38888", - ["text"] = "Allocates Unerring Impact", + ["id"] = "enchant.stat_2954116742|18086", + ["text"] = "Allocates Breath of Ice", ["type"] = "enchant", }, [195] = { - ["id"] = "enchant.stat_1967051901", - ["text"] = "Loads an additional bolt", + ["id"] = "enchant.stat_2954116742|61338", + ["text"] = "Allocates Breath of Lightning", ["type"] = "enchant", }, [196] = { - ["id"] = "enchant.stat_2954116742|3215", - ["text"] = "Allocates Melding", + ["id"] = "enchant.stat_2954116742|9535", + ["text"] = "Allocates Brinerot Ferocity", ["type"] = "enchant", }, [197] = { - ["id"] = "enchant.stat_2954116742|50687", - ["text"] = "Allocates Coursing Energy", + ["id"] = "enchant.stat_2954116742|48565", + ["text"] = "Allocates Bringer of Order", ["type"] = "enchant", }, [198] = { - ["id"] = "enchant.stat_2954116742|25482", - ["text"] = "Allocates Beef", + ["id"] = "enchant.stat_2954116742|53935", + ["text"] = "Allocates Briny Carapace", ["type"] = "enchant", }, [199] = { - ["id"] = "enchant.stat_2954116742|26107", - ["text"] = "Allocates Kite Runner", + ["id"] = "enchant.stat_2954116742|63541", + ["text"] = "Allocates Brush Off", ["type"] = "enchant", }, [200] = { - ["id"] = "enchant.stat_2954116742|50795", - ["text"] = "Allocates Careful Aim", + ["id"] = "enchant.stat_2954116742|50392", + ["text"] = "Allocates Brute Strength", ["type"] = "enchant", }, [201] = { - ["id"] = "enchant.stat_2954116742|49618", - ["text"] = "Allocates Deadly Flourish", + ["id"] = "enchant.stat_2954116742|15986", + ["text"] = "Allocates Building Toxins", ["type"] = "enchant", }, [202] = { - ["id"] = "enchant.stat_2954116742|42302", - ["text"] = "Allocates Split Shot", + ["id"] = "enchant.stat_2954116742|53294", + ["text"] = "Allocates Burn Away", ["type"] = "enchant", }, [203] = { - ["id"] = "enchant.stat_2954116742|50062", - ["text"] = "Allocates Barrier of Venarius", + ["id"] = "enchant.stat_2954116742|8554", + ["text"] = "Allocates Burning Nature", ["type"] = "enchant", }, [204] = { - ["id"] = "enchant.stat_2954116742|46060", - ["text"] = "Allocates Voracious", + ["id"] = "enchant.stat_2954116742|6544", + ["text"] = "Allocates Burning Strikes", ["type"] = "enchant", }, [205] = { - ["id"] = "enchant.stat_2954116742|33059", - ["text"] = "Allocates Back in Action", + ["id"] = "enchant.stat_2954116742|35324", + ["text"] = "Allocates Burnout", ["type"] = "enchant", }, [206] = { - ["id"] = "enchant.stat_2954116742|46224", - ["text"] = "Allocates Arcane Alchemy", + ["id"] = "enchant.stat_2954116742|6514", + ["text"] = "Allocates Cacophony", ["type"] = "enchant", }, [207] = { - ["id"] = "enchant.stat_2954116742|57110", - ["text"] = "Allocates Infused Flesh", + ["id"] = "enchant.stat_2954116742|32799", + ["text"] = "Allocates Captivating Companionship", ["type"] = "enchant", }, [208] = { - ["id"] = "enchant.stat_2954116742|53150", - ["text"] = "Allocates Sharp Sight", + ["id"] = "enchant.stat_2954116742|50795", + ["text"] = "Allocates Careful Aim", ["type"] = "enchant", }, [209] = { - ["id"] = "enchant.stat_2954116742|2511", - ["text"] = "Allocates Sundering", + ["id"] = "enchant.stat_2954116742|46197", + ["text"] = "Allocates Careful Assassin", ["type"] = "enchant", }, [210] = { - ["id"] = "enchant.stat_2954116742|22967", - ["text"] = "Allocates Vigilance", + ["id"] = "enchant.stat_2954116742|17955", + ["text"] = "Allocates Careful Consideration", ["type"] = "enchant", }, [211] = { - ["id"] = "enchant.stat_2954116742|9472", - ["text"] = "Allocates Catapult", + ["id"] = "enchant.stat_2954116742|52348", + ["text"] = "Allocates Carved Earth", ["type"] = "enchant", }, [212] = { - ["id"] = "enchant.stat_2954116742|65193", - ["text"] = "Allocates Viciousness", + ["id"] = "enchant.stat_2954116742|44005", + ["text"] = "Allocates Casting Cascade", ["type"] = "enchant", }, [213] = { - ["id"] = "enchant.stat_2954116742|1546", - ["text"] = "Allocates Spiral into Depression", + ["id"] = "enchant.stat_2954116742|31433", + ["text"] = "Allocates Catalysis", ["type"] = "enchant", }, [214] = { - ["id"] = "enchant.stat_2954116742|65265", - ["text"] = "Allocates Swift Interruption", + ["id"] = "enchant.stat_2954116742|9472", + ["text"] = "Allocates Catapult", ["type"] = "enchant", }, [215] = { - ["id"] = "enchant.stat_2954116742|63585", - ["text"] = "Allocates Thunderstruck", + ["id"] = "enchant.stat_2954116742|32664", + ["text"] = "Allocates Chakra of Breathing", ["type"] = "enchant", }, [216] = { - ["id"] = "enchant.stat_2954116742|15617", - ["text"] = "Allocates Heavy Drinker", + ["id"] = "enchant.stat_2954116742|63400", + ["text"] = "Allocates Chakra of Elements", ["type"] = "enchant", }, [217] = { - ["id"] = "enchant.stat_2954116742|4716", - ["text"] = "Allocates Afterimage", + ["id"] = "enchant.stat_2954116742|25362", + ["text"] = "Allocates Chakra of Impact", ["type"] = "enchant", }, [218] = { - ["id"] = "enchant.stat_2954116742|42354", - ["text"] = "Allocates Blinding Flash", + ["id"] = "enchant.stat_2954116742|35031", + ["text"] = "Allocates Chakra of Life", ["type"] = "enchant", }, [219] = { - ["id"] = "enchant.stat_2954116742|55060", - ["text"] = "Allocates Shrapnel", + ["id"] = "enchant.stat_2954116742|28963", + ["text"] = "Allocates Chakra of Rhythm", ["type"] = "enchant", }, [220] = { - ["id"] = "enchant.stat_2954116742|48565", - ["text"] = "Allocates Bringer of Order", + ["id"] = "enchant.stat_2954116742|42347", + ["text"] = "Allocates Chakra of Sight", ["type"] = "enchant", }, [221] = { - ["id"] = "enchant.stat_2954116742|27108", - ["text"] = "Allocates Mass Hysteria", + ["id"] = "enchant.stat_2954116742|42760", + ["text"] = "Allocates Chakra of Stability", ["type"] = "enchant", }, [222] = { - ["id"] = "enchant.stat_2954116742|27388", - ["text"] = "Allocates Aspiring Genius", + ["id"] = "enchant.stat_2954116742|29306", + ["text"] = "Allocates Chakra of Thought", ["type"] = "enchant", }, [223] = { - ["id"] = "enchant.stat_2954116742|25619", - ["text"] = "Allocates Sand in the Eyes", + ["id"] = "enchant.stat_2954116742|5410", + ["text"] = "Allocates Channelled Heritage", ["type"] = "enchant", }, [224] = { - ["id"] = "enchant.stat_2954116742|34340", - ["text"] = "Allocates Mass Rejuvenation", + ["id"] = "enchant.stat_2954116742|23427", + ["text"] = "Allocates Chilled to the Bone", ["type"] = "enchant", }, [225] = { - ["id"] = "enchant.stat_2954116742|9908", - ["text"] = "Allocates Price of Freedom", + ["id"] = "enchant.stat_2954116742|5686", + ["text"] = "Allocates Chillproof", ["type"] = "enchant", }, [226] = { - ["id"] = "enchant.stat_2954116742|37806", - ["text"] = "Allocates Branching Bolts", + ["id"] = "enchant.stat_2954116742|39990", + ["text"] = "Allocates Chronomancy", ["type"] = "enchant", }, [227] = { - ["id"] = "enchant.stat_2954116742|37543", - ["text"] = "Allocates Full Recovery", + ["id"] = "enchant.stat_2954116742|21213", + ["text"] = "Allocates Cirel of Tarth's Light", ["type"] = "enchant", }, [228] = { - ["id"] = "enchant.stat_2954116742|60269", - ["text"] = "Allocates Roil", + ["id"] = "enchant.stat_2954116742|57805", + ["text"] = "Allocates Clear Space", ["type"] = "enchant", }, [229] = { - ["id"] = "enchant.stat_2954116742|16466", - ["text"] = "Allocates Mental Alacrity", + ["id"] = "enchant.stat_2954116742|4627", + ["text"] = "Allocates Climate Change", ["type"] = "enchant", }, [230] = { - ["id"] = "enchant.stat_2954116742|19125", - ["text"] = "Allocates Potent Incantation", + ["id"] = "enchant.stat_2954116742|38479", + ["text"] = "Allocates Close Confines", ["type"] = "enchant", }, [231] = { - ["id"] = "enchant.stat_2954116742|58397", - ["text"] = "Allocates Proficiency", + ["id"] = "enchant.stat_2954116742|29514", + ["text"] = "Allocates Cluster Bombs", ["type"] = "enchant", }, [232] = { - ["id"] = "enchant.stat_2954116742|19955", - ["text"] = "Allocates Endless Blizzard", + ["id"] = "enchant.stat_2954116742|44330", + ["text"] = "Allocates Coated Arms", ["type"] = "enchant", }, [233] = { - ["id"] = "enchant.stat_2954116742|8660", - ["text"] = "Allocates Reverberation", + ["id"] = "enchant.stat_2954116742|35618", + ["text"] = "Allocates Cold Coat", ["type"] = "enchant", }, [234] = { - ["id"] = "enchant.stat_2954116742|34324", - ["text"] = "Allocates Spectral Ward", + ["id"] = "enchant.stat_2954116742|26518", + ["text"] = "Allocates Cold Nature", ["type"] = "enchant", }, [235] = { - ["id"] = "enchant.stat_2954116742|8810", - ["text"] = "Allocates Multitasking", + ["id"] = "enchant.stat_2954116742|47363", + ["text"] = "Allocates Colossal Weapon", ["type"] = "enchant", }, [236] = { - ["id"] = "enchant.stat_2954116742|41512", - ["text"] = "Allocates Heavy Weaponry", + ["id"] = "enchant.stat_2954116742|28044", + ["text"] = "Allocates Coming Calamity", ["type"] = "enchant", }, [237] = { - ["id"] = "enchant.stat_2954116742|53294", - ["text"] = "Allocates Burn Away", + ["id"] = "enchant.stat_2954116742|42660", + ["text"] = "Allocates Commanding Rage", ["type"] = "enchant", }, [238] = { - ["id"] = "enchant.stat_2954116742|46197", - ["text"] = "Allocates Careful Assassin", + ["id"] = "enchant.stat_2954116742|34617", + ["text"] = "Allocates Conall the Hunted", ["type"] = "enchant", }, [239] = { - ["id"] = "enchant.stat_2954116742|30341", - ["text"] = "Allocates Master Fletching", + ["id"] = "enchant.stat_2954116742|36931", + ["text"] = "Allocates Concussive Attack", ["type"] = "enchant", }, [240] = { - ["id"] = "enchant.stat_2954116742|25513", - ["text"] = "Allocates Overwhelm", + ["id"] = "enchant.stat_2954116742|52257", + ["text"] = "Allocates Conductive Embrace", ["type"] = "enchant", }, [241] = { - ["id"] = "enchant.stat_2954116742|14761", - ["text"] = "Allocates Warlord Leader", + ["id"] = "enchant.stat_2954116742|34300", + ["text"] = "Allocates Conservative Casting", ["type"] = "enchant", }, [242] = { - ["id"] = "enchant.stat_2954116742|38972", - ["text"] = "Allocates Restless Dead", + ["id"] = "enchant.stat_2954116742|15030", + ["text"] = "Allocates Consistent Intake", ["type"] = "enchant", }, [243] = { - ["id"] = "enchant.stat_2954116742|10998", - ["text"] = "Allocates Strong Chin", + ["id"] = "enchant.stat_2954116742|54640", + ["text"] = "Allocates Constricting", ["type"] = "enchant", }, [244] = { - ["id"] = "enchant.stat_2954116742|4959", - ["text"] = "Allocates Heavy Frost", + ["id"] = "enchant.stat_2954116742|30748", + ["text"] = "Allocates Controlled Chaos", ["type"] = "enchant", }, [245] = { - ["id"] = "enchant.stat_2954116742|19156", - ["text"] = "Allocates Immaterial", + ["id"] = "enchant.stat_2954116742|13823", + ["text"] = "Allocates Controlling Magic", ["type"] = "enchant", }, [246] = { - ["id"] = "enchant.stat_2954116742|53030", - ["text"] = "Allocates Immolation", + ["id"] = "enchant.stat_2954116742|36623", + ["text"] = "Allocates Convalescence", ["type"] = "enchant", }, [247] = { - ["id"] = "enchant.stat_2954116742|17600", - ["text"] = "Allocates Thirsting Ally", + ["id"] = "enchant.stat_2954116742|56776", + ["text"] = "Allocates Cooked", ["type"] = "enchant", }, [248] = { - ["id"] = "enchant.stat_2954116742|37514", - ["text"] = "Allocates Whirling Assault", + ["id"] = "enchant.stat_2954116742|6133", + ["text"] = "Allocates Core of the Guardian", ["type"] = "enchant", }, [249] = { - ["id"] = "enchant.stat_2954116742|46972", - ["text"] = "Allocates Arcane Mixtures", + ["id"] = "enchant.stat_2954116742|27761", + ["text"] = "Allocates Counterstancing", ["type"] = "enchant", }, [250] = { - ["id"] = "enchant.stat_2954116742|40213", - ["text"] = "Allocates Taste for Blood", + ["id"] = "enchant.stat_2954116742|50687", + ["text"] = "Allocates Coursing Energy", ["type"] = "enchant", }, [251] = { - ["id"] = "enchant.stat_2954116742|28329", - ["text"] = "Allocates Pressure Points", + ["id"] = "enchant.stat_2954116742|63451", + ["text"] = "Allocates Cranial Impact", ["type"] = "enchant", }, [252] = { - ["id"] = "enchant.stat_2954116742|15644", - ["text"] = "Allocates Shedding Skin", + ["id"] = "enchant.stat_2954116742|9323", + ["text"] = "Allocates Craving Slaughter", ["type"] = "enchant", }, [253] = { - ["id"] = "enchant.stat_2954116742|55149", - ["text"] = "Allocates Pure Chaos", + ["id"] = "enchant.stat_2954116742|20511", + ["text"] = "Allocates Cremating Cries", ["type"] = "enchant", }, [254] = { - ["id"] = "enchant.stat_2954116742|18505", - ["text"] = "Allocates Crushing Verdict", + ["id"] = "enchant.stat_2954116742|19715", + ["text"] = "Allocates Cremation", ["type"] = "enchant", }, [255] = { - ["id"] = "enchant.stat_2954116742|17882", - ["text"] = "Allocates Volatile Grenades", + ["id"] = "enchant.stat_2954116742|43677", + ["text"] = "Allocates Crippling Toxins", ["type"] = "enchant", }, [256] = { - ["id"] = "enchant.stat_2954116742|4673", - ["text"] = "Allocates Hulking Smash", + ["id"] = "enchant.stat_2954116742|57204", + ["text"] = "Allocates Critical Exploit", ["type"] = "enchant", }, [257] = { - ["id"] = "enchant.stat_2954116742|20916", - ["text"] = "Allocates Blinding Strike", + ["id"] = "enchant.stat_2954116742|45488", + ["text"] = "Allocates Cross Strike", ["type"] = "enchant", }, [258] = { - ["id"] = "enchant.stat_2954116742|21206", - ["text"] = "Allocates Explosive Impact", + ["id"] = "enchant.stat_2954116742|42981", + ["text"] = "Allocates Cruel Methods", ["type"] = "enchant", }, [259] = { - ["id"] = "enchant.stat_2954116742|4709", - ["text"] = "Allocates Near Sighted", + ["id"] = "enchant.stat_2954116742|35739", + ["text"] = "Allocates Crushing Judgement", ["type"] = "enchant", }, [260] = { - ["id"] = "enchant.stat_2954116742|38479", - ["text"] = "Allocates Close Confines", + ["id"] = "enchant.stat_2954116742|18505", + ["text"] = "Allocates Crushing Verdict", ["type"] = "enchant", }, [261] = { - ["id"] = "enchant.stat_2954116742|52392", - ["text"] = "Allocates Singular Purpose", + ["id"] = "enchant.stat_2954116742|38895", + ["text"] = "Allocates Crystal Elixir", ["type"] = "enchant", }, [262] = { - ["id"] = "enchant.stat_2954116742|54998", - ["text"] = "Allocates Protraction", + ["id"] = "enchant.stat_2954116742|61026", + ["text"] = "Allocates Crystalline Flesh", ["type"] = "enchant", }, [263] = { - ["id"] = "enchant.stat_2954116742|5284", - ["text"] = "Allocates Shredding Force", + ["id"] = "enchant.stat_2954116742|32151", + ["text"] = "Allocates Crystalline Resistance", ["type"] = "enchant", }, [264] = { - ["id"] = "enchant.stat_2954116742|10265", - ["text"] = "Allocates Javelin", + ["id"] = "enchant.stat_2954116742|5332", + ["text"] = "Allocates Crystallised Immunities", ["type"] = "enchant", }, [265] = { - ["id"] = "enchant.stat_2954116742|60083", - ["text"] = "Allocates Pin and Run", + ["id"] = "enchant.stat_2954116742|36341", + ["text"] = "Allocates Cull the Hordes", ["type"] = "enchant", }, [266] = { - ["id"] = "enchant.stat_2954116742|37244", - ["text"] = "Allocates Shield Expertise", + ["id"] = "enchant.stat_2954116742|13708", + ["text"] = "Allocates Curved Weapon", ["type"] = "enchant", }, [267] = { - ["id"] = "enchant.stat_2954116742|17340", - ["text"] = "Allocates Adrenaline Rush", + ["id"] = "enchant.stat_2954116742|32507", + ["text"] = "Allocates Cut to the Bone", ["type"] = "enchant", }, [268] = { - ["id"] = "enchant.stat_2954116742|53823", - ["text"] = "Allocates Towering Shield", + ["id"] = "enchant.stat_2954116742|7128", + ["text"] = "Allocates Dangerous Blossom", ["type"] = "enchant", }, [269] = { - ["id"] = "enchant.stat_2954116742|18397", - ["text"] = "Allocates Savoured Blood", + ["id"] = "enchant.stat_2954116742|63074", + ["text"] = "Allocates Dark Entries", ["type"] = "enchant", }, [270] = { - ["id"] = "enchant.stat_2954116742|24753", - ["text"] = "Allocates Determined Precision", + ["id"] = "enchant.stat_2954116742|20495", + ["text"] = "Allocates Dark Entropy", ["type"] = "enchant", }, [271] = { - ["id"] = "enchant.stat_2954116742|17260", - ["text"] = "Allocates Piercing Claw", + ["id"] = "enchant.stat_2954116742|10500", + ["text"] = "Allocates Dazing Blocks", ["type"] = "enchant", }, [272] = { - ["id"] = "enchant.stat_2954116742|2394", - ["text"] = "Allocates Blade Flurry", + ["id"] = "enchant.stat_2954116742|30523", + ["text"] = "Allocates Dead can Dance", ["type"] = "enchant", }, [273] = { - ["id"] = "enchant.stat_2954116742|10873", - ["text"] = "Allocates Bestial Rage", + ["id"] = "enchant.stat_2954116742|49618", + ["text"] = "Allocates Deadly Flourish", ["type"] = "enchant", }, [274] = { - ["id"] = "enchant.stat_2954116742|20677", - ["text"] = "Allocates For the Jugular", + ["id"] = "enchant.stat_2954116742|13724", + ["text"] = "Allocates Deadly Force", ["type"] = "enchant", }, [275] = { - ["id"] = "enchant.stat_2954116742|40270", - ["text"] = "Allocates Frenetic", + ["id"] = "enchant.stat_2954116742|29288", + ["text"] = "Allocates Deadly Invocations", ["type"] = "enchant", }, [276] = { - ["id"] = "enchant.stat_2954116742|24483", - ["text"] = "Allocates Direct Approach", + ["id"] = "enchant.stat_2954116742|38053", + ["text"] = "Allocates Deafening Cries", ["type"] = "enchant", }, [277] = { - ["id"] = "enchant.stat_2954116742|65023", - ["text"] = "Allocates Impenetrable Shell", + ["id"] = "enchant.stat_2954116742|8904", + ["text"] = "Allocates Death from Afar", ["type"] = "enchant", }, [278] = { - ["id"] = "enchant.stat_2954116742|11838", - ["text"] = "Allocates Dreamcatcher", + ["id"] = "enchant.stat_2954116742|17664", + ["text"] = "Allocates Decisive Retreat", ["type"] = "enchant", }, [279] = { - ["id"] = "enchant.stat_2954116742|35369", - ["text"] = "Allocates Investing Energies", + ["id"] = "enchant.stat_2954116742|5594", + ["text"] = "Allocates Decrepifying Curse", ["type"] = "enchant", }, [280] = { - ["id"] = "enchant.stat_2954116742|31326", - ["text"] = "Allocates Slow Burn", + ["id"] = "enchant.stat_2954116742|16142", + ["text"] = "Allocates Deep Freeze", ["type"] = "enchant", }, [281] = { - ["id"] = "enchant.stat_2954116742|1087", - ["text"] = "Allocates Shockwaves", + ["id"] = "enchant.stat_2954116742|40166", + ["text"] = "Allocates Deep Trance", ["type"] = "enchant", }, [282] = { - ["id"] = "enchant.stat_2954116742|7668", - ["text"] = "Allocates Internal Bleeding", + ["id"] = "enchant.stat_2954116742|33216", + ["text"] = "Allocates Deep Wounds", ["type"] = "enchant", }, [283] = { - ["id"] = "enchant.stat_2954116742|23764", - ["text"] = "Allocates Alternating Current", + ["id"] = "enchant.stat_2954116742|45612", + ["text"] = "Allocates Defensive Reflexes", ["type"] = "enchant", }, [284] = { - ["id"] = "enchant.stat_2954116742|53935", - ["text"] = "Allocates Briny Carapace", + ["id"] = "enchant.stat_2954116742|10681", + ["text"] = "Allocates Defensive Stance", ["type"] = "enchant", }, [285] = { - ["id"] = "enchant.stat_2954116742|38398", - ["text"] = "Allocates Apocalypse", + ["id"] = "enchant.stat_2954116742|32354", + ["text"] = "Allocates Defiance", ["type"] = "enchant", }, [286] = { - ["id"] = "enchant.stat_2954116742|7651", - ["text"] = "Allocates Pierce the Heart", + ["id"] = "enchant.stat_2954116742|45329", + ["text"] = "Allocates Delayed Danger", ["type"] = "enchant", }, [287] = { - ["id"] = "enchant.stat_2954116742|7163", - ["text"] = "Allocates Stimulants", + ["id"] = "enchant.stat_2954116742|38570", + ["text"] = "Allocates Demolitionist", ["type"] = "enchant", }, [288] = { - ["id"] = "enchant.stat_2954116742|13542", - ["text"] = "Allocates Loose Flesh", + ["id"] = "enchant.stat_2954116742|4931", + ["text"] = "Allocates Dependable Ward", ["type"] = "enchant", }, [289] = { - ["id"] = "enchant.stat_2954116742|12611", - ["text"] = "Allocates Harness the Elements", + ["id"] = "enchant.stat_2954116742|28267", + ["text"] = "Allocates Desensitisation", ["type"] = "enchant", }, [290] = { - ["id"] = "enchant.stat_2954116742|24240", - ["text"] = "Allocates Time Manipulation", + ["id"] = "enchant.stat_2954116742|37967", + ["text"] = "Allocates Desert's Scorn", ["type"] = "enchant", }, [291] = { - ["id"] = "enchant.stat_2954116742|48974", - ["text"] = "Allocates Altered Brain Chemistry", + ["id"] = "enchant.stat_2954116742|56616", + ["text"] = "Allocates Desperate Times", ["type"] = "enchant", }, [292] = { - ["id"] = "enchant.stat_2954116742|17330", - ["text"] = "Allocates Perforation", + ["id"] = "enchant.stat_2954116742|14343", + ["text"] = "Allocates Deterioration", ["type"] = "enchant", }, [293] = { - ["id"] = "enchant.stat_2954116742|14945", - ["text"] = "Allocates Growing Swarm", + ["id"] = "enchant.stat_2954116742|24753", + ["text"] = "Allocates Determined Precision", ["type"] = "enchant", }, [294] = { - ["id"] = "enchant.stat_2954116742|16626", - ["text"] = "Allocates Impact Area", + ["id"] = "enchant.stat_2954116742|48006", + ["text"] = "Allocates Devastation", ["type"] = "enchant", }, [295] = { - ["id"] = "enchant.stat_2954116742|2021", - ["text"] = "Allocates Wellspring", + ["id"] = "enchant.stat_2954116742|2344", + ["text"] = "Allocates Dimensional Weakspot", ["type"] = "enchant", }, [296] = { - ["id"] = "enchant.stat_2954116742|39083", - ["text"] = "Allocates Blood Rush", + ["id"] = "enchant.stat_2954116742|24483", + ["text"] = "Allocates Direct Approach", ["type"] = "enchant", }, [297] = { - ["id"] = "enchant.stat_2954116742|37872", - ["text"] = "Allocates Presence Present", + ["id"] = "enchant.stat_2954116742|44573", + ["text"] = "Allocates Disciplined Training", ["type"] = "enchant", }, [298] = { - ["id"] = "enchant.stat_2954116742|55568", - ["text"] = "Allocates Forthcoming", + ["id"] = "enchant.stat_2954116742|38459", + ["text"] = "Allocates Disorientation", ["type"] = "enchant", }, [299] = { - ["id"] = "enchant.stat_2954116742|34308", - ["text"] = "Allocates Personal Touch", + ["id"] = "enchant.stat_2954116742|58939", + ["text"] = "Allocates Dispatch Foes", ["type"] = "enchant", }, [300] = { - ["id"] = "enchant.stat_2954116742|49550", - ["text"] = "Allocates Prolonged Fury", + ["id"] = "enchant.stat_2954116742|52245", + ["text"] = "Allocates Distant Dreamer", ["type"] = "enchant", }, [301] = { - ["id"] = "enchant.stat_2954116742|6133", - ["text"] = "Allocates Core of the Guardian", + ["id"] = "enchant.stat_2954116742|32721", + ["text"] = "Allocates Distracted Target", ["type"] = "enchant", }, [302] = { - ["id"] = "enchant.stat_2954116742|35855", - ["text"] = "Allocates Fortifying Blood", + ["id"] = "enchant.stat_2954116742|44765", + ["text"] = "Allocates Distracting Presence", ["type"] = "enchant", }, [303] = { - ["id"] = "enchant.stat_2954116742|13738", - ["text"] = "Allocates Lightning Quick", + ["id"] = "enchant.stat_2954116742|47514", + ["text"] = "Allocates Dizzying Hits", ["type"] = "enchant", }, [304] = { - ["id"] = "enchant.stat_2954116742|5580", - ["text"] = "Allocates Watchtowers", + ["id"] = "enchant.stat_2954116742|1420", + ["text"] = "Allocates Dizzying Sweep", ["type"] = "enchant", }, [305] = { - ["id"] = "enchant.stat_2954116742|37742", - ["text"] = "Allocates Manifold Method", + ["id"] = "enchant.stat_2954116742|26214", + ["text"] = "Allocates Dominion", ["type"] = "enchant", }, [306] = { - ["id"] = "enchant.stat_2954116742|57471", - ["text"] = "Allocates Hunker Down", + ["id"] = "enchant.stat_2954116742|58894", + ["text"] = "Allocates Dominus' Providence", ["type"] = "enchant", }, [307] = { - ["id"] = "enchant.stat_2954116742|39369", - ["text"] = "Allocates Struck Through", + ["id"] = "enchant.stat_2954116742|57190", + ["text"] = "Allocates Doomsayer", ["type"] = "enchant", }, [308] = { - ["id"] = "enchant.stat_2954116742|48774", - ["text"] = "Allocates Taut Flesh", + ["id"] = "enchant.stat_2954116742|1502", + ["text"] = "Allocates Draiocht Cleansing", ["type"] = "enchant", }, [309] = { - ["id"] = "enchant.stat_2954116742|27950", - ["text"] = "Allocates Polished Iron", + ["id"] = "enchant.stat_2954116742|32858", + ["text"] = "Allocates Dread Engineer's Concoction", ["type"] = "enchant", }, [310] = { - ["id"] = "enchant.stat_2954116742|8791", - ["text"] = "Allocates Sturdy Ally", + ["id"] = "enchant.stat_2954116742|11838", + ["text"] = "Allocates Dreamcatcher", ["type"] = "enchant", }, [311] = { - ["id"] = "enchant.stat_2954116742|5663", - ["text"] = "Allocates Endurance", + ["id"] = "enchant.stat_2954116742|40073", + ["text"] = "Allocates Drenched", ["type"] = "enchant", }, [312] = { - ["id"] = "enchant.stat_2954116742|38053", - ["text"] = "Allocates Deafening Cries", + ["id"] = "enchant.stat_2954116742|3688", + ["text"] = "Allocates Dynamism", ["type"] = "enchant", }, [313] = { - ["id"] = "enchant.stat_2954116742|26518", - ["text"] = "Allocates Cold Nature", + ["id"] = "enchant.stat_2954116742|10315", + ["text"] = "Allocates Easy Going", ["type"] = "enchant", }, [314] = { - ["id"] = "enchant.stat_2954116742|3921", - ["text"] = "Allocates Fate Finding", + ["id"] = "enchant.stat_2954116742|64525", + ["text"] = "Allocates Easy Target", ["type"] = "enchant", }, [315] = { - ["id"] = "enchant.stat_2954116742|39990", - ["text"] = "Allocates Chronomancy", + ["id"] = "enchant.stat_2954116742|60692", + ["text"] = "Allocates Echoing Flames", ["type"] = "enchant", }, [316] = { - ["id"] = "enchant.stat_2954116742|27687", - ["text"] = "Allocates Greatest Defence", + ["id"] = "enchant.stat_2954116742|5257", + ["text"] = "Allocates Echoing Frost", ["type"] = "enchant", }, [317] = { - ["id"] = "enchant.stat_2954116742|51105", - ["text"] = "Allocates Spirit Bond", + ["id"] = "enchant.stat_2954116742|7302", + ["text"] = "Allocates Echoing Pulse", ["type"] = "enchant", }, [318] = { - ["id"] = "enchant.stat_2954116742|47418", - ["text"] = "Allocates Warding Potions", + ["id"] = "enchant.stat_2954116742|5703", + ["text"] = "Allocates Echoing Thunder", ["type"] = "enchant", }, [319] = { - ["id"] = "enchant.stat_2954116742|57805", - ["text"] = "Allocates Clear Space", + ["id"] = "enchant.stat_2954116742|33093", + ["text"] = "Allocates Effervescent", ["type"] = "enchant", }, [320] = { - ["id"] = "enchant.stat_2954116742|46696", - ["text"] = "Allocates Impair", + ["id"] = "enchant.stat_2954116742|46692", + ["text"] = "Allocates Efficient Alchemy", ["type"] = "enchant", }, [321] = { - ["id"] = "enchant.stat_2954116742|25620", - ["text"] = "Allocates Meat Recycling", + ["id"] = "enchant.stat_2954116742|16790", + ["text"] = "Allocates Efficient Casting", ["type"] = "enchant", }, [322] = { - ["id"] = "enchant.stat_2954116742|38895", - ["text"] = "Allocates Crystal Elixir", + ["id"] = "enchant.stat_2954116742|30408", + ["text"] = "Allocates Efficient Contraptions", ["type"] = "enchant", }, [323] = { - ["id"] = "enchant.stat_2954116742|6229", - ["text"] = "Allocates Push the Advantage", + ["id"] = "enchant.stat_2954116742|42245", + ["text"] = "Allocates Efficient Inscriptions", ["type"] = "enchant", }, [324] = { - ["id"] = "enchant.stat_2954116742|20032", - ["text"] = "Allocates Erraticism", + ["id"] = "enchant.stat_2954116742|94", + ["text"] = "Allocates Efficient Killing", ["type"] = "enchant", }, [325] = { - ["id"] = "enchant.stat_2954116742|57379", - ["text"] = "Allocates In Your Face", + ["id"] = "enchant.stat_2954116742|53683", + ["text"] = "Allocates Efficient Loading", ["type"] = "enchant", }, [326] = { - ["id"] = "enchant.stat_2954116742|4931", - ["text"] = "Allocates Dependable Ward", + ["id"] = "enchant.stat_2954116742|3894", + ["text"] = "Allocates Eldritch Will", ["type"] = "enchant", }, [327] = { - ["id"] = "enchant.stat_2954116742|51707", - ["text"] = "Allocates Enhanced Reflexes", + ["id"] = "enchant.stat_2954116742|55708", + ["text"] = "Allocates Electric Amplification", ["type"] = "enchant", }, [328] = { - ["id"] = "enchant.stat_2954116742|56997", - ["text"] = "Allocates Heavy Contact", + ["id"] = "enchant.stat_2954116742|56988", + ["text"] = "Allocates Electric Blood", ["type"] = "enchant", }, [329] = { - ["id"] = "enchant.stat_2954116742|20388", - ["text"] = "Allocates Regenerative Flesh", + ["id"] = "enchant.stat_2954116742|30546", + ["text"] = "Allocates Electrified Claw", ["type"] = "enchant", }, [330] = { - ["id"] = "enchant.stat_2954116742|44330", - ["text"] = "Allocates Coated Arms", + ["id"] = "enchant.stat_2954116742|56767", + ["text"] = "Allocates Electrifying Daze", ["type"] = "enchant", }, [331] = { - ["id"] = "enchant.stat_2954116742|10423", - ["text"] = "Allocates Exposed to the Inferno", + ["id"] = "enchant.stat_2954116742|26291", + ["text"] = "Allocates Electrifying Nature", ["type"] = "enchant", }, [332] = { - ["id"] = "enchant.stat_2954116742|6514", - ["text"] = "Allocates Cacophony", + ["id"] = "enchant.stat_2954116742|7275", + ["text"] = "Allocates Electrocuting Exposure", ["type"] = "enchant", }, [333] = { - ["id"] = "enchant.stat_2954116742|2138", - ["text"] = "Allocates Spiral into Insanity", + ["id"] = "enchant.stat_2954116742|36364", + ["text"] = "Allocates Electrocution", ["type"] = "enchant", }, [334] = { - ["id"] = "enchant.stat_2954116742|45488", - ["text"] = "Allocates Cross Strike", + ["id"] = "enchant.stat_2954116742|43090", + ["text"] = "Allocates Electrotherapy", ["type"] = "enchant", }, [335] = { - ["id"] = "enchant.stat_2954116742|6304", - ["text"] = "Allocates Stand Ground", + ["id"] = "enchant.stat_2954116742|59781", + ["text"] = "Allocates Embodiment of Death", ["type"] = "enchant", }, [336] = { - ["id"] = "enchant.stat_2954116742|61444", - ["text"] = "Allocates Wasting Casts", + ["id"] = "enchant.stat_2954116742|10612", + ["text"] = "Allocates Embodiment of Frost", ["type"] = "enchant", }, [337] = { - ["id"] = "enchant.stat_2954116742|19722", - ["text"] = "Allocates Thin Ice", + ["id"] = "enchant.stat_2954116742|15991", + ["text"] = "Allocates Embodiment of Lightning", ["type"] = "enchant", }, [338] = { - ["id"] = "enchant.stat_2954116742|5227", - ["text"] = "Allocates Escape Strategy", + ["id"] = "enchant.stat_2954116742|43423", + ["text"] = "Allocates Emboldened Avatar", ["type"] = "enchant", }, [339] = { - ["id"] = "enchant.stat_2954116742|55847", - ["text"] = "Allocates Ice Walls", + ["id"] = "enchant.stat_2954116742|10727", + ["text"] = "Allocates Emboldening Casts", ["type"] = "enchant", }, [340] = { - ["id"] = "enchant.stat_2954116742|16816", - ["text"] = "Allocates Pinpoint Shot", + ["id"] = "enchant.stat_2954116742|34553", + ["text"] = "Allocates Emboldening Lead", ["type"] = "enchant", }, [341] = { - ["id"] = "enchant.stat_2954116742|38614", - ["text"] = "Allocates Psychic Fragmentation", + ["id"] = "enchant.stat_2954116742|9928", + ["text"] = "Allocates Embracing Frost", ["type"] = "enchant", }, [342] = { - ["id"] = "enchant.stat_2954116742|10295", - ["text"] = "Allocates Overzealous", + ["id"] = "enchant.stat_2954116742|8782", + ["text"] = "Allocates Empowering Infusions", ["type"] = "enchant", }, [343] = { - ["id"] = "enchant.stat_2954116742|19442", - ["text"] = "Allocates Prolonged Assault", + ["id"] = "enchant.stat_2954116742|8397", + ["text"] = "Allocates Empowering Remains", ["type"] = "enchant", }, [344] = { - ["id"] = "enchant.stat_2954116742|51820", - ["text"] = "Allocates Ancestral Conduits", + ["id"] = "enchant.stat_2954116742|40985", + ["text"] = "Allocates Empowering Remnants", ["type"] = "enchant", }, [345] = { - ["id"] = "enchant.stat_2954116742|55", - ["text"] = "Allocates Fast Acting Toxins", + ["id"] = "enchant.stat_2954116742|7542", + ["text"] = "Allocates Encompassing Domain", ["type"] = "enchant", }, [346] = { - ["id"] = "enchant.stat_2954116742|47363", - ["text"] = "Allocates Colossal Weapon", + ["id"] = "enchant.stat_2954116742|19955", + ["text"] = "Allocates Endless Blizzard", ["type"] = "enchant", }, [347] = { - ["id"] = "enchant.stat_2954116742|29762", - ["text"] = "Allocates Guttural Roar", + ["id"] = "enchant.stat_2954116742|8273", + ["text"] = "Allocates Endless Circuit", ["type"] = "enchant", }, [348] = { - ["id"] = "enchant.stat_2954116742|45013", - ["text"] = "Allocates Finishing Blows", + ["id"] = "enchant.stat_2954116742|5663", + ["text"] = "Allocates Endurance", ["type"] = "enchant", }, [349] = { - ["id"] = "enchant.stat_2954116742|4627", - ["text"] = "Allocates Climate Change", + ["id"] = "enchant.stat_2954116742|15443", + ["text"] = "Allocates Endured Suffering", ["type"] = "enchant", }, [350] = { - ["id"] = "enchant.stat_2954116742|49984", - ["text"] = "Allocates Spellblade", + ["id"] = "enchant.stat_2954116742|59070", + ["text"] = "Allocates Enduring Archon", ["type"] = "enchant", }, [351] = { - ["id"] = "enchant.stat_2954116742|11376", - ["text"] = "Allocates Necrotic Touch", + ["id"] = "enchant.stat_2954116742|42103", + ["text"] = "Allocates Enduring Deflection", ["type"] = "enchant", }, [352] = { - ["id"] = "enchant.stat_2954116742|63451", - ["text"] = "Allocates Cranial Impact", + ["id"] = "enchant.stat_2954116742|40399", + ["text"] = "Allocates Energise", ["type"] = "enchant", }, [353] = { - ["id"] = "enchant.stat_2954116742|26339", - ["text"] = "Allocates Ancestral Artifice", + ["id"] = "enchant.stat_2954116742|43633", + ["text"] = "Allocates Energising Archon", ["type"] = "enchant", }, [354] = { - ["id"] = "enchant.stat_2954116742|7302", - ["text"] = "Allocates Echoing Pulse", + ["id"] = "enchant.stat_2954116742|34541", + ["text"] = "Allocates Energising Deflection", ["type"] = "enchant", }, [355] = { - ["id"] = "enchant.stat_2954116742|8483", - ["text"] = "Allocates Ruin", + ["id"] = "enchant.stat_2954116742|2814", + ["text"] = "Allocates Engineered Blaze", ["type"] = "enchant", }, [356] = { - ["id"] = "enchant.stat_2954116742|28963", - ["text"] = "Allocates Chakra of Rhythm", + ["id"] = "enchant.stat_2954116742|44299", + ["text"] = "Allocates Enhanced Barrier", ["type"] = "enchant", }, [357] = { - ["id"] = "enchant.stat_2954116742|49661", - ["text"] = "Allocates Perfectly Placed Knife", + ["id"] = "enchant.stat_2954116742|51707", + ["text"] = "Allocates Enhanced Reflexes", ["type"] = "enchant", }, [358] = { - ["id"] = "enchant.stat_2954116742|10772", - ["text"] = "Allocates Bloodthirsty", + ["id"] = "enchant.stat_2954116742|56237", + ["text"] = "Allocates Enhancing Attacks", ["type"] = "enchant", }, [359] = { - ["id"] = "enchant.stat_2954116742|43939", - ["text"] = "Allocates Melting Flames", + ["id"] = "enchant.stat_2954116742|30720", + ["text"] = "Allocates Entropic Incarnation", ["type"] = "enchant", }, [360] = { - ["id"] = "enchant.stat_2954116742|54911", - ["text"] = "Allocates Firestarter", + ["id"] = "enchant.stat_2954116742|65243", + ["text"] = "Allocates Enveloping Presence", ["type"] = "enchant", }, [361] = { - ["id"] = "enchant.stat_2954116742|35849", - ["text"] = "Allocates Thickened Arteries", + ["id"] = "enchant.stat_2954116742|61404", + ["text"] = "Allocates Equilibrium", ["type"] = "enchant", }, [362] = { - ["id"] = "enchant.stat_2954116742|28482", - ["text"] = "Allocates Total Incineration", + ["id"] = "enchant.stat_2954116742|52684", + ["text"] = "Allocates Eroding Chains", ["type"] = "enchant", }, [363] = { - ["id"] = "enchant.stat_2954116742|25711", - ["text"] = "Allocates Thrill of Battle", + ["id"] = "enchant.stat_2954116742|20032", + ["text"] = "Allocates Erraticism", ["type"] = "enchant", }, [364] = { - ["id"] = "enchant.stat_2954116742|21164", - ["text"] = "Allocates Fleshcrafting", + ["id"] = "enchant.stat_2954116742|42032", + ["text"] = "Allocates Escalating Mayhem", ["type"] = "enchant", }, [365] = { - ["id"] = "enchant.stat_2954116742|45632", - ["text"] = "Allocates Mind Eraser", + ["id"] = "enchant.stat_2954116742|38628", + ["text"] = "Allocates Escalating Toxins", ["type"] = "enchant", }, [366] = { - ["id"] = "enchant.stat_2954116742|2999", - ["text"] = "Allocates Final Barrage", + ["id"] = "enchant.stat_2954116742|9187", + ["text"] = "Allocates Escalation", ["type"] = "enchant", }, [367] = { - ["id"] = "enchant.stat_2954116742|1823", - ["text"] = "Allocates Illuminated Crown", + ["id"] = "enchant.stat_2954116742|5227", + ["text"] = "Allocates Escape Strategy", ["type"] = "enchant", }, [368] = { - ["id"] = "enchant.stat_2954116742|36507", - ["text"] = "Allocates Vile Mending", + ["id"] = "enchant.stat_2954116742|17854", + ["text"] = "Allocates Escape Velocity", ["type"] = "enchant", }, [369] = { - ["id"] = "enchant.stat_2954116742|7062", - ["text"] = "Allocates Reusable Ammunition", + ["id"] = "enchant.stat_2954116742|42077", + ["text"] = "Allocates Essence Infusion", ["type"] = "enchant", }, [370] = { - ["id"] = "enchant.stat_2954116742|58714", - ["text"] = "Allocates Grenadier", + ["id"] = "enchant.stat_2954116742|16256", + ["text"] = "Allocates Ether Flow", ["type"] = "enchant", }, [371] = { - ["id"] = "enchant.stat_2954116742|33216", - ["text"] = "Allocates Deep Wounds", + ["id"] = "enchant.stat_2954116742|52191", + ["text"] = "Allocates Event Horizon", ["type"] = "enchant", }, [372] = { - ["id"] = "enchant.stat_2954116742|62185", - ["text"] = "Allocates Rattled", + ["id"] = "enchant.stat_2954116742|13524", + ["text"] = "Allocates Everlasting Glory", ["type"] = "enchant", }, [373] = { - ["id"] = "enchant.stat_2954116742|23940", - ["text"] = "Allocates Fortified Aegis", + ["id"] = "enchant.stat_2954116742|24087", + ["text"] = "Allocates Everlasting Infusions", ["type"] = "enchant", }, [374] = { - ["id"] = "enchant.stat_2954116742|51602", - ["text"] = "Allocates Unsight", + ["id"] = "enchant.stat_2954116742|41753", + ["text"] = "Allocates Evocational Practitioner", ["type"] = "enchant", }, [375] = { - ["id"] = "enchant.stat_2954116742|13724", - ["text"] = "Allocates Deadly Force", + ["id"] = "enchant.stat_2954116742|47420", + ["text"] = "Allocates Expendable Army", ["type"] = "enchant", }, [376] = { - ["id"] = "enchant.stat_2954116742|61404", - ["text"] = "Allocates Equilibrium", + ["id"] = "enchant.stat_2954116742|39050", + ["text"] = "Allocates Exploit", ["type"] = "enchant", }, [377] = { - ["id"] = "enchant.stat_2954116742|46024", - ["text"] = "Allocates Sigil of Lightning", + ["id"] = "enchant.stat_2954116742|48581", + ["text"] = "Allocates Exploit the Elements", ["type"] = "enchant", }, [378] = { - ["id"] = "enchant.stat_2954116742|11526", - ["text"] = "Allocates Sniper", + ["id"] = "enchant.stat_2954116742|36333", + ["text"] = "Allocates Explosive Empowerment", ["type"] = "enchant", }, [379] = { - ["id"] = "enchant.stat_2954116742|33093", - ["text"] = "Allocates Effervescent", + ["id"] = "enchant.stat_2954116742|21206", + ["text"] = "Allocates Explosive Impact", ["type"] = "enchant", }, [380] = { - ["id"] = "enchant.stat_2954116742|56999", - ["text"] = "Allocates Locked On", + ["id"] = "enchant.stat_2954116742|55835", + ["text"] = "Allocates Exposed to the Cosmos", ["type"] = "enchant", }, [381] = { - ["id"] = "enchant.stat_2954116742|31175", - ["text"] = "Allocates Grip of Evil", + ["id"] = "enchant.stat_2954116742|10423", + ["text"] = "Allocates Exposed to the Inferno", ["type"] = "enchant", }, [382] = { - ["id"] = "enchant.stat_2954116742|31925", - ["text"] = "Allocates Warding Fetish", + ["id"] = "enchant.stat_2954116742|40990", + ["text"] = "Allocates Exposed to the Storm", ["type"] = "enchant", }, [383] = { - ["id"] = "enchant.stat_2954116742|46692", - ["text"] = "Allocates Efficient Alchemy", + ["id"] = "enchant.stat_2954116742|56112", + ["text"] = "Allocates Extinguishing Exhalation", ["type"] = "enchant", }, [384] = { - ["id"] = "enchant.stat_2954116742|1352", - ["text"] = "Allocates Unbending", + ["id"] = "enchant.stat_2954116742|60034", + ["text"] = "Allocates Falcon Dive", ["type"] = "enchant", }, [385] = { - ["id"] = "enchant.stat_2954116742|49088", - ["text"] = "Allocates Splintering Force", + ["id"] = "enchant.stat_2954116742|31172", + ["text"] = "Allocates Falcon Technique", ["type"] = "enchant", }, [386] = { - ["id"] = "enchant.stat_2954116742|43090", - ["text"] = "Allocates Electrotherapy", + ["id"] = "enchant.stat_2954116742|60464", + ["text"] = "Allocates Fan the Flames", ["type"] = "enchant", }, [387] = { - ["id"] = "enchant.stat_2954116742|8904", - ["text"] = "Allocates Death from Afar", + ["id"] = "enchant.stat_2954116742|35477", + ["text"] = "Allocates Far Sighted", ["type"] = "enchant", }, [388] = { - ["id"] = "enchant.stat_2954116742|51446", - ["text"] = "Allocates Leather Bound Gauntlets", + ["id"] = "enchant.stat_2954116742|55", + ["text"] = "Allocates Fast Acting Toxins", ["type"] = "enchant", }, [389] = { - ["id"] = "enchant.stat_2954116742|62609", - ["text"] = "Allocates Ancestral Unity", + ["id"] = "enchant.stat_2954116742|8827", + ["text"] = "Allocates Fast Metabolism", ["type"] = "enchant", }, [390] = { - ["id"] = "enchant.stat_2954116742|7395", - ["text"] = "Allocates Retaliation", + ["id"] = "enchant.stat_2954116742|3921", + ["text"] = "Allocates Fate Finding", ["type"] = "enchant", }, [391] = { - ["id"] = "enchant.stat_2954116742|3698", - ["text"] = "Allocates Spike Pit", + ["id"] = "enchant.stat_2954116742|59214", + ["text"] = "Allocates Fated End", ["type"] = "enchant", }, [392] = { - ["id"] = "enchant.stat_2954116742|64240", - ["text"] = "Allocates Battle Fever", + ["id"] = "enchant.stat_2954116742|19546", + ["text"] = "Allocates Favourable Odds", ["type"] = "enchant", }, [393] = { - ["id"] = "enchant.stat_2954116742|63255", - ["text"] = "Allocates Savagery", + ["id"] = "enchant.stat_2954116742|22532", + ["text"] = "Allocates Fearful Paralysis", ["type"] = "enchant", }, [394] = { - ["id"] = "enchant.stat_2954116742|58426", - ["text"] = "Allocates Pocket Sand", + ["id"] = "enchant.stat_2954116742|60764", + ["text"] = "Allocates Feathered Fletching", ["type"] = "enchant", }, [395] = { - ["id"] = "enchant.stat_2954116742|63830", - ["text"] = "Allocates Marked for Sickness", + ["id"] = "enchant.stat_2954116742|9968", + ["text"] = "Allocates Feel the Earth", ["type"] = "enchant", }, [396] = { - ["id"] = "enchant.stat_2954116742|18419", - ["text"] = "Allocates Ancestral Mending", + ["id"] = "enchant.stat_2954116742|21537", + ["text"] = "Allocates Fervour", ["type"] = "enchant", }, [397] = { - ["id"] = "enchant.stat_2954116742|59541", - ["text"] = "Allocates Necrotised Flesh", + ["id"] = "enchant.stat_2954116742|2999", + ["text"] = "Allocates Final Barrage", ["type"] = "enchant", }, [398] = { - ["id"] = "enchant.stat_2954116742|19236", - ["text"] = "Allocates Projectile Bulwark", + ["id"] = "enchant.stat_2954116742|51867", + ["text"] = "Allocates Finality", ["type"] = "enchant", }, [399] = { - ["id"] = "enchant.stat_2954116742|44005", - ["text"] = "Allocates Casting Cascade", + ["id"] = "enchant.stat_2954116742|38969", + ["text"] = "Allocates Finesse", ["type"] = "enchant", }, [400] = { - ["id"] = "enchant.stat_2954116742|36808", - ["text"] = "Allocates Spiked Shield", + ["id"] = "enchant.stat_2954116742|29899", + ["text"] = "Allocates Finish Them", ["type"] = "enchant", }, [401] = { - ["id"] = "enchant.stat_2954116742|43711", - ["text"] = "Allocates Thornhide", + ["id"] = "enchant.stat_2954116742|45013", + ["text"] = "Allocates Finishing Blows", ["type"] = "enchant", }, [402] = { - ["id"] = "enchant.stat_2954116742|38628", - ["text"] = "Allocates Escalating Toxins", + ["id"] = "enchant.stat_2954116742|54911", + ["text"] = "Allocates Firestarter", ["type"] = "enchant", }, [403] = { - ["id"] = "enchant.stat_2954116742|9227", - ["text"] = "Allocates Focused Thrust", + ["id"] = "enchant.stat_2954116742|29527", + ["text"] = "Allocates First Approach", ["type"] = "enchant", }, [404] = { - ["id"] = "enchant.stat_2954116742|17229", - ["text"] = "Allocates Silent Guardian", + ["id"] = "enchant.stat_2954116742|49356", + ["text"] = "Allocates First Principle of the Hollow", ["type"] = "enchant", }, [405] = { - ["id"] = "enchant.stat_2954116742|62887", - ["text"] = "Allocates Living Death", + ["id"] = "enchant.stat_2954116742|59657", + ["text"] = "Allocates First Teachings of the Keeper", ["type"] = "enchant", }, [406] = { - ["id"] = "enchant.stat_2954116742|8831", - ["text"] = "Allocates Tempered Mind", + ["id"] = "enchant.stat_2954116742|62963", + ["text"] = "Allocates Flamewalker", ["type"] = "enchant", }, [407] = { - ["id"] = "enchant.stat_2954116742|14383", - ["text"] = "Allocates Suffusion", + ["id"] = "enchant.stat_2954116742|43584", + ["text"] = "Allocates Flare", ["type"] = "enchant", }, [408] = { - ["id"] = "enchant.stat_2954116742|10398", - ["text"] = "Allocates Sudden Escalation", + ["id"] = "enchant.stat_2954116742|12337", + ["text"] = "Allocates Flash Storm", ["type"] = "enchant", }, [409] = { - ["id"] = "enchant.stat_2954116742|38342", - ["text"] = "Allocates Stupefy", + ["id"] = "enchant.stat_2954116742|64851", + ["text"] = "Allocates Flashy Parrying", ["type"] = "enchant", }, [410] = { - ["id"] = "enchant.stat_2954116742|14324", - ["text"] = "Allocates Arcane Blossom", + ["id"] = "enchant.stat_2954116742|21164", + ["text"] = "Allocates Fleshcrafting", ["type"] = "enchant", }, [411] = { - ["id"] = "enchant.stat_2954116742|2486", - ["text"] = "Allocates Stars Aligned", + ["id"] = "enchant.stat_2954116742|4985", + ["text"] = "Allocates Flip the Script", ["type"] = "enchant", }, [412] = { - ["id"] = "enchant.stat_2954116742|30523", - ["text"] = "Allocates Dead can Dance", + ["id"] = "enchant.stat_2954116742|59438", + ["text"] = "Allocates Flow of Life", ["type"] = "enchant", }, [413] = { - ["id"] = "enchant.stat_2954116742|10602", - ["text"] = "Allocates Reaving", + ["id"] = "enchant.stat_2954116742|32128", + ["text"] = "Allocates Flow of Time", ["type"] = "enchant", }, [414] = { - ["id"] = "enchant.stat_2954116742|27491", - ["text"] = "Allocates Heavy Buffer", + ["id"] = "enchant.stat_2954116742|33730", + ["text"] = "Allocates Focused Channel", ["type"] = "enchant", }, [415] = { - ["id"] = "enchant.stat_2954116742|31364", - ["text"] = "Allocates Primal Protection", + ["id"] = "enchant.stat_2954116742|9227", + ["text"] = "Allocates Focused Thrust", ["type"] = "enchant", }, [416] = { - ["id"] = "enchant.stat_2954116742|25971", - ["text"] = "Allocates Tenfold Attacks", + ["id"] = "enchant.stat_2954116742|20677", + ["text"] = "Allocates For the Jugular", ["type"] = "enchant", }, [417] = { - ["id"] = "enchant.stat_2954116742|13980", - ["text"] = "Allocates Split the Earth", + ["id"] = "enchant.stat_2954116742|3985", + ["text"] = "Allocates Forces of Nature", ["type"] = "enchant", }, [418] = { - ["id"] = "enchant.stat_2954116742|41972", - ["text"] = "Allocates Glaciation", + ["id"] = "enchant.stat_2954116742|48103", + ["text"] = "Allocates Forcewave", ["type"] = "enchant", }, [419] = { - ["id"] = "enchant.stat_2954116742|14934", - ["text"] = "Allocates Spiral into Mania", + ["id"] = "enchant.stat_2954116742|55568", + ["text"] = "Allocates Forthcoming", ["type"] = "enchant", }, [420] = { - ["id"] = "enchant.stat_2954116742|20416", - ["text"] = "Allocates Grit", + ["id"] = "enchant.stat_2954116742|23940", + ["text"] = "Allocates Fortified Aegis", ["type"] = "enchant", }, [421] = { - ["id"] = "enchant.stat_2954116742|36976", - ["text"] = "Allocates Marked for Death", + ["id"] = "enchant.stat_2954116742|53607", + ["text"] = "Allocates Fortified Location", ["type"] = "enchant", }, [422] = { - ["id"] = "enchant.stat_2954116742|59589", - ["text"] = "Allocates Heavy Armour", + ["id"] = "enchant.stat_2954116742|35855", + ["text"] = "Allocates Fortifying Blood", ["type"] = "enchant", }, [423] = { - ["id"] = "enchant.stat_2954116742|46296", - ["text"] = "Allocates Short Shot", + ["id"] = "enchant.stat_2954116742|59208", + ["text"] = "Allocates Frantic Fighter", ["type"] = "enchant", }, [424] = { - ["id"] = "enchant.stat_2954116742|29372", - ["text"] = "Allocates Sudden Infuriation", + ["id"] = "enchant.stat_2954116742|39911", + ["text"] = "Allocates Frantic Reach", ["type"] = "enchant", }, [425] = { - ["id"] = "enchant.stat_2954116742|33240", - ["text"] = "Allocates Lord of Horrors", + ["id"] = "enchant.stat_2954116742|28441", + ["text"] = "Allocates Frantic Swings", ["type"] = "enchant", }, [426] = { - ["id"] = "enchant.stat_2954116742|35876", - ["text"] = "Allocates Admonisher", + ["id"] = "enchant.stat_2954116742|32301", + ["text"] = "Allocates Frazzled", ["type"] = "enchant", }, [427] = { - ["id"] = "enchant.stat_2954116742|51871", - ["text"] = "Allocates Immortal Thirst", + ["id"] = "enchant.stat_2954116742|51606", + ["text"] = "Allocates Freedom of Movement", ["type"] = "enchant", }, [428] = { - ["id"] = "enchant.stat_2954116742|46499", - ["text"] = "Allocates Guts", + ["id"] = "enchant.stat_2954116742|40270", + ["text"] = "Allocates Frenetic", ["type"] = "enchant", }, [429] = { - ["id"] = "enchant.stat_2954116742|50253", - ["text"] = "Allocates Aftershocks", + ["id"] = "enchant.stat_2954116742|45751", + ["text"] = "Allocates Frightening Shield", ["type"] = "enchant", }, [430] = { - ["id"] = "enchant.stat_2954116742|52348", - ["text"] = "Allocates Carved Earth", + ["id"] = "enchant.stat_2954116742|48699", + ["text"] = "Allocates Frostwalker", ["type"] = "enchant", }, [431] = { - ["id"] = "enchant.stat_2954116742|23221", - ["text"] = "Allocates Trick Shot", + ["id"] = "enchant.stat_2954116742|20289", + ["text"] = "Allocates Frozen Claw", ["type"] = "enchant", }, [432] = { - ["id"] = "enchant.stat_2954116742|56063", - ["text"] = "Allocates Lingering Horror", + ["id"] = "enchant.stat_2954116742|50715", + ["text"] = "Allocates Frozen Limit", ["type"] = "enchant", }, [433] = { - ["id"] = "enchant.stat_2954116742|40117", - ["text"] = "Allocates Spiked Armour", + ["id"] = "enchant.stat_2954116742|37543", + ["text"] = "Allocates Full Recovery", ["type"] = "enchant", }, [434] = { - ["id"] = "enchant.stat_2954116742|35966", - ["text"] = "Allocates Heart Tissue", + ["id"] = "enchant.stat_2954116742|33887", + ["text"] = "Allocates Full Salvo", ["type"] = "enchant", }, [435] = { - ["id"] = "enchant.stat_2954116742|48103", - ["text"] = "Allocates Forcewave", + ["id"] = "enchant.stat_2954116742|24630", + ["text"] = "Allocates Fulmination", ["type"] = "enchant", }, [436] = { - ["id"] = "enchant.stat_2954116742|4985", - ["text"] = "Allocates Flip the Script", + ["id"] = "enchant.stat_2954116742|32976", + ["text"] = "Allocates Gem Enthusiast", ["type"] = "enchant", }, [437] = { - ["id"] = "enchant.stat_2954116742|2575", - ["text"] = "Allocates Ancestral Alacrity", + ["id"] = "enchant.stat_2954116742|27875", + ["text"] = "Allocates General Electric", ["type"] = "enchant", }, [438] = { - ["id"] = "enchant.stat_2954116742|22626", - ["text"] = "Allocates Irreparable", + ["id"] = "enchant.stat_2954116742|17150", + ["text"] = "Allocates General's Bindings", ["type"] = "enchant", }, [439] = { - ["id"] = "enchant.stat_2954116742|13895", - ["text"] = "Allocates Precise Point", + ["id"] = "enchant.stat_2954116742|9020", + ["text"] = "Allocates Giantslayer", ["type"] = "enchant", }, [440] = { - ["id"] = "enchant.stat_2954116742|35477", - ["text"] = "Allocates Far Sighted", + ["id"] = "enchant.stat_2954116742|46365", + ["text"] = "Allocates Gigantic Following", ["type"] = "enchant", }, [441] = { - ["id"] = "enchant.stat_2954116742|17854", - ["text"] = "Allocates Escape Velocity", + ["id"] = "enchant.stat_2954116742|41972", + ["text"] = "Allocates Glaciation", ["type"] = "enchant", }, [442] = { - ["id"] = "enchant.stat_2954116742|5257", - ["text"] = "Allocates Echoing Frost", + ["id"] = "enchant.stat_2954116742|56488", + ["text"] = "Allocates Glancing Deflection", ["type"] = "enchant", }, [443] = { - ["id"] = "enchant.stat_2954116742|61026", - ["text"] = "Allocates Crystalline Flesh", + ["id"] = "enchant.stat_2954116742|23939", + ["text"] = "Allocates Glazed Flesh", ["type"] = "enchant", }, [444] = { - ["id"] = "enchant.stat_2954116742|31433", - ["text"] = "Allocates Catalysis", + ["id"] = "enchant.stat_2954116742|63031", + ["text"] = "Allocates Glorious Anticipation", ["type"] = "enchant", }, [445] = { - ["id"] = "enchant.stat_2954116742|3492", - ["text"] = "Allocates Void", + ["id"] = "enchant.stat_2954116742|47316", + ["text"] = "Allocates Goring", ["type"] = "enchant", }, [446] = { - ["id"] = "enchant.stat_2954116742|39347", - ["text"] = "Allocates Breaking Blows", + ["id"] = "enchant.stat_2954116742|27704", + ["text"] = "Allocates Grace of the Ancestors", ["type"] = "enchant", }, [447] = { - ["id"] = "enchant.stat_2954116742|19715", - ["text"] = "Allocates Cremation", + ["id"] = "enchant.stat_2954116742|41905", + ["text"] = "Allocates Gravedigger", ["type"] = "enchant", }, [448] = { - ["id"] = "enchant.stat_2954116742|62310", - ["text"] = "Allocates Incendiary", + ["id"] = "enchant.stat_2954116742|27687", + ["text"] = "Allocates Greatest Defence", ["type"] = "enchant", }, [449] = { - ["id"] = "enchant.stat_2954116742|43396", - ["text"] = "Allocates Ancestral Reach", + ["id"] = "enchant.stat_2954116742|58714", + ["text"] = "Allocates Grenadier", ["type"] = "enchant", }, [450] = { - ["id"] = "enchant.stat_2954116742|26331", - ["text"] = "Allocates Harsh Winter", + ["id"] = "enchant.stat_2954116742|31175", + ["text"] = "Allocates Grip of Evil", ["type"] = "enchant", }, [451] = { - ["id"] = "enchant.stat_2954116742|1169", - ["text"] = "Allocates Urgent Call", + ["id"] = "enchant.stat_2954116742|20416", + ["text"] = "Allocates Grit", ["type"] = "enchant", }, [452] = { - ["id"] = "enchant.stat_2954116742|23738", - ["text"] = "Allocates Madness in the Bones", + ["id"] = "enchant.stat_2954116742|13844", + ["text"] = "Allocates Growing Peril", ["type"] = "enchant", }, [453] = { - ["id"] = "enchant.stat_2954116742|44756", - ["text"] = "Allocates Marked Agility", + ["id"] = "enchant.stat_2954116742|14945", + ["text"] = "Allocates Growing Swarm", ["type"] = "enchant", }, [454] = { - ["id"] = "enchant.stat_2954116742|32507", - ["text"] = "Allocates Cut to the Bone", + ["id"] = "enchant.stat_2954116742|4331", + ["text"] = "Allocates Guided Hand", ["type"] = "enchant", }, [455] = { - ["id"] = "enchant.stat_2954116742|11366", - ["text"] = "Allocates Volcanic Skin", + ["id"] = "enchant.stat_2954116742|46499", + ["text"] = "Allocates Guts", ["type"] = "enchant", }, [456] = { - ["id"] = "enchant.stat_2954116742|61741", - ["text"] = "Allocates Lasting Toxins", + ["id"] = "enchant.stat_2954116742|29762", + ["text"] = "Allocates Guttural Roar", ["type"] = "enchant", }, [457] = { - ["id"] = "enchant.stat_2954116742|3188", - ["text"] = "Allocates Revenge", + ["id"] = "enchant.stat_2954116742|33229", + ["text"] = "Allocates Haemorrhaging Cuts", ["type"] = "enchant", }, [458] = { - ["id"] = "enchant.stat_2954116742|6178", - ["text"] = "Allocates Power Shots", + ["id"] = "enchant.stat_2954116742|44974", + ["text"] = "Allocates Hail", ["type"] = "enchant", }, [459] = { - ["id"] = "enchant.stat_2954116742|26070", - ["text"] = "Allocates Bolstering Yell", + ["id"] = "enchant.stat_2954116742|15374", + ["text"] = "Allocates Hale Heart", ["type"] = "enchant", }, [460] = { - ["id"] = "enchant.stat_2954116742|12750", - ["text"] = "Allocates Vale Shelter", + ["id"] = "enchant.stat_2954116742|52803", + ["text"] = "Allocates Hale Traveller", ["type"] = "enchant", }, [461] = { - ["id"] = "enchant.stat_2954116742|30392", - ["text"] = "Allocates Succour", + ["id"] = "enchant.stat_2954116742|34531", + ["text"] = "Allocates Hallowed", ["type"] = "enchant", }, [462] = { - ["id"] = "enchant.stat_2954116742|9968", - ["text"] = "Allocates Feel the Earth", + ["id"] = "enchant.stat_2954116742|24438", + ["text"] = "Allocates Hardened Wood", ["type"] = "enchant", }, [463] = { - ["id"] = "enchant.stat_2954116742|17548", - ["text"] = "Allocates Moment of Truth", + ["id"] = "enchant.stat_2954116742|40480", + ["text"] = "Allocates Harmonic Generator", ["type"] = "enchant", }, [464] = { - ["id"] = "enchant.stat_2954116742|53921", - ["text"] = "Allocates Unbreaking", + ["id"] = "enchant.stat_2954116742|12611", + ["text"] = "Allocates Harness the Elements", ["type"] = "enchant", }, [465] = { - ["id"] = "enchant.stat_2954116742|60764", - ["text"] = "Allocates Feathered Fletching", + ["id"] = "enchant.stat_2954116742|26331", + ["text"] = "Allocates Harsh Winter", ["type"] = "enchant", }, [466] = { - ["id"] = "enchant.stat_2954116742|46384", - ["text"] = "Allocates Wide Barrier", + ["id"] = "enchant.stat_2954116742|44293", + ["text"] = "Allocates Hastening Barrier", ["type"] = "enchant", }, [467] = { - ["id"] = "enchant.stat_2954116742|47782", - ["text"] = "Allocates Steady Footing", + ["id"] = "enchant.stat_2954116742|48215", + ["text"] = "Allocates Headshot", ["type"] = "enchant", }, [468] = { - ["id"] = "enchant.stat_2954116742|55180", - ["text"] = "Allocates Relentless Fallen", + ["id"] = "enchant.stat_2954116742|35966", + ["text"] = "Allocates Heart Tissue", ["type"] = "enchant", }, [469] = { - ["id"] = "enchant.stat_2954116742|17029", - ["text"] = "Allocates Blade Catcher", + ["id"] = "enchant.stat_2954116742|13407", + ["text"] = "Allocates Heartbreaking", ["type"] = "enchant", }, [470] = { - ["id"] = "enchant.stat_2954116742|47441", - ["text"] = "Allocates Stigmata", + ["id"] = "enchant.stat_2954116742|38537", + ["text"] = "Allocates Heartstopping", ["type"] = "enchant", }, [471] = { - ["id"] = "enchant.stat_2954116742|2645", - ["text"] = "Allocates Skullcrusher", + ["id"] = "enchant.stat_2954116742|9896", + ["text"] = "Allocates Heartstopping Presence", ["type"] = "enchant", }, [472] = { - ["id"] = "enchant.stat_2954116742|42959", - ["text"] = "Allocates Low Tolerance", + ["id"] = "enchant.stat_2954116742|372", + ["text"] = "Allocates Heatproof", ["type"] = "enchant", }, [473] = { - ["id"] = "enchant.stat_2954116742|24438", - ["text"] = "Allocates Hardened Wood", + ["id"] = "enchant.stat_2954116742|11826", + ["text"] = "Allocates Heavy Ammunition", ["type"] = "enchant", }, [474] = { - ["id"] = "enchant.stat_2954116742|21537", - ["text"] = "Allocates Fervour", + ["id"] = "enchant.stat_2954116742|59589", + ["text"] = "Allocates Heavy Armour", ["type"] = "enchant", }, [475] = { - ["id"] = "enchant.stat_2954116742|53527", - ["text"] = "Allocates Shattering Blow", + ["id"] = "enchant.stat_2954116742|27491", + ["text"] = "Allocates Heavy Buffer", ["type"] = "enchant", }, [476] = { - ["id"] = "enchant.stat_2954116742|29514", - ["text"] = "Allocates Cluster Bombs", + ["id"] = "enchant.stat_2954116742|56997", + ["text"] = "Allocates Heavy Contact", ["type"] = "enchant", }, [477] = { - ["id"] = "enchant.stat_2954116742|35324", - ["text"] = "Allocates Burnout", + ["id"] = "enchant.stat_2954116742|15617", + ["text"] = "Allocates Heavy Drinker", ["type"] = "enchant", }, [478] = { - ["id"] = "enchant.stat_2954116742|45713", - ["text"] = "Allocates Savouring", + ["id"] = "enchant.stat_2954116742|4959", + ["text"] = "Allocates Heavy Frost", ["type"] = "enchant", }, [479] = { - ["id"] = "enchant.stat_2954116742|44373", - ["text"] = "Allocates Wither Away", + ["id"] = "enchant.stat_2954116742|41512", + ["text"] = "Allocates Heavy Weaponry", ["type"] = "enchant", }, [480] = { - ["id"] = "enchant.stat_2954116742|35028", - ["text"] = "Allocates In the Thick of It", + ["id"] = "enchant.stat_2954116742|48418", + ["text"] = "Allocates Hefty Unit", ["type"] = "enchant", }, [481] = { - ["id"] = "enchant.stat_2954116742|8273", - ["text"] = "Allocates Endless Circuit", + ["id"] = "enchant.stat_2954116742|45777", + ["text"] = "Allocates Hidden Barb", ["type"] = "enchant", }, [482] = { - ["id"] = "enchant.stat_2954116742|48014", - ["text"] = "Allocates Honourless", + ["id"] = "enchant.stat_2954116742|41935", + ["text"] = "Allocates Hide of the Bear", ["type"] = "enchant", }, [483] = { - ["id"] = "enchant.stat_2954116742|41905", - ["text"] = "Allocates Gravedigger", + ["id"] = "enchant.stat_2954116742|30456", + ["text"] = "Allocates High Alert", ["type"] = "enchant", }, [484] = { - ["id"] = "enchant.stat_2954116742|31373", - ["text"] = "Allocates Vocal Empowerment", + ["id"] = "enchant.stat_2954116742|54805", + ["text"] = "Allocates Hindered Capabilities", ["type"] = "enchant", }, [485] = { - ["id"] = "enchant.stat_2954116742|47635", - ["text"] = "Allocates Overload", + ["id"] = "enchant.stat_2954116742|60273", + ["text"] = "Allocates Hindering Obstacles", ["type"] = "enchant", }, [486] = { - ["id"] = "enchant.stat_2954116742|2335", - ["text"] = "Allocates Turn the Clock Forward", + ["id"] = "enchant.stat_2954116742|23078", + ["text"] = "Allocates Holy Protector", ["type"] = "enchant", }, [487] = { - ["id"] = "enchant.stat_2954116742|42036", - ["text"] = "Allocates Off-Balancing Retort", + ["id"] = "enchant.stat_2954116742|48014", + ["text"] = "Allocates Honourless", ["type"] = "enchant", }, [488] = { - ["id"] = "enchant.stat_2954116742|14777", - ["text"] = "Allocates Bravado", + ["id"] = "enchant.stat_2954116742|30395", + ["text"] = "Allocates Howling Beast", ["type"] = "enchant", }, [489] = { - ["id"] = "enchant.stat_2954116742|43423", - ["text"] = "Allocates Emboldened Avatar", + ["id"] = "enchant.stat_2954116742|4673", + ["text"] = "Allocates Hulking Smash", ["type"] = "enchant", }, [490] = { - ["id"] = "enchant.stat_2954116742|24655", - ["text"] = "Allocates Breath of Fire", + ["id"] = "enchant.stat_2954116742|57471", + ["text"] = "Allocates Hunker Down", ["type"] = "enchant", }, [491] = { - ["id"] = "enchant.stat_2954116742|62803", - ["text"] = "Allocates Woodland Aspect", + ["id"] = "enchant.stat_2954116742|48617", + ["text"] = "Allocates Hunter", ["type"] = "enchant", }, [492] = { - ["id"] = "enchant.stat_2954116742|21453", - ["text"] = "Allocates Breakage", + ["id"] = "enchant.stat_2954116742|33099", + ["text"] = "Allocates Hunter's Talisman", ["type"] = "enchant", }, [493] = { - ["id"] = "enchant.stat_2954116742|6544", - ["text"] = "Allocates Burning Strikes", + ["id"] = "enchant.stat_2954116742|32655", + ["text"] = "Allocates Hunting Companion", ["type"] = "enchant", }, [494] = { - ["id"] = "enchant.stat_2954116742|58096", - ["text"] = "Allocates Lasting Incantations", + ["id"] = "enchant.stat_2954116742|55847", + ["text"] = "Allocates Ice Walls", ["type"] = "enchant", }, [495] = { - ["id"] = "enchant.stat_2954116742|8881", - ["text"] = "Allocates Unforgiving", + ["id"] = "enchant.stat_2954116742|4031", + ["text"] = "Allocates Icebreaker", ["type"] = "enchant", }, [496] = { - ["id"] = "enchant.stat_2954116742|27626", - ["text"] = "Allocates Touch the Arcane", + ["id"] = "enchant.stat_2954116742|32932", + ["text"] = "Allocates Ichlotl's Inferno", ["type"] = "enchant", }, [497] = { - ["id"] = "enchant.stat_2954116742|26447", - ["text"] = "Allocates Refocus", + ["id"] = "enchant.stat_2954116742|7341", + ["text"] = "Allocates Ignore Pain", ["type"] = "enchant", }, [498] = { - ["id"] = "enchant.stat_2954116742|23078", - ["text"] = "Allocates Holy Protector", + ["id"] = "enchant.stat_2954116742|1823", + ["text"] = "Allocates Illuminated Crown", ["type"] = "enchant", }, [499] = { - ["id"] = "enchant.stat_2954116742|35564", - ["text"] = "Allocates Turn the Clock Back", + ["id"] = "enchant.stat_2954116742|50912", + ["text"] = "Allocates Imbibed Power", ["type"] = "enchant", }, [500] = { - ["id"] = "enchant.stat_2954116742|63431", - ["text"] = "Allocates Leeching Toxins", + ["id"] = "enchant.stat_2954116742|19156", + ["text"] = "Allocates Immaterial", ["type"] = "enchant", }, [501] = { - ["id"] = "enchant.stat_2954116742|44952", - ["text"] = "Allocates Made to Last", + ["id"] = "enchant.stat_2954116742|53030", + ["text"] = "Allocates Immolation", ["type"] = "enchant", }, [502] = { - ["id"] = "enchant.stat_2954116742|65468", - ["text"] = "Allocates Repeating Explosives", + ["id"] = "enchant.stat_2954116742|24062", + ["text"] = "Allocates Immortal Infamy", ["type"] = "enchant", }, [503] = { - ["id"] = "enchant.stat_2954116742|28044", - ["text"] = "Allocates Coming Calamity", + ["id"] = "enchant.stat_2954116742|51871", + ["text"] = "Allocates Immortal Thirst", ["type"] = "enchant", }, [504] = { - ["id"] = "enchant.stat_2954116742|61112", - ["text"] = "Allocates Roll and Strike", + ["id"] = "enchant.stat_2954116742|16626", + ["text"] = "Allocates Impact Area", ["type"] = "enchant", }, [505] = { - ["id"] = "enchant.stat_2954116742|20414", - ["text"] = "Allocates Reprisal", + ["id"] = "enchant.stat_2954116742|64443", + ["text"] = "Allocates Impact Force", ["type"] = "enchant", }, [506] = { - ["id"] = "enchant.stat_2954116742|60138", - ["text"] = "Allocates Stylebender", + ["id"] = "enchant.stat_2954116742|46696", + ["text"] = "Allocates Impair", ["type"] = "enchant", }, [507] = { - ["id"] = "enchant.stat_2954116742|35809", - ["text"] = "Allocates Reinvigoration", + ["id"] = "enchant.stat_2954116742|21748", + ["text"] = "Allocates Impending Doom", ["type"] = "enchant", }, [508] = { - ["id"] = "enchant.stat_2954116742|7777", - ["text"] = "Allocates Breaking Point", + ["id"] = "enchant.stat_2954116742|65023", + ["text"] = "Allocates Impenetrable Shell", ["type"] = "enchant", }, [509] = { - ["id"] = "enchant.stat_2954116742|3567", - ["text"] = "Allocates Raw Mana", + ["id"] = "enchant.stat_2954116742|57379", + ["text"] = "Allocates In Your Face", ["type"] = "enchant", }, [510] = { - ["id"] = "enchant.stat_2954116742|3985", - ["text"] = "Allocates Forces of Nature", + ["id"] = "enchant.stat_2954116742|35028", + ["text"] = "Allocates In the Thick of It", ["type"] = "enchant", }, [511] = { - ["id"] = "enchant.stat_2954116742|40803", - ["text"] = "Allocates Sigil of Ice", + ["id"] = "enchant.stat_2954116742|62310", + ["text"] = "Allocates Incendiary", ["type"] = "enchant", }, [512] = { - ["id"] = "enchant.stat_2954116742|5802", - ["text"] = "Allocates Stand and Deliver", + ["id"] = "enchant.stat_2954116742|36630", + ["text"] = "Allocates Incision", ["type"] = "enchant", }, [513] = { - ["id"] = "enchant.stat_2954116742|51129", - ["text"] = "Allocates Pile On", + ["id"] = "enchant.stat_2954116742|47270", + ["text"] = "Allocates Inescapable Cold", ["type"] = "enchant", }, [514] = { - ["id"] = "enchant.stat_2954116742|54148", - ["text"] = "Allocates Smoke Inhalation", + ["id"] = "enchant.stat_2954116742|22817", + ["text"] = "Allocates Inevitable Rupture", ["type"] = "enchant", }, [515] = { - ["id"] = "enchant.stat_2954116742|48658", - ["text"] = "Allocates Shattering", + ["id"] = "enchant.stat_2954116742|61354", + ["text"] = "Allocates Infernal Limit", ["type"] = "enchant", }, [516] = { - ["id"] = "enchant.stat_2954116742|8957", - ["text"] = "Allocates Right Hand of Darkness", + ["id"] = "enchant.stat_2954116742|57110", + ["text"] = "Allocates Infused Flesh", ["type"] = "enchant", }, [517] = { - ["id"] = "enchant.stat_2954116742|55835", - ["text"] = "Allocates Exposed to the Cosmos", + ["id"] = "enchant.stat_2954116742|38965", + ["text"] = "Allocates Infused Limits", ["type"] = "enchant", }, [518] = { - ["id"] = "enchant.stat_2954116742|63759", - ["text"] = "Allocates Stacking Toxins", + ["id"] = "enchant.stat_2954116742|24764", + ["text"] = "Allocates Infusing Power", ["type"] = "enchant", }, [519] = { - ["id"] = "enchant.stat_2954116742|9444", - ["text"] = "Allocates One with the Storm", + ["id"] = "enchant.stat_2954116742|59387", + ["text"] = "Allocates Infusion of Power", ["type"] = "enchant", }, [520] = { - ["id"] = "enchant.stat_2954116742|19249", - ["text"] = "Allocates Supportive Ancestors", + ["id"] = "enchant.stat_2954116742|39567", + ["text"] = "Allocates Ingenuity", ["type"] = "enchant", }, [521] = { - ["id"] = "enchant.stat_2954116742|14343", - ["text"] = "Allocates Deterioration", + ["id"] = "enchant.stat_2954116742|46683", + ["text"] = "Allocates Inherited Strength ", ["type"] = "enchant", }, [522] = { - ["id"] = "enchant.stat_2954116742|60692", - ["text"] = "Allocates Echoing Flames", + ["id"] = "enchant.stat_2954116742|23227", + ["text"] = "Allocates Initiative", ["type"] = "enchant", }, [523] = { - ["id"] = "enchant.stat_2954116742|9187", - ["text"] = "Allocates Escalation", + ["id"] = "enchant.stat_2954116742|30562", + ["text"] = "Allocates Inner Faith", ["type"] = "enchant", }, [524] = { - ["id"] = "enchant.stat_2954116742|56893", - ["text"] = "Allocates Thicket Warding", + ["id"] = "enchant.stat_2954116742|116", + ["text"] = "Allocates Insightfulness", ["type"] = "enchant", }, [525] = { - ["id"] = "enchant.stat_2954116742|20397", - ["text"] = "Allocates Authority", + ["id"] = "enchant.stat_2954116742|16150", + ["text"] = "Allocates Inspiring Ally", ["type"] = "enchant", }, [526] = { - ["id"] = "enchant.stat_2954116742|40325", - ["text"] = "Allocates Resolution", + ["id"] = "enchant.stat_2954116742|4661", + ["text"] = "Allocates Inspiring Leader", ["type"] = "enchant", }, [527] = { - ["id"] = "enchant.stat_2954116742|52618", - ["text"] = "Allocates Boon of the Beast", + ["id"] = "enchant.stat_2954116742|43944", + ["text"] = "Allocates Instability", ["type"] = "enchant", }, [528] = { - ["id"] = "enchant.stat_2954116742|13823", - ["text"] = "Allocates Controlling Magic", + ["id"] = "enchant.stat_2954116742|9736", + ["text"] = "Allocates Insulated Treads", ["type"] = "enchant", }, [529] = { - ["id"] = "enchant.stat_2954116742|58183", - ["text"] = "Allocates Blood Tearing", + ["id"] = "enchant.stat_2954116742|48649", + ["text"] = "Allocates Insulating Hide", ["type"] = "enchant", }, [530] = { - ["id"] = "enchant.stat_2954116742|28267", - ["text"] = "Allocates Desensitisation", + ["id"] = "enchant.stat_2954116742|46182", + ["text"] = "Allocates Intense Dose", ["type"] = "enchant", }, [531] = { - ["id"] = "enchant.stat_2954116742|7341", - ["text"] = "Allocates Ignore Pain", + ["id"] = "enchant.stat_2954116742|65016", + ["text"] = "Allocates Intense Flames", ["type"] = "enchant", }, [532] = { - ["id"] = "enchant.stat_2954116742|13407", - ["text"] = "Allocates Heartbreaking", + ["id"] = "enchant.stat_2954116742|7668", + ["text"] = "Allocates Internal Bleeding", ["type"] = "enchant", }, [533] = { - ["id"] = "enchant.stat_2954116742|42390", - ["text"] = "Allocates Overheating Blow", + ["id"] = "enchant.stat_2954116742|35369", + ["text"] = "Allocates Investing Energies", ["type"] = "enchant", }, [534] = { - ["id"] = "enchant.stat_2954116742|13457", - ["text"] = "Allocates Shadow Dancing", + ["id"] = "enchant.stat_2954116742|41394", + ["text"] = "Allocates Invigorating Archon", ["type"] = "enchant", }, [535] = { - ["id"] = "enchant.stat_2954116742|54990", - ["text"] = "Allocates Bloodletting", + ["id"] = "enchant.stat_2954116742|50023", + ["text"] = "Allocates Invigorating Grandeur", ["type"] = "enchant", }, [536] = { - ["id"] = "enchant.stat_2954116742|35739", - ["text"] = "Allocates Crushing Judgement", + ["id"] = "enchant.stat_2954116742|28408", + ["text"] = "Allocates Invigorating Hate", ["type"] = "enchant", }, [537] = { - ["id"] = "enchant.stat_2954116742|48240", - ["text"] = "Allocates Quick Recovery", + ["id"] = "enchant.stat_2954116742|24491", + ["text"] = "Allocates Invocated Echoes", ["type"] = "enchant", }, [538] = { - ["id"] = "enchant.stat_2954116742|5703", - ["text"] = "Allocates Echoing Thunder", + ["id"] = "enchant.stat_2954116742|51934", + ["text"] = "Allocates Invocated Efficiency", ["type"] = "enchant", }, [539] = { - ["id"] = "enchant.stat_2954116742|40990", - ["text"] = "Allocates Exposed to the Storm", + ["id"] = "enchant.stat_2954116742|338", + ["text"] = "Allocates Invocated Limit", ["type"] = "enchant", }, [540] = { - ["id"] = "enchant.stat_2954116742|64443", - ["text"] = "Allocates Impact Force", + ["id"] = "enchant.stat_2954116742|31724", + ["text"] = "Allocates Iron Slippers", ["type"] = "enchant", }, [541] = { - ["id"] = "enchant.stat_2954116742|31189", - ["text"] = "Allocates Unexpected Finesse", + ["id"] = "enchant.stat_2954116742|22626", + ["text"] = "Allocates Irreparable", ["type"] = "enchant", }, [542] = { - ["id"] = "enchant.stat_2954116742|19644", - ["text"] = "Allocates Left Hand of Darkness", + ["id"] = "enchant.stat_2954116742|16618", + ["text"] = "Allocates Jack of all Trades", ["type"] = "enchant", }, [543] = { - ["id"] = "enchant.stat_2954116742|33887", - ["text"] = "Allocates Full Salvo", + ["id"] = "enchant.stat_2954116742|10265", + ["text"] = "Allocates Javelin", ["type"] = "enchant", }, [544] = { - ["id"] = "enchant.stat_2954116742|37276", - ["text"] = "Allocates Battle Trance", + ["id"] = "enchant.stat_2954116742|3663", + ["text"] = "Allocates Kaom's Blessing", ["type"] = "enchant", }, [545] = { - ["id"] = "enchant.stat_2954116742|51934", - ["text"] = "Allocates Invocated Efficiency", + ["id"] = "enchant.stat_2954116742|37302", + ["text"] = "Allocates Kept at Bay", ["type"] = "enchant", }, [546] = { - ["id"] = "enchant.stat_2954116742|23427", - ["text"] = "Allocates Chilled to the Bone", + ["id"] = "enchant.stat_2954116742|56453", + ["text"] = "Allocates Killer Instinct", ["type"] = "enchant", }, [547] = { - ["id"] = "enchant.stat_2954116742|51509", - ["text"] = "Allocates Waters of Life", + ["id"] = "enchant.stat_2954116742|26107", + ["text"] = "Allocates Kite Runner", ["type"] = "enchant", }, [548] = { - ["id"] = "enchant.stat_2954116742|51891", - ["text"] = "Allocates Lucidity", + ["id"] = "enchant.stat_2954116742|24736", + ["text"] = "Allocates Knight of Chitus", ["type"] = "enchant", }, [549] = { - ["id"] = "enchant.stat_2954116742|18086", - ["text"] = "Allocates Breath of Ice", + ["id"] = "enchant.stat_2954116742|9863", + ["text"] = "Allocates Knight of Izaro", ["type"] = "enchant", }, [550] = { - ["id"] = "enchant.stat_2954116742|336", - ["text"] = "Allocates Storm Swell", + ["id"] = "enchant.stat_2954116742|1861", + ["text"] = "Allocates Knight of Tarcus", ["type"] = "enchant", }, [551] = { - ["id"] = "enchant.stat_2954116742|8554", - ["text"] = "Allocates Burning Nature", + ["id"] = "enchant.stat_2954116742|2397", + ["text"] = "Allocates Last Stand", ["type"] = "enchant", }, [552] = { - ["id"] = "enchant.stat_2954116742|59303", - ["text"] = "Allocates Lucky Rabbit Foot", + ["id"] = "enchant.stat_2954116742|64659", + ["text"] = "Allocates Lasting Boons", ["type"] = "enchant", }, [553] = { - ["id"] = "enchant.stat_2954116742|12337", - ["text"] = "Allocates Flash Storm", + ["id"] = "enchant.stat_2954116742|58096", + ["text"] = "Allocates Lasting Incantations", ["type"] = "enchant", }, [554] = { - ["id"] = "enchant.stat_2954116742|23362", - ["text"] = "Allocates Slippery Ice", + ["id"] = "enchant.stat_2954116742|61741", + ["text"] = "Allocates Lasting Toxins", ["type"] = "enchant", }, [555] = { - ["id"] = "enchant.stat_2954116742|17150", - ["text"] = "Allocates General's Bindings", + ["id"] = "enchant.stat_2954116742|18496", + ["text"] = "Allocates Lasting Trauma", ["type"] = "enchant", }, [556] = { - ["id"] = "enchant.stat_2954116742|39881", - ["text"] = "Allocates Staggering Palm", + ["id"] = "enchant.stat_2954116742|8607", + ["text"] = "Allocates Lavianga's Brew", ["type"] = "enchant", }, [557] = { - ["id"] = "enchant.stat_2954116742|27009", - ["text"] = "Allocates Lust for Sacrifice", + ["id"] = "enchant.stat_2954116742|45599", + ["text"] = "Allocates Lay Siege", ["type"] = "enchant", }, [558] = { - ["id"] = "enchant.stat_2954116742|43677", - ["text"] = "Allocates Crippling Toxins", + ["id"] = "enchant.stat_2954116742|40687", + ["text"] = "Allocates Lead by Example", ["type"] = "enchant", }, [559] = { - ["id"] = "enchant.stat_2954116742|33978", - ["text"] = "Allocates Unstoppable Barrier", + ["id"] = "enchant.stat_2954116742|8531", + ["text"] = "Allocates Leaping Ambush", ["type"] = "enchant", }, [560] = { - ["id"] = "enchant.stat_2954116742|7604", - ["text"] = "Allocates Rapid Strike", + ["id"] = "enchant.stat_2954116742|51446", + ["text"] = "Allocates Leather Bound Gauntlets", ["type"] = "enchant", }, [561] = { - ["id"] = "enchant.stat_2954116742|59214", - ["text"] = "Allocates Fated End", + ["id"] = "enchant.stat_2954116742|63431", + ["text"] = "Allocates Leeching Toxins", ["type"] = "enchant", }, [562] = { - ["id"] = "enchant.stat_2954116742|32664", - ["text"] = "Allocates Chakra of Breathing", + ["id"] = "enchant.stat_2954116742|19644", + ["text"] = "Allocates Left Hand of Darkness", ["type"] = "enchant", }, [563] = { - ["id"] = "enchant.stat_2954116742|39567", - ["text"] = "Allocates Ingenuity", + ["id"] = "enchant.stat_2954116742|4091", + ["text"] = "Allocates Left Ventricle", ["type"] = "enchant", }, [564] = { - ["id"] = "enchant.stat_2954116742|64119", - ["text"] = "Allocates Rapid Reload", + ["id"] = "enchant.stat_2954116742|55375", + ["text"] = "Allocates Licking Wounds", ["type"] = "enchant", }, [565] = { - ["id"] = "enchant.stat_2954116742|54937", - ["text"] = "Allocates Vengeful Fury", + ["id"] = "enchant.stat_2954116742|31129", + ["text"] = "Allocates Lifelong Friend", ["type"] = "enchant", }, [566] = { - ["id"] = "enchant.stat_2954116742|934", - ["text"] = "Allocates Natural Immunity", + ["id"] = "enchant.stat_2954116742|55131", + ["text"] = "Allocates Light on your Feet", ["type"] = "enchant", }, [567] = { - ["id"] = "enchant.stat_2954116742|36364", - ["text"] = "Allocates Electrocution", + ["id"] = "enchant.stat_2954116742|13738", + ["text"] = "Allocates Lightning Quick", ["type"] = "enchant", }, [568] = { - ["id"] = "enchant.stat_2954116742|42813", - ["text"] = "Allocates Tides of Change", + ["id"] = "enchant.stat_2954116742|44566", + ["text"] = "Allocates Lightning Rod", ["type"] = "enchant", }, [569] = { - ["id"] = "enchant.stat_2954116742|51394", - ["text"] = "Allocates Unimpeded", + ["id"] = "enchant.stat_2954116742|56063", + ["text"] = "Allocates Lingering Horror", ["type"] = "enchant", }, [570] = { - ["id"] = "enchant.stat_2954116742|24630", - ["text"] = "Allocates Fulmination", + ["id"] = "enchant.stat_2954116742|16499", + ["text"] = "Allocates Lingering Whispers", ["type"] = "enchant", }, [571] = { - ["id"] = "enchant.stat_2954116742|10029", - ["text"] = "Allocates Repulsion", + ["id"] = "enchant.stat_2954116742|62887", + ["text"] = "Allocates Living Death", ["type"] = "enchant", }, [572] = { - ["id"] = "enchant.stat_2954116742|17254", - ["text"] = "Allocates Spell Haste", + ["id"] = "enchant.stat_2954116742|31745", + ["text"] = "Allocates Lockdown", ["type"] = "enchant", }, [573] = { - ["id"] = "enchant.stat_2954116742|30720", - ["text"] = "Allocates Entropic Incarnation", + ["id"] = "enchant.stat_2954116742|56999", + ["text"] = "Allocates Locked On", ["type"] = "enchant", }, [574] = { - ["id"] = "enchant.stat_2954116742|36623", - ["text"] = "Allocates Convalescence", + ["id"] = "enchant.stat_2954116742|12964", + ["text"] = "Allocates Lone Warrior", ["type"] = "enchant", }, [575] = { - ["id"] = "enchant.stat_2954116742|48581", - ["text"] = "Allocates Exploit the Elements", + ["id"] = "enchant.stat_2954116742|31826", + ["text"] = "Allocates Long Distance Relationship", ["type"] = "enchant", }, [576] = { - ["id"] = "enchant.stat_2954116742|38969", - ["text"] = "Allocates Finesse", + ["id"] = "enchant.stat_2954116742|13542", + ["text"] = "Allocates Loose Flesh", ["type"] = "enchant", }, [577] = { - ["id"] = "enchant.stat_2954116742|56616", - ["text"] = "Allocates Desperate Times", + ["id"] = "enchant.stat_2954116742|33240", + ["text"] = "Allocates Lord of Horrors", ["type"] = "enchant", }, [578] = { - ["id"] = "enchant.stat_2954116742|60464", - ["text"] = "Allocates Fan the Flames", + ["id"] = "enchant.stat_2954116742|27779", + ["text"] = "Allocates Lord of the Squall", ["type"] = "enchant", }, [579] = { - ["id"] = "enchant.stat_2954116742|40345", - ["text"] = "Allocates Master of Hexes", + ["id"] = "enchant.stat_2954116742|42959", + ["text"] = "Allocates Low Tolerance", ["type"] = "enchant", }, [580] = { - ["id"] = "enchant.stat_2954116742|51213", - ["text"] = "Allocates Wasting", + ["id"] = "enchant.stat_2954116742|51891", + ["text"] = "Allocates Lucidity", ["type"] = "enchant", }, [581] = { - ["id"] = "enchant.stat_2954116742|42981", - ["text"] = "Allocates Cruel Methods", + ["id"] = "enchant.stat_2954116742|59303", + ["text"] = "Allocates Lucky Rabbit Foot", ["type"] = "enchant", }, [582] = { - ["id"] = "enchant.stat_2954116742|32353", - ["text"] = "Allocates Swift Claw", + ["id"] = "enchant.stat_2954116742|1104", + ["text"] = "Allocates Lust for Power", ["type"] = "enchant", }, [583] = { - ["id"] = "enchant.stat_2954116742|53941", - ["text"] = "Allocates Shimmering", + ["id"] = "enchant.stat_2954116742|27009", + ["text"] = "Allocates Lust for Sacrifice", ["type"] = "enchant", }, [584] = { - ["id"] = "enchant.stat_2954116742|42065", - ["text"] = "Allocates Surging Currents", + ["id"] = "enchant.stat_2954116742|44952", + ["text"] = "Allocates Made to Last", ["type"] = "enchant", }, [585] = { - ["id"] = "enchant.stat_2954116742|2863", - ["text"] = "Allocates Perpetual Freeze", + ["id"] = "enchant.stat_2954116742|23738", + ["text"] = "Allocates Madness in the Bones", ["type"] = "enchant", }, [586] = { - ["id"] = "enchant.stat_2954116742|27875", - ["text"] = "Allocates General Electric", + ["id"] = "enchant.stat_2954116742|39568", + ["text"] = "Allocates Magnum Opus", ["type"] = "enchant", }, [587] = { - ["id"] = "enchant.stat_2954116742|9020", - ["text"] = "Allocates Giantslayer", + ["id"] = "enchant.stat_2954116742|41580", + ["text"] = "Allocates Maiming Strike", ["type"] = "enchant", }, [588] = { - ["id"] = "enchant.stat_2954116742|12998", - ["text"] = "Allocates Warm the Heart", + ["id"] = "enchant.stat_2954116742|37742", + ["text"] = "Allocates Manifold Method", ["type"] = "enchant", }, [589] = { - ["id"] = "enchant.stat_2954116742|23939", - ["text"] = "Allocates Glazed Flesh", + ["id"] = "enchant.stat_2954116742|64050", + ["text"] = "Allocates Marathon Runner", ["type"] = "enchant", }, [590] = { - ["id"] = "enchant.stat_2954116742|36341", - ["text"] = "Allocates Cull the Hordes", + ["id"] = "enchant.stat_2954116742|44756", + ["text"] = "Allocates Marked Agility", ["type"] = "enchant", }, [591] = { - ["id"] = "enchant.stat_2954116742|41580", - ["text"] = "Allocates Maiming Strike", + ["id"] = "enchant.stat_2954116742|36976", + ["text"] = "Allocates Marked for Death", ["type"] = "enchant", }, [592] = { - ["id"] = "enchant.stat_2954116742|16499", - ["text"] = "Allocates Lingering Whispers", + ["id"] = "enchant.stat_2954116742|63830", + ["text"] = "Allocates Marked for Sickness", ["type"] = "enchant", }, [593] = { - ["id"] = "enchant.stat_2954116742|41811", - ["text"] = "Allocates Shatter Palm", + ["id"] = "enchant.stat_2954116742|2113", + ["text"] = "Allocates Martial Artistry", ["type"] = "enchant", }, [594] = { - ["id"] = "enchant.stat_2954116742|35581", - ["text"] = "Allocates Near at Hand", + ["id"] = "enchant.stat_2954116742|27108", + ["text"] = "Allocates Mass Hysteria", ["type"] = "enchant", }, [595] = { - ["id"] = "enchant.stat_2954116742|9421", - ["text"] = "Allocates Snowpiercer", + ["id"] = "enchant.stat_2954116742|34340", + ["text"] = "Allocates Mass Rejuvenation", ["type"] = "enchant", }, [596] = { - ["id"] = "enchant.stat_2954116742|45244", - ["text"] = "Allocates Refills", + ["id"] = "enchant.stat_2954116742|30341", + ["text"] = "Allocates Master Fletching", ["type"] = "enchant", }, [597] = { - ["id"] = "enchant.stat_2954116742|17372", - ["text"] = "Allocates Reaching Strike", + ["id"] = "enchant.stat_2954116742|40345", + ["text"] = "Allocates Master of Hexes", ["type"] = "enchant", }, [598] = { - ["id"] = "enchant.stat_2954116742|24062", - ["text"] = "Allocates Immortal Infamy", + ["id"] = "enchant.stat_2954116742|27513", + ["text"] = "Allocates Material Solidification", ["type"] = "enchant", }, [599] = { - ["id"] = "enchant.stat_2954116742|61921", - ["text"] = "Allocates Storm Surge", + ["id"] = "enchant.stat_2954116742|11886", + ["text"] = "Allocates Mauling Stuns", ["type"] = "enchant", }, [600] = { - ["id"] = "enchant.stat_2954116742|27176", - ["text"] = "Allocates The Power Within", + ["id"] = "enchant.stat_2954116742|25620", + ["text"] = "Allocates Meat Recycling", ["type"] = "enchant", }, [601] = { - ["id"] = "enchant.stat_2954116742|4447", - ["text"] = "Allocates Pin their Motivation", + ["id"] = "enchant.stat_2954116742|3215", + ["text"] = "Allocates Melding", ["type"] = "enchant", }, [602] = { - ["id"] = "enchant.stat_2954116742|1104", - ["text"] = "Allocates Lust for Power", + ["id"] = "enchant.stat_2954116742|43939", + ["text"] = "Allocates Melting Flames", ["type"] = "enchant", }, [603] = { - ["id"] = "enchant.stat_2954116742|32951", - ["text"] = "Allocates Preservation", + ["id"] = "enchant.stat_2954116742|9652", + ["text"] = "Allocates Mending Deflection", ["type"] = "enchant", }, [604] = { - ["id"] = "enchant.stat_2954116742|65016", - ["text"] = "Allocates Intense Flames", + ["id"] = "enchant.stat_2954116742|16466", + ["text"] = "Allocates Mental Alacrity", ["type"] = "enchant", }, [605] = { - ["id"] = "enchant.stat_2954116742|32976", - ["text"] = "Allocates Gem Enthusiast", + ["id"] = "enchant.stat_2954116742|9226", + ["text"] = "Allocates Mental Perseverance", ["type"] = "enchant", }, [606] = { - ["id"] = "enchant.stat_2954116742|13708", - ["text"] = "Allocates Curved Weapon", + ["id"] = "enchant.stat_2954116742|24120", + ["text"] = "Allocates Mental Toughness", ["type"] = "enchant", }, [607] = { - ["id"] = "enchant.stat_2954116742|15986", - ["text"] = "Allocates Building Toxins", + ["id"] = "enchant.stat_2954116742|45632", + ["text"] = "Allocates Mind Eraser", ["type"] = "enchant", }, [608] = { - ["id"] = "enchant.stat_2954116742|4238", - ["text"] = "Allocates Versatile Arms", + ["id"] = "enchant.stat_2954116742|11392", + ["text"] = "Allocates Molten Being", ["type"] = "enchant", }, [609] = { - ["id"] = "enchant.stat_2954116742|17762", - ["text"] = "Allocates Vengeance", + ["id"] = "enchant.stat_2954116742|51868", + ["text"] = "Allocates Molten Carapace", ["type"] = "enchant", }, [610] = { - ["id"] = "enchant.stat_2954116742|44765", - ["text"] = "Allocates Distracting Presence", + ["id"] = "enchant.stat_2954116742|36100", + ["text"] = "Allocates Molten Claw", ["type"] = "enchant", }, [611] = { - ["id"] = "enchant.stat_2954116742|6655", - ["text"] = "Allocates Aggravation", + ["id"] = "enchant.stat_2954116742|17548", + ["text"] = "Allocates Moment of Truth", ["type"] = "enchant", }, [612] = { - ["id"] = "enchant.stat_2954116742|52191", - ["text"] = "Allocates Event Horizon", + ["id"] = "enchant.stat_2954116742|63579", + ["text"] = "Allocates Momentum", ["type"] = "enchant", }, [613] = { - ["id"] = "enchant.stat_2954116742|37408", - ["text"] = "Allocates Staunching", + ["id"] = "enchant.stat_2954116742|64770", + ["text"] = "Allocates Morgana, the Storm Seer", ["type"] = "enchant", }, [614] = { - ["id"] = "enchant.stat_2954116742|54805", - ["text"] = "Allocates Hindered Capabilities", + ["id"] = "enchant.stat_2954116742|47560", + ["text"] = "Allocates Multi Shot", ["type"] = "enchant", }, [615] = { - ["id"] = "enchant.stat_2954116742|52199", - ["text"] = "Allocates Overexposure", + ["id"] = "enchant.stat_2954116742|8810", + ["text"] = "Allocates Multitasking", ["type"] = "enchant", }, [616] = { - ["id"] = "enchant.stat_2954116742|12661", - ["text"] = "Allocates Asceticism", + ["id"] = "enchant.stat_2954116742|50239", + ["text"] = "Allocates Mutewind Agility", ["type"] = "enchant", }, [617] = { - ["id"] = "enchant.stat_2954116742|30562", - ["text"] = "Allocates Inner Faith", + ["id"] = "enchant.stat_2954116742|35046", + ["text"] = "Allocates Mystic Avalanche", ["type"] = "enchant", }, [618] = { - ["id"] = "enchant.stat_2954116742|34531", - ["text"] = "Allocates Hallowed", + ["id"] = "enchant.stat_2954116742|52764", + ["text"] = "Allocates Mystical Rage", ["type"] = "enchant", }, [619] = { - ["id"] = "enchant.stat_2954116742|3894", - ["text"] = "Allocates Eldritch Will", + ["id"] = "enchant.stat_2954116742|934", + ["text"] = "Allocates Natural Immunity", ["type"] = "enchant", }, [620] = { - ["id"] = "enchant.stat_2954116742|47270", - ["text"] = "Allocates Inescapable Cold", + ["id"] = "enchant.stat_2954116742|53265", + ["text"] = "Allocates Nature's Bite", ["type"] = "enchant", }, [621] = { - ["id"] = "enchant.stat_2954116742|43829", - ["text"] = "Allocates Advanced Munitions", + ["id"] = "enchant.stat_2954116742|4709", + ["text"] = "Allocates Near Sighted", ["type"] = "enchant", }, [622] = { - ["id"] = "enchant.stat_2954116742|38111", - ["text"] = "Allocates Pliable Flesh", + ["id"] = "enchant.stat_2954116742|35581", + ["text"] = "Allocates Near at Hand", ["type"] = "enchant", }, [623] = { - ["id"] = "enchant.stat_2954116742|63037", - ["text"] = "Allocates Sigil of Fire", + ["id"] = "enchant.stat_2954116742|10499", + ["text"] = "Allocates Necromantic Ward", ["type"] = "enchant", }, [624] = { - ["id"] = "enchant.stat_2954116742|60034", - ["text"] = "Allocates Falcon Dive", + ["id"] = "enchant.stat_2954116742|11376", + ["text"] = "Allocates Necrotic Touch", ["type"] = "enchant", }, [625] = { - ["id"] = "enchant.stat_2954116742|5009", - ["text"] = "Allocates Seeing Stars", + ["id"] = "enchant.stat_2954116742|59541", + ["text"] = "Allocates Necrotised Flesh", ["type"] = "enchant", }, [626] = { - ["id"] = "enchant.stat_2954116742|40399", - ["text"] = "Allocates Energise", + ["id"] = "enchant.stat_2954116742|40292", + ["text"] = "Allocates Nimble Strength", ["type"] = "enchant", }, [627] = { - ["id"] = "enchant.stat_2954116742|39050", - ["text"] = "Allocates Exploit", + ["id"] = "enchant.stat_2954116742|37266", + ["text"] = "Allocates Nourishing Ally", ["type"] = "enchant", }, [628] = { - ["id"] = "enchant.stat_2954116742|40073", - ["text"] = "Allocates Drenched", + ["id"] = "enchant.stat_2954116742|60992", + ["text"] = "Allocates Nurturing Guardian", ["type"] = "enchant", }, [629] = { - ["id"] = "enchant.stat_2954116742|61338", - ["text"] = "Allocates Breath of Lightning", + ["id"] = "enchant.stat_2954116742|42036", + ["text"] = "Allocates Off-Balancing Retort", ["type"] = "enchant", }, [630] = { - ["id"] = "enchant.stat_2954116742|44299", - ["text"] = "Allocates Enhanced Barrier", + ["id"] = "enchant.stat_2954116742|35918", + ["text"] = "Allocates One For All", ["type"] = "enchant", }, [631] = { - ["id"] = "enchant.stat_2954116742|15083", - ["text"] = "Allocates Power Conduction", + ["id"] = "enchant.stat_2954116742|44753", + ["text"] = "Allocates One With Flame", ["type"] = "enchant", }, [632] = { - ["id"] = "enchant.stat_2954116742|62034", - ["text"] = "Allocates Prism Guard", + ["id"] = "enchant.stat_2954116742|34316", + ["text"] = "Allocates One with the River", ["type"] = "enchant", }, [633] = { - ["id"] = "enchant.stat_2954116742|56265", - ["text"] = "Allocates Throatseeker", + ["id"] = "enchant.stat_2954116742|9444", + ["text"] = "Allocates One with the Storm", ["type"] = "enchant", }, [634] = { - ["id"] = "enchant.stat_2954116742|47316", - ["text"] = "Allocates Goring", + ["id"] = "enchant.stat_2954116742|52199", + ["text"] = "Allocates Overexposure", ["type"] = "enchant", }, [635] = { - ["id"] = "enchant.stat_2954116742|52803", - ["text"] = "Allocates Hale Traveller", + ["id"] = "enchant.stat_2954116742|65204", + ["text"] = "Allocates Overflowing Power", ["type"] = "enchant", }, [636] = { - ["id"] = "enchant.stat_2954116742|34316", - ["text"] = "Allocates One with the River", + ["id"] = "enchant.stat_2954116742|42390", + ["text"] = "Allocates Overheating Blow", ["type"] = "enchant", }, [637] = { - ["id"] = "enchant.stat_2954116742|3688", - ["text"] = "Allocates Dynamism", + ["id"] = "enchant.stat_2954116742|47635", + ["text"] = "Allocates Overload", ["type"] = "enchant", }, [638] = { - ["id"] = "enchant.stat_2954116742|43139", - ["text"] = "Allocates Stormbreaker", + ["id"] = "enchant.stat_2954116742|25513", + ["text"] = "Allocates Overwhelm", ["type"] = "enchant", }, [639] = { - ["id"] = "enchant.stat_2954116742|60404", - ["text"] = "Allocates Perfect Opportunity", + ["id"] = "enchant.stat_2954116742|57388", + ["text"] = "Allocates Overwhelming Strike", ["type"] = "enchant", }, [640] = { - ["id"] = "enchant.stat_2954116742|18308", - ["text"] = "Allocates Bleeding Out", + ["id"] = "enchant.stat_2954116742|10295", + ["text"] = "Allocates Overzealous", ["type"] = "enchant", }, [641] = { - ["id"] = "enchant.stat_2954116742|21748", - ["text"] = "Allocates Impending Doom", + ["id"] = "enchant.stat_2954116742|21784", + ["text"] = "Allocates Pack Encouragement", ["type"] = "enchant", }, [642] = { - ["id"] = "enchant.stat_2954116742|52971", - ["text"] = "Allocates The Soul Meridian", + ["id"] = "enchant.stat_2954116742|20686", + ["text"] = "Allocates Paragon", ["type"] = "enchant", }, [643] = { - ["id"] = "enchant.stat_2954116742|65204", - ["text"] = "Allocates Overflowing Power", + ["id"] = "enchant.stat_2954116742|24766", + ["text"] = "Allocates Paranoia", ["type"] = "enchant", }, [644] = { - ["id"] = "enchant.stat_2954116742|55708", - ["text"] = "Allocates Electric Amplification", + ["id"] = "enchant.stat_2954116742|56016", + ["text"] = "Allocates Passthrough Rounds", ["type"] = "enchant", }, [645] = { - ["id"] = "enchant.stat_2954116742|50485", - ["text"] = "Allocates Zone of Control", + ["id"] = "enchant.stat_2954116742|62230", + ["text"] = "Allocates Patient Barrier", ["type"] = "enchant", }, [646] = { - ["id"] = "enchant.stat_2954116742|48418", - ["text"] = "Allocates Hefty Unit", + ["id"] = "enchant.stat_2954116742|60404", + ["text"] = "Allocates Perfect Opportunity", ["type"] = "enchant", }, [647] = { - ["id"] = "enchant.stat_2954116742|51169", - ["text"] = "Allocates Soul Bloom", + ["id"] = "enchant.stat_2954116742|49661", + ["text"] = "Allocates Perfectly Placed Knife", ["type"] = "enchant", }, [648] = { - ["id"] = "enchant.stat_2954116742|2113", - ["text"] = "Allocates Martial Artistry", + ["id"] = "enchant.stat_2954116742|17330", + ["text"] = "Allocates Perforation", ["type"] = "enchant", }, [649] = { - ["id"] = "enchant.stat_2954116742|49740", - ["text"] = "Allocates Shattered Crystal", + ["id"] = "enchant.stat_2954116742|2863", + ["text"] = "Allocates Perpetual Freeze", ["type"] = "enchant", }, [650] = { - ["id"] = "enchant.stat_2954116742|4547", - ["text"] = "Allocates Unnatural Resilience", + ["id"] = "enchant.stat_2954116742|34308", + ["text"] = "Allocates Personal Touch", ["type"] = "enchant", }, [651] = { - ["id"] = "enchant.stat_2954116742|31826", - ["text"] = "Allocates Long Distance Relationship", + ["id"] = "enchant.stat_2954116742|7651", + ["text"] = "Allocates Pierce the Heart", ["type"] = "enchant", }, [652] = { - ["id"] = "enchant.stat_2954116742|30132", - ["text"] = "Allocates Wrapped Quiver", + ["id"] = "enchant.stat_2954116742|17260", + ["text"] = "Allocates Piercing Claw", ["type"] = "enchant", }, [653] = { - ["id"] = "enchant.stat_2954116742|17664", - ["text"] = "Allocates Decisive Retreat", + ["id"] = "enchant.stat_2954116742|4534", + ["text"] = "Allocates Piercing Shot", ["type"] = "enchant", }, [654] = { - ["id"] = "enchant.stat_2954116742|51867", - ["text"] = "Allocates Finality", + ["id"] = "enchant.stat_2954116742|51129", + ["text"] = "Allocates Pile On", ["type"] = "enchant", }, [655] = { - ["id"] = "enchant.stat_2954116742|16150", - ["text"] = "Allocates Inspiring Ally", + ["id"] = "enchant.stat_2954116742|60083", + ["text"] = "Allocates Pin and Run", ["type"] = "enchant", }, [656] = { - ["id"] = "enchant.stat_2954116742|54814", - ["text"] = "Allocates Profane Commander", + ["id"] = "enchant.stat_2954116742|4447", + ["text"] = "Allocates Pin their Motivation", ["type"] = "enchant", }, [657] = { - ["id"] = "enchant.stat_2954116742|31129", - ["text"] = "Allocates Lifelong Friend", + ["id"] = "enchant.stat_2954116742|16816", + ["text"] = "Allocates Pinpoint Shot", ["type"] = "enchant", }, [658] = { - ["id"] = "enchant.stat_2954116742|61104", - ["text"] = "Allocates Staggering Wounds", + ["id"] = "enchant.stat_2954116742|38111", + ["text"] = "Allocates Pliable Flesh", ["type"] = "enchant", }, [659] = { - ["id"] = "enchant.stat_2954116742|65243", - ["text"] = "Allocates Enveloping Presence", + ["id"] = "enchant.stat_2954116742|58426", + ["text"] = "Allocates Pocket Sand", ["type"] = "enchant", }, [660] = { - ["id"] = "enchant.stat_2954116742|22817", - ["text"] = "Allocates Inevitable Rupture", + ["id"] = "enchant.stat_2954116742|27950", + ["text"] = "Allocates Polished Iron", ["type"] = "enchant", }, [661] = { - ["id"] = "enchant.stat_2954116742|14294", - ["text"] = "Allocates Sacrificial Blood", + ["id"] = "enchant.stat_2954116742|57047", + ["text"] = "Allocates Polymathy", ["type"] = "enchant", }, [662] = { - ["id"] = "enchant.stat_2954116742|10315", - ["text"] = "Allocates Easy Going", + ["id"] = "enchant.stat_2954116742|19125", + ["text"] = "Allocates Potent Incantation", ["type"] = "enchant", }, [663] = { - ["id"] = "enchant.stat_2954116742|36630", - ["text"] = "Allocates Incision", + ["id"] = "enchant.stat_2954116742|15083", + ["text"] = "Allocates Power Conduction", ["type"] = "enchant", }, [664] = { - ["id"] = "enchant.stat_2954116742|27761", - ["text"] = "Allocates Counterstancing", + ["id"] = "enchant.stat_2954116742|6178", + ["text"] = "Allocates Power Shots", ["type"] = "enchant", }, [665] = { - ["id"] = "enchant.stat_2954116742|50884", - ["text"] = "Allocates Primal Sundering", + ["id"] = "enchant.stat_2954116742|49150", + ["text"] = "Allocates Precise Invocations", ["type"] = "enchant", }, [666] = { - ["id"] = "enchant.stat_2954116742|7338", - ["text"] = "Allocates Abasement", + ["id"] = "enchant.stat_2954116742|13895", + ["text"] = "Allocates Precise Point", ["type"] = "enchant", }, [667] = { - ["id"] = "enchant.stat_2954116742|43944", - ["text"] = "Allocates Instability", + ["id"] = "enchant.stat_2954116742|34425", + ["text"] = "Allocates Precise Volatility", ["type"] = "enchant", }, [668] = { - ["id"] = "enchant.stat_2954116742|5335", - ["text"] = "Allocates Shimmering Mirage", + ["id"] = "enchant.stat_2954116742|19337", + ["text"] = "Allocates Precision Salvo", ["type"] = "enchant", }, [669] = { - ["id"] = "enchant.stat_2954116742|42032", - ["text"] = "Allocates Escalating Mayhem", + ["id"] = "enchant.stat_2954116742|21380", + ["text"] = "Allocates Preemptive Strike", ["type"] = "enchant", }, [670] = { - ["id"] = "enchant.stat_2954116742|42714", - ["text"] = "Allocates Thousand Cuts", + ["id"] = "enchant.stat_2954116742|37872", + ["text"] = "Allocates Presence Present", ["type"] = "enchant", }, [671] = { - ["id"] = "enchant.stat_2954116742|32655", - ["text"] = "Allocates Hunting Companion", + ["id"] = "enchant.stat_2954116742|32951", + ["text"] = "Allocates Preservation", ["type"] = "enchant", }, [672] = { - ["id"] = "enchant.stat_2954116742|19337", - ["text"] = "Allocates Precision Salvo", + ["id"] = "enchant.stat_2954116742|28329", + ["text"] = "Allocates Pressure Points", ["type"] = "enchant", }, [673] = { - ["id"] = "enchant.stat_2954116742|21349", - ["text"] = "Allocates The Quick Fox", + ["id"] = "enchant.stat_2954116742|9908", + ["text"] = "Allocates Price of Freedom", ["type"] = "enchant", }, [674] = { - ["id"] = "enchant.stat_2954116742|60992", - ["text"] = "Allocates Nurturing Guardian", + ["id"] = "enchant.stat_2954116742|32071", + ["text"] = "Allocates Primal Growth", ["type"] = "enchant", }, [675] = { - ["id"] = "enchant.stat_2954116742|33585", - ["text"] = "Allocates Unspoken Bond", + ["id"] = "enchant.stat_2954116742|31364", + ["text"] = "Allocates Primal Protection", ["type"] = "enchant", }, [676] = { - ["id"] = "enchant.stat_2954116742|15030", - ["text"] = "Allocates Consistent Intake", + ["id"] = "enchant.stat_2954116742|28892", + ["text"] = "Allocates Primal Rage", ["type"] = "enchant", }, [677] = { - ["id"] = "enchant.stat_2954116742|20008", - ["text"] = "Allocates Unleash Fire", + ["id"] = "enchant.stat_2954116742|50884", + ["text"] = "Allocates Primal Sundering", ["type"] = "enchant", }, [678] = { - ["id"] = "enchant.stat_2954116742|4661", - ["text"] = "Allocates Inspiring Leader", + ["id"] = "enchant.stat_2954116742|26356", + ["text"] = "Allocates Primed to Explode", ["type"] = "enchant", }, [679] = { - ["id"] = "enchant.stat_2954116742|14211", - ["text"] = "Allocates Shredding Contraptions", + ["id"] = "enchant.stat_2954116742|62034", + ["text"] = "Allocates Prism Guard", ["type"] = "enchant", }, [680] = { - ["id"] = "enchant.stat_2954116742|62455", - ["text"] = "Allocates Bannerman", + ["id"] = "enchant.stat_2954116742|54814", + ["text"] = "Allocates Profane Commander", ["type"] = "enchant", }, [681] = { - ["id"] = "enchant.stat_2954116742|12822", - ["text"] = "Allocates Adaptable Assault", + ["id"] = "enchant.stat_2954116742|58397", + ["text"] = "Allocates Proficiency", ["type"] = "enchant", }, [682] = { - ["id"] = "enchant.stat_2954116742|30408", - ["text"] = "Allocates Efficient Contraptions", + ["id"] = "enchant.stat_2954116742|19236", + ["text"] = "Allocates Projectile Bulwark", ["type"] = "enchant", }, [683] = { - ["id"] = "enchant.stat_2954116742|32543", - ["text"] = "Allocates Unhindered", + ["id"] = "enchant.stat_2954116742|45874", + ["text"] = "Allocates Proliferating Weeds", ["type"] = "enchant", }, [684] = { - ["id"] = "enchant.stat_2954116742|58198", - ["text"] = "Allocates Well of Power", + ["id"] = "enchant.stat_2954116742|19442", + ["text"] = "Allocates Prolonged Assault", ["type"] = "enchant", }, [685] = { - ["id"] = "enchant.stat_2954116742|56493", - ["text"] = "Allocates Agile Succession", + ["id"] = "enchant.stat_2954116742|49550", + ["text"] = "Allocates Prolonged Fury", ["type"] = "enchant", }, [686] = { - ["id"] = "enchant.stat_2954116742|38459", - ["text"] = "Allocates Disorientation", + ["id"] = "enchant.stat_2954116742|54998", + ["text"] = "Allocates Protraction", ["type"] = "enchant", }, [687] = { - ["id"] = "enchant.stat_2954116742|30748", - ["text"] = "Allocates Controlled Chaos", + ["id"] = "enchant.stat_2954116742|38614", + ["text"] = "Allocates Psychic Fragmentation", ["type"] = "enchant", }, [688] = { - ["id"] = "enchant.stat_2954116742|43791", - ["text"] = "Allocates Rallying Icon", + ["id"] = "enchant.stat_2954116742|13482", + ["text"] = "Allocates Punctured Lung", ["type"] = "enchant", }, [689] = { - ["id"] = "enchant.stat_2954116742|53367", - ["text"] = "Allocates Symbol of Defiance", + ["id"] = "enchant.stat_2954116742|14258", + ["text"] = "Allocates Puppet Master chance", ["type"] = "enchant", }, [690] = { - ["id"] = "enchant.stat_2954116742|55131", - ["text"] = "Allocates Light on your Feet", + ["id"] = "enchant.stat_2954116742|62210", + ["text"] = "Allocates Puppet Master chance", ["type"] = "enchant", }, [691] = { - ["id"] = "enchant.stat_2954116742|16790", - ["text"] = "Allocates Efficient Casting", + ["id"] = "enchant.stat_2954116742|55149", + ["text"] = "Allocates Pure Chaos", ["type"] = "enchant", }, [692] = { - ["id"] = "enchant.stat_2954116742|18485", - ["text"] = "Allocates Unstable Bond", + ["id"] = "enchant.stat_2954116742|28975", + ["text"] = "Allocates Pure Power", ["type"] = "enchant", }, [693] = { - ["id"] = "enchant.stat_2954116742|5332", - ["text"] = "Allocates Crystallised Immunities", + ["id"] = "enchant.stat_2954116742|6229", + ["text"] = "Allocates Push the Advantage", ["type"] = "enchant", }, [694] = { - ["id"] = "enchant.stat_2954116742|36931", - ["text"] = "Allocates Concussive Attack", + ["id"] = "enchant.stat_2954116742|33542", + ["text"] = "Allocates Quick Fingers", ["type"] = "enchant", }, [695] = { - ["id"] = "enchant.stat_2954116742|57785", - ["text"] = "Allocates Trained Turrets", + ["id"] = "enchant.stat_2954116742|48240", + ["text"] = "Allocates Quick Recovery", ["type"] = "enchant", }, [696] = { - ["id"] = "enchant.stat_2954116742|63579", - ["text"] = "Allocates Momentum", + ["id"] = "enchant.stat_2954116742|55450", + ["text"] = "Allocates Rallying Form", ["type"] = "enchant", }, [697] = { - ["id"] = "enchant.stat_2954116742|25362", - ["text"] = "Allocates Chakra of Impact", + ["id"] = "enchant.stat_2954116742|43791", + ["text"] = "Allocates Rallying Icon", ["type"] = "enchant", }, [698] = { - ["id"] = "enchant.stat_2954116742|63400", - ["text"] = "Allocates Chakra of Elements", + ["id"] = "enchant.stat_2954116742|64119", + ["text"] = "Allocates Rapid Reload", ["type"] = "enchant", }, [699] = { - ["id"] = "enchant.stat_2954116742|48215", - ["text"] = "Allocates Headshot", + ["id"] = "enchant.stat_2954116742|7604", + ["text"] = "Allocates Rapid Strike", ["type"] = "enchant", }, [700] = { - ["id"] = "enchant.stat_2954116742|44293", - ["text"] = "Allocates Hastening Barrier", + ["id"] = "enchant.stat_2954116742|62185", + ["text"] = "Allocates Rattled", ["type"] = "enchant", }, [701] = { - ["id"] = "enchant.stat_2954116742|13515", - ["text"] = "Allocates Stormwalker", + ["id"] = "enchant.stat_2954116742|3567", + ["text"] = "Allocates Raw Mana", ["type"] = "enchant", }, [702] = { - ["id"] = "enchant.stat_2954116742|5642", - ["text"] = "Allocates Behemoth", + ["id"] = "enchant.stat_2954116742|17372", + ["text"] = "Allocates Reaching Strike", ["type"] = "enchant", }, [703] = { - ["id"] = "enchant.stat_2954116742|48617", - ["text"] = "Allocates Hunter", + ["id"] = "enchant.stat_2954116742|10602", + ["text"] = "Allocates Reaving", ["type"] = "enchant", }, [704] = { - ["id"] = "enchant.stat_2954116742|35560", - ["text"] = "Allocates At your Command", + ["id"] = "enchant.stat_2954116742|61309", + ["text"] = "Allocates Redblade Discipline", ["type"] = "enchant", }, [705] = { - ["id"] = "enchant.stat_2954116742|53187", - ["text"] = "Allocates Warlord Berserker", + ["id"] = "enchant.stat_2954116742|45244", + ["text"] = "Allocates Refills", ["type"] = "enchant", }, [706] = { - ["id"] = "enchant.stat_2954116742|94", - ["text"] = "Allocates Efficient Killing", + ["id"] = "enchant.stat_2954116742|26447", + ["text"] = "Allocates Refocus", ["type"] = "enchant", }, [707] = { - ["id"] = "enchant.stat_2954116742|46683", - ["text"] = "Allocates Inherited Strength ", + ["id"] = "enchant.stat_2954116742|20388", + ["text"] = "Allocates Regenerative Flesh", ["type"] = "enchant", }, [708] = { - ["id"] = "enchant.stat_2954116742|58817", - ["text"] = "Allocates Artillery Strike", + ["id"] = "enchant.stat_2954116742|56388", + ["text"] = "Allocates Reinforced Rallying", ["type"] = "enchant", }, [709] = { - ["id"] = "enchant.stat_2954116742|41753", - ["text"] = "Allocates Evocational Practitioner", + ["id"] = "enchant.stat_2954116742|35809", + ["text"] = "Allocates Reinvigoration", ["type"] = "enchant", }, [710] = { - ["id"] = "enchant.stat_2954116742|31745", - ["text"] = "Allocates Lockdown", + ["id"] = "enchant.stat_2954116742|55180", + ["text"] = "Allocates Relentless Fallen", ["type"] = "enchant", }, [711] = { - ["id"] = "enchant.stat_2954116742|56488", - ["text"] = "Allocates Glancing Deflection", + ["id"] = "enchant.stat_2954116742|1506", + ["text"] = "Allocates Remnant Attraction", ["type"] = "enchant", }, [712] = { - ["id"] = "enchant.stat_2954116742|40687", - ["text"] = "Allocates Lead by Example", + ["id"] = "enchant.stat_2954116742|65468", + ["text"] = "Allocates Repeating Explosives", ["type"] = "enchant", }, [713] = { - ["id"] = "enchant.stat_2954116742|34425", - ["text"] = "Allocates Precise Volatility", + ["id"] = "enchant.stat_2954116742|21251", + ["text"] = "Allocates Replenishing Horde", ["type"] = "enchant", }, [714] = { - ["id"] = "enchant.stat_2954116742|56016", - ["text"] = "Allocates Passthrough Rounds", + ["id"] = "enchant.stat_2954116742|20414", + ["text"] = "Allocates Reprisal", ["type"] = "enchant", }, [715] = { - ["id"] = "enchant.stat_2954116742|24764", - ["text"] = "Allocates Infusing Power", + ["id"] = "enchant.stat_2954116742|10029", + ["text"] = "Allocates Repulsion", ["type"] = "enchant", }, [716] = { - ["id"] = "enchant.stat_2954116742|28542", - ["text"] = "Allocates The Molten One's Gift", + ["id"] = "enchant.stat_2954116742|25361", + ["text"] = "Allocates Resolute Reach", ["type"] = "enchant", }, [717] = { - ["id"] = "enchant.stat_2954116742|53566", - ["text"] = "Allocates Run and Gun", + ["id"] = "enchant.stat_2954116742|56860", + ["text"] = "Allocates Resolute Reprisal", ["type"] = "enchant", }, [718] = { - ["id"] = "enchant.stat_2954116742|49150", - ["text"] = "Allocates Precise Invocations", + ["id"] = "enchant.stat_2954116742|40325", + ["text"] = "Allocates Resolution", ["type"] = "enchant", }, [719] = { - ["id"] = "enchant.stat_2954116742|60273", - ["text"] = "Allocates Hindering Obstacles", + ["id"] = "enchant.stat_2954116742|38972", + ["text"] = "Allocates Restless Dead", ["type"] = "enchant", }, [720] = { - ["id"] = "enchant.stat_2954116742|41033", - ["text"] = "Allocates Utmost Offering", + ["id"] = "enchant.stat_2954116742|31773", + ["text"] = "Allocates Resurging Archon", ["type"] = "enchant", }, [721] = { - ["id"] = "enchant.stat_2954116742|45370", - ["text"] = "Allocates The Raging Ox", + ["id"] = "enchant.stat_2954116742|7395", + ["text"] = "Allocates Retaliation", ["type"] = "enchant", }, [722] = { - ["id"] = "enchant.stat_2954116742|52257", - ["text"] = "Allocates Conductive Embrace", + ["id"] = "enchant.stat_2954116742|9009", + ["text"] = "Allocates Return to Nature", ["type"] = "enchant", }, [723] = { - ["id"] = "enchant.stat_2954116742|42103", - ["text"] = "Allocates Enduring Deflection", + ["id"] = "enchant.stat_2954116742|7062", + ["text"] = "Allocates Reusable Ammunition", ["type"] = "enchant", }, [724] = { - ["id"] = "enchant.stat_2954116742|26563", - ["text"] = "Allocates Bone Chains", + ["id"] = "enchant.stat_2954116742|3188", + ["text"] = "Allocates Revenge", ["type"] = "enchant", }, [725] = { - ["id"] = "enchant.stat_2954116742|22532", - ["text"] = "Allocates Fearful Paralysis", + ["id"] = "enchant.stat_2954116742|33400", + ["text"] = "Allocates Reverberating Parry", ["type"] = "enchant", }, [726] = { - ["id"] = "enchant.stat_2954116742|12964", - ["text"] = "Allocates Lone Warrior", + ["id"] = "enchant.stat_2954116742|8660", + ["text"] = "Allocates Reverberation", ["type"] = "enchant", }, [727] = { - ["id"] = "enchant.stat_2954116742|10500", - ["text"] = "Allocates Dazing Blocks", + ["id"] = "enchant.stat_2954116742|8957", + ["text"] = "Allocates Right Hand of Darkness", ["type"] = "enchant", }, [728] = { - ["id"] = "enchant.stat_2954116742|17303", - ["text"] = "Allocates Utility Ordnance", + ["id"] = "enchant.stat_2954116742|28613", + ["text"] = "Allocates Roaring Cries", ["type"] = "enchant", }, [729] = { - ["id"] = "enchant.stat_2954116742|64650", - ["text"] = "Allocates Wary Dodging", + ["id"] = "enchant.stat_2954116742|60269", + ["text"] = "Allocates Roil", ["type"] = "enchant", }, [730] = { - ["id"] = "enchant.stat_2954116742|9290", - ["text"] = "Allocates Rusted Pins", + ["id"] = "enchant.stat_2954116742|61112", + ["text"] = "Allocates Roll and Strike", ["type"] = "enchant", }, [731] = { - ["id"] = "enchant.stat_2954116742|48734", - ["text"] = "Allocates The Howling Primate", + ["id"] = "enchant.stat_2954116742|8483", + ["text"] = "Allocates Ruin", ["type"] = "enchant", }, [732] = { - ["id"] = "enchant.stat_2954116742|48699", - ["text"] = "Allocates Frostwalker", + ["id"] = "enchant.stat_2954116742|18959", + ["text"] = "Allocates Ruinic Helm", ["type"] = "enchant", }, [733] = { - ["id"] = "enchant.stat_2954116742|65256", - ["text"] = "Allocates Widespread Coverage", + ["id"] = "enchant.stat_2954116742|53566", + ["text"] = "Allocates Run and Gun", ["type"] = "enchant", }, [734] = { - ["id"] = "enchant.stat_2954116742|47514", - ["text"] = "Allocates Dizzying Hits", + ["id"] = "enchant.stat_2954116742|7782", + ["text"] = "Allocates Rupturing Pins", ["type"] = "enchant", }, [735] = { - ["id"] = "enchant.stat_2954116742|61354", - ["text"] = "Allocates Infernal Limit", + ["id"] = "enchant.stat_2954116742|9290", + ["text"] = "Allocates Rusted Pins", ["type"] = "enchant", }, [736] = { - ["id"] = "enchant.stat_2954116742|24491", - ["text"] = "Allocates Invocated Echoes", + ["id"] = "enchant.stat_2954116742|14294", + ["text"] = "Allocates Sacrificial Blood", ["type"] = "enchant", }, [737] = { - ["id"] = "enchant.stat_2954116742|45177", - ["text"] = "Allocates Strike True", + ["id"] = "enchant.stat_2954116742|25619", + ["text"] = "Allocates Sand in the Eyes", ["type"] = "enchant", }, [738] = { - ["id"] = "enchant.stat_2954116742|27513", - ["text"] = "Allocates Material Solidification", + ["id"] = "enchant.stat_2954116742|58215", + ["text"] = "Allocates Sanguimantic Rituals", ["type"] = "enchant", }, [739] = { - ["id"] = "enchant.stat_2954116742|10612", - ["text"] = "Allocates Embodiment of Frost", + ["id"] = "enchant.stat_2954116742|4810", + ["text"] = "Allocates Sanguine Tolerance", ["type"] = "enchant", }, [740] = { - ["id"] = "enchant.stat_2954116742|53185", - ["text"] = "Allocates The Winter Owl", + ["id"] = "enchant.stat_2954116742|42070", + ["text"] = "Allocates Saqawal's Guidance", ["type"] = "enchant", }, [741] = { - ["id"] = "enchant.stat_2954116742|11392", - ["text"] = "Allocates Molten Being", + ["id"] = "enchant.stat_2954116742|35743", + ["text"] = "Allocates Saqawal's Hide", ["type"] = "enchant", }, [742] = { - ["id"] = "enchant.stat_2954116742|63031", - ["text"] = "Allocates Glorious Anticipation", + ["id"] = "enchant.stat_2954116742|62237", + ["text"] = "Allocates Saqawal's Talon", ["type"] = "enchant", }, [743] = { - ["id"] = "enchant.stat_2954116742|54031", - ["text"] = "Allocates The Great Boar", + ["id"] = "enchant.stat_2954116742|63255", + ["text"] = "Allocates Savagery", ["type"] = "enchant", }, [744] = { - ["id"] = "enchant.stat_2954116742|50392", - ["text"] = "Allocates Brute Strength", + ["id"] = "enchant.stat_2954116742|18397", + ["text"] = "Allocates Savoured Blood", ["type"] = "enchant", }, [745] = { - ["id"] = "enchant.stat_2954116742|59070", - ["text"] = "Allocates Enduring Archon", + ["id"] = "enchant.stat_2954116742|45713", + ["text"] = "Allocates Savouring", ["type"] = "enchant", }, [746] = { - ["id"] = "enchant.stat_2954116742|8896", - ["text"] = "Allocates Agile Sprinter", + ["id"] = "enchant.stat_2954116742|60619", + ["text"] = "Allocates Scales of the Wyvern", ["type"] = "enchant", }, [747] = { - ["id"] = "enchant.stat_2954116742|34541", - ["text"] = "Allocates Energising Deflection", + ["id"] = "enchant.stat_2954116742|39884", + ["text"] = "Allocates Searing Heat", ["type"] = "enchant", }, [748] = { - ["id"] = "enchant.stat_2954116742|64659", - ["text"] = "Allocates Lasting Boons", + ["id"] = "enchant.stat_2954116742|52229", + ["text"] = "Allocates Secrets of the Orb", ["type"] = "enchant", }, [749] = { - ["id"] = "enchant.stat_2954116742|34908", - ["text"] = "Allocates Staunch Deflection", + ["id"] = "enchant.stat_2954116742|5009", + ["text"] = "Allocates Seeing Stars", ["type"] = "enchant", }, [750] = { - ["id"] = "enchant.stat_2954116742|8782", - ["text"] = "Allocates Empowering Infusions", + ["id"] = "enchant.stat_2954116742|23630", + ["text"] = "Allocates Self Immolation", ["type"] = "enchant", }, [751] = { - ["id"] = "enchant.stat_2954116742|56767", - ["text"] = "Allocates Electrifying Daze", + ["id"] = "enchant.stat_2954116742|44917", + ["text"] = "Allocates Self Mortification", ["type"] = "enchant", }, [752] = { - ["id"] = "enchant.stat_2954116742|27434", - ["text"] = "Allocates Archon of the Storm", + ["id"] = "enchant.stat_2954116742|36085", + ["text"] = "Allocates Serrated Edges", ["type"] = "enchant", }, [753] = { - ["id"] = "enchant.stat_2954116742|35792", - ["text"] = "Allocates Blood of Rage", + ["id"] = "enchant.stat_2954116742|13457", + ["text"] = "Allocates Shadow Dancing", ["type"] = "enchant", }, [754] = { - ["id"] = "enchant.stat_2954116742|62963", - ["text"] = "Allocates Flamewalker", + ["id"] = "enchant.stat_2954116742|53150", + ["text"] = "Allocates Sharp Sight", ["type"] = "enchant", }, [755] = { - ["id"] = "enchant.stat_2954116742|32799", - ["text"] = "Allocates Captivating Companionship", + ["id"] = "enchant.stat_2954116742|61703", + ["text"] = "Allocates Sharpened Claw", ["type"] = "enchant", }, [756] = { - ["id"] = "enchant.stat_2954116742|43088", - ["text"] = "Allocates Agonising Calamity", + ["id"] = "enchant.stat_2954116742|41811", + ["text"] = "Allocates Shatter Palm", ["type"] = "enchant", }, [757] = { - ["id"] = "enchant.stat_2954116742|51868", - ["text"] = "Allocates Molten Carapace", + ["id"] = "enchant.stat_2954116742|49740", + ["text"] = "Allocates Shattered Crystal", ["type"] = "enchant", }, [758] = { - ["id"] = "enchant.stat_2954116742|43854", - ["text"] = "Allocates All For One", + ["id"] = "enchant.stat_2954116742|48658", + ["text"] = "Allocates Shattering", ["type"] = "enchant", }, [759] = { - ["id"] = "enchant.stat_2954116742|37302", - ["text"] = "Allocates Kept at Bay", + ["id"] = "enchant.stat_2954116742|53527", + ["text"] = "Allocates Shattering Blow", ["type"] = "enchant", }, [760] = { - ["id"] = "enchant.stat_2954116742|23736", - ["text"] = "Allocates Spray and Pray", + ["id"] = "enchant.stat_2954116742|64415", + ["text"] = "Allocates Shattering Daze", ["type"] = "enchant", }, [761] = { - ["id"] = "enchant.stat_2954116742|43633", - ["text"] = "Allocates Energising Archon", + ["id"] = "enchant.stat_2954116742|15644", + ["text"] = "Allocates Shedding Skin", ["type"] = "enchant", }, [762] = { - ["id"] = "enchant.stat_2954116742|18157", - ["text"] = "Allocates Tempered Defences", + ["id"] = "enchant.stat_2954116742|37244", + ["text"] = "Allocates Shield Expertise", ["type"] = "enchant", }, [763] = { - ["id"] = "enchant.stat_2954116742|12906", - ["text"] = "Allocates Sitting Duck", + ["id"] = "enchant.stat_2954116742|57617", + ["text"] = "Allocates Shifted Strikes", ["type"] = "enchant", }, [764] = { - ["id"] = "enchant.stat_2954116742|2843", - ["text"] = "Allocates Tolerant Equipment", + ["id"] = "enchant.stat_2954116742|53941", + ["text"] = "Allocates Shimmering", ["type"] = "enchant", }, [765] = { - ["id"] = "enchant.stat_2954116742|5686", - ["text"] = "Allocates Chillproof", + ["id"] = "enchant.stat_2954116742|5335", + ["text"] = "Allocates Shimmering Mirage", ["type"] = "enchant", }, [766] = { - ["id"] = "enchant.stat_2954116742|22811", - ["text"] = "Allocates The Wild Cat", + ["id"] = "enchant.stat_2954116742|29800", + ["text"] = "Allocates Shocking Limit", ["type"] = "enchant", }, [767] = { - ["id"] = "enchant.stat_2954116742|4579", - ["text"] = "Allocates Unbothering Cold", + ["id"] = "enchant.stat_2954116742|32448", + ["text"] = "Allocates Shockproof", ["type"] = "enchant", }, [768] = { - ["id"] = "enchant.stat_2954116742|56988", - ["text"] = "Allocates Electric Blood", + ["id"] = "enchant.stat_2954116742|1087", + ["text"] = "Allocates Shockwaves", ["type"] = "enchant", }, [769] = { - ["id"] = "enchant.stat_2954116742|10774", - ["text"] = "Allocates Unyielding", + ["id"] = "enchant.stat_2954116742|46296", + ["text"] = "Allocates Short Shot", ["type"] = "enchant", }, [770] = { - ["id"] = "enchant.stat_2954116742|52180", - ["text"] = "Allocates Trained Deflection", + ["id"] = "enchant.stat_2954116742|55060", + ["text"] = "Allocates Shrapnel", ["type"] = "enchant", }, [771] = { - ["id"] = "enchant.stat_2954116742|52245", - ["text"] = "Allocates Distant Dreamer", + ["id"] = "enchant.stat_2954116742|14211", + ["text"] = "Allocates Shredding Contraptions", ["type"] = "enchant", }, [772] = { - ["id"] = "enchant.stat_2954116742|29306", - ["text"] = "Allocates Chakra of Thought", + ["id"] = "enchant.stat_2954116742|5284", + ["text"] = "Allocates Shredding Force", ["type"] = "enchant", }, [773] = { - ["id"] = "enchant.stat_2954116742|35031", - ["text"] = "Allocates Chakra of Life", + ["id"] = "enchant.stat_2954116742|47088", + ["text"] = "Allocates Sic 'Em", ["type"] = "enchant", }, [774] = { - ["id"] = "enchant.stat_2954116742|13482", - ["text"] = "Allocates Punctured Lung", + ["id"] = "enchant.stat_2954116742|63037", + ["text"] = "Allocates Sigil of Fire", ["type"] = "enchant", }, [775] = { - ["id"] = "enchant.stat_2954116742|12412", - ["text"] = "Allocates Temporal Mastery", + ["id"] = "enchant.stat_2954116742|40803", + ["text"] = "Allocates Sigil of Ice", ["type"] = "enchant", }, [776] = { - ["id"] = "enchant.stat_2954116742|28613", - ["text"] = "Allocates Roaring Cries", + ["id"] = "enchant.stat_2954116742|46024", + ["text"] = "Allocates Sigil of Lightning", ["type"] = "enchant", }, [777] = { - ["id"] = "enchant.stat_2954116742|52229", - ["text"] = "Allocates Secrets of the Orb", + ["id"] = "enchant.stat_2954116742|17229", + ["text"] = "Allocates Silent Guardian", ["type"] = "enchant", }, [778] = { - ["id"] = "enchant.stat_2954116742|28441", - ["text"] = "Allocates Frantic Swings", + ["id"] = "enchant.stat_2954116742|52392", + ["text"] = "Allocates Singular Purpose", ["type"] = "enchant", }, [779] = { - ["id"] = "enchant.stat_2954116742|750", - ["text"] = "Allocates Tribal Fury", + ["id"] = "enchant.stat_2954116742|15829", + ["text"] = "Allocates Siphon", ["type"] = "enchant", }, [780] = { - ["id"] = "enchant.stat_2954116742|50912", - ["text"] = "Allocates Imbibed Power", + ["id"] = "enchant.stat_2954116742|12906", + ["text"] = "Allocates Sitting Duck", ["type"] = "enchant", }, [781] = { - ["id"] = "enchant.stat_2954116742|50673", - ["text"] = "Allocates Avoiding Deflection", + ["id"] = "enchant.stat_2954116742|2645", + ["text"] = "Allocates Skullcrusher", ["type"] = "enchant", }, [782] = { - ["id"] = "enchant.stat_2954116742|64525", - ["text"] = "Allocates Easy Target", + ["id"] = "enchant.stat_2954116742|55308", + ["text"] = "Allocates Sling Shots", ["type"] = "enchant", }, [783] = { - ["id"] = "enchant.stat_2954116742|34543", - ["text"] = "Allocates The Frenzied Bear", + ["id"] = "enchant.stat_2954116742|23362", + ["text"] = "Allocates Slippery Ice", ["type"] = "enchant", }, [784] = { - ["id"] = "enchant.stat_2954116742|46124", - ["text"] = "Allocates Arcane Remnants", + ["id"] = "enchant.stat_2954116742|31326", + ["text"] = "Allocates Slow Burn", ["type"] = "enchant", }, [785] = { - ["id"] = "enchant.stat_2954116742|53607", - ["text"] = "Allocates Fortified Location", + ["id"] = "enchant.stat_2954116742|54148", + ["text"] = "Allocates Smoke Inhalation", ["type"] = "enchant", }, [786] = { - ["id"] = "enchant.stat_2954116742|36333", - ["text"] = "Allocates Explosive Empowerment", + ["id"] = "enchant.stat_2954116742|11526", + ["text"] = "Allocates Sniper", ["type"] = "enchant", }, [787] = { - ["id"] = "enchant.stat_2954116742|33229", - ["text"] = "Allocates Haemorrhaging Cuts", + ["id"] = "enchant.stat_2954116742|9421", + ["text"] = "Allocates Snowpiercer", ["type"] = "enchant", }, [788] = { - ["id"] = "enchant.stat_2954116742|32721", - ["text"] = "Allocates Distracted Target", + ["id"] = "enchant.stat_2954116742|51169", + ["text"] = "Allocates Soul Bloom", ["type"] = "enchant", }, [789] = { - ["id"] = "enchant.stat_2954116742|24087", - ["text"] = "Allocates Everlasting Infusions", + ["id"] = "enchant.stat_2954116742|34473", + ["text"] = "Allocates Spaghettification", ["type"] = "enchant", }, [790] = { - ["id"] = "enchant.stat_2954116742|53131", - ["text"] = "Allocates Tukohama's Brew", + ["id"] = "enchant.stat_2954116742|14602", + ["text"] = "Allocates Specialised Shots", ["type"] = "enchant", }, [791] = { - ["id"] = "enchant.stat_2954116742|29288", - ["text"] = "Allocates Deadly Invocations", + ["id"] = "enchant.stat_2954116742|34324", + ["text"] = "Allocates Spectral Ward", ["type"] = "enchant", }, [792] = { - ["id"] = "enchant.stat_2954116742|15991", - ["text"] = "Allocates Embodiment of Lightning", + ["id"] = "enchant.stat_2954116742|17254", + ["text"] = "Allocates Spell Haste", ["type"] = "enchant", }, [793] = { - ["id"] = "enchant.stat_2954116742|32151", - ["text"] = "Allocates Crystalline Resistance", + ["id"] = "enchant.stat_2954116742|49984", + ["text"] = "Allocates Spellblade", ["type"] = "enchant", }, [794] = { - ["id"] = "enchant.stat_2954116742|46365", - ["text"] = "Allocates Gigantic Following", + ["id"] = "enchant.stat_2954116742|3698", + ["text"] = "Allocates Spike Pit", ["type"] = "enchant", }, [795] = { - ["id"] = "enchant.stat_2954116742|63739", - ["text"] = "Allocates Vigorous Remnants", + ["id"] = "enchant.stat_2954116742|40117", + ["text"] = "Allocates Spiked Armour", ["type"] = "enchant", }, [796] = { - ["id"] = "enchant.stat_2954116742|41394", - ["text"] = "Allocates Invigorating Archon", + ["id"] = "enchant.stat_2954116742|36808", + ["text"] = "Allocates Spiked Shield", ["type"] = "enchant", }, [797] = { - ["id"] = "enchant.stat_2954116742|17825", - ["text"] = "Allocates Tactical Retreat", + ["id"] = "enchant.stat_2954116742|1546", + ["text"] = "Allocates Spiral into Depression", ["type"] = "enchant", }, [798] = { - ["id"] = "enchant.stat_2954116742|38965", - ["text"] = "Allocates Infused Limits", + ["id"] = "enchant.stat_2954116742|2138", + ["text"] = "Allocates Spiral into Insanity", ["type"] = "enchant", }, [799] = { - ["id"] = "enchant.stat_2954116742|42760", - ["text"] = "Allocates Chakra of Stability", + ["id"] = "enchant.stat_2954116742|14934", + ["text"] = "Allocates Spiral into Mania", ["type"] = "enchant", }, [800] = { - ["id"] = "enchant.stat_2954116742|47088", - ["text"] = "Allocates Sic 'Em", + ["id"] = "enchant.stat_2954116742|51105", + ["text"] = "Allocates Spirit Bond", ["type"] = "enchant", }, [801] = { - ["id"] = "enchant.stat_2954116742|5410", - ["text"] = "Allocates Channelled Heritage", + ["id"] = "enchant.stat_2954116742|9328", + ["text"] = "Allocates Spirit of the Bear", ["type"] = "enchant", }, [802] = { - ["id"] = "enchant.stat_2954116742|31773", - ["text"] = "Allocates Resurging Archon", + ["id"] = "enchant.stat_2954116742|3348", + ["text"] = "Allocates Spirit of the Wolf", ["type"] = "enchant", }, [803] = { - ["id"] = "enchant.stat_2954116742|2397", - ["text"] = "Allocates Last Stand", + ["id"] = "enchant.stat_2954116742|26104", + ["text"] = "Allocates Spirit of the Wyvern", ["type"] = "enchant", }, [804] = { - ["id"] = "enchant.stat_2954116742|5594", - ["text"] = "Allocates Decrepifying Curse", + ["id"] = "enchant.stat_2954116742|49088", + ["text"] = "Allocates Splintering Force", ["type"] = "enchant", }, [805] = { - ["id"] = "enchant.stat_2954116742|7782", - ["text"] = "Allocates Rupturing Pins", + ["id"] = "enchant.stat_2954116742|7449", + ["text"] = "Allocates Splinters", ["type"] = "enchant", }, [806] = { - ["id"] = "enchant.stat_2954116742|52764", - ["text"] = "Allocates Mystical Rage", + ["id"] = "enchant.stat_2954116742|42302", + ["text"] = "Allocates Split Shot", ["type"] = "enchant", }, [807] = { - ["id"] = "enchant.stat_2954116742|15443", - ["text"] = "Allocates Endured Suffering", + ["id"] = "enchant.stat_2954116742|13980", + ["text"] = "Allocates Split the Earth", ["type"] = "enchant", }, [808] = { - ["id"] = "enchant.stat_2954116742|19546", - ["text"] = "Allocates Favourable Odds", + ["id"] = "enchant.stat_2954116742|20251", + ["text"] = "Allocates Splitting Ground", ["type"] = "enchant", }, [809] = { - ["id"] = "enchant.stat_2954116742|42245", - ["text"] = "Allocates Efficient Inscriptions", + ["id"] = "enchant.stat_2954116742|23736", + ["text"] = "Allocates Spray and Pray", ["type"] = "enchant", }, [810] = { - ["id"] = "enchant.stat_2954116742|2134", - ["text"] = "Allocates Toxic Tolerance", + ["id"] = "enchant.stat_2954116742|11578", + ["text"] = "Allocates Spreading Shocks", ["type"] = "enchant", }, [811] = { - ["id"] = "enchant.stat_2954116742|58215", - ["text"] = "Allocates Sanguimantic Rituals", + ["id"] = "enchant.stat_2954116742|63759", + ["text"] = "Allocates Stacking Toxins", ["type"] = "enchant", }, [812] = { - ["id"] = "enchant.stat_2954116742|338", - ["text"] = "Allocates Invocated Limit", + ["id"] = "enchant.stat_2954116742|39881", + ["text"] = "Allocates Staggering Palm", ["type"] = "enchant", }, [813] = { - ["id"] = "enchant.stat_2954116742|10499", - ["text"] = "Allocates Necromantic Ward", + ["id"] = "enchant.stat_2954116742|61104", + ["text"] = "Allocates Staggering Wounds", ["type"] = "enchant", }, [814] = { - ["id"] = "enchant.stat_2954116742|7275", - ["text"] = "Allocates Electrocuting Exposure", + ["id"] = "enchant.stat_2954116742|6304", + ["text"] = "Allocates Stand Ground", ["type"] = "enchant", }, [815] = { - ["id"] = "enchant.stat_2954116742|59208", - ["text"] = "Allocates Frantic Fighter", + ["id"] = "enchant.stat_2954116742|5802", + ["text"] = "Allocates Stand and Deliver", ["type"] = "enchant", }, [816] = { - ["id"] = "enchant.stat_2954116742|56860", - ["text"] = "Allocates Resolute Reprisal", + ["id"] = "enchant.stat_2954116742|2486", + ["text"] = "Allocates Stars Aligned", ["type"] = "enchant", }, [817] = { - ["id"] = "enchant.stat_2954116742|33922", - ["text"] = "Allocates Stripped Defences", + ["id"] = "enchant.stat_2954116742|34908", + ["text"] = "Allocates Staunch Deflection", ["type"] = "enchant", }, [818] = { - ["id"] = "enchant.stat_2954116742|50715", - ["text"] = "Allocates Frozen Limit", + ["id"] = "enchant.stat_2954116742|37408", + ["text"] = "Allocates Staunching", ["type"] = "enchant", }, [819] = { - ["id"] = "enchant.stat_2954116742|64050", - ["text"] = "Allocates Marathon Runner", + ["id"] = "enchant.stat_2954116742|26479", + ["text"] = "Allocates Steadfast Resolve", ["type"] = "enchant", }, [820] = { - ["id"] = "enchant.stat_2954116742|7847", - ["text"] = "Allocates The Fabled Stag", + ["id"] = "enchant.stat_2954116742|47782", + ["text"] = "Allocates Steady Footing", ["type"] = "enchant", }, [821] = { - ["id"] = "enchant.stat_2954116742|38570", - ["text"] = "Allocates Demolitionist", + ["id"] = "enchant.stat_2954116742|47441", + ["text"] = "Allocates Stigmata", ["type"] = "enchant", }, [822] = { - ["id"] = "enchant.stat_2954116742|48524", - ["text"] = "Allocates Blood Transfusion", + ["id"] = "enchant.stat_2954116742|7163", + ["text"] = "Allocates Stimulants", ["type"] = "enchant", }, [823] = { - ["id"] = "enchant.stat_2954116742|9896", - ["text"] = "Allocates Heartstopping Presence", + ["id"] = "enchant.stat_2954116742|1603", + ["text"] = "Allocates Storm Driven", ["type"] = "enchant", }, [824] = { - ["id"] = "enchant.stat_2954116742|8397", - ["text"] = "Allocates Empowering Remains", + ["id"] = "enchant.stat_2954116742|61921", + ["text"] = "Allocates Storm Surge", ["type"] = "enchant", }, [825] = { - ["id"] = "enchant.stat_2954116742|45751", - ["text"] = "Allocates Frightening Shield", + ["id"] = "enchant.stat_2954116742|336", + ["text"] = "Allocates Storm Swell", ["type"] = "enchant", }, [826] = { - ["id"] = "enchant.stat_2954116742|53683", - ["text"] = "Allocates Efficient Loading", + ["id"] = "enchant.stat_2954116742|22726", + ["text"] = "Allocates Storm's Rebuke", ["type"] = "enchant", }, [827] = { - ["id"] = "enchant.stat_2954116742|4331", - ["text"] = "Allocates Guided Hand", + ["id"] = "enchant.stat_2954116742|43139", + ["text"] = "Allocates Stormbreaker", ["type"] = "enchant", }, [828] = { - ["id"] = "enchant.stat_2954116742|9652", - ["text"] = "Allocates Mending Deflection", + ["id"] = "enchant.stat_2954116742|38535", + ["text"] = "Allocates Stormcharged", ["type"] = "enchant", }, [829] = { - ["id"] = "enchant.stat_2954116742|35918", - ["text"] = "Allocates One For All", + ["id"] = "enchant.stat_2954116742|13515", + ["text"] = "Allocates Stormwalker", ["type"] = "enchant", }, [830] = { - ["id"] = "enchant.stat_2954116742|29899", - ["text"] = "Allocates Finish Them", + ["id"] = "enchant.stat_2954116742|45177", + ["text"] = "Allocates Strike True", ["type"] = "enchant", }, [831] = { - ["id"] = "enchant.stat_2954116742|1603", - ["text"] = "Allocates Storm Driven", + ["id"] = "enchant.stat_2954116742|33922", + ["text"] = "Allocates Stripped Defences", ["type"] = "enchant", }, [832] = { - ["id"] = "enchant.stat_2954116742|24766", - ["text"] = "Allocates Paranoia", + ["id"] = "enchant.stat_2954116742|10998", + ["text"] = "Allocates Strong Chin", ["type"] = "enchant", }, [833] = { - ["id"] = "enchant.stat_2954116742|13524", - ["text"] = "Allocates Everlasting Glory", + ["id"] = "enchant.stat_2954116742|39369", + ["text"] = "Allocates Struck Through", ["type"] = "enchant", }, [834] = { - ["id"] = "enchant.stat_2954116742|14602", - ["text"] = "Allocates Specialised Shots", + ["id"] = "enchant.stat_2954116742|38342", + ["text"] = "Allocates Stupefy", ["type"] = "enchant", }, [835] = { - ["id"] = "enchant.stat_2954116742|34553", - ["text"] = "Allocates Emboldening Lead", + ["id"] = "enchant.stat_2954116742|8791", + ["text"] = "Allocates Sturdy Ally", ["type"] = "enchant", }, [836] = { - ["id"] = "enchant.stat_2954116742|8607", - ["text"] = "Allocates Lavianga's Brew", + ["id"] = "enchant.stat_2954116742|60138", + ["text"] = "Allocates Stylebender", ["type"] = "enchant", }, [837] = { - ["id"] = "enchant.stat_2954116742|29800", - ["text"] = "Allocates Shocking Limit", + ["id"] = "enchant.stat_2954116742|55193", + ["text"] = "Allocates Subterfuge Mask", ["type"] = "enchant", }, [838] = { - ["id"] = "enchant.stat_2954116742|42347", - ["text"] = "Allocates Chakra of Sight", + ["id"] = "enchant.stat_2954116742|30392", + ["text"] = "Allocates Succour", ["type"] = "enchant", }, [839] = { - ["id"] = "enchant.stat_2954116742|64415", - ["text"] = "Allocates Shattering Daze", + ["id"] = "enchant.stat_2954116742|10398", + ["text"] = "Allocates Sudden Escalation", ["type"] = "enchant", }, [840] = { - ["id"] = "enchant.stat_2954116742|4544", - ["text"] = "Allocates The Ancient Serpent", + ["id"] = "enchant.stat_2954116742|29372", + ["text"] = "Allocates Sudden Infuriation", ["type"] = "enchant", }, [841] = { - ["id"] = "enchant.stat_2954116742|49214", - ["text"] = "Allocates Blood of the Wolf", + ["id"] = "enchant.stat_2954116742|14383", + ["text"] = "Allocates Suffusion", ["type"] = "enchant", }, [842] = { - ["id"] = "enchant.stat_2954116742|11774", - ["text"] = "Allocates The Spring Hare", + ["id"] = "enchant.stat_2954116742|2511", + ["text"] = "Allocates Sundering", ["type"] = "enchant", }, [843] = { - ["id"] = "enchant.stat_2954116742|20511", - ["text"] = "Allocates Cremating Cries", + ["id"] = "enchant.stat_2954116742|19249", + ["text"] = "Allocates Supportive Ancestors", ["type"] = "enchant", }, [844] = { - ["id"] = "enchant.stat_2954116742|63541", - ["text"] = "Allocates Brush Off", + ["id"] = "enchant.stat_2954116742|29881", + ["text"] = "Allocates Surging Beast", ["type"] = "enchant", }, [845] = { - ["id"] = "enchant.stat_2954116742|52684", - ["text"] = "Allocates Eroding Chains", + ["id"] = "enchant.stat_2954116742|42065", + ["text"] = "Allocates Surging Currents", ["type"] = "enchant", }, [846] = { - ["id"] = "enchant.stat_2954116742|40292", - ["text"] = "Allocates Nimble Strength", + ["id"] = "enchant.stat_2954116742|56806", + ["text"] = "Allocates Swift Blocking", ["type"] = "enchant", }, [847] = { - ["id"] = "enchant.stat_2954116742|41935", - ["text"] = "Allocates Hide of the Bear", + ["id"] = "enchant.stat_2954116742|32353", + ["text"] = "Allocates Swift Claw", ["type"] = "enchant", }, [848] = { - ["id"] = "enchant.stat_2954116742|56112", - ["text"] = "Allocates Extinguishing Exhalation", + ["id"] = "enchant.stat_2954116742|56714", + ["text"] = "Allocates Swift Flight", ["type"] = "enchant", }, [849] = { - ["id"] = "enchant.stat_2954116742|52568", - ["text"] = "Allocates Bond of the Owl", + ["id"] = "enchant.stat_2954116742|65265", + ["text"] = "Allocates Swift Interruption", ["type"] = "enchant", }, [850] = { - ["id"] = "enchant.stat_2954116742|31724", - ["text"] = "Allocates Iron Slippers", + ["id"] = "enchant.stat_2954116742|53367", + ["text"] = "Allocates Symbol of Defiance", ["type"] = "enchant", }, [851] = { - ["id"] = "enchant.stat_2954116742|25211", - ["text"] = "Allocates Waning Hindrances", + ["id"] = "enchant.stat_2954116742|17825", + ["text"] = "Allocates Tactical Retreat", ["type"] = "enchant", }, [852] = { - ["id"] = "enchant.stat_2954116742|57617", - ["text"] = "Allocates Shifted Strikes", + ["id"] = "enchant.stat_2954116742|22864", + ["text"] = "Allocates Tainted Strike", ["type"] = "enchant", }, [853] = { - ["id"] = "enchant.stat_2954116742|4810", - ["text"] = "Allocates Sanguine Tolerance", + ["id"] = "enchant.stat_2954116742|40213", + ["text"] = "Allocates Taste for Blood", ["type"] = "enchant", }, [854] = { - ["id"] = "enchant.stat_2954116742|56388", - ["text"] = "Allocates Reinforced Rallying", + ["id"] = "enchant.stat_2954116742|48774", + ["text"] = "Allocates Taut Flesh", ["type"] = "enchant", }, [855] = { - ["id"] = "enchant.stat_2954116742|20251", - ["text"] = "Allocates Splitting Ground", + ["id"] = "enchant.stat_2954116742|18157", + ["text"] = "Allocates Tempered Defences", ["type"] = "enchant", }, [856] = { - ["id"] = "enchant.stat_2954116742|50023", - ["text"] = "Allocates Invigorating Grandeur", + ["id"] = "enchant.stat_2954116742|8831", + ["text"] = "Allocates Tempered Mind", ["type"] = "enchant", }, [857] = { - ["id"] = "enchant.stat_2954116742|28408", - ["text"] = "Allocates Invigorating Hate", + ["id"] = "enchant.stat_2954116742|12412", + ["text"] = "Allocates Temporal Mastery", ["type"] = "enchant", }, [858] = { - ["id"] = "enchant.stat_2954116742|25361", - ["text"] = "Allocates Resolute Reach", + ["id"] = "enchant.stat_2954116742|25971", + ["text"] = "Allocates Tenfold Attacks", ["type"] = "enchant", }, [859] = { - ["id"] = "enchant.stat_2954116742|2745", - ["text"] = "Allocates The Noble Wolf", + ["id"] = "enchant.stat_2954116742|56666", + ["text"] = "Allocates Thaumaturgic Generator", ["type"] = "enchant", }, [860] = { - ["id"] = "enchant.stat_2954116742|26356", - ["text"] = "Allocates Primed to Explode", + ["id"] = "enchant.stat_2954116742|4544", + ["text"] = "Allocates The Ancient Serpent", ["type"] = "enchant", }, [861] = { - ["id"] = "enchant.stat_2954116742|45329", - ["text"] = "Allocates Delayed Danger", + ["id"] = "enchant.stat_2954116742|7847", + ["text"] = "Allocates The Fabled Stag", ["type"] = "enchant", }, [862] = { - ["id"] = "enchant.stat_2954116742|32448", - ["text"] = "Allocates Shockproof", + ["id"] = "enchant.stat_2954116742|34543", + ["text"] = "Allocates The Frenzied Bear", ["type"] = "enchant", }, [863] = { - ["id"] = "enchant.stat_2954116742|21784", - ["text"] = "Allocates Pack Encouragement", + ["id"] = "enchant.stat_2954116742|54031", + ["text"] = "Allocates The Great Boar", ["type"] = "enchant", }, [864] = { - ["id"] = "enchant.stat_2954116742|46182", - ["text"] = "Allocates Intense Dose", + ["id"] = "enchant.stat_2954116742|48734", + ["text"] = "Allocates The Howling Primate", ["type"] = "enchant", }, [865] = { - ["id"] = "enchant.stat_2954116742|23630", - ["text"] = "Allocates Self Immolation", + ["id"] = "enchant.stat_2954116742|28542", + ["text"] = "Allocates The Molten One's Gift", ["type"] = "enchant", }, [866] = { - ["id"] = "enchant.stat_2954116742|47420", - ["text"] = "Allocates Expendable Army", + ["id"] = "enchant.stat_2954116742|2745", + ["text"] = "Allocates The Noble Wolf", ["type"] = "enchant", }, [867] = { - ["id"] = "enchant.stat_2954116742|23244", - ["text"] = "Allocates Bounty Hunter", + ["id"] = "enchant.stat_2954116742|27176", + ["text"] = "Allocates The Power Within", ["type"] = "enchant", }, [868] = { - ["id"] = "enchant.stat_2954116742|30546", - ["text"] = "Allocates Electrified Claw", + ["id"] = "enchant.stat_2954116742|21349", + ["text"] = "Allocates The Quick Fox", ["type"] = "enchant", }, [869] = { - ["id"] = "enchant.stat_2954116742|9928", - ["text"] = "Allocates Embracing Frost", + ["id"] = "enchant.stat_2954116742|45370", + ["text"] = "Allocates The Raging Ox", ["type"] = "enchant", }, [870] = { - ["id"] = "enchant.stat_2954116742|48649", - ["text"] = "Allocates Insulating Hide", + ["id"] = "enchant.stat_2954116742|52971", + ["text"] = "Allocates The Soul Meridian", ["type"] = "enchant", }, [871] = { - ["id"] = "enchant.stat_2954116742|42660", - ["text"] = "Allocates Commanding Rage", + ["id"] = "enchant.stat_2954116742|11774", + ["text"] = "Allocates The Spring Hare", ["type"] = "enchant", }, [872] = { - ["id"] = "enchant.stat_2954116742|17725", - ["text"] = "Allocates Bonded Precision", + ["id"] = "enchant.stat_2954116742|22811", + ["text"] = "Allocates The Wild Cat", ["type"] = "enchant", }, [873] = { - ["id"] = "enchant.stat_2954116742|57921", - ["text"] = "Allocates Wolf's Howl", + ["id"] = "enchant.stat_2954116742|53185", + ["text"] = "Allocates The Winter Owl", ["type"] = "enchant", }, [874] = { - ["id"] = "enchant.stat_2954116742|15606", - ["text"] = "Allocates Thrill of the Fight", + ["id"] = "enchant.stat_2954116742|35849", + ["text"] = "Allocates Thickened Arteries", ["type"] = "enchant", }, [875] = { - ["id"] = "enchant.stat_2954116742|35618", - ["text"] = "Allocates Cold Coat", + ["id"] = "enchant.stat_2954116742|56893", + ["text"] = "Allocates Thicket Warding", ["type"] = "enchant", }, [876] = { - ["id"] = "enchant.stat_2954116742|10727", - ["text"] = "Allocates Emboldening Casts", + ["id"] = "enchant.stat_2954116742|19722", + ["text"] = "Allocates Thin Ice", ["type"] = "enchant", }, [877] = { - ["id"] = "enchant.stat_2954116742|42045", - ["text"] = "Allocates Archon of the Blizzard", + ["id"] = "enchant.stat_2954116742|59433", + ["text"] = "Allocates Thirst for Endurance", ["type"] = "enchant", }, [878] = { - ["id"] = "enchant.stat_2954116742|7449", - ["text"] = "Allocates Splinters", + ["id"] = "enchant.stat_2954116742|38532", + ["text"] = "Allocates Thirst for Power", ["type"] = "enchant", }, [879] = { - ["id"] = "enchant.stat_2954116742|40985", - ["text"] = "Allocates Empowering Remnants", + ["id"] = "enchant.stat_2954116742|17600", + ["text"] = "Allocates Thirsting Ally", ["type"] = "enchant", }, [880] = { - ["id"] = "enchant.stat_2954116742|59433", - ["text"] = "Allocates Thirst for Endurance", + ["id"] = "enchant.stat_2954116742|43711", + ["text"] = "Allocates Thornhide", ["type"] = "enchant", }, [881] = { - ["id"] = "enchant.stat_2954116742|20289", - ["text"] = "Allocates Frozen Claw", + ["id"] = "enchant.stat_2954116742|42714", + ["text"] = "Allocates Thousand Cuts", ["type"] = "enchant", }, [882] = { - ["id"] = "enchant.stat_2954116742|55817", - ["text"] = "Allocates Alchemical Oil", + ["id"] = "enchant.stat_2954116742|25711", + ["text"] = "Allocates Thrill of Battle", ["type"] = "enchant", }, [883] = { - ["id"] = "enchant.stat_2954116742|25753", - ["text"] = "Allocates Blazing Arms", + ["id"] = "enchant.stat_2954116742|15606", + ["text"] = "Allocates Thrill of the Fight", ["type"] = "enchant", }, [884] = { - ["id"] = "enchant.stat_2954116742|1861", - ["text"] = "Allocates Knight of Tarcus", + ["id"] = "enchant.stat_2954116742|56265", + ["text"] = "Allocates Throatseeker", ["type"] = "enchant", }, [885] = { - ["id"] = "enchant.stat_2954116742|13489", - ["text"] = "Allocates Unbreakable", + ["id"] = "enchant.stat_2954116742|63585", + ["text"] = "Allocates Thunderstruck", ["type"] = "enchant", }, [886] = { - ["id"] = "enchant.stat_2954116742|44753", - ["text"] = "Allocates One With Flame", + ["id"] = "enchant.stat_2954116742|42813", + ["text"] = "Allocates Tides of Change", ["type"] = "enchant", }, [887] = { - ["id"] = "enchant.stat_2954116742|55450", - ["text"] = "Allocates Rallying Form", + ["id"] = "enchant.stat_2954116742|24240", + ["text"] = "Allocates Time Manipulation", ["type"] = "enchant", }, [888] = { - ["id"] = "enchant.stat_2954116742|59781", - ["text"] = "Allocates Embodiment of Death", + ["id"] = "enchant.stat_2954116742|65160", + ["text"] = "Allocates Titanic", ["type"] = "enchant", }, [889] = { - ["id"] = "enchant.stat_2954116742|26479", - ["text"] = "Allocates Steadfast Resolve", + ["id"] = "enchant.stat_2954116742|2843", + ["text"] = "Allocates Tolerant Equipment", ["type"] = "enchant", }, [890] = { - ["id"] = "enchant.stat_2954116742|43250", - ["text"] = "Allocates Adaptive Skin", + ["id"] = "enchant.stat_2954116742|28482", + ["text"] = "Allocates Total Incineration", ["type"] = "enchant", }, [891] = { - ["id"] = "enchant.stat_2954116742|21251", - ["text"] = "Allocates Replenishing Horde", + ["id"] = "enchant.stat_2954116742|27626", + ["text"] = "Allocates Touch the Arcane", ["type"] = "enchant", }, [892] = { - ["id"] = "enchant.stat_2954116742|712", - ["text"] = "Allocates Bond of the Ape", + ["id"] = "enchant.stat_2954116742|53823", + ["text"] = "Allocates Towering Shield", ["type"] = "enchant", }, [893] = { - ["id"] = "enchant.stat_2954116742|16940", - ["text"] = "Allocates Arcane Nature", + ["id"] = "enchant.stat_2954116742|261", + ["text"] = "Allocates Toxic Sludge", ["type"] = "enchant", }, [894] = { - ["id"] = "enchant.stat_2954116742|18959", - ["text"] = "Allocates Ruinic Helm", + ["id"] = "enchant.stat_2954116742|2134", + ["text"] = "Allocates Toxic Tolerance", ["type"] = "enchant", }, [895] = { - ["id"] = "enchant.stat_2954116742|39884", - ["text"] = "Allocates Searing Heat", + ["id"] = "enchant.stat_2954116742|52180", + ["text"] = "Allocates Trained Deflection", ["type"] = "enchant", }, [896] = { - ["id"] = "enchant.stat_2954116742|14258", - ["text"] = "Allocates Puppet Master chance", + ["id"] = "enchant.stat_2954116742|57785", + ["text"] = "Allocates Trained Turrets", ["type"] = "enchant", }, [897] = { - ["id"] = "enchant.stat_2954116742|11184", - ["text"] = "Allocates Zarokh's Gift", + ["id"] = "enchant.stat_2954116742|750", + ["text"] = "Allocates Tribal Fury", ["type"] = "enchant", }, [898] = { - ["id"] = "enchant.stat_2954116742|61309", - ["text"] = "Allocates Redblade Discipline", + ["id"] = "enchant.stat_2954116742|23221", + ["text"] = "Allocates Trick Shot", ["type"] = "enchant", }, [899] = { - ["id"] = "enchant.stat_2954116742|1420", - ["text"] = "Allocates Dizzying Sweep", + ["id"] = "enchant.stat_2954116742|61601", + ["text"] = "Allocates True Strike", ["type"] = "enchant", }, [900] = { - ["id"] = "enchant.stat_2954116742|21213", - ["text"] = "Allocates Cirel of Tarth's Light", + ["id"] = "enchant.stat_2954116742|53131", + ["text"] = "Allocates Tukohama's Brew", ["type"] = "enchant", }, [901] = { - ["id"] = "enchant.stat_2954116742|56666", - ["text"] = "Allocates Thaumaturgic Generator", + ["id"] = "enchant.stat_2954116742|35564", + ["text"] = "Allocates Turn the Clock Back", ["type"] = "enchant", }, [902] = { - ["id"] = "enchant.stat_2954116742|9323", - ["text"] = "Allocates Craving Slaughter", + ["id"] = "enchant.stat_2954116742|2335", + ["text"] = "Allocates Turn the Clock Forward", ["type"] = "enchant", }, [903] = { - ["id"] = "enchant.stat_2954116742|32858", - ["text"] = "Allocates Dread Engineer's Concoction", + ["id"] = "enchant.stat_2954116742|1352", + ["text"] = "Allocates Unbending", ["type"] = "enchant", }, [904] = { - ["id"] = "enchant.stat_2954116742|59938", - ["text"] = "Allocates Against the Elements", + ["id"] = "enchant.stat_2954116742|4579", + ["text"] = "Allocates Unbothering Cold", ["type"] = "enchant", }, [905] = { - ["id"] = "enchant.stat_2954116742|49356", - ["text"] = "Allocates First Principle of the Hollow", + ["id"] = "enchant.stat_2954116742|64543", + ["text"] = "Allocates Unbound Forces", ["type"] = "enchant", }, [906] = { - ["id"] = "enchant.stat_2954116742|22726", - ["text"] = "Allocates Storm's Rebuke", + ["id"] = "enchant.stat_2954116742|13489", + ["text"] = "Allocates Unbreakable", ["type"] = "enchant", }, [907] = { - ["id"] = "enchant.stat_2954116742|1506", - ["text"] = "Allocates Remnant Attraction", + ["id"] = "enchant.stat_2954116742|53921", + ["text"] = "Allocates Unbreaking", ["type"] = "enchant", }, [908] = { - ["id"] = "enchant.stat_2954116742|59657", - ["text"] = "Allocates First Teachings of the Keeper", + ["id"] = "enchant.stat_2954116742|38888", + ["text"] = "Allocates Unerring Impact", ["type"] = "enchant", }, [909] = { - ["id"] = "enchant.stat_2954116742|33542", - ["text"] = "Allocates Quick Fingers", + ["id"] = "enchant.stat_2954116742|31189", + ["text"] = "Allocates Unexpected Finesse", ["type"] = "enchant", }, [910] = { - ["id"] = "enchant.stat_2954116742|47853", - ["text"] = "Allocates Bond of the Mamba", + ["id"] = "enchant.stat_2954116742|10169", + ["text"] = "Allocates Unfettered", ["type"] = "enchant", }, [911] = { - ["id"] = "enchant.stat_2954116742|17696", - ["text"] = "Allocates Augmented Flesh", + ["id"] = "enchant.stat_2954116742|8881", + ["text"] = "Allocates Unforgiving", ["type"] = "enchant", }, [912] = { - ["id"] = "enchant.stat_2954116742|44974", - ["text"] = "Allocates Hail", + ["id"] = "enchant.stat_2954116742|32543", + ["text"] = "Allocates Unhindered", ["type"] = "enchant", }, [913] = { - ["id"] = "enchant.stat_2954116742|32932", - ["text"] = "Allocates Ichlotl's Inferno", + ["id"] = "enchant.stat_2954116742|51394", + ["text"] = "Allocates Unimpeded", ["type"] = "enchant", }, [914] = { - ["id"] = "enchant.stat_2954116742|59438", - ["text"] = "Allocates Flow of Life", + ["id"] = "enchant.stat_2954116742|20008", + ["text"] = "Allocates Unleash Fire", ["type"] = "enchant", }, [915] = { - ["id"] = "enchant.stat_2954116742|42070", - ["text"] = "Allocates Saqawal's Guidance", + ["id"] = "enchant.stat_2954116742|4547", + ["text"] = "Allocates Unnatural Resilience", ["type"] = "enchant", }, [916] = { - ["id"] = "enchant.stat_2954116742|59387", - ["text"] = "Allocates Infusion of Power", + ["id"] = "enchant.stat_2954116742|51602", + ["text"] = "Allocates Unsight", ["type"] = "enchant", }, [917] = { - ["id"] = "enchant.stat_2954116742|7542", - ["text"] = "Allocates Encompassing Domain", + ["id"] = "enchant.stat_2954116742|33585", + ["text"] = "Allocates Unspoken Bond", ["type"] = "enchant", }, [918] = { - ["id"] = "enchant.stat_2954116742|15825", - ["text"] = "Allocates Bhatair's Storm", + ["id"] = "enchant.stat_2954116742|18485", + ["text"] = "Allocates Unstable Bond", ["type"] = "enchant", }, [919] = { - ["id"] = "enchant.stat_2954116742|45777", - ["text"] = "Allocates Hidden Barb", + ["id"] = "enchant.stat_2954116742|33978", + ["text"] = "Allocates Unstoppable Barrier", ["type"] = "enchant", }, [920] = { - ["id"] = "enchant.stat_2954116742|58894", - ["text"] = "Allocates Dominus' Providence", + ["id"] = "enchant.stat_2954116742|10774", + ["text"] = "Allocates Unyielding", ["type"] = "enchant", }, [921] = { - ["id"] = "enchant.stat_2954116742|39911", - ["text"] = "Allocates Frantic Reach", + ["id"] = "enchant.stat_2954116742|1169", + ["text"] = "Allocates Urgent Call", ["type"] = "enchant", }, [922] = { - ["id"] = "enchant.stat_2954116742|7128", - ["text"] = "Allocates Dangerous Blossom", + ["id"] = "enchant.stat_2954116742|17303", + ["text"] = "Allocates Utility Ordnance", ["type"] = "enchant", }, [923] = { - ["id"] = "enchant.stat_2954116742|2344", - ["text"] = "Allocates Dimensional Weakspot", + ["id"] = "enchant.stat_2954116742|41033", + ["text"] = "Allocates Utmost Offering", ["type"] = "enchant", }, [924] = { - ["id"] = "enchant.stat_2954116742|13844", - ["text"] = "Allocates Growing Peril", + ["id"] = "enchant.stat_2954116742|12750", + ["text"] = "Allocates Vale Shelter", ["type"] = "enchant", }, [925] = { - ["id"] = "enchant.stat_2954116742|26104", - ["text"] = "Allocates Spirit of the Wyvern", + ["id"] = "enchant.stat_2954116742|17762", + ["text"] = "Allocates Vengeance", ["type"] = "enchant", }, [926] = { - ["id"] = "enchant.stat_2954116742|62431", - ["text"] = "Allocates Anticipation", + ["id"] = "enchant.stat_2954116742|54937", + ["text"] = "Allocates Vengeful Fury", ["type"] = "enchant", }, [927] = { - ["id"] = "enchant.stat_2954116742|41620", - ["text"] = "Allocates Bear's Roar", + ["id"] = "enchant.stat_2954116742|4238", + ["text"] = "Allocates Versatile Arms", ["type"] = "enchant", }, [928] = { - ["id"] = "enchant.stat_2954116742|48925", - ["text"] = "Allocates Blessing of the Moon", + ["id"] = "enchant.stat_2954116742|65193", + ["text"] = "Allocates Viciousness", ["type"] = "enchant", }, [929] = { - ["id"] = "enchant.stat_2954116742|5191", - ["text"] = "Allocates Bond of the Wolf", + ["id"] = "enchant.stat_2954116742|22967", + ["text"] = "Allocates Vigilance", ["type"] = "enchant", }, [930] = { - ["id"] = "enchant.stat_2954116742|36100", - ["text"] = "Allocates Molten Claw", + ["id"] = "enchant.stat_2954116742|63739", + ["text"] = "Allocates Vigorous Remnants", ["type"] = "enchant", }, [931] = { - ["id"] = "enchant.stat_2954116742|11886", - ["text"] = "Allocates Mauling Stuns", + ["id"] = "enchant.stat_2954116742|36507", + ["text"] = "Allocates Vile Mending", ["type"] = "enchant", }, [932] = { - ["id"] = "enchant.stat_2954116742|9535", - ["text"] = "Allocates Brinerot Ferocity", + ["id"] = "enchant.stat_2954116742|31373", + ["text"] = "Allocates Vocal Empowerment", ["type"] = "enchant", }, [933] = { - ["id"] = "enchant.stat_2954116742|55308", - ["text"] = "Allocates Sling Shots", + ["id"] = "enchant.stat_2954116742|3492", + ["text"] = "Allocates Void", ["type"] = "enchant", }, [934] = { - ["id"] = "enchant.stat_2954116742|31955", - ["text"] = "Allocates Voll's Protection", + ["id"] = "enchant.stat_2954116742|17882", + ["text"] = "Allocates Volatile Grenades", ["type"] = "enchant", }, [935] = { - ["id"] = "enchant.stat_2954116742|261", - ["text"] = "Allocates Toxic Sludge", + ["id"] = "enchant.stat_2954116742|11366", + ["text"] = "Allocates Volcanic Skin", ["type"] = "enchant", }, [936] = { - ["id"] = "enchant.stat_2954116742|26214", - ["text"] = "Allocates Dominion", + ["id"] = "enchant.stat_2954116742|31955", + ["text"] = "Allocates Voll's Protection", ["type"] = "enchant", }, [937] = { - ["id"] = "enchant.stat_2954116742|16142", - ["text"] = "Allocates Deep Freeze", + ["id"] = "enchant.stat_2954116742|46060", + ["text"] = "Allocates Voracious", ["type"] = "enchant", }, [938] = { - ["id"] = "enchant.stat_2954116742|32128", - ["text"] = "Allocates Flow of Time", + ["id"] = "enchant.stat_2954116742|27303", + ["text"] = "Allocates Vulgar Methods", ["type"] = "enchant", }, [939] = { - ["id"] = "enchant.stat_2017682521", - ["text"] = "#% increased Pack Size", + ["id"] = "enchant.stat_2954116742|25211", + ["text"] = "Allocates Waning Hindrances", ["type"] = "enchant", }, [940] = { - ["id"] = "enchant.stat_2954116742|56237", - ["text"] = "Allocates Enhancing Attacks", + ["id"] = "enchant.stat_2954116742|31925", + ["text"] = "Allocates Warding Fetish", ["type"] = "enchant", }, [941] = { - ["id"] = "enchant.stat_2954116742|8916", - ["text"] = "Allocates Bashing Beast", + ["id"] = "enchant.stat_2954116742|47418", + ["text"] = "Allocates Warding Potions", ["type"] = "enchant", }, [942] = { - ["id"] = "enchant.stat_2954116742|29881", - ["text"] = "Allocates Surging Beast", + ["id"] = "enchant.stat_2954116742|53187", + ["text"] = "Allocates Warlord Berserker", ["type"] = "enchant", }, [943] = { - ["id"] = "enchant.stat_2954116742|55375", - ["text"] = "Allocates Licking Wounds", + ["id"] = "enchant.stat_2954116742|14761", + ["text"] = "Allocates Warlord Leader", ["type"] = "enchant", }, [944] = { - ["id"] = "enchant.stat_2954116742|35417", - ["text"] = "Allocates Wyvern's Breath", + ["id"] = "enchant.stat_2954116742|12998", + ["text"] = "Allocates Warm the Heart", ["type"] = "enchant", }, [945] = { - ["id"] = "enchant.stat_2954116742|28892", - ["text"] = "Allocates Primal Rage", + ["id"] = "enchant.stat_2954116742|64650", + ["text"] = "Allocates Wary Dodging", ["type"] = "enchant", }, [946] = { - ["id"] = "enchant.stat_2954116742|20558", - ["text"] = "Allocates Among the Hordes", + ["id"] = "enchant.stat_2954116742|51213", + ["text"] = "Allocates Wasting", ["type"] = "enchant", }, [947] = { - ["id"] = "enchant.stat_2954116742|9328", - ["text"] = "Allocates Spirit of the Bear", + ["id"] = "enchant.stat_2954116742|61444", + ["text"] = "Allocates Wasting Casts", ["type"] = "enchant", }, [948] = { - ["id"] = "enchant.stat_3793155082", - ["text"] = "#% increased Rare Monsters", + ["id"] = "enchant.stat_2954116742|5580", + ["text"] = "Allocates Watchtowers", ["type"] = "enchant", }, [949] = { - ["id"] = "enchant.stat_2954116742|15114", - ["text"] = "Allocates Boundless Growth", + ["id"] = "enchant.stat_2954116742|51509", + ["text"] = "Allocates Waters of Life", ["type"] = "enchant", }, [950] = { - ["id"] = "enchant.stat_2954116742|38532", - ["text"] = "Allocates Thirst for Power", + ["id"] = "enchant.stat_2954116742|58198", + ["text"] = "Allocates Well of Power", ["type"] = "enchant", }, [951] = { - ["id"] = "enchant.stat_2954116742|2814", - ["text"] = "Allocates Engineered Blaze", + ["id"] = "enchant.stat_2954116742|2021", + ["text"] = "Allocates Wellspring", ["type"] = "enchant", }, [952] = { - ["id"] = "enchant.stat_2954116742|1502", - ["text"] = "Allocates Draiocht Cleansing", + ["id"] = "enchant.stat_2954116742|37514", + ["text"] = "Allocates Whirling Assault", ["type"] = "enchant", }, [953] = { - ["id"] = "enchant.stat_2954116742|43584", - ["text"] = "Allocates Flare", + ["id"] = "enchant.stat_2954116742|46384", + ["text"] = "Allocates Wide Barrier", ["type"] = "enchant", }, [954] = { - ["id"] = "enchant.stat_2954116742|37967", - ["text"] = "Allocates Desert's Scorn", + ["id"] = "enchant.stat_2954116742|65256", + ["text"] = "Allocates Widespread Coverage", ["type"] = "enchant", }, [955] = { - ["id"] = "enchant.stat_2954116742|60619", - ["text"] = "Allocates Scales of the Wyvern", + ["id"] = "enchant.stat_2954116742|7809", + ["text"] = "Allocates Wild Storm", ["type"] = "enchant", }, [956] = { - ["id"] = "enchant.stat_2306002879", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "enchant.stat_2954116742|44373", + ["text"] = "Allocates Wither Away", ["type"] = "enchant", }, [957] = { - ["id"] = "enchant.stat_3873704640", - ["text"] = "#% increased Magic Monsters", + ["id"] = "enchant.stat_2954116742|57921", + ["text"] = "Allocates Wolf's Howl", ["type"] = "enchant", }, [958] = { - ["id"] = "enchant.stat_2954116742|33730", - ["text"] = "Allocates Focused Channel", + ["id"] = "enchant.stat_2954116742|62803", + ["text"] = "Allocates Woodland Aspect", ["type"] = "enchant", }, [959] = { - ["id"] = "enchant.stat_2954116742|53265", - ["text"] = "Allocates Nature's Bite", + ["id"] = "enchant.stat_2954116742|30132", + ["text"] = "Allocates Wrapped Quiver", ["type"] = "enchant", }, [960] = { - ["id"] = "enchant.stat_2954116742|24736", - ["text"] = "Allocates Knight of Chitus", + ["id"] = "enchant.stat_2954116742|35417", + ["text"] = "Allocates Wyvern's Breath", ["type"] = "enchant", }, [961] = { - ["id"] = "enchant.stat_2954116742|47560", - ["text"] = "Allocates Multi Shot", + ["id"] = "enchant.stat_2954116742|11184", + ["text"] = "Allocates Zarokh's Gift", ["type"] = "enchant", }, [962] = { - ["id"] = "enchant.stat_2954116742|45874", - ["text"] = "Allocates Proliferating Weeds", + ["id"] = "enchant.stat_2954116742|50485", + ["text"] = "Allocates Zone of Control", ["type"] = "enchant", }, [963] = { - ["id"] = "enchant.stat_2954116742|12245", - ["text"] = "Allocates Arsonist", + ["id"] = "enchant.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "enchant", }, [964] = { - ["id"] = "enchant.stat_2954116742|56714", - ["text"] = "Allocates Swift Flight", + ["id"] = "enchant.stat_1776411443", + ["text"] = "Break #% increased Armour", ["type"] = "enchant", }, [965] = { - ["id"] = "enchant.stat_2954116742|38329", - ["text"] = "Allocates Biting Frost", + ["id"] = "enchant.stat_1436284579", + ["text"] = "Cannot be Blinded", ["type"] = "enchant", }, [966] = { - ["id"] = "enchant.stat_2954116742|26926", - ["text"] = "Allocates Archon of Undeath", + ["id"] = "enchant.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", ["type"] = "enchant", }, [967] = { - ["id"] = "enchant.stat_2954116742|9009", - ["text"] = "Allocates Return to Nature", + ["id"] = "enchant.stat_185580205", + ["text"] = "Charms gain # charge per Second", ["type"] = "enchant", }, [968] = { - ["id"] = "enchant.stat_2954116742|54640", - ["text"] = "Allocates Constricting", + ["id"] = "enchant.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", ["type"] = "enchant", }, [969] = { - ["id"] = "enchant.stat_2954116742|44573", - ["text"] = "Allocates Disciplined Training", + ["id"] = "enchant.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "enchant", }, [970] = { - ["id"] = "enchant.stat_2954116742|30395", - ["text"] = "Allocates Howling Beast", + ["id"] = "enchant.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "enchant", }, [971] = { - ["id"] = "enchant.stat_2954116742|3348", - ["text"] = "Allocates Spirit of the Wolf", + ["id"] = "enchant.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "enchant", }, [972] = { - ["id"] = "enchant.stat_2954116742|64770", - ["text"] = "Allocates Morgana, the Storm Seer", + ["id"] = "enchant.stat_3650992555", + ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", ["type"] = "enchant", }, [973] = { - ["id"] = "enchant.stat_2954116742|50239", - ["text"] = "Allocates Mutewind Agility", + ["id"] = "enchant.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", ["type"] = "enchant", }, [974] = { - ["id"] = "enchant.stat_2954116742|35743", - ["text"] = "Allocates Saqawal's Hide", + ["id"] = "enchant.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", ["type"] = "enchant", }, [975] = { - ["id"] = "enchant.stat_2954116742|37846", - ["text"] = "Allocates Bastion of Light", + ["id"] = "enchant.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "enchant", }, [976] = { - ["id"] = "enchant.stat_2954116742|39568", - ["text"] = "Allocates Magnum Opus", + ["id"] = "enchant.stat_1725749947", + ["text"] = "Grants # Rage on Hit", ["type"] = "enchant", }, [977] = { - ["id"] = "enchant.stat_2954116742|9863", - ["text"] = "Allocates Knight of Izaro", + ["id"] = "enchant.stat_3429557654", + ["text"] = "Immune to Maim", ["type"] = "enchant", }, [978] = { - ["id"] = "enchant.stat_2954116742|10169", - ["text"] = "Allocates Unfettered", + ["id"] = "enchant.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", ["type"] = "enchant", }, [979] = { - ["id"] = "enchant.stat_2954116742|34617", - ["text"] = "Allocates Conall the Hunted", + ["id"] = "enchant.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", ["type"] = "enchant", }, [980] = { - ["id"] = "enchant.stat_2954116742|20686", - ["text"] = "Allocates Paragon", + ["id"] = "enchant.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", ["type"] = "enchant", }, [981] = { - ["id"] = "enchant.stat_2954116742|35046", - ["text"] = "Allocates Mystic Avalanche", + ["id"] = "enchant.stat_1967051901", + ["text"] = "Loads an additional bolt", ["type"] = "enchant", }, [982] = { - ["id"] = "enchant.stat_2954116742|62210", - ["text"] = "Allocates Puppet Master chance", + ["id"] = "enchant.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", ["type"] = "enchant", }, [983] = { - ["id"] = "enchant.stat_2954116742|20495", - ["text"] = "Allocates Dark Entropy", + ["id"] = "enchant.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "enchant", }, [984] = { - ["id"] = "enchant.stat_2954116742|27704", - ["text"] = "Allocates Grace of the Ancestors", + ["id"] = "enchant.stat_1715784068", + ["text"] = "Players in Area are #% Delirious", ["type"] = "enchant", }, [985] = { - ["id"] = "enchant.stat_2954116742|1448", - ["text"] = "Allocates Bond of the Cat", + ["id"] = "enchant.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "enchant", }, [986] = { - ["id"] = "enchant.stat_2954116742|4091", - ["text"] = "Allocates Left Ventricle", + ["id"] = "enchant.stat_3732878551", + ["text"] = "Rare Monsters have a #% Surpassing chance to have an additional Modifier", ["type"] = "enchant", }, [987] = { - ["id"] = "enchant.stat_2954116742|33400", - ["text"] = "Allocates Reverberating Parry", + ["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_2954116742|27779", - ["text"] = "Allocates Lord of the Squall", + ["id"] = "enchant.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", ["type"] = "enchant", }, [989] = { - ["id"] = "enchant.stat_2954116742|34478", - ["text"] = "Allocates Bond of the Viper", + ["id"] = "enchant.stat_3371085671", + ["text"] = "Unique Monsters have # additional Rare Modifier", ["type"] = "enchant", }, [990] = { - ["id"] = "enchant.stat_2954116742|62237", - ["text"] = "Allocates Saqawal's Talon", + ["id"] = "enchant.stat_3371085671", + ["text"] = "Unique Monsters in your Maps have # additional Rare Modifier", ["type"] = "enchant", }, [991] = { - ["id"] = "enchant.stat_2954116742|3663", - ["text"] = "Allocates Kaom's Blessing", + ["id"] = "enchant.stat_721014846", + ["text"] = "You cannot be Hindered", ["type"] = "enchant", }, }, @@ -27703,1528 +27727,1528 @@ return { [7] = { ["entries"] = { [1] = { - ["id"] = "rune.stat_2280525771", - ["text"] = "Bonded: # to maximum Life", + ["id"] = "rune.stat_554899692", + ["text"] = "# Charm Slot (Global)", ["type"] = "augment", }, [2] = { - ["id"] = "rune.stat_2926029365", - ["text"] = "Bonded: # to maximum Mana", + ["id"] = "rune.stat_718638445", + ["text"] = "# Suffix Modifier allowed", ["type"] = "augment", }, [3] = { - ["id"] = "rune.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["id"] = "rune.stat_258119672", + ["text"] = "# metre to Dodge Roll distance", ["type"] = "augment", }, [4] = { - ["id"] = "rune.stat_1039491398", - ["text"] = "Bonded: #% increased effect of Fully Broken Armour", + ["id"] = "rune.stat_757050353", + ["text"] = "# to # Lightning Thorns damage", ["type"] = "augment", }, [5] = { - ["id"] = "rune.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "rune.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", ["type"] = "augment", }, [6] = { - ["id"] = "rune.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "rune.stat_687156079", + ["text"] = "# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", ["type"] = "augment", }, [7] = { - ["id"] = "rune.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "rune.stat_3484657501", + ["text"] = "# to Armour (Local)", ["type"] = "augment", }, [8] = { - ["id"] = "rune.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "rune.stat_1197632982", + ["text"] = "# to Armour per 1 Spirit", ["type"] = "augment", }, [9] = { - ["id"] = "rune.stat_2430860292", - ["text"] = "Bonded: #% increased Magnitude of Shock you inflict", + ["id"] = "rune.stat_3261801346", + ["text"] = "# to Dexterity", ["type"] = "augment", }, [10] = { - ["id"] = "rune.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "rune.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", ["type"] = "augment", }, [11] = { - ["id"] = "rune.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["id"] = "rune.stat_328541901", + ["text"] = "# to Intelligence", ["type"] = "augment", }, [12] = { - ["id"] = "rune.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "rune.stat_124131830", + ["text"] = "# to Level of all Spell Skills", ["type"] = "augment", }, [13] = { - ["id"] = "rune.stat_1817052494", - ["text"] = "Bonded: #% increased Freeze Buildup", + ["id"] = "rune.stat_1181501418", + ["text"] = "# to Maximum Rage", ["type"] = "augment", }, [14] = { - ["id"] = "rune.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["id"] = "rune.stat_3981240776", + ["text"] = "# to Spirit", ["type"] = "augment", }, [15] = { - ["id"] = "rune.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "rune.stat_2704225257", + ["text"] = "# to Spirit", ["type"] = "augment", }, [16] = { - ["id"] = "rune.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "rune.stat_610569665", + ["text"] = "# to Spirit per 2 Levels", ["type"] = "augment", }, [17] = { - ["id"] = "rune.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", + ["id"] = "rune.stat_1073847159", + ["text"] = "# to Spirit per Idol socketed in your Equipment", ["type"] = "augment", }, [18] = { - ["id"] = "rune.stat_1857162058", - ["text"] = "Bonded: #% increased Ignite Magnitude", + ["id"] = "rune.stat_4080418644", + ["text"] = "# to Strength", ["type"] = "augment", }, [19] = { - ["id"] = "rune.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "rune.stat_915769802", + ["text"] = "# to Stun Threshold", ["type"] = "augment", }, [20] = { - ["id"] = "rune.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", + ["id"] = "rune.stat_2897413282", + ["text"] = "# to all Attributes", ["type"] = "augment", }, [21] = { - ["id"] = "rune.stat_709508406", - ["text"] = "Adds # to # Fire Damage", + ["id"] = "rune.stat_3489782002", + ["text"] = "# to maximum Energy Shield", ["type"] = "augment", }, [22] = { - ["id"] = "rune.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "rune.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "augment", }, [23] = { - ["id"] = "rune.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "rune.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "augment", }, [24] = { - ["id"] = "rune.stat_3990135792", - ["text"] = "Bonded: Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", + ["id"] = "rune.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "augment", }, [25] = { - ["id"] = "rune.stat_2310741722", - ["text"] = "#% increased Life and Mana Recovery from Flasks", + ["id"] = "rune.stat_280497929", + ["text"] = "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", ["type"] = "augment", }, [26] = { - ["id"] = "rune.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", + ["id"] = "rune.stat_774059442", + ["text"] = "# to maximum Runic Ward", ["type"] = "augment", }, [27] = { - ["id"] = "rune.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "rune.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", ["type"] = "augment", }, [28] = { - ["id"] = "rune.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "rune.stat_2045949233", + ["text"] = "#% chance for Slam Skills you use yourself to cause an additional Aftershock", ["type"] = "augment", }, [29] = { - ["id"] = "rune.stat_4064396395", - ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["id"] = "rune.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", ["type"] = "augment", }, [30] = { - ["id"] = "rune.stat_2246411426", - ["text"] = "Bonded: #% increased maximum Life", + ["id"] = "rune.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", ["type"] = "augment", }, [31] = { - ["id"] = "rune.stat_55876295", - ["text"] = "Leeches #% of Physical Damage as Life", + ["id"] = "rune.stat_4258524206", + ["text"] = "#% chance to build an additional Combo on Hit", ["type"] = "augment", }, [32] = { - ["id"] = "rune.stat_1586906534", - ["text"] = "Bonded: #% increased maximum Mana", + ["id"] = "rune.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", ["type"] = "augment", }, [33] = { - ["id"] = "rune.stat_669069897", - ["text"] = "Leeches #% of Physical Damage as Mana", + ["id"] = "rune.stat_2328443419", + ["text"] = "#% chance to create an additional Remnant", ["type"] = "augment", }, [34] = { - ["id"] = "rune.stat_328541901", - ["text"] = "# to Intelligence", + ["id"] = "rune.stat_1555237944", + ["text"] = "#% chance when you gain a Charge to gain an additional Charge", ["type"] = "augment", }, [35] = { - ["id"] = "rune.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "rune.stat_2916861134", + ["text"] = "#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", ["type"] = "augment", }, [36] = { - ["id"] = "rune.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "rune.stat_3537994888", + ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", ["type"] = "augment", }, [37] = { - ["id"] = "rune.stat_3788647247", - ["text"] = "Bonded: #% to Maximum Lightning Resistance", + ["id"] = "rune.stat_1228682002", + ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", ["type"] = "augment", }, [38] = { - ["id"] = "rune.stat_859085781", - ["text"] = "Bonded: Attacks have #% to Critical Hit Chance", + ["id"] = "rune.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "augment", }, [39] = { - ["id"] = "rune.stat_90012347", - ["text"] = "Adds # to # Lightning Damage against Shocked Enemies", + ["id"] = "rune.stat_624954515", + ["text"] = "#% increased Accuracy Rating", ["type"] = "augment", }, [40] = { - ["id"] = "rune.stat_691932474", - ["text"] = "# to Accuracy Rating (Local)", + ["id"] = "rune.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "augment", }, [41] = { - ["id"] = "rune.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", + ["id"] = "rune.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", ["type"] = "augment", }, [42] = { - ["id"] = "rune.stat_731403740", - ["text"] = "Gain #% of Damage as Extra Damage of all Elements", + ["id"] = "rune.stat_1392112423", + ["text"] = "#% increased Armour and Evasion Rating while on Low Runic Ward", ["type"] = "augment", }, [43] = { - ["id"] = "rune.stat_3823333703", - ["text"] = "Bonded: #% increased Damage against Immobilised Enemies", + ["id"] = "rune.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", ["type"] = "augment", }, [44] = { - ["id"] = "rune.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["id"] = "rune.stat_2829985691", + ["text"] = "#% increased Armour, Evasion and Energy Shield while your Companion is in your Presence", ["type"] = "augment", }, [45] = { - ["id"] = "rune.stat_915769802", - ["text"] = "# to Stun Threshold", + ["id"] = "rune.stat_2077615515", + ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", ["type"] = "augment", }, [46] = { - ["id"] = "rune.stat_975988108", - ["text"] = "Bonded: Archon recovery period expires #% faster", + ["id"] = "rune.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "augment", }, [47] = { - ["id"] = "rune.stat_124131830", - ["text"] = "# to Level of all Spell Skills", + ["id"] = "rune.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "augment", }, [48] = { - ["id"] = "rune.stat_1981392722", - ["text"] = "Bonded: Regenerate #% of maximum Life per second", + ["id"] = "rune.stat_3203854378", + ["text"] = "#% increased Attack Speed if you have Blocked Recently", ["type"] = "augment", }, [49] = { - ["id"] = "rune.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", + ["id"] = "rune.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", ["type"] = "augment", }, [50] = { - ["id"] = "rune.stat_2561960218", - ["text"] = "Bonded: #% of Skill Mana Costs Converted to Life Costs", + ["id"] = "rune.stat_3087034595", + ["text"] = "#% increased Block chance while your Companion is in your Presence", ["type"] = "augment", }, [51] = { - ["id"] = "rune.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", + ["id"] = "rune.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "augment", }, [52] = { - ["id"] = "rune.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", + ["id"] = "rune.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", ["type"] = "augment", }, [53] = { - ["id"] = "rune.stat_2913012734", - ["text"] = "Convert #% of Requirements to Intelligence", + ["id"] = "rune.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "augment", }, [54] = { - ["id"] = "rune.stat_1712188793", - ["text"] = "Bonded: #% chance to gain an additional random Charge when you gain a Charge", + ["id"] = "rune.stat_263495202", + ["text"] = "#% increased Cost Efficiency", ["type"] = "augment", }, [55] = { - ["id"] = "rune.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["id"] = "rune.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", ["type"] = "augment", }, [56] = { - ["id"] = "rune.stat_232299587", - ["text"] = "Bonded: #% increased Cooldown Recovery Rate", + ["id"] = "rune.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "augment", }, [57] = { - ["id"] = "rune.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "rune.stat_3824372849", + ["text"] = "#% increased Curse Duration", ["type"] = "augment", }, [58] = { - ["id"] = "rune.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "rune.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", ["type"] = "augment", }, [59] = { - ["id"] = "rune.stat_2546200564", - ["text"] = "Bonded: #% increased Duration of Elemental Ailments on Enemies", + ["id"] = "rune.stat_3151560620", + ["text"] = "#% increased Damage per each different Companion in your Presence", ["type"] = "augment", }, [60] = { - ["id"] = "rune.stat_4221147896", - ["text"] = "Bonded: #% increased Critical Damage Bonus", + ["id"] = "rune.stat_3040571529", + ["text"] = "#% increased Deflection Rating", ["type"] = "augment", }, [61] = { - ["id"] = "rune.stat_165746512", - ["text"] = "Bonded: #% increased Slowing Potency of Debuffs on You", + ["id"] = "rune.stat_1382805233", + ["text"] = "#% increased Deflection Rating while moving", ["type"] = "augment", }, [62] = { - ["id"] = "rune.stat_3981240776", - ["text"] = "# to Spirit", + ["id"] = "rune.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", ["type"] = "augment", }, [63] = { - ["id"] = "rune.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["id"] = "rune.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", ["type"] = "augment", }, [64] = { - ["id"] = "rune.stat_1482283017", - ["text"] = "Bonded: Fissure Skills have +# to Limit", + ["id"] = "rune.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "augment", }, [65] = { - ["id"] = "rune.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", + ["id"] = "rune.stat_3666934677", + ["text"] = "#% increased Experience gain", ["type"] = "augment", }, [66] = { - ["id"] = "rune.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["id"] = "rune.stat_2074866941", + ["text"] = "#% increased Exposure Effect", ["type"] = "augment", }, [67] = { - ["id"] = "rune.stat_3984865854", - ["text"] = "#% increased Spirit", + ["id"] = "rune.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", ["type"] = "augment", }, [68] = { - ["id"] = "rune.stat_3738367433", - ["text"] = "Bonded: Adds # to # Physical Damage to Attacks", + ["id"] = "rune.stat_473429811", + ["text"] = "#% increased Freeze Buildup", ["type"] = "augment", }, [69] = { - ["id"] = "rune.stat_3412619569", - ["text"] = "Bonded: #% increased Damage while Shapeshifted", + ["id"] = "rune.stat_3143918757", + ["text"] = "#% increased Glory generation", ["type"] = "augment", }, [70] = { - ["id"] = "rune.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", + ["id"] = "rune.stat_330530785", + ["text"] = "#% increased Immobilisation buildup", ["type"] = "augment", }, [71] = { - ["id"] = "rune.stat_1611856026", - ["text"] = "Bonded: Minions have #% increased Cooldown Recovery Rate for Command Skills", + ["id"] = "rune.stat_310945763", + ["text"] = "#% increased Life Cost Efficiency", ["type"] = "augment", }, [72] = { - ["id"] = "rune.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["id"] = "rune.stat_2310741722", + ["text"] = "#% increased Life and Mana Recovery from Flasks", ["type"] = "augment", }, [73] = { - ["id"] = "rune.stat_3909696841", - ["text"] = "Bonded: #% chance when collecting an Elemental Infusion to gain anadditional Elemental Infusion of the same type", + ["id"] = "rune.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", ["type"] = "augment", }, [74] = { - ["id"] = "rune.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", + ["id"] = "rune.stat_1381474422", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", ["type"] = "augment", }, [75] = { - ["id"] = "rune.stat_293638271", - ["text"] = "#% increased chance to Shock", + ["id"] = "rune.stat_782230869", + ["text"] = "#% increased Magnitude of Non-Damaging Ailments you inflict", ["type"] = "augment", }, [76] = { - ["id"] = "rune.stat_2077615515", - ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", + ["id"] = "rune.stat_2876843277", + ["text"] = "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", ["type"] = "augment", }, [77] = { - ["id"] = "rune.stat_635535560", - ["text"] = "Bonded: Gain #% of Damage as Extra Physical Damage", + ["id"] = "rune.stat_553018427", + ["text"] = "#% increased Mana Cost Efficiency of Command Skills", ["type"] = "augment", }, [78] = { - ["id"] = "rune.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["id"] = "rune.stat_1779262102", + ["text"] = "#% increased Mana Recovery rate while your Companion is in your Presence", ["type"] = "augment", }, [79] = { - ["id"] = "rune.stat_532897212", - ["text"] = "Bonded: #% increased Mana Cost Efficiency while on Low Mana", + ["id"] = "rune.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "augment", }, [80] = { - ["id"] = "rune.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "rune.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "augment", }, [81] = { - ["id"] = "rune.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", + ["id"] = "rune.stat_2590797182", + ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", ["type"] = "augment", }, [82] = { - ["id"] = "rune.stat_1496740334", - ["text"] = "Convert #% of Requirements to Dexterity", + ["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_243313994", - ["text"] = "Bonded: # to Level of all Attack Skills", + ["id"] = "rune.stat_649025131", + ["text"] = "#% increased Movement Speed when on Low Life", ["type"] = "augment", }, [84] = { - ["id"] = "rune.stat_1631975646", - ["text"] = "Bonded: #% increased Projectile Speed", + ["id"] = "rune.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", ["type"] = "augment", }, [85] = { - ["id"] = "rune.stat_408302348", - ["text"] = "Bonded: #% to Maximum Fire Resistance", + ["id"] = "rune.stat_818877178", + ["text"] = "#% increased Parried Debuff Magnitude", ["type"] = "augment", }, [86] = { - ["id"] = "rune.stat_2704225257", - ["text"] = "# to Spirit", + ["id"] = "rune.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "augment", }, [87] = { - ["id"] = "rune.stat_3308150554", - ["text"] = "Bonded: Adds # to # Fire damage to Attacks", + ["id"] = "rune.stat_2011656677", + ["text"] = "#% increased Poison Duration", ["type"] = "augment", }, [88] = { - ["id"] = "rune.stat_1030153674", - ["text"] = "Recover #% of maximum Mana on Kill", + ["id"] = "rune.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", ["type"] = "augment", }, [89] = { - ["id"] = "rune.stat_4042480703", - ["text"] = "Bonded: #% to Maximum Cold Resistance", + ["id"] = "rune.stat_3759663284", + ["text"] = "#% increased Projectile Speed", ["type"] = "augment", }, [90] = { - ["id"] = "rune.stat_1805633363", - ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["id"] = "rune.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "augment", }, [91] = { - ["id"] = "rune.stat_2910761524", - ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", + ["id"] = "rune.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", ["type"] = "augment", }, [92] = { - ["id"] = "rune.stat_234296660", - ["text"] = "Companions deal #% increased Damage", + ["id"] = "rune.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", ["type"] = "augment", }, [93] = { - ["id"] = "rune.stat_839375491", - ["text"] = "Bonded: Minions Revive #% faster", + ["id"] = "rune.stat_830161081", + ["text"] = "#% increased Runic Ward", ["type"] = "augment", }, [94] = { - ["id"] = "rune.stat_4254029169", - ["text"] = "Bonded: Meta Skills have #% increased Reservation Efficiency", + ["id"] = "rune.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", ["type"] = "augment", }, [95] = { - ["id"] = "rune.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "rune.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", ["type"] = "augment", }, [96] = { - ["id"] = "rune.stat_3435915371", - ["text"] = "Bonded: #% increased Spirit Reservation Efficiency", + ["id"] = "rune.stat_4065951768", + ["text"] = "#% increased Skill Effect Duration with Plant Skills", ["type"] = "augment", }, [97] = { - ["id"] = "rune.stat_2729035954", - ["text"] = "Bonded: #% increased Reservation Efficiency of Companion Skills", + ["id"] = "rune.stat_970213192", + ["text"] = "#% increased Skill Speed", ["type"] = "augment", }, [98] = { - ["id"] = "rune.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", + ["id"] = "rune.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "augment", }, [99] = { - ["id"] = "rune.stat_610569665", - ["text"] = "# to Spirit per 2 Levels", + ["id"] = "rune.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "augment", }, [100] = { - ["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 #", + ["id"] = "rune.stat_4063732952", + ["text"] = "#% increased Spell Damage while your Companion is in your Presence", ["type"] = "augment", }, [101] = { - ["id"] = "rune.stat_807013157", - ["text"] = "Bonded: Every Rage also grants #% increased Spell Damage", + ["id"] = "rune.stat_3984865854", + ["text"] = "#% increased Spirit", ["type"] = "augment", }, [102] = { - ["id"] = "rune.stat_1556124492", - ["text"] = "Convert #% of Requirements to Strength", + ["id"] = "rune.stat_1416406066", + ["text"] = "#% increased Spirit", ["type"] = "augment", }, [103] = { - ["id"] = "rune.stat_782230869", - ["text"] = "#% increased Magnitude of Non-Damaging Ailments you inflict", + ["id"] = "rune.stat_751944209", + ["text"] = "#% increased Stun Threshold if you've been Stunned Recently", ["type"] = "augment", }, [104] = { - ["id"] = "rune.stat_1299166504", - ["text"] = "Bonded: #% increased Reservation Efficiency of Herald Skills", + ["id"] = "rune.stat_915264788", + ["text"] = "#% increased Thorns Critical Hit Chance", ["type"] = "augment", }, [105] = { - ["id"] = "rune.stat_970213192", - ["text"] = "#% increased Skill Speed", + ["id"] = "rune.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", ["type"] = "augment", }, [106] = { - ["id"] = "rune.stat_1381474422", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", + ["id"] = "rune.stat_293638271", + ["text"] = "#% increased chance to Shock", ["type"] = "augment", }, [107] = { - ["id"] = "rune.stat_2986637363", - ["text"] = "Bonded: #% increased Duration of Damaging Ailments on Enemies", + ["id"] = "rune.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", ["type"] = "augment", }, [108] = { - ["id"] = "rune.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", + ["id"] = "rune.stat_1879206848", + ["text"] = "#% increased effect of Fully Broken Armour", ["type"] = "augment", }, [109] = { - ["id"] = "rune.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", + ["id"] = "rune.stat_983749596", + ["text"] = "#% increased maximum Life", ["type"] = "augment", }, [110] = { - ["id"] = "rune.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["id"] = "rune.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "augment", }, [111] = { - ["id"] = "rune.stat_774059442", - ["text"] = "# to maximum Runic Ward", + ["id"] = "rune.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", ["type"] = "augment", }, [112] = { - ["id"] = "rune.stat_263495202", - ["text"] = "#% increased Cost Efficiency", + ["id"] = "rune.stat_2663359259", + ["text"] = "#% increased total Power counted by Warcries", ["type"] = "augment", }, [113] = { - ["id"] = "rune.stat_1597408611", - ["text"] = "Bonded: Prevent #% of Damage from Deflected Hits", + ["id"] = "rune.stat_762761075", + ["text"] = "#% less Mana Regeneration Rate", ["type"] = "augment", }, [114] = { - ["id"] = "rune.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", + ["id"] = "rune.stat_1020945697", + ["text"] = "#% less maximum Life", ["type"] = "augment", }, [115] = { - ["id"] = "rune.stat_1382805233", - ["text"] = "#% increased Deflection Rating while moving", + ["id"] = "rune.stat_3972229254", + ["text"] = "#% of Armour also applies to Chaos Damage", ["type"] = "augment", }, [116] = { - ["id"] = "rune.stat_3266426611", - ["text"] = "Bonded: #% increased Thorns damage", + ["id"] = "rune.stat_2191621386", + ["text"] = "#% of Armour also applies to Chaos Damage while on full Energy Shield", ["type"] = "augment", }, [117] = { - ["id"] = "rune.stat_416040624", - ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["id"] = "rune.stat_1947060170", + ["text"] = "#% of Armour also applies to Cold Damage", ["type"] = "augment", }, [118] = { - ["id"] = "rune.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", + ["id"] = "rune.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "augment", }, [119] = { - ["id"] = "rune.stat_3398301358", - ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["id"] = "rune.stat_3897831687", + ["text"] = "#% of Armour also applies to Fire Damage", ["type"] = "augment", }, [120] = { - ["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", + ["id"] = "rune.stat_2200571612", + ["text"] = "#% of Armour also applies to Lightning Damage", ["type"] = "augment", }, [121] = { - ["id"] = "rune.stat_2269618934", - ["text"] = "Bonded: Gain #% of maximum Life as Extra maximum Runic Ward", + ["id"] = "rune.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "augment", }, [122] = { - ["id"] = "rune.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", + ["id"] = "rune.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "augment", }, [123] = { - ["id"] = "rune.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", + ["id"] = "rune.stat_2448633171", + ["text"] = "#% of Damage taken bypasses Energy Shield", ["type"] = "augment", }, [124] = { - ["id"] = "rune.stat_3107707789", - ["text"] = "#% increased Movement Speed while Sprinting", + ["id"] = "rune.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", ["type"] = "augment", }, [125] = { - ["id"] = "rune.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["id"] = "rune.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "augment", }, [126] = { - ["id"] = "rune.stat_1756854510", - ["text"] = "Bonded: #% increased Stun Recovery", + ["id"] = "rune.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", ["type"] = "augment", }, [127] = { - ["id"] = "rune.stat_831559873", - ["text"] = "Bonded: #% increased Guard gained", + ["id"] = "rune.stat_3801067695", + ["text"] = "#% reduced effect of Shock on you", ["type"] = "augment", }, [128] = { - ["id"] = "rune.stat_542243093", - ["text"] = "Bonded: #% increased Warcry Cooldown Recovery Rate", + ["id"] = "rune.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "augment", }, [129] = { - ["id"] = "rune.stat_3898665772", - ["text"] = "Bonded: #% increased Quantity of Gold Dropped by Slain Enemies", + ["id"] = "rune.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "augment", }, [130] = { - ["id"] = "rune.stat_1181501418", - ["text"] = "# to Maximum Rage", + ["id"] = "rune.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", ["type"] = "augment", }, [131] = { - ["id"] = "rune.stat_3885634897", - ["text"] = "#% chance to Poison on Hit with this weapon", + ["id"] = "rune.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "augment", }, [132] = { - ["id"] = "rune.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "rune.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "augment", }, [133] = { - ["id"] = "rune.stat_1419386315", - ["text"] = "Bonded: Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["id"] = "rune.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", ["type"] = "augment", }, [134] = { - ["id"] = "rune.stat_757050353", - ["text"] = "# to # Lightning Thorns damage", + ["id"] = "rune.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", ["type"] = "augment", }, [135] = { - ["id"] = "rune.stat_674141348", - ["text"] = "Bonded: #% increased Attack Damage while Shapeshifted", + ["id"] = "rune.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", ["type"] = "augment", }, [136] = { - ["id"] = "rune.stat_144568384", - ["text"] = "Bonded: #% increased Skill Speed while Shapeshifted", + ["id"] = "rune.stat_3655769732", + ["text"] = "#% to Quality of all Skills", ["type"] = "augment", }, [137] = { - ["id"] = "rune.stat_2100249038", - ["text"] = "Bonded: #% of Maximum Life Converted to Energy Shield", + ["id"] = "rune.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "augment", }, [138] = { - ["id"] = "rune.stat_310945763", - ["text"] = "#% increased Life Cost Efficiency", + ["id"] = "rune.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "augment", }, [139] = { - ["id"] = "rune.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", + ["id"] = "rune.stat_282990844", + ["text"] = "+# to Deflection Rating per 10 maximum Runic Ward", ["type"] = "augment", }, [140] = { - ["id"] = "rune.stat_3311629379", - ["text"] = "Bonded: #% increased Critical Hit Chance while Shapeshifted", + ["id"] = "rune.stat_2838678452", + ["text"] = "+# to Stun Threshold per 10 maximum Runic Ward", ["type"] = "augment", }, [141] = { - ["id"] = "rune.stat_953010920", - ["text"] = "Bonded: #% to all Elemental Resistances", + ["id"] = "rune.stat_162036024", + ["text"] = "1% increased Energy Shield Recharge Rate per # maximum Runic Ward", ["type"] = "augment", }, [142] = { - ["id"] = "rune.stat_3144895835", - ["text"] = "Bonded: #% increased Magnitude of Bleeding on You", + ["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_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["id"] = "rune.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", ["type"] = "augment", }, [144] = { - ["id"] = "rune.stat_2134854700", - ["text"] = "Bonded: #% chance for Damage of Enemies Hitting you to be Unlucky", + ["id"] = "rune.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", ["type"] = "augment", }, [145] = { - ["id"] = "rune.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["id"] = "rune.stat_3734640451", + ["text"] = "Adds # to # Cold Damage against Chilled Enemies", ["type"] = "augment", }, [146] = { - ["id"] = "rune.stat_2336012075", - ["text"] = "Bonded: #% increased Mana Cost Efficiency", + ["id"] = "rune.stat_709508406", + ["text"] = "Adds # to # Fire Damage", ["type"] = "augment", }, [147] = { - ["id"] = "rune.stat_1984310483", - ["text"] = "Enemies you Curse take #% increased Damage", + ["id"] = "rune.stat_627339348", + ["text"] = "Adds # to # Fire Damage to Attacks against Ignited Enemies", ["type"] = "augment", }, [148] = { - ["id"] = "rune.stat_473429811", - ["text"] = "#% increased Freeze Buildup", + ["id"] = "rune.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "augment", }, [149] = { - ["id"] = "rune.stat_763465498", - ["text"] = "Bonded: #% increased Charm Charges gained", + ["id"] = "rune.stat_90012347", + ["text"] = "Adds # to # Lightning Damage against Shocked Enemies", ["type"] = "augment", }, [150] = { - ["id"] = "rune.stat_2103650854", - ["text"] = "#% increased effect of Arcane Surge on you", + ["id"] = "rune.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "augment", }, [151] = { - ["id"] = "rune.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["id"] = "rune.stat_3814102597", + ["text"] = "All damage taken bypasses Runic Ward", ["type"] = "augment", }, [152] = { - ["id"] = "rune.stat_3854332662", - ["text"] = "Bonded: #% increased Area of Effect of Curses", + ["id"] = "rune.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", ["type"] = "augment", }, [153] = { - ["id"] = "rune.stat_830161081", - ["text"] = "#% increased Runic Ward", + ["id"] = "rune.stat_1911097163", + ["text"] = "Allies in your Presence Regenerate #% of your Maximum Life per second", ["type"] = "augment", }, [154] = { - ["id"] = "rune.stat_3666934677", - ["text"] = "#% increased Experience gain", + ["id"] = "rune.stat_262946222", + ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", ["type"] = "augment", }, [155] = { - ["id"] = "rune.stat_3407849389", - ["text"] = "#% reduced effect of Curses on you", + ["id"] = "rune.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", ["type"] = "augment", }, [156] = { - ["id"] = "rune.stat_2453678274", - ["text"] = "Bonded: #% increased Crossbow Reload Speed", + ["id"] = "rune.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "augment", }, [157] = { - ["id"] = "rune.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", + ["id"] = "rune.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "augment", }, [158] = { - ["id"] = "rune.stat_3449499156", - ["text"] = "Bonded: Minions have #% increased Area of Effect", + ["id"] = "rune.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "augment", }, [159] = { - ["id"] = "rune.stat_538981065", - ["text"] = "Grenades have #% chance to activate a second time", + ["id"] = "rune.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "augment", }, [160] = { - ["id"] = "rune.stat_827242569", - ["text"] = "Bonded: # to maximum Energy Shield", + ["id"] = "rune.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "augment", }, [161] = { - ["id"] = "rune.stat_2352183092", - ["text"] = "Bonded: #% increased Mana Recovery rate while your Companion is in your Presence", + ["id"] = "rune.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", ["type"] = "augment", }, [162] = { - ["id"] = "rune.stat_2854751904", - ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["id"] = "rune.stat_632743438", + ["text"] = "Allies in your Presence have #% increased Movement Speed", ["type"] = "augment", }, [163] = { - ["id"] = "rune.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "rune.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", ["type"] = "augment", }, [164] = { - ["id"] = "rune.stat_3484657501", - ["text"] = "# to Armour (Local)", + ["id"] = "rune.stat_2586152168", + ["text"] = "Archon recovery period expires #% faster", ["type"] = "augment", }, [165] = { - ["id"] = "rune.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["id"] = "rune.stat_2608793552", + ["text"] = "Attacks Break Armour equal to #% of maximum Runic Ward", ["type"] = "augment", }, [166] = { - ["id"] = "rune.stat_624954515", - ["text"] = "#% increased Accuracy Rating", + ["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_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["id"] = "rune.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", ["type"] = "augment", }, [168] = { - ["id"] = "rune.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["id"] = "rune.stat_3678845069", + ["text"] = "Attacks with this Weapon have #% chance to inflict Exposure", ["type"] = "augment", }, [169] = { - ["id"] = "rune.stat_217649179", - ["text"] = "Bonded: #% increased Curse Magnitudes", + ["id"] = "rune.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "augment", }, [170] = { - ["id"] = "rune.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "rune.stat_769693350", + ["text"] = "Bonded: # Maximum Life per Level", ["type"] = "augment", }, [171] = { - ["id"] = "rune.stat_1236190486", - ["text"] = "Bonded: #% increased effect of Archon Buffs on you", + ["id"] = "rune.stat_2573124363", + ["text"] = "Bonded: # to Armour", ["type"] = "augment", }, [172] = { - ["id"] = "rune.stat_3227486464", - ["text"] = "Bonded: Remnants you create have #% increased effect", + ["id"] = "rune.stat_3533065815", + ["text"] = "Bonded: # to Evasion Rating", ["type"] = "augment", }, [173] = { - ["id"] = "rune.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["id"] = "rune.stat_243313994", + ["text"] = "Bonded: # to Level of all Attack Skills", ["type"] = "augment", }, [174] = { - ["id"] = "rune.stat_3351086592", - ["text"] = "Bonded: #% to Chaos Resistance", + ["id"] = "rune.stat_2339851060", + ["text"] = "Bonded: # to Maximum Endurance Charges", ["type"] = "augment", }, [175] = { - ["id"] = "rune.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["id"] = "rune.stat_3986710072", + ["text"] = "Bonded: # to Maximum Frenzy Charges", ["type"] = "augment", }, [176] = { - ["id"] = "rune.stat_1570901920", - ["text"] = "Bonded: Gain #% of Physical Damage as extra Chaos Damage", + ["id"] = "rune.stat_921688168", + ["text"] = "Bonded: # to Maximum Power Charges", ["type"] = "augment", }, [177] = { - ["id"] = "rune.stat_3973629633", - ["text"] = "#% increased Withered Magnitude", + ["id"] = "rune.stat_827242569", + ["text"] = "Bonded: # to maximum Energy Shield", ["type"] = "augment", }, [178] = { - ["id"] = "rune.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", + ["id"] = "rune.stat_2280525771", + ["text"] = "Bonded: # to maximum Life", ["type"] = "augment", }, [179] = { - ["id"] = "rune.stat_1755296234", - ["text"] = "Targets can be affected by # of your Poisons at the same time", + ["id"] = "rune.stat_2926029365", + ["text"] = "Bonded: # to maximum Mana", ["type"] = "augment", }, [180] = { - ["id"] = "rune.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", + ["id"] = "rune.stat_451260031", + ["text"] = "Bonded: # to maximum number of Elemental Infusions", ["type"] = "augment", }, [181] = { - ["id"] = "rune.stat_2916861134", - ["text"] = "#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", + ["id"] = "rune.stat_3291917242", + ["text"] = "Bonded: #% chance for Charms you use to not consume Charges", ["type"] = "augment", }, [182] = { - ["id"] = "rune.stat_3286003349", - ["text"] = "Bonded: Storm Skills have +# to Limit", + ["id"] = "rune.stat_2134854700", + ["text"] = "Bonded: #% chance for Damage of Enemies Hitting you to be Unlucky", ["type"] = "augment", }, [183] = { - ["id"] = "rune.stat_554899692", - ["text"] = "# Charm Slot (Global)", + ["id"] = "rune.stat_1712188793", + ["text"] = "Bonded: #% chance to gain an additional random Charge when you gain a Charge", ["type"] = "augment", }, [184] = { - ["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", + ["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_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["id"] = "rune.stat_1350120957", + ["text"] = "Bonded: #% faster Curse Activation", ["type"] = "augment", }, [186] = { - ["id"] = "rune.stat_258119672", - ["text"] = "# metre to Dodge Roll distance", + ["id"] = "rune.stat_201058524", + ["text"] = "Bonded: #% increased Archon Buff duration", ["type"] = "augment", }, [187] = { - ["id"] = "rune.stat_2074866941", - ["text"] = "#% increased Exposure Effect", + ["id"] = "rune.stat_3724971246", + ["text"] = "Bonded: #% increased Area of Effect for Attacks", ["type"] = "augment", }, [188] = { - ["id"] = "rune.stat_2200571612", - ["text"] = "#% of Armour also applies to Lightning Damage", + ["id"] = "rune.stat_3854332662", + ["text"] = "Bonded: #% increased Area of Effect of Curses", ["type"] = "augment", }, [189] = { - ["id"] = "rune.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", + ["id"] = "rune.stat_51757548", + ["text"] = "Bonded: #% increased Armour and Evasion Rating when on Low Life", ["type"] = "augment", }, [190] = { - ["id"] = "rune.stat_3331247603", - ["text"] = "Bonded: #% increased amount of Life Leeched", + ["id"] = "rune.stat_851475033", + ["text"] = "Bonded: #% increased Armour if you haven't Dodge Rolled Recently", ["type"] = "augment", }, [191] = { - ["id"] = "rune.stat_3891661462", - ["text"] = "Bonded: #% increased Magnitude of Non-Damaging Ailments you inflict", + ["id"] = "rune.stat_3037356641", + ["text"] = "Bonded: #% increased Armour if you've consumed an Endurance Charge Recently", ["type"] = "augment", }, [192] = { - ["id"] = "rune.stat_915264788", - ["text"] = "#% increased Thorns Critical Hit Chance", + ["id"] = "rune.stat_674141348", + ["text"] = "Bonded: #% increased Attack Damage while Shapeshifted", ["type"] = "augment", }, [193] = { - ["id"] = "rune.stat_3373098634", - ["text"] = "Bonded: Remnants can be collected from #% further away", + ["id"] = "rune.stat_3414796717", + ["text"] = "Bonded: #% increased Attack Speed", ["type"] = "augment", }, [194] = { - ["id"] = "rune.stat_3414796717", - ["text"] = "Bonded: #% increased Attack Speed", + ["id"] = "rune.stat_3837226732", + ["text"] = "Bonded: #% increased Attack Speed while missing Runic Ward", ["type"] = "augment", }, [195] = { - ["id"] = "rune.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["id"] = "rune.stat_1777925108", + ["text"] = "Bonded: #% increased Attack Speed while your Companion is in your Presence", ["type"] = "augment", }, [196] = { - ["id"] = "rune.stat_649025131", - ["text"] = "#% increased Movement Speed when on Low Life", + ["id"] = "rune.stat_678691134", + ["text"] = "Bonded: #% increased Blind Effect", ["type"] = "augment", }, [197] = { - ["id"] = "rune.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["id"] = "rune.stat_477534953", + ["text"] = "Bonded: #% increased Block chance", ["type"] = "augment", }, [198] = { - ["id"] = "rune.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", + ["id"] = "rune.stat_227512798", + ["text"] = "Bonded: #% increased Chaos Damage", ["type"] = "augment", }, [199] = { - ["id"] = "rune.stat_264750496", - ["text"] = "Bonded: #% of Damage taken Recouped as Life", + ["id"] = "rune.stat_763465498", + ["text"] = "Bonded: #% increased Charm Charges gained", ["type"] = "augment", }, [200] = { - ["id"] = "rune.stat_4258524206", - ["text"] = "#% chance to build an additional Combo on Hit", + ["id"] = "rune.stat_2233558630", + ["text"] = "Bonded: #% increased Cold Damage", ["type"] = "augment", }, [201] = { - ["id"] = "rune.stat_826685275", - ["text"] = "Bonded: #% of Armour also applies to Elemental Damage while Shapeshifted", + ["id"] = "rune.stat_232299587", + ["text"] = "Bonded: #% increased Cooldown Recovery Rate", ["type"] = "augment", }, [202] = { - ["id"] = "rune.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", + ["id"] = "rune.stat_4221147896", + ["text"] = "Bonded: #% increased Critical Damage Bonus", ["type"] = "augment", }, [203] = { - ["id"] = "rune.stat_1947060170", - ["text"] = "#% of Armour also applies to Cold Damage", + ["id"] = "rune.stat_2651867031", + ["text"] = "Bonded: #% increased Critical Hit Chance", ["type"] = "augment", }, [204] = { - ["id"] = "rune.stat_3897831687", - ["text"] = "#% of Armour also applies to Fire Damage", + ["id"] = "rune.stat_3311629379", + ["text"] = "Bonded: #% increased Critical Hit Chance while Shapeshifted", ["type"] = "augment", }, [205] = { - ["id"] = "rune.stat_2573124363", - ["text"] = "Bonded: # to Armour", + ["id"] = "rune.stat_2453678274", + ["text"] = "Bonded: #% increased Crossbow Reload Speed", ["type"] = "augment", }, [206] = { - ["id"] = "rune.stat_3850614073", - ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["id"] = "rune.stat_217649179", + ["text"] = "Bonded: #% increased Curse Magnitudes", ["type"] = "augment", }, [207] = { - ["id"] = "rune.stat_2363593824", - ["text"] = "#% increased speed of Recoup Effects", + ["id"] = "rune.stat_3823333703", + ["text"] = "Bonded: #% increased Damage against Immobilised Enemies", ["type"] = "augment", }, [208] = { - ["id"] = "rune.stat_51757548", - ["text"] = "Bonded: #% increased Armour and Evasion Rating when on Low Life", + ["id"] = "rune.stat_95238288", + ["text"] = "Bonded: #% increased Damage for each type of Elemental Ailment on Enemy", ["type"] = "augment", }, [209] = { - ["id"] = "rune.stat_3742865955", - ["text"] = "Minions deal #% increased Damage with Command Skills", + ["id"] = "rune.stat_3412619569", + ["text"] = "Bonded: #% increased Damage while Shapeshifted", ["type"] = "augment", }, [210] = { - ["id"] = "rune.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", + ["id"] = "rune.stat_3835589934", + ["text"] = "Bonded: #% increased Damage while your Companion is in your Presence", ["type"] = "augment", }, [211] = { - ["id"] = "rune.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", + ["id"] = "rune.stat_2986637363", + ["text"] = "Bonded: #% increased Duration of Damaging Ailments on Enemies", ["type"] = "augment", }, [212] = { - ["id"] = "rune.stat_1555237944", - ["text"] = "#% chance when you gain a Charge to gain an additional Charge", + ["id"] = "rune.stat_2546200564", + ["text"] = "Bonded: #% increased Duration of Elemental Ailments on Enemies", ["type"] = "augment", }, [213] = { - ["id"] = "rune.stat_3533065815", - ["text"] = "Bonded: # to Evasion Rating", + ["id"] = "rune.stat_1279298634", + ["text"] = "Bonded: #% increased Effect of Non-Damaging Ailments on you", ["type"] = "augment", }, [214] = { - ["id"] = "rune.stat_3537994888", - ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", + ["id"] = "rune.stat_4128954176", + ["text"] = "Bonded: #% increased Elemental Ailment Threshold", ["type"] = "augment", }, [215] = { - ["id"] = "rune.stat_687156079", - ["text"] = "# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", + ["id"] = "rune.stat_3037261703", + ["text"] = "Bonded: #% increased Elemental Damage", ["type"] = "augment", }, [216] = { - ["id"] = "rune.stat_2608793552", - ["text"] = "Attacks Break Armour equal to #% of maximum Runic Ward", + ["id"] = "rune.stat_4224773381", + ["text"] = "Bonded: #% increased Endurance Charge Duration", ["type"] = "augment", }, [217] = { - ["id"] = "rune.stat_851475033", - ["text"] = "Bonded: #% increased Armour if you haven't Dodge Rolled Recently", + ["id"] = "rune.stat_4129869957", + ["text"] = "Bonded: #% increased Endurance, Frenzy and Power Charge Duration", ["type"] = "augment", }, [218] = { - ["id"] = "rune.stat_1197632982", - ["text"] = "# to Armour per 1 Spirit", + ["id"] = "rune.stat_2959554008", + ["text"] = "Bonded: #% increased Evasion Rating if you've consumed a Frenzy Charge Recently", ["type"] = "augment", }, [219] = { - ["id"] = "rune.stat_282990844", - ["text"] = "+# to Deflection Rating per 10 maximum Runic Ward", + ["id"] = "rune.stat_3378643287", + ["text"] = "Bonded: #% increased Exposure Effect", ["type"] = "augment", }, [220] = { - ["id"] = "rune.stat_1112792773", - ["text"] = "Bonded: #% increased Immobilisation buildup", + ["id"] = "rune.stat_2502507413", + ["text"] = "Bonded: #% increased Fire Damage", ["type"] = "augment", }, [221] = { - ["id"] = "rune.stat_4012965551", - ["text"] = "Bonded: Banner Skills have #% increased Aura Magnitudes", + ["id"] = "rune.stat_1817052494", + ["text"] = "Bonded: #% increased Freeze Buildup", ["type"] = "augment", }, [222] = { - ["id"] = "rune.stat_3378643287", - ["text"] = "Bonded: #% increased Exposure Effect", + ["id"] = "rune.stat_457982334", + ["text"] = "Bonded: #% increased Global Armour, Evasion and Energy Shield", ["type"] = "augment", }, [223] = { - ["id"] = "rune.stat_1728593484", - ["text"] = "Bonded: Minions deal #% increased Damage", + ["id"] = "rune.stat_155735928", + ["text"] = "Bonded: #% increased Glory generation", ["type"] = "augment", }, [224] = { - ["id"] = "rune.stat_1433756169", - ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", + ["id"] = "rune.stat_831559873", + ["text"] = "Bonded: #% increased Guard gained", ["type"] = "augment", }, [225] = { - ["id"] = "rune.stat_3824372849", - ["text"] = "#% increased Curse Duration", + ["id"] = "rune.stat_1857162058", + ["text"] = "Bonded: #% increased Ignite Magnitude", ["type"] = "augment", }, [226] = { - ["id"] = "rune.stat_540694930", - ["text"] = "Minions in your Presence have Onslaught while you are on Low Runic Ward", + ["id"] = "rune.stat_1112792773", + ["text"] = "Bonded: #% increased Immobilisation buildup", ["type"] = "augment", }, [227] = { - ["id"] = "rune.stat_3678845069", - ["text"] = "Attacks with this Weapon have #% chance to inflict Exposure", + ["id"] = "rune.stat_2122116143", + ["text"] = "Bonded: #% increased Life Recovery Rate while your Companion is in your Presence", ["type"] = "augment", }, [228] = { - ["id"] = "rune.stat_4058681894", - ["text"] = "You have no Critical Damage Bonus", + ["id"] = "rune.stat_2051864330", + ["text"] = "Bonded: #% increased Life Regeneration rate", ["type"] = "augment", }, [229] = { - ["id"] = "rune.stat_1772929282", - ["text"] = "Enemies you Curse have #% to Chaos Resistance", + ["id"] = "rune.stat_2410766865", + ["text"] = "Bonded: #% increased Life Regeneration rate while Shapeshifted", ["type"] = "augment", }, [230] = { - ["id"] = "rune.stat_1528013281", - ["text"] = "Bonded: Projectiles have #% chance for an additional Projectile when Forking", + ["id"] = "rune.stat_4168500604", + ["text"] = "Bonded: #% increased Life and Mana Recovery from Flasks", ["type"] = "augment", }, [231] = { - ["id"] = "rune.stat_162036024", - ["text"] = "1% increased Energy Shield Recharge Rate per # maximum Runic Ward", + ["id"] = "rune.stat_2589309582", + ["text"] = "Bonded: #% increased Lightning Damage", ["type"] = "augment", }, [232] = { - ["id"] = "rune.stat_3448627618", - ["text"] = "Bonded: #% to Cold Resistance", + ["id"] = "rune.stat_3144895835", + ["text"] = "Bonded: #% increased Magnitude of Bleeding on You", ["type"] = "augment", }, [233] = { - ["id"] = "rune.stat_2410766865", - ["text"] = "Bonded: #% increased Life Regeneration rate while Shapeshifted", + ["id"] = "rune.stat_3891661462", + ["text"] = "Bonded: #% increased Magnitude of Non-Damaging Ailments you inflict", ["type"] = "augment", }, [234] = { - ["id"] = "rune.stat_3473409233", - ["text"] = "Lose #% of maximum Life per second while Sprinting", + ["id"] = "rune.stat_2430860292", + ["text"] = "Bonded: #% increased Magnitude of Shock you inflict", ["type"] = "augment", }, [235] = { - ["id"] = "rune.stat_1911097163", - ["text"] = "Allies in your Presence Regenerate #% of your Maximum Life per second", + ["id"] = "rune.stat_2336012075", + ["text"] = "Bonded: #% increased Mana Cost Efficiency", ["type"] = "augment", }, [236] = { - ["id"] = "rune.stat_1999910726", - ["text"] = "Remnants you create have #% increased effect", + ["id"] = "rune.stat_532897212", + ["text"] = "Bonded: #% increased Mana Cost Efficiency while on Low Mana", ["type"] = "augment", }, [237] = { - ["id"] = "rune.stat_4129869957", - ["text"] = "Bonded: #% increased Endurance, Frenzy and Power Charge Duration", + ["id"] = "rune.stat_2352183092", + ["text"] = "Bonded: #% increased Mana Recovery rate while your Companion is in your Presence", ["type"] = "augment", }, [238] = { - ["id"] = "rune.stat_553018427", - ["text"] = "#% increased Mana Cost Efficiency of Command Skills", + ["id"] = "rune.stat_4106964676", + ["text"] = "Bonded: #% increased Movement Speed", ["type"] = "augment", }, [239] = { - ["id"] = "rune.stat_2241849004", - ["text"] = "Energy Shield Recharge starts after spending a total of 2000 Mana, no more than once every 2 seconds", + ["id"] = "rune.stat_3842722415", + ["text"] = "Bonded: #% increased Movement Speed while Sprinting", ["type"] = "augment", }, [240] = { - ["id"] = "rune.stat_1342402057", - ["text"] = "Bonded: #% increased Reservation Efficiency of Minion Skills", + ["id"] = "rune.stat_2418344131", + ["text"] = "Bonded: #% increased Projectile Damage", ["type"] = "augment", }, [241] = { - ["id"] = "rune.stat_1228682002", - ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", + ["id"] = "rune.stat_1631975646", + ["text"] = "Bonded: #% increased Projectile Speed", ["type"] = "augment", }, [242] = { - ["id"] = "rune.stat_1919509054", - ["text"] = "Your Energy Shield Recharge starts when your Minions are Reformed", + ["id"] = "rune.stat_3898665772", + ["text"] = "Bonded: #% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "augment", }, [243] = { - ["id"] = "rune.stat_103706408", - ["text"] = "Rolls only the minimum or maximum Damage value for Physical Damage", + ["id"] = "rune.stat_2729035954", + ["text"] = "Bonded: #% increased Reservation Efficiency of Companion Skills", ["type"] = "augment", }, [244] = { - ["id"] = "rune.stat_3837226732", - ["text"] = "Bonded: #% increased Attack Speed while missing Runic Ward", + ["id"] = "rune.stat_1299166504", + ["text"] = "Bonded: #% increased Reservation Efficiency of Herald Skills", ["type"] = "augment", }, [245] = { - ["id"] = "rune.stat_267552601", - ["text"] = "Spell damage Penetrates #% of enemy Elemental Resistances while on Low Runic Ward", + ["id"] = "rune.stat_1342402057", + ["text"] = "Bonded: #% increased Reservation Efficiency of Minion Skills", ["type"] = "augment", }, [246] = { - ["id"] = "rune.stat_4128954176", - ["text"] = "Bonded: #% increased Elemental Ailment Threshold", + ["id"] = "rune.stat_1751756891", + ["text"] = "Bonded: #% increased Runic Ward Cost Efficiency", ["type"] = "augment", }, [247] = { - ["id"] = "rune.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", + ["id"] = "rune.stat_1396011622", + ["text"] = "Bonded: #% increased Runic Ward Regeneration Rate if you've dealt a Critical Hit Recently", ["type"] = "augment", }, [248] = { - ["id"] = "rune.stat_3037261703", - ["text"] = "Bonded: #% increased Elemental Damage", + ["id"] = "rune.stat_2530800730", + ["text"] = "Bonded: #% increased Skill Effect Duration with Plant Skills", ["type"] = "augment", }, [249] = { - ["id"] = "rune.stat_1020945697", - ["text"] = "#% less maximum Life", + ["id"] = "rune.stat_144568384", + ["text"] = "Bonded: #% increased Skill Speed while Shapeshifted", ["type"] = "augment", }, [250] = { - ["id"] = "rune.stat_935518591", - ["text"] = "Critical Hit chance is Lucky against Parried enemies", + ["id"] = "rune.stat_165746512", + ["text"] = "Bonded: #% increased Slowing Potency of Debuffs on You", ["type"] = "augment", }, [251] = { - ["id"] = "rune.stat_2876843277", - ["text"] = "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", + ["id"] = "rune.stat_2012253422", + ["text"] = "Bonded: #% increased Spirit", ["type"] = "augment", }, [252] = { - ["id"] = "rune.stat_2586152168", - ["text"] = "Archon recovery period expires #% faster", + ["id"] = "rune.stat_3435915371", + ["text"] = "Bonded: #% increased Spirit Reservation Efficiency", ["type"] = "augment", }, [253] = { - ["id"] = "rune.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", + ["id"] = "rune.stat_3038857346", + ["text"] = "Bonded: #% increased Stun Buildup", ["type"] = "augment", }, [254] = { - ["id"] = "rune.stat_280497929", - ["text"] = "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", + ["id"] = "rune.stat_1756854510", + ["text"] = "Bonded: #% increased Stun Recovery", ["type"] = "augment", }, [255] = { - ["id"] = "rune.stat_4063732952", - ["text"] = "#% increased Spell Damage while your Companion is in your Presence", + ["id"] = "rune.stat_466741396", + ["text"] = "Bonded: #% increased Stun Threshold", ["type"] = "augment", }, [256] = { - ["id"] = "rune.stat_1433896639", - ["text"] = "Transforms all Fire and Cold modifiers on the item into equivalent Lightning modifiers", + ["id"] = "rune.stat_597420223", + ["text"] = "Bonded: #% increased Stun buildup while Shapeshifted", ["type"] = "augment", }, [257] = { - ["id"] = "rune.stat_1823959929", - ["text"] = "Bonded: Recover #% of maximum Life when one of your Minions is Revived", + ["id"] = "rune.stat_3266426611", + ["text"] = "Bonded: #% increased Thorns damage", ["type"] = "augment", }, [258] = { - ["id"] = "rune.stat_4058552370", - ["text"] = "Bonded: Invocated Spells have #% chance to consume half as much Energy", + ["id"] = "rune.stat_542243093", + ["text"] = "Bonded: #% increased Warcry Cooldown Recovery Rate", ["type"] = "augment", }, [259] = { - ["id"] = "rune.stat_3040571529", - ["text"] = "#% increased Deflection Rating", + ["id"] = "rune.stat_1984345909", + ["text"] = "Bonded: #% increased Withered Magnitude", ["type"] = "augment", }, [260] = { - ["id"] = "rune.stat_1678831767", - ["text"] = "Recover # Life when you Block", + ["id"] = "rune.stat_3331247603", + ["text"] = "Bonded: #% increased amount of Life Leeched", ["type"] = "augment", }, [261] = { - ["id"] = "rune.stat_2691854696", - ["text"] = "Bonded: Damage of Enemies Hitting you is Unlucky ifyour Runic Ward has been damaged Recently", + ["id"] = "rune.stat_1236190486", + ["text"] = "Bonded: #% increased effect of Archon Buffs on you", ["type"] = "augment", }, [262] = { - ["id"] = "rune.stat_2589309582", - ["text"] = "Bonded: #% increased Lightning Damage", + ["id"] = "rune.stat_1039491398", + ["text"] = "Bonded: #% increased effect of Fully Broken Armour", ["type"] = "augment", }, [263] = { - ["id"] = "rune.stat_2392260628", - ["text"] = "#% increased Runic Ward Regeneration Rate", + ["id"] = "rune.stat_3745435177", + ["text"] = "Bonded: #% increased maximum Energy Shield if you've consumed a Power Charge Recently", ["type"] = "augment", }, [264] = { - ["id"] = "rune.stat_1441491952", - ["text"] = "Bonded: #% reduced Shock duration on you", + ["id"] = "rune.stat_2246411426", + ["text"] = "Bonded: #% increased maximum Life", ["type"] = "augment", }, [265] = { - ["id"] = "rune.stat_3801067695", - ["text"] = "#% reduced effect of Shock on you", + ["id"] = "rune.stat_1586906534", + ["text"] = "Bonded: #% increased maximum Mana", ["type"] = "augment", }, [266] = { - ["id"] = "rune.stat_1392112423", - ["text"] = "#% increased Armour and Evasion Rating while on Low Runic Ward", + ["id"] = "rune.stat_3634438849", + ["text"] = "Bonded: #% increased maximum Runic Ward", ["type"] = "augment", }, [267] = { - ["id"] = "rune.stat_901007505", - ["text"] = "Bonded: Minions have #% to all Elemental Resistances", + ["id"] = "rune.stat_826685275", + ["text"] = "Bonded: #% of Armour also applies to Elemental Damage while Shapeshifted", ["type"] = "augment", }, [268] = { - ["id"] = "rune.stat_3151560620", - ["text"] = "#% increased Damage per each different Companion in your Presence", + ["id"] = "rune.stat_264750496", + ["text"] = "Bonded: #% of Damage taken Recouped as Life", ["type"] = "augment", }, [269] = { - ["id"] = "rune.stat_3515226849", - ["text"] = "Recover #% of maximum Runic Ward when one of your Reviving Minions is Killed", + ["id"] = "rune.stat_2100249038", + ["text"] = "Bonded: #% of Maximum Life Converted to Energy Shield", ["type"] = "augment", }, [270] = { - ["id"] = "rune.stat_2248594298", - ["text"] = "Bonded: When Volatility on you explodes, you regain an equivalent amount of Volatility", + ["id"] = "rune.stat_2561960218", + ["text"] = "Bonded: #% of Skill Mana Costs Converted to Life Costs", ["type"] = "augment", }, [271] = { - ["id"] = "rune.stat_889552744", - ["text"] = "Minions take #% of Physical Damage as Lightning Damage", + ["id"] = "rune.stat_1441491952", + ["text"] = "Bonded: #% reduced Shock duration on you", ["type"] = "augment", }, [272] = { - ["id"] = "rune.stat_3570773271", - ["text"] = "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", + ["id"] = "rune.stat_3351086592", + ["text"] = "Bonded: #% to Chaos Resistance", ["type"] = "augment", }, [273] = { - ["id"] = "rune.stat_2905013875", - ["text"] = "Bonded: Recover #% of Maximum Mana when you collect a Remnant", + ["id"] = "rune.stat_3448627618", + ["text"] = "Bonded: #% to Cold Resistance", ["type"] = "augment", }, [274] = { - ["id"] = "rune.stat_3482326075", - ["text"] = "Remnants can be collected from #% further away", + ["id"] = "rune.stat_3294435116", + ["text"] = "Bonded: #% to Lightning Resistance", ["type"] = "augment", }, [275] = { - ["id"] = "rune.stat_1404850498", - ["text"] = "Bonded: #% to all Maximum Elemental Resistances while on full Runic Ward", + ["id"] = "rune.stat_4042480703", + ["text"] = "Bonded: #% to Maximum Cold Resistance", ["type"] = "augment", }, [276] = { - ["id"] = "rune.stat_602344904", - ["text"] = "Transforms all Cold and Lightning modifiers on the item into equivalent Fire modifiers", + ["id"] = "rune.stat_408302348", + ["text"] = "Bonded: #% to Maximum Fire Resistance", ["type"] = "augment", }, [277] = { - ["id"] = "rune.stat_3134782172", - ["text"] = "Bonded: Regenerate #% of maximum Energy Shield per second", + ["id"] = "rune.stat_3788647247", + ["text"] = "Bonded: #% to Maximum Lightning Resistance", ["type"] = "augment", }, [278] = { - ["id"] = "rune.stat_1374654984", - ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["id"] = "rune.stat_1134865274", + ["text"] = "Bonded: #% to Quality of all Skills", ["type"] = "augment", }, [279] = { - ["id"] = "rune.stat_1799351208", - ["text"] = "Bonded: Allies in your Presence Regenerate #% of your Maximum Life per second", + ["id"] = "rune.stat_953010920", + ["text"] = "Bonded: #% to all Elemental Resistances", ["type"] = "augment", }, [280] = { - ["id"] = "rune.stat_1624833382", - ["text"] = "Transforms all Fire, Cold and Lightning modifiers on the item into equivalent Chaos modifiers", + ["id"] = "rune.stat_1404850498", + ["text"] = "Bonded: #% to all Maximum Elemental Resistances while on full Runic Ward", ["type"] = "augment", }, [281] = { - ["id"] = "rune.stat_155735928", - ["text"] = "Bonded: #% increased Glory generation", + ["id"] = "rune.stat_859452080", + ["text"] = "Bonded: #% to maximum Block chance", ["type"] = "augment", }, [282] = { - ["id"] = "rune.stat_2328443419", - ["text"] = "#% chance to create an additional Remnant", + ["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", }, [283] = { - ["id"] = "rune.stat_2051864330", - ["text"] = "Bonded: #% increased Life Regeneration rate", + ["id"] = "rune.stat_3308150554", + ["text"] = "Bonded: Adds # to # Fire damage to Attacks", ["type"] = "augment", }, [284] = { - ["id"] = "rune.stat_3444646646", - ["text"] = "Gain # Druidic Prowess when you Heavy Stun a Rare or Unique Enemy", + ["id"] = "rune.stat_3738367433", + ["text"] = "Bonded: Adds # to # Physical Damage to Attacks", ["type"] = "augment", }, [285] = { - ["id"] = "rune.stat_153777645", - ["text"] = "#% increased Area of Effect of Curses", + ["id"] = "rune.stat_858934954", + ["text"] = "Bonded: Allies in your Presence Gain #% of Damage as Extra Chaos Damage", ["type"] = "augment", }, [286] = { - ["id"] = "rune.stat_4168500604", - ["text"] = "Bonded: #% increased Life and Mana Recovery from Flasks", + ["id"] = "rune.stat_1799351208", + ["text"] = "Bonded: Allies in your Presence Regenerate #% of your Maximum Life per second", ["type"] = "augment", }, [287] = { - ["id"] = "rune.stat_1539508682", - ["text"] = "Companions in your Presence have #% to all Elemental Resistances", + ["id"] = "rune.stat_975988108", + ["text"] = "Bonded: Archon recovery period expires #% faster", ["type"] = "augment", }, [288] = { - ["id"] = "rune.stat_3552135623", - ["text"] = "Prevent #% of Damage from Deflected Hits", + ["id"] = "rune.stat_859085781", + ["text"] = "Bonded: Attacks have #% to Critical Hit Chance", ["type"] = "augment", }, [289] = { - ["id"] = "rune.stat_4065951768", - ["text"] = "#% increased Skill Effect Duration with Plant Skills", + ["id"] = "rune.stat_4012965551", + ["text"] = "Bonded: Banner Skills have #% increased Aura Magnitudes", ["type"] = "augment", }, [290] = { - ["id"] = "rune.stat_451260031", - ["text"] = "Bonded: # to maximum number of Elemental Infusions", + ["id"] = "rune.stat_1083521623", + ["text"] = "Bonded: Break #% increased Armour", ["type"] = "augment", }, [291] = { - ["id"] = "rune.stat_315791320", - ["text"] = "Aura Skills have #% increased Magnitudes", + ["id"] = "rune.stat_3990135792", + ["text"] = "Bonded: Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", ["type"] = "augment", }, [292] = { - ["id"] = "rune.stat_2448633171", - ["text"] = "#% of Damage taken bypasses Energy Shield", + ["id"] = "rune.stat_2804691275", + ["text"] = "Bonded: Buffs on you expire #% faster", ["type"] = "augment", }, [293] = { - ["id"] = "rune.stat_1816212773", - ["text"] = "Bonded: Companions have #% increased Area of Effect", + ["id"] = "rune.stat_1568578715", + ["text"] = "Bonded: Charms gain # charge per Second", ["type"] = "augment", }, [294] = { - ["id"] = "rune.stat_731781020", - ["text"] = "Flasks gain # charges per Second", + ["id"] = "rune.stat_1816212773", + ["text"] = "Bonded: Companions have #% increased Area of Effect", ["type"] = "augment", }, [295] = { - ["id"] = "rune.stat_1805182458", - ["text"] = "Companions have #% increased maximum Life", + ["id"] = "rune.stat_750452124", + ["text"] = "Bonded: Companions have #% increased maximum Life", ["type"] = "augment", }, [296] = { - ["id"] = "rune.stat_594547430", - ["text"] = "Remove a Damaging Ailment when you use a Command Skill", + ["id"] = "rune.stat_2342427527", + ["text"] = "Bonded: Companions in your Presence have #% to Chaos Resistance", ["type"] = "augment", }, [297] = { - ["id"] = "rune.stat_2829985691", - ["text"] = "#% increased Armour, Evasion and Energy Shield while your Companion is in your Presence", + ["id"] = "rune.stat_2691854696", + ["text"] = "Bonded: Damage of Enemies Hitting you is Unlucky ifyour Runic Ward has been damaged Recently", ["type"] = "augment", }, [298] = { - ["id"] = "rune.stat_2502507413", - ["text"] = "Bonded: #% increased Fire Damage", + ["id"] = "rune.stat_807013157", + ["text"] = "Bonded: Every Rage also grants #% increased Spell Damage", ["type"] = "augment", }, [299] = { - ["id"] = "rune.stat_330530785", - ["text"] = "#% increased Immobilisation buildup", + ["id"] = "rune.stat_1482283017", + ["text"] = "Bonded: Fissure Skills have +# to Limit", ["type"] = "augment", }, [300] = { - ["id"] = "rune.stat_3734640451", - ["text"] = "Adds # to # Cold Damage against Chilled Enemies", + ["id"] = "rune.stat_3816212813", + ["text"] = "Bonded: Gain # Rage on Melee Hit", ["type"] = "augment", }, [301] = { - ["id"] = "rune.stat_1777925108", - ["text"] = "Bonded: #% increased Attack Speed while your Companion is in your Presence", + ["id"] = "rune.stat_635535560", + ["text"] = "Bonded: Gain #% of Damage as Extra Physical Damage", ["type"] = "augment", }, [302] = { - ["id"] = "rune.stat_921688168", - ["text"] = "Bonded: # to Maximum Power Charges", + ["id"] = "rune.stat_1570901920", + ["text"] = "Bonded: Gain #% of Physical Damage as extra Chaos Damage", ["type"] = "augment", }, [303] = { - ["id"] = "rune.stat_477534953", - ["text"] = "Bonded: #% increased Block chance", + ["id"] = "rune.stat_2269618934", + ["text"] = "Bonded: Gain #% of maximum Life as Extra maximum Runic Ward", ["type"] = "augment", }, [304] = { - ["id"] = "rune.stat_3145796865", - ["text"] = "Mana Recovery from Regeneration is also applied to Runic Ward", + ["id"] = "rune.stat_1419386315", + ["text"] = "Bonded: Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "augment", }, [305] = { - ["id"] = "rune.stat_2390027291", - ["text"] = "When socketed, transforms all Fire and Lightning modifiers to equivalent Cold modifiers", + ["id"] = "rune.stat_2001460689", + ["text"] = "Bonded: Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "augment", }, [306] = { @@ -29233,628 +29257,628 @@ return { ["type"] = "augment", }, [307] = { - ["id"] = "rune.stat_2480498143", - ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["id"] = "rune.stat_4058552370", + ["text"] = "Bonded: Invocated Spells have #% chance to consume half as much Energy", ["type"] = "augment", }, [308] = { - ["id"] = "rune.stat_3816212813", - ["text"] = "Bonded: Gain # Rage on Melee Hit", + ["id"] = "rune.stat_1773391344", + ["text"] = "Bonded: Invocated skills have #% increased Maximum Energy", ["type"] = "augment", }, [309] = { - ["id"] = "rune.stat_227512798", - ["text"] = "Bonded: #% increased Chaos Damage", + ["id"] = "rune.stat_4254029169", + ["text"] = "Bonded: Meta Skills have #% increased Reservation Efficiency", ["type"] = "augment", }, [310] = { - ["id"] = "rune.stat_2339851060", - ["text"] = "Bonded: # to Maximum Endurance Charges", + ["id"] = "rune.stat_839375491", + ["text"] = "Bonded: Minions Revive #% faster", ["type"] = "augment", }, [311] = { - ["id"] = "rune.stat_1693515857", - ["text"] = "Gain #% of Damage as Extra Physical Damage per ten percent missing Mana", + ["id"] = "rune.stat_1728593484", + ["text"] = "Bonded: Minions deal #% increased Damage", ["type"] = "augment", }, [312] = { - ["id"] = "rune.stat_4282982513", - ["text"] = "Increases and Reductions to Movement Speed also apply to Energy Shield Recharge Rate", + ["id"] = "rune.stat_129783399", + ["text"] = "Bonded: Minions have #% additional Physical Damage Reduction", ["type"] = "augment", }, [313] = { - ["id"] = "rune.stat_2420303482", - ["text"] = "Bonded: Regenerate # Runic Ward per second", + ["id"] = "rune.stat_3449499156", + ["text"] = "Bonded: Minions have #% increased Area of Effect", ["type"] = "augment", }, [314] = { - ["id"] = "rune.stat_1396011622", - ["text"] = "Bonded: #% increased Runic Ward Regeneration Rate if you've dealt a Critical Hit Recently", + ["id"] = "rune.stat_1611856026", + ["text"] = "Bonded: Minions have #% increased Cooldown Recovery Rate for Command Skills", ["type"] = "augment", }, [315] = { - ["id"] = "rune.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", + ["id"] = "rune.stat_834058335", + ["text"] = "Bonded: Minions have #% increased Movement Speed", ["type"] = "augment", }, [316] = { - ["id"] = "rune.stat_2663359259", - ["text"] = "#% increased total Power counted by Warcries", + ["id"] = "rune.stat_901007505", + ["text"] = "Bonded: Minions have #% to all Elemental Resistances", ["type"] = "augment", }, [317] = { - ["id"] = "rune.stat_3132681620", - ["text"] = "Can roll Chronomancy modifiers", + ["id"] = "rune.stat_3793026369", + ["text"] = "Bonded: Plants have a #% chance to immediately Overgrow when they enter your Presence for the first time", ["type"] = "augment", }, [318] = { - ["id"] = "rune.stat_1585886916", - ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", + ["id"] = "rune.stat_1597408611", + ["text"] = "Bonded: Prevent #% of Damage from Deflected Hits", ["type"] = "augment", }, [319] = { - ["id"] = "rune.stat_3837707023", - ["text"] = "Minions have #% to Chaos Resistance", + ["id"] = "rune.stat_1528013281", + ["text"] = "Bonded: Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "augment", }, [320] = { - ["id"] = "rune.stat_1279298634", - ["text"] = "Bonded: #% increased Effect of Non-Damaging Ailments on you", + ["id"] = "rune.stat_2905013875", + ["text"] = "Bonded: Recover #% of Maximum Mana when you collect a Remnant", ["type"] = "augment", }, [321] = { - ["id"] = "rune.stat_3814102597", - ["text"] = "All damage taken bypasses Runic Ward", + ["id"] = "rune.stat_1823959929", + ["text"] = "Bonded: Recover #% of maximum Life when one of your Minions is Revived", ["type"] = "augment", }, [322] = { - ["id"] = "rune.stat_2838678452", - ["text"] = "+# to Stun Threshold per 10 maximum Runic Ward", + ["id"] = "rune.stat_2420303482", + ["text"] = "Bonded: Regenerate # Runic Ward per second", ["type"] = "augment", }, [323] = { - ["id"] = "rune.stat_632743438", - ["text"] = "Allies in your Presence have #% increased Movement Speed", + ["id"] = "rune.stat_3134782172", + ["text"] = "Bonded: Regenerate #% of maximum Energy Shield per second", ["type"] = "augment", }, [324] = { - ["id"] = "rune.stat_2681952497", - ["text"] = "Plants have a #% chance to immediately Overgrow when they enter your Presence for the first time", + ["id"] = "rune.stat_1981392722", + ["text"] = "Bonded: Regenerate #% of maximum Life per second", ["type"] = "augment", }, [325] = { - ["id"] = "rune.stat_3634438849", - ["text"] = "Bonded: #% increased maximum Runic Ward", + ["id"] = "rune.stat_3373098634", + ["text"] = "Bonded: Remnants can be collected from #% further away", ["type"] = "augment", }, [326] = { - ["id"] = "rune.stat_2191621386", - ["text"] = "#% of Armour also applies to Chaos Damage while on full Energy Shield", + ["id"] = "rune.stat_3227486464", + ["text"] = "Bonded: Remnants you create have #% increased effect", ["type"] = "augment", }, [327] = { - ["id"] = "rune.stat_2882351629", - ["text"] = "Companions deal #% more Damage for each different type of dead Companion you have", + ["id"] = "rune.stat_3286003349", + ["text"] = "Bonded: Storm Skills have +# to Limit", ["type"] = "augment", }, [328] = { - ["id"] = "rune.stat_3291917242", - ["text"] = "Bonded: #% chance for Charms you use to not consume Charges", + ["id"] = "rune.stat_864484981", + ["text"] = "Bonded: Temporary Minion Skills have # to Limit of Minions summoned", ["type"] = "augment", }, [329] = { - ["id"] = "rune.stat_1937310173", - ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", + ["id"] = "rune.stat_2248594298", + ["text"] = "Bonded: When Volatility on you explodes, you regain an equivalent amount of Volatility", ["type"] = "augment", }, [330] = { - ["id"] = "rune.stat_3033371881", - ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["id"] = "rune.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "augment", }, [331] = { - ["id"] = "rune.stat_3793026369", - ["text"] = "Bonded: Plants have a #% chance to immediately Overgrow when they enter your Presence for the first time", + ["id"] = "rune.stat_1963398329", + ["text"] = "Can have # additional Crafted Modifier", ["type"] = "augment", }, [332] = { - ["id"] = "rune.stat_1963398329", - ["text"] = "Can have # additional Crafted Modifier", + ["id"] = "rune.stat_1770091046", + ["text"] = "Can roll Berserking modifiers", ["type"] = "augment", }, [333] = { - ["id"] = "rune.stat_129783399", - ["text"] = "Bonded: Minions have #% additional Physical Damage Reduction", + ["id"] = "rune.stat_3132681620", + ["text"] = "Can roll Chronomancy modifiers", ["type"] = "augment", }, [334] = { - ["id"] = "rune.stat_3903510399", - ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", + ["id"] = "rune.stat_2547063279", + ["text"] = "Can roll Decay modifiers", ["type"] = "augment", }, [335] = { - ["id"] = "rune.stat_2547063279", - ["text"] = "Can roll Decay modifiers", + ["id"] = "rune.stat_1676950499", + ["text"] = "Can roll Destruction modifiers", ["type"] = "augment", }, [336] = { - ["id"] = "rune.stat_1984345909", - ["text"] = "Bonded: #% increased Withered Magnitude", + ["id"] = "rune.stat_201332984", + ["text"] = "Can roll Marksman modifiers", ["type"] = "augment", }, [337] = { - ["id"] = "rune.stat_2942439603", - ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", + ["id"] = "rune.stat_1927467683", + ["text"] = "Can roll Soul modifiers", ["type"] = "augment", }, [338] = { - ["id"] = "rune.stat_457982334", - ["text"] = "Bonded: #% increased Global Armour, Evasion and Energy Shield", + ["id"] = "rune.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", ["type"] = "augment", }, [339] = { - ["id"] = "rune.stat_4200448078", - ["text"] = "Companions in your Presence Gain #% of Damage as Extra Damage of a random Element", + ["id"] = "rune.stat_234296660", + ["text"] = "Companions deal #% increased Damage", ["type"] = "augment", }, [340] = { - ["id"] = "rune.stat_466741396", - ["text"] = "Bonded: #% increased Stun Threshold", + ["id"] = "rune.stat_2882351629", + ["text"] = "Companions deal #% more Damage for each different type of dead Companion you have", ["type"] = "augment", }, [341] = { - ["id"] = "rune.stat_751944209", - ["text"] = "#% increased Stun Threshold if you've been Stunned Recently", + ["id"] = "rune.stat_666077204", + ["text"] = "Companions have #% increased Attack Speed", ["type"] = "augment", }, [342] = { - ["id"] = "rune.stat_597420223", - ["text"] = "Bonded: #% increased Stun buildup while Shapeshifted", + ["id"] = "rune.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", ["type"] = "augment", }, [343] = { - ["id"] = "rune.stat_750452124", - ["text"] = "Bonded: Companions have #% increased maximum Life", + ["id"] = "rune.stat_4200448078", + ["text"] = "Companions in your Presence Gain #% of Damage as Extra Damage of a random Element", ["type"] = "augment", }, [344] = { - ["id"] = "rune.stat_2233558630", - ["text"] = "Bonded: #% increased Cold Damage", + ["id"] = "rune.stat_2652394701", + ["text"] = "Companions in your Presence gain # Rage on hit", ["type"] = "augment", }, [345] = { - ["id"] = "rune.stat_3087034595", - ["text"] = "#% increased Block chance while your Companion is in your Presence", + ["id"] = "rune.stat_1539508682", + ["text"] = "Companions in your Presence have #% to all Elemental Resistances", ["type"] = "augment", }, [346] = { - ["id"] = "rune.stat_3294435116", - ["text"] = "Bonded: #% to Lightning Resistance", + ["id"] = "rune.stat_1496740334", + ["text"] = "Convert #% of Requirements to Dexterity", ["type"] = "augment", }, [347] = { - ["id"] = "rune.stat_1995345015", - ["text"] = "Gain maximum Runic Ward equal to #% of this Weapon's maximum damage", + ["id"] = "rune.stat_2913012734", + ["text"] = "Convert #% of Requirements to Intelligence", ["type"] = "augment", }, [348] = { - ["id"] = "rune.stat_762761075", - ["text"] = "#% less Mana Regeneration Rate", + ["id"] = "rune.stat_1556124492", + ["text"] = "Convert #% of Requirements to Strength", ["type"] = "augment", }, [349] = { - ["id"] = "rune.stat_666077204", - ["text"] = "Companions have #% increased Attack Speed", + ["id"] = "rune.stat_935518591", + ["text"] = "Critical Hit chance is Lucky against Parried enemies", ["type"] = "augment", }, [350] = { - ["id"] = "rune.stat_3617669804", - ["text"] = "Gain #% of Damage as Extra Damage of a random Element", + ["id"] = "rune.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", ["type"] = "augment", }, [351] = { - ["id"] = "rune.stat_2652394701", - ["text"] = "Companions in your Presence gain # Rage on hit", + ["id"] = "rune.stat_1933674044", + ["text"] = "Destroys all Augment Sockets on the item to create a Jewel Socket", ["type"] = "augment", }, [352] = { - ["id"] = "rune.stat_1963589548", - ["text"] = "Every 4 seconds, gain Guard equal to #% of maximum Runic Ward for 2 seconds", + ["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", }, [353] = { - ["id"] = "rune.stat_1480688478", - ["text"] = "One of your Persistent Minions revives when an Offering expires", + ["id"] = "rune.stat_25786091", + ["text"] = "Enemies have no Critical Damage Bonus for # seconds after you Blind them", ["type"] = "augment", }, [354] = { - ["id"] = "rune.stat_2231410646", - ["text"] = "A random Skill that requires Glory generates #% of its maximum Glory when your Marks Activate", + ["id"] = "rune.stat_3370077792", + ["text"] = "Enemies you Critically Hit get #% increased Life Regeneration Rate for 4 seconds", ["type"] = "augment", }, [355] = { - ["id"] = "rune.stat_2897413282", - ["text"] = "# to all Attributes", + ["id"] = "rune.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", ["type"] = "augment", }, [356] = { - ["id"] = "rune.stat_1770091046", - ["text"] = "Can roll Berserking modifiers", + ["id"] = "rune.stat_1984310483", + ["text"] = "Enemies you Curse take #% increased Damage", ["type"] = "augment", }, [357] = { - ["id"] = "rune.stat_3972229254", - ["text"] = "#% of Armour also applies to Chaos Damage", + ["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", }, [358] = { - ["id"] = "rune.stat_769693350", - ["text"] = "Bonded: # Maximum Life per Level", + ["id"] = "rune.stat_1963589548", + ["text"] = "Every 4 seconds, gain Guard equal to #% of maximum Runic Ward for 2 seconds", ["type"] = "augment", }, [359] = { - ["id"] = "rune.stat_864484981", - ["text"] = "Bonded: Temporary Minion Skills have # to Limit of Minions summoned", + ["id"] = "rune.stat_731781020", + ["text"] = "Flasks gain # charges per Second", ["type"] = "augment", }, [360] = { - ["id"] = "rune.stat_818877178", - ["text"] = "#% increased Parried Debuff Magnitude", + ["id"] = "rune.stat_3444646646", + ["text"] = "Gain # Druidic Prowess when you Heavy Stun a Rare or Unique Enemy", ["type"] = "augment", }, [361] = { - ["id"] = "rune.stat_3986710072", - ["text"] = "Bonded: # to Maximum Frenzy Charges", + ["id"] = "rune.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "augment", }, [362] = { - ["id"] = "rune.stat_201058524", - ["text"] = "Bonded: #% increased Archon Buff duration", + ["id"] = "rune.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", ["type"] = "augment", }, [363] = { - ["id"] = "rune.stat_1134865274", - ["text"] = "Bonded: #% to Quality of all Skills", + ["id"] = "rune.stat_820939409", + ["text"] = "Gain # Mana per Enemy Hit with Attacks", ["type"] = "augment", }, [364] = { - ["id"] = "rune.stat_726496846", - ["text"] = "Idols socketed in this item gain the benefits of their Bonded modifiers", + ["id"] = "rune.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", ["type"] = "augment", }, [365] = { - ["id"] = "rune.stat_859452080", - ["text"] = "Bonded: #% to maximum Block chance", + ["id"] = "rune.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", ["type"] = "augment", }, [366] = { - ["id"] = "rune.stat_3203854378", - ["text"] = "#% increased Attack Speed if you have Blocked Recently", + ["id"] = "rune.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "augment", }, [367] = { - ["id"] = "rune.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["id"] = "rune.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "augment", }, [368] = { - ["id"] = "rune.stat_201332984", - ["text"] = "Can roll Marksman modifiers", + ["id"] = "rune.stat_3617669804", + ["text"] = "Gain #% of Damage as Extra Damage of a random Element", ["type"] = "augment", }, [369] = { - ["id"] = "rune.stat_2418344131", - ["text"] = "Bonded: #% increased Projectile Damage", + ["id"] = "rune.stat_3557924960", + ["text"] = "Gain #% of Damage as Extra Damage of a random Element perRune Socketed in Equipped Items", ["type"] = "augment", }, [370] = { - ["id"] = "rune.stat_1549287843", - ["text"] = "Projectiles have #% chance to Fork", + ["id"] = "rune.stat_731403740", + ["text"] = "Gain #% of Damage as Extra Damage of all Elements", ["type"] = "augment", }, [371] = { - ["id"] = "rune.stat_1811977226", - ["text"] = "Gain Onslaught for # seconds when your Marks Activate", + ["id"] = "rune.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "augment", }, [372] = { - ["id"] = "rune.stat_4224773381", - ["text"] = "Bonded: #% increased Endurance Charge Duration", + ["id"] = "rune.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "augment", }, [373] = { - ["id"] = "rune.stat_901336307", - ["text"] = "Gain 1 Endurance Charge on reaching Low Life, only once every 2 seconds", + ["id"] = "rune.stat_1693515857", + ["text"] = "Gain #% of Damage as Extra Physical Damage per ten percent missing Mana", ["type"] = "augment", }, [374] = { - ["id"] = "rune.stat_3863682550", - ["text"] = "Gain Guard equal to #% of maximum Life for 4 seconds on taking Savage Hit", + ["id"] = "rune.stat_386720106", + ["text"] = "Gain #% of maximum Life as Extra maximum Runic Ward", ["type"] = "augment", }, [375] = { - ["id"] = "rune.stat_95238288", - ["text"] = "Bonded: #% increased Damage for each type of Elemental Ailment on Enemy", + ["id"] = "rune.stat_901336307", + ["text"] = "Gain 1 Endurance Charge on reaching Low Life, only once every 2 seconds", ["type"] = "augment", }, [376] = { - ["id"] = "rune.stat_834058335", - ["text"] = "Bonded: Minions have #% increased Movement Speed", + ["id"] = "rune.stat_3903510399", + ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", ["type"] = "augment", }, [377] = { - ["id"] = "rune.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", + ["id"] = "rune.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", ["type"] = "augment", }, [378] = { - ["id"] = "rune.stat_2889034188", - ["text"] = "Targets that are Blinded, Maimed, and Bleeding cannot Evade your Hits", + ["id"] = "rune.stat_3863682550", + ["text"] = "Gain Guard equal to #% of maximum Life for 4 seconds on taking Savage Hit", ["type"] = "augment", }, [379] = { - ["id"] = "rune.stat_1416406066", - ["text"] = "#% increased Spirit", + ["id"] = "rune.stat_1811977226", + ["text"] = "Gain Onslaught for # seconds when your Marks Activate", ["type"] = "augment", }, [380] = { - ["id"] = "rune.stat_262946222", - ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", + ["id"] = "rune.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "augment", }, [381] = { - ["id"] = "rune.stat_1773391344", - ["text"] = "Bonded: Invocated skills have #% increased Maximum Energy", + ["id"] = "rune.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "augment", }, [382] = { - ["id"] = "rune.stat_2804691275", - ["text"] = "Bonded: Buffs on you expire #% faster", + ["id"] = "rune.stat_1995345015", + ["text"] = "Gain maximum Runic Ward equal to #% of this Weapon's maximum damage", ["type"] = "augment", }, [383] = { - ["id"] = "rune.stat_2001460689", - ["text"] = "Bonded: Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["id"] = "rune.stat_538981065", + ["text"] = "Grenades have #% chance to activate a second time", ["type"] = "augment", }, [384] = { - ["id"] = "rune.stat_1350120957", - ["text"] = "Bonded: #% faster Curse Activation", + ["id"] = "rune.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "augment", }, [385] = { - ["id"] = "rune.stat_627339348", - ["text"] = "Adds # to # Fire Damage to Attacks against Ignited Enemies", + ["id"] = "rune.stat_726496846", + ["text"] = "Idols socketed in this item gain the benefits of their Bonded modifiers", ["type"] = "augment", }, [386] = { - ["id"] = "rune.stat_858934954", - ["text"] = "Bonded: Allies in your Presence Gain #% of Damage as Extra Chaos Damage", + ["id"] = "rune.stat_3570773271", + ["text"] = "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", ["type"] = "augment", }, [387] = { - ["id"] = "rune.stat_386720106", - ["text"] = "Gain #% of maximum Life as Extra maximum Runic Ward", + ["id"] = "rune.stat_4282982513", + ["text"] = "Increases and Reductions to Movement Speed also apply to Energy Shield Recharge Rate", ["type"] = "augment", }, [388] = { - ["id"] = "rune.stat_2342427527", - ["text"] = "Bonded: Companions in your Presence have #% to Chaos Resistance", + ["id"] = "rune.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", ["type"] = "augment", }, [389] = { - ["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", + ["id"] = "rune.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "augment", }, [390] = { - ["id"] = "rune.stat_2122116143", - ["text"] = "Bonded: #% increased Life Recovery Rate while your Companion is in your Presence", + ["id"] = "rune.stat_3473409233", + ["text"] = "Lose #% of maximum Life per second while Sprinting", ["type"] = "augment", }, [391] = { - ["id"] = "rune.stat_1568578715", - ["text"] = "Bonded: Charms gain # charge per Second", + ["id"] = "rune.stat_3145796865", + ["text"] = "Mana Recovery from Regeneration is also applied to Runic Ward", ["type"] = "augment", }, [392] = { - ["id"] = "rune.stat_1779262102", - ["text"] = "#% increased Mana Recovery rate while your Companion is in your Presence", + ["id"] = "rune.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "augment", }, [393] = { - ["id"] = "rune.stat_1927467683", - ["text"] = "Can roll Soul modifiers", + ["id"] = "rune.stat_3742865955", + ["text"] = "Minions deal #% increased Damage with Command Skills", ["type"] = "augment", }, [394] = { - ["id"] = "rune.stat_1676950499", - ["text"] = "Can roll Destruction modifiers", + ["id"] = "rune.stat_1433756169", + ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", ["type"] = "augment", }, [395] = { - ["id"] = "rune.stat_718638445", - ["text"] = "# Suffix Modifier allowed", + ["id"] = "rune.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", ["type"] = "augment", }, [396] = { - ["id"] = "rune.stat_678691134", - ["text"] = "Bonded: #% increased Blind Effect", + ["id"] = "rune.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", ["type"] = "augment", }, [397] = { - ["id"] = "rune.stat_2579974553", - ["text"] = "Runic Ward Regeneration Rate is doubled", + ["id"] = "rune.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", ["type"] = "augment", }, [398] = { - ["id"] = "rune.stat_2651867031", - ["text"] = "Bonded: #% increased Critical Hit Chance", + ["id"] = "rune.stat_540694930", + ["text"] = "Minions in your Presence have Onslaught while you are on Low Runic Ward", ["type"] = "augment", }, [399] = { - ["id"] = "rune.stat_3370077792", - ["text"] = "Enemies you Critically Hit get #% increased Life Regeneration Rate for 4 seconds", + ["id"] = "rune.stat_889552744", + ["text"] = "Minions take #% of Physical Damage as Lightning Damage", ["type"] = "augment", }, [400] = { - ["id"] = "rune.stat_1879206848", - ["text"] = "#% increased effect of Fully Broken Armour", + ["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", }, [401] = { - ["id"] = "rune.stat_25786091", - ["text"] = "Enemies have no Critical Damage Bonus for # seconds after you Blind them", + ["id"] = "rune.stat_1480688478", + ["text"] = "One of your Persistent Minions revives when an Offering expires", ["type"] = "augment", }, [402] = { - ["id"] = "rune.stat_1323701627", - ["text"] = "When you generate a Power Charge, Allies in your Presence generate that Charge instead", + ["id"] = "rune.stat_2681952497", + ["text"] = "Plants have a #% chance to immediately Overgrow when they enter your Presence for the first time", ["type"] = "augment", }, [403] = { - ["id"] = "rune.stat_3745435177", - ["text"] = "Bonded: #% increased maximum Energy Shield if you've consumed a Power Charge Recently", + ["id"] = "rune.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", ["type"] = "augment", }, [404] = { - ["id"] = "rune.stat_1073847159", - ["text"] = "# to Spirit per Idol socketed in your Equipment", + ["id"] = "rune.stat_1549287843", + ["text"] = "Projectiles have #% chance to Fork", ["type"] = "augment", }, [405] = { - ["id"] = "rune.stat_2012253422", - ["text"] = "Bonded: #% increased Spirit", + ["id"] = "rune.stat_1678831767", + ["text"] = "Recover # Life when you Block", ["type"] = "augment", }, [406] = { - ["id"] = "rune.stat_3557924960", - ["text"] = "Gain #% of Damage as Extra Damage of a random Element perRune Socketed in Equipped Items", + ["id"] = "rune.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "augment", }, [407] = { - ["id"] = "rune.stat_3037356641", - ["text"] = "Bonded: #% increased Armour if you've consumed an Endurance Charge Recently", + ["id"] = "rune.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", ["type"] = "augment", }, [408] = { - ["id"] = "rune.stat_3257561708", - ["text"] = "When you generate an Endurance Charge, Allies in your Presence generate that Charge instead", + ["id"] = "rune.stat_3515226849", + ["text"] = "Recover #% of maximum Runic Ward when one of your Reviving Minions is Killed", ["type"] = "augment", }, [409] = { - ["id"] = "rune.stat_1083521623", - ["text"] = "Bonded: Break #% increased Armour", + ["id"] = "rune.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", ["type"] = "augment", }, [410] = { - ["id"] = "rune.stat_2959554008", - ["text"] = "Bonded: #% increased Evasion Rating if you've consumed a Frenzy Charge Recently", + ["id"] = "rune.stat_3482326075", + ["text"] = "Remnants can be collected from #% further away", ["type"] = "augment", }, [411] = { - ["id"] = "rune.stat_4106964676", - ["text"] = "Bonded: #% increased Movement Speed", + ["id"] = "rune.stat_1999910726", + ["text"] = "Remnants you create have #% increased effect", ["type"] = "augment", }, [412] = { - ["id"] = "rune.stat_3143918757", - ["text"] = "#% increased Glory generation", + ["id"] = "rune.stat_594547430", + ["text"] = "Remove a Damaging Ailment when you use a Command Skill", ["type"] = "augment", }, [413] = { - ["id"] = "rune.stat_1933674044", - ["text"] = "Destroys all Augment Sockets on the item to create a Jewel Socket", + ["id"] = "rune.stat_103706408", + ["text"] = "Rolls only the minimum or maximum Damage value for Physical Damage", ["type"] = "augment", }, [414] = { - ["id"] = "rune.stat_4052037485", - ["text"] = "# to maximum Energy Shield (Local)", + ["id"] = "rune.stat_2579974553", + ["text"] = "Runic Ward Regeneration Rate is doubled", ["type"] = "augment", }, [415] = { - ["id"] = "rune.stat_53045048", - ["text"] = "# to Evasion Rating (Local)", + ["id"] = "rune.stat_1585886916", + ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", ["type"] = "augment", }, [416] = { - ["id"] = "rune.stat_3353733343", - ["text"] = "When you generate a Frenzy Charge, Allies in your Presence generate that Charge instead", + ["id"] = "rune.stat_2942439603", + ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", ["type"] = "augment", }, [417] = { - ["id"] = "rune.stat_3128773415", - ["text"] = "Your speed is Unaffected by Slows while Sprinting", + ["id"] = "rune.stat_267552601", + ["text"] = "Spell damage Penetrates #% of enemy Elemental Resistances while on Low Runic Ward", ["type"] = "augment", }, [418] = { - ["id"] = "rune.stat_1751756891", - ["text"] = "Bonded: #% increased Runic Ward Cost Efficiency", + ["id"] = "rune.stat_1755296234", + ["text"] = "Targets can be affected by # of your Poisons at the same time", ["type"] = "augment", }, [419] = { - ["id"] = "rune.stat_3035971497", - ["text"] = "Attacks spend #% of your maximum Runic Ward if possible to gain that much added Physical damage", + ["id"] = "rune.stat_2889034188", + ["text"] = "Targets that are Blinded, Maimed, and Bleeding cannot Evade your Hits", ["type"] = "augment", }, [420] = { - ["id"] = "rune.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["id"] = "rune.stat_602344904", + ["text"] = "Transforms all Cold and Lightning modifiers on the item into equivalent Fire modifiers", ["type"] = "augment", }, [421] = { - ["id"] = "rune.stat_3842722415", - ["text"] = "Bonded: #% increased Movement Speed while Sprinting", + ["id"] = "rune.stat_1433896639", + ["text"] = "Transforms all Fire and Cold modifiers on the item into equivalent Lightning modifiers", ["type"] = "augment", }, [422] = { - ["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", + ["id"] = "rune.stat_1624833382", + ["text"] = "Transforms all Fire, Cold and Lightning modifiers on the item into equivalent Chaos modifiers", ["type"] = "augment", }, [423] = { - ["id"] = "rune.stat_2530800730", - ["text"] = "Bonded: #% increased Skill Effect Duration with Plant Skills", + ["id"] = "rune.stat_2390027291", + ["text"] = "When socketed, transforms all Fire and Lightning modifiers to equivalent Cold modifiers", ["type"] = "augment", }, [424] = { - ["id"] = "rune.stat_3038857346", - ["text"] = "Bonded: #% increased Stun Buildup", + ["id"] = "rune.stat_3353733343", + ["text"] = "When you generate a Frenzy Charge, Allies in your Presence generate that Charge instead", ["type"] = "augment", }, [425] = { - ["id"] = "rune.stat_3724971246", - ["text"] = "Bonded: #% increased Area of Effect for Attacks", + ["id"] = "rune.stat_1323701627", + ["text"] = "When you generate a Power Charge, Allies in your Presence generate that Charge instead", ["type"] = "augment", }, [426] = { - ["id"] = "rune.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", + ["id"] = "rune.stat_3257561708", + ["text"] = "When you generate an Endurance Charge, Allies in your Presence generate that Charge instead", ["type"] = "augment", }, [427] = { - ["id"] = "rune.stat_3655769732", - ["text"] = "#% to Quality of all Skills", + ["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", }, [428] = { - ["id"] = "rune.stat_2590797182", - ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", + ["id"] = "rune.stat_1937310173", + ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", ["type"] = "augment", }, [429] = { - ["id"] = "rune.stat_2045949233", - ["text"] = "#% chance for Slam Skills you use yourself to cause an additional Aftershock", + ["id"] = "rune.stat_4058681894", + ["text"] = "You have no Critical Damage Bonus", ["type"] = "augment", }, [430] = { - ["id"] = "rune.stat_3835589934", - ["text"] = "Bonded: #% increased Damage while your Companion is in your Presence", + ["id"] = "rune.stat_1919509054", + ["text"] = "Your Energy Shield Recharge starts when your Minions are Reformed", ["type"] = "augment", }, [431] = { - ["id"] = "rune.stat_587431675", - ["text"] = "#% increased Critical Hit Chance", + ["id"] = "rune.stat_3128773415", + ["text"] = "Your speed is Unaffected by Slows while Sprinting", ["type"] = "augment", }, }, @@ -29864,2153 +29888,2153 @@ return { [8] = { ["entries"] = { [1] = { - ["id"] = "desecrated.stat_1050105434", - ["text"] = "# to maximum Mana", + ["id"] = "desecrated.stat_3325883026", + ["text"] = "# Life Regeneration per second", ["type"] = "desecrated", }, [2] = { - ["id"] = "desecrated.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "desecrated.stat_2122183138", + ["text"] = "# Mana gained when you Block", ["type"] = "desecrated", }, [3] = { - ["id"] = "desecrated.stat_4052037485", - ["text"] = "# to maximum Energy Shield (Local)", + ["id"] = "desecrated.stat_243380454", + ["text"] = "# additional Rare Monsters are spawned from Abysses", ["type"] = "desecrated", }, [4] = { - ["id"] = "desecrated.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "desecrated.stat_258119672", + ["text"] = "# metre to Dodge Roll distance", ["type"] = "desecrated", }, [5] = { - ["id"] = "desecrated.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "desecrated.stat_287294012", + ["text"] = "# to # Fire Thorns damage per 100 maximum Life", ["type"] = "desecrated", }, [6] = { - ["id"] = "desecrated.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "desecrated.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", ["type"] = "desecrated", }, [7] = { - ["id"] = "desecrated.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "desecrated.stat_803737631", + ["text"] = "# to Accuracy Rating", ["type"] = "desecrated", }, [8] = { - ["id"] = "desecrated.stat_4015621042", - ["text"] = "#% increased Energy Shield", + ["id"] = "desecrated.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", ["type"] = "desecrated", }, [9] = { - ["id"] = "desecrated.stat_53045048", - ["text"] = "# to Evasion Rating (Local)", + ["id"] = "desecrated.stat_809229260", + ["text"] = "# to Armour", ["type"] = "desecrated", }, [10] = { - ["id"] = "desecrated.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "desecrated.stat_3484657501", + ["text"] = "# to Armour (Local)", ["type"] = "desecrated", }, [11] = { - ["id"] = "desecrated.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "desecrated.stat_3261801346", + ["text"] = "# to Dexterity", ["type"] = "desecrated", }, [12] = { - ["id"] = "desecrated.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["id"] = "desecrated.stat_2300185227", + ["text"] = "# to Dexterity and Intelligence", ["type"] = "desecrated", }, [13] = { - ["id"] = "desecrated.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["id"] = "desecrated.stat_2144192055", + ["text"] = "# to Evasion Rating", ["type"] = "desecrated", }, [14] = { - ["id"] = "desecrated.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "desecrated.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", ["type"] = "desecrated", }, [15] = { - ["id"] = "desecrated.stat_124859000", - ["text"] = "#% increased Evasion Rating (Local)", + ["id"] = "desecrated.stat_328541901", + ["text"] = "# to Intelligence", ["type"] = "desecrated", }, [16] = { - ["id"] = "desecrated.stat_3984865854", - ["text"] = "#% increased Spirit", + ["id"] = "desecrated.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", ["type"] = "desecrated", }, [17] = { - ["id"] = "desecrated.stat_691932474", - ["text"] = "# to Accuracy Rating (Local)", + ["id"] = "desecrated.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", ["type"] = "desecrated", }, [18] = { - ["id"] = "desecrated.stat_1754445556", - ["text"] = "Adds # to # Lightning damage to Attacks", + ["id"] = "desecrated.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", ["type"] = "desecrated", }, [19] = { - ["id"] = "desecrated.stat_1195319608", - ["text"] = "#% increased Energy Shield from Equipped Body Armour", + ["id"] = "desecrated.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", ["type"] = "desecrated", }, [20] = { - ["id"] = "desecrated.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "desecrated.stat_9187492", + ["text"] = "# to Level of all Melee Skills", ["type"] = "desecrated", }, [21] = { - ["id"] = "desecrated.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "desecrated.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", ["type"] = "desecrated", }, [22] = { - ["id"] = "desecrated.stat_3465022881", - ["text"] = "#% to Lightning and Chaos Resistances", + ["id"] = "desecrated.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", ["type"] = "desecrated", }, [23] = { - ["id"] = "desecrated.stat_3325883026", - ["text"] = "# Life Regeneration per second", + ["id"] = "desecrated.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", ["type"] = "desecrated", }, [24] = { - ["id"] = "desecrated.stat_3981240776", - ["text"] = "# to Spirit", + ["id"] = "desecrated.stat_4283407333", + ["text"] = "# to Level of all Skills", ["type"] = "desecrated", }, [25] = { - ["id"] = "desecrated.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "desecrated.stat_124131830", + ["text"] = "# to Level of all Spell Skills", ["type"] = "desecrated", }, [26] = { - ["id"] = "desecrated.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", + ["id"] = "desecrated.stat_1181501418", + ["text"] = "# to Maximum Rage", ["type"] = "desecrated", }, [27] = { - ["id"] = "desecrated.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", + ["id"] = "desecrated.stat_3981240776", + ["text"] = "# to Spirit", ["type"] = "desecrated", }, [28] = { - ["id"] = "desecrated.stat_378817135", - ["text"] = "#% to Fire and Chaos Resistances", + ["id"] = "desecrated.stat_2704225257", + ["text"] = "# to Spirit", ["type"] = "desecrated", }, [29] = { - ["id"] = "desecrated.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", + ["id"] = "desecrated.stat_4080418644", + ["text"] = "# to Strength", ["type"] = "desecrated", }, [30] = { - ["id"] = "desecrated.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "desecrated.stat_538848803", + ["text"] = "# to Strength and Dexterity", ["type"] = "desecrated", }, [31] = { - ["id"] = "desecrated.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "desecrated.stat_1535626285", + ["text"] = "# to Strength and Intelligence", ["type"] = "desecrated", }, [32] = { - ["id"] = "desecrated.stat_709508406", - ["text"] = "Adds # to # Fire Damage", + ["id"] = "desecrated.stat_915769802", + ["text"] = "# to Stun Threshold", ["type"] = "desecrated", }, [33] = { - ["id"] = "desecrated.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "desecrated.stat_1379411836", + ["text"] = "# to all Attributes", ["type"] = "desecrated", }, [34] = { - ["id"] = "desecrated.stat_587431675", - ["text"] = "#% increased Critical Hit Chance", + ["id"] = "desecrated.stat_3489782002", + ["text"] = "# to maximum Energy Shield", ["type"] = "desecrated", }, [35] = { - ["id"] = "desecrated.stat_4067062424", - ["text"] = "Adds # to # Cold damage to Attacks", + ["id"] = "desecrated.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "desecrated", }, [36] = { - ["id"] = "desecrated.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "desecrated.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "desecrated", }, [37] = { - ["id"] = "desecrated.stat_3484657501", - ["text"] = "# to Armour (Local)", + ["id"] = "desecrated.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "desecrated", }, [38] = { - ["id"] = "desecrated.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + ["id"] = "desecrated.stat_4097212302", + ["text"] = "# to maximum number of Elemental Infusions", ["type"] = "desecrated", }, [39] = { - ["id"] = "desecrated.stat_274716455", - ["text"] = "#% increased Critical Spell Damage Bonus", + ["id"] = "desecrated.stat_1823942939", + ["text"] = "# to maximum number of Summoned Ballista Totems", ["type"] = "desecrated", }, [40] = { - ["id"] = "desecrated.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "desecrated.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", ["type"] = "desecrated", }, [41] = { - ["id"] = "desecrated.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "desecrated.stat_1347539079", + ["text"] = "#% Surpassing chance to fire an additional Projectile", ["type"] = "desecrated", }, [42] = { - ["id"] = "desecrated.stat_328541901", - ["text"] = "# to Intelligence", + ["id"] = "desecrated.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", ["type"] = "desecrated", }, [43] = { - ["id"] = "desecrated.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", + ["id"] = "desecrated.stat_501873429", + ["text"] = "#% chance for Charms you use to not consume Charges", ["type"] = "desecrated", }, [44] = { - ["id"] = "desecrated.stat_55876295", - ["text"] = "Leeches #% of Physical Damage as Life", + ["id"] = "desecrated.stat_311641062", + ["text"] = "#% chance for Flasks you use to not consume Charges", ["type"] = "desecrated", }, [45] = { - ["id"] = "desecrated.stat_1062208444", - ["text"] = "#% increased Armour (Local)", + ["id"] = "desecrated.stat_2466011626", + ["text"] = "#% chance for Lightning Damage with Hits to be Lucky", ["type"] = "desecrated", }, [46] = { - ["id"] = "desecrated.stat_3393628375", - ["text"] = "#% to Cold and Chaos Resistances", + ["id"] = "desecrated.stat_3950000557", + ["text"] = "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", ["type"] = "desecrated", }, [47] = { - ["id"] = "desecrated.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["id"] = "desecrated.stat_2749595652", + ["text"] = "#% chance for Skills to retain 40% of Glory on use", ["type"] = "desecrated", }, [48] = { - ["id"] = "desecrated.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["id"] = "desecrated.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", ["type"] = "desecrated", }, [49] = { - ["id"] = "desecrated.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["id"] = "desecrated.stat_599320227", + ["text"] = "#% chance for Trigger skills to refund half of Energy Spent", ["type"] = "desecrated", }, [50] = { - ["id"] = "desecrated.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "desecrated.stat_2705185939", + ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", ["type"] = "desecrated", }, [51] = { - ["id"] = "desecrated.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["id"] = "desecrated.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", ["type"] = "desecrated", }, [52] = { - ["id"] = "desecrated.stat_915769802", - ["text"] = "# to Stun Threshold", + ["id"] = "desecrated.stat_446027070", + ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Hit", ["type"] = "desecrated", }, [53] = { - ["id"] = "desecrated.stat_2910761524", - ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", + ["id"] = "desecrated.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", ["type"] = "desecrated", }, [54] = { - ["id"] = "desecrated.stat_3714003708", - ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["id"] = "desecrated.stat_795138349", + ["text"] = "#% chance to Poison on Hit", ["type"] = "desecrated", }, [55] = { - ["id"] = "desecrated.stat_1940865751", - ["text"] = "Adds # to # Physical Damage", + ["id"] = "desecrated.stat_4258524206", + ["text"] = "#% chance to build an additional Combo on Hit", ["type"] = "desecrated", }, [56] = { - ["id"] = "desecrated.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "desecrated.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", ["type"] = "desecrated", }, [57] = { - ["id"] = "desecrated.stat_3033371881", - ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["id"] = "desecrated.stat_1949851472", + ["text"] = "#% chance when a Charm is used to use another Charm without consuming Charges", ["type"] = "desecrated", }, [58] = { - ["id"] = "desecrated.stat_53386210", - ["text"] = "#% increased Spirit Reservation Efficiency", + ["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_3176481473", - ["text"] = "#% increased Spell Damage while on Full Energy Shield", + ["id"] = "desecrated.stat_2760344900", + ["text"] = "#% chance when you Reload a Crossbow to be immediate", ["type"] = "desecrated", }, [60] = { - ["id"] = "desecrated.stat_1202301673", - ["text"] = "# to Level of all Projectile Skills", + ["id"] = "desecrated.stat_1104825894", + ["text"] = "#% faster Curse Activation", ["type"] = "desecrated", }, [61] = { - ["id"] = "desecrated.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", + ["id"] = "desecrated.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "desecrated", }, [62] = { - ["id"] = "desecrated.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", + ["id"] = "desecrated.stat_624954515", + ["text"] = "#% increased Accuracy Rating", ["type"] = "desecrated", }, [63] = { - ["id"] = "desecrated.stat_1241625305", - ["text"] = "#% increased Damage with Bow Skills", + ["id"] = "desecrated.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", ["type"] = "desecrated", }, [64] = { - ["id"] = "desecrated.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["id"] = "desecrated.stat_2158617060", + ["text"] = "#% increased Archon Buff duration", ["type"] = "desecrated", }, [65] = { - ["id"] = "desecrated.stat_234296660", - ["text"] = "Companions deal #% increased Damage", + ["id"] = "desecrated.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "desecrated", }, [66] = { - ["id"] = "desecrated.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", + ["id"] = "desecrated.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", ["type"] = "desecrated", }, [67] = { - ["id"] = "desecrated.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["id"] = "desecrated.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", ["type"] = "desecrated", }, [68] = { - ["id"] = "desecrated.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", + ["id"] = "desecrated.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "desecrated", }, [69] = { - ["id"] = "desecrated.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", + ["id"] = "desecrated.stat_1062208444", + ["text"] = "#% increased Armour (Local)", ["type"] = "desecrated", }, [70] = { - ["id"] = "desecrated.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "desecrated.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", ["type"] = "desecrated", }, [71] = { - ["id"] = "desecrated.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", + ["id"] = "desecrated.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", ["type"] = "desecrated", }, [72] = { - ["id"] = "desecrated.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", + ["id"] = "desecrated.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", ["type"] = "desecrated", }, [73] = { - ["id"] = "desecrated.stat_970213192", - ["text"] = "#% increased Skill Speed", + ["id"] = "desecrated.stat_1015576579", + ["text"] = "#% increased Armour from Equipped Body Armour", ["type"] = "desecrated", }, [74] = { - ["id"] = "desecrated.stat_518292764", - ["text"] = "#% to Critical Hit Chance", + ["id"] = "desecrated.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", ["type"] = "desecrated", }, [75] = { - ["id"] = "desecrated.stat_1604736568", - ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["id"] = "desecrated.stat_2523933828", + ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "desecrated", }, [76] = { - ["id"] = "desecrated.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", + ["id"] = "desecrated.stat_2843214518", + ["text"] = "#% increased Attack Damage", ["type"] = "desecrated", }, [77] = { - ["id"] = "desecrated.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "desecrated.stat_4246007234", + ["text"] = "#% increased Attack Damage while on Low Life", ["type"] = "desecrated", }, [78] = { - ["id"] = "desecrated.stat_2704225257", - ["text"] = "# to Spirit", + ["id"] = "desecrated.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "desecrated", }, [79] = { - ["id"] = "desecrated.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "desecrated.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "desecrated", }, [80] = { - ["id"] = "desecrated.stat_693180608", - ["text"] = "#% increased Damage while your Companion is in your Presence", + ["id"] = "desecrated.stat_314741699", + ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", ["type"] = "desecrated", }, [81] = { - ["id"] = "desecrated.stat_2144192055", - ["text"] = "# to Evasion Rating", + ["id"] = "desecrated.stat_299996", + ["text"] = "#% increased Attack Speed while your Companion is in your Presence", ["type"] = "desecrated", }, [82] = { - ["id"] = "desecrated.stat_2604619892", - ["text"] = "#% increased Duration of Elemental Ailments on Enemies", + ["id"] = "desecrated.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", ["type"] = "desecrated", }, [83] = { - ["id"] = "desecrated.stat_1535626285", - ["text"] = "# to Strength and Intelligence", + ["id"] = "desecrated.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", ["type"] = "desecrated", }, [84] = { - ["id"] = "desecrated.stat_669069897", - ["text"] = "Leeches #% of Physical Damage as Mana", + ["id"] = "desecrated.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", ["type"] = "desecrated", }, [85] = { - ["id"] = "desecrated.stat_1373860425", - ["text"] = "#% increased Spell Damage with Spells that cost Life", + ["id"] = "desecrated.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", ["type"] = "desecrated", }, [86] = { - ["id"] = "desecrated.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["id"] = "desecrated.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", ["type"] = "desecrated", }, [87] = { - ["id"] = "desecrated.stat_1379411836", - ["text"] = "# to all Attributes", + ["id"] = "desecrated.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", ["type"] = "desecrated", }, [88] = { - ["id"] = "desecrated.stat_3490187949", - ["text"] = "Area contains # additional Abysses", + ["id"] = "desecrated.stat_1585769763", + ["text"] = "#% increased Blind Effect", ["type"] = "desecrated", }, [89] = { - ["id"] = "desecrated.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", + ["id"] = "desecrated.stat_4147897060", + ["text"] = "#% increased Block chance", ["type"] = "desecrated", }, [90] = { - ["id"] = "desecrated.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "desecrated.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", ["type"] = "desecrated", }, [91] = { - ["id"] = "desecrated.stat_1136768410", - ["text"] = "#% increased Cast Speed when on Low Life", + ["id"] = "desecrated.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "desecrated", }, [92] = { - ["id"] = "desecrated.stat_538848803", - ["text"] = "# to Strength and Dexterity", + ["id"] = "desecrated.stat_1518586897", + ["text"] = "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", ["type"] = "desecrated", }, [93] = { - ["id"] = "desecrated.stat_666077204", - ["text"] = "Companions have #% increased Attack Speed", + ["id"] = "desecrated.stat_656291658", + ["text"] = "#% increased Cast Speed when on Full Life", ["type"] = "desecrated", }, [94] = { - ["id"] = "desecrated.stat_3509362078", - ["text"] = "#% increased Evasion Rating from Equipped Body Armour", + ["id"] = "desecrated.stat_1136768410", + ["text"] = "#% increased Cast Speed when on Low Life", ["type"] = "desecrated", }, [95] = { - ["id"] = "desecrated.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["id"] = "desecrated.stat_1914226331", + ["text"] = "#% increased Cast Speed while on Full Mana", ["type"] = "desecrated", }, [96] = { - ["id"] = "desecrated.stat_1839076647", - ["text"] = "#% increased Projectile Damage", + ["id"] = "desecrated.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "desecrated", }, [97] = { - ["id"] = "desecrated.stat_4101445926", - ["text"] = "#% increased Mana Cost Efficiency", + ["id"] = "desecrated.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", ["type"] = "desecrated", }, [98] = { - ["id"] = "desecrated.stat_3544050945", - ["text"] = "#% of Spell Mana Cost Converted to Life Cost", + ["id"] = "desecrated.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", ["type"] = "desecrated", }, [99] = { - ["id"] = "desecrated.stat_9187492", - ["text"] = "# to Level of all Melee Skills", + ["id"] = "desecrated.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", ["type"] = "desecrated", }, [100] = { - ["id"] = "desecrated.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", + ["id"] = "desecrated.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "desecrated", }, [101] = { - ["id"] = "desecrated.stat_3932115504", - ["text"] = "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", + ["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_1037193709", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "desecrated.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "desecrated", }, [103] = { - ["id"] = "desecrated.stat_4246007234", - ["text"] = "#% increased Attack Damage while on Low Life", + ["id"] = "desecrated.stat_1544773869", + ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", ["type"] = "desecrated", }, [104] = { - ["id"] = "desecrated.stat_1177404658", - ["text"] = "#% increased Global Armour, Evasion and Energy Shield", + ["id"] = "desecrated.stat_263495202", + ["text"] = "#% increased Cost Efficiency", ["type"] = "desecrated", }, [105] = { - ["id"] = "desecrated.stat_2706625504", - ["text"] = "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", + ["id"] = "desecrated.stat_3350279336", + ["text"] = "#% increased Cost Efficiency of Attacks", ["type"] = "desecrated", }, [106] = { - ["id"] = "desecrated.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "desecrated.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", ["type"] = "desecrated", }, [107] = { - ["id"] = "desecrated.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", + ["id"] = "desecrated.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", ["type"] = "desecrated", }, [108] = { - ["id"] = "desecrated.stat_1200678966", - ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["id"] = "desecrated.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", ["type"] = "desecrated", }, [109] = { - ["id"] = "desecrated.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", + ["id"] = "desecrated.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", ["type"] = "desecrated", }, [110] = { - ["id"] = "desecrated.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["id"] = "desecrated.stat_1045789614", + ["text"] = "#% increased Critical Hit Chance against Marked Enemies", ["type"] = "desecrated", }, [111] = { - ["id"] = "desecrated.stat_2300185227", - ["text"] = "# to Dexterity and Intelligence", + ["id"] = "desecrated.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", ["type"] = "desecrated", }, [112] = { - ["id"] = "desecrated.stat_2843214518", - ["text"] = "#% increased Attack Damage", + ["id"] = "desecrated.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "desecrated", }, [113] = { - ["id"] = "desecrated.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", + ["id"] = "desecrated.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", ["type"] = "desecrated", }, [114] = { - ["id"] = "desecrated.stat_2557965901", - ["text"] = "Leech #% of Physical Attack Damage as Life", + ["id"] = "desecrated.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", ["type"] = "desecrated", }, [115] = { - ["id"] = "desecrated.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", + ["id"] = "desecrated.stat_3563080185", + ["text"] = "#% increased Culling Strike Threshold", ["type"] = "desecrated", }, [116] = { - ["id"] = "desecrated.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["id"] = "desecrated.stat_3824372849", + ["text"] = "#% increased Curse Duration", ["type"] = "desecrated", }, [117] = { - ["id"] = "desecrated.stat_4256531808", - ["text"] = "Abyss Pits in Area are twice as likely to have Rewards", + ["id"] = "desecrated.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", ["type"] = "desecrated", }, [118] = { - ["id"] = "desecrated.stat_2337295272", - ["text"] = "Minions deal #% increased Damage if you've Hit Recently", + ["id"] = "desecrated.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", ["type"] = "desecrated", }, [119] = { - ["id"] = "desecrated.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", + ["id"] = "desecrated.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", ["type"] = "desecrated", }, [120] = { - ["id"] = "desecrated.stat_2158617060", - ["text"] = "#% increased Archon Buff duration", + ["id"] = "desecrated.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", ["type"] = "desecrated", }, [121] = { - ["id"] = "desecrated.stat_3891355829|1", - ["text"] = "Upgrades Radius to Medium", + ["id"] = "desecrated.stat_2543331226", + ["text"] = "#% increased Damage while you have a Totem", ["type"] = "desecrated", }, [122] = { - ["id"] = "desecrated.stat_4188894176", - ["text"] = "#% increased Damage with Bows", + ["id"] = "desecrated.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", ["type"] = "desecrated", }, [123] = { - ["id"] = "desecrated.stat_1168851547", - ["text"] = "Natural Rare Monsters in Area have # extra Abyssal Modifier", + ["id"] = "desecrated.stat_693180608", + ["text"] = "#% increased Damage while your Companion is in your Presence", ["type"] = "desecrated", }, [124] = { - ["id"] = "desecrated.stat_944630113", - ["text"] = "Abysses spawn #% increased Monsters", + ["id"] = "desecrated.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", ["type"] = "desecrated", }, [125] = { - ["id"] = "desecrated.stat_4019237939", - ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["id"] = "desecrated.stat_4188894176", + ["text"] = "#% increased Damage with Bows", ["type"] = "desecrated", }, [126] = { - ["id"] = "desecrated.stat_293638271", - ["text"] = "#% increased chance to Shock", + ["id"] = "desecrated.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", ["type"] = "desecrated", }, [127] = { - ["id"] = "desecrated.stat_360553763", - ["text"] = "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", + ["id"] = "desecrated.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "desecrated", }, [128] = { - ["id"] = "desecrated.stat_473429811", - ["text"] = "#% increased Freeze Buildup", + ["id"] = "desecrated.stat_1181419800", + ["text"] = "#% increased Damage with Maces", ["type"] = "desecrated", }, [129] = { - ["id"] = "desecrated.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", + ["id"] = "desecrated.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", ["type"] = "desecrated", }, [130] = { - ["id"] = "desecrated.stat_2468595624", - ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies within 2m", + ["id"] = "desecrated.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", ["type"] = "desecrated", }, [131] = { - ["id"] = "desecrated.stat_1303248024", - ["text"] = "#% increased Magnitude of Ailments you inflict", + ["id"] = "desecrated.stat_2696027455", + ["text"] = "#% increased Damage with Spears", ["type"] = "desecrated", }, [132] = { - ["id"] = "desecrated.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", + ["id"] = "desecrated.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", ["type"] = "desecrated", }, [133] = { - ["id"] = "desecrated.stat_2825946427", - ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", + ["id"] = "desecrated.stat_3040571529", + ["text"] = "#% increased Deflection Rating", ["type"] = "desecrated", }, [134] = { - ["id"] = "desecrated.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", + ["id"] = "desecrated.stat_4139681126", + ["text"] = "#% increased Dexterity", ["type"] = "desecrated", }, [135] = { - ["id"] = "desecrated.stat_1776945532", - ["text"] = "Enemies you kill have a #% chance to explode, dealing a quarter of their maximum Life as Chaos damage", + ["id"] = "desecrated.stat_1692879867", + ["text"] = "#% increased Duration of Bleeding on You", ["type"] = "desecrated", }, [136] = { - ["id"] = "desecrated.stat_3131442032", - ["text"] = "#% increased Grenade Damage", + ["id"] = "desecrated.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", ["type"] = "desecrated", }, [137] = { - ["id"] = "desecrated.stat_3561837752", - ["text"] = "#% of Leech is Instant", + ["id"] = "desecrated.stat_2604619892", + ["text"] = "#% increased Duration of Elemental Ailments on Enemies", ["type"] = "desecrated", }, [138] = { - ["id"] = "desecrated.stat_3067892458", - ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["id"] = "desecrated.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "desecrated", }, [139] = { - ["id"] = "desecrated.stat_299996", - ["text"] = "#% increased Attack Speed while your Companion is in your Presence", + ["id"] = "desecrated.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", ["type"] = "desecrated", }, [140] = { - ["id"] = "desecrated.stat_2573406169", - ["text"] = "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", + ["id"] = "desecrated.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", ["type"] = "desecrated", }, [141] = { - ["id"] = "desecrated.stat_3398301358", - ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["id"] = "desecrated.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", ["type"] = "desecrated", }, [142] = { - ["id"] = "desecrated.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "desecrated.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", ["type"] = "desecrated", }, [143] = { - ["id"] = "desecrated.stat_2741291867", - ["text"] = "Area is overrun by the Abyssal", + ["id"] = "desecrated.stat_3141070085", + ["text"] = "#% increased Elemental Damage", ["type"] = "desecrated", }, [144] = { - ["id"] = "desecrated.stat_656461285", - ["text"] = "#% increased Intelligence", + ["id"] = "desecrated.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", ["type"] = "desecrated", }, [145] = { - ["id"] = "desecrated.stat_1015576579", - ["text"] = "#% increased Armour from Equipped Body Armour", + ["id"] = "desecrated.stat_4015621042", + ["text"] = "#% increased Energy Shield", ["type"] = "desecrated", }, [146] = { - ["id"] = "desecrated.stat_2768835289", - ["text"] = "#% increased Spell Physical Damage", + ["id"] = "desecrated.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "desecrated", }, [147] = { - ["id"] = "desecrated.stat_243380454", - ["text"] = "# additional Rare Monsters are spawned from Abysses", + ["id"] = "desecrated.stat_1079292660", + ["text"] = "#% increased Energy Shield Recharge Rate if you've Blocked Recently", ["type"] = "desecrated", }, [148] = { - ["id"] = "desecrated.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", + ["id"] = "desecrated.stat_1195319608", + ["text"] = "#% increased Energy Shield from Equipped Body Armour", ["type"] = "desecrated", }, [149] = { - ["id"] = "desecrated.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", + ["id"] = "desecrated.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", ["type"] = "desecrated", }, [150] = { - ["id"] = "desecrated.stat_3174700878", - ["text"] = "#% increased Energy Shield from Equipped Focus", + ["id"] = "desecrated.stat_2106365538", + ["text"] = "#% increased Evasion Rating", ["type"] = "desecrated", }, [151] = { - ["id"] = "desecrated.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", + ["id"] = "desecrated.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "desecrated", }, [152] = { - ["id"] = "desecrated.stat_416040624", - ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["id"] = "desecrated.stat_3509362078", + ["text"] = "#% increased Evasion Rating from Equipped Body Armour", ["type"] = "desecrated", }, [153] = { - ["id"] = "desecrated.stat_2387539034", - ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", + ["id"] = "desecrated.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "desecrated", }, [154] = { - ["id"] = "desecrated.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", + ["id"] = "desecrated.stat_2074866941", + ["text"] = "#% increased Exposure Effect", ["type"] = "desecrated", }, [155] = { - ["id"] = "desecrated.stat_2586152168", - ["text"] = "Archon recovery period expires #% faster", + ["id"] = "desecrated.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "desecrated", }, [156] = { - ["id"] = "desecrated.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", + ["id"] = "desecrated.stat_3858572996", + ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", ["type"] = "desecrated", }, [157] = { - ["id"] = "desecrated.stat_1850249186", - ["text"] = "#% increased Spell Damage per 100 maximum Mana", + ["id"] = "desecrated.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", ["type"] = "desecrated", }, [158] = { - ["id"] = "desecrated.stat_1772247089", - ["text"] = "#% increased chance to inflict Ailments", + ["id"] = "desecrated.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", ["type"] = "desecrated", }, [159] = { - ["id"] = "desecrated.stat_1772929282", - ["text"] = "Enemies you Curse have #% to Chaos Resistance", + ["id"] = "desecrated.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", ["type"] = "desecrated", }, [160] = { - ["id"] = "desecrated.stat_3491815140", - ["text"] = "#% increased Spell Damage per 100 Maximum Life", + ["id"] = "desecrated.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", ["type"] = "desecrated", }, [161] = { - ["id"] = "desecrated.stat_2174054121", - ["text"] = "#% chance to inflict Bleeding on Hit", + ["id"] = "desecrated.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", ["type"] = "desecrated", }, [162] = { - ["id"] = "desecrated.stat_2278777540", - ["text"] = "Abysses lead to an Abyssal Depths", + ["id"] = "desecrated.stat_473429811", + ["text"] = "#% increased Freeze Buildup", ["type"] = "desecrated", }, [163] = { - ["id"] = "desecrated.stat_124131830", - ["text"] = "# to Level of all Spell Skills", + ["id"] = "desecrated.stat_232701452", + ["text"] = "#% increased Freeze Buildup if you've consumed an Power Charge Recently", ["type"] = "desecrated", }, [164] = { - ["id"] = "desecrated.stat_324210709", - ["text"] = "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", + ["id"] = "desecrated.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", ["type"] = "desecrated", }, [165] = { - ["id"] = "desecrated.stat_2480498143", - ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["id"] = "desecrated.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", ["type"] = "desecrated", }, [166] = { - ["id"] = "desecrated.stat_436406826", - ["text"] = "Players are Marked for Death for # secondsafter killing a Rare or Unique monster", + ["id"] = "desecrated.stat_1177404658", + ["text"] = "#% increased Global Armour, Evasion and Energy Shield", ["type"] = "desecrated", }, [167] = { - ["id"] = "desecrated.stat_1827854662", - ["text"] = "Area contains an additional Incubator Queen", + ["id"] = "desecrated.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", ["type"] = "desecrated", }, [168] = { - ["id"] = "desecrated.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", + ["id"] = "desecrated.stat_3143918757", + ["text"] = "#% increased Glory generation", ["type"] = "desecrated", }, [169] = { - ["id"] = "desecrated.stat_1999910726", - ["text"] = "Remnants you create have #% increased effect", + ["id"] = "desecrated.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", ["type"] = "desecrated", }, [170] = { - ["id"] = "desecrated.stat_3398283493", - ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", + ["id"] = "desecrated.stat_3131442032", + ["text"] = "#% increased Grenade Damage", ["type"] = "desecrated", }, [171] = { - ["id"] = "desecrated.stat_4139681126", - ["text"] = "#% increased Dexterity", + ["id"] = "desecrated.stat_1365232741", + ["text"] = "#% increased Grenade Duration", ["type"] = "desecrated", }, [172] = { - ["id"] = "desecrated.stat_2975078312", - ["text"] = "Abyssal Monsters grant #% increased Experience", + ["id"] = "desecrated.stat_1697951953", + ["text"] = "#% increased Hazard Damage", ["type"] = "desecrated", }, [173] = { - ["id"] = "desecrated.stat_2975078312", - ["text"] = "Abyss Monsters in your Maps grant #% increased Experience", + ["id"] = "desecrated.stat_3274422940", + ["text"] = "#% increased Ice Crystal Life", ["type"] = "desecrated", }, [174] = { - ["id"] = "desecrated.stat_1381474422", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", + ["id"] = "desecrated.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", ["type"] = "desecrated", }, [175] = { - ["id"] = "desecrated.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["id"] = "desecrated.stat_330530785", + ["text"] = "#% increased Immobilisation buildup", ["type"] = "desecrated", }, [176] = { - ["id"] = "desecrated.stat_2839066308", - ["text"] = "#% increased amount of Mana Leeched", + ["id"] = "desecrated.stat_656461285", + ["text"] = "#% increased Intelligence", ["type"] = "desecrated", }, [177] = { - ["id"] = "desecrated.stat_2466011626", - ["text"] = "#% chance for Lightning Damage with Hits to be Lucky", + ["id"] = "desecrated.stat_565784293", + ["text"] = "#% increased Knockback Distance", ["type"] = "desecrated", }, [178] = { - ["id"] = "desecrated.stat_414821772", - ["text"] = "Increases and Reductions to Projectile Speed also apply to Damage with Bows", + ["id"] = "desecrated.stat_310945763", + ["text"] = "#% increased Life Cost Efficiency", ["type"] = "desecrated", }, [179] = { - ["id"] = "desecrated.stat_2725205297", - ["text"] = "#% increased Magnitude of Unholy Might buffs you grant", + ["id"] = "desecrated.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", ["type"] = "desecrated", }, [180] = { - ["id"] = "desecrated.stat_314741699", - ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", + ["id"] = "desecrated.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", ["type"] = "desecrated", }, [181] = { - ["id"] = "desecrated.stat_734614379", - ["text"] = "#% increased Strength", + ["id"] = "desecrated.stat_2116424886", + ["text"] = "#% increased Life Regeneration Rate while moving", ["type"] = "desecrated", }, [182] = { - ["id"] = "desecrated.stat_491450213", - ["text"] = "Minions have #% increased Critical Hit Chance", + ["id"] = "desecrated.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", ["type"] = "desecrated", }, [183] = { - ["id"] = "desecrated.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", + ["id"] = "desecrated.stat_1261076060", + ["text"] = "#% increased Life Regeneration rate during Effect of any Life Flask", ["type"] = "desecrated", }, [184] = { - ["id"] = "desecrated.stat_153777645", - ["text"] = "#% increased Area of Effect of Curses", + ["id"] = "desecrated.stat_1263695895", + ["text"] = "#% increased Light Radius", ["type"] = "desecrated", }, [185] = { - ["id"] = "desecrated.stat_3891355829|2", - ["text"] = "Upgrades Radius to Large", + ["id"] = "desecrated.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "desecrated", }, [186] = { - ["id"] = "desecrated.stat_2074866941", - ["text"] = "#% increased Exposure Effect", + ["id"] = "desecrated.stat_797289402", + ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", ["type"] = "desecrated", }, [187] = { - ["id"] = "desecrated.stat_4270096386", - ["text"] = "Hits have #% increased Critical Hit Chance against you", + ["id"] = "desecrated.stat_3873704640", + ["text"] = "#% increased Magic Monsters", ["type"] = "desecrated", }, [188] = { - ["id"] = "desecrated.stat_4157613372", - ["text"] = "Abyss Pits have #% chance to spawn all Monsters as at least Magic", + ["id"] = "desecrated.stat_4043376133", + ["text"] = "#% increased Magnitude of Abyssal Wasting you inflict", ["type"] = "desecrated", }, [189] = { - ["id"] = "desecrated.stat_1388221282", - ["text"] = "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", + ["id"] = "desecrated.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", ["type"] = "desecrated", }, [190] = { - ["id"] = "desecrated.stat_3350279336", - ["text"] = "#% increased Cost Efficiency of Attacks", + ["id"] = "desecrated.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", ["type"] = "desecrated", }, [191] = { - ["id"] = "desecrated.stat_983749596", - ["text"] = "#% increased maximum Life", + ["id"] = "desecrated.stat_1381474422", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", ["type"] = "desecrated", }, [192] = { - ["id"] = "desecrated.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["id"] = "desecrated.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "desecrated", }, [193] = { - ["id"] = "desecrated.stat_3665922113", - ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["id"] = "desecrated.stat_916833363", + ["text"] = "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", ["type"] = "desecrated", }, [194] = { - ["id"] = "desecrated.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", + ["id"] = "desecrated.stat_4259875040", + ["text"] = "#% increased Magnitude of Impales inflicted with Spells", ["type"] = "desecrated", }, [195] = { - ["id"] = "desecrated.stat_2822644689", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["id"] = "desecrated.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", ["type"] = "desecrated", }, [196] = { - ["id"] = "desecrated.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", + ["id"] = "desecrated.stat_324210709", + ["text"] = "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", ["type"] = "desecrated", }, [197] = { - ["id"] = "desecrated.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["id"] = "desecrated.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", ["type"] = "desecrated", }, [198] = { - ["id"] = "desecrated.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", + ["id"] = "desecrated.stat_2725205297", + ["text"] = "#% increased Magnitude of Unholy Might buffs you grant", ["type"] = "desecrated", }, [199] = { - ["id"] = "desecrated.stat_1135928777", - ["text"] = "#% increased Attack Speed with Crossbows", + ["id"] = "desecrated.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", ["type"] = "desecrated", }, [200] = { - ["id"] = "desecrated.stat_1365232741", - ["text"] = "#% increased Grenade Duration", + ["id"] = "desecrated.stat_3396435291", + ["text"] = "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", ["type"] = "desecrated", }, [201] = { - ["id"] = "desecrated.stat_3007552094", - ["text"] = "You have Unholy Might", + ["id"] = "desecrated.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", ["type"] = "desecrated", }, [202] = { - ["id"] = "desecrated.stat_1852872083", - ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["id"] = "desecrated.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", ["type"] = "desecrated", }, [203] = { - ["id"] = "desecrated.stat_1137305356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["id"] = "desecrated.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "desecrated", }, [204] = { - ["id"] = "desecrated.stat_3222402650", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["id"] = "desecrated.stat_1327522346", + ["text"] = "#% increased Mana Regeneration Rate while moving", ["type"] = "desecrated", }, [205] = { - ["id"] = "desecrated.stat_809229260", - ["text"] = "# to Armour", + ["id"] = "desecrated.stat_3308030688", + ["text"] = "#% increased Mana Regeneration Rate while stationary", ["type"] = "desecrated", }, [206] = { - ["id"] = "desecrated.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", + ["id"] = "desecrated.stat_1002362373", + ["text"] = "#% increased Melee Damage", ["type"] = "desecrated", }, [207] = { - ["id"] = "desecrated.stat_3040571529", - ["text"] = "#% increased Deflection Rating", + ["id"] = "desecrated.stat_3028809864", + ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", ["type"] = "desecrated", }, [208] = { - ["id"] = "desecrated.stat_3668351662", - ["text"] = "#% increased Shock Duration", + ["id"] = "desecrated.stat_3526763442", + ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", ["type"] = "desecrated", }, [209] = { - ["id"] = "desecrated.stat_440490623", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["id"] = "desecrated.stat_1913583994", + ["text"] = "#% increased Monster Attack Speed", ["type"] = "desecrated", }, [210] = { - ["id"] = "desecrated.stat_1751584857", - ["text"] = "Monsters inflict # Grasping Vine on Hit", + ["id"] = "desecrated.stat_2488361432", + ["text"] = "#% increased Monster Cast Speed", ["type"] = "desecrated", }, [211] = { - ["id"] = "desecrated.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["id"] = "desecrated.stat_1890519597", + ["text"] = "#% increased Monster Damage", ["type"] = "desecrated", }, [212] = { - ["id"] = "desecrated.stat_1022759479", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["id"] = "desecrated.stat_2306522833", + ["text"] = "#% increased Monster Movement Speed", ["type"] = "desecrated", }, [213] = { - ["id"] = "desecrated.stat_1854213750", - ["text"] = "Minions have #% increased Critical Damage Bonus", + ["id"] = "desecrated.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "desecrated", }, [214] = { - ["id"] = "desecrated.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["id"] = "desecrated.stat_2590797182", + ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", ["type"] = "desecrated", }, [215] = { - ["id"] = "desecrated.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["id"] = "desecrated.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", ["type"] = "desecrated", }, [216] = { - ["id"] = "desecrated.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", + ["id"] = "desecrated.stat_818877178", + ["text"] = "#% increased Parried Debuff Magnitude", ["type"] = "desecrated", }, [217] = { - ["id"] = "desecrated.stat_1967040409", - ["text"] = "Spell Skills have #% increased Area of Effect", + ["id"] = "desecrated.stat_1569159338", + ["text"] = "#% increased Parry Damage", ["type"] = "desecrated", }, [218] = { - ["id"] = "desecrated.stat_1702195217", - ["text"] = "#% to Block chance", + ["id"] = "desecrated.stat_1509134228", + ["text"] = "#% increased Physical Damage", ["type"] = "desecrated", }, [219] = { - ["id"] = "desecrated.stat_1692879867", - ["text"] = "#% increased Duration of Bleeding on You", + ["id"] = "desecrated.stat_3473929743", + ["text"] = "#% increased Pin Buildup", ["type"] = "desecrated", }, [220] = { - ["id"] = "desecrated.stat_427684353", - ["text"] = "#% increased Damage with Crossbows", + ["id"] = "desecrated.stat_2011656677", + ["text"] = "#% increased Poison Duration", ["type"] = "desecrated", }, [221] = { - ["id"] = "desecrated.stat_1078309513", - ["text"] = "Invocated Spells deal #% increased Damage", + ["id"] = "desecrated.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", ["type"] = "desecrated", }, [222] = { - ["id"] = "desecrated.stat_1165163804", - ["text"] = "#% increased Attack Speed with Spears", + ["id"] = "desecrated.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", ["type"] = "desecrated", }, [223] = { - ["id"] = "desecrated.stat_2456523742", - ["text"] = "#% increased Critical Damage Bonus with Spears", + ["id"] = "desecrated.stat_1839076647", + ["text"] = "#% increased Projectile Damage", ["type"] = "desecrated", }, [224] = { - ["id"] = "desecrated.stat_21071013", - ["text"] = "Herald Skills deal #% increased Damage", + ["id"] = "desecrated.stat_3596695232", + ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", ["type"] = "desecrated", }, [225] = { - ["id"] = "desecrated.stat_232701452", - ["text"] = "#% increased Freeze Buildup if you've consumed an Power Charge Recently", + ["id"] = "desecrated.stat_3759663284", + ["text"] = "#% increased Projectile Speed", ["type"] = "desecrated", }, [226] = { - ["id"] = "desecrated.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", + ["id"] = "desecrated.stat_3793155082", + ["text"] = "#% increased Rare Monsters", ["type"] = "desecrated", }, [227] = { - ["id"] = "desecrated.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["id"] = "desecrated.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", ["type"] = "desecrated", }, [228] = { - ["id"] = "desecrated.stat_2768899959", - ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["id"] = "desecrated.stat_710476746", + ["text"] = "#% increased Reload Speed", ["type"] = "desecrated", }, [229] = { - ["id"] = "desecrated.stat_2112395885", - ["text"] = "#% increased amount of Life Leeched", + ["id"] = "desecrated.stat_3413635271", + ["text"] = "#% increased Reservation Efficiency of Companion Skills", ["type"] = "desecrated", }, [230] = { - ["id"] = "desecrated.stat_538241406", - ["text"] = "Damaging Ailments deal damage #% faster", + ["id"] = "desecrated.stat_1697191405", + ["text"] = "#% increased Reservation Efficiency of Herald Skills", ["type"] = "desecrated", }, [231] = { - ["id"] = "desecrated.stat_2704905000", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["id"] = "desecrated.stat_3668351662", + ["text"] = "#% increased Shock Duration", ["type"] = "desecrated", }, [232] = { - ["id"] = "desecrated.stat_3292710273", - ["text"] = "Gain # Rage when Hit by an Enemy", + ["id"] = "desecrated.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", ["type"] = "desecrated", }, [233] = { - ["id"] = "desecrated.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", + ["id"] = "desecrated.stat_970213192", + ["text"] = "#% increased Skill Speed", ["type"] = "desecrated", }, [234] = { - ["id"] = "desecrated.stat_1829102168", - ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["id"] = "desecrated.stat_3313255158", + ["text"] = "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", ["type"] = "desecrated", }, [235] = { - ["id"] = "desecrated.stat_3301100256", - ["text"] = "#% increased Poison Duration on you", + ["id"] = "desecrated.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", ["type"] = "desecrated", }, [236] = { - ["id"] = "desecrated.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", + ["id"] = "desecrated.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "desecrated", }, [237] = { - ["id"] = "desecrated.stat_2896115339", - ["text"] = "#% of Elemental Damage taken Recouped as Energy Shield", + ["id"] = "desecrated.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "desecrated", }, [238] = { - ["id"] = "desecrated.stat_1060572482", - ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["id"] = "desecrated.stat_3491815140", + ["text"] = "#% increased Spell Damage per 100 Maximum Life", ["type"] = "desecrated", }, [239] = { - ["id"] = "desecrated.stat_4234573345", - ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["id"] = "desecrated.stat_1850249186", + ["text"] = "#% increased Spell Damage per 100 maximum Mana", ["type"] = "desecrated", }, [240] = { - ["id"] = "desecrated.stat_916833363", - ["text"] = "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", + ["id"] = "desecrated.stat_3176481473", + ["text"] = "#% increased Spell Damage while on Full Energy Shield", ["type"] = "desecrated", }, [241] = { - ["id"] = "desecrated.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", + ["id"] = "desecrated.stat_4136346606", + ["text"] = "#% increased Spell Damage while wielding a Melee Weapon", ["type"] = "desecrated", }, [242] = { - ["id"] = "desecrated.stat_455816363", - ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["id"] = "desecrated.stat_1373860425", + ["text"] = "#% increased Spell Damage with Spells that cost Life", ["type"] = "desecrated", }, [243] = { - ["id"] = "desecrated.stat_2359002191", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["id"] = "desecrated.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", ["type"] = "desecrated", }, [244] = { - ["id"] = "desecrated.stat_2589572664", - ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Mana", + ["id"] = "desecrated.stat_3984865854", + ["text"] = "#% increased Spirit", ["type"] = "desecrated", }, [245] = { - ["id"] = "desecrated.stat_4097212302", - ["text"] = "# to maximum number of Elemental Infusions", + ["id"] = "desecrated.stat_53386210", + ["text"] = "#% increased Spirit Reservation Efficiency", ["type"] = "desecrated", }, [246] = { - ["id"] = "desecrated.stat_599320227", - ["text"] = "#% chance for Trigger skills to refund half of Energy Spent", + ["id"] = "desecrated.stat_734614379", + ["text"] = "#% increased Strength", ["type"] = "desecrated", }, [247] = { - ["id"] = "desecrated.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", + ["id"] = "desecrated.stat_239367161", + ["text"] = "#% increased Stun Buildup", ["type"] = "desecrated", }, [248] = { - ["id"] = "desecrated.stat_2077117738", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["id"] = "desecrated.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", ["type"] = "desecrated", }, [249] = { - ["id"] = "desecrated.stat_2696027455", - ["text"] = "#% increased Damage with Spears", + ["id"] = "desecrated.stat_748522257", + ["text"] = "#% increased Stun Duration", ["type"] = "desecrated", }, [250] = { - ["id"] = "desecrated.stat_4258524206", - ["text"] = "#% chance to build an additional Combo on Hit", + ["id"] = "desecrated.stat_680068163", + ["text"] = "#% increased Stun Threshold", ["type"] = "desecrated", }, [251] = { - ["id"] = "desecrated.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", + ["id"] = "desecrated.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "desecrated", }, [252] = { - ["id"] = "desecrated.stat_3824372849", - ["text"] = "#% increased Curse Duration", + ["id"] = "desecrated.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", ["type"] = "desecrated", }, [253] = { - ["id"] = "desecrated.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "desecrated.stat_1315743832", + ["text"] = "#% increased Thorns damage", ["type"] = "desecrated", }, [254] = { - ["id"] = "desecrated.stat_945774314", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["id"] = "desecrated.stat_3851254963", + ["text"] = "#% increased Totem Damage", ["type"] = "desecrated", }, [255] = { - ["id"] = "desecrated.stat_3407849389", - ["text"] = "#% reduced effect of Curses on you", + ["id"] = "desecrated.stat_686254215", + ["text"] = "#% increased Totem Life", ["type"] = "desecrated", }, [256] = { - ["id"] = "desecrated.stat_1569101201", - ["text"] = "Empowered Attacks deal #% increased Damage", + ["id"] = "desecrated.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", ["type"] = "desecrated", }, [257] = { - ["id"] = "desecrated.stat_710476746", - ["text"] = "#% increased Reload Speed", + ["id"] = "desecrated.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", ["type"] = "desecrated", }, [258] = { - ["id"] = "desecrated.stat_3641543553", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["id"] = "desecrated.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", ["type"] = "desecrated", }, [259] = { - ["id"] = "desecrated.stat_3791899485", - ["text"] = "#% increased Ignite Magnitude", + ["id"] = "desecrated.stat_1316278494", + ["text"] = "#% increased Warcry Speed", ["type"] = "desecrated", }, [260] = { - ["id"] = "desecrated.stat_2854751904", - ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["id"] = "desecrated.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", ["type"] = "desecrated", }, [261] = { - ["id"] = "desecrated.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", + ["id"] = "desecrated.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", ["type"] = "desecrated", }, [262] = { - ["id"] = "desecrated.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", + ["id"] = "desecrated.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", ["type"] = "desecrated", }, [263] = { - ["id"] = "desecrated.stat_1374654984", - ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["id"] = "desecrated.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", ["type"] = "desecrated", }, [264] = { - ["id"] = "desecrated.stat_1327522346", - ["text"] = "#% increased Mana Regeneration Rate while moving", + ["id"] = "desecrated.stat_3481083201", + ["text"] = "#% increased chance to Poison", ["type"] = "desecrated", }, [265] = { - ["id"] = "desecrated.stat_2466785537", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["id"] = "desecrated.stat_293638271", + ["text"] = "#% increased chance to Shock", ["type"] = "desecrated", }, [266] = { - ["id"] = "desecrated.stat_624954515", - ["text"] = "#% increased Accuracy Rating", + ["id"] = "desecrated.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", ["type"] = "desecrated", }, [267] = { - ["id"] = "desecrated.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["id"] = "desecrated.stat_242637938", + ["text"] = "#% increased chance to inflict Bleeding", ["type"] = "desecrated", }, [268] = { - ["id"] = "desecrated.stat_1352561456", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["id"] = "desecrated.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", ["type"] = "desecrated", }, [269] = { - ["id"] = "desecrated.stat_3552135623", - ["text"] = "Prevent #% of Damage from Deflected Hits", + ["id"] = "desecrated.stat_1180552088", + ["text"] = "#% increased effect of Archon Buffs on you", ["type"] = "desecrated", }, [270] = { - ["id"] = "desecrated.stat_3146310524", - ["text"] = "Dazes on Hit", + ["id"] = "desecrated.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "desecrated", }, [271] = { - ["id"] = "desecrated.stat_1426522529", - ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["id"] = "desecrated.stat_983749596", + ["text"] = "#% increased maximum Life", ["type"] = "desecrated", }, [272] = { - ["id"] = "desecrated.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", + ["id"] = "desecrated.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "desecrated", }, [273] = { - ["id"] = "desecrated.stat_849987426", - ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", + ["id"] = "desecrated.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", ["type"] = "desecrated", }, [274] = { - ["id"] = "desecrated.stat_3413635271", - ["text"] = "#% increased Reservation Efficiency of Companion Skills", + ["id"] = "desecrated.stat_3796523155", + ["text"] = "#% less effect of Curses on Monsters", ["type"] = "desecrated", }, [275] = { - ["id"] = "desecrated.stat_2760344900", - ["text"] = "#% chance when you Reload a Crossbow to be immediate", + ["id"] = "desecrated.stat_3376488707", + ["text"] = "#% maximum Player Resistances", ["type"] = "desecrated", }, [276] = { - ["id"] = "desecrated.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["id"] = "desecrated.stat_95249895", + ["text"] = "#% more Monster Life", ["type"] = "desecrated", }, [277] = { - ["id"] = "desecrated.stat_2481353198", - ["text"] = "#% increased Block chance (Local)", + ["id"] = "desecrated.stat_3972229254", + ["text"] = "#% of Armour also applies to Chaos Damage", ["type"] = "desecrated", }, [278] = { - ["id"] = "desecrated.stat_2590797182", - ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", + ["id"] = "desecrated.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "desecrated", }, [279] = { - ["id"] = "desecrated.stat_239367161", - ["text"] = "#% increased Stun Buildup", + ["id"] = "desecrated.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "desecrated", }, [280] = { - ["id"] = "desecrated.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", + ["id"] = "desecrated.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "desecrated", }, [281] = { - ["id"] = "desecrated.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", + ["id"] = "desecrated.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "desecrated", }, [282] = { - ["id"] = "desecrated.stat_138421180", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["id"] = "desecrated.stat_2896115339", + ["text"] = "#% of Elemental Damage taken Recouped as Energy Shield", ["type"] = "desecrated", }, [283] = { - ["id"] = "desecrated.stat_3482326075", - ["text"] = "Remnants can be collected from #% further away", + ["id"] = "desecrated.stat_3561837752", + ["text"] = "#% of Leech is Instant", ["type"] = "desecrated", }, [284] = { - ["id"] = "desecrated.stat_3283482523", - ["text"] = "#% increased Attack Speed with Quarterstaves", + ["id"] = "desecrated.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", ["type"] = "desecrated", }, [285] = { - ["id"] = "desecrated.stat_1740229525", - ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", + ["id"] = "desecrated.stat_321970274", + ["text"] = "#% of Physical Damage taken as Lightning while your Shield is raised", ["type"] = "desecrated", }, [286] = { - ["id"] = "desecrated.stat_517664839", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + ["id"] = "desecrated.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "desecrated", }, [287] = { - ["id"] = "desecrated.stat_2748665614", - ["text"] = "#% increased maximum Mana", + ["id"] = "desecrated.stat_3544050945", + ["text"] = "#% of Spell Mana Cost Converted to Life Cost", ["type"] = "desecrated", }, [288] = { - ["id"] = "desecrated.stat_2301718443", - ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["id"] = "desecrated.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", ["type"] = "desecrated", }, [289] = { - ["id"] = "desecrated.stat_3480095574", - ["text"] = "Charms applied to you have #% increased Effect", + ["id"] = "desecrated.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", ["type"] = "desecrated", }, [290] = { - ["id"] = "desecrated.stat_446027070", - ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Hit", + ["id"] = "desecrated.stat_644456512", + ["text"] = "#% reduced Flask Charges used", ["type"] = "desecrated", }, [291] = { - ["id"] = "desecrated.stat_3865605585", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["id"] = "desecrated.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", ["type"] = "desecrated", }, [292] = { - ["id"] = "desecrated.stat_1697191405", - ["text"] = "#% increased Reservation Efficiency of Herald Skills", + ["id"] = "desecrated.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", ["type"] = "desecrated", }, [293] = { - ["id"] = "desecrated.stat_1994296038", - ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["id"] = "desecrated.stat_99927264", + ["text"] = "#% reduced Shock duration on you", ["type"] = "desecrated", }, [294] = { - ["id"] = "desecrated.stat_4045894391", - ["text"] = "#% increased Damage with Quarterstaves", + ["id"] = "desecrated.stat_3839676903", + ["text"] = "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", ["type"] = "desecrated", }, [295] = { - ["id"] = "desecrated.stat_2363593824", - ["text"] = "#% increased speed of Recoup Effects", + ["id"] = "desecrated.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", ["type"] = "desecrated", }, [296] = { - ["id"] = "desecrated.stat_2442527254", - ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["id"] = "desecrated.stat_1702195217", + ["text"] = "#% to Block chance", ["type"] = "desecrated", }, [297] = { - ["id"] = "desecrated.stat_680068163", - ["text"] = "#% increased Stun Threshold", + ["id"] = "desecrated.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "desecrated", }, [298] = { - ["id"] = "desecrated.stat_3563080185", - ["text"] = "#% increased Culling Strike Threshold", + ["id"] = "desecrated.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "desecrated", }, [299] = { - ["id"] = "desecrated.stat_1365079333", - ["text"] = "Players steal the Eaten Souls of Slain Rare Monsters in Area", + ["id"] = "desecrated.stat_3393628375", + ["text"] = "#% to Cold and Chaos Resistances", ["type"] = "desecrated", }, [300] = { - ["id"] = "desecrated.stat_1266185101", - ["text"] = "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", + ["id"] = "desecrated.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", ["type"] = "desecrated", }, [301] = { - ["id"] = "desecrated.stat_3192728503", - ["text"] = "#% increased Crossbow Reload Speed", + ["id"] = "desecrated.stat_518292764", + ["text"] = "#% to Critical Hit Chance", ["type"] = "desecrated", }, [302] = { - ["id"] = "desecrated.stat_2103650854", - ["text"] = "#% increased effect of Arcane Surge on you", + ["id"] = "desecrated.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "desecrated", }, [303] = { - ["id"] = "desecrated.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["id"] = "desecrated.stat_3399401168", + ["text"] = "#% to Fire Spell Critical Hit Chance", ["type"] = "desecrated", }, [304] = { - ["id"] = "desecrated.stat_3850614073", - ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["id"] = "desecrated.stat_378817135", + ["text"] = "#% to Fire and Chaos Resistances", ["type"] = "desecrated", }, [305] = { - ["id"] = "desecrated.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", + ["id"] = "desecrated.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "desecrated", }, [306] = { - ["id"] = "desecrated.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", + ["id"] = "desecrated.stat_3465022881", + ["text"] = "#% to Lightning and Chaos Resistances", ["type"] = "desecrated", }, [307] = { - ["id"] = "desecrated.stat_3655769732", - ["text"] = "#% to Quality of all Skills", + ["id"] = "desecrated.stat_1301765461", + ["text"] = "#% to Maximum Chaos Resistance", ["type"] = "desecrated", }, [308] = { - ["id"] = "desecrated.stat_1914226331", - ["text"] = "#% increased Cast Speed while on Full Mana", + ["id"] = "desecrated.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", ["type"] = "desecrated", }, [309] = { - ["id"] = "desecrated.stat_1840985759", - ["text"] = "#% increased Area of Effect for Attacks", + ["id"] = "desecrated.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", ["type"] = "desecrated", }, [310] = { - ["id"] = "desecrated.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["id"] = "desecrated.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", ["type"] = "desecrated", }, [311] = { - ["id"] = "desecrated.stat_943702197", - ["text"] = "Minions gain #% of their maximum Life as Extra maximum Energy Shield", + ["id"] = "desecrated.stat_3655769732", + ["text"] = "#% to Quality of all Skills", ["type"] = "desecrated", }, [312] = { - ["id"] = "desecrated.stat_2881298780", - ["text"] = "# to # Physical Thorns damage", + ["id"] = "desecrated.stat_2715190555", + ["text"] = "#% to Thorns Critical Hit Chance", ["type"] = "desecrated", }, [313] = { - ["id"] = "desecrated.stat_1062710370", - ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["id"] = "desecrated.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "desecrated", }, [314] = { - ["id"] = "desecrated.stat_330530785", - ["text"] = "#% increased Immobilisation buildup", + ["id"] = "desecrated.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "desecrated", }, [315] = { - ["id"] = "desecrated.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", + ["id"] = "desecrated.stat_569299859", + ["text"] = "#% to all maximum Resistances", ["type"] = "desecrated", }, [316] = { - ["id"] = "desecrated.stat_1949851472", - ["text"] = "#% chance when a Charm is used to use another Charm without consuming Charges", + ["id"] = "desecrated.stat_480796730", + ["text"] = "#% to maximum Block chance", ["type"] = "desecrated", }, [317] = { - ["id"] = "desecrated.stat_310945763", - ["text"] = "#% increased Life Cost Efficiency", + ["id"] = "desecrated.stat_1054098949", + ["text"] = "+#% Monster Elemental Resistances", ["type"] = "desecrated", }, [318] = { - ["id"] = "desecrated.stat_2594634307", - ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["id"] = "desecrated.stat_1388221282", + ["text"] = "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", ["type"] = "desecrated", }, [319] = { - ["id"] = "desecrated.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", + ["id"] = "desecrated.stat_2975078312", + ["text"] = "Abyss Monsters in your Maps grant #% increased Experience", ["type"] = "desecrated", }, [320] = { - ["id"] = "desecrated.stat_160888068", - ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Life", + ["id"] = "desecrated.stat_4157613372", + ["text"] = "Abyss Pits have #% chance to spawn all Monsters as at least Magic", ["type"] = "desecrated", }, [321] = { - ["id"] = "desecrated.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", + ["id"] = "desecrated.stat_4256531808", + ["text"] = "Abyss Pits in Area are twice as likely to have Rewards", ["type"] = "desecrated", }, [322] = { - ["id"] = "desecrated.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", + ["id"] = "desecrated.stat_2975078312", + ["text"] = "Abyssal Monsters grant #% increased Experience", ["type"] = "desecrated", }, [323] = { - ["id"] = "desecrated.stat_3868118796", - ["text"] = "Attacks Chain an additional time", + ["id"] = "desecrated.stat_360553763", + ["text"] = "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", ["type"] = "desecrated", }, [324] = { - ["id"] = "desecrated.stat_1494950893", - ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["id"] = "desecrated.stat_2399592398", + ["text"] = "Abysses lead to an Abyssal Boss", ["type"] = "desecrated", }, [325] = { - ["id"] = "desecrated.stat_99927264", - ["text"] = "#% reduced Shock duration on you", + ["id"] = "desecrated.stat_2278777540", + ["text"] = "Abysses lead to an Abyssal Depths", ["type"] = "desecrated", }, [326] = { - ["id"] = "desecrated.stat_3028809864", - ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["id"] = "desecrated.stat_944630113", + ["text"] = "Abysses spawn #% increased Monsters", ["type"] = "desecrated", }, [327] = { - ["id"] = "desecrated.stat_263495202", - ["text"] = "#% increased Cost Efficiency", + ["id"] = "desecrated.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", ["type"] = "desecrated", }, [328] = { - ["id"] = "desecrated.stat_1104825894", - ["text"] = "#% faster Curse Activation", + ["id"] = "desecrated.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", ["type"] = "desecrated", }, [329] = { - ["id"] = "desecrated.stat_4283407333", - ["text"] = "# to Level of all Skills", + ["id"] = "desecrated.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", ["type"] = "desecrated", }, [330] = { - ["id"] = "desecrated.stat_1405298142", - ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["id"] = "desecrated.stat_709508406", + ["text"] = "Adds # to # Fire Damage", ["type"] = "desecrated", }, [331] = { - ["id"] = "desecrated.stat_1781372024", - ["text"] = "Recover #% of maximum Life on Killing a Poisoned Enemy", + ["id"] = "desecrated.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", ["type"] = "desecrated", }, [332] = { - ["id"] = "desecrated.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "desecrated.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "desecrated", }, [333] = { - ["id"] = "desecrated.stat_2347036682", - ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["id"] = "desecrated.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", ["type"] = "desecrated", }, [334] = { - ["id"] = "desecrated.stat_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["id"] = "desecrated.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", ["type"] = "desecrated", }, [335] = { - ["id"] = "desecrated.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", + ["id"] = "desecrated.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "desecrated", }, [336] = { - ["id"] = "desecrated.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", + ["id"] = "desecrated.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", ["type"] = "desecrated", }, [337] = { - ["id"] = "desecrated.stat_3190283174", - ["text"] = "Area has patches of Mana Siphoning Ground", + ["id"] = "desecrated.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", ["type"] = "desecrated", }, [338] = { - ["id"] = "desecrated.stat_2543331226", - ["text"] = "#% increased Damage while you have a Totem", + ["id"] = "desecrated.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", ["type"] = "desecrated", }, [339] = { - ["id"] = "desecrated.stat_1777421941", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["id"] = "desecrated.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", ["type"] = "desecrated", }, [340] = { - ["id"] = "desecrated.stat_3473929743", - ["text"] = "#% increased Pin Buildup", + ["id"] = "desecrated.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "desecrated", }, [341] = { - ["id"] = "desecrated.stat_169946467", - ["text"] = "#% increased Accuracy Rating with Bows", + ["id"] = "desecrated.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "desecrated", }, [342] = { - ["id"] = "desecrated.stat_2256120736", - ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["id"] = "desecrated.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "desecrated", }, [343] = { - ["id"] = "desecrated.stat_311641062", - ["text"] = "#% chance for Flasks you use to not consume Charges", + ["id"] = "desecrated.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "desecrated", }, [344] = { - ["id"] = "desecrated.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", + ["id"] = "desecrated.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "desecrated", }, [345] = { - ["id"] = "desecrated.stat_2474424958", - ["text"] = "Spell Skills have # to maximum number of Summoned Totems", + ["id"] = "desecrated.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", ["type"] = "desecrated", }, [346] = { - ["id"] = "desecrated.stat_1714971114", - ["text"] = "Mark Skills have #% increased Use Speed", + ["id"] = "desecrated.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", ["type"] = "desecrated", }, [347] = { - ["id"] = "desecrated.stat_4274247770", - ["text"] = "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", + ["id"] = "desecrated.stat_2586152168", + ["text"] = "Archon recovery period expires #% faster", ["type"] = "desecrated", }, [348] = { - ["id"] = "desecrated.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", + ["id"] = "desecrated.stat_3490187949", + ["text"] = "Area contains # additional Abysses", ["type"] = "desecrated", }, [349] = { - ["id"] = "desecrated.stat_3950000557", - ["text"] = "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", + ["id"] = "desecrated.stat_3757259819", + ["text"] = "Area contains # additional packs of Beasts", ["type"] = "desecrated", }, [350] = { - ["id"] = "desecrated.stat_538981065", - ["text"] = "Grenades have #% chance to activate a second time", + ["id"] = "desecrated.stat_3309089125", + ["text"] = "Area contains # additional packs of Bramble Monsters", ["type"] = "desecrated", }, [351] = { - ["id"] = "desecrated.stat_1776411443", - ["text"] = "Break #% increased Armour", + ["id"] = "desecrated.stat_1436812886", + ["text"] = "Area contains # additional packs of Ezomyte Monsters", ["type"] = "desecrated", }, [352] = { - ["id"] = "desecrated.stat_1309799717", - ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["id"] = "desecrated.stat_4130878258", + ["text"] = "Area contains # additional packs of Faridun Monsters", ["type"] = "desecrated", }, [353] = { - ["id"] = "desecrated.stat_3088348485", - ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["id"] = "desecrated.stat_2949706590", + ["text"] = "Area contains # additional packs of Iron Guards", ["type"] = "desecrated", }, [354] = { - ["id"] = "desecrated.stat_627767961", - ["text"] = "#% increased Damage while you have an active Charm", + ["id"] = "desecrated.stat_3592067990", + ["text"] = "Area contains # additional packs of Plagued Monsters", ["type"] = "desecrated", }, [355] = { - ["id"] = "desecrated.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", + ["id"] = "desecrated.stat_1689473577", + ["text"] = "Area contains # additional packs of Transcended Monsters", ["type"] = "desecrated", }, [356] = { - ["id"] = "desecrated.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", + ["id"] = "desecrated.stat_240445958", + ["text"] = "Area contains # additional packs of Undead", ["type"] = "desecrated", }, [357] = { - ["id"] = "desecrated.stat_3711973554", - ["text"] = "Invocated Spells have #% chance to consume half as much Energy", + ["id"] = "desecrated.stat_4181857719", + ["text"] = "Area contains # additional packs of Vaal Monsters", ["type"] = "desecrated", }, [358] = { - ["id"] = "desecrated.stat_2705185939", - ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", + ["id"] = "desecrated.stat_1827854662", + ["text"] = "Area contains an additional Incubator Queen", ["type"] = "desecrated", }, [359] = { - ["id"] = "desecrated.stat_4033618138", - ["text"] = "Recover #% of Maximum Life when you expend at least 10 Combo", + ["id"] = "desecrated.stat_349586058", + ["text"] = "Area has patches of Chilled Ground", ["type"] = "desecrated", }, [360] = { - ["id"] = "desecrated.stat_3972229254", - ["text"] = "#% of Armour also applies to Chaos Damage", + ["id"] = "desecrated.stat_133340941", + ["text"] = "Area has patches of Ignited Ground", ["type"] = "desecrated", }, [361] = { - ["id"] = "desecrated.stat_3256879910", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["id"] = "desecrated.stat_3190283174", + ["text"] = "Area has patches of Mana Siphoning Ground", ["type"] = "desecrated", }, [362] = { - ["id"] = "desecrated.stat_300723956", - ["text"] = "Attack Hits apply Incision", + ["id"] = "desecrated.stat_3477720557", + ["text"] = "Area has patches of Shocked Ground", ["type"] = "desecrated", }, [363] = { - ["id"] = "desecrated.stat_3394832998", - ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["id"] = "desecrated.stat_2741291867", + ["text"] = "Area is overrun by the Abyssal", ["type"] = "desecrated", }, [364] = { - ["id"] = "desecrated.stat_1261076060", - ["text"] = "#% increased Life Regeneration rate during Effect of any Life Flask", + ["id"] = "desecrated.stat_300723956", + ["text"] = "Attack Hits apply Incision", ["type"] = "desecrated", }, [365] = { - ["id"] = "desecrated.stat_1518586897", - ["text"] = "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", + ["id"] = "desecrated.stat_3868118796", + ["text"] = "Attacks Chain an additional time", ["type"] = "desecrated", }, [366] = { - ["id"] = "desecrated.stat_473917671", - ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["id"] = "desecrated.stat_1740229525", + ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", ["type"] = "desecrated", }, [367] = { - ["id"] = "desecrated.stat_868556494", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["id"] = "desecrated.stat_3398283493", + ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", ["type"] = "desecrated", }, [368] = { - ["id"] = "desecrated.stat_1805182458", - ["text"] = "Companions have #% increased maximum Life", + ["id"] = "desecrated.stat_2387539034", + ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", ["type"] = "desecrated", }, [369] = { - ["id"] = "desecrated.stat_3859848445", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["id"] = "desecrated.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "desecrated", }, [370] = { - ["id"] = "desecrated.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", + ["id"] = "desecrated.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", ["type"] = "desecrated", }, [371] = { - ["id"] = "desecrated.stat_2399592398", - ["text"] = "Abysses lead to an Abyssal Boss", + ["id"] = "desecrated.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", ["type"] = "desecrated", }, [372] = { - ["id"] = "desecrated.stat_3419203492", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["id"] = "desecrated.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "desecrated", }, [373] = { - ["id"] = "desecrated.stat_147764878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + ["id"] = "desecrated.stat_1776411443", + ["text"] = "Break #% increased Armour", ["type"] = "desecrated", }, [374] = { - ["id"] = "desecrated.stat_501873429", - ["text"] = "#% chance for Charms you use to not consume Charges", + ["id"] = "desecrated.stat_1103616075", + ["text"] = "Break Armour equal to #% of Physical Damage dealt", ["type"] = "desecrated", }, [375] = { - ["id"] = "desecrated.stat_3161573445", - ["text"] = "Regenerate #% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", + ["id"] = "desecrated.stat_1286199571", + ["text"] = "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", ["type"] = "desecrated", }, [376] = { - ["id"] = "desecrated.stat_1039268420", - ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["id"] = "desecrated.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", ["type"] = "desecrated", }, [377] = { - ["id"] = "desecrated.stat_3003542304", - ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["id"] = "desecrated.stat_3480095574", + ["text"] = "Charms applied to you have #% increased Effect", ["type"] = "desecrated", }, [378] = { - ["id"] = "desecrated.stat_3396435291", - ["text"] = "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", + ["id"] = "desecrated.stat_185580205", + ["text"] = "Charms gain # charge per Second", ["type"] = "desecrated", }, [379] = { - ["id"] = "desecrated.stat_3927679277", - ["text"] = "#% chance when collecting an Elemental Infusion to gain anadditional Elemental Infusion of the same type", + ["id"] = "desecrated.stat_234296660", + ["text"] = "Companions deal #% increased Damage", ["type"] = "desecrated", }, [380] = { - ["id"] = "desecrated.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", + ["id"] = "desecrated.stat_666077204", + ["text"] = "Companions have #% increased Attack Speed", ["type"] = "desecrated", }, [381] = { - ["id"] = "desecrated.stat_1823942939", - ["text"] = "# to maximum number of Summoned Ballista Totems", + ["id"] = "desecrated.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", ["type"] = "desecrated", }, [382] = { - ["id"] = "desecrated.stat_2272980012", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["id"] = "desecrated.stat_1938221597", + ["text"] = "Conquered Attribute Passive Skills also grant # to Dexterity", ["type"] = "desecrated", }, [383] = { - ["id"] = "desecrated.stat_4159248054", - ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["id"] = "desecrated.stat_3116427713", + ["text"] = "Conquered Attribute Passive Skills also grant # to Intelligence", ["type"] = "desecrated", }, [384] = { - ["id"] = "desecrated.stat_4032352472", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + ["id"] = "desecrated.stat_3871530702", + ["text"] = "Conquered Attribute Passive Skills also grant # to Strength", ["type"] = "desecrated", }, [385] = { - ["id"] = "desecrated.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", + ["id"] = "desecrated.stat_1119086588", + ["text"] = "Conquered Attribute Passive Skills also grant # to Tribute", ["type"] = "desecrated", }, [386] = { - ["id"] = "desecrated.stat_2487305362", - ["text"] = "#% increased Magnitude of Poison you inflict", + ["id"] = "desecrated.stat_2552484522", + ["text"] = "Conquered Attribute Passive Skills also grant # to all Attributes", ["type"] = "desecrated", }, [387] = { - ["id"] = "desecrated.stat_3700202631", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + ["id"] = "desecrated.stat_970480050", + ["text"] = "Conquered Small Passive Skills also grant #% increased Armour", ["type"] = "desecrated", }, [388] = { - ["id"] = "desecrated.stat_4121454694", - ["text"] = "Recover #% of maximum Mana when a Charm is used", + ["id"] = "desecrated.stat_8816597", + ["text"] = "Conquered Small Passive Skills also grant #% increased Attack damage", ["type"] = "desecrated", }, [389] = { - ["id"] = "desecrated.stat_3391917254", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["id"] = "desecrated.stat_2601021356", + ["text"] = "Conquered Small Passive Skills also grant #% increased Chaos damage", ["type"] = "desecrated", }, [390] = { - ["id"] = "desecrated.stat_2715190555", - ["text"] = "#% to Thorns Critical Hit Chance", + ["id"] = "desecrated.stat_1283490138", + ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", ["type"] = "desecrated", }, [391] = { - ["id"] = "desecrated.stat_3669820740", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + ["id"] = "desecrated.stat_4240116297", + ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Damage", ["type"] = "desecrated", }, [392] = { - ["id"] = "desecrated.stat_242637938", - ["text"] = "#% increased chance to inflict Bleeding", + ["id"] = "desecrated.stat_2780670304", + ["text"] = "Conquered Small Passive Skills also grant #% increased Energy Shield", ["type"] = "desecrated", }, [393] = { - ["id"] = "desecrated.stat_525523040", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["id"] = "desecrated.stat_468694293", + ["text"] = "Conquered Small Passive Skills also grant #% increased Evasion Rating", ["type"] = "desecrated", }, [394] = { - ["id"] = "desecrated.stat_1896066427", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["id"] = "desecrated.stat_4264952559", + ["text"] = "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", ["type"] = "desecrated", }, [395] = { - ["id"] = "desecrated.stat_185580205", - ["text"] = "Charms gain # charge per Second", + ["id"] = "desecrated.stat_1818915622", + ["text"] = "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", ["type"] = "desecrated", }, [396] = { - ["id"] = "desecrated.stat_3851254963", - ["text"] = "#% increased Totem Damage", + ["id"] = "desecrated.stat_1829333149", + ["text"] = "Conquered Small Passive Skills also grant #% increased Physical damage", ["type"] = "desecrated", }, [397] = { - ["id"] = "desecrated.stat_2408625104", - ["text"] = "Players and their Minions deal no damage for 3 out of every 10 seconds", + ["id"] = "desecrated.stat_3038857426", + ["text"] = "Conquered Small Passive Skills also grant #% increased Spell damage", ["type"] = "desecrated", }, [398] = { - ["id"] = "desecrated.stat_2544540062", - ["text"] = "Skills which create Fissures have a #% chance to create an additional Fissure", + ["id"] = "desecrated.stat_2475870935", + ["text"] = "Conquered Small Passive Skills also grant #% increased Stun Threshold", ["type"] = "desecrated", }, [399] = { - ["id"] = "desecrated.stat_1286199571", - ["text"] = "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", + ["id"] = "desecrated.stat_3343033032", + ["text"] = "Conquered Small Passive Skills also grant Minions deal #% increased damage", ["type"] = "desecrated", }, [400] = { - ["id"] = "desecrated.stat_3409275777", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["id"] = "desecrated.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", ["type"] = "desecrated", }, [401] = { - ["id"] = "desecrated.stat_1552666713", - ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["id"] = "desecrated.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "desecrated", }, [402] = { - ["id"] = "desecrated.stat_748522257", - ["text"] = "#% increased Stun Duration", + ["id"] = "desecrated.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "desecrated", }, [403] = { - ["id"] = "desecrated.stat_3481083201", - ["text"] = "#% increased chance to Poison", + ["id"] = "desecrated.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "desecrated", }, [404] = { - ["id"] = "desecrated.stat_514290151", - ["text"] = "Gain #% of Maximum Mana as Armour", + ["id"] = "desecrated.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", ["type"] = "desecrated", }, [405] = { - ["id"] = "desecrated.stat_3274422940", - ["text"] = "#% increased Ice Crystal Life", + ["id"] = "desecrated.stat_3146310524", + ["text"] = "Dazes on Hit", ["type"] = "desecrated", }, [406] = { - ["id"] = "desecrated.stat_1185341308", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["id"] = "desecrated.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", ["type"] = "desecrated", }, [407] = { - ["id"] = "desecrated.stat_4136346606", - ["text"] = "#% increased Spell Damage while wielding a Melee Weapon", + ["id"] = "desecrated.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", ["type"] = "desecrated", }, [408] = { - ["id"] = "desecrated.stat_2954360902", - ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["id"] = "desecrated.stat_1746561819", + ["text"] = "Enemies Hindered by you take #% increased Chaos Damage", ["type"] = "desecrated", }, [409] = { - ["id"] = "desecrated.stat_656291658", - ["text"] = "#% increased Cast Speed when on Full Life", + ["id"] = "desecrated.stat_212649958", + ["text"] = "Enemies Hindered by you take #% increased Elemental Damage", ["type"] = "desecrated", }, [410] = { - ["id"] = "desecrated.stat_1417267954", - ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["id"] = "desecrated.stat_359357545", + ["text"] = "Enemies Hindered by you take #% increased Physical Damage", ["type"] = "desecrated", }, [411] = { - ["id"] = "desecrated.stat_1315743832", - ["text"] = "#% increased Thorns damage", + ["id"] = "desecrated.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", ["type"] = "desecrated", }, [412] = { - ["id"] = "desecrated.stat_2479683456", - ["text"] = "Minions Regenerate #% of maximum Life per second", + ["id"] = "desecrated.stat_2083058281", + ["text"] = "Enemies you Mark take #% increased Damage", ["type"] = "desecrated", }, [413] = { - ["id"] = "desecrated.stat_2250681686", - ["text"] = "Grenade Skills have +# Cooldown Use", + ["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", }, [414] = { - ["id"] = "desecrated.stat_1874553720", - ["text"] = "#% reduced Chill Duration on you", + ["id"] = "desecrated.stat_752930724", + ["text"] = "Equipment and Skill Gems have #% increased Attribute Requirements", ["type"] = "desecrated", }, [415] = { - ["id"] = "desecrated.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", + ["id"] = "desecrated.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "desecrated", }, [416] = { - ["id"] = "desecrated.stat_1658498488", - ["text"] = "Corrupted Blood cannot be inflicted on you", + ["id"] = "desecrated.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", ["type"] = "desecrated", }, [417] = { - ["id"] = "desecrated.stat_715957346", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["id"] = "desecrated.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", ["type"] = "desecrated", }, [418] = { - ["id"] = "desecrated.stat_2013356568", - ["text"] = "Melee Attack Skills have # to maximum number of Summoned Totems", + ["id"] = "desecrated.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", ["type"] = "desecrated", }, [419] = { - ["id"] = "desecrated.stat_2726713579", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["id"] = "desecrated.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", ["type"] = "desecrated", }, [420] = { - ["id"] = "desecrated.stat_2639966148", - ["text"] = "Minions Revive #% faster", + ["id"] = "desecrated.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "desecrated", }, [421] = { - ["id"] = "desecrated.stat_752930724", - ["text"] = "Equipment and Skill Gems have #% increased Attribute Requirements", + ["id"] = "desecrated.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "desecrated", }, [422] = { - ["id"] = "desecrated.stat_1746561819", - ["text"] = "Enemies Hindered by you take #% increased Chaos Damage", + ["id"] = "desecrated.stat_825116955", + ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", ["type"] = "desecrated", }, [423] = { - ["id"] = "desecrated.stat_1166140625", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["id"] = "desecrated.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "desecrated", }, [424] = { - ["id"] = "desecrated.stat_3787460122", - ["text"] = "Offerings have #% increased Maximum Life", + ["id"] = "desecrated.stat_1321054058", + ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", ["type"] = "desecrated", }, [425] = { - ["id"] = "desecrated.stat_3513818125", - ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["id"] = "desecrated.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "desecrated", }, [426] = { - ["id"] = "desecrated.stat_1266413530", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["id"] = "desecrated.stat_323800555", + ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", ["type"] = "desecrated", }, [427] = { - ["id"] = "desecrated.stat_212649958", - ["text"] = "Enemies Hindered by you take #% increased Elemental Damage", + ["id"] = "desecrated.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", ["type"] = "desecrated", }, [428] = { - ["id"] = "desecrated.stat_4092130601", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["id"] = "desecrated.stat_514290151", + ["text"] = "Gain #% of Maximum Mana as Armour", ["type"] = "desecrated", }, [429] = { - ["id"] = "desecrated.stat_3666476747", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + ["id"] = "desecrated.stat_758893621", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", ["type"] = "desecrated", }, [430] = { - ["id"] = "desecrated.stat_3871530702", - ["text"] = "Conquered Attribute Passive Skills also grant # to Strength", + ["id"] = "desecrated.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", ["type"] = "desecrated", }, [431] = { @@ -32019,1448 +32043,1448 @@ return { ["type"] = "desecrated", }, [432] = { - ["id"] = "desecrated.stat_3313255158", - ["text"] = "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", + ["id"] = "desecrated.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "desecrated", }, [433] = { - ["id"] = "desecrated.stat_3106718406", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + ["id"] = "desecrated.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "desecrated", }, [434] = { - ["id"] = "desecrated.stat_693237939", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["id"] = "desecrated.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", ["type"] = "desecrated", }, [435] = { - ["id"] = "desecrated.stat_394473632", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["id"] = "desecrated.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", ["type"] = "desecrated", }, [436] = { - ["id"] = "desecrated.stat_2083058281", - ["text"] = "Enemies you Mark take #% increased Damage", + ["id"] = "desecrated.stat_2250681686", + ["text"] = "Grenade Skills have +# Cooldown Use", ["type"] = "desecrated", }, [437] = { - ["id"] = "desecrated.stat_1321104829", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["id"] = "desecrated.stat_538981065", + ["text"] = "Grenades have #% chance to activate a second time", ["type"] = "desecrated", }, [438] = { - ["id"] = "desecrated.stat_1653682082", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["id"] = "desecrated.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", ["type"] = "desecrated", }, [439] = { - ["id"] = "desecrated.stat_2849546516", - ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["id"] = "desecrated.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "desecrated", }, [440] = { - ["id"] = "desecrated.stat_2552484522", - ["text"] = "Conquered Attribute Passive Skills also grant # to all Attributes", + ["id"] = "desecrated.stat_4270096386", + ["text"] = "Hits have #% increased Critical Hit Chance against you", ["type"] = "desecrated", }, [441] = { - ["id"] = "desecrated.stat_4173554949", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["id"] = "desecrated.stat_1689748350", + ["text"] = "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", ["type"] = "desecrated", }, [442] = { - ["id"] = "desecrated.stat_3119612865", - ["text"] = "Minions have #% additional Physical Damage Reduction", + ["id"] = "desecrated.stat_414821772", + ["text"] = "Increases and Reductions to Projectile Speed also apply to Damage with Bows", ["type"] = "desecrated", }, [443] = { - ["id"] = "desecrated.stat_3628935286", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + ["id"] = "desecrated.stat_971590056", + ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", ["type"] = "desecrated", }, [444] = { - ["id"] = "desecrated.stat_412709880", - ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + ["id"] = "desecrated.stat_1078309513", + ["text"] = "Invocated Spells deal #% increased Damage", ["type"] = "desecrated", }, [445] = { - ["id"] = "desecrated.stat_2610562860", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + ["id"] = "desecrated.stat_3711973554", + ["text"] = "Invocated Spells have #% chance to consume half as much Energy", ["type"] = "desecrated", }, [446] = { - ["id"] = "desecrated.stat_1102738251", - ["text"] = "Life Flasks gain # charges per Second", + ["id"] = "desecrated.stat_1615901249", + ["text"] = "Invocated skills have #% increased Maximum Energy", ["type"] = "desecrated", }, [447] = { - ["id"] = "desecrated.stat_3596695232", - ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["id"] = "desecrated.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", ["type"] = "desecrated", }, [448] = { - ["id"] = "desecrated.stat_1323216174", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["id"] = "desecrated.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", ["type"] = "desecrated", }, [449] = { - ["id"] = "desecrated.stat_3065378291", - ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["id"] = "desecrated.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", ["type"] = "desecrated", }, [450] = { - ["id"] = "desecrated.stat_2749595652", - ["text"] = "#% chance for Skills to retain 40% of Glory on use", + ["id"] = "desecrated.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "desecrated", }, [451] = { - ["id"] = "desecrated.stat_644456512", - ["text"] = "#% reduced Flask Charges used", + ["id"] = "desecrated.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", ["type"] = "desecrated", }, [452] = { - ["id"] = "desecrated.stat_593241812", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["id"] = "desecrated.stat_1967051901", + ["text"] = "Loads an additional bolt", ["type"] = "desecrated", }, [453] = { - ["id"] = "desecrated.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["id"] = "desecrated.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", ["type"] = "desecrated", }, [454] = { - ["id"] = "desecrated.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", + ["id"] = "desecrated.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", ["type"] = "desecrated", }, [455] = { - ["id"] = "desecrated.stat_1697951953", - ["text"] = "#% increased Hazard Damage", + ["id"] = "desecrated.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", ["type"] = "desecrated", }, [456] = { - ["id"] = "desecrated.stat_1119086588", - ["text"] = "Conquered Attribute Passive Skills also grant # to Tribute", + ["id"] = "desecrated.stat_2013356568", + ["text"] = "Melee Attack Skills have # to maximum number of Summoned Totems", ["type"] = "desecrated", }, [457] = { - ["id"] = "desecrated.stat_3973629633", - ["text"] = "#% increased Withered Magnitude", + ["id"] = "desecrated.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "desecrated", }, [458] = { - ["id"] = "desecrated.stat_3116427713", - ["text"] = "Conquered Attribute Passive Skills also grant # to Intelligence", + ["id"] = "desecrated.stat_195270549", + ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", ["type"] = "desecrated", }, [459] = { - ["id"] = "desecrated.stat_2518900926", - ["text"] = "#% increased Damage with Plant Skills", + ["id"] = "desecrated.stat_2479683456", + ["text"] = "Minions Regenerate #% of maximum Life per second", ["type"] = "desecrated", }, [460] = { - ["id"] = "desecrated.stat_1697447343", - ["text"] = "#% increased Freeze Buildup with Quarterstaves", + ["id"] = "desecrated.stat_2639966148", + ["text"] = "Minions Revive #% faster", ["type"] = "desecrated", }, [461] = { - ["id"] = "desecrated.stat_3308030688", - ["text"] = "#% increased Mana Regeneration Rate while stationary", + ["id"] = "desecrated.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", ["type"] = "desecrated", }, [462] = { - ["id"] = "desecrated.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", + ["id"] = "desecrated.stat_2337295272", + ["text"] = "Minions deal #% increased Damage if you've Hit Recently", ["type"] = "desecrated", }, [463] = { - ["id"] = "desecrated.stat_2131720304", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["id"] = "desecrated.stat_943702197", + ["text"] = "Minions gain #% of their maximum Life as Extra maximum Energy Shield", ["type"] = "desecrated", }, [464] = { - ["id"] = "desecrated.stat_1103616075", - ["text"] = "Break Armour equal to #% of Physical Damage dealt", + ["id"] = "desecrated.stat_1797815732", + ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", ["type"] = "desecrated", }, [465] = { - ["id"] = "desecrated.stat_533892981", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["id"] = "desecrated.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", ["type"] = "desecrated", }, [466] = { - ["id"] = "desecrated.stat_3856744003", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["id"] = "desecrated.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", ["type"] = "desecrated", }, [467] = { - ["id"] = "desecrated.stat_315791320", - ["text"] = "Aura Skills have #% increased Magnitudes", + ["id"] = "desecrated.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", ["type"] = "desecrated", }, [468] = { - ["id"] = "desecrated.stat_2118708619", - ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["id"] = "desecrated.stat_1691403182", + ["text"] = "Minions have #% increased Cooldown Recovery Rate", ["type"] = "desecrated", }, [469] = { - ["id"] = "desecrated.stat_872504239", - ["text"] = "#% increased Stun Buildup with Maces", + ["id"] = "desecrated.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", ["type"] = "desecrated", }, [470] = { - ["id"] = "desecrated.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["id"] = "desecrated.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", ["type"] = "desecrated", }, [471] = { - ["id"] = "desecrated.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", + ["id"] = "desecrated.stat_953593695", + ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", ["type"] = "desecrated", }, [472] = { - ["id"] = "desecrated.stat_258119672", - ["text"] = "# metre to Dodge Roll distance", + ["id"] = "desecrated.stat_73032170", + ["text"] = "Minions have #% increased Skill Speed with Command Skills", ["type"] = "desecrated", }, [473] = { - ["id"] = "desecrated.stat_3113764475", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["id"] = "desecrated.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", ["type"] = "desecrated", }, [474] = { - ["id"] = "desecrated.stat_2840989393", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + ["id"] = "desecrated.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", ["type"] = "desecrated", }, [475] = { - ["id"] = "desecrated.stat_111835965", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + ["id"] = "desecrated.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", ["type"] = "desecrated", }, [476] = { - ["id"] = "desecrated.stat_2440073079", - ["text"] = "#% increased Damage while Shapeshifted", + ["id"] = "desecrated.stat_1898978455", + ["text"] = "Monster Damage Penetrates #% Elemental Resistances", ["type"] = "desecrated", }, [477] = { - ["id"] = "desecrated.stat_844449513", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["id"] = "desecrated.stat_3877264671", + ["text"] = "Monster have #% increased Elemental Ailment Application", ["type"] = "desecrated", }, [478] = { - ["id"] = "desecrated.stat_1316278494", - ["text"] = "#% increased Warcry Speed", + ["id"] = "desecrated.stat_1879340377", + ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", ["type"] = "desecrated", }, [479] = { - ["id"] = "desecrated.stat_2809428780", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["id"] = "desecrated.stat_2539290279", + ["text"] = "Monsters are Armoured", ["type"] = "desecrated", }, [480] = { - ["id"] = "desecrated.stat_3858398337", - ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["id"] = "desecrated.stat_2570249991", + ["text"] = "Monsters are Evasive", ["type"] = "desecrated", }, [481] = { - ["id"] = "desecrated.stat_4240116297", - ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Damage", + ["id"] = "desecrated.stat_2200661314", + ["text"] = "Monsters deal #% of Damage as Extra Chaos", ["type"] = "desecrated", }, [482] = { - ["id"] = "desecrated.stat_4180952808", - ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + ["id"] = "desecrated.stat_211727", + ["text"] = "Monsters deal #% of Damage as Extra Cold", ["type"] = "desecrated", }, [483] = { - ["id"] = "desecrated.stat_980177976", - ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["id"] = "desecrated.stat_92381065", + ["text"] = "Monsters deal #% of Damage as Extra Fire", ["type"] = "desecrated", }, [484] = { - ["id"] = "desecrated.stat_2969557004", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["id"] = "desecrated.stat_512071314", + ["text"] = "Monsters deal #% of Damage as Extra Lightning", ["type"] = "desecrated", }, [485] = { - ["id"] = "desecrated.stat_1337740333", - ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["id"] = "desecrated.stat_1309819744", + ["text"] = "Monsters fire # additional Projectiles", ["type"] = "desecrated", }, [486] = { - ["id"] = "desecrated.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["id"] = "desecrated.stat_2887760183", + ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", ["type"] = "desecrated", }, [487] = { - ["id"] = "desecrated.stat_4258000627", - ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", + ["id"] = "desecrated.stat_57326096", + ["text"] = "Monsters have #% Critical Damage Bonus", ["type"] = "desecrated", }, [488] = { - ["id"] = "desecrated.stat_2202308025", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["id"] = "desecrated.stat_95221307", + ["text"] = "Monsters have #% chance to Poison on Hit", ["type"] = "desecrated", }, [489] = { - ["id"] = "desecrated.stat_4089835882", - ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["id"] = "desecrated.stat_2506820610", + ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", ["type"] = "desecrated", }, [490] = { - ["id"] = "desecrated.stat_1691403182", - ["text"] = "Minions have #% increased Cooldown Recovery Rate", + ["id"] = "desecrated.stat_3222482040", + ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", ["type"] = "desecrated", }, [491] = { - ["id"] = "desecrated.stat_287294012", - ["text"] = "# to # Fire Thorns damage per 100 maximum Life", + ["id"] = "desecrated.stat_1588049749", + ["text"] = "Monsters have #% increased Accuracy Rating", ["type"] = "desecrated", }, [492] = { - ["id"] = "desecrated.stat_3191479793", - ["text"] = "Offering Skills have #% increased Buff effect", + ["id"] = "desecrated.stat_1994551050", + ["text"] = "Monsters have #% increased Ailment Threshold", ["type"] = "desecrated", }, [493] = { - ["id"] = "desecrated.stat_1944020877", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["id"] = "desecrated.stat_3909654181", + ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", ["type"] = "desecrated", }, [494] = { - ["id"] = "desecrated.stat_484792219", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["id"] = "desecrated.stat_2753083623", + ["text"] = "Monsters have #% increased Critical Hit Chance", ["type"] = "desecrated", }, [495] = { - ["id"] = "desecrated.stat_462424929", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["id"] = "desecrated.stat_3998863698", + ["text"] = "Monsters have #% increased Freeze Buildup", ["type"] = "desecrated", }, [496] = { - ["id"] = "desecrated.stat_3837707023", - ["text"] = "Minions have #% to Chaos Resistance", + ["id"] = "desecrated.stat_1984618452", + ["text"] = "Monsters have #% increased Shock Chance", ["type"] = "desecrated", }, [497] = { - ["id"] = "desecrated.stat_139889694", - ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["id"] = "desecrated.stat_115425161", + ["text"] = "Monsters have #% increased Stun Buildup", ["type"] = "desecrated", }, [498] = { - ["id"] = "desecrated.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "desecrated.stat_4101943684", + ["text"] = "Monsters have #% increased Stun Threshold", ["type"] = "desecrated", }, [499] = { - ["id"] = "desecrated.stat_1087108135", - ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["id"] = "desecrated.stat_1751584857", + ["text"] = "Monsters inflict # Grasping Vine on Hit", ["type"] = "desecrated", }, [500] = { - ["id"] = "desecrated.stat_3429148113", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["id"] = "desecrated.stat_2508044078", + ["text"] = "Monsters inflict #% increased Flammability Magnitude", ["type"] = "desecrated", }, [501] = { - ["id"] = "desecrated.stat_1087531620", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["id"] = "desecrated.stat_337935900", + ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", ["type"] = "desecrated", }, [502] = { - ["id"] = "desecrated.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", + ["id"] = "desecrated.stat_1266185101", + ["text"] = "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", ["type"] = "desecrated", }, [503] = { - ["id"] = "desecrated.stat_2056107438", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["id"] = "desecrated.stat_1168851547", + ["text"] = "Natural Rare Monsters in Area have # extra Abyssal Modifier", ["type"] = "desecrated", }, [504] = { - ["id"] = "desecrated.stat_3225608889", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + ["id"] = "desecrated.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "desecrated", }, [505] = { - ["id"] = "desecrated.stat_2523933828", - ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["id"] = "desecrated.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", ["type"] = "desecrated", }, [506] = { - ["id"] = "desecrated.stat_1045789614", - ["text"] = "#% increased Critical Hit Chance against Marked Enemies", + ["id"] = "desecrated.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", ["type"] = "desecrated", }, [507] = { - ["id"] = "desecrated.stat_3821543413", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["id"] = "desecrated.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", ["type"] = "desecrated", }, [508] = { - ["id"] = "desecrated.stat_3038857426", - ["text"] = "Conquered Small Passive Skills also grant #% increased Spell damage", + ["id"] = "desecrated.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", ["type"] = "desecrated", }, [509] = { - ["id"] = "desecrated.stat_821948283", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + ["id"] = "desecrated.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", ["type"] = "desecrated", }, [510] = { - ["id"] = "desecrated.stat_3839676903", - ["text"] = "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", + ["id"] = "desecrated.stat_3429148113", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "desecrated", }, [511] = { - ["id"] = "desecrated.stat_918325986", - ["text"] = "#% increased Skill Speed while Shapeshifted", + ["id"] = "desecrated.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", ["type"] = "desecrated", }, [512] = { - ["id"] = "desecrated.stat_4162678661", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["id"] = "desecrated.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", ["type"] = "desecrated", }, [513] = { - ["id"] = "desecrated.stat_2392824305", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + ["id"] = "desecrated.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", ["type"] = "desecrated", }, [514] = { - ["id"] = "desecrated.stat_2991045011", - ["text"] = "Recover #% of Maximum Mana when you expend at least 10 Combo", + ["id"] = "desecrated.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", ["type"] = "desecrated", }, [515] = { - ["id"] = "desecrated.stat_1602294220", - ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["id"] = "desecrated.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", ["type"] = "desecrated", }, [516] = { - ["id"] = "desecrated.stat_359357545", - ["text"] = "Enemies Hindered by you take #% increased Physical Damage", + ["id"] = "desecrated.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", ["type"] = "desecrated", }, [517] = { - ["id"] = "desecrated.stat_3143918757", - ["text"] = "#% increased Glory generation", + ["id"] = "desecrated.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", ["type"] = "desecrated", }, [518] = { - ["id"] = "desecrated.stat_2200293569", - ["text"] = "Mana Flasks gain # charges per Second", + ["id"] = "desecrated.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", ["type"] = "desecrated", }, [519] = { - ["id"] = "desecrated.stat_3566150527", - ["text"] = "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", + ["id"] = "desecrated.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", ["type"] = "desecrated", }, [520] = { - ["id"] = "desecrated.stat_4257790560", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", + ["id"] = "desecrated.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", ["type"] = "desecrated", }, [521] = { - ["id"] = "desecrated.stat_2320654813", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["id"] = "desecrated.stat_61644361", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", ["type"] = "desecrated", }, [522] = { - ["id"] = "desecrated.stat_4258720395", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + ["id"] = "desecrated.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", ["type"] = "desecrated", }, [523] = { - ["id"] = "desecrated.stat_2957407601", - ["text"] = "Offering Skills have #% increased Duration", + ["id"] = "desecrated.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", ["type"] = "desecrated", }, [524] = { - ["id"] = "desecrated.stat_1181419800", - ["text"] = "#% increased Damage with Maces", + ["id"] = "desecrated.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "desecrated", }, [525] = { - ["id"] = "desecrated.stat_2907381231", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["id"] = "desecrated.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", ["type"] = "desecrated", }, [526] = { - ["id"] = "desecrated.stat_2720982137", - ["text"] = "Banner Skills have #% increased Duration", + ["id"] = "desecrated.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", ["type"] = "desecrated", }, [527] = { - ["id"] = "desecrated.stat_2334956771", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["id"] = "desecrated.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "desecrated", }, [528] = { - ["id"] = "desecrated.stat_1145481685", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["id"] = "desecrated.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", ["type"] = "desecrated", }, [529] = { - ["id"] = "desecrated.stat_1967051901", - ["text"] = "Loads an additional bolt", + ["id"] = "desecrated.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", ["type"] = "desecrated", }, [530] = { - ["id"] = "desecrated.stat_654207792", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + ["id"] = "desecrated.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", ["type"] = "desecrated", }, [531] = { - ["id"] = "desecrated.stat_1594812856", - ["text"] = "#% increased Damage with Warcries", + ["id"] = "desecrated.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", ["type"] = "desecrated", }, [532] = { - ["id"] = "desecrated.stat_1569159338", - ["text"] = "#% increased Parry Damage", + ["id"] = "desecrated.stat_2272980012", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", ["type"] = "desecrated", }, [533] = { - ["id"] = "desecrated.stat_1869147066", - ["text"] = "#% increased Glory generation for Banner Skills", + ["id"] = "desecrated.stat_1323216174", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "desecrated", }, [534] = { - ["id"] = "desecrated.stat_1852184471", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", + ["id"] = "desecrated.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", ["type"] = "desecrated", }, [535] = { - ["id"] = "desecrated.stat_569299859", - ["text"] = "#% to all maximum Resistances", + ["id"] = "desecrated.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", ["type"] = "desecrated", }, [536] = { - ["id"] = "desecrated.stat_253641217", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["id"] = "desecrated.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", ["type"] = "desecrated", }, [537] = { - ["id"] = "desecrated.stat_85367160", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", + ["id"] = "desecrated.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", ["type"] = "desecrated", }, [538] = { - ["id"] = "desecrated.stat_8816597", - ["text"] = "Conquered Small Passive Skills also grant #% increased Attack damage", + ["id"] = "desecrated.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", ["type"] = "desecrated", }, [539] = { - ["id"] = "desecrated.stat_1773308808", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["id"] = "desecrated.stat_2783157569", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", ["type"] = "desecrated", }, [540] = { - ["id"] = "desecrated.stat_221701169", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["id"] = "desecrated.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", ["type"] = "desecrated", }, [541] = { - ["id"] = "desecrated.stat_1800303440", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["id"] = "desecrated.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", ["type"] = "desecrated", }, [542] = { - ["id"] = "desecrated.stat_2135541924", - ["text"] = "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", + ["id"] = "desecrated.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", ["type"] = "desecrated", }, [543] = { - ["id"] = "desecrated.stat_3774951878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["id"] = "desecrated.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", ["type"] = "desecrated", }, [544] = { - ["id"] = "desecrated.stat_2108821127", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["id"] = "desecrated.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", ["type"] = "desecrated", }, [545] = { - ["id"] = "desecrated.stat_4147897060", - ["text"] = "#% increased Block chance", + ["id"] = "desecrated.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", ["type"] = "desecrated", }, [546] = { - ["id"] = "desecrated.stat_1829333149", - ["text"] = "Conquered Small Passive Skills also grant #% increased Physical damage", + ["id"] = "desecrated.stat_391602279", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", ["type"] = "desecrated", }, [547] = { - ["id"] = "desecrated.stat_2580617872", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["id"] = "desecrated.stat_4092130601", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "desecrated", }, [548] = { - ["id"] = "desecrated.stat_830345042", - ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["id"] = "desecrated.stat_462424929", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", ["type"] = "desecrated", }, [549] = { - ["id"] = "desecrated.stat_2601021356", - ["text"] = "Conquered Small Passive Skills also grant #% increased Chaos damage", + ["id"] = "desecrated.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", ["type"] = "desecrated", }, [550] = { - ["id"] = "desecrated.stat_3395186672", - ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["id"] = "desecrated.stat_4257790560", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", ["type"] = "desecrated", }, [551] = { - ["id"] = "desecrated.stat_2066964205", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["id"] = "desecrated.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", ["type"] = "desecrated", }, [552] = { - ["id"] = "desecrated.stat_1432756708", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["id"] = "desecrated.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "desecrated", }, [553] = { - ["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", + ["id"] = "desecrated.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", ["type"] = "desecrated", }, [554] = { - ["id"] = "desecrated.stat_2690740379", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + ["id"] = "desecrated.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", ["type"] = "desecrated", }, [555] = { - ["id"] = "desecrated.stat_2709646369", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + ["id"] = "desecrated.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", ["type"] = "desecrated", }, [556] = { - ["id"] = "desecrated.stat_4009879772", - ["text"] = "#% increased Life Flask Charges gained", + ["id"] = "desecrated.stat_4032352472", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", ["type"] = "desecrated", }, [557] = { - ["id"] = "desecrated.stat_61644361", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["id"] = "desecrated.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", ["type"] = "desecrated", }, [558] = { - ["id"] = "desecrated.stat_3579898587", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["id"] = "desecrated.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", ["type"] = "desecrated", }, [559] = { - ["id"] = "desecrated.stat_2976476845", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["id"] = "desecrated.stat_3579898587", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", ["type"] = "desecrated", }, [560] = { - ["id"] = "desecrated.stat_391602279", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["id"] = "desecrated.stat_2580617872", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", ["type"] = "desecrated", }, [561] = { - ["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", + ["id"] = "desecrated.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", ["type"] = "desecrated", }, [562] = { - ["id"] = "desecrated.stat_504915064", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["id"] = "desecrated.stat_2392824305", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", ["type"] = "desecrated", }, [563] = { - ["id"] = "desecrated.stat_1285594161", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["id"] = "desecrated.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", ["type"] = "desecrated", }, [564] = { - ["id"] = "desecrated.stat_1034611536", - ["text"] = "Notable Passive Skills in Radius also grant Charms gain # charge per Second", + ["id"] = "desecrated.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", ["type"] = "desecrated", }, [565] = { - ["id"] = "desecrated.stat_3752589831", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["id"] = "desecrated.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", ["type"] = "desecrated", }, [566] = { - ["id"] = "desecrated.stat_2780670304", - ["text"] = "Conquered Small Passive Skills also grant #% increased Energy Shield", + ["id"] = "desecrated.stat_4180952808", + ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", ["type"] = "desecrated", }, [567] = { - ["id"] = "desecrated.stat_266564538", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + ["id"] = "desecrated.stat_412709880", + ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", ["type"] = "desecrated", }, [568] = { - ["id"] = "desecrated.stat_1834658952", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["id"] = "desecrated.stat_160888068", + ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Life", ["type"] = "desecrated", }, [569] = { - ["id"] = "desecrated.stat_712554801", - ["text"] = "#% increased Effect of your Mark Skills", + ["id"] = "desecrated.stat_2589572664", + ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Mana", ["type"] = "desecrated", }, [570] = { - ["id"] = "desecrated.stat_3590792340", - ["text"] = "#% increased Mana Flask Charges gained", + ["id"] = "desecrated.stat_2709646369", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", ["type"] = "desecrated", }, [571] = { - ["id"] = "desecrated.stat_1938221597", - ["text"] = "Conquered Attribute Passive Skills also grant # to Dexterity", + ["id"] = "desecrated.stat_3669820740", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", ["type"] = "desecrated", }, [572] = { - ["id"] = "desecrated.stat_3401186585", - ["text"] = "#% increased Parried Debuff Duration", + ["id"] = "desecrated.stat_85367160", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", ["type"] = "desecrated", }, [573] = { - ["id"] = "desecrated.stat_1054098949", - ["text"] = "+#% Monster Elemental Resistances", + ["id"] = "desecrated.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", ["type"] = "desecrated", }, [574] = { - ["id"] = "desecrated.stat_2638756573", - ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + ["id"] = "desecrated.stat_1034611536", + ["text"] = "Notable Passive Skills in Radius also grant Charms gain # charge per Second", ["type"] = "desecrated", }, [575] = { - ["id"] = "desecrated.stat_565784293", - ["text"] = "#% increased Knockback Distance", + ["id"] = "desecrated.stat_3173882956", + ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", ["type"] = "desecrated", }, [576] = { - ["id"] = "desecrated.stat_944643028", - ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["id"] = "desecrated.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", ["type"] = "desecrated", }, [577] = { - ["id"] = "desecrated.stat_1434716233", - ["text"] = "Warcries Empower an additional Attack", + ["id"] = "desecrated.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", ["type"] = "desecrated", }, [578] = { - ["id"] = "desecrated.stat_4264952559", - ["text"] = "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", + ["id"] = "desecrated.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", ["type"] = "desecrated", }, [579] = { - ["id"] = "desecrated.stat_686254215", - ["text"] = "#% increased Totem Life", + ["id"] = "desecrated.stat_2135541924", + ["text"] = "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", ["type"] = "desecrated", }, [580] = { - ["id"] = "desecrated.stat_255840549", - ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["id"] = "desecrated.stat_1148433552", + ["text"] = "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", ["type"] = "desecrated", }, [581] = { - ["id"] = "desecrated.stat_3343033032", - ["text"] = "Conquered Small Passive Skills also grant Minions deal #% increased damage", + ["id"] = "desecrated.stat_3939216292", + ["text"] = "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", ["type"] = "desecrated", }, [582] = { - ["id"] = "desecrated.stat_3386297724", - ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["id"] = "desecrated.stat_2849546516", + ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", ["type"] = "desecrated", }, [583] = { - ["id"] = "desecrated.stat_127081978", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["id"] = "desecrated.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", ["type"] = "desecrated", }, [584] = { - ["id"] = "desecrated.stat_2637470878", - ["text"] = "#% increased Armour Break Duration", + ["id"] = "desecrated.stat_3106718406", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", ["type"] = "desecrated", }, [585] = { - ["id"] = "desecrated.stat_818877178", - ["text"] = "#% increased Parried Debuff Magnitude", + ["id"] = "desecrated.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", ["type"] = "desecrated", }, [586] = { - ["id"] = "desecrated.stat_1689748350", - ["text"] = "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", + ["id"] = "desecrated.stat_3628935286", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", ["type"] = "desecrated", }, [587] = { - ["id"] = "desecrated.stat_3173882956", - ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["id"] = "desecrated.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", ["type"] = "desecrated", }, [588] = { - ["id"] = "desecrated.stat_3939216292", - ["text"] = "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", + ["id"] = "desecrated.stat_4258720395", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "desecrated", }, [589] = { - ["id"] = "desecrated.stat_1160637284", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["id"] = "desecrated.stat_2334956771", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "desecrated", }, [590] = { - ["id"] = "desecrated.stat_1505023559", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["id"] = "desecrated.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", ["type"] = "desecrated", }, [591] = { - ["id"] = "desecrated.stat_1585769763", - ["text"] = "#% increased Blind Effect", + ["id"] = "desecrated.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "desecrated", }, [592] = { - ["id"] = "desecrated.stat_1148433552", - ["text"] = "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", + ["id"] = "desecrated.stat_3566150527", + ["text"] = "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", ["type"] = "desecrated", }, [593] = { - ["id"] = "desecrated.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", + ["id"] = "desecrated.stat_3191479793", + ["text"] = "Offering Skills have #% increased Buff effect", ["type"] = "desecrated", }, [594] = { - ["id"] = "desecrated.stat_2149603090", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["id"] = "desecrated.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", ["type"] = "desecrated", }, [595] = { - ["id"] = "desecrated.stat_3877264671", - ["text"] = "Monster have #% increased Elemental Ailment Application", + ["id"] = "desecrated.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", ["type"] = "desecrated", }, [596] = { - ["id"] = "desecrated.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", + ["id"] = "desecrated.stat_2408625104", + ["text"] = "Players and their Minions deal no damage for 3 out of every 10 seconds", ["type"] = "desecrated", }, [597] = { - ["id"] = "desecrated.stat_1994551050", - ["text"] = "Monsters have #% increased Ailment Threshold", + ["id"] = "desecrated.stat_436406826", + ["text"] = "Players are Marked for Death for # secondsafter killing a Rare or Unique monster", ["type"] = "desecrated", }, [598] = { - ["id"] = "desecrated.stat_4043376133", - ["text"] = "#% increased Magnitude of Abyssal Wasting you inflict", + ["id"] = "desecrated.stat_554690751", + ["text"] = "Players are periodically Cursed with Elemental Weakness", ["type"] = "desecrated", }, [599] = { - ["id"] = "desecrated.stat_4101943684", - ["text"] = "Monsters have #% increased Stun Threshold", + ["id"] = "desecrated.stat_2029171424", + ["text"] = "Players are periodically Cursed with Enfeeble", ["type"] = "desecrated", }, [600] = { - ["id"] = "desecrated.stat_2116424886", - ["text"] = "#% increased Life Regeneration Rate while moving", + ["id"] = "desecrated.stat_1629357380", + ["text"] = "Players are periodically Cursed with Temporal Chains", ["type"] = "desecrated", }, [601] = { - ["id"] = "desecrated.stat_211727", - ["text"] = "Monsters deal #% of Damage as Extra Cold", + ["id"] = "desecrated.stat_2549889921", + ["text"] = "Players gain #% reduced Flask Charges", ["type"] = "desecrated", }, [602] = { - ["id"] = "desecrated.stat_1181501418", - ["text"] = "# to Maximum Rage", + ["id"] = "desecrated.stat_4181072906", + ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", ["type"] = "desecrated", }, [603] = { - ["id"] = "desecrated.stat_1911237468", - ["text"] = "#% increased Stun Threshold while Parrying", + ["id"] = "desecrated.stat_941368244", + ["text"] = "Players have #% more Cooldown Recovery Rate", ["type"] = "desecrated", }, [604] = { - ["id"] = "desecrated.stat_30438393", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + ["id"] = "desecrated.stat_4274247770", + ["text"] = "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", ["type"] = "desecrated", }, [605] = { - ["id"] = "desecrated.stat_554690751", - ["text"] = "Players are periodically Cursed with Elemental Weakness", + ["id"] = "desecrated.stat_1365079333", + ["text"] = "Players steal the Eaten Souls of Slain Rare Monsters in Area", ["type"] = "desecrated", }, [606] = { - ["id"] = "desecrated.stat_480796730", - ["text"] = "#% to maximum Block chance", + ["id"] = "desecrated.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", ["type"] = "desecrated", }, [607] = { - ["id"] = "desecrated.stat_1846980580", - ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["id"] = "desecrated.stat_3932115504", + ["text"] = "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", ["type"] = "desecrated", }, [608] = { - ["id"] = "desecrated.stat_2107703111", - ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["id"] = "desecrated.stat_2825946427", + ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", ["type"] = "desecrated", }, [609] = { - ["id"] = "desecrated.stat_1818915622", - ["text"] = "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", + ["id"] = "desecrated.stat_2468595624", + ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies within 2m", ["type"] = "desecrated", }, [610] = { - ["id"] = "desecrated.stat_3936121440", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["id"] = "desecrated.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "desecrated", }, [611] = { - ["id"] = "desecrated.stat_442393998", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["id"] = "desecrated.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "desecrated", }, [612] = { - ["id"] = "desecrated.stat_2887760183", - ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", + ["id"] = "desecrated.stat_2573406169", + ["text"] = "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", ["type"] = "desecrated", }, [613] = { - ["id"] = "desecrated.stat_4181072906", - ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", + ["id"] = "desecrated.stat_2706625504", + ["text"] = "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", ["type"] = "desecrated", }, [614] = { - ["id"] = "desecrated.stat_95249895", - ["text"] = "#% more Monster Life", + ["id"] = "desecrated.stat_2550456553", + ["text"] = "Rare Monsters have # additional Modifier", ["type"] = "desecrated", }, [615] = { - ["id"] = "desecrated.stat_2770044702", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["id"] = "desecrated.stat_2550456553", + ["text"] = "Rare Monsters in your Maps have # additional Modifier", ["type"] = "desecrated", }, [616] = { - ["id"] = "desecrated.stat_941368244", - ["text"] = "Players have #% more Cooldown Recovery Rate", + ["id"] = "desecrated.stat_4033618138", + ["text"] = "Recover #% of Maximum Life when you expend at least 10 Combo", ["type"] = "desecrated", }, [617] = { - ["id"] = "desecrated.stat_3694078435", - ["text"] = "You take #% of damage from Blocked Hits with a raised Shield", + ["id"] = "desecrated.stat_2991045011", + ["text"] = "Recover #% of Maximum Mana when you expend at least 10 Combo", ["type"] = "desecrated", }, [618] = { - ["id"] = "desecrated.stat_1892122971", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["id"] = "desecrated.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "desecrated", }, [619] = { - ["id"] = "desecrated.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["id"] = "desecrated.stat_1781372024", + ["text"] = "Recover #% of maximum Life on Killing a Poisoned Enemy", ["type"] = "desecrated", }, [620] = { - ["id"] = "desecrated.stat_321970274", - ["text"] = "#% of Physical Damage taken as Lightning while your Shield is raised", + ["id"] = "desecrated.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "desecrated", }, [621] = { - ["id"] = "desecrated.stat_2912416697", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["id"] = "desecrated.stat_4121454694", + ["text"] = "Recover #% of maximum Mana when a Charm is used", ["type"] = "desecrated", }, [622] = { - ["id"] = "desecrated.stat_886088880", - ["text"] = "Your Heavy Stun buildup empties #% faster", + ["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", }, [623] = { - ["id"] = "desecrated.stat_349586058", - ["text"] = "Area has patches of Chilled Ground", + ["id"] = "desecrated.stat_3482326075", + ["text"] = "Remnants can be collected from #% further away", ["type"] = "desecrated", }, [624] = { - ["id"] = "desecrated.stat_2029171424", - ["text"] = "Players are periodically Cursed with Enfeeble", + ["id"] = "desecrated.stat_1999910726", + ["text"] = "Remnants you create have #% increased effect", ["type"] = "desecrated", }, [625] = { - ["id"] = "desecrated.stat_2539290279", - ["text"] = "Monsters are Armoured", + ["id"] = "desecrated.stat_4147510958", + ["text"] = "Sealed Skills have # to maximum Seals", ["type"] = "desecrated", }, [626] = { - ["id"] = "desecrated.stat_378796798", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["id"] = "desecrated.stat_3384867265", + ["text"] = "Sealed Skills have #% increased Seal gain frequency", ["type"] = "desecrated", }, [627] = { - ["id"] = "desecrated.stat_1283490138", - ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", + ["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", }, [628] = { - ["id"] = "desecrated.stat_337935900", - ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", + ["id"] = "desecrated.stat_3200877707", + ["text"] = "Skills have a #% chance to not consume Glory", ["type"] = "desecrated", }, [629] = { - ["id"] = "desecrated.stat_3796523155", - ["text"] = "#% less effect of Curses on Monsters", + ["id"] = "desecrated.stat_2544540062", + ["text"] = "Skills which create Fissures have a #% chance to create an additional Fissure", ["type"] = "desecrated", }, [630] = { - ["id"] = "desecrated.stat_92381065", - ["text"] = "Monsters deal #% of Damage as Extra Fire", + ["id"] = "desecrated.stat_2610562860", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", ["type"] = "desecrated", }, [631] = { - ["id"] = "desecrated.stat_1590846356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + ["id"] = "desecrated.stat_2840989393", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", ["type"] = "desecrated", }, [632] = { - ["id"] = "desecrated.stat_468694293", - ["text"] = "Conquered Small Passive Skills also grant #% increased Evasion Rating", + ["id"] = "desecrated.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", ["type"] = "desecrated", }, [633] = { - ["id"] = "desecrated.stat_1756380435", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["id"] = "desecrated.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", ["type"] = "desecrated", }, [634] = { - ["id"] = "desecrated.stat_1544773869", - ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", + ["id"] = "desecrated.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", ["type"] = "desecrated", }, [635] = { - ["id"] = "desecrated.stat_2549889921", - ["text"] = "Players gain #% reduced Flask Charges", + ["id"] = "desecrated.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", ["type"] = "desecrated", }, [636] = { - ["id"] = "desecrated.stat_1320662475", - ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["id"] = "desecrated.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", ["type"] = "desecrated", }, [637] = { - ["id"] = "desecrated.stat_512071314", - ["text"] = "Monsters deal #% of Damage as Extra Lightning", + ["id"] = "desecrated.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "desecrated", }, [638] = { - ["id"] = "desecrated.stat_1007380041", - ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["id"] = "desecrated.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", ["type"] = "desecrated", }, [639] = { - ["id"] = "desecrated.stat_970480050", - ["text"] = "Conquered Small Passive Skills also grant #% increased Armour", + ["id"] = "desecrated.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "desecrated", }, [640] = { - ["id"] = "desecrated.stat_2753083623", - ["text"] = "Monsters have #% increased Critical Hit Chance", + ["id"] = "desecrated.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", ["type"] = "desecrated", }, [641] = { - ["id"] = "desecrated.stat_57326096", - ["text"] = "Monsters have #% Critical Damage Bonus", + ["id"] = "desecrated.stat_1834658952", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", ["type"] = "desecrated", }, [642] = { - ["id"] = "desecrated.stat_3998863698", - ["text"] = "Monsters have #% increased Freeze Buildup", + ["id"] = "desecrated.stat_1892122971", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", ["type"] = "desecrated", }, [643] = { - ["id"] = "desecrated.stat_1984618452", - ["text"] = "Monsters have #% increased Shock Chance", + ["id"] = "desecrated.stat_266564538", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", ["type"] = "desecrated", }, [644] = { - ["id"] = "desecrated.stat_2122183138", - ["text"] = "# Mana gained when you Block", + ["id"] = "desecrated.stat_3752589831", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", ["type"] = "desecrated", }, [645] = { - ["id"] = "desecrated.stat_2200661314", - ["text"] = "Monsters deal #% of Damage as Extra Chaos", + ["id"] = "desecrated.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", ["type"] = "desecrated", }, [646] = { - ["id"] = "desecrated.stat_1301765461", - ["text"] = "#% to Maximum Chaos Resistance", + ["id"] = "desecrated.stat_517664839", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", ["type"] = "desecrated", }, [647] = { - ["id"] = "desecrated.stat_1495814176", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + ["id"] = "desecrated.stat_147764878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "desecrated", }, [648] = { - ["id"] = "desecrated.stat_2374711847", - ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["id"] = "desecrated.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", ["type"] = "desecrated", }, [649] = { - ["id"] = "desecrated.stat_3909654181", - ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", + ["id"] = "desecrated.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", ["type"] = "desecrated", }, [650] = { - ["id"] = "desecrated.stat_2508044078", - ["text"] = "Monsters inflict #% increased Flammability Magnitude", + ["id"] = "desecrated.stat_821948283", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", ["type"] = "desecrated", }, [651] = { - ["id"] = "desecrated.stat_179541474", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + ["id"] = "desecrated.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", ["type"] = "desecrated", }, [652] = { - ["id"] = "desecrated.stat_3171212276", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["id"] = "desecrated.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", ["type"] = "desecrated", }, [653] = { - ["id"] = "desecrated.stat_115425161", - ["text"] = "Monsters have #% increased Stun Buildup", + ["id"] = "desecrated.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", ["type"] = "desecrated", }, [654] = { - ["id"] = "desecrated.stat_4142814612", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + ["id"] = "desecrated.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", ["type"] = "desecrated", }, [655] = { - ["id"] = "desecrated.stat_2550456553", - ["text"] = "Rare Monsters have # additional Modifier", + ["id"] = "desecrated.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", ["type"] = "desecrated", }, [656] = { - ["id"] = "desecrated.stat_2550456553", - ["text"] = "Rare Monsters in your Maps have # additional Modifier", + ["id"] = "desecrated.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "desecrated", }, [657] = { - ["id"] = "desecrated.stat_1588049749", - ["text"] = "Monsters have #% increased Accuracy Rating", + ["id"] = "desecrated.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "desecrated", }, [658] = { - ["id"] = "desecrated.stat_95221307", - ["text"] = "Monsters have #% chance to Poison on Hit", + ["id"] = "desecrated.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", ["type"] = "desecrated", }, [659] = { - ["id"] = "desecrated.stat_2475870935", - ["text"] = "Conquered Small Passive Skills also grant #% increased Stun Threshold", + ["id"] = "desecrated.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", ["type"] = "desecrated", }, [660] = { - ["id"] = "desecrated.stat_318092306", - ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", + ["id"] = "desecrated.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", ["type"] = "desecrated", }, [661] = { - ["id"] = "desecrated.stat_1879340377", - ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", + ["id"] = "desecrated.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "desecrated", }, [662] = { - ["id"] = "desecrated.stat_429143663", - ["text"] = "Banner Skills have #% increased Area of Effect", + ["id"] = "desecrated.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", ["type"] = "desecrated", }, [663] = { - ["id"] = "desecrated.stat_2570249991", - ["text"] = "Monsters are Evasive", + ["id"] = "desecrated.stat_980177976", + ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", ["type"] = "desecrated", }, [664] = { - ["id"] = "desecrated.stat_3376488707", - ["text"] = "#% maximum Player Resistances", + ["id"] = "desecrated.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", ["type"] = "desecrated", }, [665] = { - ["id"] = "desecrated.stat_3222482040", - ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", + ["id"] = "desecrated.stat_3774951878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", ["type"] = "desecrated", }, [666] = { - ["id"] = "desecrated.stat_3477720557", - ["text"] = "Area has patches of Shocked Ground", + ["id"] = "desecrated.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", ["type"] = "desecrated", }, [667] = { - ["id"] = "desecrated.stat_1890519597", - ["text"] = "#% increased Monster Damage", + ["id"] = "desecrated.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", ["type"] = "desecrated", }, [668] = { - ["id"] = "desecrated.stat_1309819744", - ["text"] = "Monsters fire # additional Projectiles", + ["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", }, [669] = { - ["id"] = "desecrated.stat_2506820610", - ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", + ["id"] = "desecrated.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", ["type"] = "desecrated", }, [670] = { - ["id"] = "desecrated.stat_942519401", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["id"] = "desecrated.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", ["type"] = "desecrated", }, [671] = { - ["id"] = "desecrated.stat_133340941", - ["text"] = "Area has patches of Ignited Ground", + ["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", }, [672] = { - ["id"] = "desecrated.stat_2534359663", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["id"] = "desecrated.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", ["type"] = "desecrated", }, [673] = { - ["id"] = "desecrated.stat_1514844108", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + ["id"] = "desecrated.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", ["type"] = "desecrated", }, [674] = { - ["id"] = "desecrated.stat_3592067990", - ["text"] = "Area contains # additional packs of Plagued Monsters", + ["id"] = "desecrated.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", ["type"] = "desecrated", }, [675] = { - ["id"] = "desecrated.stat_1436812886", - ["text"] = "Area contains # additional packs of Ezomyte Monsters", + ["id"] = "desecrated.stat_654207792", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "desecrated", }, [676] = { - ["id"] = "desecrated.stat_1079292660", - ["text"] = "#% increased Energy Shield Recharge Rate if you've Blocked Recently", + ["id"] = "desecrated.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", ["type"] = "desecrated", }, [677] = { - ["id"] = "desecrated.stat_240445958", - ["text"] = "Area contains # additional packs of Undead", + ["id"] = "desecrated.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", ["type"] = "desecrated", }, [678] = { - ["id"] = "desecrated.stat_1898978455", - ["text"] = "Monster Damage Penetrates #% Elemental Resistances", + ["id"] = "desecrated.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", ["type"] = "desecrated", }, [679] = { - ["id"] = "desecrated.stat_1629357380", - ["text"] = "Players are periodically Cursed with Temporal Chains", + ["id"] = "desecrated.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", ["type"] = "desecrated", }, [680] = { - ["id"] = "desecrated.stat_4181857719", - ["text"] = "Area contains # additional packs of Vaal Monsters", + ["id"] = "desecrated.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", ["type"] = "desecrated", }, [681] = { - ["id"] = "desecrated.stat_1980802737", - ["text"] = "Grenade Skills Fire an additional Projectile", + ["id"] = "desecrated.stat_3666476747", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", ["type"] = "desecrated", }, [682] = { - ["id"] = "desecrated.stat_3309089125", - ["text"] = "Area contains # additional packs of Bramble Monsters", + ["id"] = "desecrated.stat_3700202631", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", ["type"] = "desecrated", }, [683] = { - ["id"] = "desecrated.stat_3757259819", - ["text"] = "Area contains # additional packs of Beasts", + ["id"] = "desecrated.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", ["type"] = "desecrated", }, [684] = { - ["id"] = "desecrated.stat_3811191316", - ["text"] = "Minions have #% increased Area of Effect", + ["id"] = "desecrated.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", ["type"] = "desecrated", }, [685] = { - ["id"] = "desecrated.stat_797289402", - ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", + ["id"] = "desecrated.stat_318092306", + ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", ["type"] = "desecrated", }, [686] = { - ["id"] = "desecrated.stat_3399401168", - ["text"] = "#% to Fire Spell Critical Hit Chance", + ["id"] = "desecrated.stat_4142814612", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", ["type"] = "desecrated", }, [687] = { - ["id"] = "desecrated.stat_2949706590", - ["text"] = "Area contains # additional packs of Iron Guards", + ["id"] = "desecrated.stat_2690740379", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", ["type"] = "desecrated", }, [688] = { - ["id"] = "desecrated.stat_758893621", - ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["id"] = "desecrated.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", ["type"] = "desecrated", }, [689] = { - ["id"] = "desecrated.stat_4259875040", - ["text"] = "#% increased Magnitude of Impales inflicted with Spells", + ["id"] = "desecrated.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", ["type"] = "desecrated", }, [690] = { - ["id"] = "desecrated.stat_1058934731", - ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", + ["id"] = "desecrated.stat_2638756573", + ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", ["type"] = "desecrated", }, [691] = { - ["id"] = "desecrated.stat_73032170", - ["text"] = "Minions have #% increased Skill Speed with Command Skills", + ["id"] = "desecrated.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", ["type"] = "desecrated", }, [692] = { - ["id"] = "desecrated.stat_825116955", - ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", + ["id"] = "desecrated.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", ["type"] = "desecrated", }, [693] = { - ["id"] = "desecrated.stat_323800555", - ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", + ["id"] = "desecrated.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", ["type"] = "desecrated", }, [694] = { - ["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", + ["id"] = "desecrated.stat_4258000627", + ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", ["type"] = "desecrated", }, [695] = { - ["id"] = "desecrated.stat_1265767008", - ["text"] = "Your Minions are Gigantic if they have Revived Recently", + ["id"] = "desecrated.stat_3395186672", + ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", ["type"] = "desecrated", }, [696] = { - ["id"] = "desecrated.stat_4147510958", - ["text"] = "Sealed Skills have # to maximum Seals", + ["id"] = "desecrated.stat_693237939", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "desecrated", }, [697] = { - ["id"] = "desecrated.stat_2783157569", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", + ["id"] = "desecrated.stat_1653682082", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "desecrated", }, [698] = { - ["id"] = "desecrated.stat_3384867265", - ["text"] = "Sealed Skills have #% increased Seal gain frequency", + ["id"] = "desecrated.stat_3065378291", + ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", ["type"] = "desecrated", }, [699] = { - ["id"] = "desecrated.stat_4130878258", - ["text"] = "Area contains # additional packs of Faridun Monsters", + ["id"] = "desecrated.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", ["type"] = "desecrated", }, [700] = { - ["id"] = "desecrated.stat_971590056", - ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", + ["id"] = "desecrated.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", ["type"] = "desecrated", }, [701] = { - ["id"] = "desecrated.stat_1321054058", - ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", + ["id"] = "desecrated.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", ["type"] = "desecrated", }, [702] = { - ["id"] = "desecrated.stat_195270549", - ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", + ["id"] = "desecrated.stat_30438393", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", ["type"] = "desecrated", }, [703] = { - ["id"] = "desecrated.stat_1347539079", - ["text"] = "#% Surpassing chance to fire an additional Projectile", + ["id"] = "desecrated.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", ["type"] = "desecrated", }, [704] = { - ["id"] = "desecrated.stat_3526763442", - ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", + ["id"] = "desecrated.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", ["type"] = "desecrated", }, [705] = { - ["id"] = "desecrated.stat_1797815732", - ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", + ["id"] = "desecrated.stat_3225608889", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", ["type"] = "desecrated", }, [706] = { - ["id"] = "desecrated.stat_3249412463", - ["text"] = "Supported Minions' Strikes have Melee Splash", + ["id"] = "desecrated.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", ["type"] = "desecrated", }, [707] = { - ["id"] = "desecrated.stat_3858572996", - ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", + ["id"] = "desecrated.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", ["type"] = "desecrated", }, [708] = { - ["id"] = "desecrated.stat_953593695", - ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", + ["id"] = "desecrated.stat_2474424958", + ["text"] = "Spell Skills have # to maximum number of Summoned Totems", ["type"] = "desecrated", }, [709] = { - ["id"] = "desecrated.stat_1689473577", - ["text"] = "Area contains # additional packs of Transcended Monsters", + ["id"] = "desecrated.stat_1967040409", + ["text"] = "Spell Skills have #% increased Area of Effect", ["type"] = "desecrated", }, [710] = { - ["id"] = "desecrated.stat_1615901249", - ["text"] = "Invocated skills have #% increased Maximum Energy", + ["id"] = "desecrated.stat_555706343", + ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", ["type"] = "desecrated", }, [711] = { - ["id"] = "desecrated.stat_1002535626", - ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", + ["id"] = "desecrated.stat_3249412463", + ["text"] = "Supported Minions' Strikes have Melee Splash", ["type"] = "desecrated", }, [712] = { - ["id"] = "desecrated.stat_3793155082", - ["text"] = "#% increased Rare Monsters", + ["id"] = "desecrated.stat_1058934731", + ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", ["type"] = "desecrated", }, [713] = { - ["id"] = "desecrated.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", + ["id"] = "desecrated.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", ["type"] = "desecrated", }, [714] = { - ["id"] = "desecrated.stat_1913583994", - ["text"] = "#% increased Monster Attack Speed", + ["id"] = "desecrated.stat_3891355829|2", + ["text"] = "Upgrades Radius to Large", ["type"] = "desecrated", }, [715] = { - ["id"] = "desecrated.stat_3873704640", - ["text"] = "#% increased Magic Monsters", + ["id"] = "desecrated.stat_3891355829|1", + ["text"] = "Upgrades Radius to Medium", ["type"] = "desecrated", }, [716] = { - ["id"] = "desecrated.stat_3200877707", - ["text"] = "Skills have a #% chance to not consume Glory", + ["id"] = "desecrated.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", ["type"] = "desecrated", }, [717] = { - ["id"] = "desecrated.stat_2488361432", - ["text"] = "#% increased Monster Cast Speed", + ["id"] = "desecrated.stat_3007552094", + ["text"] = "You have Unholy Might", ["type"] = "desecrated", }, [718] = { - ["id"] = "desecrated.stat_555706343", - ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", + ["id"] = "desecrated.stat_3694078435", + ["text"] = "You take #% of damage from Blocked Hits with a raised Shield", ["type"] = "desecrated", }, [719] = { - ["id"] = "desecrated.stat_1180552088", - ["text"] = "#% increased effect of Archon Buffs on you", + ["id"] = "desecrated.stat_886088880", + ["text"] = "Your Heavy Stun buildup empties #% faster", ["type"] = "desecrated", }, [720] = { - ["id"] = "desecrated.stat_2306522833", - ["text"] = "#% increased Monster Movement Speed", + ["id"] = "desecrated.stat_1265767008", + ["text"] = "Your Minions are Gigantic if they have Revived Recently", ["type"] = "desecrated", }, }, @@ -33470,368 +33494,368 @@ return { [9] = { ["entries"] = { [1] = { - ["id"] = "sanctum.stat_767926824", - ["text"] = "Zarokh, the Temporal drops Blessed Bonds", + ["id"] = "sanctum.stat_2410906123", + ["text"] = "# Resolve Aegis", ["type"] = "sanctum", }, [2] = { - ["id"] = "sanctum.stat_3840591093", - ["text"] = "Zarokh, the Temporal drops Against the Darkness", + ["id"] = "sanctum.stat_1040593638", + ["text"] = "# metre to Dodge Roll distance", ["type"] = "sanctum", }, [3] = { - ["id"] = "sanctum.stat_2878762585", - ["text"] = "#% chance to Avoid Resolve loss from Enemy Hits", + ["id"] = "sanctum.stat_142859883", + ["text"] = "#% Resolve Mitigation from Enemy Hits", ["type"] = "sanctum", }, [4] = { - ["id"] = "sanctum.stat_4057192895", - ["text"] = "Gain # Sacred Water when you complete a Room", + ["id"] = "sanctum.stat_3470883829", + ["text"] = "#% additional Physical Damage Reduction", ["type"] = "sanctum", }, [5] = { - ["id"] = "sanctum.stat_3376488707", - ["text"] = "#% to all Maximum Resistances", + ["id"] = "sanctum.stat_774484840", + ["text"] = "#% chance for Resolve Mitigation to be doubled when Hit by an Enemy", ["type"] = "sanctum", }, [6] = { - ["id"] = "sanctum.stat_1307773596", - ["text"] = "Aureus Coins are converted to Experience upon defeating the Herald of the Scourge", + ["id"] = "sanctum.stat_2155917449", + ["text"] = "#% chance for each of your Keys to upgrade on completing a Floor", ["type"] = "sanctum", }, [7] = { - ["id"] = "sanctum.stat_315260783", - ["text"] = "Aureus Coins are converted to Relics upon defeating the Herald of the Scourge", + ["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_1019656601", - ["text"] = "Aureus Coins are converted to Tainted Currency upon defeating the Herald of the Scourge", + ["id"] = "sanctum.stat_2878762585", + ["text"] = "#% chance to Avoid Resolve loss from Enemy Hits", ["type"] = "sanctum", }, [9] = { - ["id"] = "sanctum.stat_2149490821", - ["text"] = "Zarokh, the Temporal deals #% more Damage", + ["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_2226900052", - ["text"] = "Zarokh, the Temporal takes #% more Damage", + ["id"] = "sanctum.stat_1960517795", + ["text"] = "#% chance to Avoid gaining an Affliction", ["type"] = "sanctum", }, [11] = { - ["id"] = "sanctum.stat_1175354969", - ["text"] = "The Herald of the Scourge drops an additional Invocation", + ["id"] = "sanctum.stat_1737465970", + ["text"] = "#% increased Armour", ["type"] = "sanctum", }, [12] = { - ["id"] = "sanctum.stat_3878191575", - ["text"] = "Zarokh, the Temporal drops an additional Barya", + ["id"] = "sanctum.stat_1016362888", + ["text"] = "#% increased Armour, Evasion and Energy Shield", ["type"] = "sanctum", }, [13] = { - ["id"] = "sanctum.stat_502549687", - ["text"] = "Duplicates up to # random Offer Reward upon defeating the Herald of the Scourge", + ["id"] = "sanctum.stat_3882471944", + ["text"] = "#% increased Evasion Rating", ["type"] = "sanctum", }, [14] = { - ["id"] = "sanctum.stat_3909654181", - ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", + ["id"] = "sanctum.stat_1583320325", + ["text"] = "#% increased Honour restored", ["type"] = "sanctum", }, [15] = { - ["id"] = "sanctum.stat_3114474137", - ["text"] = "Monsters take #% increased Damage", + ["id"] = "sanctum.stat_3096446459", + ["text"] = "#% increased Merchant Prices", ["type"] = "sanctum", }, [16] = { - ["id"] = "sanctum.stat_1890519597", - ["text"] = "Monsters deal #% increased Damage", + ["id"] = "sanctum.stat_1416455556", + ["text"] = "#% increased Movement Speed", ["type"] = "sanctum", }, [17] = { - ["id"] = "sanctum.stat_1737465970", - ["text"] = "#% increased Armour", + ["id"] = "sanctum.stat_1388771661", + ["text"] = "#% increased Resolve Aegis", ["type"] = "sanctum", }, [18] = { - ["id"] = "sanctum.stat_3470883829", - ["text"] = "#% additional Physical Damage Reduction", + ["id"] = "sanctum.stat_978111083", + ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "sanctum", }, [19] = { - ["id"] = "sanctum.stat_2948404493", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["id"] = "sanctum.stat_1798691236", + ["text"] = "#% increased chance to Avoid Resolve Loss from Enemy Projectile Hits", ["type"] = "sanctum", }, [20] = { - ["id"] = "sanctum.stat_978111083", - ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["id"] = "sanctum.stat_3134588943", + ["text"] = "#% increased chance to avoid Honour loss from Enemy Melee Hits", ["type"] = "sanctum", }, [21] = { - ["id"] = "sanctum.stat_1016362888", - ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["id"] = "sanctum.stat_1707887759", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "sanctum", }, [22] = { - ["id"] = "sanctum.stat_698936647", - ["text"] = "Your Armour, Evasion and Energy Shield are zero", + ["id"] = "sanctum.stat_3970123360", + ["text"] = "#% increased maximum Honour", ["type"] = "sanctum", }, [23] = { - ["id"] = "sanctum.stat_1040593638", - ["text"] = "# metre to Dodge Roll distance", + ["id"] = "sanctum.stat_1200789871", + ["text"] = "#% increased maximum Life", ["type"] = "sanctum", }, [24] = { - ["id"] = "sanctum.stat_1707887759", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "sanctum.stat_729354668", + ["text"] = "#% increased quantity of Keys dropped by Monsters", ["type"] = "sanctum", }, [25] = { - ["id"] = "sanctum.stat_3882471944", - ["text"] = "#% increased Evasion Rating", + ["id"] = "sanctum.stat_1680962389", + ["text"] = "#% increased quantity of Relics dropped by Monsters", ["type"] = "sanctum", }, [26] = { - ["id"] = "sanctum.stat_1200789871", - ["text"] = "#% increased maximum Life", + ["id"] = "sanctum.stat_3128852541", + ["text"] = "#% to All Resistances", ["type"] = "sanctum", }, [27] = { - ["id"] = "sanctum.stat_1416455556", - ["text"] = "#% increased Movement Speed", + ["id"] = "sanctum.stat_2287831219", + ["text"] = "#% to Honour Resistance", ["type"] = "sanctum", }, [28] = { - ["id"] = "sanctum.stat_3128852541", - ["text"] = "#% to All Resistances", + ["id"] = "sanctum.stat_3096543632", + ["text"] = "#% to Maximum Honour Resistance", ["type"] = "sanctum", }, [29] = { - ["id"] = "sanctum.stat_3134588943", - ["text"] = "#% increased chance to avoid Honour loss from Enemy Melee Hits", + ["id"] = "sanctum.stat_3376488707", + ["text"] = "#% to all Maximum Resistances", ["type"] = "sanctum", }, [30] = { - ["id"] = "sanctum.stat_1798691236", - ["text"] = "#% increased chance to Avoid Resolve Loss from Enemy Projectile Hits", + ["id"] = "sanctum.stat_386901949", + ["text"] = "An additional Room is revealed on the Trial Map", ["type"] = "sanctum", }, [31] = { - ["id"] = "sanctum.stat_2284543592", - ["text"] = "#% chance to Avoid Resolve loss from Enemy Hits if you've been Hit Recently", + ["id"] = "sanctum.stat_1307773596", + ["text"] = "Aureus Coins are converted to Experience upon defeating the Herald of the Scourge", ["type"] = "sanctum", }, [32] = { - ["id"] = "sanctum.stat_3226329527", - ["text"] = "Bosses take #% increased Damage", + ["id"] = "sanctum.stat_315260783", + ["text"] = "Aureus Coins are converted to Relics upon defeating the Herald of the Scourge", ["type"] = "sanctum", }, [33] = { - ["id"] = "sanctum.stat_2469854926", - ["text"] = "Zarokh, the Temporal drops Temporalis", + ["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_2821715641", - ["text"] = "Zarokh, the Temporal drops Sekhema's Resolve", + ["id"] = "sanctum.stat_2207905451", + ["text"] = "Bosses deal #% increased Damage", ["type"] = "sanctum", }, [35] = { - ["id"] = "sanctum.stat_3059754769", - ["text"] = "Zarokh, the Temporal drops Sandstorm Visage", + ["id"] = "sanctum.stat_3226329527", + ["text"] = "Bosses take #% increased Damage", ["type"] = "sanctum", }, [36] = { - ["id"] = "sanctum.stat_2207905451", - ["text"] = "Bosses deal #% increased Damage", + ["id"] = "sanctum.stat_1512067281", + ["text"] = "Cannot be used with Trials below level #", ["type"] = "sanctum", }, [37] = { - ["id"] = "sanctum.stat_408585189", - ["text"] = "Rare Monsters take #% increased Damage", + ["id"] = "sanctum.stat_2283325632", + ["text"] = "Cannot have Boons", ["type"] = "sanctum", }, [38] = { - ["id"] = "sanctum.stat_199414195", - ["text"] = "Rare Monsters deal #% increased Damage", + ["id"] = "sanctum.stat_2545161750", + ["text"] = "Cannot restore Honour", ["type"] = "sanctum", }, [39] = { - ["id"] = "sanctum.stat_729354668", - ["text"] = "#% increased quantity of Keys dropped by Monsters", + ["id"] = "sanctum.stat_2150725270", + ["text"] = "Damage taken cannot be Absorbed", ["type"] = "sanctum", }, [40] = { - ["id"] = "sanctum.stat_1680962389", - ["text"] = "#% increased quantity of Relics dropped by Monsters", + ["id"] = "sanctum.stat_502549687", + ["text"] = "Duplicates up to # random Offer Reward upon defeating the Herald of the Scourge", ["type"] = "sanctum", }, [41] = { - ["id"] = "sanctum.stat_1388771661", - ["text"] = "#% increased Resolve Aegis", + ["id"] = "sanctum.stat_2363402715", + ["text"] = "Fountains have #% chance to grant double Sacred Water", ["type"] = "sanctum", }, [42] = { - ["id"] = "sanctum.stat_3889616543", - ["text"] = "Resolve Aegis Recovers #% faster while not losing Resolve", + ["id"] = "sanctum.stat_2393318075", + ["text"] = "Gain # Sacred Water at the start of the Trial", ["type"] = "sanctum", }, [43] = { - ["id"] = "sanctum.stat_3621177126", - ["text"] = "Resolve Mitigation from Enemy Hits is based on #% of Armour", + ["id"] = "sanctum.stat_4057192895", + ["text"] = "Gain # Sacred Water when you complete a Room", ["type"] = "sanctum", }, [44] = { - ["id"] = "sanctum.stat_774484840", - ["text"] = "#% chance for Resolve Mitigation to be doubled when Hit by an Enemy", + ["id"] = "sanctum.sanctum_effect_0", + ["text"] = "Has ", ["type"] = "sanctum", }, [45] = { - ["id"] = "sanctum.stat_3554921410", - ["text"] = "Traps deal #% increased Damage", + ["id"] = "sanctum.sanctum_effect_59406", + ["text"] = "Has Adrenaline Vial", ["type"] = "sanctum", }, [46] = { - ["id"] = "sanctum.stat_3170238729", - ["text"] = "When you gain a Key #% chance to gain another", + ["id"] = "sanctum.sanctum_effect_47837", + ["text"] = "Has Ahkeli's Guard", ["type"] = "sanctum", }, [47] = { - ["id"] = "sanctum.stat_3096543632", - ["text"] = "#% to Maximum Honour Resistance", + ["id"] = "sanctum.sanctum_effect_9121", + ["text"] = "Has All-Seeing Eye", ["type"] = "sanctum", }, [48] = { - ["id"] = "sanctum.stat_1960517795", - ["text"] = "#% chance to Avoid gaining an Affliction", + ["id"] = "sanctum.sanctum_effect_6090", + ["text"] = "Has Assassin's Blade", ["type"] = "sanctum", }, [49] = { - ["id"] = "sanctum.stat_2545161750", - ["text"] = "Cannot restore Honour", + ["id"] = "sanctum.sanctum_effect_52622", + ["text"] = "Has Balbala's Gift", ["type"] = "sanctum", }, [50] = { - ["id"] = "sanctum.stat_3870327403", - ["text"] = "#% chance if you were to lose all your Honour to have 1 Honour instead", + ["id"] = "sanctum.sanctum_effect_41498", + ["text"] = "Has Black Pearl", ["type"] = "sanctum", }, [51] = { - ["id"] = "sanctum.stat_2155917449", - ["text"] = "#% chance for each of your Keys to upgrade on completing a Floor", + ["id"] = "sanctum.sanctum_effect_34448", + ["text"] = "Has Black Smoke", ["type"] = "sanctum", }, [52] = { - ["id"] = "sanctum.stat_2410906123", - ["text"] = "# Resolve Aegis", + ["id"] = "sanctum.sanctum_effect_40008", + ["text"] = "Has Blunt Sword", ["type"] = "sanctum", }, [53] = { - ["id"] = "sanctum.stat_142859883", - ["text"] = "#% Resolve Mitigation from Enemy Hits", + ["id"] = "sanctum.sanctum_effect_19039", + ["text"] = "Has Branded Balbalakh", ["type"] = "sanctum", }, [54] = { - ["id"] = "sanctum.stat_2363402715", - ["text"] = "Fountains have #% chance to grant double Sacred Water", + ["id"] = "sanctum.sanctum_effect_25062", + ["text"] = "Has Chains of Binding", ["type"] = "sanctum", }, [55] = { - ["id"] = "sanctum.stat_3237367570", - ["text"] = "Rooms are unknown on the Trial Map", + ["id"] = "sanctum.sanctum_effect_60796", + ["text"] = "Has Chipped Dice", ["type"] = "sanctum", }, [56] = { - ["id"] = "sanctum.stat_2287831219", - ["text"] = "#% to Honour Resistance", + ["id"] = "sanctum.sanctum_effect_6958", + ["text"] = "Has Chiselled Stone", ["type"] = "sanctum", }, [57] = { - ["id"] = "sanctum.stat_1583320325", - ["text"] = "#% increased Honour restored", + ["id"] = "sanctum.sanctum_effect_55502", + ["text"] = "Has Corrosive Concoction", ["type"] = "sanctum", }, [58] = { - ["id"] = "sanctum.stat_2150725270", - ["text"] = "Damage taken cannot be Absorbed", + ["id"] = "sanctum.sanctum_effect_32085", + ["text"] = "Has Costly Aid", ["type"] = "sanctum", }, [59] = { - ["id"] = "sanctum.stat_386901949", - ["text"] = "An additional Room is revealed on the Trial Map", + ["id"] = "sanctum.sanctum_effect_30042", + ["text"] = "Has Crystal Shard", ["type"] = "sanctum", }, [60] = { - ["id"] = "sanctum.stat_3970123360", - ["text"] = "#% increased maximum Honour", + ["id"] = "sanctum.sanctum_effect_62584", + ["text"] = "Has Dark Pit", ["type"] = "sanctum", }, [61] = { - ["id"] = "sanctum.stat_4191312223", - ["text"] = "Maximum Honour is 1", + ["id"] = "sanctum.sanctum_effect_41921", + ["text"] = "Has Deadly Snare", ["type"] = "sanctum", }, [62] = { - ["id"] = "sanctum.stat_290775436", - ["text"] = "The Merchant has an additional Choice", + ["id"] = "sanctum.sanctum_effect_59642", + ["text"] = "Has Death Toll", ["type"] = "sanctum", }, [63] = { - ["id"] = "sanctum.stat_3096446459", - ["text"] = "#% increased Merchant Prices", + ["id"] = "sanctum.sanctum_effect_14131", + ["text"] = "Has Deceptive Mirror", ["type"] = "sanctum", }, [64] = { - ["id"] = "sanctum.stat_231205265", - ["text"] = "Monsters have #% chance to drop double Sacred Water", + ["id"] = "sanctum.sanctum_effect_13598", + ["text"] = "Has Dekhara's Necklace", ["type"] = "sanctum", }, [65] = { - ["id"] = "sanctum.stat_2283325632", - ["text"] = "Cannot have Boons", + ["id"] = "sanctum.sanctum_effect_5501", + ["text"] = "Has Dishonoured Tattoo", ["type"] = "sanctum", }, [66] = { - ["id"] = "sanctum.stat_3865020351", - ["text"] = "Restore # Honour on killing a Boss", + ["id"] = "sanctum.sanctum_effect_45401", + ["text"] = "Has Diverted River", ["type"] = "sanctum", }, [67] = { - ["id"] = "sanctum.stat_2492340460", - ["text"] = "Restore # Honour on venerating a Maraketh Shrine", + ["id"] = "sanctum.sanctum_effect_24603", + ["text"] = "Has Earned Honour", ["type"] = "sanctum", }, [68] = { - ["id"] = "sanctum.stat_521869848", - ["text"] = "Restore # Honour on picking up a Key", + ["id"] = "sanctum.sanctum_effect_38167", + ["text"] = "Has Enchanted Urn", ["type"] = "sanctum", }, [69] = { - ["id"] = "sanctum.stat_2114314842", - ["text"] = "Restore # Honour on room completion", + ["id"] = "sanctum.sanctum_effect_35912", + ["text"] = "Has Exhausted Wells", ["type"] = "sanctum", }, [70] = { - ["id"] = "sanctum.stat_2393318075", - ["text"] = "Gain # Sacred Water at the start of the Trial", + ["id"] = "sanctum.sanctum_effect_28313", + ["text"] = "Has Fiendish Wings", ["type"] = "sanctum", }, [71] = { - ["id"] = "sanctum.stat_1512067281", - ["text"] = "Cannot be used with Trials below level #", + ["id"] = "sanctum.sanctum_effect_44476", + ["text"] = "Has Flooding Rivers", ["type"] = "sanctum", }, [72] = { - ["id"] = "sanctum.stat_3182333322", - ["text"] = "This item is destroyed when applied to a Trial", + ["id"] = "sanctum.sanctum_effect_18125", + ["text"] = "Has Forgotten Traditions", ["type"] = "sanctum", }, [73] = { - ["id"] = "sanctum.sanctum_effect_62326", - ["text"] = "Has Honed Claws", + ["id"] = "sanctum.sanctum_effect_40142", + ["text"] = "Has Fountain of Youth", ["type"] = "sanctum", }, [74] = { @@ -33840,453 +33864,453 @@ return { ["type"] = "sanctum", }, [75] = { - ["id"] = "sanctum.sanctum_effect_41921", - ["text"] = "Has Deadly Snare", + ["id"] = "sanctum.sanctum_effect_38171", + ["text"] = "Has Garukhan's Favour", ["type"] = "sanctum", }, [76] = { - ["id"] = "sanctum.sanctum_effect_62584", - ["text"] = "Has Dark Pit", + ["id"] = "sanctum.sanctum_effect_35767", + ["text"] = "Has Gate Toll", ["type"] = "sanctum", }, [77] = { - ["id"] = "sanctum.sanctum_effect_21680", - ["text"] = "Has Low Rivers", + ["id"] = "sanctum.sanctum_effect_32300", + ["text"] = "Has Ghastly Scythe", ["type"] = "sanctum", }, [78] = { - ["id"] = "sanctum.sanctum_effect_40008", - ["text"] = "Has Blunt Sword", + ["id"] = "sanctum.sanctum_effect_45600", + ["text"] = "Has Glass Shard", ["type"] = "sanctum", }, [79] = { - ["id"] = "sanctum.sanctum_effect_56047", - ["text"] = "Has Rapid Quicksand", + ["id"] = "sanctum.sanctum_effect_3157", + ["text"] = "Has Glowing Orb", ["type"] = "sanctum", }, [80] = { - ["id"] = "sanctum.sanctum_effect_16773", - ["text"] = "Has UNUSED", + ["id"] = "sanctum.sanctum_effect_1198", + ["text"] = "Has Golden Smoke", ["type"] = "sanctum", }, [81] = { - ["id"] = "sanctum.sanctum_effect_13820", - ["text"] = "Has Hare Foot", + ["id"] = "sanctum.sanctum_effect_34171", + ["text"] = "Has Haemorrhage", ["type"] = "sanctum", }, [82] = { - ["id"] = "sanctum.sanctum_effect_44476", - ["text"] = "Has Flooding Rivers", + ["id"] = "sanctum.sanctum_effect_13820", + ["text"] = "Has Hare Foot", ["type"] = "sanctum", }, [83] = { - ["id"] = "sanctum.sanctum_effect_46242", - ["text"] = "Has Reparations", + ["id"] = "sanctum.sanctum_effect_28826", + ["text"] = "Has Holy Water", ["type"] = "sanctum", }, [84] = { - ["id"] = "sanctum.sanctum_effect_61003", - ["text"] = "Has Leaking Waterskin", + ["id"] = "sanctum.sanctum_effect_62326", + ["text"] = "Has Honed Claws", ["type"] = "sanctum", }, [85] = { - ["id"] = "sanctum.sanctum_effect_35767", - ["text"] = "Has Gate Toll", + ["id"] = "sanctum.sanctum_effect_4682", + ["text"] = "Has Honoured Challenger", ["type"] = "sanctum", }, [86] = { - ["id"] = "sanctum.sanctum_effect_59642", - ["text"] = "Has Death Toll", + ["id"] = "sanctum.sanctum_effect_359", + ["text"] = "Has Hungry Fangs", ["type"] = "sanctum", }, [87] = { - ["id"] = "sanctum.sanctum_effect_35912", - ["text"] = "Has Exhausted Wells", + ["id"] = "sanctum.sanctum_effect_44836", + ["text"] = "Has Imperial Seal", ["type"] = "sanctum", }, [88] = { - ["id"] = "sanctum.sanctum_effect_13875", - ["text"] = "Has Spiked Shell", + ["id"] = "sanctum.sanctum_effect_35578", + ["text"] = "Has Iron Manacles", ["type"] = "sanctum", }, [89] = { - ["id"] = "sanctum.sanctum_effect_359", - ["text"] = "Has Hungry Fangs", + ["id"] = "sanctum.sanctum_effect_61003", + ["text"] = "Has Leaking Waterskin", ["type"] = "sanctum", }, [90] = { - ["id"] = "sanctum.sanctum_effect_19039", - ["text"] = "Has Branded Balbalakh", + ["id"] = "sanctum.sanctum_effect_21680", + ["text"] = "Has Low Rivers", ["type"] = "sanctum", }, [91] = { - ["id"] = "sanctum.sanctum_effect_9350", - ["text"] = "Has Suspected Sympathiser", + ["id"] = "sanctum.sanctum_effect_379", + ["text"] = "Has Lustrous Lacquer", ["type"] = "sanctum", }, [92] = { - ["id"] = "sanctum.sanctum_effect_4682", - ["text"] = "Has Honoured Challenger", + ["id"] = "sanctum.sanctum_effect_51140", + ["text"] = "Has Lustrous Pearl", ["type"] = "sanctum", }, [93] = { - ["id"] = "sanctum.sanctum_effect_34448", - ["text"] = "Has Black Smoke", + ["id"] = "sanctum.sanctum_effect_45428", + ["text"] = "Has Mirror of Fortune", ["type"] = "sanctum", }, [94] = { - ["id"] = "sanctum.sanctum_effect_44243", - ["text"] = "Has Scrying Crystal", + ["id"] = "sanctum.sanctum_effect_30866", + ["text"] = "Has Moment's Peace", ["type"] = "sanctum", }, [95] = { - ["id"] = "sanctum.sanctum_effect_34561", - ["text"] = "Has Trade Tariff", + ["id"] = "sanctum.sanctum_effect_56996", + ["text"] = "Has Myriad Aspersions", ["type"] = "sanctum", }, [96] = { - ["id"] = "sanctum.sanctum_effect_24536", - ["text"] = "Has Silver Tongue", + ["id"] = "sanctum.sanctum_effect_43834", + ["text"] = "Has Orb of Negation", ["type"] = "sanctum", }, [97] = { - ["id"] = "sanctum.sanctum_effect_44836", - ["text"] = "Has Imperial Seal", + ["id"] = "sanctum.sanctum_effect_54204", + ["text"] = "Has Orbala Statuette", ["type"] = "sanctum", }, [98] = { - ["id"] = "sanctum.sanctum_effect_38171", - ["text"] = "Has Garukhan's Favour", + ["id"] = "sanctum.sanctum_effect_44077", + ["text"] = "Has Orbala's Leathers", ["type"] = "sanctum", }, [99] = { - ["id"] = "sanctum.sanctum_effect_20573", - ["text"] = "Has Winter Drought", + ["id"] = "sanctum.sanctum_effect_29924", + ["text"] = "Has Ornate Dagger", ["type"] = "sanctum", }, [100] = { - ["id"] = "sanctum.sanctum_effect_24603", - ["text"] = "Has Earned Honour", + ["id"] = "sanctum.sanctum_effect_48548", + ["text"] = "Has Pledge to the Afflicted", ["type"] = "sanctum", }, [101] = { - ["id"] = "sanctum.sanctum_effect_47837", - ["text"] = "Has Ahkeli's Guard", + ["id"] = "sanctum.sanctum_effect_60079", + ["text"] = "Has Pledge to the Deserted", ["type"] = "sanctum", }, [102] = { - ["id"] = "sanctum.sanctum_effect_3157", - ["text"] = "Has Glowing Orb", + ["id"] = "sanctum.sanctum_effect_62382", + ["text"] = "Has Pledge to the Guileful", ["type"] = "sanctum", }, [103] = { - ["id"] = "sanctum.sanctum_effect_43384", - ["text"] = "Has Veiled Sight", + ["id"] = "sanctum.sanctum_effect_27532", + ["text"] = "Has Pledge to the Powerful", ["type"] = "sanctum", }, [104] = { - ["id"] = "sanctum.sanctum_effect_17084", - ["text"] = "Has Red Smoke", + ["id"] = "sanctum.sanctum_effect_28906", + ["text"] = "Has Purple Smoke", ["type"] = "sanctum", }, [105] = { - ["id"] = "sanctum.sanctum_effect_1198", - ["text"] = "Has Golden Smoke", + ["id"] = "sanctum.sanctum_effect_31580", + ["text"] = "Has Raincaller", ["type"] = "sanctum", }, [106] = { - ["id"] = "sanctum.sanctum_effect_28906", - ["text"] = "Has Purple Smoke", + ["id"] = "sanctum.sanctum_effect_56047", + ["text"] = "Has Rapid Quicksand", ["type"] = "sanctum", }, [107] = { - ["id"] = "sanctum.sanctum_effect_32300", - ["text"] = "Has Ghastly Scythe", + ["id"] = "sanctum.sanctum_effect_17084", + ["text"] = "Has Red Smoke", ["type"] = "sanctum", }, [108] = { - ["id"] = "sanctum.sanctum_effect_44077", - ["text"] = "Has Orbala's Leathers", + ["id"] = "sanctum.sanctum_effect_46242", + ["text"] = "Has Reparations", ["type"] = "sanctum", }, [109] = { - ["id"] = "sanctum.sanctum_effect_34499", - ["text"] = "Has Sekhema's Cloak", + ["id"] = "sanctum.sanctum_effect_30450", + ["text"] = "Has Rusted Mallet", ["type"] = "sanctum", }, [110] = { - ["id"] = "sanctum.sanctum_effect_13598", - ["text"] = "Has Dekhara's Necklace", + ["id"] = "sanctum.sanctum_effect_27130", + ["text"] = "Has Sacred Mirror", ["type"] = "sanctum", }, [111] = { - ["id"] = "sanctum.sanctum_effect_50613", - ["text"] = "Has Unassuming Brick", + ["id"] = "sanctum.sanctum_effect_41741", + ["text"] = "Has Sanguine Vial", ["type"] = "sanctum", }, [112] = { - ["id"] = "sanctum.sanctum_effect_30866", - ["text"] = "Has Moment's Peace", + ["id"] = "sanctum.sanctum_effect_44243", + ["text"] = "Has Scrying Crystal", ["type"] = "sanctum", }, [113] = { - ["id"] = "sanctum.sanctum_effect_53929", - ["text"] = "Has Spiked Exit", + ["id"] = "sanctum.sanctum_effect_35605", + ["text"] = "Has Season of Famine", ["type"] = "sanctum", }, [114] = { - ["id"] = "sanctum.sanctum_effect_48875", - ["text"] = "Has Tattered Blindfold", + ["id"] = "sanctum.sanctum_effect_34499", + ["text"] = "Has Sekhema's Cloak", ["type"] = "sanctum", }, [115] = { - ["id"] = "sanctum.sanctum_effect_38381", - ["text"] = "Has Unquenched Thirst", + ["id"] = "sanctum.sanctum_effect_48487", + ["text"] = "Has Sharpened Arrowhead", ["type"] = "sanctum", }, [116] = { - ["id"] = "sanctum.sanctum_effect_5501", - ["text"] = "Has Dishonoured Tattoo", + ["id"] = "sanctum.sanctum_effect_16335", + ["text"] = "Has Shattered Shield", ["type"] = "sanctum", }, [117] = { - ["id"] = "sanctum.sanctum_effect_45401", - ["text"] = "Has Diverted River", + ["id"] = "sanctum.sanctum_effect_51458", + ["text"] = "Has Silver Chalice", ["type"] = "sanctum", }, [118] = { - ["id"] = "sanctum.sanctum_effect_31580", - ["text"] = "Has Raincaller", + ["id"] = "sanctum.sanctum_effect_24536", + ["text"] = "Has Silver Tongue", ["type"] = "sanctum", }, [119] = { - ["id"] = "sanctum.sanctum_effect_14131", - ["text"] = "Has Deceptive Mirror", + ["id"] = "sanctum.sanctum_effect_53929", + ["text"] = "Has Spiked Exit", ["type"] = "sanctum", }, [120] = { - ["id"] = "sanctum.sanctum_effect_34171", - ["text"] = "Has Haemorrhage", + ["id"] = "sanctum.sanctum_effect_13875", + ["text"] = "Has Spiked Shell", ["type"] = "sanctum", }, [121] = { - ["id"] = "sanctum.sanctum_effect_9121", - ["text"] = "Has All-Seeing Eye", + ["id"] = "sanctum.sanctum_effect_9350", + ["text"] = "Has Suspected Sympathiser", ["type"] = "sanctum", }, [122] = { - ["id"] = "sanctum.sanctum_effect_51140", - ["text"] = "Has Lustrous Pearl", + ["id"] = "sanctum.sanctum_effect_48875", + ["text"] = "Has Tattered Blindfold", ["type"] = "sanctum", }, [123] = { - ["id"] = "sanctum.sanctum_effect_57507", - ["text"] = "Has Viscous Ichor", + ["id"] = "sanctum.sanctum_effect_34561", + ["text"] = "Has Trade Tariff", ["type"] = "sanctum", }, [124] = { - ["id"] = "sanctum.sanctum_effect_46977", - ["text"] = "Has Wooden Effigy", + ["id"] = "sanctum.sanctum_effect_55120", + ["text"] = "Has Tradition's Demand", ["type"] = "sanctum", }, [125] = { - ["id"] = "sanctum.sanctum_effect_41741", - ["text"] = "Has Sanguine Vial", + ["id"] = "sanctum.sanctum_effect_16773", + ["text"] = "Has UNUSED", ["type"] = "sanctum", }, [126] = { - ["id"] = "sanctum.sanctum_effect_29924", - ["text"] = "Has Ornate Dagger", + ["id"] = "sanctum.sanctum_effect_50613", + ["text"] = "Has Unassuming Brick", ["type"] = "sanctum", }, [127] = { - ["id"] = "sanctum.sanctum_effect_6090", - ["text"] = "Has Assassin's Blade", + ["id"] = "sanctum.sanctum_effect_38381", + ["text"] = "Has Unquenched Thirst", ["type"] = "sanctum", }, [128] = { - ["id"] = "sanctum.sanctum_effect_38167", - ["text"] = "Has Enchanted Urn", + ["id"] = "sanctum.sanctum_effect_9853", + ["text"] = "Has Untouchable", ["type"] = "sanctum", }, [129] = { - ["id"] = "sanctum.sanctum_effect_59406", - ["text"] = "Has Adrenaline Vial", + ["id"] = "sanctum.sanctum_effect_3716", + ["text"] = "Has Upward Path", ["type"] = "sanctum", }, [130] = { - ["id"] = "sanctum.sanctum_effect_45428", - ["text"] = "Has Mirror of Fortune", + ["id"] = "sanctum.sanctum_effect_43384", + ["text"] = "Has Veiled Sight", ["type"] = "sanctum", }, [131] = { - ["id"] = "sanctum.sanctum_effect_54204", - ["text"] = "Has Orbala Statuette", + ["id"] = "sanctum.sanctum_effect_57507", + ["text"] = "Has Viscous Ichor", ["type"] = "sanctum", }, [132] = { - ["id"] = "sanctum.sanctum_effect_28826", - ["text"] = "Has Holy Water", + ["id"] = "sanctum.sanctum_effect_24131", + ["text"] = "Has Weakened Flesh", ["type"] = "sanctum", }, [133] = { - ["id"] = "sanctum.sanctum_effect_40142", - ["text"] = "Has Fountain of Youth", + ["id"] = "sanctum.sanctum_effect_20573", + ["text"] = "Has Winter Drought", ["type"] = "sanctum", }, [134] = { - ["id"] = "sanctum.sanctum_effect_51458", - ["text"] = "Has Silver Chalice", + ["id"] = "sanctum.sanctum_effect_46977", + ["text"] = "Has Wooden Effigy", ["type"] = "sanctum", }, [135] = { - ["id"] = "sanctum.sanctum_effect_41498", - ["text"] = "Has Black Pearl", + ["id"] = "sanctum.sanctum_effect_30473", + ["text"] = "Has Worn Sandals", ["type"] = "sanctum", }, [136] = { - ["id"] = "sanctum.sanctum_effect_52622", - ["text"] = "Has Balbala's Gift", + ["id"] = "sanctum.stat_2948404493", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "sanctum", }, [137] = { - ["id"] = "sanctum.sanctum_effect_60796", - ["text"] = "Has Chipped Dice", + ["id"] = "sanctum.stat_4191312223", + ["text"] = "Maximum Honour is 1", ["type"] = "sanctum", }, [138] = { - ["id"] = "sanctum.sanctum_effect_3716", - ["text"] = "Has Upward Path", + ["id"] = "sanctum.stat_1890519597", + ["text"] = "Monsters deal #% increased Damage", ["type"] = "sanctum", }, [139] = { - ["id"] = "sanctum.sanctum_effect_27130", - ["text"] = "Has Sacred Mirror", + ["id"] = "sanctum.stat_231205265", + ["text"] = "Monsters have #% chance to drop double Sacred Water", ["type"] = "sanctum", }, [140] = { - ["id"] = "sanctum.sanctum_effect_30042", - ["text"] = "Has Crystal Shard", + ["id"] = "sanctum.stat_3909654181", + ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", ["type"] = "sanctum", }, [141] = { - ["id"] = "sanctum.sanctum_effect_379", - ["text"] = "Has Lustrous Lacquer", + ["id"] = "sanctum.stat_3114474137", + ["text"] = "Monsters take #% increased Damage", ["type"] = "sanctum", }, [142] = { - ["id"] = "sanctum.sanctum_effect_18125", - ["text"] = "Has Forgotten Traditions", + ["id"] = "sanctum.stat_199414195", + ["text"] = "Rare Monsters deal #% increased Damage", ["type"] = "sanctum", }, [143] = { - ["id"] = "sanctum.sanctum_effect_35605", - ["text"] = "Has Season of Famine", + ["id"] = "sanctum.stat_408585189", + ["text"] = "Rare Monsters take #% increased Damage", ["type"] = "sanctum", }, [144] = { - ["id"] = "sanctum.sanctum_effect_56996", - ["text"] = "Has Myriad Aspersions", + ["id"] = "sanctum.stat_3889616543", + ["text"] = "Resolve Aegis Recovers #% faster while not losing Resolve", ["type"] = "sanctum", }, [145] = { - ["id"] = "sanctum.sanctum_effect_32085", - ["text"] = "Has Costly Aid", + ["id"] = "sanctum.stat_3621177126", + ["text"] = "Resolve Mitigation from Enemy Hits is based on #% of Armour", ["type"] = "sanctum", }, [146] = { - ["id"] = "sanctum.sanctum_effect_25062", - ["text"] = "Has Chains of Binding", + ["id"] = "sanctum.stat_3865020351", + ["text"] = "Restore # Honour on killing a Boss", ["type"] = "sanctum", }, [147] = { - ["id"] = "sanctum.sanctum_effect_9853", - ["text"] = "Has Untouchable", + ["id"] = "sanctum.stat_521869848", + ["text"] = "Restore # Honour on picking up a Key", ["type"] = "sanctum", }, [148] = { - ["id"] = "sanctum.sanctum_effect_30450", - ["text"] = "Has Rusted Mallet", + ["id"] = "sanctum.stat_2114314842", + ["text"] = "Restore # Honour on room completion", ["type"] = "sanctum", }, [149] = { - ["id"] = "sanctum.sanctum_effect_24131", - ["text"] = "Has Weakened Flesh", + ["id"] = "sanctum.stat_2492340460", + ["text"] = "Restore # Honour on venerating a Maraketh Shrine", ["type"] = "sanctum", }, [150] = { - ["id"] = "sanctum.sanctum_effect_28313", - ["text"] = "Has Fiendish Wings", + ["id"] = "sanctum.stat_3237367570", + ["text"] = "Rooms are unknown on the Trial Map", ["type"] = "sanctum", }, [151] = { - ["id"] = "sanctum.sanctum_effect_30473", - ["text"] = "Has Worn Sandals", + ["id"] = "sanctum.stat_1175354969", + ["text"] = "The Herald of the Scourge drops an additional Invocation", ["type"] = "sanctum", }, [152] = { - ["id"] = "sanctum.sanctum_effect_43834", - ["text"] = "Has Orb of Negation", + ["id"] = "sanctum.stat_290775436", + ["text"] = "The Merchant has an additional Choice", ["type"] = "sanctum", }, [153] = { - ["id"] = "sanctum.sanctum_effect_55120", - ["text"] = "Has Tradition's Demand", + ["id"] = "sanctum.stat_3182333322", + ["text"] = "This item is destroyed when applied to a Trial", ["type"] = "sanctum", }, [154] = { - ["id"] = "sanctum.sanctum_effect_6958", - ["text"] = "Has Chiselled Stone", + ["id"] = "sanctum.stat_3554921410", + ["text"] = "Traps deal #% increased Damage", ["type"] = "sanctum", }, [155] = { - ["id"] = "sanctum.sanctum_effect_45600", - ["text"] = "Has Glass Shard", + ["id"] = "sanctum.stat_3170238729", + ["text"] = "When you gain a Key #% chance to gain another", ["type"] = "sanctum", }, [156] = { - ["id"] = "sanctum.sanctum_effect_35578", - ["text"] = "Has Iron Manacles", + ["id"] = "sanctum.stat_698936647", + ["text"] = "Your Armour, Evasion and Energy Shield are zero", ["type"] = "sanctum", }, [157] = { - ["id"] = "sanctum.sanctum_effect_48487", - ["text"] = "Has Sharpened Arrowhead", + ["id"] = "sanctum.stat_2149490821", + ["text"] = "Zarokh, the Temporal deals #% more Damage", ["type"] = "sanctum", }, [158] = { - ["id"] = "sanctum.sanctum_effect_16335", - ["text"] = "Has Shattered Shield", + ["id"] = "sanctum.stat_3840591093", + ["text"] = "Zarokh, the Temporal drops Against the Darkness", ["type"] = "sanctum", }, [159] = { - ["id"] = "sanctum.sanctum_effect_55502", - ["text"] = "Has Corrosive Concoction", + ["id"] = "sanctum.stat_767926824", + ["text"] = "Zarokh, the Temporal drops Blessed Bonds", ["type"] = "sanctum", }, [160] = { - ["id"] = "sanctum.sanctum_effect_62382", - ["text"] = "Has Pledge to the Guileful", + ["id"] = "sanctum.stat_3059754769", + ["text"] = "Zarokh, the Temporal drops Sandstorm Visage", ["type"] = "sanctum", }, [161] = { - ["id"] = "sanctum.sanctum_effect_27532", - ["text"] = "Has Pledge to the Powerful", + ["id"] = "sanctum.stat_2821715641", + ["text"] = "Zarokh, the Temporal drops Sekhema's Resolve", ["type"] = "sanctum", }, [162] = { - ["id"] = "sanctum.sanctum_effect_60079", - ["text"] = "Has Pledge to the Deserted", + ["id"] = "sanctum.stat_2469854926", + ["text"] = "Zarokh, the Temporal drops Temporalis", ["type"] = "sanctum", }, [163] = { - ["id"] = "sanctum.sanctum_effect_48548", - ["text"] = "Has Pledge to the Afflicted", + ["id"] = "sanctum.stat_3878191575", + ["text"] = "Zarokh, the Temporal drops an additional Barya", ["type"] = "sanctum", }, [164] = { - ["id"] = "sanctum.sanctum_effect_0", - ["text"] = "Has ", + ["id"] = "sanctum.stat_2226900052", + ["text"] = "Zarokh, the Temporal takes #% more Damage", ["type"] = "sanctum", }, }, @@ -34296,493 +34320,493 @@ return { [10] = { ["entries"] = { [1] = { - ["id"] = "skill.shield_block", - ["text"] = "Grants Skill: Level # Raise Shield", + ["id"] = "skill.alchemists_boon", + ["text"] = "Grants Skill: Level # Alchemist's Boon", ["type"] = "skill", }, [2] = { - ["id"] = "skill.mana_drain", - ["text"] = "Grants Skill: Level # Mana Drain", + ["id"] = "skill.archmage", + ["text"] = "Grants Skill: Level # Archmage", ["type"] = "skill", }, [3] = { - ["id"] = "skill.power_siphon", - ["text"] = "Grants Skill: Level # Power Siphon", + ["id"] = "skill.new_new_arctic_armour", + ["text"] = "Grants Skill: Level # Arctic Armour", ["type"] = "skill", }, [4] = { - ["id"] = "skill.summon_skeleton_warrior", - ["text"] = "Grants Skill: Level # Skeletal Warrior Minion", + ["id"] = "skill.attrition", + ["text"] = "Grants Skill: Level # Attrition", ["type"] = "skill", }, [5] = { - ["id"] = "skill.sigil_of_power", - ["text"] = "Grants Skill: Level # Sigil of Power", + ["id"] = "skill.azmerian_swarm", + ["text"] = "Grants Skill: Level # Azmerian Swarms", ["type"] = "skill", }, [6] = { - ["id"] = "skill.lightning_bolt", - ["text"] = "Grants Skill: Level # Lightning Bolt", + ["id"] = "skill.summon_azmerian_wolf", + ["text"] = "Grants Skill: Level # Azmerian Wolf", ["type"] = "skill", }, [7] = { - ["id"] = "skill.malice", - ["text"] = "Grants Skill: Level # Malice", + ["id"] = "skill.barkskin", + ["text"] = "Grants Skill: Level # Barkskin", ["type"] = "skill", }, [8] = { - ["id"] = "skill.volatile_dead", - ["text"] = "Grants Skill: Level # Volatile Dead", + ["id"] = "skill.barrier_invocation", + ["text"] = "Grants Skill: Level # Barrier Invocation", ["type"] = "skill", }, [9] = { - ["id"] = "skill.firebolt", - ["text"] = "Grants Skill: Level # Firebolt", + ["id"] = "skill.berserk", + ["text"] = "Grants Skill: Level # Berserk", ["type"] = "skill", }, [10] = { - ["id"] = "skill.chaosbolt", - ["text"] = "Grants Skill: Level # Chaos Bolt", + ["id"] = "skill.black_powder_blitz_reservation", + ["text"] = "Grants Skill: Level # Black Powder Blitz", ["type"] = "skill", }, [11] = { - ["id"] = "skill.bone_blast", - ["text"] = "Grants Skill: Level # Bone Blast", + ["id"] = "skill.blink", + ["text"] = "Grants Skill: Level # Blink", ["type"] = "skill", }, [12] = { - ["id"] = "skill.freezing_shards", - ["text"] = "Grants Skill: Level # Freezing Shards", + ["id"] = "skill.blink_reservation", + ["text"] = "Grants Skill: Level # Blink", ["type"] = "skill", }, [13] = { - ["id"] = "skill.discipline", - ["text"] = "Grants Skill: Level # Discipline", + ["id"] = "skill.bone_blast", + ["text"] = "Grants Skill: Level # Bone Blast", ["type"] = "skill", }, [14] = { - ["id"] = "skill.living_bomb_player", - ["text"] = "Grants Skill: Level # Living Bomb", + ["id"] = "skill.briarpatch", + ["text"] = "Grants Skill: Level # Briarpatch", ["type"] = "skill", }, [15] = { - ["id"] = "skill.spellslinger_invocation", - ["text"] = "Grants Skill: Level # Spellslinger", + ["id"] = "skill.exploding_poison_toad", + ["text"] = "Grants Skill: Level # Bursting Fen Toad", ["type"] = "skill", }, [16] = { - ["id"] = "skill.unique_dusk_vigil_triggered_blazing_cluster", - ["text"] = "Grants Skill: Level # Ember Fusillade", + ["id"] = "skill.hyena_cackle", + ["text"] = "Grants Skill: Level # Cackling Companions", ["type"] = "skill", }, [17] = { - ["id"] = "skill.purity_of_fire", - ["text"] = "Grants Skill: Level # Purity of Fire", + ["id"] = "skill.cast_on_block", + ["text"] = "Grants Skill: Level # Cast on Block", ["type"] = "skill", }, [18] = { - ["id"] = "skill.unique_earthbound_triggered_spark", - ["text"] = "Grants Skill: Level # Spark", + ["id"] = "skill.cast_on_charm_use", + ["text"] = "Grants Skill: Level # Cast on Charm Use", ["type"] = "skill", }, [19] = { - ["id"] = "skill.purity_of_lightning", - ["text"] = "Grants Skill: Level # Purity of Lightning", + ["id"] = "skill.cast_on_critical_strike", + ["text"] = "Grants Skill: Level # Cast on Critical", ["type"] = "skill", }, [20] = { - ["id"] = "skill.unique_breach_lightning_bolt", - ["text"] = "Grants Skill: Level # Lightning Bolt", + ["id"] = "skill.cast_on_dodge", + ["text"] = "Grants Skill: Level # Cast on Dodge", ["type"] = "skill", }, [21] = { - ["id"] = "skill.purity_of_ice", - ["text"] = "Grants Skill: Level # Purity of Ice", + ["id"] = "skill.cast_on_elemental_ailment", + ["text"] = "Grants Skill: Level # Cast on Elemental Ailment", ["type"] = "skill", }, [22] = { - ["id"] = "skill.corpse_cloud_triggered", - ["text"] = "Grants Skill: Level # Decompose", + ["id"] = "skill.cast_on_minion_death", + ["text"] = "Grants Skill: Level # Cast on Minion Death", ["type"] = "skill", }, [23] = { - ["id"] = "skill.parry", - ["text"] = "Grants Skill: Level # Parry", + ["id"] = "skill.chaosbolt", + ["text"] = "Grants Skill: Level # Chaos Bolt", ["type"] = "skill", }, [24] = { - ["id"] = "skill.reap", - ["text"] = "Grants Skill: Level # Reap", + ["id"] = "skill.chaos_surge", + ["text"] = "Grants Skill: Level # Chaotic Surge", ["type"] = "skill", }, [25] = { - ["id"] = "skill.galvanic_field", - ["text"] = "Grants Skill: Level # Galvanic Field", + ["id"] = "skill.charge_regulation", + ["text"] = "Grants Skill: Level # Charge Regulation", ["type"] = "skill", }, [26] = { - ["id"] = "skill.solar_orb", - ["text"] = "Grants Skill: Level # Solar Orb", + ["id"] = "skill.coiling_bolts", + ["text"] = "Grants Skill: Level # Coiling Bolts", ["type"] = "skill", }, [27] = { - ["id"] = "skill.consecrate", - ["text"] = "Grants Skill: Level # Consecrate", + ["id"] = "skill.combat_frenzy", + ["text"] = "Grants Skill: Level # Combat Frenzy", ["type"] = "skill", }, [28] = { - ["id"] = "skill.fulmination", - ["text"] = "Grants Skill: Level # Fulmination", + ["id"] = "skill.requiem_ammo", + ["text"] = "Grants Skill: Level # Compose Requiem", ["type"] = "skill", }, [29] = { - ["id"] = "skill.corpse_cloud", - ["text"] = "Grants Skill: Level # Decompose", + ["id"] = "skill.consecrate", + ["text"] = "Grants Skill: Level # Consecrate", ["type"] = "skill", }, [30] = { - ["id"] = "skill.cast_on_block", - ["text"] = "Grants Skill: Level # Cast on Block", + ["id"] = "skill.convalescence", + ["text"] = "Grants Skill: Level # Convalescence", ["type"] = "skill", }, [31] = { - ["id"] = "skill.unleash", - ["text"] = "Grants Skill: Level # Unleash", + ["id"] = "skill.crackling_palm", + ["text"] = "Grants Skill: Level # Crackling Palm", ["type"] = "skill", }, [32] = { - ["id"] = "skill.enervating_nova", - ["text"] = "Grants Skill: Level # Enervating Nova", + ["id"] = "skill.crushing_fear", + ["text"] = "Grants Skill: Level # Crushing Fear", ["type"] = "skill", }, [33] = { - ["id"] = "skill.feast_of_flesh", - ["text"] = "Grants Skill: Level # Feast of Flesh", + ["id"] = "skill.corpse_cloud_triggered", + ["text"] = "Grants Skill: Level # Decompose", ["type"] = "skill", }, [34] = { - ["id"] = "skill.hyena_cackle", - ["text"] = "Grants Skill: Level # Cackling Companions", + ["id"] = "skill.corpse_cloud", + ["text"] = "Grants Skill: Level # Decompose", ["type"] = "skill", }, [35] = { - ["id"] = "skill.sanguine_revelry", - ["text"] = "Grants Skill: Level # Sanguine Revelry", + ["id"] = "skill.defiance_banner_reservation", + ["text"] = "Grants Skill: Level # Defiance Banner", ["type"] = "skill", }, [36] = { - ["id"] = "skill.phantasmal_arrow", - ["text"] = "Grants Skill: Level # Phantasmal Arrow", + ["id"] = "skill.discipline", + ["text"] = "Grants Skill: Level # Discipline", ["type"] = "skill", }, [37] = { - ["id"] = "skill.gemini_surge", - ["text"] = "Grants Skill: Level # Gemini Surge", + ["id"] = "skill.dread_banner_reservation", + ["text"] = "Grants Skill: Level # Dread Banner", ["type"] = "skill", }, [38] = { - ["id"] = "skill.herald_of_ash", - ["text"] = "Grants Skill: Level # Herald of Ash", + ["id"] = "skill.elemental_conflux", + ["text"] = "Grants Skill: Level # Elemental Conflux", ["type"] = "skill", }, [39] = { - ["id"] = "skill.cast_on_charm_use", - ["text"] = "Grants Skill: Level # Cast on Charm Use", + ["id"] = "skill.elemental_invocation", + ["text"] = "Grants Skill: Level # Elemental Invocation", ["type"] = "skill", }, [40] = { - ["id"] = "skill.black_powder_blitz_reservation", - ["text"] = "Grants Skill: Level # Black Powder Blitz", + ["id"] = "skill.unique_dusk_vigil_triggered_blazing_cluster", + ["text"] = "Grants Skill: Level # Ember Fusillade", ["type"] = "skill", }, [41] = { - ["id"] = "skill.future_past", - ["text"] = "Grants Skill: Level # Future-Past", + ["id"] = "skill.enervating_nova", + ["text"] = "Grants Skill: Level # Enervating Nova", ["type"] = "skill", }, [42] = { - ["id"] = "skill.blink", - ["text"] = "Grants Skill: Level # Blink", + ["id"] = "skill.eternal_rage", + ["text"] = "Grants Skill: Level # Eternal Rage", ["type"] = "skill", }, [43] = { - ["id"] = "skill.life_remnants", - ["text"] = "Grants Skill: Level # Life Remnants", + ["id"] = "skill.feast_of_flesh", + ["text"] = "Grants Skill: Level # Feast of Flesh", ["type"] = "skill", }, [44] = { - ["id"] = "skill.herald_of_ice", - ["text"] = "Grants Skill: Level # Herald of Ice", + ["id"] = "skill.feral_invocation", + ["text"] = "Grants Skill: Level # Feral Invocation", ["type"] = "skill", }, [45] = { - ["id"] = "skill.herald_of_thunder", - ["text"] = "Grants Skill: Level # Herald of Thunder", + ["id"] = "skill.fireball", + ["text"] = "Grants Skill: Level # Fireball", ["type"] = "skill", }, [46] = { - ["id"] = "skill.cast_lightning_spell_on_hit", - ["text"] = "Grants Skill: Level # Thundergod's Wrath", + ["id"] = "skill.firebolt", + ["text"] = "Grants Skill: Level # Firebolt", ["type"] = "skill", }, [47] = { - ["id"] = "skill.requiem_ammo", - ["text"] = "Grants Skill: Level # Compose Requiem", + ["id"] = "skill.freezing_shards", + ["text"] = "Grants Skill: Level # Freezing Shards", ["type"] = "skill", }, [48] = { - ["id"] = "skill.exploding_poison_toad", - ["text"] = "Grants Skill: Level # Bursting Fen Toad", + ["id"] = "skill.fulmination", + ["text"] = "Grants Skill: Level # Fulmination", ["type"] = "skill", }, [49] = { - ["id"] = "skill.crackling_palm", - ["text"] = "Grants Skill: Level # Crackling Palm", + ["id"] = "skill.future_past", + ["text"] = "Grants Skill: Level # Future-Past", ["type"] = "skill", }, [50] = { - ["id"] = "skill.scattering_calamity", - ["text"] = "Grants Skill: Level # His Scattering Calamity", + ["id"] = "skill.galvanic_field", + ["text"] = "Grants Skill: Level # Galvanic Field", ["type"] = "skill", }, [51] = { - ["id"] = "skill.withering_presence", - ["text"] = "Grants Skill: Level # Withering Presence", + ["id"] = "skill.gemini_surge", + ["text"] = "Grants Skill: Level # Gemini Surge", ["type"] = "skill", }, [52] = { - ["id"] = "skill.pinnacle_of_power", - ["text"] = "Grants Skill: Level # Pinnacle of Power", + ["id"] = "skill.ghost_dance", + ["text"] = "Grants Skill: Level # Ghost Dance", ["type"] = "skill", }, [53] = { - ["id"] = "skill.valakos_charge", - ["text"] = "Grants Skill: Level # Valako's Charge", + ["id"] = "skill.harbinger_of_madness", + ["text"] = "Grants Skill: Level # Harbinger of Madness", ["type"] = "skill", }, [54] = { - ["id"] = "skill.runic_tempering", - ["text"] = "Grants Skill: Level # Runic Tempering", + ["id"] = "skill.heart_of_ice", + ["text"] = "Grants Skill: Level # Heart of Ice", ["type"] = "skill", }, [55] = { - ["id"] = "skill.icestorm", - ["text"] = "Grants Skill: Level # Icestorm", + ["id"] = "skill.herald_of_ash", + ["text"] = "Grants Skill: Level # Herald of Ash", ["type"] = "skill", }, [56] = { - ["id"] = "skill.chaos_surge", - ["text"] = "Grants Skill: Level # Chaotic Surge", + ["id"] = "skill.herald_of_blood", + ["text"] = "Grants Skill: Level # Herald of Blood", ["type"] = "skill", }, [57] = { - ["id"] = "skill.vile_disruption", - ["text"] = "Grants Skill: Level # His Vile Intrusion", + ["id"] = "skill.herald_of_ice", + ["text"] = "Grants Skill: Level # Herald of Ice", ["type"] = "skill", }, [58] = { - ["id"] = "skill.his_foul_emergence", - ["text"] = "Grants Skill: Level # His Foul Emergence", + ["id"] = "skill.herald_of_plague", + ["text"] = "Grants Skill: Level # Herald of Plague", ["type"] = "skill", }, [59] = { - ["id"] = "skill.molten_crash", - ["text"] = "Grants Skill: Level # Molten Crash", + ["id"] = "skill.herald_of_thunder", + ["text"] = "Grants Skill: Level # Herald of Thunder", ["type"] = "skill", }, [60] = { - ["id"] = "skill.grave_command", - ["text"] = "Grants Skill: Level # His Grave Command", + ["id"] = "skill.atziri_herald", + ["text"] = "Grants Skill: Level # Herald of the Royal Queen", ["type"] = "skill", }, [61] = { - ["id"] = "skill.heart_of_ice", - ["text"] = "Grants Skill: Level # Heart of Ice", + ["id"] = "skill.his_foul_emergence", + ["text"] = "Grants Skill: Level # His Foul Emergence", ["type"] = "skill", }, [62] = { - ["id"] = "skill.his_winnowing_flame", - ["text"] = "Grants Skill: Level # His Winnowing Flame", + ["id"] = "skill.grave_command", + ["text"] = "Grants Skill: Level # His Grave Command", ["type"] = "skill", }, [63] = { - ["id"] = "skill.atziri_herald", - ["text"] = "Grants Skill: Level # Herald of the Royal Queen", + ["id"] = "skill.scattering_calamity", + ["text"] = "Grants Skill: Level # His Scattering Calamity", ["type"] = "skill", }, [64] = { - ["id"] = "skill.sigil_of_life", - ["text"] = "Grants Skill: Level # Rite of Restoration", + ["id"] = "skill.vile_disruption", + ["text"] = "Grants Skill: Level # His Vile Intrusion", ["type"] = "skill", }, [65] = { - ["id"] = "skill.mirror_of_refraction", - ["text"] = "Grants Skill: Level # Mirror of Refraction", + ["id"] = "skill.his_winnowing_flame", + ["text"] = "Grants Skill: Level # His Winnowing Flame", ["type"] = "skill", }, [66] = { - ["id"] = "skill.shattering_spite", - ["text"] = "Grants Skill: Level # Shattering Spite", + ["id"] = "skill.icestorm", + ["text"] = "Grants Skill: Level # Icestorm", ["type"] = "skill", }, [67] = { - ["id"] = "skill.triggered_molten_shower", - ["text"] = "Grants Skill: Level # Molten Shower", + ["id"] = "skill.impurity", + ["text"] = "Grants Skill: Level # Impurity", ["type"] = "skill", }, [68] = { - ["id"] = "skill.impurity", - ["text"] = "Grants Skill: Level # Impurity", + ["id"] = "skill.iron_ward", + ["text"] = "Grants Skill: Level # Iron Ward", ["type"] = "skill", }, [69] = { - ["id"] = "skill.harbinger_of_madness", - ["text"] = "Grants Skill: Level # Harbinger of Madness", + ["id"] = "skill.life_remnants", + ["text"] = "Grants Skill: Level # Life Remnants", ["type"] = "skill", }, [70] = { - ["id"] = "skill.spirit_vessel_companion", - ["text"] = "Grants Skill: Level # Spirit Vessel", + ["id"] = "skill.unique_breach_lightning_bolt", + ["text"] = "Grants Skill: Level # Lightning Bolt", ["type"] = "skill", }, [71] = { - ["id"] = "skill.summon_mist_raven", - ["text"] = "Grants Skill: Level # Mist Raven", + ["id"] = "skill.lightning_bolt", + ["text"] = "Grants Skill: Level # Lightning Bolt", ["type"] = "skill", }, [72] = { - ["id"] = "skill.coiling_bolts", - ["text"] = "Grants Skill: Level # Coiling Bolts", + ["id"] = "skill.lingering_illusion", + ["text"] = "Grants Skill: Level # Lingering Illusion", ["type"] = "skill", }, [73] = { - ["id"] = "skill.elemental_invocation", - ["text"] = "Grants Skill: Level # Elemental Invocation", + ["id"] = "skill.living_bomb_player", + ["text"] = "Grants Skill: Level # Living Bomb", ["type"] = "skill", }, [74] = { - ["id"] = "skill.crushing_fear", - ["text"] = "Grants Skill: Level # Crushing Fear", + ["id"] = "skill.magma_barrier", + ["text"] = "Grants Skill: Level # Magma Barrier", ["type"] = "skill", }, [75] = { - ["id"] = "skill.sacrifice", - ["text"] = "Grants Skill: Level # Sacrifice", + ["id"] = "skill.malice", + ["text"] = "Grants Skill: Level # Malice", ["type"] = "skill", }, [76] = { - ["id"] = "skill.archmage", - ["text"] = "Grants Skill: Level # Archmage", + ["id"] = "skill.mana_drain", + ["text"] = "Grants Skill: Level # Mana Drain", ["type"] = "skill", }, [77] = { - ["id"] = "skill.summon_rhoa_mount", - ["text"] = "Grants Skill: Level # Rhoa Mount", + ["id"] = "skill.mana_remnants", + ["text"] = "Grants Skill: Level # Mana Remnants", ["type"] = "skill", }, [78] = { - ["id"] = "skill.fireball", - ["text"] = "Grants Skill: Level # Fireball", + ["id"] = "skill.midnight_star", + ["text"] = "Grants Skill: Level # Midnight Zenith", ["type"] = "skill", }, [79] = { - ["id"] = "skill.elemental_conflux", - ["text"] = "Grants Skill: Level # Elemental Conflux", + ["id"] = "skill.mirage_archer", + ["text"] = "Grants Skill: Level # Mirage Archer", ["type"] = "skill", }, [80] = { - ["id"] = "skill.azmerian_swarm", - ["text"] = "Grants Skill: Level # Azmerian Swarms", + ["id"] = "skill.mirror_of_refraction", + ["text"] = "Grants Skill: Level # Mirror of Refraction", ["type"] = "skill", }, [81] = { - ["id"] = "skill.feral_invocation", - ["text"] = "Grants Skill: Level # Feral Invocation", + ["id"] = "skill.summon_mist_raven", + ["text"] = "Grants Skill: Level # Mist Raven", ["type"] = "skill", }, [82] = { - ["id"] = "skill.overwhelming_presence", - ["text"] = "Grants Skill: Level # Overwhelming Presence", + ["id"] = "skill.molten_crash", + ["text"] = "Grants Skill: Level # Molten Crash", ["type"] = "skill", }, [83] = { - ["id"] = "skill.starborn_onslaught", - ["text"] = "Grants Skill: Level # Starborn Onslaught", + ["id"] = "skill.triggered_molten_shower", + ["text"] = "Grants Skill: Level # Molten Shower", ["type"] = "skill", }, [84] = { - ["id"] = "skill.raging_spirits", - ["text"] = "Grants Skill: Level # Raging Spirits", + ["id"] = "skill.overwhelming_presence", + ["text"] = "Grants Skill: Level # Overwhelming Presence", ["type"] = "skill", }, [85] = { - ["id"] = "skill.scavenged_plating", - ["text"] = "Grants Skill: Level # Scavenged Plating", + ["id"] = "skill.parry", + ["text"] = "Grants Skill: Level # Parry", ["type"] = "skill", }, [86] = { - ["id"] = "skill.shard_scavenger", - ["text"] = "Grants Skill: Level # Shard Scavenger", + ["id"] = "skill.phantasmal_arrow", + ["text"] = "Grants Skill: Level # Phantasmal Arrow", ["type"] = "skill", }, [87] = { - ["id"] = "skill.time_of_need", - ["text"] = "Grants Skill: Level # Time of Need", + ["id"] = "skill.pinnacle_of_power", + ["text"] = "Grants Skill: Level # Pinnacle of Power", ["type"] = "skill", }, [88] = { - ["id"] = "skill.wind_dancer", - ["text"] = "Grants Skill: Level # Wind Dancer", + ["id"] = "skill.plague_bearer", + ["text"] = "Grants Skill: Level # Plague Bearer", ["type"] = "skill", }, [89] = { - ["id"] = "skill.dread_banner_reservation", - ["text"] = "Grants Skill: Level # Dread Banner", + ["id"] = "skill.power_siphon", + ["text"] = "Grants Skill: Level # Power Siphon", ["type"] = "skill", }, [90] = { - ["id"] = "skill.magma_barrier", - ["text"] = "Grants Skill: Level # Magma Barrier", + ["id"] = "skill.purity_of_fire", + ["text"] = "Grants Skill: Level # Purity of Fire", ["type"] = "skill", }, [91] = { - ["id"] = "skill.ancient_gifts", - ["text"] = "Grants Skill: Level # Wildwood's Gifts", + ["id"] = "skill.purity_of_ice", + ["text"] = "Grants Skill: Level # Purity of Ice", ["type"] = "skill", }, [92] = { - ["id"] = "skill.combat_frenzy", - ["text"] = "Grants Skill: Level # Combat Frenzy", + ["id"] = "skill.purity_of_lightning", + ["text"] = "Grants Skill: Level # Purity of Lightning", ["type"] = "skill", }, [93] = { - ["id"] = "skill.cast_on_critical_strike", - ["text"] = "Grants Skill: Level # Cast on Critical", + ["id"] = "skill.raging_spirits", + ["text"] = "Grants Skill: Level # Raging Spirits", ["type"] = "skill", }, [94] = { - ["id"] = "skill.cast_on_minion_death", - ["text"] = "Grants Skill: Level # Cast on Minion Death", + ["id"] = "skill.shield_block", + ["text"] = "Grants Skill: Level # Raise Shield", ["type"] = "skill", }, [95] = { - ["id"] = "skill.ghost_dance", - ["text"] = "Grants Skill: Level # Ghost Dance", + ["id"] = "skill.ravenous_swarm", + ["text"] = "Grants Skill: Level # Ravenous Swarm", ["type"] = "skill", }, [96] = { - ["id"] = "skill.berserk", - ["text"] = "Grants Skill: Level # Berserk", + ["id"] = "skill.reap", + ["text"] = "Grants Skill: Level # Reap", ["type"] = "skill", }, [97] = { - ["id"] = "skill.ravenous_swarm", - ["text"] = "Grants Skill: Level # Ravenous Swarm", + ["id"] = "skill.reapers_invocation", + ["text"] = "Grants Skill: Level # Reaper's Invocation", ["type"] = "skill", }, [98] = { - ["id"] = "skill.savage_fury", - ["text"] = "Grants Skill: Level # Savage Fury", + ["id"] = "skill.summon_rhoa_mount", + ["text"] = "Grants Skill: Level # Rhoa Mount", ["type"] = "skill", }, [99] = { @@ -34791,148 +34815,148 @@ return { ["type"] = "skill", }, [100] = { - ["id"] = "skill.herald_of_plague", - ["text"] = "Grants Skill: Level # Herald of Plague", + ["id"] = "skill.sigil_of_life", + ["text"] = "Grants Skill: Level # Rite of Restoration", ["type"] = "skill", }, [101] = { - ["id"] = "skill.trail_of_caltrops", - ["text"] = "Grants Skill: Level # Trail of Caltrops", + ["id"] = "skill.runic_tempering", + ["text"] = "Grants Skill: Level # Runic Tempering", ["type"] = "skill", }, [102] = { - ["id"] = "skill.summon_spiraling_conspiracy", - ["text"] = "Grants Skill: Level # Spiraling Conspiracy", + ["id"] = "skill.sacrifice", + ["text"] = "Grants Skill: Level # Sacrifice", ["type"] = "skill", }, [103] = { - ["id"] = "skill.siphon_elements", - ["text"] = "Grants Skill: Level # Siphon Elements", + ["id"] = "skill.sanguine_revelry", + ["text"] = "Grants Skill: Level # Sanguine Revelry", ["type"] = "skill", }, [104] = { - ["id"] = "skill.herald_of_blood", - ["text"] = "Grants Skill: Level # Herald of Blood", + ["id"] = "skill.savage_fury", + ["text"] = "Grants Skill: Level # Savage Fury", ["type"] = "skill", }, [105] = { - ["id"] = "skill.cast_on_dodge", - ["text"] = "Grants Skill: Level # Cast on Dodge", + ["id"] = "skill.scavenged_plating", + ["text"] = "Grants Skill: Level # Scavenged Plating", ["type"] = "skill", }, [106] = { - ["id"] = "skill.alchemists_boon", - ["text"] = "Grants Skill: Level # Alchemist's Boon", + ["id"] = "skill.shard_scavenger", + ["text"] = "Grants Skill: Level # Shard Scavenger", ["type"] = "skill", }, [107] = { - ["id"] = "skill.reapers_invocation", - ["text"] = "Grants Skill: Level # Reaper's Invocation", + ["id"] = "skill.shattering_spite", + ["text"] = "Grants Skill: Level # Shattering Spite", ["type"] = "skill", }, [108] = { - ["id"] = "skill.barrier_invocation", - ["text"] = "Grants Skill: Level # Barrier Invocation", + ["id"] = "skill.sigil_of_power", + ["text"] = "Grants Skill: Level # Sigil of Power", ["type"] = "skill", }, [109] = { - ["id"] = "skill.summon_azmerian_wolf", - ["text"] = "Grants Skill: Level # Azmerian Wolf", + ["id"] = "skill.siphon_elements", + ["text"] = "Grants Skill: Level # Siphon Elements", ["type"] = "skill", }, [110] = { - ["id"] = "skill.trinity", - ["text"] = "Grants Skill: Level # Trinity", + ["id"] = "skill.summon_skeleton_warrior", + ["text"] = "Grants Skill: Level # Skeletal Warrior Minion", ["type"] = "skill", }, [111] = { - ["id"] = "skill.blink_reservation", - ["text"] = "Grants Skill: Level # Blink", + ["id"] = "skill.nightfall_soaring_midnight", + ["text"] = "Grants Skill: Level # Soaring Midnight", ["type"] = "skill", }, [112] = { - ["id"] = "skill.defiance_banner_reservation", - ["text"] = "Grants Skill: Level # Defiance Banner", + ["id"] = "skill.solar_orb", + ["text"] = "Grants Skill: Level # Solar Orb", ["type"] = "skill", }, [113] = { - ["id"] = "skill.new_new_arctic_armour", - ["text"] = "Grants Skill: Level # Arctic Armour", + ["id"] = "skill.unique_earthbound_triggered_spark", + ["text"] = "Grants Skill: Level # Spark", ["type"] = "skill", }, [114] = { - ["id"] = "skill.nightfall_soaring_midnight", - ["text"] = "Grants Skill: Level # Soaring Midnight", + ["id"] = "skill.spellslinger_invocation", + ["text"] = "Grants Skill: Level # Spellslinger", ["type"] = "skill", }, [115] = { - ["id"] = "skill.eternal_rage", - ["text"] = "Grants Skill: Level # Eternal Rage", + ["id"] = "skill.summon_spiraling_conspiracy", + ["text"] = "Grants Skill: Level # Spiraling Conspiracy", ["type"] = "skill", }, [116] = { - ["id"] = "skill.war_banner_reservation", - ["text"] = "Grants Skill: Level # War Banner", + ["id"] = "skill.spirit_vessel_companion", + ["text"] = "Grants Skill: Level # Spirit Vessel", ["type"] = "skill", }, [117] = { - ["id"] = "skill.barkskin", - ["text"] = "Grants Skill: Level # Barkskin", + ["id"] = "skill.starborn_onslaught", + ["text"] = "Grants Skill: Level # Starborn Onslaught", ["type"] = "skill", }, [118] = { - ["id"] = "skill.convalescence", - ["text"] = "Grants Skill: Level # Convalescence", + ["id"] = "skill.cast_lightning_spell_on_hit", + ["text"] = "Grants Skill: Level # Thundergod's Wrath", ["type"] = "skill", }, [119] = { - ["id"] = "skill.attrition", - ["text"] = "Grants Skill: Level # Attrition", + ["id"] = "skill.time_of_need", + ["text"] = "Grants Skill: Level # Time of Need", ["type"] = "skill", }, [120] = { - ["id"] = "skill.charge_regulation", - ["text"] = "Grants Skill: Level # Charge Regulation", + ["id"] = "skill.trail_of_caltrops", + ["text"] = "Grants Skill: Level # Trail of Caltrops", ["type"] = "skill", }, [121] = { - ["id"] = "skill.mirage_archer", - ["text"] = "Grants Skill: Level # Mirage Archer", + ["id"] = "skill.trinity", + ["text"] = "Grants Skill: Level # Trinity", ["type"] = "skill", }, [122] = { - ["id"] = "skill.briarpatch", - ["text"] = "Grants Skill: Level # Briarpatch", + ["id"] = "skill.unleash", + ["text"] = "Grants Skill: Level # Unleash", ["type"] = "skill", }, [123] = { - ["id"] = "skill.midnight_star", - ["text"] = "Grants Skill: Level # Midnight Zenith", + ["id"] = "skill.valakos_charge", + ["text"] = "Grants Skill: Level # Valako's Charge", ["type"] = "skill", }, [124] = { - ["id"] = "skill.iron_ward", - ["text"] = "Grants Skill: Level # Iron Ward", + ["id"] = "skill.volatile_dead", + ["text"] = "Grants Skill: Level # Volatile Dead", ["type"] = "skill", }, [125] = { - ["id"] = "skill.plague_bearer", - ["text"] = "Grants Skill: Level # Plague Bearer", + ["id"] = "skill.war_banner_reservation", + ["text"] = "Grants Skill: Level # War Banner", ["type"] = "skill", }, [126] = { - ["id"] = "skill.lingering_illusion", - ["text"] = "Grants Skill: Level # Lingering Illusion", + ["id"] = "skill.ancient_gifts", + ["text"] = "Grants Skill: Level # Wildwood's Gifts", ["type"] = "skill", }, [127] = { - ["id"] = "skill.mana_remnants", - ["text"] = "Grants Skill: Level # Mana Remnants", + ["id"] = "skill.wind_dancer", + ["text"] = "Grants Skill: Level # Wind Dancer", ["type"] = "skill", }, [128] = { - ["id"] = "skill.cast_on_elemental_ailment", - ["text"] = "Grants Skill: Level # Cast on Elemental Ailment", + ["id"] = "skill.withering_presence", + ["text"] = "Grants Skill: Level # Withering Presence", ["type"] = "skill", }, [129] = { @@ -34944,4 +34968,5 @@ return { ["id"] = "skill", ["label"] = "Skill", }, -} \ No newline at end of file +} +-- spell-checker: enable \ No newline at end of file From 92c150c821488a1e899cfbbfb6e023eec2ce7bce Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 1 Jun 2026 17:34:56 +0300 Subject: [PATCH 09/11] Cspell fixes --- src/Export/Scripts/mods.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Export/Scripts/mods.lua b/src/Export/Scripts/mods.lua index 53140c3c2..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 @@ -215,7 +215,7 @@ local function writeMods(outName, condFunc) local tradeHash = hashStats(stats) tradeHashes[tradeHash] = description - ::innercontinue:: + ::innerContinue:: end out:write("tradeHashes = { ") for hash, desc in pairs(tradeHashes) do From 6b80e90c03e40d2c78528528bda241fab5640c8c Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 1 Jun 2026 18:13:24 +0300 Subject: [PATCH 10/11] Try to fix querymods.lua rune category inconsistencies --- src/Classes/TradeQueryGenerator.lua | 17 +- src/Data/QueryMods.lua | 785 +-- src/Data/TradeSiteStats.lua | 6940 ++++++++++++++------------- 3 files changed, 3904 insertions(+), 3838 deletions(-) diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index 544b1b1e9..9c7dd8d82 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -510,20 +510,17 @@ return %s 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, 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 diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index e56f91d9e..9e3e0333b 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -17376,8 +17376,8 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3891355829|1", - ["text"] = "Upgrades Radius to Medium", + ["id"] = "explicit.stat_3891355829|2", + ["text"] = "Upgrades Radius to Large", ["type"] = "explicit", }, }, @@ -20898,20 +20898,6 @@ return { ["type"] = "implicit", }, }, - ["3489782002"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, ["3544800472"] = { ["Chest"] = { ["max"] = 40, @@ -21420,6 +21406,10 @@ return { ["max"] = 50, ["min"] = -40, }, + ["Sceptre"] = { + ["max"] = 50, + ["min"] = -40, + }, ["invertOnNegative"] = true, ["specialCaseData"] = { }, @@ -21504,6 +21494,18 @@ return { ["max"] = 1, ["min"] = 1, }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -21566,6 +21568,14 @@ return { }, }, ["1050105434"] = { + ["1HWeapon"] = { + ["max"] = 90, + ["min"] = 45, + }, + ["2HWeapon"] = { + ["max"] = 90, + ["min"] = 45, + }, ["Boots"] = { ["max"] = 50, ["min"] = 20, @@ -21586,14 +21596,14 @@ return { ["max"] = 50, ["min"] = 10, }, - ["Quarterstaff"] = { - ["max"] = 90, - ["min"] = 45, - }, ["Shield"] = { ["max"] = 50, ["min"] = 20, }, + ["Staff"] = { + ["max"] = 90, + ["min"] = 45, + }, ["Wand"] = { ["max"] = 90, ["min"] = 45, @@ -21608,10 +21618,22 @@ return { ["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, @@ -21684,6 +21706,10 @@ return { ["max"] = 50, ["min"] = 50, }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, ["Talisman"] = { ["max"] = 50, ["min"] = 50, @@ -21734,7 +21760,15 @@ return { }, }, ["124131830"] = { - ["Quarterstaff"] = { + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { ["max"] = 1, ["min"] = 1, }, @@ -21756,6 +21790,10 @@ return { ["max"] = 14, ["min"] = 14, }, + ["Sceptre"] = { + ["max"] = 14, + ["min"] = 14, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -21769,6 +21807,10 @@ return { ["max"] = 1, ["min"] = 1, }, + ["Sceptre"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -21843,19 +21885,6 @@ return { ["type"] = "augment", }, }, - ["1381474422"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1381474422", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", - ["type"] = "augment", - }, - }, ["1382805233"] = { ["Boots"] = { ["max"] = 8, @@ -22009,19 +22038,6 @@ return { ["type"] = "augment", }, }, - ["1480688478"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1480688478", - ["text"] = "One of your Persistent Minions revives when an Offering expires", - ["type"] = "augment", - }, - }, ["1496740334"] = { ["1HMace"] = { ["max"] = 20, @@ -22170,6 +22186,10 @@ return { ["max"] = -20, ["min"] = -20, }, + ["Sceptre"] = { + ["max"] = -20, + ["min"] = -20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -22192,6 +22212,10 @@ return { }, }, ["1555237944"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, ["Spear"] = { ["max"] = 30, ["min"] = 30, @@ -22286,6 +22310,10 @@ return { ["max"] = 15, ["min"] = 15, }, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -22574,6 +22602,10 @@ return { ["max"] = 15, ["min"] = 15, }, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -22587,6 +22619,10 @@ return { ["max"] = 40, ["min"] = 40, }, + ["Sceptre"] = { + ["max"] = 40, + ["min"] = 40, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -22600,6 +22636,10 @@ return { ["max"] = 25, ["min"] = 25, }, + ["Sceptre"] = { + ["max"] = 25, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -22626,6 +22666,10 @@ return { ["max"] = 40, ["min"] = 40, }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -22639,6 +22683,10 @@ return { ["max"] = 0.5, ["min"] = 0.5, }, + ["Sceptre"] = { + ["max"] = 0.5, + ["min"] = 0.5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -22647,19 +22695,6 @@ return { ["type"] = "augment", }, }, - ["1919509054"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1919509054", - ["text"] = "Your Energy Shield Recharge starts when your Minions are Reformed", - ["type"] = "augment", - }, - }, ["1927467683"] = { ["Chest"] = { ["max"] = 1, @@ -22673,19 +22708,6 @@ return { ["type"] = "augment", }, }, - ["1933674044"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1933674044", - ["text"] = "Destroys all Augment Sockets on the item to create a Jewel Socket", - ["type"] = "augment", - }, - }, ["1937310173"] = { ["Chest"] = { ["max"] = 50, @@ -22915,6 +22937,10 @@ return { ["max"] = 10, ["min"] = 10, }, + ["Sceptre"] = { + ["max"] = 10, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -22924,11 +22950,19 @@ return { }, }, ["1999910726"] = { + ["1HWeapon"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["2HWeapon"] = { + ["max"] = -25, + ["min"] = -25, + }, ["Helmet"] = { ["max"] = 15, ["min"] = 15, }, - ["Quarterstaff"] = { + ["Staff"] = { ["max"] = -25, ["min"] = -25, }, @@ -23003,19 +23037,6 @@ return { ["type"] = "augment", }, }, - ["201332984"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_201332984", - ["text"] = "Can roll Marksman modifiers", - ["type"] = "augment", - }, - }, ["2023107756"] = { ["1HMace"] = { ["max"] = 2, @@ -23070,6 +23091,10 @@ return { }, }, ["2045949233"] = { + ["2HMace"] = { + ["max"] = 25, + ["min"] = 10, + }, ["2HWeapon"] = { ["max"] = 25, ["min"] = 10, @@ -23166,7 +23191,7 @@ return { ["min"] = 5, }, ["Bow"] = { - ["max"] = 5, + ["max"] = 50, ["min"] = 5, }, ["Claw"] = { @@ -23201,19 +23226,6 @@ return { ["type"] = "augment", }, }, - ["2103650854"] = { - ["Gloves"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2103650854", - ["text"] = "#% increased effect of Arcane Surge on you", - ["type"] = "augment", - }, - }, ["2191621386"] = { ["Chest"] = { ["max"] = 75, @@ -23308,19 +23320,6 @@ return { ["type"] = "augment", }, }, - ["2241849004"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["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", - }, - }, ["2250533757"] = { ["Boots"] = { ["max"] = 5, @@ -23368,7 +23367,11 @@ return { }, }, ["2328443419"] = { - ["Quarterstaff"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Staff"] = { ["max"] = 30, ["min"] = 30, }, @@ -23381,11 +23384,19 @@ return { }, }, ["2339757871"] = { + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, ["Chest"] = { ["max"] = 30, ["min"] = 30, }, - ["Quarterstaff"] = { + ["Staff"] = { ["max"] = 12, ["min"] = 6, }, @@ -23406,6 +23417,10 @@ return { ["max"] = 30, ["min"] = 30, }, + ["Sceptre"] = { + ["max"] = 30, + ["min"] = 30, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23414,19 +23429,6 @@ return { ["type"] = "augment", }, }, - ["2353576063"] = { - ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", - ["type"] = "augment", - }, - }, ["2363593824"] = { ["Boots"] = { ["max"] = 12, @@ -23552,6 +23554,10 @@ return { ["max"] = 50, ["min"] = 50, }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23566,10 +23572,22 @@ return { ["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"] = { @@ -23592,7 +23610,15 @@ return { }, }, ["2505884597"] = { - ["Quarterstaff"] = { + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Staff"] = { ["max"] = 12, ["min"] = 6, }, @@ -23608,20 +23634,11 @@ return { ["type"] = "augment", }, }, - ["2547063279"] = { - ["Gloves"] = { + ["2579974553"] = { + ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2547063279", - ["text"] = "Can roll Decay modifiers", - ["type"] = "augment", - }, - }, - ["2579974553"] = { ["Wand"] = { ["max"] = 1, ["min"] = 1, @@ -23719,10 +23736,22 @@ return { }, }, ["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, @@ -23740,6 +23769,10 @@ return { ["max"] = 20, ["min"] = 20, }, + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23766,6 +23799,10 @@ return { ["max"] = 1, ["min"] = 1, }, + ["Sceptre"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23788,7 +23825,15 @@ return { }, }, ["267552601"] = { - ["Quarterstaff"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Staff"] = { ["max"] = 25, ["min"] = 25, }, @@ -23809,6 +23854,10 @@ return { ["max"] = 25, ["min"] = 25, }, + ["Sceptre"] = { + ["max"] = 25, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23899,14 +23948,22 @@ return { ["usePositiveSign"] = true, }, ["2709367754"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, + ["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, @@ -23932,19 +23989,6 @@ return { ["type"] = "augment", }, }, - ["2797971005"] = { - ["Gloves"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "augment", - }, - }, ["280497929"] = { ["Helmet"] = { ["max"] = 1, @@ -23991,6 +24035,10 @@ return { ["max"] = 40, ["min"] = 40, }, + ["Sceptre"] = { + ["max"] = 40, + ["min"] = 40, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24018,6 +24066,10 @@ return { ["max"] = 20.5, ["min"] = 20.5, }, + ["Sceptre"] = { + ["max"] = 20.5, + ["min"] = 20.5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24044,6 +24096,10 @@ return { ["max"] = 10, ["min"] = 10, }, + ["Sceptre"] = { + ["max"] = 10, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24065,24 +24121,15 @@ return { ["type"] = "augment", }, }, - ["2891184298"] = { - ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "augment", - }, - }, ["289128254"] = { ["1HWeapon"] = { ["max"] = 10, ["min"] = 10, }, + ["Sceptre"] = { + ["max"] = 10, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24140,7 +24187,15 @@ return { ["usePositiveSign"] = true, }, ["2910761524"] = { - ["Quarterstaff"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Staff"] = { ["max"] = 25, ["min"] = 25, }, @@ -24266,10 +24321,6 @@ return { ["max"] = 50, ["min"] = 50, }, - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, - }, ["Quarterstaff"] = { ["max"] = 50, ["min"] = 50, @@ -24278,6 +24329,10 @@ return { ["max"] = 50, ["min"] = 50, }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, ["Talisman"] = { ["max"] = 50, ["min"] = 50, @@ -24461,7 +24516,15 @@ return { }, }, ["2974417149"] = { - ["Quarterstaff"] = { + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 20, + }, + ["Staff"] = { ["max"] = 35, ["min"] = 20, }, @@ -24478,7 +24541,15 @@ return { }, }, ["3015669065"] = { - ["Quarterstaff"] = { + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Staff"] = { ["max"] = 12, ["min"] = 6, }, @@ -24494,19 +24565,6 @@ return { ["type"] = "augment", }, }, - ["3032590688"] = { - ["Gloves"] = { - ["max"] = 8.5, - ["min"] = 8.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "augment", - }, - }, ["3033371881"] = { ["Chest"] = { ["max"] = 30, @@ -24591,6 +24649,10 @@ return { ["max"] = 20, ["min"] = 20, }, + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24617,6 +24679,10 @@ return { ["max"] = 8, ["min"] = 8, }, + ["Sceptre"] = { + ["max"] = 8, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24638,19 +24704,6 @@ return { ["type"] = "augment", }, }, - ["310945763"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_310945763", - ["text"] = "#% increased Life Cost Efficiency", - ["type"] = "augment", - }, - }, ["3132681620"] = { ["Boots"] = { ["max"] = 1, @@ -24664,19 +24717,6 @@ return { ["type"] = "augment", }, }, - ["3143918757"] = { - ["Gloves"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3143918757", - ["text"] = "#% increased Glory generation", - ["type"] = "augment", - }, - }, ["3145796865"] = { ["Staff"] = { ["max"] = 1, @@ -24699,6 +24739,10 @@ return { ["max"] = 15, ["min"] = 15, }, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24712,6 +24756,10 @@ return { ["max"] = 25, ["min"] = 25, }, + ["Sceptre"] = { + ["max"] = 25, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24720,32 +24768,6 @@ return { ["type"] = "augment", }, }, - ["3166958180"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", - ["type"] = "augment", - }, - }, - ["3175163625"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "augment", - }, - }, ["3203854378"] = { ["Shield"] = { ["max"] = 8, @@ -24764,6 +24786,10 @@ return { ["max"] = 1, ["min"] = 1, }, + ["Sceptre"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -24859,7 +24885,15 @@ return { ["usePositiveSign"] = true, }, ["3278136794"] = { - ["Quarterstaff"] = { + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Staff"] = { ["max"] = 12, ["min"] = 6, }, @@ -25105,6 +25139,10 @@ return { ["max"] = 1, ["min"] = 1, }, + ["Sceptre"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25236,6 +25274,10 @@ return { ["max"] = 13, ["min"] = 13, }, + ["Staff"] = { + ["max"] = 13, + ["min"] = 13, + }, ["Talisman"] = { ["max"] = 13, ["min"] = 13, @@ -25270,6 +25312,10 @@ return { ["max"] = 2, ["min"] = 2, }, + ["Talisman"] = { + ["max"] = 2, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25292,7 +25338,15 @@ return { }, }, ["3482326075"] = { - ["Quarterstaff"] = { + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { ["max"] = 50, ["min"] = 50, }, @@ -25323,7 +25377,15 @@ return { ["usePositiveSign"] = true, }, ["3489782002"] = { - ["Quarterstaff"] = { + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 30, + }, + ["Staff"] = { ["max"] = 60, ["min"] = 30, }, @@ -25345,6 +25407,10 @@ return { ["max"] = 3, ["min"] = 3, }, + ["Sceptre"] = { + ["max"] = 3, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25431,6 +25497,10 @@ return { ["max"] = 50, ["min"] = 50, }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, ["Talisman"] = { ["max"] = 50, ["min"] = 50, @@ -25474,19 +25544,6 @@ return { }, ["usePositiveSign"] = true, }, - ["3557924960"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3557924960", - ["text"] = "Gain #% of Damage as Extra Damage of a random Element perRune Socketed in Equipped Items", - ["type"] = "augment", - }, - }, ["3570773271"] = { ["Helmet"] = { ["max"] = 1, @@ -25704,7 +25761,15 @@ return { ["max"] = 60, ["min"] = 40, }, - ["Quarterstaff"] = { + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Sceptre"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Staff"] = { ["max"] = 40, ["min"] = 40, }, @@ -25725,6 +25790,10 @@ return { ["max"] = 20, ["min"] = 20, }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25767,6 +25836,10 @@ return { }, }, ["3814102597"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, ["Wand"] = { ["max"] = 1, ["min"] = 1, @@ -25797,6 +25870,10 @@ return { ["max"] = 20, ["min"] = 20, }, + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25811,6 +25888,10 @@ return { ["max"] = 12, ["min"] = 12, }, + ["Sceptre"] = { + ["max"] = 12, + ["min"] = 12, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25916,6 +25997,10 @@ return { ["max"] = 1, ["min"] = 1, }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, @@ -25978,20 +26063,6 @@ return { ["type"] = "augment", }, }, - ["3897831687"] = { - ["Gloves"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3897831687", - ["text"] = "#% of Armour also applies to Fire Damage", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, ["3903510399"] = { ["Helmet"] = { ["max"] = 35, @@ -26037,9 +26108,9 @@ return { ["usePositiveSign"] = true, }, ["3973629633"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, }, ["Wand"] = { ["max"] = 25, @@ -26112,6 +26183,10 @@ return { ["max"] = 15, ["min"] = 15, }, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26316,21 +26391,15 @@ return { }, ["usePositiveSign"] = true, }, - ["4095671657"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { + ["416040624"] = { + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "rune.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "augment", + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 10, }, - ["usePositiveSign"] = true, - }, - ["416040624"] = { ["Chest"] = { ["max"] = 15, ["min"] = 15, @@ -26339,7 +26408,7 @@ return { ["max"] = 15, ["min"] = 15, }, - ["Quarterstaff"] = { + ["Staff"] = { ["max"] = 16, ["min"] = 10, }, @@ -26360,6 +26429,10 @@ return { ["max"] = 20, ["min"] = 20, }, + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26455,19 +26528,6 @@ return { ["type"] = "augment", }, }, - ["4258524206"] = { - ["Gloves"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4258524206", - ["text"] = "#% chance to build an additional Combo on Hit", - ["type"] = "augment", - }, - }, ["4282982513"] = { ["Boots"] = { ["max"] = 1, @@ -26566,6 +26626,10 @@ return { ["max"] = 10, ["min"] = 10, }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26579,6 +26643,10 @@ return { ["max"] = 1, ["min"] = 1, }, + ["Sceptre"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26592,6 +26660,10 @@ return { ["max"] = -30, ["min"] = -30, }, + ["Sceptre"] = { + ["max"] = -30, + ["min"] = -30, + }, ["invertOnNegative"] = true, ["specialCaseData"] = { }, @@ -26772,19 +26844,6 @@ return { ["type"] = "augment", }, }, - ["624954515"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "augment", - }, - }, ["627339348"] = { ["1HMace"] = { ["max"] = 28.5, @@ -26843,6 +26902,10 @@ return { ["max"] = 8, ["min"] = 8, }, + ["Sceptre"] = { + ["max"] = 8, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26869,6 +26932,10 @@ return { ["max"] = 12, ["min"] = 12, }, + ["Sceptre"] = { + ["max"] = 12, + ["min"] = 12, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -26930,19 +26997,6 @@ return { ["type"] = "augment", }, }, - ["681332047"] = { - ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "augment", - }, - }, ["687156079"] = { ["Helmet"] = { ["max"] = 1, @@ -27204,6 +27258,10 @@ return { ["max"] = 5, ["min"] = 5, }, + ["Staff"] = { + ["max"] = 5, + ["min"] = 5, + }, ["Talisman"] = { ["max"] = 5, ["min"] = 5, @@ -27257,6 +27315,10 @@ return { ["max"] = 0.2, ["min"] = 0.2, }, + ["Sceptre"] = { + ["max"] = 0.2, + ["min"] = 0.2, + }, ["Spear"] = { ["max"] = 0.2, ["min"] = 0.2, @@ -27282,7 +27344,15 @@ return { }, }, ["737908626"] = { - ["Quarterstaff"] = { + ["1HWeapon"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 16, + }, + ["Staff"] = { ["max"] = 28, ["min"] = 16, }, @@ -27395,20 +27465,15 @@ return { }, ["usePositiveSign"] = true, }, - ["782230869"] = { - ["Gloves"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { + ["789117908"] = { + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "rune.stat_782230869", - ["text"] = "#% increased Magnitude of Non-Damaging Ailments you inflict", - ["type"] = "augment", + ["2HWeapon"] = { + ["max"] = 35, + ["min"] = 20, }, - }, - ["789117908"] = { ["Boots"] = { ["max"] = 21, ["min"] = 12, @@ -27429,14 +27494,14 @@ return { ["max"] = 21, ["min"] = 12, }, - ["Quarterstaff"] = { - ["max"] = 35, - ["min"] = 20, - }, ["Shield"] = { ["max"] = 21, ["min"] = 12, }, + ["Staff"] = { + ["max"] = 35, + ["min"] = 20, + }, ["Wand"] = { ["max"] = 35, ["min"] = 20, @@ -27502,19 +27567,6 @@ return { ["type"] = "augment", }, }, - ["820939409"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_820939409", - ["text"] = "Gain # Mana per Enemy Hit with Attacks", - ["type"] = "augment", - }, - }, ["830161081"] = { ["Boots"] = { ["max"] = 20, @@ -27732,19 +27784,6 @@ return { ["type"] = "augment", }, }, - ["935518591"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_935518591", - ["text"] = "Critical Hit chance is Lucky against Parried enemies", - ["type"] = "augment", - }, - }, ["970213192"] = { ["1HMace"] = { ["max"] = 8, diff --git a/src/Data/TradeSiteStats.lua b/src/Data/TradeSiteStats.lua index 145f222ef..7e7e8a6a8 100644 --- a/src/Data/TradeSiteStats.lua +++ b/src/Data/TradeSiteStats.lua @@ -252,14767 +252,14772 @@ return { ["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", }, - [14] = { + [15] = { ["id"] = "explicit.stat_258119672", ["text"] = "# metre to Dodge Roll distance", ["type"] = "explicit", }, - [15] = { + [16] = { ["id"] = "explicit.stat_3350232544", ["text"] = "# metre to Dodge Roll distance if you haven't Dodge Rolled Recently", ["type"] = "explicit", }, - [16] = { + [17] = { ["id"] = "explicit.stat_57896763", ["text"] = "# metre to Dodge Roll distance if you've Dodge Rolled Recently", ["type"] = "explicit", }, - [17] = { + [18] = { ["id"] = "explicit.stat_3273962791", ["text"] = "# metres to Melee Strike Range while Unarmed", ["type"] = "explicit", }, - [18] = { + [19] = { ["id"] = "explicit.stat_4186798932", ["text"] = "# to # Added Attack Fire Damage per 25 Strength", ["type"] = "explicit", }, - [19] = { + [20] = { ["id"] = "explicit.stat_1515531208", ["text"] = "# to # Cold Thorns damage", ["type"] = "explicit", }, - [20] = { + [21] = { ["id"] = "explicit.stat_1993950627", ["text"] = "# to # Fire Thorns damage", ["type"] = "explicit", }, - [21] = { + [22] = { ["id"] = "explicit.stat_287294012", ["text"] = "# to # Fire Thorns damage per 100 maximum Life", ["type"] = "explicit", }, - [22] = { + [23] = { ["id"] = "explicit.stat_2881298780", ["text"] = "# to # Physical Thorns damage", ["type"] = "explicit", }, - [23] = { + [24] = { ["id"] = "explicit.stat_3926910174", ["text"] = "# to # added Physical Thorns damage per Runic Plate", ["type"] = "explicit", }, - [24] = { + [25] = { ["id"] = "explicit.stat_803737631", ["text"] = "# to Accuracy Rating", ["type"] = "explicit", }, - [25] = { + [26] = { ["id"] = "explicit.stat_691932474", ["text"] = "# to Accuracy Rating (Local)", ["type"] = "explicit", }, - [26] = { + [27] = { ["id"] = "explicit.stat_1488650448", ["text"] = "# to Ailment Threshold", ["type"] = "explicit", }, - [27] = { + [28] = { ["id"] = "explicit.stat_809229260", ["text"] = "# to Armour", ["type"] = "explicit", }, - [28] = { + [29] = { ["id"] = "explicit.stat_3484657501", ["text"] = "# to Armour (Local)", ["type"] = "explicit", }, - [29] = { + [30] = { ["id"] = "explicit.stat_1207006772", ["text"] = "# to Deflection Rating per 50 missing Energy Shield", ["type"] = "explicit", }, - [30] = { + [31] = { ["id"] = "explicit.stat_3261801346", ["text"] = "# to Dexterity", ["type"] = "explicit", }, - [31] = { + [32] = { ["id"] = "explicit.stat_2300185227", ["text"] = "# to Dexterity and Intelligence", ["type"] = "explicit", }, - [32] = { + [33] = { ["id"] = "explicit.stat_2144192055", ["text"] = "# to Evasion Rating", ["type"] = "explicit", }, - [33] = { + [34] = { ["id"] = "explicit.stat_53045048", ["text"] = "# to Evasion Rating (Local)", ["type"] = "explicit", }, - [34] = { + [35] = { ["id"] = "explicit.stat_3470876581", ["text"] = "# to Evasion Rating while on Low Life", ["type"] = "explicit", }, - [35] = { + [36] = { ["id"] = "explicit.stat_328541901", ["text"] = "# to Intelligence", ["type"] = "explicit", }, - [36] = { + [37] = { ["id"] = "explicit.stat_2157870819", ["text"] = "# to Level of Despair Skills", ["type"] = "explicit", }, - [37] = { + [38] = { ["id"] = "explicit.stat_3709513762", ["text"] = "# to Level of Elemental Weakness Skills", ["type"] = "explicit", }, - [38] = { + [39] = { ["id"] = "explicit.stat_3948285912", ["text"] = "# to Level of Enfeeble Skills", ["type"] = "explicit", }, - [39] = { + [40] = { ["id"] = "explicit.stat_1042153418", ["text"] = "# to Level of Temporal Chains Skills", ["type"] = "explicit", }, - [40] = { + [41] = { ["id"] = "explicit.stat_3507701584", ["text"] = "# to Level of Vulnerability Skills", ["type"] = "explicit", }, - [41] = { + [42] = { ["id"] = "explicit.stat_3035140377", ["text"] = "# to Level of all Attack Skills", ["type"] = "explicit", }, - [42] = { + [43] = { ["id"] = "explicit.stat_67169579", ["text"] = "# to Level of all Chaos Skills", ["type"] = "explicit", }, - [43] = { + [44] = { ["id"] = "explicit.stat_4226189338", ["text"] = "# to Level of all Chaos Spell Skills", ["type"] = "explicit", }, - [44] = { + [45] = { ["id"] = "explicit.stat_1078455967", ["text"] = "# to Level of all Cold Skills", ["type"] = "explicit", }, - [45] = { + [46] = { ["id"] = "explicit.stat_2254480358", ["text"] = "# to Level of all Cold Spell Skills", ["type"] = "explicit", }, - [46] = { + [47] = { ["id"] = "explicit.stat_2061237517", ["text"] = "# to Level of all Corrupted Spell Skill Gems", ["type"] = "explicit", }, - [47] = { + [48] = { ["id"] = "explicit.stat_805298720", ["text"] = "# to Level of all Curse Skills", ["type"] = "explicit", }, - [48] = { + [49] = { ["id"] = "explicit.stat_2901213448", ["text"] = "# to Level of all Elemental Skills", ["type"] = "explicit", }, - [49] = { + [50] = { ["id"] = "explicit.stat_599749213", ["text"] = "# to Level of all Fire Skills", ["type"] = "explicit", }, - [50] = { + [51] = { ["id"] = "explicit.stat_591105508", ["text"] = "# to Level of all Fire Spell Skills", ["type"] = "explicit", }, - [51] = { + [52] = { ["id"] = "explicit.stat_1147690586", ["text"] = "# to Level of all Lightning Skills", ["type"] = "explicit", }, - [52] = { + [53] = { ["id"] = "explicit.stat_1545858329", ["text"] = "# to Level of all Lightning Spell Skills", ["type"] = "explicit", }, - [53] = { + [54] = { ["id"] = "explicit.stat_1992191903", ["text"] = "# to Level of all Mark Skills", ["type"] = "explicit", }, - [54] = { + [55] = { ["id"] = "explicit.stat_9187492", ["text"] = "# to Level of all Melee Skills", ["type"] = "explicit", }, - [55] = { + [56] = { ["id"] = "explicit.stat_2162097452", ["text"] = "# to Level of all Minion Skills", ["type"] = "explicit", }, - [56] = { + [57] = { ["id"] = "explicit.stat_1600707273", ["text"] = "# to Level of all Physical Spell Skills", ["type"] = "explicit", }, - [57] = { + [58] = { ["id"] = "explicit.stat_1202301673", ["text"] = "# to Level of all Projectile Skills", ["type"] = "explicit", }, - [58] = { + [59] = { ["id"] = "explicit.stat_4283407333", ["text"] = "# to Level of all Skills", ["type"] = "explicit", }, - [59] = { + [60] = { ["id"] = "explicit.stat_124131830", ["text"] = "# to Level of all Spell Skills", ["type"] = "explicit", }, - [60] = { + [61] = { ["id"] = "explicit.stat_1515657623", ["text"] = "# to Maximum Endurance Charges", ["type"] = "explicit", }, - [61] = { + [62] = { ["id"] = "explicit.stat_4078695", ["text"] = "# to Maximum Frenzy Charges", ["type"] = "explicit", }, - [62] = { + [63] = { ["id"] = "explicit.stat_227523295", ["text"] = "# to Maximum Power Charges", ["type"] = "explicit", }, - [63] = { + [64] = { ["id"] = "explicit.stat_1181501418", ["text"] = "# to Maximum Rage", ["type"] = "explicit", }, - [64] = { - ["id"] = "explicit.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "explicit", - }, [65] = { ["id"] = "explicit.stat_2704225257", ["text"] = "# to Spirit", ["type"] = "explicit", }, [66] = { + ["id"] = "explicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "explicit", + }, + [67] = { ["id"] = "explicit.stat_2694614739", ["text"] = "# to Spirit while you have at least 200 Dexterity", ["type"] = "explicit", }, - [67] = { + [68] = { ["id"] = "explicit.stat_1282318918", ["text"] = "# to Spirit while you have at least 200 Intelligence", ["type"] = "explicit", }, - [68] = { + [69] = { ["id"] = "explicit.stat_3044685077", ["text"] = "# to Spirit while you have at least 200 Strength", ["type"] = "explicit", }, - [69] = { + [70] = { ["id"] = "explicit.stat_4080418644", ["text"] = "# to Strength", ["type"] = "explicit", }, - [70] = { + [71] = { ["id"] = "explicit.stat_538848803", ["text"] = "# to Strength and Dexterity", ["type"] = "explicit", }, - [71] = { + [72] = { ["id"] = "explicit.stat_1535626285", ["text"] = "# to Strength and Intelligence", ["type"] = "explicit", }, - [72] = { + [73] = { ["id"] = "explicit.stat_915769802", ["text"] = "# to Stun Threshold", ["type"] = "explicit", }, - [73] = { + [74] = { ["id"] = "explicit.stat_3679769182", ["text"] = "# to Stun Threshold per Socket filled", ["type"] = "explicit", }, - [74] = { - ["id"] = "explicit.stat_1379411836", - ["text"] = "# to all Attributes", - ["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", }, - [77] = { + [78] = { ["id"] = "explicit.stat_3474271079", ["text"] = "# to all Attributes per Socket filled", ["type"] = "explicit", }, - [78] = { + [79] = { ["id"] = "explicit.stat_3489782002", ["text"] = "# to maximum Energy Shield", ["type"] = "explicit", }, - [79] = { + [80] = { ["id"] = "explicit.stat_4052037485", ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "explicit", }, - [80] = { + [81] = { ["id"] = "explicit.stat_3299347043", ["text"] = "# to maximum Life", ["type"] = "explicit", }, - [81] = { + [82] = { ["id"] = "explicit.stat_150391334", ["text"] = "# to maximum Life per Socket filled", ["type"] = "explicit", }, - [82] = { + [83] = { ["id"] = "explicit.stat_1050105434", ["text"] = "# to maximum Mana", ["type"] = "explicit", }, - [83] = { + [84] = { ["id"] = "explicit.stat_1036267537", ["text"] = "# to maximum Mana per Socket filled", ["type"] = "explicit", }, - [84] = { + [85] = { ["id"] = "explicit.stat_3336230913", ["text"] = "# to maximum Runic Ward", ["type"] = "explicit", }, - [85] = { + [86] = { ["id"] = "explicit.stat_774059442", ["text"] = "# to maximum Runic Ward", ["type"] = "explicit", }, - [86] = { + [87] = { ["id"] = "explicit.stat_1896726125", ["text"] = "# to maximum Valour", ["type"] = "explicit", }, - [87] = { + [88] = { ["id"] = "explicit.stat_4097212302", ["text"] = "# to maximum number of Elemental Infusions", ["type"] = "explicit", }, - [88] = { + [89] = { ["id"] = "explicit.stat_1823942939", ["text"] = "# to maximum number of Summoned Ballista Totems", ["type"] = "explicit", }, - [89] = { + [90] = { ["id"] = "explicit.stat_429867172", ["text"] = "# to maximum number of Summoned Totems", ["type"] = "explicit", }, - [90] = { + [91] = { ["id"] = "explicit.stat_828533480", ["text"] = "#% Chance to gain a Charge when you kill an enemy", ["type"] = "explicit", }, - [91] = { + [92] = { ["id"] = "explicit.stat_2221570601", ["text"] = "#% Global chance to Blind Enemies on Hit", ["type"] = "explicit", }, - [92] = { + [93] = { ["id"] = "explicit.stat_2840930496", ["text"] = "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", ["type"] = "explicit", }, - [93] = { + [94] = { ["id"] = "explicit.stat_2463230181", ["text"] = "#% Surpassing chance to fire an additional Arrow", ["type"] = "explicit", }, - [94] = { + [95] = { ["id"] = "explicit.stat_1347539079", ["text"] = "#% Surpassing chance to fire an additional Projectile", ["type"] = "explicit", }, - [95] = { + [96] = { ["id"] = "explicit.stat_3771516363", ["text"] = "#% additional Physical Damage Reduction", ["type"] = "explicit", }, - [96] = { + [97] = { ["id"] = "explicit.stat_501873429", ["text"] = "#% chance for Charms you use to not consume Charges", ["type"] = "explicit", }, - [97] = { + [98] = { ["id"] = "explicit.stat_1618482990", ["text"] = "#% chance for Energy Shield Recharge to start when you Kill an Enemy", ["type"] = "explicit", }, - [98] = { + [99] = { ["id"] = "explicit.stat_311641062", ["text"] = "#% chance for Flasks you use to not consume Charges", ["type"] = "explicit", }, - [99] = { + [100] = { ["id"] = "explicit.stat_2466011626", ["text"] = "#% chance for Lightning Damage with Hits to be Lucky", ["type"] = "explicit", }, - [100] = { + [101] = { ["id"] = "explicit.stat_3950000557", ["text"] = "#% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", ["type"] = "explicit", }, - [101] = { + [102] = { ["id"] = "explicit.stat_3422093970", ["text"] = "#% chance for Remnants you pick up to count as picking up an additional Remnant", ["type"] = "explicit", }, - [102] = { + [103] = { ["id"] = "explicit.stat_2749595652", ["text"] = "#% chance for Skills to retain 40% of Glory on use", ["type"] = "explicit", }, - [103] = { + [104] = { ["id"] = "explicit.stat_1157523820", ["text"] = "#% chance for Slam Skills to cause an additional Aftershock", ["type"] = "explicit", }, - [104] = { + [105] = { ["id"] = "explicit.stat_2045949233", ["text"] = "#% chance for Slam Skills you use yourself to cause an additional Aftershock", ["type"] = "explicit", }, - [105] = { + [106] = { ["id"] = "explicit.stat_1133346493", ["text"] = "#% chance for Spell Damage with Critical Hits to be Lucky", ["type"] = "explicit", }, - [106] = { + [107] = { ["id"] = "explicit.stat_2910761524", ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", ["type"] = "explicit", }, - [107] = { + [108] = { ["id"] = "explicit.stat_4224832423", ["text"] = "#% chance for Spell Skills to fire 8 additional Projectiles in a circle", ["type"] = "explicit", }, - [108] = { + [109] = { ["id"] = "explicit.stat_599320227", ["text"] = "#% chance for Trigger skills to refund half of Energy Spent", ["type"] = "explicit", }, - [109] = { + [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", }, - [110] = { + [111] = { ["id"] = "explicit.stat_1009412152", ["text"] = "#% chance to Aggravate Bleeding on Hit", ["type"] = "explicit", }, - [111] = { + [112] = { ["id"] = "explicit.stat_2438634449", ["text"] = "#% chance to Aggravate Bleeding on targets you Critically Hit with Attacks", ["type"] = "explicit", }, - [112] = { + [113] = { ["id"] = "explicit.stat_2705185939", ["text"] = "#% chance to Aggravate Bleeding on targets you Hit with Attacks", ["type"] = "explicit", }, - [113] = { + [114] = { ["id"] = "explicit.stat_1563503803", ["text"] = "#% chance to Avoid Chaos Damage from Hits", ["type"] = "explicit", }, - [114] = { + [115] = { ["id"] = "explicit.stat_3743375737", ["text"] = "#% chance to Avoid Cold Damage from Hits", ["type"] = "explicit", }, - [115] = { + [116] = { ["id"] = "explicit.stat_1689729380", ["text"] = "#% chance to Avoid Death from Hits", ["type"] = "explicit", }, - [116] = { + [117] = { ["id"] = "explicit.stat_42242677", ["text"] = "#% chance to Avoid Fire Damage from Hits", ["type"] = "explicit", }, - [117] = { + [118] = { ["id"] = "explicit.stat_2889664727", ["text"] = "#% chance to Avoid Lightning Damage from Hits", ["type"] = "explicit", }, - [118] = { + [119] = { ["id"] = "explicit.stat_2415497478", ["text"] = "#% chance to Avoid Physical Damage from Hits", ["type"] = "explicit", }, - [119] = { + [120] = { ["id"] = "explicit.stat_318953428", ["text"] = "#% chance to Blind Enemies on Hit with Attacks", ["type"] = "explicit", }, - [120] = { + [121] = { ["id"] = "explicit.stat_1028592286", ["text"] = "#% chance to Chain an additional time", ["type"] = "explicit", }, - [121] = { + [122] = { ["id"] = "explicit.stat_3830953767", ["text"] = "#% chance to Curse Enemies with Enfeeble on Block", ["type"] = "explicit", }, - [122] = { + [123] = { ["id"] = "explicit.stat_446027070", ["text"] = "#% chance to Gain Arcane Surge when you deal a Critical Hit", ["type"] = "explicit", }, - [123] = { + [124] = { ["id"] = "explicit.stat_78985352", ["text"] = "#% chance to Intimidate Enemies for 4 seconds on Hit", ["type"] = "explicit", }, - [124] = { + [125] = { ["id"] = "explicit.stat_2321178454", ["text"] = "#% chance to Pierce an Enemy", ["type"] = "explicit", }, - [125] = { + [126] = { ["id"] = "explicit.stat_795138349", ["text"] = "#% chance to Poison on Hit", ["type"] = "explicit", }, - [126] = { + [127] = { ["id"] = "explicit.stat_3954735777", ["text"] = "#% chance to Poison on Hit with Attacks", ["type"] = "explicit", }, - [127] = { + [128] = { ["id"] = "explicit.stat_1493211587", ["text"] = "#% chance to Poison on Hit with Spell Damage", ["type"] = "explicit", }, - [128] = { + [129] = { ["id"] = "explicit.stat_3885634897", ["text"] = "#% chance to Poison on Hit with this weapon", ["type"] = "explicit", }, - [129] = { + [130] = { ["id"] = "explicit.stat_3452269808", ["text"] = "#% chance to avoid Projectiles", ["type"] = "explicit", }, - [130] = { + [131] = { ["id"] = "explicit.stat_4250009622", ["text"] = "#% chance to be Poisoned", ["type"] = "explicit", }, - [131] = { + [132] = { ["id"] = "explicit.stat_3423694372", ["text"] = "#% chance to be inflicted with Bleeding when Hit", ["type"] = "explicit", }, - [132] = { + [133] = { ["id"] = "explicit.stat_4258524206", ["text"] = "#% chance to build an additional Combo on Hit", ["type"] = "explicit", }, - [133] = { + [134] = { ["id"] = "explicit.stat_1519615863", ["text"] = "#% chance to cause Bleeding on Hit", ["type"] = "explicit", }, - [134] = { + [135] = { ["id"] = "explicit.stat_2880019685", ["text"] = "#% chance to deal your Thorns Damage to Enemies you Hit with Melee Attacks", ["type"] = "explicit", }, - [135] = { + [136] = { ["id"] = "explicit.stat_3518449420", ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", ["type"] = "explicit", }, - [136] = { + [137] = { ["id"] = "explicit.stat_1881230714", ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", ["type"] = "explicit", }, - [137] = { + [138] = { ["id"] = "explicit.stat_3749502527", ["text"] = "#% chance to gain Volatility on Kill", ["type"] = "explicit", }, - [138] = { + [139] = { ["id"] = "explicit.stat_3814876985", ["text"] = "#% chance to gain a Power Charge on Critical Hit", ["type"] = "explicit", }, - [139] = { + [140] = { ["id"] = "explicit.stat_1453197917", ["text"] = "#% chance to gain a Power Charge on Hit", ["type"] = "explicit", }, - [140] = { + [141] = { ["id"] = "explicit.stat_504210122", ["text"] = "#% chance to gain an additional random Charge when you gain a Charge", ["type"] = "explicit", }, - [141] = { + [142] = { ["id"] = "explicit.stat_2174054121", ["text"] = "#% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, - [142] = { + [143] = { ["id"] = "explicit.stat_3602667353", ["text"] = "#% chance to inflict Exposure on Hit", ["type"] = "explicit", }, - [143] = { + [144] = { ["id"] = "explicit.stat_3823990000", ["text"] = "#% chance to load a bolt into all Crossbow skills on Kill", ["type"] = "explicit", }, - [144] = { + [145] = { ["id"] = "explicit.stat_965913123", ["text"] = "#% chance to not destroy Corpses when Consuming Corpses", ["type"] = "explicit", }, - [145] = { + [146] = { ["id"] = "explicit.stat_1949851472", ["text"] = "#% chance when a Charm is used to use another Charm without consuming Charges", ["type"] = "explicit", }, - [146] = { + [147] = { ["id"] = "explicit.stat_3927679277", ["text"] = "#% chance when collecting an Elemental Infusion to gain anadditional Elemental Infusion of the same type", ["type"] = "explicit", }, - [147] = { + [148] = { ["id"] = "explicit.stat_2760344900", ["text"] = "#% chance when you Reload a Crossbow to be immediate", ["type"] = "explicit", }, - [148] = { + [149] = { ["id"] = "explicit.stat_1555237944", ["text"] = "#% chance when you gain a Charge to gain an additional Charge", ["type"] = "explicit", }, - [149] = { + [150] = { ["id"] = "explicit.stat_3537994888", ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", ["type"] = "explicit", }, - [150] = { + [151] = { ["id"] = "explicit.stat_1104825894", ["text"] = "#% faster Curse Activation", ["type"] = "explicit", }, - [151] = { + [152] = { ["id"] = "explicit.stat_504054855", ["text"] = "#% faster Dodge Roll", ["type"] = "explicit", }, - [152] = { + [153] = { ["id"] = "explicit.stat_1782086450", ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "explicit", }, - [153] = { + [154] = { ["id"] = "explicit.stat_624954515", ["text"] = "#% increased Accuracy Rating", ["type"] = "explicit", }, - [154] = { + [155] = { ["id"] = "explicit.stat_4255854327", ["text"] = "#% increased Accuracy Rating against Enemies affected by Abyssal Wasting", ["type"] = "explicit", }, - [155] = { + [156] = { ["id"] = "explicit.stat_169946467", ["text"] = "#% increased Accuracy Rating with Bows", ["type"] = "explicit", }, - [156] = { + [157] = { ["id"] = "explicit.stat_700317374", ["text"] = "#% increased Amount Recovered", ["type"] = "explicit", }, - [157] = { + [158] = { ["id"] = "explicit.stat_2158617060", ["text"] = "#% increased Archon Buff duration", ["type"] = "explicit", }, - [158] = { + [159] = { ["id"] = "explicit.stat_280731498", ["text"] = "#% increased Area of Effect", ["type"] = "explicit", }, - [159] = { + [160] = { ["id"] = "explicit.stat_1840985759", ["text"] = "#% increased Area of Effect for Attacks", ["type"] = "explicit", }, - [160] = { + [161] = { ["id"] = "explicit.stat_434750362", ["text"] = "#% increased Area of Effect for Attacks per 10 Intelligence", ["type"] = "explicit", }, - [161] = { + [162] = { ["id"] = "explicit.stat_3481736410", ["text"] = "#% increased Area of Effect if you've Killed Recently", ["type"] = "explicit", }, - [162] = { + [163] = { ["id"] = "explicit.stat_153777645", ["text"] = "#% increased Area of Effect of Curses", ["type"] = "explicit", }, - [163] = { + [164] = { ["id"] = "explicit.stat_2866361420", ["text"] = "#% increased Armour", ["type"] = "explicit", }, - [164] = { + [165] = { ["id"] = "explicit.stat_1062208444", ["text"] = "#% increased Armour (Local)", ["type"] = "explicit", }, - [165] = { + [166] = { ["id"] = "explicit.stat_2637470878", ["text"] = "#% increased Armour Break Duration", ["type"] = "explicit", }, - [166] = { + [167] = { ["id"] = "explicit.stat_3321629045", ["text"] = "#% increased Armour and Energy Shield", ["type"] = "explicit", }, - [167] = { + [168] = { ["id"] = "explicit.stat_2451402625", ["text"] = "#% increased Armour and Evasion", ["type"] = "explicit", }, - [168] = { + [169] = { ["id"] = "explicit.stat_1015576579", ["text"] = "#% increased Armour from Equipped Body Armour", ["type"] = "explicit", }, - [169] = { + [170] = { ["id"] = "explicit.stat_3523867985", ["text"] = "#% increased Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [170] = { + [171] = { ["id"] = "explicit.stat_2523933828", ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "explicit", }, - [171] = { + [172] = { ["id"] = "explicit.stat_1207554355", ["text"] = "#% increased Arrow Speed", ["type"] = "explicit", }, - [172] = { + [173] = { ["id"] = "explicit.stat_2843214518", ["text"] = "#% increased Attack Damage", ["type"] = "explicit", }, - [173] = { + [174] = { ["id"] = "explicit.stat_2879725899", ["text"] = "#% increased Attack Damage while Surrounded", ["type"] = "explicit", }, - [174] = { + [175] = { ["id"] = "explicit.stat_2462683918", ["text"] = "#% increased Attack Damage while not on Low Mana", ["type"] = "explicit", }, - [175] = { + [176] = { ["id"] = "explicit.stat_4246007234", ["text"] = "#% increased Attack Damage while on Low Life", ["type"] = "explicit", }, - [176] = { + [177] = { ["id"] = "explicit.stat_681332047", ["text"] = "#% increased Attack Speed", ["type"] = "explicit", }, - [177] = { + [178] = { ["id"] = "explicit.stat_210067635", ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", }, - [178] = { + [179] = { ["id"] = "explicit.stat_889691035", ["text"] = "#% increased Attack Speed per 10 Dexterity", ["type"] = "explicit", }, - [179] = { + [180] = { ["id"] = "explicit.stat_720908147", ["text"] = "#% increased Attack Speed per 20 Dexterity", ["type"] = "explicit", }, - [180] = { + [181] = { ["id"] = "explicit.stat_324579579", ["text"] = "#% increased Attack Speed per 20 Spirit", ["type"] = "explicit", }, - [181] = { + [182] = { ["id"] = "explicit.stat_2241560081", ["text"] = "#% increased Attack Speed per 25 Dexterity", ["type"] = "explicit", }, - [182] = { + [183] = { ["id"] = "explicit.stat_314741699", ["text"] = "#% increased Attack Speed while a Rare or Unique Enemy is in your Presence", ["type"] = "explicit", }, - [183] = { + [184] = { ["id"] = "explicit.stat_325171970", ["text"] = "#% increased Attack Speed while missing Runic Ward", ["type"] = "explicit", }, - [184] = { + [185] = { ["id"] = "explicit.stat_4145314483", ["text"] = "#% increased Attack Speed while on Full Mana", ["type"] = "explicit", }, - [185] = { + [186] = { ["id"] = "explicit.stat_299996", ["text"] = "#% increased Attack Speed while your Companion is in your Presence", ["type"] = "explicit", }, - [186] = { + [187] = { ["id"] = "explicit.stat_3759735052", ["text"] = "#% increased Attack Speed with Bows", ["type"] = "explicit", }, - [187] = { + [188] = { ["id"] = "explicit.stat_1135928777", ["text"] = "#% increased Attack Speed with Crossbows", ["type"] = "explicit", }, - [188] = { + [189] = { ["id"] = "explicit.stat_3283482523", ["text"] = "#% increased Attack Speed with Quarterstaves", ["type"] = "explicit", }, - [189] = { + [190] = { ["id"] = "explicit.stat_1165163804", ["text"] = "#% increased Attack Speed with Spears", ["type"] = "explicit", }, - [190] = { + [191] = { ["id"] = "explicit.stat_2672805335", ["text"] = "#% increased Attack and Cast Speed", ["type"] = "explicit", }, - [191] = { + [192] = { ["id"] = "explicit.stat_3910614548", ["text"] = "#% increased Attack and Cast Speed if you've summoned a Totem Recently", ["type"] = "explicit", }, - [192] = { + [193] = { ["id"] = "explicit.stat_3639275092", ["text"] = "#% increased Attribute Requirements", ["type"] = "explicit", }, - [193] = { + [194] = { ["id"] = "explicit.stat_3143208761", ["text"] = "#% increased Attributes", ["type"] = "explicit", }, - [194] = { + [195] = { ["id"] = "explicit.stat_2513318031", ["text"] = "#% increased Attributes per Socket filled", ["type"] = "explicit", }, - [195] = { + [196] = { ["id"] = "explicit.stat_1459321413", ["text"] = "#% increased Bleeding Duration", ["type"] = "explicit", }, - [196] = { + [197] = { ["id"] = "explicit.stat_1585769763", ["text"] = "#% increased Blind Effect", ["type"] = "explicit", }, - [197] = { + [198] = { ["id"] = "explicit.stat_4147897060", ["text"] = "#% increased Block chance", ["type"] = "explicit", }, - [198] = { + [199] = { ["id"] = "explicit.stat_2481353198", ["text"] = "#% increased Block chance (Local)", ["type"] = "explicit", }, - [199] = { + [200] = { ["id"] = "explicit.stat_3583542124", ["text"] = "#% increased Block chance against Projectiles", ["type"] = "explicit", }, - [200] = { + [201] = { ["id"] = "explicit.stat_2531622767", ["text"] = "#% increased Block chance per 100 total Item Armour on Equipped Armour Items", ["type"] = "explicit", }, - [201] = { + [202] = { ["id"] = "explicit.stat_2891184298", ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, - [202] = { + [203] = { ["id"] = "explicit.stat_145581225", ["text"] = "#% increased Cast Speed during any Flask Effect", ["type"] = "explicit", }, - [203] = { + [204] = { ["id"] = "explicit.stat_1518586897", ["text"] = "#% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", ["type"] = "explicit", }, - [204] = { + [205] = { ["id"] = "explicit.stat_1174076861", ["text"] = "#% increased Cast Speed if you've dealt a Critical Hit Recently", ["type"] = "explicit", }, - [205] = { + [206] = { ["id"] = "explicit.stat_34174842", ["text"] = "#% increased Cast Speed per 20 Spirit", ["type"] = "explicit", }, - [206] = { + [207] = { ["id"] = "explicit.stat_656291658", ["text"] = "#% increased Cast Speed when on Full Life", ["type"] = "explicit", }, - [207] = { + [208] = { ["id"] = "explicit.stat_1136768410", ["text"] = "#% increased Cast Speed when on Low Life", ["type"] = "explicit", }, - [208] = { + [209] = { ["id"] = "explicit.stat_1914226331", ["text"] = "#% increased Cast Speed while on Full Mana", ["type"] = "explicit", }, - [209] = { + [210] = { ["id"] = "explicit.stat_892489594", ["text"] = "#% increased Chance to be afflicted by Ailments when Hit", ["type"] = "explicit", }, - [210] = { + [211] = { ["id"] = "explicit.stat_736967255", ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, - [211] = { + [212] = { ["id"] = "explicit.stat_1366840608", ["text"] = "#% increased Charges", ["type"] = "explicit", }, - [212] = { + [213] = { ["id"] = "explicit.stat_3196823591", ["text"] = "#% increased Charges gained", ["type"] = "explicit", }, - [213] = { + [214] = { ["id"] = "explicit.stat_388617051", ["text"] = "#% increased Charges per use", ["type"] = "explicit", }, - [214] = { + [215] = { ["id"] = "explicit.stat_3585532255", ["text"] = "#% increased Charm Charges gained", ["type"] = "explicit", }, - [215] = { + [216] = { ["id"] = "explicit.stat_1389754388", ["text"] = "#% increased Charm Effect Duration", ["type"] = "explicit", }, - [216] = { + [217] = { ["id"] = "explicit.stat_3485067555", ["text"] = "#% increased Chill Duration on Enemies", ["type"] = "explicit", }, - [217] = { + [218] = { ["id"] = "explicit.stat_3291658075", ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, - [218] = { + [219] = { ["id"] = "explicit.stat_1002535626", ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", ["type"] = "explicit", }, - [219] = { + [220] = { ["id"] = "explicit.stat_1004011302", ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "explicit", }, - [220] = { + [221] = { ["id"] = "explicit.stat_1544773869", ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", ["type"] = "explicit", }, - [221] = { + [222] = { ["id"] = "explicit.stat_1571268546", ["text"] = "#% increased Corrupted Charms effect duration", ["type"] = "explicit", }, - [222] = { + [223] = { ["id"] = "explicit.stat_263495202", ["text"] = "#% increased Cost Efficiency", ["type"] = "explicit", }, - [223] = { + [224] = { ["id"] = "explicit.stat_3350279336", ["text"] = "#% increased Cost Efficiency of Attacks", ["type"] = "explicit", }, - [224] = { + [225] = { ["id"] = "explicit.stat_2369495153", ["text"] = "#% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", ["type"] = "explicit", }, - [225] = { + [226] = { ["id"] = "explicit.stat_2650053239", ["text"] = "#% increased Cost of Skills for each 200 total Mana Spent Recently", ["type"] = "explicit", }, - [226] = { + [227] = { ["id"] = "explicit.stat_3556824919", ["text"] = "#% increased Critical Damage Bonus", ["type"] = "explicit", }, - [227] = { + [228] = { ["id"] = "explicit.stat_3714003708", ["text"] = "#% increased Critical Damage Bonus for Attack Damage", ["type"] = "explicit", }, - [228] = { + [229] = { ["id"] = "explicit.stat_23669307", ["text"] = "#% increased Critical Damage Bonus if you've consumed a Power Charge Recently", ["type"] = "explicit", }, - [229] = { + [230] = { ["id"] = "explicit.stat_4164870816", ["text"] = "#% increased Critical Damage Bonus per Power Charge", ["type"] = "explicit", }, - [230] = { + [231] = { ["id"] = "explicit.stat_2408983956", ["text"] = "#% increased Critical Damage Bonus while Shocked", ["type"] = "explicit", }, - [231] = { + [232] = { ["id"] = "explicit.stat_2456523742", ["text"] = "#% increased Critical Damage Bonus with Spears", ["type"] = "explicit", }, - [232] = { + [233] = { ["id"] = "explicit.stat_587431675", ["text"] = "#% increased Critical Hit Chance", ["type"] = "explicit", }, - [233] = { + [234] = { ["id"] = "explicit.stat_1045789614", ["text"] = "#% increased Critical Hit Chance against Marked Enemies", ["type"] = "explicit", }, - [234] = { + [235] = { ["id"] = "explicit.stat_2194114101", ["text"] = "#% increased Critical Hit Chance for Attacks", ["type"] = "explicit", }, - [235] = { + [236] = { ["id"] = "explicit.stat_737908626", ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "explicit", }, - [236] = { + [237] = { ["id"] = "explicit.stat_2856328513", ["text"] = "#% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", ["type"] = "explicit", }, - [237] = { + [238] = { ["id"] = "explicit.stat_274716455", ["text"] = "#% increased Critical Spell Damage Bonus", ["type"] = "explicit", }, - [238] = { + [239] = { ["id"] = "explicit.stat_2972244965", ["text"] = "#% increased Critical Spell Damage Bonus per Critical Hit you've dealt with Spells Recently", ["type"] = "explicit", }, - [239] = { + [240] = { ["id"] = "explicit.stat_3192728503", ["text"] = "#% increased Crossbow Reload Speed", ["type"] = "explicit", }, - [240] = { + [241] = { ["id"] = "explicit.stat_3563080185", ["text"] = "#% increased Culling Strike Threshold", ["type"] = "explicit", }, - [241] = { + [242] = { ["id"] = "explicit.stat_3824372849", ["text"] = "#% increased Curse Duration", ["type"] = "explicit", }, - [242] = { + [243] = { ["id"] = "explicit.stat_2353576063", ["text"] = "#% increased Curse Magnitudes", ["type"] = "explicit", }, - [243] = { + [244] = { ["id"] = "explicit.stat_2154246560", ["text"] = "#% increased Damage", ["type"] = "explicit", }, - [244] = { + [245] = { ["id"] = "explicit.stat_2301718443", ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", ["type"] = "explicit", }, - [245] = { + [246] = { ["id"] = "explicit.stat_3120508478", ["text"] = "#% increased Damage against Immobilised Enemies", ["type"] = "explicit", }, - [246] = { + [247] = { ["id"] = "explicit.stat_2118708619", ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", ["type"] = "explicit", }, - [247] = { + [248] = { ["id"] = "explicit.stat_3399499561", ["text"] = "#% increased Damage per Minion", ["type"] = "explicit", }, - [248] = { + [249] = { ["id"] = "explicit.stat_310246444", ["text"] = "#% increased Damage while Leeching", ["type"] = "explicit", }, - [249] = { + [250] = { ["id"] = "explicit.stat_2440073079", ["text"] = "#% increased Damage while Shapeshifted", ["type"] = "explicit", }, - [250] = { + [251] = { ["id"] = "explicit.stat_2543331226", ["text"] = "#% increased Damage while you have a Totem", ["type"] = "explicit", }, - [251] = { + [252] = { ["id"] = "explicit.stat_627767961", ["text"] = "#% increased Damage while you have an active Charm", ["type"] = "explicit", }, - [252] = { + [253] = { ["id"] = "explicit.stat_693180608", ["text"] = "#% increased Damage while your Companion is in your Presence", ["type"] = "explicit", }, - [253] = { + [254] = { ["id"] = "explicit.stat_1241625305", ["text"] = "#% increased Damage with Bow Skills", ["type"] = "explicit", }, - [254] = { + [255] = { ["id"] = "explicit.stat_4188894176", ["text"] = "#% increased Damage with Bows", ["type"] = "explicit", }, - [255] = { + [256] = { ["id"] = "explicit.stat_427684353", ["text"] = "#% increased Damage with Crossbows", ["type"] = "explicit", }, - [256] = { + [257] = { ["id"] = "explicit.stat_1852872083", ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "explicit", }, - [257] = { + [258] = { ["id"] = "explicit.stat_4015438188", ["text"] = "#% increased Damage with Hits against targets in your Presence", ["type"] = "explicit", }, - [258] = { + [259] = { ["id"] = "explicit.stat_1181419800", ["text"] = "#% increased Damage with Maces", ["type"] = "explicit", }, - [259] = { + [260] = { ["id"] = "explicit.stat_2518900926", ["text"] = "#% increased Damage with Plant Skills", ["type"] = "explicit", }, - [260] = { + [261] = { ["id"] = "explicit.stat_4045894391", ["text"] = "#% increased Damage with Quarterstaves", ["type"] = "explicit", }, - [261] = { + [262] = { ["id"] = "explicit.stat_2696027455", ["text"] = "#% increased Damage with Spears", ["type"] = "explicit", }, - [262] = { + [263] = { ["id"] = "explicit.stat_1594812856", ["text"] = "#% increased Damage with Warcries", ["type"] = "explicit", }, - [263] = { + [264] = { ["id"] = "explicit.stat_1949833742", ["text"] = "#% increased Daze Buildup", ["type"] = "explicit", }, - [264] = { + [265] = { ["id"] = "explicit.stat_3040571529", ["text"] = "#% increased Deflection Rating", ["type"] = "explicit", }, - [265] = { + [266] = { ["id"] = "explicit.stat_1382805233", ["text"] = "#% increased Deflection Rating while moving", ["type"] = "explicit", }, - [266] = { + [267] = { ["id"] = "explicit.stat_586037801", ["text"] = "#% increased Desecrated Modifier magnitudes", ["type"] = "explicit", }, - [267] = { + [268] = { ["id"] = "explicit.stat_4139681126", ["text"] = "#% increased Dexterity", ["type"] = "explicit", }, - [268] = { + [269] = { ["id"] = "explicit.stat_2541588185", ["text"] = "#% increased Duration (Charm)", ["type"] = "explicit", }, - [269] = { + [270] = { ["id"] = "explicit.stat_1256719186", ["text"] = "#% increased Duration (Flask)", ["type"] = "explicit", }, - [270] = { + [271] = { ["id"] = "explicit.stat_1692879867", ["text"] = "#% increased Duration of Bleeding on You", ["type"] = "explicit", }, - [271] = { + [272] = { ["id"] = "explicit.stat_2920970371", ["text"] = "#% increased Duration of Curses on you", ["type"] = "explicit", }, - [272] = { + [273] = { ["id"] = "explicit.stat_1829102168", ["text"] = "#% increased Duration of Damaging Ailments on Enemies", ["type"] = "explicit", }, - [273] = { + [274] = { ["id"] = "explicit.stat_2604619892", ["text"] = "#% increased Duration of Elemental Ailments on Enemies", ["type"] = "explicit", }, - [274] = { + [275] = { ["id"] = "explicit.stat_1062710370", ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "explicit", }, - [275] = { + [276] = { ["id"] = "explicit.stat_3841138199", ["text"] = "#% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", ["type"] = "explicit", }, - [276] = { + [277] = { ["id"] = "explicit.stat_461663422", ["text"] = "#% increased Effect of Jewel Socket Passive Skillscontaining Corrupted Magic Jewels", ["type"] = "explicit", }, - [277] = { + [278] = { ["id"] = "explicit.stat_3128077011", ["text"] = "#% increased Effect of Jewel Socket Passive Skillscontaining Corrupted Rare Jewels", ["type"] = "explicit", }, - [278] = { + [279] = { ["id"] = "explicit.stat_4234573345", ["text"] = "#% increased Effect of Notable Passive Skills in Radius", ["type"] = "explicit", }, - [279] = { + [280] = { ["id"] = "explicit.stat_1443502073", ["text"] = "#% increased Effect of Prefixes", ["type"] = "explicit", }, - [280] = { + [281] = { ["id"] = "explicit.stat_3078574625", ["text"] = "#% increased Effect of Remnants in Area", ["type"] = "explicit", }, - [281] = { + [282] = { ["id"] = "explicit.stat_3078574625", ["text"] = "#% increased Effect of Remnants in your Maps", ["type"] = "explicit", }, - [282] = { + [283] = { ["id"] = "explicit.stat_1060572482", ["text"] = "#% increased Effect of Small Passive Skills in Radius", ["type"] = "explicit", }, - [283] = { + [284] = { ["id"] = "explicit.stat_2475221757", ["text"] = "#% increased Effect of Suffixes", ["type"] = "explicit", }, - [284] = { + [285] = { ["id"] = "explicit.stat_712554801", ["text"] = "#% increased Effect of your Mark Skills", ["type"] = "explicit", }, - [285] = { + [286] = { ["id"] = "explicit.stat_2065500219", ["text"] = "#% increased Effectiveness of Monsters in your Maps", ["type"] = "explicit", }, - [286] = { + [287] = { ["id"] = "explicit.stat_2895378479", ["text"] = "#% increased Effectiveness of Rare Breach Monsters", ["type"] = "explicit", }, - [287] = { + [288] = { ["id"] = "explicit.stat_3544800472", ["text"] = "#% increased Elemental Ailment Threshold", ["type"] = "explicit", }, - [288] = { + [289] = { ["id"] = "explicit.stat_3141070085", ["text"] = "#% increased Elemental Damage", ["type"] = "explicit", }, - [289] = { + [290] = { ["id"] = "explicit.stat_387439868", ["text"] = "#% increased Elemental Damage with Attacks", ["type"] = "explicit", }, - [290] = { + [291] = { ["id"] = "explicit.stat_1170174456", ["text"] = "#% increased Endurance Charge Duration", ["type"] = "explicit", }, - [291] = { + [292] = { ["id"] = "explicit.stat_2839036860", ["text"] = "#% increased Endurance, Frenzy and Power Charge Duration", ["type"] = "explicit", }, - [292] = { + [293] = { ["id"] = "explicit.stat_4015621042", ["text"] = "#% increased Energy Shield", ["type"] = "explicit", }, - [293] = { + [294] = { ["id"] = "explicit.stat_2339757871", ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "explicit", }, - [294] = { + [295] = { ["id"] = "explicit.stat_1079292660", ["text"] = "#% increased Energy Shield Recharge Rate if you've Blocked Recently", ["type"] = "explicit", }, - [295] = { + [296] = { ["id"] = "explicit.stat_2408276841", ["text"] = "#% increased Energy Shield Recharge Rate per 4 Strength", ["type"] = "explicit", }, - [296] = { + [297] = { ["id"] = "explicit.stat_988575597", ["text"] = "#% increased Energy Shield Recovery rate", ["type"] = "explicit", }, - [297] = { + [298] = { ["id"] = "explicit.stat_1195319608", ["text"] = "#% increased Energy Shield from Equipped Body Armour", ["type"] = "explicit", }, - [298] = { + [299] = { ["id"] = "explicit.stat_3174700878", ["text"] = "#% increased Energy Shield from Equipped Focus", ["type"] = "explicit", }, - [299] = { + [300] = { ["id"] = "explicit.stat_2106365538", ["text"] = "#% increased Evasion Rating", ["type"] = "explicit", }, - [300] = { + [301] = { ["id"] = "explicit.stat_124859000", ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "explicit", }, - [301] = { + [302] = { ["id"] = "explicit.stat_3509362078", ["text"] = "#% increased Evasion Rating from Equipped Body Armour", ["type"] = "explicit", }, - [302] = { + [303] = { ["id"] = "explicit.stat_1073310669", ["text"] = "#% increased Evasion Rating if you have been Hit Recently", ["type"] = "explicit", }, - [303] = { + [304] = { ["id"] = "explicit.stat_1040569494", ["text"] = "#% increased Evasion Rating if you've Dodge Rolled Recently", ["type"] = "explicit", }, - [304] = { + [305] = { ["id"] = "explicit.stat_88817332", ["text"] = "#% increased Evasion Rating when on Full Life", ["type"] = "explicit", }, - [305] = { + [306] = { ["id"] = "explicit.stat_1586136369", ["text"] = "#% increased Evasion Rating while Sprinting", ["type"] = "explicit", }, - [306] = { + [307] = { ["id"] = "explicit.stat_1999113824", ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "explicit", }, - [307] = { + [308] = { ["id"] = "explicit.stat_1539368271", ["text"] = "#% increased Expedition Explosive Placement Range", ["type"] = "explicit", }, - [308] = { + [309] = { ["id"] = "explicit.stat_3289828378", ["text"] = "#% increased Expedition Explosive Radius", ["type"] = "explicit", }, - [309] = { - ["id"] = "explicit.stat_3666934677", - ["text"] = "#% increased Experience gain", - ["type"] = "explicit", - }, [310] = { ["id"] = "explicit.stat_57434274", ["text"] = "#% increased Experience gain", ["type"] = "explicit", }, [311] = { + ["id"] = "explicit.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "explicit", + }, + [312] = { ["id"] = "explicit.stat_57434274", ["text"] = "#% increased Experience gain in your Maps", ["type"] = "explicit", }, - [312] = { + [313] = { ["id"] = "explicit.stat_231689132", ["text"] = "#% increased Explicit Elemental Damage Modifier magnitudes", ["type"] = "explicit", }, - [313] = { + [314] = { ["id"] = "explicit.stat_3574578302", ["text"] = "#% increased Explicit Fire Modifier magnitudes", ["type"] = "explicit", }, - [314] = { + [315] = { ["id"] = "explicit.stat_3624940721", ["text"] = "#% increased Explicit Lightning Modifier magnitudes", ["type"] = "explicit", }, - [315] = { + [316] = { ["id"] = "explicit.stat_1335369947", ["text"] = "#% increased Explicit Physical Modifier magnitudes", ["type"] = "explicit", }, - [316] = { + [317] = { ["id"] = "explicit.stat_1972391381", ["text"] = "#% increased Explicit Resistance Modifier magnitudes", ["type"] = "explicit", }, - [317] = { + [318] = { ["id"] = "explicit.stat_2074866941", ["text"] = "#% increased Exposure Effect", ["type"] = "explicit", }, - [318] = { + [319] = { ["id"] = "explicit.stat_3962278098", ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, - [319] = { + [320] = { ["id"] = "explicit.stat_3858572996", ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", ["type"] = "explicit", }, - [320] = { + [321] = { ["id"] = "explicit.stat_2968503605", ["text"] = "#% increased Flammability Magnitude", ["type"] = "explicit", }, - [321] = { + [322] = { ["id"] = "explicit.stat_1836676211", ["text"] = "#% increased Flask Charges gained", ["type"] = "explicit", }, - [322] = { + [323] = { ["id"] = "explicit.stat_3741323227", ["text"] = "#% increased Flask Effect Duration", ["type"] = "explicit", }, - [323] = { + [324] = { ["id"] = "explicit.stat_51994685", ["text"] = "#% increased Flask Life Recovery rate", ["type"] = "explicit", }, - [324] = { + [325] = { ["id"] = "explicit.stat_1412217137", ["text"] = "#% increased Flask Mana Recovery rate", ["type"] = "explicit", }, - [325] = { + [326] = { ["id"] = "explicit.stat_551040294", ["text"] = "#% increased Fracturing Mirrors manifested within Delirium Fog", ["type"] = "explicit", }, - [326] = { + [327] = { ["id"] = "explicit.stat_473429811", ["text"] = "#% increased Freeze Buildup", ["type"] = "explicit", }, - [327] = { + [328] = { ["id"] = "explicit.stat_232701452", ["text"] = "#% increased Freeze Buildup if you've consumed an Power Charge Recently", ["type"] = "explicit", }, - [328] = { + [329] = { ["id"] = "explicit.stat_1697447343", ["text"] = "#% increased Freeze Buildup with Quarterstaves", ["type"] = "explicit", }, - [329] = { + [330] = { ["id"] = "explicit.stat_1073942215", ["text"] = "#% increased Freeze Duration on Enemies", ["type"] = "explicit", }, - [330] = { + [331] = { ["id"] = "explicit.stat_3780644166", ["text"] = "#% increased Freeze Threshold", ["type"] = "explicit", }, - [331] = { + [332] = { ["id"] = "explicit.stat_1177404658", ["text"] = "#% increased Global Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [332] = { + [333] = { ["id"] = "explicit.stat_933768533", ["text"] = "#% increased Global Armour, Evasion and Energy Shield per Socket filled", ["type"] = "explicit", }, - [333] = { + [334] = { ["id"] = "explicit.stat_2695354435", ["text"] = "#% increased Global Evasion Rating when on Low Life", ["type"] = "explicit", }, - [334] = { + [335] = { ["id"] = "explicit.stat_1310194496", ["text"] = "#% increased Global Physical Damage", ["type"] = "explicit", }, - [335] = { + [336] = { ["id"] = "explicit.stat_3143918757", ["text"] = "#% increased Glory generation", ["type"] = "explicit", }, - [336] = { + [337] = { ["id"] = "explicit.stat_1869147066", ["text"] = "#% increased Glory generation for Banner Skills", ["type"] = "explicit", }, - [337] = { + [338] = { ["id"] = "explicit.stat_1133965702", ["text"] = "#% increased Gold found in this Area", ["type"] = "explicit", }, - [338] = { + [339] = { ["id"] = "explicit.stat_1276056105", ["text"] = "#% increased Gold found in this Area (Gold Piles)", ["type"] = "explicit", }, - [339] = { + [340] = { ["id"] = "explicit.stat_1133965702", ["text"] = "#% increased Gold found in your Maps", ["type"] = "explicit", }, - [340] = { + [341] = { ["id"] = "explicit.stat_1276056105", ["text"] = "#% increased Gold found in your Maps (Gold Piles)", ["type"] = "explicit", }, - [341] = { + [342] = { ["id"] = "explicit.stat_3131442032", ["text"] = "#% increased Grenade Damage", ["type"] = "explicit", }, - [342] = { + [343] = { ["id"] = "explicit.stat_1365232741", ["text"] = "#% increased Grenade Duration", ["type"] = "explicit", }, - [343] = { + [344] = { ["id"] = "explicit.stat_1697951953", ["text"] = "#% increased Hazard Damage", ["type"] = "explicit", }, - [344] = { + [345] = { ["id"] = "explicit.stat_3274422940", ["text"] = "#% increased Ice Crystal Life", ["type"] = "explicit", }, - [345] = { + [346] = { ["id"] = "explicit.stat_1086147743", ["text"] = "#% increased Ignite Duration on Enemies", ["type"] = "explicit", }, - [346] = { + [347] = { ["id"] = "explicit.stat_3791899485", ["text"] = "#% increased Ignite Magnitude", ["type"] = "explicit", }, - [347] = { + [348] = { ["id"] = "explicit.stat_330530785", ["text"] = "#% increased Immobilisation buildup", ["type"] = "explicit", }, - [348] = { + [349] = { ["id"] = "explicit.stat_656461285", ["text"] = "#% increased Intelligence", ["type"] = "explicit", }, - [349] = { + [350] = { ["id"] = "explicit.stat_565784293", ["text"] = "#% increased Knockback Distance", ["type"] = "explicit", }, - [350] = { + [351] = { ["id"] = "explicit.stat_310945763", ["text"] = "#% increased Life Cost Efficiency", ["type"] = "explicit", }, - [351] = { + [352] = { ["id"] = "explicit.stat_4009879772", ["text"] = "#% increased Life Flask Charges gained", ["type"] = "explicit", }, - [352] = { + [353] = { ["id"] = "explicit.stat_1261982764", ["text"] = "#% increased Life Recovered", ["type"] = "explicit", }, - [353] = { + [354] = { ["id"] = "explicit.stat_821241191", ["text"] = "#% increased Life Recovery from Flasks", ["type"] = "explicit", }, - [354] = { + [355] = { ["id"] = "explicit.stat_3240073117", ["text"] = "#% increased Life Recovery rate", ["type"] = "explicit", }, - [355] = { + [356] = { ["id"] = "explicit.stat_2116424886", ["text"] = "#% increased Life Regeneration Rate while moving", ["type"] = "explicit", }, - [356] = { + [357] = { ["id"] = "explicit.stat_44972811", ["text"] = "#% increased Life Regeneration rate", ["type"] = "explicit", }, - [357] = { + [358] = { ["id"] = "explicit.stat_1261076060", ["text"] = "#% increased Life Regeneration rate during Effect of any Life Flask", ["type"] = "explicit", }, - [358] = { + [359] = { ["id"] = "explicit.stat_3084372306", ["text"] = "#% increased Life Regeneration rate while Surrounded", ["type"] = "explicit", }, - [359] = { + [360] = { ["id"] = "explicit.stat_2310741722", ["text"] = "#% increased Life and Mana Recovery from Flasks", ["type"] = "explicit", }, - [360] = { + [361] = { ["id"] = "explicit.stat_1263695895", ["text"] = "#% increased Light Radius", ["type"] = "explicit", }, - [361] = { + [362] = { ["id"] = "explicit.stat_2231156303", ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", }, - [362] = { + [363] = { ["id"] = "explicit.stat_797289402", ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", ["type"] = "explicit", }, - [363] = { + [364] = { ["id"] = "explicit.stat_3873704640", ["text"] = "#% increased Magic Monsters", ["type"] = "explicit", }, - [364] = { + [365] = { ["id"] = "explicit.stat_1714706956", ["text"] = "#% increased Magic Pack Size", ["type"] = "explicit", }, - [365] = { + [366] = { ["id"] = "explicit.stat_4043376133", ["text"] = "#% increased Magnitude of Abyssal Wasting you inflict", ["type"] = "explicit", }, - [366] = { + [367] = { ["id"] = "explicit.stat_1303248024", ["text"] = "#% increased Magnitude of Ailments you inflict", ["type"] = "explicit", }, - [367] = { + [368] = { ["id"] = "explicit.stat_3166958180", ["text"] = "#% increased Magnitude of Bleeding you inflict", ["type"] = "explicit", }, - [368] = { + [369] = { ["id"] = "explicit.stat_828179689", ["text"] = "#% increased Magnitude of Chill you inflict", ["type"] = "explicit", }, - [369] = { + [370] = { ["id"] = "explicit.stat_1381474422", ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", ["type"] = "explicit", }, - [370] = { + [371] = { ["id"] = "explicit.stat_440490623", ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "explicit", }, - [371] = { + [372] = { ["id"] = "explicit.stat_3621874554", ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", ["type"] = "explicit", }, - [372] = { + [373] = { ["id"] = "explicit.stat_916833363", ["text"] = "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", ["type"] = "explicit", }, - [373] = { + [374] = { ["id"] = "explicit.stat_4259875040", ["text"] = "#% increased Magnitude of Impales inflicted with Spells", ["type"] = "explicit", }, - [374] = { + [375] = { ["id"] = "explicit.stat_2487305362", ["text"] = "#% increased Magnitude of Poison you inflict", ["type"] = "explicit", }, - [375] = { + [376] = { ["id"] = "explicit.stat_1864159246", ["text"] = "#% increased Magnitude of Poison you inflict on targets that are not Poisoned", ["type"] = "explicit", }, - [376] = { + [377] = { ["id"] = "explicit.stat_120969026", ["text"] = "#% increased Magnitude of Poison you inflict while Poisoned", ["type"] = "explicit", }, - [377] = { + [378] = { ["id"] = "explicit.stat_324210709", ["text"] = "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", ["type"] = "explicit", }, - [378] = { + [379] = { ["id"] = "explicit.stat_2527686725", ["text"] = "#% increased Magnitude of Shock you inflict", ["type"] = "explicit", }, - [379] = { + [380] = { ["id"] = "explicit.stat_2725205297", ["text"] = "#% increased Magnitude of Unholy Might buffs you grant", ["type"] = "explicit", }, - [380] = { + [381] = { ["id"] = "explicit.stat_4101445926", ["text"] = "#% increased Mana Cost Efficiency", ["type"] = "explicit", }, - [381] = { + [382] = { ["id"] = "explicit.stat_3396435291", ["text"] = "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", ["type"] = "explicit", }, - [382] = { + [383] = { ["id"] = "explicit.stat_2653231923", ["text"] = "#% increased Mana Cost Efficiency of Spells", ["type"] = "explicit", }, - [383] = { + [384] = { ["id"] = "explicit.stat_3590792340", ["text"] = "#% increased Mana Flask Charges gained", ["type"] = "explicit", }, - [384] = { + [385] = { ["id"] = "explicit.stat_1811130680", ["text"] = "#% increased Mana Recovered", ["type"] = "explicit", }, - [385] = { + [386] = { ["id"] = "explicit.stat_2222186378", ["text"] = "#% increased Mana Recovery from Flasks", ["type"] = "explicit", }, - [386] = { + [387] = { ["id"] = "explicit.stat_789117908", ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "explicit", }, - [387] = { + [388] = { ["id"] = "explicit.stat_1659564104", ["text"] = "#% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", ["type"] = "explicit", }, - [388] = { + [389] = { ["id"] = "explicit.stat_344174146", ["text"] = "#% increased Mana Regeneration Rate per Fragile Regrowth", ["type"] = "explicit", }, - [389] = { + [390] = { ["id"] = "explicit.stat_1895238057", ["text"] = "#% increased Mana Regeneration Rate while Surrounded", ["type"] = "explicit", }, - [390] = { + [391] = { ["id"] = "explicit.stat_1327522346", ["text"] = "#% increased Mana Regeneration Rate while moving", ["type"] = "explicit", }, - [391] = { + [392] = { ["id"] = "explicit.stat_3308030688", ["text"] = "#% increased Mana Regeneration Rate while stationary", ["type"] = "explicit", }, - [392] = { + [393] = { ["id"] = "explicit.stat_2702182380", ["text"] = "#% increased Maximum Life per Socket filled", ["type"] = "explicit", }, - [393] = { + [394] = { ["id"] = "explicit.stat_332217711", ["text"] = "#% increased Maximum Life per socketed Grand Spectrum", ["type"] = "explicit", }, - [394] = { + [395] = { ["id"] = "explicit.stat_911712882", ["text"] = "#% increased Maximum Mana per Socket filled", ["type"] = "explicit", }, - [395] = { + [396] = { ["id"] = "explicit.stat_1002362373", ["text"] = "#% increased Melee Damage", ["type"] = "explicit", }, - [396] = { + [397] = { ["id"] = "explicit.stat_2677352961", ["text"] = "#% increased Melee Damage against Heavy Stunned enemies", ["type"] = "explicit", }, - [397] = { + [398] = { ["id"] = "explicit.stat_3028809864", ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", ["type"] = "explicit", }, - [398] = { + [399] = { ["id"] = "explicit.stat_548198834", ["text"] = "#% increased Melee Strike Range with this weapon", ["type"] = "explicit", }, - [399] = { + [400] = { ["id"] = "explicit.stat_1718147982", ["text"] = "#% increased Minion Accuracy Rating", ["type"] = "explicit", }, - [400] = { + [401] = { ["id"] = "explicit.stat_3526763442", ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", ["type"] = "explicit", }, - [401] = { + [402] = { ["id"] = "explicit.stat_1913583994", ["text"] = "#% increased Monster Attack Speed", ["type"] = "explicit", }, - [402] = { + [403] = { ["id"] = "explicit.stat_2488361432", ["text"] = "#% increased Monster Cast Speed", ["type"] = "explicit", }, - [403] = { + [404] = { ["id"] = "explicit.stat_1890519597", ["text"] = "#% increased Monster Damage", ["type"] = "explicit", }, - [404] = { + [405] = { ["id"] = "explicit.stat_2306522833", ["text"] = "#% increased Monster Movement Speed", ["type"] = "explicit", }, - [405] = { + [406] = { ["id"] = "explicit.stat_2250533757", ["text"] = "#% increased Movement Speed", ["type"] = "explicit", }, - [406] = { + [407] = { ["id"] = "explicit.stat_2590797182", ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", ["type"] = "explicit", }, - [407] = { + [408] = { ["id"] = "explicit.stat_1541516339", ["text"] = "#% increased Movement Speed per Frenzy Charge", ["type"] = "explicit", }, - [408] = { + [409] = { ["id"] = "explicit.stat_3393547195", ["text"] = "#% increased Movement Speed when on Full Life", ["type"] = "explicit", }, - [409] = { + [410] = { ["id"] = "explicit.stat_3107707789", ["text"] = "#% increased Movement Speed while Sprinting", ["type"] = "explicit", }, - [410] = { + [411] = { ["id"] = "explicit.stat_610276769", ["text"] = "#% increased Movement Speed while affected by an Ailment", ["type"] = "explicit", }, - [411] = { + [412] = { ["id"] = "explicit.stat_2017682521", ["text"] = "#% increased Pack Size", ["type"] = "explicit", }, - [412] = { + [413] = { ["id"] = "explicit.stat_3401186585", ["text"] = "#% increased Parried Debuff Duration", ["type"] = "explicit", }, - [413] = { + [414] = { ["id"] = "explicit.stat_818877178", ["text"] = "#% increased Parried Debuff Magnitude", ["type"] = "explicit", }, - [414] = { + [415] = { ["id"] = "explicit.stat_1569159338", ["text"] = "#% increased Parry Damage", ["type"] = "explicit", }, - [415] = { + [416] = { ["id"] = "explicit.stat_1509134228", ["text"] = "#% increased Physical Damage", ["type"] = "explicit", }, - [416] = { + [417] = { ["id"] = "explicit.stat_3473929743", ["text"] = "#% increased Pin Buildup", ["type"] = "explicit", }, - [417] = { + [418] = { ["id"] = "explicit.stat_2011656677", ["text"] = "#% increased Poison Duration", ["type"] = "explicit", }, - [418] = { + [419] = { ["id"] = "explicit.stat_3301100256", ["text"] = "#% increased Poison Duration on you", ["type"] = "explicit", }, - [419] = { + [420] = { ["id"] = "explicit.stat_3872306017", ["text"] = "#% increased Power Charge Duration", ["type"] = "explicit", }, - [420] = { + [421] = { ["id"] = "explicit.stat_101878827", ["text"] = "#% increased Presence Area of Effect", ["type"] = "explicit", }, - [421] = { + [422] = { ["id"] = "explicit.stat_1839076647", ["text"] = "#% increased Projectile Damage", ["type"] = "explicit", }, - [422] = { + [423] = { ["id"] = "explicit.stat_3596695232", ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", ["type"] = "explicit", }, - [423] = { + [424] = { ["id"] = "explicit.stat_3759663284", ["text"] = "#% increased Projectile Speed", ["type"] = "explicit", }, - [424] = { + [425] = { ["id"] = "explicit.stat_3359797958", ["text"] = "#% increased Projectile Speed for Spell Skills", ["type"] = "explicit", }, - [425] = { + [426] = { ["id"] = "explicit.stat_535217483", ["text"] = "#% increased Projectile Speed with this Weapon", ["type"] = "explicit", }, - [426] = { + [427] = { ["id"] = "explicit.stat_624534143", ["text"] = "#% increased Quantity of Breach Splinters dropped by Breach Monsters in Area", ["type"] = "explicit", }, - [427] = { + [428] = { ["id"] = "explicit.stat_624534143", ["text"] = "#% increased Quantity of Breach Splinters dropped by Breach Monsters in your Maps", ["type"] = "explicit", }, - [428] = { + [429] = { ["id"] = "explicit.stat_1083387327", ["text"] = "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters", ["type"] = "explicit", }, - [429] = { + [430] = { ["id"] = "explicit.stat_1083387327", ["text"] = "#% increased Quantity of Expedition Logbooks dropped by Runic Monsters in your Maps", ["type"] = "explicit", }, - [430] = { + [431] = { ["id"] = "explicit.stat_3175163625", ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "explicit", }, - [431] = { + [432] = { ["id"] = "explicit.stat_3119172063", ["text"] = "#% increased Quantity of Items dropped by Map Bosses", ["type"] = "explicit", }, - [432] = { + [433] = { ["id"] = "explicit.stat_2390685262", ["text"] = "#% increased Quantity of Items found", ["type"] = "explicit", }, - [433] = { + [434] = { ["id"] = "explicit.stat_1457896329", ["text"] = "#% increased Quantity of Waystones dropped by Map Bosses", ["type"] = "explicit", }, - [434] = { + [435] = { ["id"] = "explicit.stat_2777224821", ["text"] = "#% increased Quantity of Waystones found", ["type"] = "explicit", }, - [435] = { + [436] = { ["id"] = "explicit.stat_472809816", ["text"] = "#% increased Quantity of Wombgifts found", ["type"] = "explicit", }, - [436] = { + [437] = { ["id"] = "explicit.stat_2416650879", ["text"] = "#% increased Rage Cost Efficiency", ["type"] = "explicit", }, - [437] = { + [438] = { ["id"] = "explicit.stat_3793155082", ["text"] = "#% increased Rare Monsters", ["type"] = "explicit", }, - [438] = { + [439] = { ["id"] = "explicit.stat_21824003", ["text"] = "#% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", ["type"] = "explicit", }, - [439] = { + [440] = { ["id"] = "explicit.stat_4255069232", ["text"] = "#% increased Rarity of Items dropped by Map Bosses", ["type"] = "explicit", }, - [440] = { + [441] = { ["id"] = "explicit.stat_2306002879", ["text"] = "#% increased Rarity of Items found", ["type"] = "explicit", }, - [441] = { + [442] = { ["id"] = "explicit.stat_3917489142", ["text"] = "#% increased Rarity of Items found", ["type"] = "explicit", }, - [442] = { + [443] = { ["id"] = "explicit.stat_1602191394", ["text"] = "#% increased Rarity of Items foundYour other Modifiers to Rarity of Items found do not apply", ["type"] = "explicit", }, - [443] = { + [444] = { ["id"] = "explicit.stat_313223231", ["text"] = "#% increased Rarity of Items found per Socket filled", ["type"] = "explicit", }, - [444] = { + [445] = { ["id"] = "explicit.stat_2929867083", ["text"] = "#% increased Rarity of Items found when on Low Life", ["type"] = "explicit", }, - [445] = { + [446] = { ["id"] = "explicit.stat_173226756", ["text"] = "#% increased Recovery rate", ["type"] = "explicit", }, - [446] = { + [447] = { ["id"] = "explicit.stat_710476746", ["text"] = "#% increased Reload Speed", ["type"] = "explicit", }, - [447] = { + [448] = { ["id"] = "explicit.stat_3413635271", ["text"] = "#% increased Reservation Efficiency of Companion Skills", ["type"] = "explicit", }, - [448] = { + [449] = { ["id"] = "explicit.stat_1697191405", ["text"] = "#% increased Reservation Efficiency of Herald Skills", ["type"] = "explicit", }, - [449] = { + [450] = { ["id"] = "explicit.stat_1805633363", ["text"] = "#% increased Reservation Efficiency of Minion Skills", ["type"] = "explicit", }, - [450] = { + [451] = { ["id"] = "explicit.stat_1350127730", ["text"] = "#% increased Reservation Efficiency of Remnant Skills", ["type"] = "explicit", }, - [451] = { + [452] = { ["id"] = "explicit.stat_2308632835", ["text"] = "#% increased Reservation Efficiency of Skills which create Undead Minions", ["type"] = "explicit", }, - [452] = { + [453] = { ["id"] = "explicit.stat_830161081", ["text"] = "#% increased Runic Ward", ["type"] = "explicit", }, - [453] = { + [454] = { ["id"] = "explicit.stat_2392260628", ["text"] = "#% increased Runic Ward Regeneration Rate", ["type"] = "explicit", }, - [454] = { + [455] = { ["id"] = "explicit.stat_3668351662", ["text"] = "#% increased Shock Duration", ["type"] = "explicit", }, - [455] = { + [456] = { ["id"] = "explicit.stat_3377888098", ["text"] = "#% increased Skill Effect Duration", ["type"] = "explicit", }, - [456] = { + [457] = { ["id"] = "explicit.stat_970213192", ["text"] = "#% increased Skill Speed", ["type"] = "explicit", }, - [457] = { + [458] = { ["id"] = "explicit.stat_3313255158", ["text"] = "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", ["type"] = "explicit", }, - [458] = { + [459] = { ["id"] = "explicit.stat_918325986", ["text"] = "#% increased Skill Speed while Shapeshifted", ["type"] = "explicit", }, - [459] = { + [460] = { ["id"] = "explicit.stat_924253255", ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "explicit", }, - [460] = { + [461] = { ["id"] = "explicit.stat_2974417149", ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, - [461] = { + [462] = { ["id"] = "explicit.stat_1014398896", ["text"] = "#% increased Spell Damage during any Flask Effect", ["type"] = "explicit", }, - [462] = { + [463] = { ["id"] = "explicit.stat_2818518881", ["text"] = "#% increased Spell Damage per 10 Intelligence", ["type"] = "explicit", }, - [463] = { + [464] = { ["id"] = "explicit.stat_2412053423", ["text"] = "#% increased Spell Damage per 10 Spirit", ["type"] = "explicit", }, - [464] = { + [465] = { ["id"] = "explicit.stat_3491815140", ["text"] = "#% increased Spell Damage per 100 Maximum Life", ["type"] = "explicit", }, - [465] = { + [466] = { ["id"] = "explicit.stat_1850249186", ["text"] = "#% increased Spell Damage per 100 maximum Mana", ["type"] = "explicit", }, - [466] = { + [467] = { ["id"] = "explicit.stat_3176481473", ["text"] = "#% increased Spell Damage while on Full Energy Shield", ["type"] = "explicit", }, - [467] = { + [468] = { ["id"] = "explicit.stat_4136346606", ["text"] = "#% increased Spell Damage while wielding a Melee Weapon", ["type"] = "explicit", }, - [468] = { + [469] = { ["id"] = "explicit.stat_1373860425", ["text"] = "#% increased Spell Damage with Spells that cost Life", ["type"] = "explicit", }, - [469] = { + [470] = { ["id"] = "explicit.stat_2768835289", ["text"] = "#% increased Spell Physical Damage", ["type"] = "explicit", }, - [470] = { + [471] = { ["id"] = "explicit.stat_347220474", ["text"] = "#% increased Spell damage for each 200 total Mana you have Spent Recently", ["type"] = "explicit", }, - [471] = { + [472] = { ["id"] = "explicit.stat_1416406066", ["text"] = "#% increased Spirit", ["type"] = "explicit", }, - [472] = { + [473] = { ["id"] = "explicit.stat_3984865854", ["text"] = "#% increased Spirit", ["type"] = "explicit", }, - [473] = { + [474] = { ["id"] = "explicit.stat_53386210", ["text"] = "#% increased Spirit Reservation Efficiency", ["type"] = "explicit", }, - [474] = { + [475] = { ["id"] = "explicit.stat_3581035970", ["text"] = "#% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", ["type"] = "explicit", }, - [475] = { + [476] = { ["id"] = "explicit.stat_1430165758", ["text"] = "#% increased Spirit per socketed Grand Spectrum", ["type"] = "explicit", }, - [476] = { + [477] = { ["id"] = "explicit.stat_3836551197", ["text"] = "#% increased Stack size of Simulacrum Splinters found in Area", ["type"] = "explicit", }, - [477] = { + [478] = { ["id"] = "explicit.stat_3836551197", ["text"] = "#% increased Stack size of Simulacrum Splinters found in your Maps", ["type"] = "explicit", }, - [478] = { + [479] = { ["id"] = "explicit.stat_734614379", ["text"] = "#% increased Strength", ["type"] = "explicit", }, - [479] = { + [480] = { ["id"] = "explicit.stat_295075366", ["text"] = "#% increased Strength Requirement", ["type"] = "explicit", }, - [480] = { + [481] = { ["id"] = "explicit.stat_239367161", ["text"] = "#% increased Stun Buildup", ["type"] = "explicit", }, - [481] = { + [482] = { ["id"] = "explicit.stat_872504239", ["text"] = "#% increased Stun Buildup with Maces", ["type"] = "explicit", }, - [482] = { + [483] = { ["id"] = "explicit.stat_748522257", ["text"] = "#% increased Stun Duration", ["type"] = "explicit", }, - [483] = { + [484] = { ["id"] = "explicit.stat_2511217560", ["text"] = "#% increased Stun Recovery", ["type"] = "explicit", }, - [484] = { + [485] = { ["id"] = "explicit.stat_680068163", ["text"] = "#% increased Stun Threshold", ["type"] = "explicit", }, - [485] = { + [486] = { ["id"] = "explicit.stat_1405298142", ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "explicit", }, - [486] = { + [487] = { ["id"] = "explicit.stat_1911237468", ["text"] = "#% increased Stun Threshold while Parrying", ["type"] = "explicit", }, - [487] = { + [488] = { ["id"] = "explicit.stat_909236563", ["text"] = "#% increased Surrounded Area of Effect", ["type"] = "explicit", }, - [488] = { + [489] = { ["id"] = "explicit.stat_1315743832", ["text"] = "#% increased Thorns damage", ["type"] = "explicit", }, - [489] = { + [490] = { ["id"] = "explicit.stat_806994543", ["text"] = "#% increased Thorns damage if you've consumed an Endurance Charge Recently", ["type"] = "explicit", }, - [490] = { + [491] = { ["id"] = "explicit.stat_3851254963", ["text"] = "#% increased Totem Damage", ["type"] = "explicit", }, - [491] = { + [492] = { ["id"] = "explicit.stat_2639983772", ["text"] = "#% increased Totem Damage per Curse on you", ["type"] = "explicit", }, - [492] = { + [493] = { ["id"] = "explicit.stat_2357996603", ["text"] = "#% increased Totem Duration", ["type"] = "explicit", }, - [493] = { + [494] = { ["id"] = "explicit.stat_686254215", ["text"] = "#% increased Totem Life", ["type"] = "explicit", }, - [494] = { + [495] = { ["id"] = "explicit.stat_3374165039", ["text"] = "#% increased Totem Placement speed", ["type"] = "explicit", }, - [495] = { + [496] = { ["id"] = "explicit.stat_3037553757", ["text"] = "#% increased Warcry Buff Effect", ["type"] = "explicit", }, - [496] = { + [497] = { ["id"] = "explicit.stat_4159248054", ["text"] = "#% increased Warcry Cooldown Recovery Rate", ["type"] = "explicit", }, - [497] = { + [498] = { ["id"] = "explicit.stat_1316278494", ["text"] = "#% increased Warcry Speed", ["type"] = "explicit", }, - [498] = { + [499] = { ["id"] = "explicit.stat_1791136590", ["text"] = "#% increased Weapon Damage per 10 Strength", ["type"] = "explicit", }, - [499] = { + [500] = { ["id"] = "explicit.stat_3233599707", ["text"] = "#% increased Weapon Swap Speed", ["type"] = "explicit", }, - [500] = { + [501] = { ["id"] = "explicit.stat_3973629633", ["text"] = "#% increased Withered Magnitude", ["type"] = "explicit", }, - [501] = { + [502] = { ["id"] = "explicit.stat_2112395885", ["text"] = "#% increased amount of Life Leeched", ["type"] = "explicit", }, - [502] = { + [503] = { ["id"] = "explicit.stat_3843204146", ["text"] = "#% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", ["type"] = "explicit", }, - [503] = { + [504] = { ["id"] = "explicit.stat_2898517796", ["text"] = "#% increased amount of Magic Chests", ["type"] = "explicit", }, - [504] = { + [505] = { ["id"] = "explicit.stat_2839066308", ["text"] = "#% increased amount of Mana Leeched", ["type"] = "explicit", }, - [505] = { + [506] = { ["id"] = "explicit.stat_798469000", ["text"] = "#% increased amount of Rare Chests", ["type"] = "explicit", }, - [506] = { + [507] = { ["id"] = "explicit.stat_1200678966", ["text"] = "#% increased bonuses gained from Equipped Quiver", ["type"] = "explicit", }, - [507] = { + [508] = { ["id"] = "explicit.stat_2793222406", ["text"] = "#% increased bonuses gained from Equipped Rings", ["type"] = "explicit", }, - [508] = { + [509] = { ["id"] = "explicit.stat_513747733", ["text"] = "#% increased bonuses gained from left Equipped Ring", ["type"] = "explicit", }, - [509] = { + [510] = { ["id"] = "explicit.stat_3885501357", ["text"] = "#% increased bonuses gained from right Equipped Ring", ["type"] = "explicit", }, - [510] = { + [511] = { ["id"] = "explicit.stat_632698321", ["text"] = "#% increased chance Vaal Beacons summon additional Monsters", ["type"] = "explicit", }, - [511] = { + [512] = { ["id"] = "explicit.stat_2789248444", ["text"] = "#% increased chance for Abyssal monsters to have Abyssal Modifiers", ["type"] = "explicit", }, - [512] = { + [513] = { ["id"] = "explicit.stat_3815617979", ["text"] = "#% increased chance of Azmeri Spirits", ["type"] = "explicit", }, - [513] = { + [514] = { ["id"] = "explicit.stat_1825943485", ["text"] = "#% increased chance of Essences", ["type"] = "explicit", }, - [514] = { + [515] = { ["id"] = "explicit.stat_1352729973", ["text"] = "#% increased chance of Rogue Exiles", ["type"] = "explicit", }, - [515] = { + [516] = { ["id"] = "explicit.stat_689816330", ["text"] = "#% increased chance of Shrines", ["type"] = "explicit", }, - [516] = { + [517] = { ["id"] = "explicit.stat_4279535856", ["text"] = "#% increased chance of Strongboxes", ["type"] = "explicit", }, - [517] = { + [518] = { ["id"] = "explicit.stat_267210597", ["text"] = "#% increased chance of Summoning Circles", ["type"] = "explicit", }, - [518] = { + [519] = { ["id"] = "explicit.stat_3481083201", ["text"] = "#% increased chance to Poison", ["type"] = "explicit", }, - [519] = { + [520] = { ["id"] = "explicit.stat_293638271", ["text"] = "#% increased chance to Shock", ["type"] = "explicit", }, - [520] = { + [521] = { ["id"] = "explicit.stat_1710200734", ["text"] = "#% increased chance to find Desecrated Currency", ["type"] = "explicit", }, - [521] = { + [522] = { ["id"] = "explicit.stat_1772247089", ["text"] = "#% increased chance to inflict Ailments", ["type"] = "explicit", }, - [522] = { + [523] = { ["id"] = "explicit.stat_2760643568", ["text"] = "#% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", ["type"] = "explicit", }, - [523] = { + [524] = { ["id"] = "explicit.stat_242637938", ["text"] = "#% increased chance to inflict Bleeding", ["type"] = "explicit", }, - [524] = { + [525] = { ["id"] = "explicit.stat_3962960008", ["text"] = "#% increased chance to manifest additional Unique Boss Shards within Delirium Fog", ["type"] = "explicit", }, - [525] = { + [526] = { ["id"] = "explicit.stat_2103650854", ["text"] = "#% increased effect of Arcane Surge on you", ["type"] = "explicit", }, - [526] = { + [527] = { ["id"] = "explicit.stat_1180552088", ["text"] = "#% increased effect of Archon Buffs on you", ["type"] = "explicit", }, - [527] = { + [528] = { ["id"] = "explicit.stat_2081918629", ["text"] = "#% increased effect of Socketed Augment Items", ["type"] = "explicit", }, - [528] = { + [529] = { ["id"] = "explicit.stat_4065505214", ["text"] = "#% increased effect of Socketed Soul Cores", ["type"] = "explicit", }, - [529] = { + [530] = { ["id"] = "explicit.stat_878697053", ["text"] = "#% increased maximum Divinity", ["type"] = "explicit", }, - [530] = { + [531] = { ["id"] = "explicit.stat_2189090852", ["text"] = "#% increased maximum Divinity per Corrupted Item Equipped", ["type"] = "explicit", }, - [531] = { + [532] = { ["id"] = "explicit.stat_2482852589", ["text"] = "#% increased maximum Energy Shield", ["type"] = "explicit", }, - [532] = { + [533] = { ["id"] = "explicit.stat_983749596", ["text"] = "#% increased maximum Life", ["type"] = "explicit", }, - [533] = { + [534] = { ["id"] = "explicit.stat_2748665614", ["text"] = "#% increased maximum Mana", ["type"] = "explicit", }, - [534] = { + [535] = { ["id"] = "explicit.stat_4273473110", ["text"] = "#% increased maximum Runic Ward", ["type"] = "explicit", }, - [535] = { + [536] = { ["id"] = "explicit.stat_2624927319", ["text"] = "#% increased number of Monster Packs", ["type"] = "explicit", }, - [536] = { + [537] = { ["id"] = "explicit.stat_2624927319", ["text"] = "#% increased number of Monster Packs in your Maps", ["type"] = "explicit", }, - [537] = { + [538] = { ["id"] = "explicit.stat_2694800111", ["text"] = "#% increased number of Rare Expedition Monsters", ["type"] = "explicit", }, - [538] = { + [539] = { ["id"] = "explicit.stat_2694800111", ["text"] = "#% increased number of Rare Expedition Monsters in Area", ["type"] = "explicit", }, - [539] = { + [540] = { ["id"] = "explicit.stat_1640965354", ["text"] = "#% increased number of Runic Monster Markers", ["type"] = "explicit", }, - [540] = { + [541] = { ["id"] = "explicit.stat_4219583418", ["text"] = "#% increased quantity of Artifacts dropped by Monsters", ["type"] = "explicit", }, - [541] = { + [542] = { ["id"] = "explicit.stat_4219583418", ["text"] = "#% increased quantity of Artifacts dropped by Monsters in your Maps", ["type"] = "explicit", }, - [542] = { + [543] = { ["id"] = "explicit.stat_2363593824", ["text"] = "#% increased speed of Recoup Effects", ["type"] = "explicit", }, - [543] = { + [544] = { ["id"] = "explicit.stat_1803659985", ["text"] = "#% less Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [544] = { + [545] = { ["id"] = "explicit.stat_1274947822", ["text"] = "#% less Damage", ["type"] = "explicit", }, - [545] = { + [546] = { ["id"] = "explicit.stat_67637087", ["text"] = "#% less Damage taken if you have not been Hit Recently", ["type"] = "explicit", }, - [546] = { + [547] = { ["id"] = "explicit.stat_3749630567", ["text"] = "#% less Flask Charges used", ["type"] = "explicit", }, - [547] = { + [548] = { ["id"] = "explicit.stat_2146799605", ["text"] = "#% less Movement Speed", ["type"] = "explicit", }, - [548] = { + [549] = { ["id"] = "explicit.stat_3156445245", ["text"] = "#% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", ["type"] = "explicit", }, - [549] = { + [550] = { ["id"] = "explicit.stat_537850431", ["text"] = "#% less Spirit", ["type"] = "explicit", }, - [550] = { + [551] = { ["id"] = "explicit.stat_3796523155", ["text"] = "#% less effect of Curses on Monsters", ["type"] = "explicit", }, - [551] = { + [552] = { ["id"] = "explicit.stat_1633735772", ["text"] = "#% less maximum Life", ["type"] = "explicit", }, - [552] = { + [553] = { ["id"] = "explicit.stat_3045154261", ["text"] = "#% less maximum Mana", ["type"] = "explicit", }, - [553] = { + [554] = { ["id"] = "explicit.stat_2423248184", ["text"] = "#% less minimum Physical Attack Damage", ["type"] = "explicit", }, - [554] = { + [555] = { ["id"] = "explicit.stat_3376488707", ["text"] = "#% maximum Player Resistances", ["type"] = "explicit", }, - [555] = { + [556] = { ["id"] = "explicit.stat_412462523", ["text"] = "#% more Attack Damage", ["type"] = "explicit", }, - [556] = { + [557] = { ["id"] = "explicit.stat_2939415499", ["text"] = "#% more Curse Magnitudes", ["type"] = "explicit", }, - [557] = { + [558] = { ["id"] = "explicit.stat_1972661424", ["text"] = "#% more Life Flask Recovery", ["type"] = "explicit", }, - [558] = { + [559] = { ["id"] = "explicit.stat_1726753705", ["text"] = "#% more Life Recovered", ["type"] = "explicit", }, - [559] = { + [560] = { ["id"] = "explicit.stat_95249895", ["text"] = "#% more Monster Life", ["type"] = "explicit", }, - [560] = { + [561] = { ["id"] = "explicit.stat_886931978", ["text"] = "#% more Recovery if used while on Low Life", ["type"] = "explicit", }, - [561] = { + [562] = { ["id"] = "explicit.stat_3276224428", ["text"] = "#% more Recovery if used while on Low Mana", ["type"] = "explicit", }, - [562] = { + [563] = { ["id"] = "explicit.stat_3735888493", ["text"] = "#% more maximum Physical Attack Damage", ["type"] = "explicit", }, - [563] = { + [564] = { ["id"] = "explicit.stat_3972229254", ["text"] = "#% of Armour also applies to Chaos Damage", ["type"] = "explicit", }, - [564] = { + [565] = { ["id"] = "explicit.stat_3362812763", ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "explicit", }, - [565] = { + [566] = { ["id"] = "explicit.stat_2678930256", ["text"] = "#% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", ["type"] = "explicit", }, - [566] = { + [567] = { ["id"] = "explicit.stat_2369960685", ["text"] = "#% of Charges consumed by used Charms are granted to your Life Flasks", ["type"] = "explicit", }, - [567] = { + [568] = { ["id"] = "explicit.stat_2020463573", ["text"] = "#% of Charges consumed by used Life Flasks are granted to your Charms", ["type"] = "explicit", }, - [568] = { + [569] = { ["id"] = "explicit.stat_1686824704", ["text"] = "#% of Cold Damage Converted to Lightning Damage", ["type"] = "explicit", }, - [569] = { + [570] = { ["id"] = "explicit.stat_3679418014", ["text"] = "#% of Cold Damage taken Recouped as Life", ["type"] = "explicit", }, - [570] = { + [571] = { ["id"] = "explicit.stat_2342939473", ["text"] = "#% of Current Energy Shield also grants Elemental Damage reduction", ["type"] = "explicit", }, - [571] = { + [572] = { ["id"] = "explicit.stat_2319832234", ["text"] = "#% of Damage Taken Recouped as Life, Mana and Energy Shield", ["type"] = "explicit", }, - [572] = { + [573] = { ["id"] = "explicit.stat_3918757604", ["text"] = "#% of Damage from Deflected Hits is taken from Damageable Companion's Life before you", ["type"] = "explicit", }, - [573] = { + [574] = { ["id"] = "explicit.stat_1150343007", ["text"] = "#% of Damage from Hits is taken from your Damageable Companion's Life before you", ["type"] = "explicit", }, - [574] = { + [575] = { ["id"] = "explicit.stat_54812069", ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", ["type"] = "explicit", }, - [575] = { + [576] = { ["id"] = "explicit.stat_458438597", ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "explicit", }, - [576] = { + [577] = { ["id"] = "explicit.stat_679019978", ["text"] = "#% of Damage is taken from Mana before Life while not on Low Mana", ["type"] = "explicit", }, - [577] = { + [578] = { ["id"] = "explicit.stat_1444556985", ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "explicit", }, - [578] = { + [579] = { ["id"] = "explicit.stat_472520716", ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "explicit", }, - [579] = { + [580] = { ["id"] = "explicit.stat_2448633171", ["text"] = "#% of Damage taken bypasses Energy Shield", ["type"] = "explicit", }, - [580] = { + [581] = { ["id"] = "explicit.stat_3598623697", ["text"] = "#% of Damage taken during effect Recouped as Life", ["type"] = "explicit", }, - [581] = { + [582] = { ["id"] = "explicit.stat_3471443885", ["text"] = "#% of Damage taken from Deflected Hits Recouped as Life", ["type"] = "explicit", }, - [582] = { + [583] = { ["id"] = "explicit.stat_1311130924", ["text"] = "#% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", ["type"] = "explicit", }, - [583] = { + [584] = { ["id"] = "explicit.stat_2295988214", ["text"] = "#% of Elemental Damage Converted to Chaos Damage", ["type"] = "explicit", }, - [584] = { + [585] = { ["id"] = "explicit.stat_210092264", ["text"] = "#% of Elemental Damage Converted to Cold Damage", ["type"] = "explicit", }, - [585] = { + [586] = { ["id"] = "explicit.stat_40154188", ["text"] = "#% of Elemental Damage Converted to Fire Damage", ["type"] = "explicit", }, - [586] = { + [587] = { ["id"] = "explicit.stat_289540902", ["text"] = "#% of Elemental Damage Converted to Lightning Damage", ["type"] = "explicit", }, - [587] = { + [588] = { ["id"] = "explicit.stat_2896115339", ["text"] = "#% of Elemental Damage taken Recouped as Energy Shield", ["type"] = "explicit", }, - [588] = { + [589] = { ["id"] = "explicit.stat_1175213674", ["text"] = "#% of Elemental damage from Hits taken as Chaos damage", ["type"] = "explicit", }, - [589] = { + [590] = { ["id"] = "explicit.stat_3503160529", ["text"] = "#% of Fire Damage Converted to Cold Damage", ["type"] = "explicit", }, - [590] = { + [591] = { ["id"] = "explicit.stat_3205239847", ["text"] = "#% of Fire Damage from Hits taken as Physical Damage", ["type"] = "explicit", }, - [591] = { + [592] = { ["id"] = "explicit.stat_1742651309", ["text"] = "#% of Fire Damage taken Recouped as Life", ["type"] = "explicit", }, - [592] = { + [593] = { ["id"] = "explicit.stat_2772033465", ["text"] = "#% of Fire damage Converted to Lightning damage", ["type"] = "explicit", }, - [593] = { + [594] = { ["id"] = "explicit.stat_4108426433", ["text"] = "#% of Fire damage taken as Cold damage", ["type"] = "explicit", }, - [594] = { + [595] = { ["id"] = "explicit.stat_3561837752", ["text"] = "#% of Leech is Instant", ["type"] = "explicit", }, - [595] = { + [596] = { ["id"] = "explicit.stat_3658708511", ["text"] = "#% of Life Leeched from targets affected by Abyssal Wasting is Instant", ["type"] = "explicit", }, - [596] = { + [597] = { ["id"] = "explicit.stat_2109189637", ["text"] = "#% of Lightning Damage Converted to Chaos Damage", ["type"] = "explicit", }, - [597] = { + [598] = { ["id"] = "explicit.stat_3627052716", ["text"] = "#% of Lightning Damage Converted to Cold Damage", ["type"] = "explicit", }, - [598] = { + [599] = { ["id"] = "explicit.stat_2970621759", ["text"] = "#% of Lightning Damage taken Recouped as Life", ["type"] = "explicit", }, - [599] = { + [600] = { ["id"] = "explicit.stat_3198708642", ["text"] = "#% of Lightning damage taken as Cold damage", ["type"] = "explicit", }, - [600] = { + [601] = { ["id"] = "explicit.stat_546201303", ["text"] = "#% of Mana Leeched from targets affected by Abyssal Wasting is Instant", ["type"] = "explicit", }, - [601] = { + [602] = { ["id"] = "explicit.stat_2458962764", ["text"] = "#% of Maximum Life Converted to Energy Shield", ["type"] = "explicit", }, - [602] = { + [603] = { ["id"] = "explicit.stat_1092987622", ["text"] = "#% of Melee Physical Damage taken reflected to Attacker", ["type"] = "explicit", }, - [603] = { + [604] = { ["id"] = "explicit.stat_2089152298", ["text"] = "#% of Parry Physical Damage Converted to Cold Damage", ["type"] = "explicit", }, - [604] = { + [605] = { ["id"] = "explicit.stat_4129825612", ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", ["type"] = "explicit", }, - [605] = { + [606] = { ["id"] = "explicit.stat_1374654984", ["text"] = "#% of Physical Damage prevented Recouped as Life", ["type"] = "explicit", }, - [606] = { + [607] = { ["id"] = "explicit.stat_1004468512", ["text"] = "#% of Physical Damage taken as Fire Damage", ["type"] = "explicit", }, - [607] = { + [608] = { ["id"] = "explicit.stat_321970274", ["text"] = "#% of Physical Damage taken as Lightning while your Shield is raised", ["type"] = "explicit", }, - [608] = { + [609] = { ["id"] = "explicit.stat_70760090", ["text"] = "#% of Physical damage dealt by your Hits causes Blood Loss", ["type"] = "explicit", }, - [609] = { + [610] = { ["id"] = "explicit.stat_425242359", ["text"] = "#% of Physical damage from Hits taken as Lightning damage", ["type"] = "explicit", }, - [610] = { + [611] = { ["id"] = "explicit.stat_2503377690", ["text"] = "#% of Recovery applied Instantly", ["type"] = "explicit", }, - [611] = { + [612] = { ["id"] = "explicit.stat_2480498143", ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "explicit", }, - [612] = { + [613] = { ["id"] = "explicit.stat_782941180", ["text"] = "#% of Spell Damage Leeched as Life", ["type"] = "explicit", }, - [613] = { + [614] = { ["id"] = "explicit.stat_3544050945", ["text"] = "#% of Spell Mana Cost Converted to Life Cost", ["type"] = "explicit", }, - [614] = { + [615] = { ["id"] = "explicit.stat_1753977518", ["text"] = "#% of Thorns Damage Leeched as Life", ["type"] = "explicit", }, - [615] = { + [616] = { ["id"] = "explicit.stat_3190121041", ["text"] = "#% of Volatility Physical Damage Taken as Cold Damage", ["type"] = "explicit", }, - [616] = { + [617] = { ["id"] = "explicit.stat_3175722882", ["text"] = "#% of maximum Life Regenerated per second per Fragile Regrowth", ["type"] = "explicit", }, - [617] = { + [618] = { ["id"] = "explicit.stat_4287671144", ["text"] = "#% of your Base Life Regeneration is granted to Allies in your Presence", ["type"] = "explicit", }, - [618] = { + [619] = { ["id"] = "explicit.stat_1570770415", ["text"] = "#% reduced Charm Charges used", ["type"] = "explicit", }, - [619] = { + [620] = { ["id"] = "explicit.stat_1874553720", ["text"] = "#% reduced Chill Duration on you", ["type"] = "explicit", }, - [620] = { + [621] = { ["id"] = "explicit.stat_1478653032", ["text"] = "#% reduced Effect of Chill on you", ["type"] = "explicit", }, - [621] = { + [622] = { ["id"] = "explicit.stat_644456512", ["text"] = "#% reduced Flask Charges used", ["type"] = "explicit", }, - [622] = { + [623] = { ["id"] = "explicit.stat_2160282525", ["text"] = "#% reduced Freeze Duration on you", ["type"] = "explicit", }, - [623] = { + [624] = { ["id"] = "explicit.stat_986397080", ["text"] = "#% reduced Ignite Duration on you", ["type"] = "explicit", }, - [624] = { + [625] = { ["id"] = "explicit.stat_1269971728", ["text"] = "#% reduced Magnitude of Ignite on you", ["type"] = "explicit", }, - [625] = { + [626] = { ["id"] = "explicit.stat_474294393", ["text"] = "#% reduced Mana Cost of Skills", ["type"] = "explicit", }, - [626] = { + [627] = { ["id"] = "explicit.stat_99927264", ["text"] = "#% reduced Shock duration on you", ["type"] = "explicit", }, - [627] = { + [628] = { ["id"] = "explicit.stat_3839676903", ["text"] = "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", ["type"] = "explicit", }, - [628] = { + [629] = { ["id"] = "explicit.stat_3407849389", ["text"] = "#% reduced effect of Curses on you", ["type"] = "explicit", }, - [629] = { + [630] = { ["id"] = "explicit.stat_3801067695", ["text"] = "#% reduced effect of Shock on you", ["type"] = "explicit", }, - [630] = { + [631] = { ["id"] = "explicit.stat_3122852693", ["text"] = "#% to Block Chance while holding a Focus", ["type"] = "explicit", }, - [631] = { + [632] = { ["id"] = "explicit.stat_1702195217", ["text"] = "#% to Block chance", ["type"] = "explicit", }, - [632] = { + [633] = { ["id"] = "explicit.stat_2923486259", ["text"] = "#% to Chaos Resistance", ["type"] = "explicit", }, - [633] = { + [634] = { ["id"] = "explicit.stat_1123023256", ["text"] = "#% to Chaos Resistance per Socket filled", ["type"] = "explicit", }, - [634] = { + [635] = { ["id"] = "explicit.stat_4220027924", ["text"] = "#% to Cold Resistance", ["type"] = "explicit", }, - [635] = { + [636] = { ["id"] = "explicit.stat_3393628375", ["text"] = "#% to Cold and Chaos Resistances", ["type"] = "explicit", }, - [636] = { + [637] = { ["id"] = "explicit.stat_4277795662", ["text"] = "#% to Cold and Lightning Resistances", ["type"] = "explicit", }, - [637] = { + [638] = { ["id"] = "explicit.stat_2381897042", ["text"] = "#% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", ["type"] = "explicit", }, - [638] = { + [639] = { ["id"] = "explicit.stat_2694482655", ["text"] = "#% to Critical Damage Bonus", ["type"] = "explicit", }, - [639] = { + [640] = { ["id"] = "explicit.stat_518292764", ["text"] = "#% to Critical Hit Chance", ["type"] = "explicit", }, - [640] = { + [641] = { ["id"] = "explicit.stat_3372524247", ["text"] = "#% to Fire Resistance", ["type"] = "explicit", }, - [641] = { + [642] = { ["id"] = "explicit.stat_38301299", ["text"] = "#% to Fire Resistance while on Low Life", ["type"] = "explicit", }, - [642] = { + [643] = { ["id"] = "explicit.stat_3399401168", ["text"] = "#% to Fire Spell Critical Hit Chance", ["type"] = "explicit", }, - [643] = { + [644] = { ["id"] = "explicit.stat_378817135", ["text"] = "#% to Fire and Chaos Resistances", ["type"] = "explicit", }, - [644] = { + [645] = { ["id"] = "explicit.stat_2915988346", ["text"] = "#% to Fire and Cold Resistances", ["type"] = "explicit", }, - [645] = { + [646] = { ["id"] = "explicit.stat_4032948616", ["text"] = "#% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", ["type"] = "explicit", }, - [646] = { + [647] = { ["id"] = "explicit.stat_3441501978", ["text"] = "#% to Fire and Lightning Resistances", ["type"] = "explicit", }, - [647] = { + [648] = { ["id"] = "explicit.stat_3753008264", ["text"] = "#% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", ["type"] = "explicit", }, - [648] = { + [649] = { ["id"] = "explicit.stat_1671376347", ["text"] = "#% to Lightning Resistance", ["type"] = "explicit", }, - [649] = { + [650] = { ["id"] = "explicit.stat_3465022881", ["text"] = "#% to Lightning and Chaos Resistances", ["type"] = "explicit", }, - [650] = { + [651] = { ["id"] = "explicit.stat_1301765461", ["text"] = "#% to Maximum Chaos Resistance", ["type"] = "explicit", }, - [651] = { + [652] = { ["id"] = "explicit.stat_3676141501", ["text"] = "#% to Maximum Cold Resistance", ["type"] = "explicit", }, - [652] = { + [653] = { ["id"] = "explicit.stat_4095671657", ["text"] = "#% to Maximum Fire Resistance", ["type"] = "explicit", }, - [653] = { + [654] = { ["id"] = "explicit.stat_1011760251", ["text"] = "#% to Maximum Lightning Resistance", ["type"] = "explicit", }, - [654] = { + [655] = { ["id"] = "explicit.stat_2039822488", ["text"] = "#% to Maximum Quality", ["type"] = "explicit", }, - [655] = { + [656] = { ["id"] = "explicit.stat_3655769732", ["text"] = "#% to Quality of all Skills", ["type"] = "explicit", }, - [656] = { + [657] = { ["id"] = "explicit.stat_2715190555", ["text"] = "#% to Thorns Critical Hit Chance", ["type"] = "explicit", }, - [657] = { + [658] = { ["id"] = "explicit.stat_3613173483", ["text"] = "#% to Unarmed Melee Attack Critical Hit Chance", ["type"] = "explicit", }, - [658] = { + [659] = { ["id"] = "explicit.stat_2901986750", ["text"] = "#% to all Elemental Resistances", ["type"] = "explicit", }, - [659] = { + [660] = { ["id"] = "explicit.stat_2593644209", ["text"] = "#% to all Elemental Resistances per Power Charge", ["type"] = "explicit", }, - [660] = { + [661] = { ["id"] = "explicit.stat_242161915", ["text"] = "#% to all Elemental Resistances per socketed Grand Spectrum", ["type"] = "explicit", }, - [661] = { + [662] = { ["id"] = "explicit.stat_1978899297", ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "explicit", }, - [662] = { + [663] = { ["id"] = "explicit.stat_569299859", ["text"] = "#% to all maximum Resistances", ["type"] = "explicit", }, - [663] = { + [664] = { ["id"] = "explicit.stat_933355817", ["text"] = "#% to gain Archon of Undeath when you create an Offering", ["type"] = "explicit", }, - [664] = { + [665] = { ["id"] = "explicit.stat_480796730", ["text"] = "#% to maximum Block chance", ["type"] = "explicit", }, - [665] = { + [666] = { ["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", }, - [666] = { + [667] = { ["id"] = "explicit.stat_3302775221", ["text"] = "+# maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", ["type"] = "explicit", }, - [667] = { + [668] = { ["id"] = "explicit.stat_1484026495", ["text"] = "+# maximum stacks of Puppet Master", ["type"] = "explicit", }, - [668] = { + [669] = { ["id"] = "explicit.stat_448592698|8", ["text"] = "+# to Level of all Alchemist's Boon Skills", ["type"] = "explicit", }, - [669] = { + [670] = { ["id"] = "explicit.stat_448592698|208", ["text"] = "+# to Level of all Ancestral Cry Skills", ["type"] = "explicit", }, - [670] = { + [671] = { ["id"] = "explicit.stat_448592698|21", ["text"] = "+# to Level of all Ancestral Warrior Totem Skills", ["type"] = "explicit", }, - [671] = { + [672] = { ["id"] = "explicit.stat_448592698|98", ["text"] = "+# to Level of all Arc Skills", ["type"] = "explicit", }, - [672] = { + [673] = { ["id"] = "explicit.stat_448592698|11", ["text"] = "+# to Level of all Archmage Skills", ["type"] = "explicit", }, - [673] = { + [674] = { ["id"] = "explicit.stat_448592698|119", ["text"] = "+# to Level of all Arctic Armour Skills", ["type"] = "explicit", }, - [674] = { + [675] = { ["id"] = "explicit.stat_448592698|237", ["text"] = "+# to Level of all Arctic Howl Skills", ["type"] = "explicit", }, - [675] = { + [676] = { ["id"] = "explicit.stat_448592698|135", ["text"] = "+# to Level of all Armour Breaker Skills", ["type"] = "explicit", }, - [676] = { + [677] = { ["id"] = "explicit.stat_448592698|174", ["text"] = "+# to Level of all Armour Piercing Rounds Skills", ["type"] = "explicit", }, - [677] = { + [678] = { ["id"] = "explicit.stat_448592698|86", ["text"] = "+# to Level of all Artillery Ballista Skills", ["type"] = "explicit", }, - [678] = { + [679] = { ["id"] = "explicit.stat_448592698|5", ["text"] = "+# to Level of all Attrition Skills", ["type"] = "explicit", }, - [679] = { + [680] = { ["id"] = "explicit.stat_448592698|30", ["text"] = "+# to Level of all Ball Lightning Skills", ["type"] = "explicit", }, - [680] = { + [681] = { ["id"] = "explicit.stat_448592698|242", ["text"] = "+# to Level of all Barkskin Skills", ["type"] = "explicit", }, - [681] = { + [682] = { ["id"] = "explicit.stat_448592698|100", ["text"] = "+# to Level of all Barrage Skills", ["type"] = "explicit", }, - [682] = { + [683] = { ["id"] = "explicit.stat_448592698|67", ["text"] = "+# to Level of all Barrier Invocation Skills", ["type"] = "explicit", }, - [683] = { + [684] = { ["id"] = "explicit.stat_448592698|12", ["text"] = "+# to Level of all Berserk Skills", ["type"] = "explicit", }, - [684] = { + [685] = { ["id"] = "explicit.stat_448592698|63", ["text"] = "+# to Level of all Blasphemy Skills", ["type"] = "explicit", }, - [685] = { + [686] = { ["id"] = "explicit.stat_448592698|3", ["text"] = "+# to Level of all Blink Skills", ["type"] = "explicit", }, - [686] = { + [687] = { ["id"] = "explicit.stat_448592698|178", ["text"] = "+# to Level of all Blood Hunt Skills", ["type"] = "explicit", }, - [687] = { + [688] = { ["id"] = "explicit.stat_448592698|192", ["text"] = "+# to Level of all Bloodhound's Mark Skills", ["type"] = "explicit", }, - [688] = { + [689] = { ["id"] = "explicit.stat_448592698|145", ["text"] = "+# to Level of all Bone Cage Skills", ["type"] = "explicit", }, - [689] = { + [690] = { ["id"] = "explicit.stat_448592698|31", ["text"] = "+# to Level of all Bone Offering Skills", ["type"] = "explicit", }, - [690] = { + [691] = { ["id"] = "explicit.stat_448592698|163", ["text"] = "+# to Level of all Boneshatter Skills", ["type"] = "explicit", }, - [691] = { + [692] = { ["id"] = "explicit.stat_448592698|107", ["text"] = "+# to Level of all Bonestorm Skills", ["type"] = "explicit", }, - [692] = { + [693] = { ["id"] = "explicit.stat_448592698|238", ["text"] = "+# to Level of all Briarpatch Skills", ["type"] = "explicit", }, - [693] = { + [694] = { ["id"] = "explicit.stat_448592698|1", ["text"] = "+# to Level of all Cast on Critical Skills", ["type"] = "explicit", }, - [694] = { + [695] = { ["id"] = "explicit.stat_448592698|2", ["text"] = "+# to Level of all Cast on Dodge Skills", ["type"] = "explicit", }, - [695] = { + [696] = { ["id"] = "explicit.stat_448592698|215", ["text"] = "+# to Level of all Cast on Elemental Ailment Skills", ["type"] = "explicit", }, - [696] = { + [697] = { ["id"] = "explicit.stat_448592698|65", ["text"] = "+# to Level of all Cast on Freeze Skills", ["type"] = "explicit", }, - [697] = { + [698] = { ["id"] = "explicit.stat_448592698|66", ["text"] = "+# to Level of all Cast on Ignite Skills", ["type"] = "explicit", }, - [698] = { + [699] = { ["id"] = "explicit.stat_448592698|69", ["text"] = "+# to Level of all Cast on Minion Death Skills", ["type"] = "explicit", }, - [699] = { + [700] = { ["id"] = "explicit.stat_448592698|64", ["text"] = "+# to Level of all Cast on Shock Skills", ["type"] = "explicit", }, - [700] = { + [701] = { ["id"] = "explicit.stat_448592698|7", ["text"] = "+# to Level of all Charge Regulation Skills", ["type"] = "explicit", }, - [701] = { + [702] = { ["id"] = "explicit.stat_448592698|55", ["text"] = "+# to Level of all Charged Staff Skills", ["type"] = "explicit", }, - [702] = { + [703] = { ["id"] = "explicit.stat_448592698|26", ["text"] = "+# to Level of all Cluster Grenade Skills", ["type"] = "explicit", }, - [703] = { + [704] = { ["id"] = "explicit.stat_448592698|76", ["text"] = "+# to Level of all Combat Frenzy Skills", ["type"] = "explicit", }, - [704] = { + [705] = { ["id"] = "explicit.stat_448592698|37", ["text"] = "+# to Level of all Comet Skills", ["type"] = "explicit", }, - [705] = { + [706] = { ["id"] = "explicit.stat_448592698|82", ["text"] = "+# to Level of all Conductivity Skills", ["type"] = "explicit", }, - [706] = { + [707] = { ["id"] = "explicit.stat_448592698|159", ["text"] = "+# to Level of all Contagion Skills", ["type"] = "explicit", }, - [707] = { + [708] = { ["id"] = "explicit.stat_448592698|202", ["text"] = "+# to Level of all Convalescence Skills", ["type"] = "explicit", }, - [708] = { + [709] = { ["id"] = "explicit.stat_448592698|232", ["text"] = "+# to Level of all Cross Slash Skills", ["type"] = "explicit", }, - [709] = { + [710] = { ["id"] = "explicit.stat_448592698|203", ["text"] = "+# to Level of all Cull The Weak Skills", ["type"] = "explicit", }, - [710] = { + [711] = { ["id"] = "explicit.stat_448592698|58", ["text"] = "+# to Level of all Dark Effigy Skills", ["type"] = "explicit", }, - [711] = { + [712] = { ["id"] = "explicit.stat_448592698|70", ["text"] = "+# to Level of all Defiance Banner Skills", ["type"] = "explicit", }, - [712] = { + [713] = { ["id"] = "explicit.stat_448592698|46", ["text"] = "+# to Level of all Despair Skills", ["type"] = "explicit", }, - [713] = { + [714] = { ["id"] = "explicit.stat_448592698|78", ["text"] = "+# to Level of all Detonate Dead Skills", ["type"] = "explicit", }, - [714] = { + [715] = { ["id"] = "explicit.stat_448592698|56", ["text"] = "+# to Level of all Detonating Arrow Skills", ["type"] = "explicit", }, - [715] = { + [716] = { ["id"] = "explicit.stat_448592698|234", ["text"] = "+# to Level of all Devour Skills", ["type"] = "explicit", }, - [716] = { + [717] = { ["id"] = "explicit.stat_448592698|177", ["text"] = "+# to Level of all Disengage Skills", ["type"] = "explicit", }, - [717] = { + [718] = { ["id"] = "explicit.stat_448592698|4", ["text"] = "+# to Level of all Dread Banner Skills", ["type"] = "explicit", }, - [718] = { + [719] = { ["id"] = "explicit.stat_448592698|158", ["text"] = "+# to Level of all Earthquake Skills", ["type"] = "explicit", }, - [719] = { + [720] = { ["id"] = "explicit.stat_448592698|84", ["text"] = "+# to Level of all Earthshatter Skills", ["type"] = "explicit", }, - [720] = { + [721] = { ["id"] = "explicit.stat_448592698|110", ["text"] = "+# to Level of all Electrocuting Arrow Skills", ["type"] = "explicit", }, - [721] = { + [722] = { ["id"] = "explicit.stat_448592698|6", ["text"] = "+# to Level of all Elemental Conflux Skills", ["type"] = "explicit", }, - [722] = { + [723] = { ["id"] = "explicit.stat_448592698|72", ["text"] = "+# to Level of all Elemental Invocation Skills", ["type"] = "explicit", }, - [723] = { + [724] = { ["id"] = "explicit.stat_448592698|196", ["text"] = "+# to Level of all Elemental Sundering Skills", ["type"] = "explicit", }, - [724] = { + [725] = { ["id"] = "explicit.stat_448592698|216", ["text"] = "+# to Level of all Elemental Weakness Skills", ["type"] = "explicit", }, - [725] = { + [726] = { ["id"] = "explicit.stat_448592698|149", ["text"] = "+# to Level of all Ember Fusillade Skills", ["type"] = "explicit", }, - [726] = { + [727] = { ["id"] = "explicit.stat_448592698|43", ["text"] = "+# to Level of all Emergency Reload Skills", ["type"] = "explicit", }, - [727] = { + [728] = { ["id"] = "explicit.stat_448592698|134", ["text"] = "+# to Level of all Enfeeble Skills", ["type"] = "explicit", }, - [728] = { + [729] = { ["id"] = "explicit.stat_448592698|230", ["text"] = "+# to Level of all Entangle Skills", ["type"] = "explicit", }, - [729] = { + [730] = { ["id"] = "explicit.stat_448592698|165", ["text"] = "+# to Level of all Escape Shot Skills", ["type"] = "explicit", }, - [730] = { + [731] = { ["id"] = "explicit.stat_448592698|139", ["text"] = "+# to Level of all Essence Drain Skills", ["type"] = "explicit", }, - [731] = { + [732] = { ["id"] = "explicit.stat_448592698|239", ["text"] = "+# to Level of all Eternal Rage Skills", ["type"] = "explicit", }, - [732] = { + [733] = { ["id"] = "explicit.stat_448592698|168", ["text"] = "+# to Level of all Explosive Grenade Skills", ["type"] = "explicit", }, - [733] = { + [734] = { ["id"] = "explicit.stat_448592698|92", ["text"] = "+# to Level of all Explosive Shot Skills", ["type"] = "explicit", }, - [734] = { + [735] = { ["id"] = "explicit.stat_448592698|184", ["text"] = "+# to Level of all Explosive Spear Skills", ["type"] = "explicit", }, - [735] = { + [736] = { ["id"] = "explicit.stat_448592698|18", ["text"] = "+# to Level of all Eye of Winter Skills", ["type"] = "explicit", }, - [736] = { + [737] = { ["id"] = "explicit.stat_448592698|155", ["text"] = "+# to Level of all Falling Thunder Skills", ["type"] = "explicit", }, - [737] = { + [738] = { ["id"] = "explicit.stat_448592698|189", ["text"] = "+# to Level of all Fangs of Frost Skills", ["type"] = "explicit", }, - [738] = { + [739] = { ["id"] = "explicit.stat_448592698|243", ["text"] = "+# to Level of all Feral Invocation Skills", ["type"] = "explicit", }, - [739] = { + [740] = { ["id"] = "explicit.stat_448592698|225", ["text"] = "+# to Level of all Ferocious Roar Skills", ["type"] = "explicit", }, - [740] = { + [741] = { ["id"] = "explicit.stat_448592698|57", ["text"] = "+# to Level of all Fireball Skills", ["type"] = "explicit", }, - [741] = { + [742] = { ["id"] = "explicit.stat_448592698|29", ["text"] = "+# to Level of all Firestorm Skills", ["type"] = "explicit", }, - [742] = { + [743] = { ["id"] = "explicit.stat_448592698|229", ["text"] = "+# to Level of all Flame Breath Skills", ["type"] = "explicit", }, - [743] = { + [744] = { ["id"] = "explicit.stat_448592698|162", ["text"] = "+# to Level of all Flame Wall Skills", ["type"] = "explicit", }, - [744] = { + [745] = { ["id"] = "explicit.stat_448592698|15", ["text"] = "+# to Level of all Flameblast Skills", ["type"] = "explicit", }, - [745] = { + [746] = { ["id"] = "explicit.stat_448592698|80", ["text"] = "+# to Level of all Flammability Skills", ["type"] = "explicit", }, - [746] = { + [747] = { ["id"] = "explicit.stat_448592698|142", ["text"] = "+# to Level of all Flash Grenade Skills", ["type"] = "explicit", }, - [747] = { + [748] = { ["id"] = "explicit.stat_448592698|13", ["text"] = "+# to Level of all Flicker Strike Skills", ["type"] = "explicit", }, - [748] = { + [749] = { ["id"] = "explicit.stat_448592698|207", ["text"] = "+# to Level of all Forge Hammer Skills", ["type"] = "explicit", }, - [749] = { + [750] = { ["id"] = "explicit.stat_448592698|206", ["text"] = "+# to Level of all Fortifying Cry Skills", ["type"] = "explicit", }, - [750] = { + [751] = { ["id"] = "explicit.stat_448592698|173", ["text"] = "+# to Level of all Fragmentation Rounds Skills", ["type"] = "explicit", }, - [751] = { + [752] = { ["id"] = "explicit.stat_448592698|95", ["text"] = "+# to Level of all Freezing Mark Skills", ["type"] = "explicit", }, - [752] = { + [753] = { ["id"] = "explicit.stat_448592698|118", ["text"] = "+# to Level of all Freezing Salvo Skills", ["type"] = "explicit", }, - [753] = { + [754] = { ["id"] = "explicit.stat_448592698|157", ["text"] = "+# to Level of all Frost Bomb Skills", ["type"] = "explicit", }, - [754] = { + [755] = { ["id"] = "explicit.stat_448592698|211", ["text"] = "+# to Level of all Frost Darts Skills", ["type"] = "explicit", }, - [755] = { + [756] = { ["id"] = "explicit.stat_448592698|45", ["text"] = "+# to Level of all Frost Wall Skills", ["type"] = "explicit", }, - [756] = { + [757] = { ["id"] = "explicit.stat_448592698|140", ["text"] = "+# to Level of all Frostbolt Skills", ["type"] = "explicit", }, - [757] = { + [758] = { ["id"] = "explicit.stat_448592698|169", ["text"] = "+# to Level of all Frozen Locus Skills", ["type"] = "explicit", }, - [758] = { + [759] = { ["id"] = "explicit.stat_448592698|224", ["text"] = "+# to Level of all Furious Slam Skills", ["type"] = "explicit", }, - [759] = { + [760] = { ["id"] = "explicit.stat_448592698|231", ["text"] = "+# to Level of all Fury of the Mountain Skills", ["type"] = "explicit", }, - [760] = { + [761] = { ["id"] = "explicit.stat_448592698|117", ["text"] = "+# to Level of all Galvanic Shards Skills", ["type"] = "explicit", }, - [761] = { + [762] = { ["id"] = "explicit.stat_448592698|89", ["text"] = "+# to Level of all Gas Arrow Skills", ["type"] = "explicit", }, - [762] = { + [763] = { ["id"] = "explicit.stat_448592698|104", ["text"] = "+# to Level of all Gas Grenade Skills", ["type"] = "explicit", }, - [763] = { + [764] = { ["id"] = "explicit.stat_448592698|28", ["text"] = "+# to Level of all Gathering Storm Skills", ["type"] = "explicit", }, - [764] = { + [765] = { ["id"] = "explicit.stat_448592698|124", ["text"] = "+# to Level of all Ghost Dance Skills", ["type"] = "explicit", }, - [765] = { + [766] = { ["id"] = "explicit.stat_448592698|93", ["text"] = "+# to Level of all Glacial Bolt Skills", ["type"] = "explicit", }, - [766] = { + [767] = { ["id"] = "explicit.stat_448592698|166", ["text"] = "+# to Level of all Glacial Cascade Skills", ["type"] = "explicit", }, - [767] = { + [768] = { ["id"] = "explicit.stat_448592698|182", ["text"] = "+# to Level of all Glacial Lance Skills", ["type"] = "explicit", }, - [768] = { + [769] = { ["id"] = "explicit.stat_448592698|129", ["text"] = "+# to Level of all Grim Feast Skills", ["type"] = "explicit", }, - [769] = { + [770] = { ["id"] = "explicit.stat_448592698|40", ["text"] = "+# to Level of all Hailstorm Rounds Skills", ["type"] = "explicit", }, - [770] = { + [771] = { ["id"] = "explicit.stat_448592698|23", ["text"] = "+# to Level of all Hammer of the Gods Skills", ["type"] = "explicit", }, - [771] = { + [772] = { ["id"] = "explicit.stat_448592698|62", ["text"] = "+# to Level of all Hand of Chayula Skills", ["type"] = "explicit", }, - [772] = { + [773] = { ["id"] = "explicit.stat_448592698|120", ["text"] = "+# to Level of all Herald of Ash Skills", ["type"] = "explicit", }, - [773] = { - ["id"] = "explicit.stat_448592698|199", - ["text"] = "+# to Level of all Herald of Blood Skills", - ["type"] = "explicit", - }, [774] = { ["id"] = "explicit.stat_448592698|186", ["text"] = "+# to Level of all Herald of Blood 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|121", ["text"] = "+# to Level of all Herald of Ice Skills", ["type"] = "explicit", }, - [776] = { + [777] = { ["id"] = "explicit.stat_448592698|75", ["text"] = "+# to Level of all Herald of Plague Skills", ["type"] = "explicit", }, - [777] = { + [778] = { ["id"] = "explicit.stat_448592698|122", ["text"] = "+# to Level of all Herald of Thunder Skills", ["type"] = "explicit", }, - [778] = { + [779] = { ["id"] = "explicit.stat_448592698|34", ["text"] = "+# to Level of all Hexblast Skills", ["type"] = "explicit", }, - [779] = { + [780] = { ["id"] = "explicit.stat_448592698|150", ["text"] = "+# to Level of all High Velocity Rounds Skills", ["type"] = "explicit", }, - [780] = { + [781] = { ["id"] = "explicit.stat_448592698|81", ["text"] = "+# to Level of all Hypothermia Skills", ["type"] = "explicit", }, - [781] = { + [782] = { ["id"] = "explicit.stat_448592698|153", ["text"] = "+# to Level of all Ice Nova Skills", ["type"] = "explicit", }, - [782] = { + [783] = { ["id"] = "explicit.stat_448592698|116", ["text"] = "+# to Level of all Ice Shards Skills", ["type"] = "explicit", }, - [783] = { + [784] = { ["id"] = "explicit.stat_448592698|61", ["text"] = "+# to Level of all Ice Shot Skills", ["type"] = "explicit", }, - [784] = { + [785] = { ["id"] = "explicit.stat_448592698|103", ["text"] = "+# to Level of all Ice Strike Skills", ["type"] = "explicit", }, - [785] = { + [786] = { ["id"] = "explicit.stat_448592698|210", ["text"] = "+# to Level of all Ice-Tipped Arrows Skills", ["type"] = "explicit", }, - [786] = { + [787] = { ["id"] = "explicit.stat_448592698|151", ["text"] = "+# to Level of all Incendiary Shot Skills", ["type"] = "explicit", }, - [787] = { + [788] = { ["id"] = "explicit.stat_448592698|99", ["text"] = "+# to Level of all Incinerate Skills", ["type"] = "explicit", }, - [788] = { + [789] = { ["id"] = "explicit.stat_448592698|137", ["text"] = "+# to Level of all Infernal Cry Skills", ["type"] = "explicit", }, - [789] = { + [790] = { ["id"] = "explicit.stat_448592698|205", ["text"] = "+# to Level of all Iron Ward Skills", ["type"] = "explicit", }, - [790] = { + [791] = { ["id"] = "explicit.stat_448592698|167", ["text"] = "+# to Level of all Killing Palm Skills", ["type"] = "explicit", }, - [791] = { + [792] = { ["id"] = "explicit.stat_448592698|77", ["text"] = "+# to Level of all Leap Slam Skills", ["type"] = "explicit", }, - [792] = { + [793] = { ["id"] = "explicit.stat_448592698|156", ["text"] = "+# to Level of all Lightning Arrow Skills", ["type"] = "explicit", }, - [793] = { + [794] = { ["id"] = "explicit.stat_448592698|19", ["text"] = "+# to Level of all Lightning Conduit Skills", ["type"] = "explicit", }, - [794] = { + [795] = { ["id"] = "explicit.stat_448592698|172", ["text"] = "+# to Level of all Lightning Rod Skills", ["type"] = "explicit", }, - [795] = { + [796] = { ["id"] = "explicit.stat_448592698|181", ["text"] = "+# to Level of all Lightning Spear Skills", ["type"] = "explicit", }, - [796] = { + [797] = { ["id"] = "explicit.stat_448592698|47", ["text"] = "+# to Level of all Lightning Warp Skills", ["type"] = "explicit", }, - [797] = { + [798] = { ["id"] = "explicit.stat_448592698|68", ["text"] = "+# to Level of all Lingering Illusion Skills", ["type"] = "explicit", }, - [798] = { + [799] = { ["id"] = "explicit.stat_448592698|244", ["text"] = "+# to Level of all Living Bomb Skills", ["type"] = "explicit", }, - [799] = { + [800] = { ["id"] = "explicit.stat_448592698|233", ["text"] = "+# to Level of all Lunar Assault Skills", ["type"] = "explicit", }, - [800] = { + [801] = { ["id"] = "explicit.stat_448592698|236", ["text"] = "+# to Level of all Lunar Blessing Skills", ["type"] = "explicit", }, - [801] = { + [802] = { ["id"] = "explicit.stat_448592698|126", ["text"] = "+# to Level of all Magma Barrier Skills", ["type"] = "explicit", }, - [802] = { + [803] = { ["id"] = "explicit.stat_448592698|27", ["text"] = "+# to Level of all Magnetic Salvo Skills", ["type"] = "explicit", }, - [803] = { + [804] = { ["id"] = "explicit.stat_448592698|125", ["text"] = "+# to Level of all Mana Remnants Skills", ["type"] = "explicit", }, - [804] = { + [805] = { ["id"] = "explicit.stat_448592698|53", ["text"] = "+# to Level of all Mana Tempest Skills", ["type"] = "explicit", }, - [805] = { + [806] = { ["id"] = "explicit.stat_448592698|60", ["text"] = "+# to Level of all Mantra of Destruction Skills", ["type"] = "explicit", }, - [806] = { + [807] = { ["id"] = "explicit.stat_448592698|213", ["text"] = "+# to Level of all Mirage Archer Skills", ["type"] = "explicit", }, - [807] = { + [808] = { ["id"] = "explicit.stat_448592698|114", ["text"] = "+# to Level of all Molten Blast Skills", ["type"] = "explicit", }, - [808] = { + [809] = { ["id"] = "explicit.stat_448592698|212", ["text"] = "+# to Level of all Mortar Cannon Skills", ["type"] = "explicit", }, - [809] = { + [810] = { ["id"] = "explicit.stat_448592698|228", ["text"] = "+# to Level of all Oil Barrage Skills", ["type"] = "explicit", }, - [810] = { + [811] = { ["id"] = "explicit.stat_448592698|54", ["text"] = "+# to Level of all Oil Grenade Skills", ["type"] = "explicit", }, - [811] = { + [812] = { ["id"] = "explicit.stat_448592698|138", ["text"] = "+# to Level of all Orb of Storms Skills", ["type"] = "explicit", }, - [812] = { + [813] = { ["id"] = "explicit.stat_448592698|74", ["text"] = "+# to Level of all Overwhelming Presence Skills", ["type"] = "explicit", }, - [813] = { + [814] = { ["id"] = "explicit.stat_448592698|105", ["text"] = "+# to Level of all Pain Offering Skills", ["type"] = "explicit", }, - [814] = { + [815] = { ["id"] = "explicit.stat_448592698|112", ["text"] = "+# to Level of all Perfect Strike Skills", ["type"] = "explicit", }, - [815] = { + [816] = { ["id"] = "explicit.stat_448592698|175", ["text"] = "+# to Level of all Permafrost Bolts Skills", ["type"] = "explicit", }, - [816] = { + [817] = { ["id"] = "explicit.stat_448592698|123", ["text"] = "+# to Level of all Plague Bearer Skills", ["type"] = "explicit", }, - [817] = { + [818] = { ["id"] = "explicit.stat_448592698|25", ["text"] = "+# to Level of all Plasma Blast Skills", ["type"] = "explicit", }, - [818] = { + [819] = { ["id"] = "explicit.stat_448592698|171", ["text"] = "+# to Level of all Poisonburst Arrow Skills", ["type"] = "explicit", }, - [819] = { + [820] = { ["id"] = "explicit.stat_448592698|221", ["text"] = "+# to Level of all Pounce Skills", ["type"] = "explicit", }, - [820] = { + [821] = { ["id"] = "explicit.stat_448592698|188", ["text"] = "+# to Level of all Primal Strikes Skills", ["type"] = "explicit", }, - [821] = { + [822] = { ["id"] = "explicit.stat_448592698|90", ["text"] = "+# to Level of all Profane Ritual Skills", ["type"] = "explicit", }, - [822] = { + [823] = { ["id"] = "explicit.stat_448592698|127", ["text"] = "+# to Level of all Raging Spirits Skills", ["type"] = "explicit", }, - [823] = { + [824] = { ["id"] = "explicit.stat_448592698|48", ["text"] = "+# to Level of all Rain of Arrows Skills", ["type"] = "explicit", }, - [824] = { + [825] = { ["id"] = "explicit.stat_448592698|97", ["text"] = "+# to Level of all Raise Zombie Skills", ["type"] = "explicit", }, - [825] = { + [826] = { ["id"] = "explicit.stat_448592698|191", ["text"] = "+# to Level of all Rake Skills", ["type"] = "explicit", }, - [826] = { + [827] = { ["id"] = "explicit.stat_448592698|222", ["text"] = "+# to Level of all Rampage Skills", ["type"] = "explicit", }, - [827] = { + [828] = { ["id"] = "explicit.stat_448592698|176", ["text"] = "+# to Level of all Rapid Assault Skills", ["type"] = "explicit", }, - [828] = { + [829] = { ["id"] = "explicit.stat_448592698|115", ["text"] = "+# to Level of all Rapid Shot Skills", ["type"] = "explicit", }, - [829] = { + [830] = { ["id"] = "explicit.stat_448592698|204", ["text"] = "+# to Level of all Ravenous Swarm Skills", ["type"] = "explicit", }, - [830] = { + [831] = { ["id"] = "explicit.stat_448592698|9", ["text"] = "+# to Level of all Reaper's Invocation Skills", ["type"] = "explicit", }, - [831] = { + [832] = { ["id"] = "explicit.stat_448592698|113", ["text"] = "+# to Level of all Resonating Shield Skills", ["type"] = "explicit", }, - [832] = { + [833] = { ["id"] = "explicit.stat_448592698|217", ["text"] = "+# to Level of all Rolling Magma Skills", ["type"] = "explicit", }, - [833] = { + [834] = { ["id"] = "explicit.stat_448592698|164", ["text"] = "+# to Level of all Rolling Slam Skills", ["type"] = "explicit", }, - [834] = { + [835] = { ["id"] = "explicit.stat_448592698|10", ["text"] = "+# to Level of all Sacrifice Skills", ["type"] = "explicit", }, - [835] = { + [836] = { ["id"] = "explicit.stat_448592698|240", ["text"] = "+# to Level of all Savage Fury Skills", ["type"] = "explicit", }, - [836] = { + [837] = { ["id"] = "explicit.stat_448592698|130", ["text"] = "+# to Level of all Scavenged Plating Skills", ["type"] = "explicit", }, - [837] = { + [838] = { ["id"] = "explicit.stat_448592698|33", ["text"] = "+# to Level of all Seismic Cry Skills", ["type"] = "explicit", }, - [838] = { + [839] = { ["id"] = "explicit.stat_448592698|73", ["text"] = "+# to Level of all Shard Scavenger Skills", ["type"] = "explicit", }, - [839] = { + [840] = { ["id"] = "explicit.stat_448592698|38", ["text"] = "+# to Level of all Shattering Palm Skills", ["type"] = "explicit", }, - [840] = { + [841] = { ["id"] = "explicit.stat_448592698|133", ["text"] = "+# to Level of all Shield Charge Skills", ["type"] = "explicit", }, - [841] = { + [842] = { ["id"] = "explicit.stat_448592698|91", ["text"] = "+# to Level of all Shield Wall Skills", ["type"] = "explicit", }, - [842] = { + [843] = { ["id"] = "explicit.stat_448592698|41", ["text"] = "+# to Level of all Shockburst Rounds Skills", ["type"] = "explicit", }, - [843] = { + [844] = { ["id"] = "explicit.stat_448592698|42", ["text"] = "+# to Level of all Shockchain Arrow Skills", ["type"] = "explicit", }, - [844] = { + [845] = { ["id"] = "explicit.stat_448592698|136", ["text"] = "+# to Level of all Shockwave Totem Skills", ["type"] = "explicit", }, - [845] = { + [846] = { ["id"] = "explicit.stat_448592698|51", ["text"] = "+# to Level of all Siege Ballista Skills", ["type"] = "explicit", }, - [846] = { + [847] = { ["id"] = "explicit.stat_448592698|24", ["text"] = "+# to Level of all Siege Cascade Skills", ["type"] = "explicit", }, - [847] = { + [848] = { ["id"] = "explicit.stat_448592698|214", ["text"] = "+# to Level of all Siphon Elements Skills", ["type"] = "explicit", }, - [848] = { + [849] = { ["id"] = "explicit.stat_448592698|88", ["text"] = "+# to Level of all Siphoning Strike Skills", ["type"] = "explicit", }, - [849] = { + [850] = { ["id"] = "explicit.stat_448592698|141", ["text"] = "+# to Level of all Skeletal Arsonist Skills", ["type"] = "explicit", }, - [850] = { + [851] = { ["id"] = "explicit.stat_448592698|16", ["text"] = "+# to Level of all Skeletal Brute Skills", ["type"] = "explicit", }, - [851] = { + [852] = { ["id"] = "explicit.stat_448592698|17", ["text"] = "+# to Level of all Skeletal Cleric Skills", ["type"] = "explicit", }, - [852] = { + [853] = { ["id"] = "explicit.stat_448592698|101", ["text"] = "+# to Level of all Skeletal Frost Mage Skills", ["type"] = "explicit", }, - [853] = { + [854] = { ["id"] = "explicit.stat_448592698|50", ["text"] = "+# to Level of all Skeletal Reaver Skills", ["type"] = "explicit", }, - [854] = { - ["id"] = "explicit.stat_448592698|160", - ["text"] = "+# to Level of all Skeletal Sniper Skills", - ["type"] = "explicit", - }, [855] = { ["id"] = "explicit.stat_448592698|161", ["text"] = "+# to Level of all Skeletal Sniper Skills", ["type"] = "explicit", }, [856] = { + ["id"] = "explicit.stat_448592698|160", + ["text"] = "+# to Level of all Skeletal Sniper Skills", + ["type"] = "explicit", + }, + [857] = { ["id"] = "explicit.stat_448592698|32", ["text"] = "+# to Level of all Skeletal Storm Mage Skills", ["type"] = "explicit", }, - [857] = { + [858] = { ["id"] = "explicit.stat_448592698|111", ["text"] = "+# to Level of all Snap Skills", ["type"] = "explicit", }, - [858] = { + [859] = { ["id"] = "explicit.stat_448592698|147", ["text"] = "+# to Level of all Snipe Skills", ["type"] = "explicit", }, - [859] = { + [860] = { ["id"] = "explicit.stat_448592698|79", ["text"] = "+# to Level of all Sniper's Mark Skills", ["type"] = "explicit", }, - [860] = { + [861] = { ["id"] = "explicit.stat_448592698|109", ["text"] = "+# to Level of all Solar Orb Skills", ["type"] = "explicit", }, - [861] = { + [862] = { ["id"] = "explicit.stat_448592698|22", ["text"] = "+# to Level of all Soul Offering Skills", ["type"] = "explicit", }, - [862] = { + [863] = { ["id"] = "explicit.stat_448592698|154", ["text"] = "+# to Level of all Spark Skills", ["type"] = "explicit", }, - [863] = { + [864] = { ["id"] = "explicit.stat_448592698|194", ["text"] = "+# to Level of all Spear of Solaris Skills", ["type"] = "explicit", }, - [864] = { + [865] = { ["id"] = "explicit.stat_448592698|180", ["text"] = "+# to Level of all Spearfield Skills", ["type"] = "explicit", }, - [865] = { + [866] = { ["id"] = "explicit.stat_448592698|226", ["text"] = "+# to Level of all Spell Totem Skills", ["type"] = "explicit", }, - [866] = { + [867] = { ["id"] = "explicit.stat_448592698|20", ["text"] = "+# to Level of all Spiral Volley Skills", ["type"] = "explicit", }, - [867] = { + [868] = { ["id"] = "explicit.stat_448592698|143", ["text"] = "+# to Level of all Staggering Palm Skills", ["type"] = "explicit", }, - [868] = { + [869] = { ["id"] = "explicit.stat_448592698|39", ["text"] = "+# to Level of all Stampede Skills", ["type"] = "explicit", }, - [869] = { + [870] = { ["id"] = "explicit.stat_448592698|195", ["text"] = "+# to Level of all Storm Lance Skills", ["type"] = "explicit", }, - [870] = { + [871] = { ["id"] = "explicit.stat_448592698|94", ["text"] = "+# to Level of all Storm Wave Skills", ["type"] = "explicit", }, - [871] = { + [872] = { ["id"] = "explicit.stat_448592698|59", ["text"] = "+# to Level of all Stormblast Bolts Skills", ["type"] = "explicit", }, - [872] = { + [873] = { ["id"] = "explicit.stat_448592698|146", ["text"] = "+# to Level of all Stormcaller Arrow Skills", ["type"] = "explicit", }, - [873] = { + [874] = { ["id"] = "explicit.stat_448592698|200", ["text"] = "+# to Level of all Summon Spectre Skills", ["type"] = "explicit", }, - [874] = { + [875] = { ["id"] = "explicit.stat_448592698|49", ["text"] = "+# to Level of all Sunder Skills", ["type"] = "explicit", }, - [875] = { + [876] = { ["id"] = "explicit.stat_448592698|36", ["text"] = "+# to Level of all Supercharged Slam Skills", ["type"] = "explicit", }, - [876] = { + [877] = { ["id"] = "explicit.stat_448592698|201", ["text"] = "+# to Level of all Tamed Companion Skills", ["type"] = "explicit", }, - [877] = { + [878] = { ["id"] = "explicit.stat_448592698|193", ["text"] = "+# to Level of all Tamed Companion Skills", ["type"] = "explicit", }, - [878] = { + [879] = { ["id"] = "explicit.stat_448592698|144", ["text"] = "+# to Level of all Tempest Bell Skills", ["type"] = "explicit", }, - [879] = { + [880] = { ["id"] = "explicit.stat_448592698|106", ["text"] = "+# to Level of all Tempest Flurry Skills", ["type"] = "explicit", }, - [880] = { + [881] = { ["id"] = "explicit.stat_448592698|14", ["text"] = "+# to Level of all Temporal Chains Skills", ["type"] = "explicit", }, - [881] = { + [882] = { ["id"] = "explicit.stat_448592698|235", ["text"] = "+# to Level of all Thrashing Vines Skills", ["type"] = "explicit", }, - [882] = { + [883] = { ["id"] = "explicit.stat_448592698|185", ["text"] = "+# to Level of all Thunderous Leap Skills", ["type"] = "explicit", }, - [883] = { + [884] = { ["id"] = "explicit.stat_448592698|223", ["text"] = "+# to Level of all Thunderstorm Skills", ["type"] = "explicit", }, - [884] = { + [885] = { ["id"] = "explicit.stat_448592698|71", ["text"] = "+# to Level of all Time of Need Skills", ["type"] = "explicit", }, - [885] = { + [886] = { ["id"] = "explicit.stat_448592698|44", ["text"] = "+# to Level of all Tornado Shot Skills", ["type"] = "explicit", }, - [886] = { + [887] = { ["id"] = "explicit.stat_448592698|218", ["text"] = "+# to Level of all Tornado Skills", ["type"] = "explicit", }, - [887] = { + [888] = { ["id"] = "explicit.stat_448592698|209", ["text"] = "+# to Level of all Toxic Domain Skills", ["type"] = "explicit", }, - [888] = { + [889] = { ["id"] = "explicit.stat_448592698|108", ["text"] = "+# to Level of all Toxic Growth Skills", ["type"] = "explicit", }, - [889] = { + [890] = { ["id"] = "explicit.stat_448592698|198", ["text"] = "+# to Level of all Trail of Caltrops Skills", ["type"] = "explicit", }, - [890] = { + [891] = { ["id"] = "explicit.stat_448592698|197", ["text"] = "+# to Level of all Trinity Skills", ["type"] = "explicit", }, - [891] = { + [892] = { ["id"] = "explicit.stat_448592698|183", ["text"] = "+# to Level of all Twister Skills", ["type"] = "explicit", }, - [892] = { + [893] = { ["id"] = "explicit.stat_448592698|170", ["text"] = "+# to Level of all Unearth Skills", ["type"] = "explicit", }, - [893] = { + [894] = { ["id"] = "explicit.stat_448592698|152", ["text"] = "+# to Level of all Vaulting Impact Skills", ["type"] = "explicit", }, - [894] = { + [895] = { ["id"] = "explicit.stat_448592698|148", ["text"] = "+# to Level of all Vine Arrow Skills", ["type"] = "explicit", }, - [895] = { + [896] = { ["id"] = "explicit.stat_448592698|52", ["text"] = "+# to Level of all Volcanic Fissure Skills", ["type"] = "explicit", }, - [896] = { + [897] = { ["id"] = "explicit.stat_448592698|219", ["text"] = "+# to Level of all Volcano Skills", ["type"] = "explicit", }, - [897] = { + [898] = { ["id"] = "explicit.stat_448592698|87", ["text"] = "+# to Level of all Voltaic Grenade Skills", ["type"] = "explicit", }, - [898] = { + [899] = { ["id"] = "explicit.stat_448592698|96", ["text"] = "+# to Level of all Voltaic Mark Skills", ["type"] = "explicit", }, - [899] = { + [900] = { ["id"] = "explicit.stat_448592698|83", ["text"] = "+# to Level of all Vulnerability Skills", ["type"] = "explicit", }, - [900] = { + [901] = { ["id"] = "explicit.stat_448592698|241", ["text"] = "+# to Level of all Walking Calamity Skills", ["type"] = "explicit", }, - [901] = { + [902] = { ["id"] = "explicit.stat_448592698|131", ["text"] = "+# to Level of all War Banner Skills", ["type"] = "explicit", }, - [902] = { + [903] = { ["id"] = "explicit.stat_448592698|85", ["text"] = "+# to Level of all Wave of Frost Skills", ["type"] = "explicit", }, - [903] = { + [904] = { ["id"] = "explicit.stat_448592698|35", ["text"] = "+# to Level of all Whirling Assault Skills", ["type"] = "explicit", }, - [904] = { + [905] = { ["id"] = "explicit.stat_448592698|179", ["text"] = "+# to Level of all Whirling Slash Skills", ["type"] = "explicit", }, - [905] = { + [906] = { ["id"] = "explicit.stat_448592698|187", ["text"] = "+# to Level of all Whirlwind Lance Skills", ["type"] = "explicit", }, - [906] = { + [907] = { ["id"] = "explicit.stat_448592698|102", ["text"] = "+# to Level of all Wind Blast Skills", ["type"] = "explicit", }, - [907] = { + [908] = { ["id"] = "explicit.stat_448592698|128", ["text"] = "+# to Level of all Wind Dancer Skills", ["type"] = "explicit", }, - [908] = { + [909] = { ["id"] = "explicit.stat_448592698|190", ["text"] = "+# to Level of all Wind Serpent's Fury Skills", ["type"] = "explicit", }, - [909] = { + [910] = { ["id"] = "explicit.stat_448592698|227", ["text"] = "+# to Level of all Wing Blast Skills", ["type"] = "explicit", }, - [910] = { + [911] = { ["id"] = "explicit.stat_448592698|132", ["text"] = "+# to Level of all Withering Presence Skills", ["type"] = "explicit", }, - [911] = { + [912] = { ["id"] = "explicit.stat_448592698|220", ["text"] = "+# to Level of all Wolf Pack Skills", ["type"] = "explicit", }, - [912] = { + [913] = { ["id"] = "explicit.stat_4163415912", ["text"] = "+# to Spirit per Socket filled", ["type"] = "explicit", }, - [913] = { + [914] = { ["id"] = "explicit.stat_1054098949", ["text"] = "+#% Monster Elemental Resistances", ["type"] = "explicit", }, - [914] = { + [915] = { ["id"] = "explicit.stat_2593651571", ["text"] = "+#% to all Elemental Resistances per Socket filled", ["type"] = "explicit", }, - [915] = { + [916] = { ["id"] = "explicit.stat_1291132817", ["text"] = "+1 to Armour per Strength", ["type"] = "explicit", }, - [916] = { + [917] = { ["id"] = "explicit.stat_1345486764", ["text"] = "+1 to Maximum Spirit per # Maximum Life", ["type"] = "explicit", }, - [917] = { + [918] = { ["id"] = "explicit.stat_2134207902", ["text"] = "+100% of Armour also applies to Lightning Damage", ["type"] = "explicit", }, - [918] = { + [919] = { ["id"] = "explicit.stat_3452816629", ["text"] = "1% more Unarmed Damage per # Strength", ["type"] = "explicit", }, - [919] = { + [920] = { ["id"] = "explicit.stat_1388221282", ["text"] = "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", ["type"] = "explicit", }, - [920] = { + [921] = { ["id"] = "explicit.stat_2975078312", ["text"] = "Abyss Monsters in your Maps grant #% increased Experience", ["type"] = "explicit", }, - [921] = { + [922] = { ["id"] = "explicit.stat_4157613372", ["text"] = "Abyss Pits have #% chance to spawn all Monsters as at least Magic", ["type"] = "explicit", }, - [922] = { + [923] = { ["id"] = "explicit.stat_4256531808", ["text"] = "Abyss Pits in Area are twice as likely to have Rewards", ["type"] = "explicit", }, - [923] = { + [924] = { ["id"] = "explicit.stat_2975078312", ["text"] = "Abyssal Monsters grant #% increased Experience", ["type"] = "explicit", }, - [924] = { + [925] = { ["id"] = "explicit.stat_664606484", ["text"] = "Abyssal Monsters have #% increased Effectiveness for each closed Pit, up to 100%", ["type"] = "explicit", }, - [925] = { + [926] = { ["id"] = "explicit.stat_360553763", ["text"] = "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", ["type"] = "explicit", }, - [926] = { + [927] = { ["id"] = "explicit.stat_3979226081", ["text"] = "Abyssal Wasting also applies #% to Cold Resistance", ["type"] = "explicit", }, - [927] = { + [928] = { ["id"] = "explicit.stat_2991563371", ["text"] = "Abyssal Wasting also applies #% to Fire Resistance", ["type"] = "explicit", }, - [928] = { + [929] = { ["id"] = "explicit.stat_1726353460", ["text"] = "Abyssal Wasting also applies #% to Lightning Resistance", ["type"] = "explicit", }, - [929] = { + [930] = { ["id"] = "explicit.stat_1679776108", ["text"] = "Abyssal Wasting you inflict has Infinite Duration", ["type"] = "explicit", }, - [930] = { + [931] = { ["id"] = "explicit.stat_2722831300", ["text"] = "Abysses have #% increased chance to lead to an Abyssal Depths", ["type"] = "explicit", }, - [931] = { + [932] = { ["id"] = "explicit.stat_2890355696", ["text"] = "Abysses have a #% chance to contain 4 additional Pits", ["type"] = "explicit", }, - [932] = { + [933] = { ["id"] = "explicit.stat_2722831300", ["text"] = "Abysses in Area have #% increased chance to lead to an Abyssal Depths", ["type"] = "explicit", }, - [933] = { + [934] = { ["id"] = "explicit.stat_2399592398", ["text"] = "Abysses lead to an Abyssal Boss", ["type"] = "explicit", }, - [934] = { + [935] = { ["id"] = "explicit.stat_2278777540", ["text"] = "Abysses lead to an Abyssal Depths", ["type"] = "explicit", }, - [935] = { + [936] = { ["id"] = "explicit.stat_944630113", ["text"] = "Abysses spawn #% increased Monsters", ["type"] = "explicit", }, - [936] = { + [937] = { ["id"] = "explicit.stat_2161347476", ["text"] = "Accuracy Rating is Doubled", ["type"] = "explicit", }, - [937] = { + [938] = { ["id"] = "explicit.stat_674553446", ["text"] = "Adds # to # Chaos Damage to Attacks", ["type"] = "explicit", }, - [938] = { + [939] = { ["id"] = "explicit.stat_2223678961", ["text"] = "Adds # to # Chaos damage", ["type"] = "explicit", }, - [939] = { + [940] = { ["id"] = "explicit.stat_1037193709", ["text"] = "Adds # to # Cold Damage", ["type"] = "explicit", }, - [940] = { + [941] = { ["id"] = "explicit.stat_4067062424", ["text"] = "Adds # to # Cold damage to Attacks", ["type"] = "explicit", }, - [941] = { + [942] = { ["id"] = "explicit.stat_709508406", ["text"] = "Adds # to # Fire Damage", ["type"] = "explicit", }, - [942] = { + [943] = { ["id"] = "explicit.stat_1573130764", ["text"] = "Adds # to # Fire damage to Attacks", ["type"] = "explicit", }, - [943] = { + [944] = { ["id"] = "explicit.stat_3336890334", ["text"] = "Adds # to # Lightning Damage", ["type"] = "explicit", }, - [944] = { + [945] = { ["id"] = "explicit.stat_3111921451", ["text"] = "Adds # to # Lightning Damage to Attacks per 20 Intelligence", ["type"] = "explicit", }, - [945] = { + [946] = { ["id"] = "explicit.stat_3835522656", ["text"] = "Adds # to # Lightning Damage to Unarmed Melee Hits", ["type"] = "explicit", }, - [946] = { + [947] = { ["id"] = "explicit.stat_1754445556", ["text"] = "Adds # to # Lightning damage to Attacks", ["type"] = "explicit", }, - [947] = { + [948] = { ["id"] = "explicit.stat_1940865751", ["text"] = "Adds # to # Physical Damage", ["type"] = "explicit", }, - [948] = { + [949] = { ["id"] = "explicit.stat_3032590688", ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "explicit", }, - [949] = { + [950] = { ["id"] = "explicit.stat_874646180", ["text"] = "Aggravate Bleeding on Enemies when they Enter your Presence", ["type"] = "explicit", }, - [950] = { + [951] = { ["id"] = "explicit.stat_2312741059", ["text"] = "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", ["type"] = "explicit", }, - [951] = { + [952] = { ["id"] = "explicit.stat_1952324525", ["text"] = "All Attacks count as Empowered Attacks", ["type"] = "explicit", }, - [952] = { + [953] = { ["id"] = "explicit.stat_4012215578", ["text"] = "All Damage from Hits Contributes to Poison Magnitude", ["type"] = "explicit", }, - [953] = { + [954] = { ["id"] = "explicit.stat_1717295693", ["text"] = "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", ["type"] = "explicit", }, - [954] = { + [955] = { ["id"] = "explicit.stat_1375667591", ["text"] = "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", ["type"] = "explicit", }, - [955] = { + [956] = { ["id"] = "explicit.stat_2156230257", ["text"] = "All Damage from Hits with this Weapon Contributes to Chill Magnitude", ["type"] = "explicit", }, - [956] = { + [957] = { ["id"] = "explicit.stat_3761294489", ["text"] = "All Damage from Hits with this Weapon Contributes to Freeze Buildup", ["type"] = "explicit", }, - [957] = { + [958] = { ["id"] = "explicit.stat_4142786792", ["text"] = "All Damage from Hits with this Weapon Contributes to Pin Buildup", ["type"] = "explicit", }, - [958] = { + [959] = { ["id"] = "explicit.stat_1705072014", ["text"] = "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", ["type"] = "explicit", }, - [959] = { + [960] = { ["id"] = "explicit.stat_2420248029", ["text"] = "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", ["type"] = "explicit", }, - [960] = { + [961] = { ["id"] = "explicit.stat_1291285202", ["text"] = "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", ["type"] = "explicit", }, - [961] = { + [962] = { ["id"] = "explicit.stat_3874491706", ["text"] = "All Mage's Legacies have #% increased effect per duplicate Mage's Legacy you have", ["type"] = "explicit", }, - [962] = { + [963] = { ["id"] = "explicit.stat_1910743684", ["text"] = "All damage with this Weapon causes Electrocution buildup", ["type"] = "explicit", }, - [963] = { + [964] = { ["id"] = "explicit.stat_4258251165", ["text"] = "Allies in your Presence Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, - [964] = { + [965] = { ["id"] = "explicit.stat_2173791158", ["text"] = "Allies in your Presence Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, - [965] = { + [966] = { ["id"] = "explicit.stat_4010677958", ["text"] = "Allies in your Presence Regenerate # Life per second", ["type"] = "explicit", }, - [966] = { + [967] = { ["id"] = "explicit.stat_3081479811", ["text"] = "Allies in your Presence Regenerate #% of their Maximum Life per second", ["type"] = "explicit", }, - [967] = { + [968] = { ["id"] = "explicit.stat_262946222", ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", ["type"] = "explicit", }, - [968] = { + [969] = { ["id"] = "explicit.stat_2347036682", ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", ["type"] = "explicit", }, - [969] = { + [970] = { ["id"] = "explicit.stat_849987426", ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", ["type"] = "explicit", }, - [970] = { + [971] = { ["id"] = "explicit.stat_2854751904", ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", ["type"] = "explicit", }, - [971] = { + [972] = { ["id"] = "explicit.stat_1574590649", ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "explicit", }, - [972] = { + [973] = { ["id"] = "explicit.stat_1798257884", ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "explicit", }, - [973] = { + [974] = { ["id"] = "explicit.stat_3169585282", ["text"] = "Allies in your Presence have # to Accuracy Rating", ["type"] = "explicit", }, - [974] = { + [975] = { ["id"] = "explicit.stat_1998951374", ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "explicit", }, - [975] = { + [976] = { ["id"] = "explicit.stat_289128254", ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "explicit", }, - [976] = { + [977] = { ["id"] = "explicit.stat_3057012405", ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "explicit", }, - [977] = { + [978] = { ["id"] = "explicit.stat_1250712710", ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", ["type"] = "explicit", }, - [978] = { + [979] = { ["id"] = "explicit.stat_3850614073", ["text"] = "Allies in your Presence have #% to all Elemental Resistances", ["type"] = "explicit", }, - [979] = { + [980] = { ["id"] = "explicit.stat_1361645249", ["text"] = "Allies in your Presence have Block Chance equal to yours", ["type"] = "explicit", }, - [980] = { + [981] = { ["id"] = "explicit.stat_3929993388", ["text"] = "Allocates # Sinister Jewel sockets", ["type"] = "explicit", }, - [981] = { + [982] = { ["id"] = "explicit.stat_2954116742|7338", ["text"] = "Allocates Abasement", ["type"] = "explicit", }, - [982] = { + [983] = { ["id"] = "explicit.stat_2954116742|43082", ["text"] = "Allocates Acceleration", ["type"] = "explicit", }, - [983] = { + [984] = { ["id"] = "explicit.stat_2954116742|12822", ["text"] = "Allocates Adaptable Assault", ["type"] = "explicit", }, - [984] = { + [985] = { ["id"] = "explicit.stat_2954116742|43250", ["text"] = "Allocates Adaptive Skin", ["type"] = "explicit", }, - [985] = { + [986] = { ["id"] = "explicit.stat_2954116742|35876", ["text"] = "Allocates Admonisher", ["type"] = "explicit", }, - [986] = { + [987] = { ["id"] = "explicit.stat_2954116742|17340", ["text"] = "Allocates Adrenaline Rush", ["type"] = "explicit", }, - [987] = { + [988] = { ["id"] = "explicit.stat_2954116742|43829", ["text"] = "Allocates Advanced Munitions", ["type"] = "explicit", }, - [988] = { + [989] = { ["id"] = "explicit.stat_2954116742|4295", ["text"] = "Allocates Adverse Growth", ["type"] = "explicit", }, - [989] = { + [990] = { ["id"] = "explicit.stat_2954116742|4716", ["text"] = "Allocates Afterimage", ["type"] = "explicit", }, - [990] = { + [991] = { ["id"] = "explicit.stat_2954116742|50253", ["text"] = "Allocates Aftershocks", ["type"] = "explicit", }, - [991] = { + [992] = { ["id"] = "explicit.stat_2954116742|59938", ["text"] = "Allocates Against the Elements", ["type"] = "explicit", }, - [992] = { + [993] = { ["id"] = "explicit.stat_2954116742|6655", ["text"] = "Allocates Aggravation", ["type"] = "explicit", }, - [993] = { + [994] = { ["id"] = "explicit.stat_2954116742|8896", ["text"] = "Allocates Agile Sprinter", ["type"] = "explicit", }, - [994] = { + [995] = { ["id"] = "explicit.stat_2954116742|56493", ["text"] = "Allocates Agile Succession", ["type"] = "explicit", }, - [995] = { + [996] = { ["id"] = "explicit.stat_2954116742|43088", ["text"] = "Allocates Agonising Calamity", ["type"] = "explicit", }, - [996] = { + [997] = { ["id"] = "explicit.stat_2954116742|55817", ["text"] = "Allocates Alchemical Oil", ["type"] = "explicit", }, - [997] = { + [998] = { ["id"] = "explicit.stat_2954116742|43854", ["text"] = "Allocates All For One", ["type"] = "explicit", }, - [998] = { + [999] = { ["id"] = "explicit.stat_2954116742|58016", ["text"] = "Allocates All Natural", ["type"] = "explicit", }, - [999] = { + [1000] = { ["id"] = "explicit.stat_2954116742|48974", ["text"] = "Allocates Altered Brain Chemistry", ["type"] = "explicit", }, - [1000] = { + [1001] = { ["id"] = "explicit.stat_2954116742|23764", ["text"] = "Allocates Alternating Current", ["type"] = "explicit", }, - [1001] = { + [1002] = { ["id"] = "explicit.stat_2954116742|20558", ["text"] = "Allocates Among the Hordes", ["type"] = "explicit", }, - [1002] = { + [1003] = { ["id"] = "explicit.stat_2954116742|2575", ["text"] = "Allocates Ancestral Alacrity", ["type"] = "explicit", }, - [1003] = { + [1004] = { ["id"] = "explicit.stat_2954116742|26339", ["text"] = "Allocates Ancestral Artifice", ["type"] = "explicit", }, - [1004] = { + [1005] = { ["id"] = "explicit.stat_2954116742|51820", ["text"] = "Allocates Ancestral Conduits", ["type"] = "explicit", }, - [1005] = { + [1006] = { ["id"] = "explicit.stat_2954116742|18419", ["text"] = "Allocates Ancestral Mending", ["type"] = "explicit", }, - [1006] = { + [1007] = { ["id"] = "explicit.stat_2954116742|43396", ["text"] = "Allocates Ancestral Reach", ["type"] = "explicit", }, - [1007] = { + [1008] = { ["id"] = "explicit.stat_2954116742|62609", ["text"] = "Allocates Ancestral Unity", ["type"] = "explicit", }, - [1008] = { + [1009] = { ["id"] = "explicit.stat_2954116742|5728", ["text"] = "Allocates Ancient Aegis", ["type"] = "explicit", }, - [1009] = { + [1010] = { ["id"] = "explicit.stat_2954116742|38398", ["text"] = "Allocates Apocalypse", ["type"] = "explicit", }, - [1010] = { + [1011] = { ["id"] = "explicit.stat_2954116742|46224", ["text"] = "Allocates Arcane Alchemy", ["type"] = "explicit", }, - [1011] = { + [1012] = { ["id"] = "explicit.stat_2954116742|14324", ["text"] = "Allocates Arcane Blossom", ["type"] = "explicit", }, - [1012] = { + [1013] = { ["id"] = "explicit.stat_2954116742|19044", ["text"] = "Allocates Arcane Intensity", ["type"] = "explicit", }, - [1013] = { + [1014] = { ["id"] = "explicit.stat_2954116742|46972", ["text"] = "Allocates Arcane Mixtures", ["type"] = "explicit", }, - [1014] = { + [1015] = { ["id"] = "explicit.stat_2954116742|16940", ["text"] = "Allocates Arcane Nature", ["type"] = "explicit", }, - [1015] = { + [1016] = { ["id"] = "explicit.stat_2954116742|46124", ["text"] = "Allocates Arcane Remnants", ["type"] = "explicit", }, - [1016] = { + [1017] = { ["id"] = "explicit.stat_2954116742|42045", ["text"] = "Allocates Archon of the Blizzard", ["type"] = "explicit", }, - [1017] = { + [1018] = { ["id"] = "explicit.stat_2954116742|27434", ["text"] = "Allocates Archon of the Storm", ["type"] = "explicit", }, - [1018] = { + [1019] = { ["id"] = "explicit.stat_2954116742|12245", ["text"] = "Allocates Arsonist", ["type"] = "explicit", }, - [1019] = { + [1020] = { ["id"] = "explicit.stat_2954116742|58817", ["text"] = "Allocates Artillery Strike", ["type"] = "explicit", }, - [1020] = { + [1021] = { ["id"] = "explicit.stat_2954116742|12661", ["text"] = "Allocates Asceticism", ["type"] = "explicit", }, - [1021] = { + [1022] = { ["id"] = "explicit.stat_2954116742|27388", ["text"] = "Allocates Aspiring Genius", ["type"] = "explicit", }, - [1022] = { + [1023] = { ["id"] = "explicit.stat_2954116742|35560", ["text"] = "Allocates At your Command", ["type"] = "explicit", }, - [1023] = { + [1024] = { ["id"] = "explicit.stat_2954116742|20397", ["text"] = "Allocates Authority", ["type"] = "explicit", }, - [1024] = { + [1025] = { ["id"] = "explicit.stat_2954116742|50673", ["text"] = "Allocates Avoiding Deflection", ["type"] = "explicit", }, - [1025] = { + [1026] = { ["id"] = "explicit.stat_2954116742|33059", ["text"] = "Allocates Back in Action", ["type"] = "explicit", }, - [1026] = { + [1027] = { ["id"] = "explicit.stat_2954116742|53853", ["text"] = "Allocates Backup Plan", ["type"] = "explicit", }, - [1027] = { + [1028] = { ["id"] = "explicit.stat_2954116742|62455", ["text"] = "Allocates Bannerman", ["type"] = "explicit", }, - [1028] = { + [1029] = { ["id"] = "explicit.stat_2954116742|50562", ["text"] = "Allocates Barbaric Strength", ["type"] = "explicit", }, - [1029] = { + [1030] = { ["id"] = "explicit.stat_2954116742|50062", ["text"] = "Allocates Barrier of Venarius", ["type"] = "explicit", }, - [1030] = { + [1031] = { ["id"] = "explicit.stat_2954116742|8916", ["text"] = "Allocates Bashing Beast", ["type"] = "explicit", }, - [1031] = { + [1032] = { ["id"] = "explicit.stat_2954116742|64240", ["text"] = "Allocates Battle Fever", ["type"] = "explicit", }, - [1032] = { + [1033] = { ["id"] = "explicit.stat_2954116742|37276", ["text"] = "Allocates Battle Trance", ["type"] = "explicit", }, - [1033] = { + [1034] = { ["id"] = "explicit.stat_2954116742|41620", ["text"] = "Allocates Bear's Roar", ["type"] = "explicit", }, - [1034] = { + [1035] = { ["id"] = "explicit.stat_2954116742|59720", ["text"] = "Allocates Beastial Skin", ["type"] = "explicit", }, - [1035] = { + [1036] = { ["id"] = "explicit.stat_2954116742|25482", ["text"] = "Allocates Beef", ["type"] = "explicit", }, - [1036] = { + [1037] = { ["id"] = "explicit.stat_2954116742|5642", ["text"] = "Allocates Behemoth", ["type"] = "explicit", }, - [1037] = { + [1038] = { ["id"] = "explicit.stat_2954116742|10873", ["text"] = "Allocates Bestial Rage", ["type"] = "explicit", }, - [1038] = { + [1039] = { ["id"] = "explicit.stat_2954116742|38329", ["text"] = "Allocates Biting Frost", ["type"] = "explicit", }, - [1039] = { + [1040] = { ["id"] = "explicit.stat_2954116742|17029", ["text"] = "Allocates Blade Catcher", ["type"] = "explicit", }, - [1040] = { + [1041] = { ["id"] = "explicit.stat_2954116742|2394", ["text"] = "Allocates Blade Flurry", ["type"] = "explicit", }, - [1041] = { + [1042] = { ["id"] = "explicit.stat_2954116742|25753", ["text"] = "Allocates Blazing Arms", ["type"] = "explicit", }, - [1042] = { + [1043] = { ["id"] = "explicit.stat_2954116742|18308", ["text"] = "Allocates Bleeding Out", ["type"] = "explicit", }, - [1043] = { + [1044] = { ["id"] = "explicit.stat_2954116742|48925", ["text"] = "Allocates Blessing of the Moon", ["type"] = "explicit", }, - [1044] = { + [1045] = { ["id"] = "explicit.stat_2954116742|42354", ["text"] = "Allocates Blinding Flash", ["type"] = "explicit", }, - [1045] = { + [1046] = { ["id"] = "explicit.stat_2954116742|20916", ["text"] = "Allocates Blinding Strike", ["type"] = "explicit", }, - [1046] = { + [1047] = { ["id"] = "explicit.stat_2954116742|39083", ["text"] = "Allocates Blood Rush", ["type"] = "explicit", }, - [1047] = { + [1048] = { ["id"] = "explicit.stat_2954116742|58183", ["text"] = "Allocates Blood Tearing", ["type"] = "explicit", }, - [1048] = { + [1049] = { ["id"] = "explicit.stat_2954116742|48524", ["text"] = "Allocates Blood Transfusion", ["type"] = "explicit", }, - [1049] = { + [1050] = { ["id"] = "explicit.stat_2954116742|35792", ["text"] = "Allocates Blood of Rage", ["type"] = "explicit", }, - [1050] = { + [1051] = { ["id"] = "explicit.stat_2954116742|49214", ["text"] = "Allocates Blood of the Wolf", ["type"] = "explicit", }, - [1051] = { + [1052] = { ["id"] = "explicit.stat_2954116742|54990", ["text"] = "Allocates Bloodletting", ["type"] = "explicit", }, - [1052] = { + [1053] = { ["id"] = "explicit.stat_2954116742|10772", ["text"] = "Allocates Bloodthirsty", ["type"] = "explicit", }, - [1053] = { + [1054] = { ["id"] = "explicit.stat_2954116742|42177", ["text"] = "Allocates Blurred Motion", ["type"] = "explicit", }, - [1054] = { + [1055] = { ["id"] = "explicit.stat_2954116742|26070", ["text"] = "Allocates Bolstering Yell", ["type"] = "explicit", }, - [1055] = { + [1056] = { ["id"] = "explicit.stat_2954116742|17725", ["text"] = "Allocates Bonded Precision", ["type"] = "explicit", }, - [1056] = { + [1057] = { ["id"] = "explicit.stat_2954116742|26563", ["text"] = "Allocates Bone Chains", ["type"] = "explicit", }, - [1057] = { + [1058] = { ["id"] = "explicit.stat_2954116742|52618", ["text"] = "Allocates Boon of the Beast", ["type"] = "explicit", }, - [1058] = { + [1059] = { ["id"] = "explicit.stat_2954116742|15114", ["text"] = "Allocates Boundless Growth", ["type"] = "explicit", }, - [1059] = { + [1060] = { ["id"] = "explicit.stat_2954116742|23244", ["text"] = "Allocates Bounty Hunter", ["type"] = "explicit", }, - [1060] = { + [1061] = { ["id"] = "explicit.stat_2954116742|37806", ["text"] = "Allocates Branching Bolts", ["type"] = "explicit", }, - [1061] = { + [1062] = { ["id"] = "explicit.stat_2954116742|14777", ["text"] = "Allocates Bravado", ["type"] = "explicit", }, - [1062] = { + [1063] = { ["id"] = "explicit.stat_2954116742|21453", ["text"] = "Allocates Breakage", ["type"] = "explicit", }, - [1063] = { + [1064] = { ["id"] = "explicit.stat_2954116742|39347", ["text"] = "Allocates Breaking Blows", ["type"] = "explicit", }, - [1064] = { + [1065] = { ["id"] = "explicit.stat_2954116742|7777", ["text"] = "Allocates Breaking Point", ["type"] = "explicit", }, - [1065] = { + [1066] = { ["id"] = "explicit.stat_2954116742|24655", ["text"] = "Allocates Breath of Fire", ["type"] = "explicit", }, - [1066] = { + [1067] = { ["id"] = "explicit.stat_2954116742|18086", ["text"] = "Allocates Breath of Ice", ["type"] = "explicit", }, - [1067] = { + [1068] = { ["id"] = "explicit.stat_2954116742|61338", ["text"] = "Allocates Breath of Lightning", ["type"] = "explicit", }, - [1068] = { + [1069] = { ["id"] = "explicit.stat_2954116742|9535", ["text"] = "Allocates Brinerot Ferocity", ["type"] = "explicit", }, - [1069] = { + [1070] = { ["id"] = "explicit.stat_2954116742|48565", ["text"] = "Allocates Bringer of Order", ["type"] = "explicit", }, - [1070] = { + [1071] = { ["id"] = "explicit.stat_2954116742|53935", ["text"] = "Allocates Briny Carapace", ["type"] = "explicit", }, - [1071] = { + [1072] = { ["id"] = "explicit.stat_2954116742|63541", ["text"] = "Allocates Brush Off", ["type"] = "explicit", }, - [1072] = { + [1073] = { ["id"] = "explicit.stat_2954116742|50392", ["text"] = "Allocates Brute Strength", ["type"] = "explicit", }, - [1073] = { + [1074] = { ["id"] = "explicit.stat_2954116742|15986", ["text"] = "Allocates Building Toxins", ["type"] = "explicit", }, - [1074] = { + [1075] = { ["id"] = "explicit.stat_2954116742|53294", ["text"] = "Allocates Burn Away", ["type"] = "explicit", }, - [1075] = { + [1076] = { ["id"] = "explicit.stat_2954116742|8554", ["text"] = "Allocates Burning Nature", ["type"] = "explicit", }, - [1076] = { + [1077] = { ["id"] = "explicit.stat_2954116742|6544", ["text"] = "Allocates Burning Strikes", ["type"] = "explicit", }, - [1077] = { + [1078] = { ["id"] = "explicit.stat_2954116742|35324", ["text"] = "Allocates Burnout", ["type"] = "explicit", }, - [1078] = { + [1079] = { ["id"] = "explicit.stat_2954116742|6514", ["text"] = "Allocates Cacophony", ["type"] = "explicit", }, - [1079] = { + [1080] = { ["id"] = "explicit.stat_2954116742|32799", ["text"] = "Allocates Captivating Companionship", ["type"] = "explicit", }, - [1080] = { + [1081] = { ["id"] = "explicit.stat_2954116742|50795", ["text"] = "Allocates Careful Aim", ["type"] = "explicit", }, - [1081] = { + [1082] = { ["id"] = "explicit.stat_2954116742|46197", ["text"] = "Allocates Careful Assassin", ["type"] = "explicit", }, - [1082] = { + [1083] = { ["id"] = "explicit.stat_2954116742|17955", ["text"] = "Allocates Careful Consideration", ["type"] = "explicit", }, - [1083] = { + [1084] = { ["id"] = "explicit.stat_2954116742|52348", ["text"] = "Allocates Carved Earth", ["type"] = "explicit", }, - [1084] = { + [1085] = { ["id"] = "explicit.stat_2954116742|44005", ["text"] = "Allocates Casting Cascade", ["type"] = "explicit", }, - [1085] = { + [1086] = { ["id"] = "explicit.stat_2954116742|31433", ["text"] = "Allocates Catalysis", ["type"] = "explicit", }, - [1086] = { + [1087] = { ["id"] = "explicit.stat_2954116742|9472", ["text"] = "Allocates Catapult", ["type"] = "explicit", }, - [1087] = { + [1088] = { ["id"] = "explicit.stat_2954116742|32664", ["text"] = "Allocates Chakra of Breathing", ["type"] = "explicit", }, - [1088] = { + [1089] = { ["id"] = "explicit.stat_2954116742|63400", ["text"] = "Allocates Chakra of Elements", ["type"] = "explicit", }, - [1089] = { + [1090] = { ["id"] = "explicit.stat_2954116742|25362", ["text"] = "Allocates Chakra of Impact", ["type"] = "explicit", }, - [1090] = { + [1091] = { ["id"] = "explicit.stat_2954116742|35031", ["text"] = "Allocates Chakra of Life", ["type"] = "explicit", }, - [1091] = { + [1092] = { ["id"] = "explicit.stat_2954116742|28963", ["text"] = "Allocates Chakra of Rhythm", ["type"] = "explicit", }, - [1092] = { + [1093] = { ["id"] = "explicit.stat_2954116742|42347", ["text"] = "Allocates Chakra of Sight", ["type"] = "explicit", }, - [1093] = { + [1094] = { ["id"] = "explicit.stat_2954116742|42760", ["text"] = "Allocates Chakra of Stability", ["type"] = "explicit", }, - [1094] = { + [1095] = { ["id"] = "explicit.stat_2954116742|29306", ["text"] = "Allocates Chakra of Thought", ["type"] = "explicit", }, - [1095] = { + [1096] = { ["id"] = "explicit.stat_2954116742|5410", ["text"] = "Allocates Channelled Heritage", ["type"] = "explicit", }, - [1096] = { + [1097] = { ["id"] = "explicit.stat_2954116742|23427", ["text"] = "Allocates Chilled to the Bone", ["type"] = "explicit", }, - [1097] = { + [1098] = { ["id"] = "explicit.stat_2954116742|5686", ["text"] = "Allocates Chillproof", ["type"] = "explicit", }, - [1098] = { + [1099] = { ["id"] = "explicit.stat_2954116742|39990", ["text"] = "Allocates Chronomancy", ["type"] = "explicit", }, - [1099] = { + [1100] = { ["id"] = "explicit.stat_2954116742|57805", ["text"] = "Allocates Clear Space", ["type"] = "explicit", }, - [1100] = { + [1101] = { ["id"] = "explicit.stat_2954116742|4627", ["text"] = "Allocates Climate Change", ["type"] = "explicit", }, - [1101] = { + [1102] = { ["id"] = "explicit.stat_2954116742|38479", ["text"] = "Allocates Close Confines", ["type"] = "explicit", }, - [1102] = { + [1103] = { ["id"] = "explicit.stat_2954116742|29514", ["text"] = "Allocates Cluster Bombs", ["type"] = "explicit", }, - [1103] = { + [1104] = { ["id"] = "explicit.stat_2954116742|44330", ["text"] = "Allocates Coated Arms", ["type"] = "explicit", }, - [1104] = { + [1105] = { ["id"] = "explicit.stat_2954116742|35618", ["text"] = "Allocates Cold Coat", ["type"] = "explicit", }, - [1105] = { + [1106] = { ["id"] = "explicit.stat_2954116742|26518", ["text"] = "Allocates Cold Nature", ["type"] = "explicit", }, - [1106] = { + [1107] = { ["id"] = "explicit.stat_2954116742|47363", ["text"] = "Allocates Colossal Weapon", ["type"] = "explicit", }, - [1107] = { + [1108] = { ["id"] = "explicit.stat_2954116742|28044", ["text"] = "Allocates Coming Calamity", ["type"] = "explicit", }, - [1108] = { + [1109] = { ["id"] = "explicit.stat_2954116742|42660", ["text"] = "Allocates Commanding Rage", ["type"] = "explicit", }, - [1109] = { + [1110] = { ["id"] = "explicit.stat_2954116742|36931", ["text"] = "Allocates Concussive Attack", ["type"] = "explicit", }, - [1110] = { + [1111] = { ["id"] = "explicit.stat_2954116742|52257", ["text"] = "Allocates Conductive Embrace", ["type"] = "explicit", }, - [1111] = { + [1112] = { ["id"] = "explicit.stat_2954116742|34300", ["text"] = "Allocates Conservative Casting", ["type"] = "explicit", }, - [1112] = { + [1113] = { ["id"] = "explicit.stat_2954116742|15030", ["text"] = "Allocates Consistent Intake", ["type"] = "explicit", }, - [1113] = { + [1114] = { ["id"] = "explicit.stat_2954116742|54640", ["text"] = "Allocates Constricting", ["type"] = "explicit", }, - [1114] = { + [1115] = { ["id"] = "explicit.stat_2954116742|30748", ["text"] = "Allocates Controlled Chaos", ["type"] = "explicit", }, - [1115] = { + [1116] = { ["id"] = "explicit.stat_2954116742|13823", ["text"] = "Allocates Controlling Magic", ["type"] = "explicit", }, - [1116] = { + [1117] = { ["id"] = "explicit.stat_2954116742|36623", ["text"] = "Allocates Convalescence", ["type"] = "explicit", }, - [1117] = { + [1118] = { ["id"] = "explicit.stat_2954116742|56776", ["text"] = "Allocates Cooked", ["type"] = "explicit", }, - [1118] = { + [1119] = { ["id"] = "explicit.stat_2954116742|6133", ["text"] = "Allocates Core of the Guardian", ["type"] = "explicit", }, - [1119] = { + [1120] = { ["id"] = "explicit.stat_2954116742|27761", ["text"] = "Allocates Counterstancing", ["type"] = "explicit", }, - [1120] = { + [1121] = { ["id"] = "explicit.stat_2954116742|50687", ["text"] = "Allocates Coursing Energy", ["type"] = "explicit", }, - [1121] = { + [1122] = { ["id"] = "explicit.stat_2954116742|63451", ["text"] = "Allocates Cranial Impact", ["type"] = "explicit", }, - [1122] = { + [1123] = { ["id"] = "explicit.stat_2954116742|9323", ["text"] = "Allocates Craving Slaughter", ["type"] = "explicit", }, - [1123] = { + [1124] = { ["id"] = "explicit.stat_2954116742|20511", ["text"] = "Allocates Cremating Cries", ["type"] = "explicit", }, - [1124] = { + [1125] = { ["id"] = "explicit.stat_2954116742|19715", ["text"] = "Allocates Cremation", ["type"] = "explicit", }, - [1125] = { + [1126] = { ["id"] = "explicit.stat_2954116742|43677", ["text"] = "Allocates Crippling Toxins", ["type"] = "explicit", }, - [1126] = { + [1127] = { ["id"] = "explicit.stat_2954116742|57204", ["text"] = "Allocates Critical Exploit", ["type"] = "explicit", }, - [1127] = { + [1128] = { ["id"] = "explicit.stat_2954116742|45488", ["text"] = "Allocates Cross Strike", ["type"] = "explicit", }, - [1128] = { + [1129] = { ["id"] = "explicit.stat_2954116742|42981", ["text"] = "Allocates Cruel Methods", ["type"] = "explicit", }, - [1129] = { + [1130] = { ["id"] = "explicit.stat_2954116742|35739", ["text"] = "Allocates Crushing Judgement", ["type"] = "explicit", }, - [1130] = { + [1131] = { ["id"] = "explicit.stat_2954116742|18505", ["text"] = "Allocates Crushing Verdict", ["type"] = "explicit", }, - [1131] = { + [1132] = { ["id"] = "explicit.stat_2954116742|38895", ["text"] = "Allocates Crystal Elixir", ["type"] = "explicit", }, - [1132] = { + [1133] = { ["id"] = "explicit.stat_2954116742|61026", ["text"] = "Allocates Crystalline Flesh", ["type"] = "explicit", }, - [1133] = { + [1134] = { ["id"] = "explicit.stat_2954116742|32151", ["text"] = "Allocates Crystalline Resistance", ["type"] = "explicit", }, - [1134] = { + [1135] = { ["id"] = "explicit.stat_2954116742|5332", ["text"] = "Allocates Crystallised Immunities", ["type"] = "explicit", }, - [1135] = { + [1136] = { ["id"] = "explicit.stat_2954116742|36341", ["text"] = "Allocates Cull the Hordes", ["type"] = "explicit", }, - [1136] = { + [1137] = { ["id"] = "explicit.stat_2954116742|13708", ["text"] = "Allocates Curved Weapon", ["type"] = "explicit", }, - [1137] = { + [1138] = { ["id"] = "explicit.stat_2954116742|32507", ["text"] = "Allocates Cut to the Bone", ["type"] = "explicit", }, - [1138] = { + [1139] = { ["id"] = "explicit.stat_2954116742|7128", ["text"] = "Allocates Dangerous Blossom", ["type"] = "explicit", }, - [1139] = { + [1140] = { ["id"] = "explicit.stat_2954116742|63074", ["text"] = "Allocates Dark Entries", ["type"] = "explicit", }, - [1140] = { + [1141] = { ["id"] = "explicit.stat_2954116742|20495", ["text"] = "Allocates Dark Entropy", ["type"] = "explicit", }, - [1141] = { + [1142] = { ["id"] = "explicit.stat_2954116742|10500", ["text"] = "Allocates Dazing Blocks", ["type"] = "explicit", }, - [1142] = { + [1143] = { ["id"] = "explicit.stat_2954116742|30523", ["text"] = "Allocates Dead can Dance", ["type"] = "explicit", }, - [1143] = { + [1144] = { ["id"] = "explicit.stat_2954116742|49618", ["text"] = "Allocates Deadly Flourish", ["type"] = "explicit", }, - [1144] = { + [1145] = { ["id"] = "explicit.stat_2954116742|13724", ["text"] = "Allocates Deadly Force", ["type"] = "explicit", }, - [1145] = { + [1146] = { ["id"] = "explicit.stat_2954116742|29288", ["text"] = "Allocates Deadly Invocations", ["type"] = "explicit", }, - [1146] = { + [1147] = { ["id"] = "explicit.stat_2954116742|38053", ["text"] = "Allocates Deafening Cries", ["type"] = "explicit", }, - [1147] = { + [1148] = { ["id"] = "explicit.stat_2954116742|8904", ["text"] = "Allocates Death from Afar", ["type"] = "explicit", }, - [1148] = { + [1149] = { ["id"] = "explicit.stat_2954116742|17664", ["text"] = "Allocates Decisive Retreat", ["type"] = "explicit", }, - [1149] = { + [1150] = { ["id"] = "explicit.stat_2954116742|5594", ["text"] = "Allocates Decrepifying Curse", ["type"] = "explicit", }, - [1150] = { + [1151] = { ["id"] = "explicit.stat_2954116742|16142", ["text"] = "Allocates Deep Freeze", ["type"] = "explicit", }, - [1151] = { + [1152] = { ["id"] = "explicit.stat_2954116742|40166", ["text"] = "Allocates Deep Trance", ["type"] = "explicit", }, - [1152] = { + [1153] = { ["id"] = "explicit.stat_2954116742|33216", ["text"] = "Allocates Deep Wounds", ["type"] = "explicit", }, - [1153] = { + [1154] = { ["id"] = "explicit.stat_2954116742|45612", ["text"] = "Allocates Defensive Reflexes", ["type"] = "explicit", }, - [1154] = { + [1155] = { ["id"] = "explicit.stat_2954116742|10681", ["text"] = "Allocates Defensive Stance", ["type"] = "explicit", }, - [1155] = { + [1156] = { ["id"] = "explicit.stat_2954116742|32354", ["text"] = "Allocates Defiance", ["type"] = "explicit", }, - [1156] = { + [1157] = { ["id"] = "explicit.stat_2954116742|45329", ["text"] = "Allocates Delayed Danger", ["type"] = "explicit", }, - [1157] = { + [1158] = { ["id"] = "explicit.stat_2954116742|38570", ["text"] = "Allocates Demolitionist", ["type"] = "explicit", }, - [1158] = { + [1159] = { ["id"] = "explicit.stat_2954116742|4931", ["text"] = "Allocates Dependable Ward", ["type"] = "explicit", }, - [1159] = { + [1160] = { ["id"] = "explicit.stat_2954116742|28267", ["text"] = "Allocates Desensitisation", ["type"] = "explicit", }, - [1160] = { + [1161] = { ["id"] = "explicit.stat_2954116742|56616", ["text"] = "Allocates Desperate Times", ["type"] = "explicit", }, - [1161] = { + [1162] = { ["id"] = "explicit.stat_2954116742|14343", ["text"] = "Allocates Deterioration", ["type"] = "explicit", }, - [1162] = { + [1163] = { ["id"] = "explicit.stat_2954116742|24753", ["text"] = "Allocates Determined Precision", ["type"] = "explicit", }, - [1163] = { + [1164] = { ["id"] = "explicit.stat_2954116742|48006", ["text"] = "Allocates Devastation", ["type"] = "explicit", }, - [1164] = { + [1165] = { ["id"] = "explicit.stat_2954116742|2344", ["text"] = "Allocates Dimensional Weakspot", ["type"] = "explicit", }, - [1165] = { + [1166] = { ["id"] = "explicit.stat_2954116742|24483", ["text"] = "Allocates Direct Approach", ["type"] = "explicit", }, - [1166] = { + [1167] = { ["id"] = "explicit.stat_2954116742|38459", ["text"] = "Allocates Disorientation", ["type"] = "explicit", }, - [1167] = { + [1168] = { ["id"] = "explicit.stat_2954116742|58939", ["text"] = "Allocates Dispatch Foes", ["type"] = "explicit", }, - [1168] = { + [1169] = { ["id"] = "explicit.stat_2954116742|52245", ["text"] = "Allocates Distant Dreamer", ["type"] = "explicit", }, - [1169] = { + [1170] = { ["id"] = "explicit.stat_2954116742|32721", ["text"] = "Allocates Distracted Target", ["type"] = "explicit", }, - [1170] = { + [1171] = { ["id"] = "explicit.stat_2954116742|44765", ["text"] = "Allocates Distracting Presence", ["type"] = "explicit", }, - [1171] = { + [1172] = { ["id"] = "explicit.stat_2954116742|47514", ["text"] = "Allocates Dizzying Hits", ["type"] = "explicit", }, - [1172] = { + [1173] = { ["id"] = "explicit.stat_2954116742|1420", ["text"] = "Allocates Dizzying Sweep", ["type"] = "explicit", }, - [1173] = { + [1174] = { ["id"] = "explicit.stat_2954116742|26214", ["text"] = "Allocates Dominion", ["type"] = "explicit", }, - [1174] = { + [1175] = { ["id"] = "explicit.stat_2954116742|57190", ["text"] = "Allocates Doomsayer", ["type"] = "explicit", }, - [1175] = { + [1176] = { ["id"] = "explicit.stat_2954116742|1502", ["text"] = "Allocates Draiocht Cleansing", ["type"] = "explicit", }, - [1176] = { + [1177] = { ["id"] = "explicit.stat_2954116742|32858", ["text"] = "Allocates Dread Engineer's Concoction", ["type"] = "explicit", }, - [1177] = { + [1178] = { ["id"] = "explicit.stat_2954116742|11838", ["text"] = "Allocates Dreamcatcher", ["type"] = "explicit", }, - [1178] = { + [1179] = { ["id"] = "explicit.stat_2954116742|40073", ["text"] = "Allocates Drenched", ["type"] = "explicit", }, - [1179] = { + [1180] = { ["id"] = "explicit.stat_2954116742|3688", ["text"] = "Allocates Dynamism", ["type"] = "explicit", }, - [1180] = { + [1181] = { ["id"] = "explicit.stat_2954116742|10315", ["text"] = "Allocates Easy Going", ["type"] = "explicit", }, - [1181] = { + [1182] = { ["id"] = "explicit.stat_2954116742|64525", ["text"] = "Allocates Easy Target", ["type"] = "explicit", }, - [1182] = { + [1183] = { ["id"] = "explicit.stat_2954116742|60692", ["text"] = "Allocates Echoing Flames", ["type"] = "explicit", }, - [1183] = { + [1184] = { ["id"] = "explicit.stat_2954116742|5257", ["text"] = "Allocates Echoing Frost", ["type"] = "explicit", }, - [1184] = { + [1185] = { ["id"] = "explicit.stat_2954116742|7302", ["text"] = "Allocates Echoing Pulse", ["type"] = "explicit", }, - [1185] = { + [1186] = { ["id"] = "explicit.stat_2954116742|5703", ["text"] = "Allocates Echoing Thunder", ["type"] = "explicit", }, - [1186] = { + [1187] = { ["id"] = "explicit.stat_2954116742|33093", ["text"] = "Allocates Effervescent", ["type"] = "explicit", }, - [1187] = { + [1188] = { ["id"] = "explicit.stat_2954116742|46692", ["text"] = "Allocates Efficient Alchemy", ["type"] = "explicit", }, - [1188] = { + [1189] = { ["id"] = "explicit.stat_2954116742|16790", ["text"] = "Allocates Efficient Casting", ["type"] = "explicit", }, - [1189] = { + [1190] = { ["id"] = "explicit.stat_2954116742|30408", ["text"] = "Allocates Efficient Contraptions", ["type"] = "explicit", }, - [1190] = { + [1191] = { ["id"] = "explicit.stat_2954116742|42245", ["text"] = "Allocates Efficient Inscriptions", ["type"] = "explicit", }, - [1191] = { + [1192] = { ["id"] = "explicit.stat_2954116742|94", ["text"] = "Allocates Efficient Killing", ["type"] = "explicit", }, - [1192] = { + [1193] = { ["id"] = "explicit.stat_2954116742|53683", ["text"] = "Allocates Efficient Loading", ["type"] = "explicit", }, - [1193] = { + [1194] = { ["id"] = "explicit.stat_2954116742|3894", ["text"] = "Allocates Eldritch Will", ["type"] = "explicit", }, - [1194] = { + [1195] = { ["id"] = "explicit.stat_2954116742|55708", ["text"] = "Allocates Electric Amplification", ["type"] = "explicit", }, - [1195] = { + [1196] = { ["id"] = "explicit.stat_2954116742|56988", ["text"] = "Allocates Electric Blood", ["type"] = "explicit", }, - [1196] = { + [1197] = { ["id"] = "explicit.stat_2954116742|30546", ["text"] = "Allocates Electrified Claw", ["type"] = "explicit", }, - [1197] = { + [1198] = { ["id"] = "explicit.stat_2954116742|56767", ["text"] = "Allocates Electrifying Daze", ["type"] = "explicit", }, - [1198] = { + [1199] = { ["id"] = "explicit.stat_2954116742|26291", ["text"] = "Allocates Electrifying Nature", ["type"] = "explicit", }, - [1199] = { + [1200] = { ["id"] = "explicit.stat_2954116742|7275", ["text"] = "Allocates Electrocuting Exposure", ["type"] = "explicit", }, - [1200] = { + [1201] = { ["id"] = "explicit.stat_2954116742|36364", ["text"] = "Allocates Electrocution", ["type"] = "explicit", }, - [1201] = { + [1202] = { ["id"] = "explicit.stat_2954116742|43090", ["text"] = "Allocates Electrotherapy", ["type"] = "explicit", }, - [1202] = { + [1203] = { ["id"] = "explicit.stat_2954116742|10612", ["text"] = "Allocates Embodiment of Frost", ["type"] = "explicit", }, - [1203] = { + [1204] = { ["id"] = "explicit.stat_2954116742|15991", ["text"] = "Allocates Embodiment of Lightning", ["type"] = "explicit", }, - [1204] = { + [1205] = { ["id"] = "explicit.stat_2954116742|43423", ["text"] = "Allocates Emboldened Avatar", ["type"] = "explicit", }, - [1205] = { + [1206] = { ["id"] = "explicit.stat_2954116742|10727", ["text"] = "Allocates Emboldening Casts", ["type"] = "explicit", }, - [1206] = { + [1207] = { ["id"] = "explicit.stat_2954116742|34553", ["text"] = "Allocates Emboldening Lead", ["type"] = "explicit", }, - [1207] = { + [1208] = { ["id"] = "explicit.stat_2954116742|9928", ["text"] = "Allocates Embracing Frost", ["type"] = "explicit", }, - [1208] = { + [1209] = { ["id"] = "explicit.stat_2954116742|8782", ["text"] = "Allocates Empowering Infusions", ["type"] = "explicit", }, - [1209] = { + [1210] = { ["id"] = "explicit.stat_2954116742|8397", ["text"] = "Allocates Empowering Remains", ["type"] = "explicit", }, - [1210] = { + [1211] = { ["id"] = "explicit.stat_2954116742|40985", ["text"] = "Allocates Empowering Remnants", ["type"] = "explicit", }, - [1211] = { + [1212] = { ["id"] = "explicit.stat_2954116742|7542", ["text"] = "Allocates Encompassing Domain", ["type"] = "explicit", }, - [1212] = { + [1213] = { ["id"] = "explicit.stat_2954116742|19955", ["text"] = "Allocates Endless Blizzard", ["type"] = "explicit", }, - [1213] = { + [1214] = { ["id"] = "explicit.stat_2954116742|8273", ["text"] = "Allocates Endless Circuit", ["type"] = "explicit", }, - [1214] = { + [1215] = { ["id"] = "explicit.stat_2954116742|5663", ["text"] = "Allocates Endurance", ["type"] = "explicit", }, - [1215] = { + [1216] = { ["id"] = "explicit.stat_2954116742|15443", ["text"] = "Allocates Endured Suffering", ["type"] = "explicit", }, - [1216] = { + [1217] = { ["id"] = "explicit.stat_2954116742|59070", ["text"] = "Allocates Enduring Archon", ["type"] = "explicit", }, - [1217] = { + [1218] = { ["id"] = "explicit.stat_2954116742|42103", ["text"] = "Allocates Enduring Deflection", ["type"] = "explicit", }, - [1218] = { + [1219] = { ["id"] = "explicit.stat_2954116742|40399", ["text"] = "Allocates Energise", ["type"] = "explicit", }, - [1219] = { + [1220] = { ["id"] = "explicit.stat_2954116742|43633", ["text"] = "Allocates Energising Archon", ["type"] = "explicit", }, - [1220] = { + [1221] = { ["id"] = "explicit.stat_2954116742|34541", ["text"] = "Allocates Energising Deflection", ["type"] = "explicit", }, - [1221] = { + [1222] = { ["id"] = "explicit.stat_2954116742|2814", ["text"] = "Allocates Engineered Blaze", ["type"] = "explicit", }, - [1222] = { + [1223] = { ["id"] = "explicit.stat_2954116742|44299", ["text"] = "Allocates Enhanced Barrier", ["type"] = "explicit", }, - [1223] = { + [1224] = { ["id"] = "explicit.stat_2954116742|51707", ["text"] = "Allocates Enhanced Reflexes", ["type"] = "explicit", }, - [1224] = { + [1225] = { ["id"] = "explicit.stat_2954116742|56237", ["text"] = "Allocates Enhancing Attacks", ["type"] = "explicit", }, - [1225] = { + [1226] = { ["id"] = "explicit.stat_2954116742|30720", ["text"] = "Allocates Entropic Incarnation", ["type"] = "explicit", }, - [1226] = { + [1227] = { ["id"] = "explicit.stat_2954116742|65243", ["text"] = "Allocates Enveloping Presence", ["type"] = "explicit", }, - [1227] = { + [1228] = { ["id"] = "explicit.stat_2954116742|61404", ["text"] = "Allocates Equilibrium", ["type"] = "explicit", }, - [1228] = { + [1229] = { ["id"] = "explicit.stat_2954116742|52684", ["text"] = "Allocates Eroding Chains", ["type"] = "explicit", }, - [1229] = { + [1230] = { ["id"] = "explicit.stat_2954116742|20032", ["text"] = "Allocates Erraticism", ["type"] = "explicit", }, - [1230] = { + [1231] = { ["id"] = "explicit.stat_2954116742|42032", ["text"] = "Allocates Escalating Mayhem", ["type"] = "explicit", }, - [1231] = { + [1232] = { ["id"] = "explicit.stat_2954116742|38628", ["text"] = "Allocates Escalating Toxins", ["type"] = "explicit", }, - [1232] = { + [1233] = { ["id"] = "explicit.stat_2954116742|9187", ["text"] = "Allocates Escalation", ["type"] = "explicit", }, - [1233] = { + [1234] = { ["id"] = "explicit.stat_2954116742|5227", ["text"] = "Allocates Escape Strategy", ["type"] = "explicit", }, - [1234] = { + [1235] = { ["id"] = "explicit.stat_2954116742|17854", ["text"] = "Allocates Escape Velocity", ["type"] = "explicit", }, - [1235] = { + [1236] = { ["id"] = "explicit.stat_2954116742|42077", ["text"] = "Allocates Essence Infusion", ["type"] = "explicit", }, - [1236] = { + [1237] = { ["id"] = "explicit.stat_2954116742|16256", ["text"] = "Allocates Ether Flow", ["type"] = "explicit", }, - [1237] = { + [1238] = { ["id"] = "explicit.stat_2954116742|52191", ["text"] = "Allocates Event Horizon", ["type"] = "explicit", }, - [1238] = { + [1239] = { ["id"] = "explicit.stat_2954116742|13524", ["text"] = "Allocates Everlasting Glory", ["type"] = "explicit", }, - [1239] = { + [1240] = { ["id"] = "explicit.stat_2954116742|24087", ["text"] = "Allocates Everlasting Infusions", ["type"] = "explicit", }, - [1240] = { + [1241] = { ["id"] = "explicit.stat_2954116742|41753", ["text"] = "Allocates Evocational Practitioner", ["type"] = "explicit", }, - [1241] = { + [1242] = { ["id"] = "explicit.stat_2954116742|47420", ["text"] = "Allocates Expendable Army", ["type"] = "explicit", }, - [1242] = { + [1243] = { ["id"] = "explicit.stat_2954116742|39050", ["text"] = "Allocates Exploit", ["type"] = "explicit", }, - [1243] = { + [1244] = { ["id"] = "explicit.stat_2954116742|48581", ["text"] = "Allocates Exploit the Elements", ["type"] = "explicit", }, - [1244] = { + [1245] = { ["id"] = "explicit.stat_2954116742|36333", ["text"] = "Allocates Explosive Empowerment", ["type"] = "explicit", }, - [1245] = { + [1246] = { ["id"] = "explicit.stat_2954116742|21206", ["text"] = "Allocates Explosive Impact", ["type"] = "explicit", }, - [1246] = { + [1247] = { ["id"] = "explicit.stat_2954116742|55835", ["text"] = "Allocates Exposed to the Cosmos", ["type"] = "explicit", }, - [1247] = { + [1248] = { ["id"] = "explicit.stat_2954116742|10423", ["text"] = "Allocates Exposed to the Inferno", ["type"] = "explicit", }, - [1248] = { + [1249] = { ["id"] = "explicit.stat_2954116742|40990", ["text"] = "Allocates Exposed to the Storm", ["type"] = "explicit", }, - [1249] = { + [1250] = { ["id"] = "explicit.stat_2954116742|56112", ["text"] = "Allocates Extinguishing Exhalation", ["type"] = "explicit", }, - [1250] = { + [1251] = { ["id"] = "explicit.stat_2954116742|60034", ["text"] = "Allocates Falcon Dive", ["type"] = "explicit", }, - [1251] = { + [1252] = { ["id"] = "explicit.stat_2954116742|31172", ["text"] = "Allocates Falcon Technique", ["type"] = "explicit", }, - [1252] = { + [1253] = { ["id"] = "explicit.stat_2954116742|60464", ["text"] = "Allocates Fan the Flames", ["type"] = "explicit", }, - [1253] = { + [1254] = { ["id"] = "explicit.stat_2954116742|35477", ["text"] = "Allocates Far Sighted", ["type"] = "explicit", }, - [1254] = { + [1255] = { ["id"] = "explicit.stat_2954116742|55", ["text"] = "Allocates Fast Acting Toxins", ["type"] = "explicit", }, - [1255] = { + [1256] = { ["id"] = "explicit.stat_2954116742|8827", ["text"] = "Allocates Fast Metabolism", ["type"] = "explicit", }, - [1256] = { + [1257] = { ["id"] = "explicit.stat_2954116742|3921", ["text"] = "Allocates Fate Finding", ["type"] = "explicit", }, - [1257] = { + [1258] = { ["id"] = "explicit.stat_2954116742|59214", ["text"] = "Allocates Fated End", ["type"] = "explicit", }, - [1258] = { + [1259] = { ["id"] = "explicit.stat_2954116742|19546", ["text"] = "Allocates Favourable Odds", ["type"] = "explicit", }, - [1259] = { + [1260] = { ["id"] = "explicit.stat_2954116742|22532", ["text"] = "Allocates Fearful Paralysis", ["type"] = "explicit", }, - [1260] = { + [1261] = { ["id"] = "explicit.stat_2954116742|60764", ["text"] = "Allocates Feathered Fletching", ["type"] = "explicit", }, - [1261] = { + [1262] = { ["id"] = "explicit.stat_2954116742|9968", ["text"] = "Allocates Feel the Earth", ["type"] = "explicit", }, - [1262] = { + [1263] = { ["id"] = "explicit.stat_2954116742|21537", ["text"] = "Allocates Fervour", ["type"] = "explicit", }, - [1263] = { + [1264] = { ["id"] = "explicit.stat_2954116742|2999", ["text"] = "Allocates Final Barrage", ["type"] = "explicit", }, - [1264] = { + [1265] = { ["id"] = "explicit.stat_2954116742|51867", ["text"] = "Allocates Finality", ["type"] = "explicit", }, - [1265] = { + [1266] = { ["id"] = "explicit.stat_2954116742|38969", ["text"] = "Allocates Finesse", ["type"] = "explicit", }, - [1266] = { + [1267] = { ["id"] = "explicit.stat_2954116742|29899", ["text"] = "Allocates Finish Them", ["type"] = "explicit", }, - [1267] = { + [1268] = { ["id"] = "explicit.stat_2954116742|45013", ["text"] = "Allocates Finishing Blows", ["type"] = "explicit", }, - [1268] = { + [1269] = { ["id"] = "explicit.stat_2954116742|54911", ["text"] = "Allocates Firestarter", ["type"] = "explicit", }, - [1269] = { + [1270] = { ["id"] = "explicit.stat_2954116742|29527", ["text"] = "Allocates First Approach", ["type"] = "explicit", }, - [1270] = { + [1271] = { ["id"] = "explicit.stat_2954116742|62963", ["text"] = "Allocates Flamewalker", ["type"] = "explicit", }, - [1271] = { + [1272] = { ["id"] = "explicit.stat_2954116742|43584", ["text"] = "Allocates Flare", ["type"] = "explicit", }, - [1272] = { + [1273] = { ["id"] = "explicit.stat_2954116742|12337", ["text"] = "Allocates Flash Storm", ["type"] = "explicit", }, - [1273] = { + [1274] = { ["id"] = "explicit.stat_2954116742|64851", ["text"] = "Allocates Flashy Parrying", ["type"] = "explicit", }, - [1274] = { + [1275] = { ["id"] = "explicit.stat_2954116742|21164", ["text"] = "Allocates Fleshcrafting", ["type"] = "explicit", }, - [1275] = { + [1276] = { ["id"] = "explicit.stat_2954116742|4985", ["text"] = "Allocates Flip the Script", ["type"] = "explicit", }, - [1276] = { + [1277] = { ["id"] = "explicit.stat_2954116742|32128", ["text"] = "Allocates Flow of Time", ["type"] = "explicit", }, - [1277] = { + [1278] = { ["id"] = "explicit.stat_2954116742|33730", ["text"] = "Allocates Focused Channel", ["type"] = "explicit", }, - [1278] = { + [1279] = { ["id"] = "explicit.stat_2954116742|9227", ["text"] = "Allocates Focused Thrust", ["type"] = "explicit", }, - [1279] = { + [1280] = { ["id"] = "explicit.stat_2954116742|20677", ["text"] = "Allocates For the Jugular", ["type"] = "explicit", }, - [1280] = { + [1281] = { ["id"] = "explicit.stat_2954116742|3985", ["text"] = "Allocates Forces of Nature", ["type"] = "explicit", }, - [1281] = { + [1282] = { ["id"] = "explicit.stat_2954116742|48103", ["text"] = "Allocates Forcewave", ["type"] = "explicit", }, - [1282] = { + [1283] = { ["id"] = "explicit.stat_2954116742|55568", ["text"] = "Allocates Forthcoming", ["type"] = "explicit", }, - [1283] = { + [1284] = { ["id"] = "explicit.stat_2954116742|23940", ["text"] = "Allocates Fortified Aegis", ["type"] = "explicit", }, - [1284] = { + [1285] = { ["id"] = "explicit.stat_2954116742|53607", ["text"] = "Allocates Fortified Location", ["type"] = "explicit", }, - [1285] = { + [1286] = { ["id"] = "explicit.stat_2954116742|35855", ["text"] = "Allocates Fortifying Blood", ["type"] = "explicit", }, - [1286] = { + [1287] = { ["id"] = "explicit.stat_2954116742|59208", ["text"] = "Allocates Frantic Fighter", ["type"] = "explicit", }, - [1287] = { + [1288] = { ["id"] = "explicit.stat_2954116742|28441", ["text"] = "Allocates Frantic Swings", ["type"] = "explicit", }, - [1288] = { + [1289] = { ["id"] = "explicit.stat_2954116742|32301", ["text"] = "Allocates Frazzled", ["type"] = "explicit", }, - [1289] = { + [1290] = { ["id"] = "explicit.stat_2954116742|51606", ["text"] = "Allocates Freedom of Movement", ["type"] = "explicit", }, - [1290] = { + [1291] = { ["id"] = "explicit.stat_2954116742|40270", ["text"] = "Allocates Frenetic", ["type"] = "explicit", }, - [1291] = { + [1292] = { ["id"] = "explicit.stat_2954116742|45751", ["text"] = "Allocates Frightening Shield", ["type"] = "explicit", }, - [1292] = { + [1293] = { ["id"] = "explicit.stat_2954116742|48699", ["text"] = "Allocates Frostwalker", ["type"] = "explicit", }, - [1293] = { + [1294] = { ["id"] = "explicit.stat_2954116742|20289", ["text"] = "Allocates Frozen Claw", ["type"] = "explicit", }, - [1294] = { + [1295] = { ["id"] = "explicit.stat_2954116742|50715", ["text"] = "Allocates Frozen Limit", ["type"] = "explicit", }, - [1295] = { + [1296] = { ["id"] = "explicit.stat_2954116742|37543", ["text"] = "Allocates Full Recovery", ["type"] = "explicit", }, - [1296] = { + [1297] = { ["id"] = "explicit.stat_2954116742|33887", ["text"] = "Allocates Full Salvo", ["type"] = "explicit", }, - [1297] = { + [1298] = { ["id"] = "explicit.stat_2954116742|24630", ["text"] = "Allocates Fulmination", ["type"] = "explicit", }, - [1298] = { + [1299] = { ["id"] = "explicit.stat_2954116742|32976", ["text"] = "Allocates Gem Enthusiast", ["type"] = "explicit", }, - [1299] = { + [1300] = { ["id"] = "explicit.stat_2954116742|27875", ["text"] = "Allocates General Electric", ["type"] = "explicit", }, - [1300] = { + [1301] = { ["id"] = "explicit.stat_2954116742|17150", ["text"] = "Allocates General's Bindings", ["type"] = "explicit", }, - [1301] = { + [1302] = { ["id"] = "explicit.stat_2954116742|9020", ["text"] = "Allocates Giantslayer", ["type"] = "explicit", }, - [1302] = { + [1303] = { ["id"] = "explicit.stat_2954116742|46365", ["text"] = "Allocates Gigantic Following", ["type"] = "explicit", }, - [1303] = { + [1304] = { ["id"] = "explicit.stat_2954116742|41972", ["text"] = "Allocates Glaciation", ["type"] = "explicit", }, - [1304] = { + [1305] = { ["id"] = "explicit.stat_2954116742|56488", ["text"] = "Allocates Glancing Deflection", ["type"] = "explicit", }, - [1305] = { + [1306] = { ["id"] = "explicit.stat_2954116742|23939", ["text"] = "Allocates Glazed Flesh", ["type"] = "explicit", }, - [1306] = { + [1307] = { ["id"] = "explicit.stat_2954116742|63031", ["text"] = "Allocates Glorious Anticipation", ["type"] = "explicit", }, - [1307] = { + [1308] = { ["id"] = "explicit.stat_2954116742|47316", ["text"] = "Allocates Goring", ["type"] = "explicit", }, - [1308] = { + [1309] = { ["id"] = "explicit.stat_2954116742|41905", ["text"] = "Allocates Gravedigger", ["type"] = "explicit", }, - [1309] = { + [1310] = { ["id"] = "explicit.stat_2954116742|27687", ["text"] = "Allocates Greatest Defence", ["type"] = "explicit", }, - [1310] = { + [1311] = { ["id"] = "explicit.stat_2954116742|58714", ["text"] = "Allocates Grenadier", ["type"] = "explicit", }, - [1311] = { + [1312] = { ["id"] = "explicit.stat_2954116742|31175", ["text"] = "Allocates Grip of Evil", ["type"] = "explicit", }, - [1312] = { + [1313] = { ["id"] = "explicit.stat_2954116742|20416", ["text"] = "Allocates Grit", ["type"] = "explicit", }, - [1313] = { + [1314] = { ["id"] = "explicit.stat_2954116742|13844", ["text"] = "Allocates Growing Peril", ["type"] = "explicit", }, - [1314] = { + [1315] = { ["id"] = "explicit.stat_2954116742|14945", ["text"] = "Allocates Growing Swarm", ["type"] = "explicit", }, - [1315] = { + [1316] = { ["id"] = "explicit.stat_2954116742|4331", ["text"] = "Allocates Guided Hand", ["type"] = "explicit", }, - [1316] = { + [1317] = { ["id"] = "explicit.stat_2954116742|46499", ["text"] = "Allocates Guts", ["type"] = "explicit", }, - [1317] = { + [1318] = { ["id"] = "explicit.stat_2954116742|29762", ["text"] = "Allocates Guttural Roar", ["type"] = "explicit", }, - [1318] = { + [1319] = { ["id"] = "explicit.stat_2954116742|33229", ["text"] = "Allocates Haemorrhaging Cuts", ["type"] = "explicit", }, - [1319] = { + [1320] = { ["id"] = "explicit.stat_2954116742|44974", ["text"] = "Allocates Hail", ["type"] = "explicit", }, - [1320] = { + [1321] = { ["id"] = "explicit.stat_2954116742|15374", ["text"] = "Allocates Hale Heart", ["type"] = "explicit", }, - [1321] = { + [1322] = { ["id"] = "explicit.stat_2954116742|52803", ["text"] = "Allocates Hale Traveller", ["type"] = "explicit", }, - [1322] = { + [1323] = { ["id"] = "explicit.stat_2954116742|34531", ["text"] = "Allocates Hallowed", ["type"] = "explicit", }, - [1323] = { + [1324] = { ["id"] = "explicit.stat_2954116742|24438", ["text"] = "Allocates Hardened Wood", ["type"] = "explicit", }, - [1324] = { + [1325] = { ["id"] = "explicit.stat_2954116742|40480", ["text"] = "Allocates Harmonic Generator", ["type"] = "explicit", }, - [1325] = { + [1326] = { ["id"] = "explicit.stat_2954116742|12611", ["text"] = "Allocates Harness the Elements", ["type"] = "explicit", }, - [1326] = { + [1327] = { ["id"] = "explicit.stat_2954116742|26331", ["text"] = "Allocates Harsh Winter", ["type"] = "explicit", }, - [1327] = { + [1328] = { ["id"] = "explicit.stat_2954116742|44293", ["text"] = "Allocates Hastening Barrier", ["type"] = "explicit", }, - [1328] = { + [1329] = { ["id"] = "explicit.stat_2954116742|48215", ["text"] = "Allocates Headshot", ["type"] = "explicit", }, - [1329] = { + [1330] = { ["id"] = "explicit.stat_2954116742|35966", ["text"] = "Allocates Heart Tissue", ["type"] = "explicit", }, - [1330] = { + [1331] = { ["id"] = "explicit.stat_2954116742|13407", ["text"] = "Allocates Heartbreaking", ["type"] = "explicit", }, - [1331] = { + [1332] = { ["id"] = "explicit.stat_2954116742|38537", ["text"] = "Allocates Heartstopping", ["type"] = "explicit", }, - [1332] = { + [1333] = { ["id"] = "explicit.stat_2954116742|9896", ["text"] = "Allocates Heartstopping Presence", ["type"] = "explicit", }, - [1333] = { + [1334] = { ["id"] = "explicit.stat_2954116742|372", ["text"] = "Allocates Heatproof", ["type"] = "explicit", }, - [1334] = { + [1335] = { ["id"] = "explicit.stat_2954116742|11826", ["text"] = "Allocates Heavy Ammunition", ["type"] = "explicit", }, - [1335] = { + [1336] = { ["id"] = "explicit.stat_2954116742|59589", ["text"] = "Allocates Heavy Armour", ["type"] = "explicit", }, - [1336] = { + [1337] = { ["id"] = "explicit.stat_2954116742|27491", ["text"] = "Allocates Heavy Buffer", ["type"] = "explicit", }, - [1337] = { + [1338] = { ["id"] = "explicit.stat_2954116742|56997", ["text"] = "Allocates Heavy Contact", ["type"] = "explicit", }, - [1338] = { + [1339] = { ["id"] = "explicit.stat_2954116742|15617", ["text"] = "Allocates Heavy Drinker", ["type"] = "explicit", }, - [1339] = { + [1340] = { ["id"] = "explicit.stat_2954116742|4959", ["text"] = "Allocates Heavy Frost", ["type"] = "explicit", }, - [1340] = { + [1341] = { ["id"] = "explicit.stat_2954116742|41512", ["text"] = "Allocates Heavy Weaponry", ["type"] = "explicit", }, - [1341] = { + [1342] = { ["id"] = "explicit.stat_2954116742|48418", ["text"] = "Allocates Hefty Unit", ["type"] = "explicit", }, - [1342] = { + [1343] = { ["id"] = "explicit.stat_2954116742|45777", ["text"] = "Allocates Hidden Barb", ["type"] = "explicit", }, - [1343] = { + [1344] = { ["id"] = "explicit.stat_2954116742|41935", ["text"] = "Allocates Hide of the Bear", ["type"] = "explicit", }, - [1344] = { + [1345] = { ["id"] = "explicit.stat_2954116742|30456", ["text"] = "Allocates High Alert", ["type"] = "explicit", }, - [1345] = { + [1346] = { ["id"] = "explicit.stat_2954116742|54805", ["text"] = "Allocates Hindered Capabilities", ["type"] = "explicit", }, - [1346] = { + [1347] = { ["id"] = "explicit.stat_2954116742|60273", ["text"] = "Allocates Hindering Obstacles", ["type"] = "explicit", }, - [1347] = { + [1348] = { ["id"] = "explicit.stat_2954116742|23078", ["text"] = "Allocates Holy Protector", ["type"] = "explicit", }, - [1348] = { + [1349] = { ["id"] = "explicit.stat_2954116742|48014", ["text"] = "Allocates Honourless", ["type"] = "explicit", }, - [1349] = { + [1350] = { ["id"] = "explicit.stat_2954116742|30395", ["text"] = "Allocates Howling Beast", ["type"] = "explicit", }, - [1350] = { + [1351] = { ["id"] = "explicit.stat_2954116742|4673", ["text"] = "Allocates Hulking Smash", ["type"] = "explicit", }, - [1351] = { + [1352] = { ["id"] = "explicit.stat_2954116742|57471", ["text"] = "Allocates Hunker Down", ["type"] = "explicit", }, - [1352] = { + [1353] = { ["id"] = "explicit.stat_2954116742|48617", ["text"] = "Allocates Hunter", ["type"] = "explicit", }, - [1353] = { + [1354] = { ["id"] = "explicit.stat_2954116742|33099", ["text"] = "Allocates Hunter's Talisman", ["type"] = "explicit", }, - [1354] = { + [1355] = { ["id"] = "explicit.stat_2954116742|32655", ["text"] = "Allocates Hunting Companion", ["type"] = "explicit", }, - [1355] = { + [1356] = { ["id"] = "explicit.stat_2954116742|55847", ["text"] = "Allocates Ice Walls", ["type"] = "explicit", }, - [1356] = { + [1357] = { ["id"] = "explicit.stat_2954116742|4031", ["text"] = "Allocates Icebreaker", ["type"] = "explicit", }, - [1357] = { + [1358] = { ["id"] = "explicit.stat_2954116742|32932", ["text"] = "Allocates Ichlotl's Inferno", ["type"] = "explicit", }, - [1358] = { + [1359] = { ["id"] = "explicit.stat_2954116742|7341", ["text"] = "Allocates Ignore Pain", ["type"] = "explicit", }, - [1359] = { + [1360] = { ["id"] = "explicit.stat_2954116742|1823", ["text"] = "Allocates Illuminated Crown", ["type"] = "explicit", }, - [1360] = { + [1361] = { ["id"] = "explicit.stat_2954116742|50912", ["text"] = "Allocates Imbibed Power", ["type"] = "explicit", }, - [1361] = { + [1362] = { ["id"] = "explicit.stat_2954116742|19156", ["text"] = "Allocates Immaterial", ["type"] = "explicit", }, - [1362] = { + [1363] = { ["id"] = "explicit.stat_2954116742|53030", ["text"] = "Allocates Immolation", ["type"] = "explicit", }, - [1363] = { + [1364] = { ["id"] = "explicit.stat_2954116742|24062", ["text"] = "Allocates Immortal Infamy", ["type"] = "explicit", }, - [1364] = { + [1365] = { ["id"] = "explicit.stat_2954116742|51871", ["text"] = "Allocates Immortal Thirst", ["type"] = "explicit", }, - [1365] = { + [1366] = { ["id"] = "explicit.stat_2954116742|16626", ["text"] = "Allocates Impact Area", ["type"] = "explicit", }, - [1366] = { + [1367] = { ["id"] = "explicit.stat_2954116742|64443", ["text"] = "Allocates Impact Force", ["type"] = "explicit", }, - [1367] = { + [1368] = { ["id"] = "explicit.stat_2954116742|46696", ["text"] = "Allocates Impair", ["type"] = "explicit", }, - [1368] = { + [1369] = { ["id"] = "explicit.stat_2954116742|21748", ["text"] = "Allocates Impending Doom", ["type"] = "explicit", }, - [1369] = { + [1370] = { ["id"] = "explicit.stat_2954116742|65023", ["text"] = "Allocates Impenetrable Shell", ["type"] = "explicit", }, - [1370] = { + [1371] = { ["id"] = "explicit.stat_2954116742|57379", ["text"] = "Allocates In Your Face", ["type"] = "explicit", }, - [1371] = { + [1372] = { ["id"] = "explicit.stat_2954116742|35028", ["text"] = "Allocates In the Thick of It", ["type"] = "explicit", }, - [1372] = { + [1373] = { ["id"] = "explicit.stat_2954116742|62310", ["text"] = "Allocates Incendiary", ["type"] = "explicit", }, - [1373] = { + [1374] = { ["id"] = "explicit.stat_2954116742|36630", ["text"] = "Allocates Incision", ["type"] = "explicit", }, - [1374] = { + [1375] = { ["id"] = "explicit.stat_2954116742|47270", ["text"] = "Allocates Inescapable Cold", ["type"] = "explicit", }, - [1375] = { + [1376] = { ["id"] = "explicit.stat_2954116742|22817", ["text"] = "Allocates Inevitable Rupture", ["type"] = "explicit", }, - [1376] = { + [1377] = { ["id"] = "explicit.stat_2954116742|61354", ["text"] = "Allocates Infernal Limit", ["type"] = "explicit", }, - [1377] = { + [1378] = { ["id"] = "explicit.stat_2954116742|57110", ["text"] = "Allocates Infused Flesh", ["type"] = "explicit", }, - [1378] = { + [1379] = { ["id"] = "explicit.stat_2954116742|38965", ["text"] = "Allocates Infused Limits", ["type"] = "explicit", }, - [1379] = { + [1380] = { ["id"] = "explicit.stat_2954116742|24764", ["text"] = "Allocates Infusing Power", ["type"] = "explicit", }, - [1380] = { + [1381] = { ["id"] = "explicit.stat_2954116742|59387", ["text"] = "Allocates Infusion of Power", ["type"] = "explicit", }, - [1381] = { + [1382] = { ["id"] = "explicit.stat_2954116742|39567", ["text"] = "Allocates Ingenuity", ["type"] = "explicit", }, - [1382] = { + [1383] = { ["id"] = "explicit.stat_2954116742|46683", ["text"] = "Allocates Inherited Strength ", ["type"] = "explicit", }, - [1383] = { + [1384] = { ["id"] = "explicit.stat_2954116742|23227", ["text"] = "Allocates Initiative", ["type"] = "explicit", }, - [1384] = { + [1385] = { ["id"] = "explicit.stat_2954116742|30562", ["text"] = "Allocates Inner Faith", ["type"] = "explicit", }, - [1385] = { + [1386] = { ["id"] = "explicit.stat_2954116742|116", ["text"] = "Allocates Insightfulness", ["type"] = "explicit", }, - [1386] = { + [1387] = { ["id"] = "explicit.stat_2954116742|16150", ["text"] = "Allocates Inspiring Ally", ["type"] = "explicit", }, - [1387] = { + [1388] = { ["id"] = "explicit.stat_2954116742|4661", ["text"] = "Allocates Inspiring Leader", ["type"] = "explicit", }, - [1388] = { + [1389] = { ["id"] = "explicit.stat_2954116742|43944", ["text"] = "Allocates Instability", ["type"] = "explicit", }, - [1389] = { + [1390] = { ["id"] = "explicit.stat_2954116742|9736", ["text"] = "Allocates Insulated Treads", ["type"] = "explicit", }, - [1390] = { + [1391] = { ["id"] = "explicit.stat_2954116742|48649", ["text"] = "Allocates Insulating Hide", ["type"] = "explicit", }, - [1391] = { + [1392] = { ["id"] = "explicit.stat_2954116742|46182", ["text"] = "Allocates Intense Dose", ["type"] = "explicit", }, - [1392] = { + [1393] = { ["id"] = "explicit.stat_2954116742|65016", ["text"] = "Allocates Intense Flames", ["type"] = "explicit", }, - [1393] = { + [1394] = { ["id"] = "explicit.stat_2954116742|7668", ["text"] = "Allocates Internal Bleeding", ["type"] = "explicit", }, - [1394] = { + [1395] = { ["id"] = "explicit.stat_2954116742|35369", ["text"] = "Allocates Investing Energies", ["type"] = "explicit", }, - [1395] = { + [1396] = { ["id"] = "explicit.stat_2954116742|41394", ["text"] = "Allocates Invigorating Archon", ["type"] = "explicit", }, - [1396] = { + [1397] = { ["id"] = "explicit.stat_2954116742|50023", ["text"] = "Allocates Invigorating Grandeur", ["type"] = "explicit", }, - [1397] = { + [1398] = { ["id"] = "explicit.stat_2954116742|28408", ["text"] = "Allocates Invigorating Hate", ["type"] = "explicit", }, - [1398] = { + [1399] = { ["id"] = "explicit.stat_2954116742|24491", ["text"] = "Allocates Invocated Echoes", ["type"] = "explicit", }, - [1399] = { + [1400] = { ["id"] = "explicit.stat_2954116742|51934", ["text"] = "Allocates Invocated Efficiency", ["type"] = "explicit", }, - [1400] = { + [1401] = { ["id"] = "explicit.stat_2954116742|338", ["text"] = "Allocates Invocated Limit", ["type"] = "explicit", }, - [1401] = { + [1402] = { ["id"] = "explicit.stat_2954116742|31724", ["text"] = "Allocates Iron Slippers", ["type"] = "explicit", }, - [1402] = { + [1403] = { ["id"] = "explicit.stat_2954116742|22626", ["text"] = "Allocates Irreparable", ["type"] = "explicit", }, - [1403] = { + [1404] = { ["id"] = "explicit.stat_2954116742|16618", ["text"] = "Allocates Jack of all Trades", ["type"] = "explicit", }, - [1404] = { + [1405] = { ["id"] = "explicit.stat_2954116742|10265", ["text"] = "Allocates Javelin", ["type"] = "explicit", }, - [1405] = { + [1406] = { ["id"] = "explicit.stat_2954116742|37302", ["text"] = "Allocates Kept at Bay", ["type"] = "explicit", }, - [1406] = { + [1407] = { ["id"] = "explicit.stat_2954116742|56453", ["text"] = "Allocates Killer Instinct", ["type"] = "explicit", }, - [1407] = { + [1408] = { ["id"] = "explicit.stat_2954116742|26107", ["text"] = "Allocates Kite Runner", ["type"] = "explicit", }, - [1408] = { + [1409] = { ["id"] = "explicit.stat_2954116742|2397", ["text"] = "Allocates Last Stand", ["type"] = "explicit", }, - [1409] = { + [1410] = { ["id"] = "explicit.stat_2954116742|64659", ["text"] = "Allocates Lasting Boons", ["type"] = "explicit", }, - [1410] = { + [1411] = { ["id"] = "explicit.stat_2954116742|58096", ["text"] = "Allocates Lasting Incantations", ["type"] = "explicit", }, - [1411] = { + [1412] = { ["id"] = "explicit.stat_2954116742|61741", ["text"] = "Allocates Lasting Toxins", ["type"] = "explicit", }, - [1412] = { + [1413] = { ["id"] = "explicit.stat_2954116742|18496", ["text"] = "Allocates Lasting Trauma", ["type"] = "explicit", }, - [1413] = { + [1414] = { ["id"] = "explicit.stat_2954116742|8607", ["text"] = "Allocates Lavianga's Brew", ["type"] = "explicit", }, - [1414] = { + [1415] = { ["id"] = "explicit.stat_2954116742|45599", ["text"] = "Allocates Lay Siege", ["type"] = "explicit", }, - [1415] = { + [1416] = { ["id"] = "explicit.stat_2954116742|40687", ["text"] = "Allocates Lead by Example", ["type"] = "explicit", }, - [1416] = { + [1417] = { ["id"] = "explicit.stat_2954116742|8531", ["text"] = "Allocates Leaping Ambush", ["type"] = "explicit", }, - [1417] = { + [1418] = { ["id"] = "explicit.stat_2954116742|51446", ["text"] = "Allocates Leather Bound Gauntlets", ["type"] = "explicit", }, - [1418] = { + [1419] = { ["id"] = "explicit.stat_2954116742|63431", ["text"] = "Allocates Leeching Toxins", ["type"] = "explicit", }, - [1419] = { + [1420] = { ["id"] = "explicit.stat_2954116742|19644", ["text"] = "Allocates Left Hand of Darkness", ["type"] = "explicit", }, - [1420] = { + [1421] = { ["id"] = "explicit.stat_2954116742|55375", ["text"] = "Allocates Licking Wounds", ["type"] = "explicit", }, - [1421] = { + [1422] = { ["id"] = "explicit.stat_2954116742|31129", ["text"] = "Allocates Lifelong Friend", ["type"] = "explicit", }, - [1422] = { + [1423] = { ["id"] = "explicit.stat_2954116742|55131", ["text"] = "Allocates Light on your Feet", ["type"] = "explicit", }, - [1423] = { + [1424] = { ["id"] = "explicit.stat_2954116742|13738", ["text"] = "Allocates Lightning Quick", ["type"] = "explicit", }, - [1424] = { + [1425] = { ["id"] = "explicit.stat_2954116742|44566", ["text"] = "Allocates Lightning Rod", ["type"] = "explicit", }, - [1425] = { + [1426] = { ["id"] = "explicit.stat_2954116742|56063", ["text"] = "Allocates Lingering Horror", ["type"] = "explicit", }, - [1426] = { + [1427] = { ["id"] = "explicit.stat_2954116742|16499", ["text"] = "Allocates Lingering Whispers", ["type"] = "explicit", }, - [1427] = { + [1428] = { ["id"] = "explicit.stat_2954116742|62887", ["text"] = "Allocates Living Death", ["type"] = "explicit", }, - [1428] = { + [1429] = { ["id"] = "explicit.stat_2954116742|31745", ["text"] = "Allocates Lockdown", ["type"] = "explicit", }, - [1429] = { + [1430] = { ["id"] = "explicit.stat_2954116742|56999", ["text"] = "Allocates Locked On", ["type"] = "explicit", }, - [1430] = { + [1431] = { ["id"] = "explicit.stat_2954116742|12964", ["text"] = "Allocates Lone Warrior", ["type"] = "explicit", }, - [1431] = { + [1432] = { ["id"] = "explicit.stat_2954116742|31826", ["text"] = "Allocates Long Distance Relationship", ["type"] = "explicit", }, - [1432] = { + [1433] = { ["id"] = "explicit.stat_2954116742|13542", ["text"] = "Allocates Loose Flesh", ["type"] = "explicit", }, - [1433] = { + [1434] = { ["id"] = "explicit.stat_2954116742|33240", ["text"] = "Allocates Lord of Horrors", ["type"] = "explicit", }, - [1434] = { + [1435] = { ["id"] = "explicit.stat_2954116742|42959", ["text"] = "Allocates Low Tolerance", ["type"] = "explicit", }, - [1435] = { + [1436] = { ["id"] = "explicit.stat_2954116742|51891", ["text"] = "Allocates Lucidity", ["type"] = "explicit", }, - [1436] = { + [1437] = { ["id"] = "explicit.stat_2954116742|59303", ["text"] = "Allocates Lucky Rabbit Foot", ["type"] = "explicit", }, - [1437] = { + [1438] = { ["id"] = "explicit.stat_2954116742|1104", ["text"] = "Allocates Lust for Power", ["type"] = "explicit", }, - [1438] = { + [1439] = { ["id"] = "explicit.stat_2954116742|27009", ["text"] = "Allocates Lust for Sacrifice", ["type"] = "explicit", }, - [1439] = { + [1440] = { ["id"] = "explicit.stat_2954116742|44952", ["text"] = "Allocates Made to Last", ["type"] = "explicit", }, - [1440] = { + [1441] = { ["id"] = "explicit.stat_2954116742|23738", ["text"] = "Allocates Madness in the Bones", ["type"] = "explicit", }, - [1441] = { + [1442] = { ["id"] = "explicit.stat_2954116742|41580", ["text"] = "Allocates Maiming Strike", ["type"] = "explicit", }, - [1442] = { + [1443] = { ["id"] = "explicit.stat_2954116742|37742", ["text"] = "Allocates Manifold Method", ["type"] = "explicit", }, - [1443] = { + [1444] = { ["id"] = "explicit.stat_2954116742|64050", ["text"] = "Allocates Marathon Runner", ["type"] = "explicit", }, - [1444] = { + [1445] = { ["id"] = "explicit.stat_2954116742|44756", ["text"] = "Allocates Marked Agility", ["type"] = "explicit", }, - [1445] = { + [1446] = { ["id"] = "explicit.stat_2954116742|36976", ["text"] = "Allocates Marked for Death", ["type"] = "explicit", }, - [1446] = { + [1447] = { ["id"] = "explicit.stat_2954116742|63830", ["text"] = "Allocates Marked for Sickness", ["type"] = "explicit", }, - [1447] = { + [1448] = { ["id"] = "explicit.stat_2954116742|2113", ["text"] = "Allocates Martial Artistry", ["type"] = "explicit", }, - [1448] = { + [1449] = { ["id"] = "explicit.stat_2954116742|27108", ["text"] = "Allocates Mass Hysteria", ["type"] = "explicit", }, - [1449] = { + [1450] = { ["id"] = "explicit.stat_2954116742|34340", ["text"] = "Allocates Mass Rejuvenation", ["type"] = "explicit", }, - [1450] = { + [1451] = { ["id"] = "explicit.stat_2954116742|30341", ["text"] = "Allocates Master Fletching", ["type"] = "explicit", }, - [1451] = { + [1452] = { ["id"] = "explicit.stat_2954116742|40345", ["text"] = "Allocates Master of Hexes", ["type"] = "explicit", }, - [1452] = { + [1453] = { ["id"] = "explicit.stat_2954116742|27513", ["text"] = "Allocates Material Solidification", ["type"] = "explicit", }, - [1453] = { + [1454] = { ["id"] = "explicit.stat_2954116742|11886", ["text"] = "Allocates Mauling Stuns", ["type"] = "explicit", }, - [1454] = { + [1455] = { ["id"] = "explicit.stat_2954116742|25620", ["text"] = "Allocates Meat Recycling", ["type"] = "explicit", }, - [1455] = { + [1456] = { ["id"] = "explicit.stat_2954116742|3215", ["text"] = "Allocates Melding", ["type"] = "explicit", }, - [1456] = { + [1457] = { ["id"] = "explicit.stat_2954116742|43939", ["text"] = "Allocates Melting Flames", ["type"] = "explicit", }, - [1457] = { + [1458] = { ["id"] = "explicit.stat_2954116742|9652", ["text"] = "Allocates Mending Deflection", ["type"] = "explicit", }, - [1458] = { + [1459] = { ["id"] = "explicit.stat_2954116742|16466", ["text"] = "Allocates Mental Alacrity", ["type"] = "explicit", }, - [1459] = { + [1460] = { ["id"] = "explicit.stat_2954116742|9226", ["text"] = "Allocates Mental Perseverance", ["type"] = "explicit", }, - [1460] = { + [1461] = { ["id"] = "explicit.stat_2954116742|24120", ["text"] = "Allocates Mental Toughness", ["type"] = "explicit", }, - [1461] = { + [1462] = { ["id"] = "explicit.stat_2954116742|45632", ["text"] = "Allocates Mind Eraser", ["type"] = "explicit", }, - [1462] = { + [1463] = { ["id"] = "explicit.stat_2954116742|11392", ["text"] = "Allocates Molten Being", ["type"] = "explicit", }, - [1463] = { + [1464] = { ["id"] = "explicit.stat_2954116742|51868", ["text"] = "Allocates Molten Carapace", ["type"] = "explicit", }, - [1464] = { + [1465] = { ["id"] = "explicit.stat_2954116742|36100", ["text"] = "Allocates Molten Claw", ["type"] = "explicit", }, - [1465] = { + [1466] = { ["id"] = "explicit.stat_2954116742|17548", ["text"] = "Allocates Moment of Truth", ["type"] = "explicit", }, - [1466] = { + [1467] = { ["id"] = "explicit.stat_2954116742|63579", ["text"] = "Allocates Momentum", ["type"] = "explicit", }, - [1467] = { + [1468] = { ["id"] = "explicit.stat_2954116742|47560", ["text"] = "Allocates Multi Shot", ["type"] = "explicit", }, - [1468] = { + [1469] = { ["id"] = "explicit.stat_2954116742|8810", ["text"] = "Allocates Multitasking", ["type"] = "explicit", }, - [1469] = { + [1470] = { ["id"] = "explicit.stat_2954116742|52764", ["text"] = "Allocates Mystical Rage", ["type"] = "explicit", }, - [1470] = { + [1471] = { ["id"] = "explicit.stat_2954116742|934", ["text"] = "Allocates Natural Immunity", ["type"] = "explicit", }, - [1471] = { + [1472] = { ["id"] = "explicit.stat_2954116742|53265", ["text"] = "Allocates Nature's Bite", ["type"] = "explicit", }, - [1472] = { + [1473] = { ["id"] = "explicit.stat_2954116742|4709", ["text"] = "Allocates Near Sighted", ["type"] = "explicit", }, - [1473] = { + [1474] = { ["id"] = "explicit.stat_2954116742|35581", ["text"] = "Allocates Near at Hand", ["type"] = "explicit", }, - [1474] = { + [1475] = { ["id"] = "explicit.stat_2954116742|10499", ["text"] = "Allocates Necromantic Ward", ["type"] = "explicit", }, - [1475] = { + [1476] = { ["id"] = "explicit.stat_2954116742|11376", ["text"] = "Allocates Necrotic Touch", ["type"] = "explicit", }, - [1476] = { + [1477] = { ["id"] = "explicit.stat_2954116742|59541", ["text"] = "Allocates Necrotised Flesh", ["type"] = "explicit", }, - [1477] = { + [1478] = { ["id"] = "explicit.stat_2954116742|40292", ["text"] = "Allocates Nimble Strength", ["type"] = "explicit", }, - [1478] = { + [1479] = { ["id"] = "explicit.stat_2954116742|37266", ["text"] = "Allocates Nourishing Ally", ["type"] = "explicit", }, - [1479] = { + [1480] = { ["id"] = "explicit.stat_2954116742|60992", ["text"] = "Allocates Nurturing Guardian", ["type"] = "explicit", }, - [1480] = { + [1481] = { ["id"] = "explicit.stat_2954116742|42036", ["text"] = "Allocates Off-Balancing Retort", ["type"] = "explicit", }, - [1481] = { + [1482] = { ["id"] = "explicit.stat_2954116742|35918", ["text"] = "Allocates One For All", ["type"] = "explicit", }, - [1482] = { + [1483] = { ["id"] = "explicit.stat_2954116742|44753", ["text"] = "Allocates One With Flame", ["type"] = "explicit", }, - [1483] = { + [1484] = { ["id"] = "explicit.stat_2954116742|34316", ["text"] = "Allocates One with the River", ["type"] = "explicit", }, - [1484] = { + [1485] = { ["id"] = "explicit.stat_2954116742|9444", ["text"] = "Allocates One with the Storm", ["type"] = "explicit", }, - [1485] = { + [1486] = { ["id"] = "explicit.stat_2954116742|52199", ["text"] = "Allocates Overexposure", ["type"] = "explicit", }, - [1486] = { + [1487] = { ["id"] = "explicit.stat_2954116742|65204", ["text"] = "Allocates Overflowing Power", ["type"] = "explicit", }, - [1487] = { + [1488] = { ["id"] = "explicit.stat_2954116742|42390", ["text"] = "Allocates Overheating Blow", ["type"] = "explicit", }, - [1488] = { + [1489] = { ["id"] = "explicit.stat_2954116742|47635", ["text"] = "Allocates Overload", ["type"] = "explicit", }, - [1489] = { + [1490] = { ["id"] = "explicit.stat_2954116742|25513", ["text"] = "Allocates Overwhelm", ["type"] = "explicit", }, - [1490] = { + [1491] = { ["id"] = "explicit.stat_2954116742|57388", ["text"] = "Allocates Overwhelming Strike", ["type"] = "explicit", }, - [1491] = { + [1492] = { ["id"] = "explicit.stat_2954116742|10295", ["text"] = "Allocates Overzealous", ["type"] = "explicit", }, - [1492] = { + [1493] = { ["id"] = "explicit.stat_2954116742|21784", ["text"] = "Allocates Pack Encouragement", ["type"] = "explicit", }, - [1493] = { + [1494] = { ["id"] = "explicit.stat_2954116742|20686", ["text"] = "Allocates Paragon", ["type"] = "explicit", }, - [1494] = { + [1495] = { ["id"] = "explicit.stat_2954116742|24766", ["text"] = "Allocates Paranoia", ["type"] = "explicit", }, - [1495] = { + [1496] = { ["id"] = "explicit.stat_2954116742|56016", ["text"] = "Allocates Passthrough Rounds", ["type"] = "explicit", }, - [1496] = { + [1497] = { ["id"] = "explicit.stat_2954116742|62230", ["text"] = "Allocates Patient Barrier", ["type"] = "explicit", }, - [1497] = { + [1498] = { ["id"] = "explicit.stat_2954116742|60404", ["text"] = "Allocates Perfect Opportunity", ["type"] = "explicit", }, - [1498] = { + [1499] = { ["id"] = "explicit.stat_2954116742|49661", ["text"] = "Allocates Perfectly Placed Knife", ["type"] = "explicit", }, - [1499] = { + [1500] = { ["id"] = "explicit.stat_2954116742|17330", ["text"] = "Allocates Perforation", ["type"] = "explicit", }, - [1500] = { + [1501] = { ["id"] = "explicit.stat_2954116742|2863", ["text"] = "Allocates Perpetual Freeze", ["type"] = "explicit", }, - [1501] = { + [1502] = { ["id"] = "explicit.stat_2954116742|34308", ["text"] = "Allocates Personal Touch", ["type"] = "explicit", }, - [1502] = { + [1503] = { ["id"] = "explicit.stat_2954116742|7651", ["text"] = "Allocates Pierce the Heart", ["type"] = "explicit", }, - [1503] = { + [1504] = { ["id"] = "explicit.stat_2954116742|17260", ["text"] = "Allocates Piercing Claw", ["type"] = "explicit", }, - [1504] = { + [1505] = { ["id"] = "explicit.stat_2954116742|4534", ["text"] = "Allocates Piercing Shot", ["type"] = "explicit", }, - [1505] = { + [1506] = { ["id"] = "explicit.stat_2954116742|51129", ["text"] = "Allocates Pile On", ["type"] = "explicit", }, - [1506] = { + [1507] = { ["id"] = "explicit.stat_2954116742|60083", ["text"] = "Allocates Pin and Run", ["type"] = "explicit", }, - [1507] = { + [1508] = { ["id"] = "explicit.stat_2954116742|4447", ["text"] = "Allocates Pin their Motivation", ["type"] = "explicit", }, - [1508] = { + [1509] = { ["id"] = "explicit.stat_2954116742|16816", ["text"] = "Allocates Pinpoint Shot", ["type"] = "explicit", }, - [1509] = { + [1510] = { ["id"] = "explicit.stat_2954116742|38111", ["text"] = "Allocates Pliable Flesh", ["type"] = "explicit", }, - [1510] = { + [1511] = { ["id"] = "explicit.stat_2954116742|58426", ["text"] = "Allocates Pocket Sand", ["type"] = "explicit", }, - [1511] = { + [1512] = { ["id"] = "explicit.stat_2954116742|27950", ["text"] = "Allocates Polished Iron", ["type"] = "explicit", }, - [1512] = { + [1513] = { ["id"] = "explicit.stat_2954116742|57047", ["text"] = "Allocates Polymathy", ["type"] = "explicit", }, - [1513] = { + [1514] = { ["id"] = "explicit.stat_2954116742|19125", ["text"] = "Allocates Potent Incantation", ["type"] = "explicit", }, - [1514] = { + [1515] = { ["id"] = "explicit.stat_2954116742|15083", ["text"] = "Allocates Power Conduction", ["type"] = "explicit", }, - [1515] = { + [1516] = { ["id"] = "explicit.stat_2954116742|6178", ["text"] = "Allocates Power Shots", ["type"] = "explicit", }, - [1516] = { + [1517] = { ["id"] = "explicit.stat_2954116742|49150", ["text"] = "Allocates Precise Invocations", ["type"] = "explicit", }, - [1517] = { + [1518] = { ["id"] = "explicit.stat_2954116742|13895", ["text"] = "Allocates Precise Point", ["type"] = "explicit", }, - [1518] = { + [1519] = { ["id"] = "explicit.stat_2954116742|34425", ["text"] = "Allocates Precise Volatility", ["type"] = "explicit", }, - [1519] = { + [1520] = { ["id"] = "explicit.stat_2954116742|19337", ["text"] = "Allocates Precision Salvo", ["type"] = "explicit", }, - [1520] = { + [1521] = { ["id"] = "explicit.stat_2954116742|21380", ["text"] = "Allocates Preemptive Strike", ["type"] = "explicit", }, - [1521] = { + [1522] = { ["id"] = "explicit.stat_2954116742|37872", ["text"] = "Allocates Presence Present", ["type"] = "explicit", }, - [1522] = { + [1523] = { ["id"] = "explicit.stat_2954116742|32951", ["text"] = "Allocates Preservation", ["type"] = "explicit", }, - [1523] = { + [1524] = { ["id"] = "explicit.stat_2954116742|28329", ["text"] = "Allocates Pressure Points", ["type"] = "explicit", }, - [1524] = { + [1525] = { ["id"] = "explicit.stat_2954116742|9908", ["text"] = "Allocates Price of Freedom", ["type"] = "explicit", }, - [1525] = { + [1526] = { ["id"] = "explicit.stat_2954116742|32071", ["text"] = "Allocates Primal Growth", ["type"] = "explicit", }, - [1526] = { + [1527] = { ["id"] = "explicit.stat_2954116742|31364", ["text"] = "Allocates Primal Protection", ["type"] = "explicit", }, - [1527] = { + [1528] = { ["id"] = "explicit.stat_2954116742|28892", ["text"] = "Allocates Primal Rage", ["type"] = "explicit", }, - [1528] = { + [1529] = { ["id"] = "explicit.stat_2954116742|50884", ["text"] = "Allocates Primal Sundering", ["type"] = "explicit", }, - [1529] = { + [1530] = { ["id"] = "explicit.stat_2954116742|26356", ["text"] = "Allocates Primed to Explode", ["type"] = "explicit", }, - [1530] = { + [1531] = { ["id"] = "explicit.stat_2954116742|62034", ["text"] = "Allocates Prism Guard", ["type"] = "explicit", }, - [1531] = { + [1532] = { ["id"] = "explicit.stat_2954116742|54814", ["text"] = "Allocates Profane Commander", ["type"] = "explicit", }, - [1532] = { + [1533] = { ["id"] = "explicit.stat_2954116742|58397", ["text"] = "Allocates Proficiency", ["type"] = "explicit", }, - [1533] = { + [1534] = { ["id"] = "explicit.stat_2954116742|19236", ["text"] = "Allocates Projectile Bulwark", ["type"] = "explicit", }, - [1534] = { + [1535] = { ["id"] = "explicit.stat_2954116742|45874", ["text"] = "Allocates Proliferating Weeds", ["type"] = "explicit", }, - [1535] = { + [1536] = { ["id"] = "explicit.stat_2954116742|19442", ["text"] = "Allocates Prolonged Assault", ["type"] = "explicit", }, - [1536] = { + [1537] = { ["id"] = "explicit.stat_2954116742|49550", ["text"] = "Allocates Prolonged Fury", ["type"] = "explicit", }, - [1537] = { + [1538] = { ["id"] = "explicit.stat_2954116742|54998", ["text"] = "Allocates Protraction", ["type"] = "explicit", }, - [1538] = { + [1539] = { ["id"] = "explicit.stat_2954116742|38614", ["text"] = "Allocates Psychic Fragmentation", ["type"] = "explicit", }, - [1539] = { + [1540] = { ["id"] = "explicit.stat_2954116742|13482", ["text"] = "Allocates Punctured Lung", ["type"] = "explicit", }, - [1540] = { + [1541] = { ["id"] = "explicit.stat_2954116742|55149", ["text"] = "Allocates Pure Chaos", ["type"] = "explicit", }, - [1541] = { + [1542] = { ["id"] = "explicit.stat_2954116742|28975", ["text"] = "Allocates Pure Power", ["type"] = "explicit", }, - [1542] = { + [1543] = { ["id"] = "explicit.stat_2954116742|6229", ["text"] = "Allocates Push the Advantage", ["type"] = "explicit", }, - [1543] = { + [1544] = { ["id"] = "explicit.stat_2954116742|33542", ["text"] = "Allocates Quick Fingers", ["type"] = "explicit", }, - [1544] = { + [1545] = { ["id"] = "explicit.stat_2954116742|48240", ["text"] = "Allocates Quick Recovery", ["type"] = "explicit", }, - [1545] = { + [1546] = { ["id"] = "explicit.stat_2954116742|55450", ["text"] = "Allocates Rallying Form", ["type"] = "explicit", }, - [1546] = { + [1547] = { ["id"] = "explicit.stat_2954116742|43791", ["text"] = "Allocates Rallying Icon", ["type"] = "explicit", }, - [1547] = { + [1548] = { ["id"] = "explicit.stat_2954116742|64119", ["text"] = "Allocates Rapid Reload", ["type"] = "explicit", }, - [1548] = { + [1549] = { ["id"] = "explicit.stat_2954116742|7604", ["text"] = "Allocates Rapid Strike", ["type"] = "explicit", }, - [1549] = { + [1550] = { ["id"] = "explicit.stat_2954116742|62185", ["text"] = "Allocates Rattled", ["type"] = "explicit", }, - [1550] = { + [1551] = { ["id"] = "explicit.stat_2954116742|3567", ["text"] = "Allocates Raw Mana", ["type"] = "explicit", }, - [1551] = { + [1552] = { ["id"] = "explicit.stat_2954116742|17372", ["text"] = "Allocates Reaching Strike", ["type"] = "explicit", }, - [1552] = { + [1553] = { ["id"] = "explicit.stat_2954116742|10602", ["text"] = "Allocates Reaving", ["type"] = "explicit", }, - [1553] = { + [1554] = { ["id"] = "explicit.stat_2954116742|45244", ["text"] = "Allocates Refills", ["type"] = "explicit", }, - [1554] = { + [1555] = { ["id"] = "explicit.stat_2954116742|26447", ["text"] = "Allocates Refocus", ["type"] = "explicit", }, - [1555] = { + [1556] = { ["id"] = "explicit.stat_2954116742|20388", ["text"] = "Allocates Regenerative Flesh", ["type"] = "explicit", }, - [1556] = { + [1557] = { ["id"] = "explicit.stat_2954116742|56388", ["text"] = "Allocates Reinforced Rallying", ["type"] = "explicit", }, - [1557] = { + [1558] = { ["id"] = "explicit.stat_2954116742|35809", ["text"] = "Allocates Reinvigoration", ["type"] = "explicit", }, - [1558] = { + [1559] = { ["id"] = "explicit.stat_2954116742|55180", ["text"] = "Allocates Relentless Fallen", ["type"] = "explicit", }, - [1559] = { + [1560] = { ["id"] = "explicit.stat_2954116742|1506", ["text"] = "Allocates Remnant Attraction", ["type"] = "explicit", }, - [1560] = { + [1561] = { ["id"] = "explicit.stat_2954116742|65468", ["text"] = "Allocates Repeating Explosives", ["type"] = "explicit", }, - [1561] = { + [1562] = { ["id"] = "explicit.stat_2954116742|20414", ["text"] = "Allocates Reprisal", ["type"] = "explicit", }, - [1562] = { + [1563] = { ["id"] = "explicit.stat_2954116742|10029", ["text"] = "Allocates Repulsion", ["type"] = "explicit", }, - [1563] = { + [1564] = { ["id"] = "explicit.stat_2954116742|56860", ["text"] = "Allocates Resolute Reprisal", ["type"] = "explicit", }, - [1564] = { + [1565] = { ["id"] = "explicit.stat_2954116742|40325", ["text"] = "Allocates Resolution", ["type"] = "explicit", }, - [1565] = { + [1566] = { ["id"] = "explicit.stat_2954116742|38972", ["text"] = "Allocates Restless Dead", ["type"] = "explicit", }, - [1566] = { + [1567] = { ["id"] = "explicit.stat_2954116742|31773", ["text"] = "Allocates Resurging Archon", ["type"] = "explicit", }, - [1567] = { + [1568] = { ["id"] = "explicit.stat_2954116742|7395", ["text"] = "Allocates Retaliation", ["type"] = "explicit", }, - [1568] = { + [1569] = { ["id"] = "explicit.stat_2954116742|9009", ["text"] = "Allocates Return to Nature", ["type"] = "explicit", }, - [1569] = { + [1570] = { ["id"] = "explicit.stat_2954116742|7062", ["text"] = "Allocates Reusable Ammunition", ["type"] = "explicit", }, - [1570] = { + [1571] = { ["id"] = "explicit.stat_2954116742|3188", ["text"] = "Allocates Revenge", ["type"] = "explicit", }, - [1571] = { + [1572] = { ["id"] = "explicit.stat_2954116742|8660", ["text"] = "Allocates Reverberation", ["type"] = "explicit", }, - [1572] = { + [1573] = { ["id"] = "explicit.stat_2954116742|8957", ["text"] = "Allocates Right Hand of Darkness", ["type"] = "explicit", }, - [1573] = { + [1574] = { ["id"] = "explicit.stat_2954116742|28613", ["text"] = "Allocates Roaring Cries", ["type"] = "explicit", }, - [1574] = { + [1575] = { ["id"] = "explicit.stat_2954116742|60269", ["text"] = "Allocates Roil", ["type"] = "explicit", }, - [1575] = { + [1576] = { ["id"] = "explicit.stat_2954116742|61112", ["text"] = "Allocates Roll and Strike", ["type"] = "explicit", }, - [1576] = { + [1577] = { ["id"] = "explicit.stat_2954116742|8483", ["text"] = "Allocates Ruin", ["type"] = "explicit", }, - [1577] = { + [1578] = { ["id"] = "explicit.stat_2954116742|18959", ["text"] = "Allocates Ruinic Helm", ["type"] = "explicit", }, - [1578] = { + [1579] = { ["id"] = "explicit.stat_2954116742|53566", ["text"] = "Allocates Run and Gun", ["type"] = "explicit", }, - [1579] = { + [1580] = { ["id"] = "explicit.stat_2954116742|7782", ["text"] = "Allocates Rupturing Pins", ["type"] = "explicit", }, - [1580] = { + [1581] = { ["id"] = "explicit.stat_2954116742|9290", ["text"] = "Allocates Rusted Pins", ["type"] = "explicit", }, - [1581] = { + [1582] = { ["id"] = "explicit.stat_2954116742|14294", ["text"] = "Allocates Sacrificial Blood", ["type"] = "explicit", }, - [1582] = { + [1583] = { ["id"] = "explicit.stat_2954116742|25619", ["text"] = "Allocates Sand in the Eyes", ["type"] = "explicit", }, - [1583] = { + [1584] = { ["id"] = "explicit.stat_2954116742|58215", ["text"] = "Allocates Sanguimantic Rituals", ["type"] = "explicit", }, - [1584] = { + [1585] = { ["id"] = "explicit.stat_2954116742|4810", ["text"] = "Allocates Sanguine Tolerance", ["type"] = "explicit", }, - [1585] = { + [1586] = { ["id"] = "explicit.stat_2954116742|42070", ["text"] = "Allocates Saqawal's Guidance", ["type"] = "explicit", }, - [1586] = { + [1587] = { ["id"] = "explicit.stat_2954116742|63255", ["text"] = "Allocates Savagery", ["type"] = "explicit", }, - [1587] = { + [1588] = { ["id"] = "explicit.stat_2954116742|18397", ["text"] = "Allocates Savoured Blood", ["type"] = "explicit", }, - [1588] = { + [1589] = { ["id"] = "explicit.stat_2954116742|45713", ["text"] = "Allocates Savouring", ["type"] = "explicit", }, - [1589] = { + [1590] = { ["id"] = "explicit.stat_2954116742|60619", ["text"] = "Allocates Scales of the Wyvern", ["type"] = "explicit", }, - [1590] = { + [1591] = { ["id"] = "explicit.stat_2954116742|39884", ["text"] = "Allocates Searing Heat", ["type"] = "explicit", }, - [1591] = { + [1592] = { ["id"] = "explicit.stat_2954116742|52229", ["text"] = "Allocates Secrets of the Orb", ["type"] = "explicit", }, - [1592] = { + [1593] = { ["id"] = "explicit.stat_2954116742|5009", ["text"] = "Allocates Seeing Stars", ["type"] = "explicit", }, - [1593] = { + [1594] = { ["id"] = "explicit.stat_2954116742|23630", ["text"] = "Allocates Self Immolation", ["type"] = "explicit", }, - [1594] = { + [1595] = { ["id"] = "explicit.stat_2954116742|44917", ["text"] = "Allocates Self Mortification", ["type"] = "explicit", }, - [1595] = { + [1596] = { ["id"] = "explicit.stat_2954116742|36085", ["text"] = "Allocates Serrated Edges", ["type"] = "explicit", }, - [1596] = { + [1597] = { ["id"] = "explicit.stat_2954116742|13457", ["text"] = "Allocates Shadow Dancing", ["type"] = "explicit", }, - [1597] = { + [1598] = { ["id"] = "explicit.stat_2954116742|53150", ["text"] = "Allocates Sharp Sight", ["type"] = "explicit", }, - [1598] = { + [1599] = { ["id"] = "explicit.stat_2954116742|61703", ["text"] = "Allocates Sharpened Claw", ["type"] = "explicit", }, - [1599] = { + [1600] = { ["id"] = "explicit.stat_2954116742|41811", ["text"] = "Allocates Shatter Palm", ["type"] = "explicit", }, - [1600] = { + [1601] = { ["id"] = "explicit.stat_2954116742|49740", ["text"] = "Allocates Shattered Crystal", ["type"] = "explicit", }, - [1601] = { + [1602] = { ["id"] = "explicit.stat_2954116742|48658", ["text"] = "Allocates Shattering", ["type"] = "explicit", }, - [1602] = { + [1603] = { ["id"] = "explicit.stat_2954116742|53527", ["text"] = "Allocates Shattering Blow", ["type"] = "explicit", }, - [1603] = { + [1604] = { ["id"] = "explicit.stat_2954116742|64415", ["text"] = "Allocates Shattering Daze", ["type"] = "explicit", }, - [1604] = { + [1605] = { ["id"] = "explicit.stat_2954116742|15644", ["text"] = "Allocates Shedding Skin", ["type"] = "explicit", }, - [1605] = { + [1606] = { ["id"] = "explicit.stat_2954116742|37244", ["text"] = "Allocates Shield Expertise", ["type"] = "explicit", }, - [1606] = { + [1607] = { ["id"] = "explicit.stat_2954116742|57617", ["text"] = "Allocates Shifted Strikes", ["type"] = "explicit", }, - [1607] = { + [1608] = { ["id"] = "explicit.stat_2954116742|53941", ["text"] = "Allocates Shimmering", ["type"] = "explicit", }, - [1608] = { + [1609] = { ["id"] = "explicit.stat_2954116742|5335", ["text"] = "Allocates Shimmering Mirage", ["type"] = "explicit", }, - [1609] = { + [1610] = { ["id"] = "explicit.stat_2954116742|29800", ["text"] = "Allocates Shocking Limit", ["type"] = "explicit", }, - [1610] = { + [1611] = { ["id"] = "explicit.stat_2954116742|32448", ["text"] = "Allocates Shockproof", ["type"] = "explicit", }, - [1611] = { + [1612] = { ["id"] = "explicit.stat_2954116742|1087", ["text"] = "Allocates Shockwaves", ["type"] = "explicit", }, - [1612] = { + [1613] = { ["id"] = "explicit.stat_2954116742|46296", ["text"] = "Allocates Short Shot", ["type"] = "explicit", }, - [1613] = { + [1614] = { ["id"] = "explicit.stat_2954116742|55060", ["text"] = "Allocates Shrapnel", ["type"] = "explicit", }, - [1614] = { + [1615] = { ["id"] = "explicit.stat_2954116742|14211", ["text"] = "Allocates Shredding Contraptions", ["type"] = "explicit", }, - [1615] = { + [1616] = { ["id"] = "explicit.stat_2954116742|5284", ["text"] = "Allocates Shredding Force", ["type"] = "explicit", }, - [1616] = { + [1617] = { ["id"] = "explicit.stat_2954116742|47088", ["text"] = "Allocates Sic 'Em", ["type"] = "explicit", }, - [1617] = { + [1618] = { ["id"] = "explicit.stat_2954116742|63037", ["text"] = "Allocates Sigil of Fire", ["type"] = "explicit", }, - [1618] = { + [1619] = { ["id"] = "explicit.stat_2954116742|40803", ["text"] = "Allocates Sigil of Ice", ["type"] = "explicit", }, - [1619] = { + [1620] = { ["id"] = "explicit.stat_2954116742|46024", ["text"] = "Allocates Sigil of Lightning", ["type"] = "explicit", }, - [1620] = { + [1621] = { ["id"] = "explicit.stat_2954116742|17229", ["text"] = "Allocates Silent Guardian", ["type"] = "explicit", }, - [1621] = { + [1622] = { ["id"] = "explicit.stat_2954116742|52392", ["text"] = "Allocates Singular Purpose", ["type"] = "explicit", }, - [1622] = { + [1623] = { ["id"] = "explicit.stat_2954116742|15829", ["text"] = "Allocates Siphon", ["type"] = "explicit", }, - [1623] = { + [1624] = { ["id"] = "explicit.stat_2954116742|12906", ["text"] = "Allocates Sitting Duck", ["type"] = "explicit", }, - [1624] = { + [1625] = { ["id"] = "explicit.stat_2954116742|2645", ["text"] = "Allocates Skullcrusher", ["type"] = "explicit", }, - [1625] = { + [1626] = { ["id"] = "explicit.stat_2954116742|55308", ["text"] = "Allocates Sling Shots", ["type"] = "explicit", }, - [1626] = { + [1627] = { ["id"] = "explicit.stat_2954116742|23362", ["text"] = "Allocates Slippery Ice", ["type"] = "explicit", }, - [1627] = { + [1628] = { ["id"] = "explicit.stat_2954116742|31326", ["text"] = "Allocates Slow Burn", ["type"] = "explicit", }, - [1628] = { + [1629] = { ["id"] = "explicit.stat_2954116742|54148", ["text"] = "Allocates Smoke Inhalation", ["type"] = "explicit", }, - [1629] = { + [1630] = { ["id"] = "explicit.stat_2954116742|11526", ["text"] = "Allocates Sniper", ["type"] = "explicit", }, - [1630] = { + [1631] = { ["id"] = "explicit.stat_2954116742|9421", ["text"] = "Allocates Snowpiercer", ["type"] = "explicit", }, - [1631] = { + [1632] = { ["id"] = "explicit.stat_2954116742|51169", ["text"] = "Allocates Soul Bloom", ["type"] = "explicit", }, - [1632] = { + [1633] = { ["id"] = "explicit.stat_2954116742|34473", ["text"] = "Allocates Spaghettification", ["type"] = "explicit", }, - [1633] = { + [1634] = { ["id"] = "explicit.stat_2954116742|14602", ["text"] = "Allocates Specialised Shots", ["type"] = "explicit", }, - [1634] = { + [1635] = { ["id"] = "explicit.stat_2954116742|34324", ["text"] = "Allocates Spectral Ward", ["type"] = "explicit", }, - [1635] = { + [1636] = { ["id"] = "explicit.stat_2954116742|17254", ["text"] = "Allocates Spell Haste", ["type"] = "explicit", }, - [1636] = { + [1637] = { ["id"] = "explicit.stat_2954116742|49984", ["text"] = "Allocates Spellblade", ["type"] = "explicit", }, - [1637] = { + [1638] = { ["id"] = "explicit.stat_2954116742|3698", ["text"] = "Allocates Spike Pit", ["type"] = "explicit", }, - [1638] = { + [1639] = { ["id"] = "explicit.stat_2954116742|40117", ["text"] = "Allocates Spiked Armour", ["type"] = "explicit", }, - [1639] = { + [1640] = { ["id"] = "explicit.stat_2954116742|36808", ["text"] = "Allocates Spiked Shield", ["type"] = "explicit", }, - [1640] = { + [1641] = { ["id"] = "explicit.stat_2954116742|1546", ["text"] = "Allocates Spiral into Depression", ["type"] = "explicit", }, - [1641] = { + [1642] = { ["id"] = "explicit.stat_2954116742|2138", ["text"] = "Allocates Spiral into Insanity", ["type"] = "explicit", }, - [1642] = { + [1643] = { ["id"] = "explicit.stat_2954116742|14934", ["text"] = "Allocates Spiral into Mania", ["type"] = "explicit", }, - [1643] = { + [1644] = { ["id"] = "explicit.stat_2954116742|51105", ["text"] = "Allocates Spirit Bond", ["type"] = "explicit", }, - [1644] = { + [1645] = { ["id"] = "explicit.stat_2954116742|9328", ["text"] = "Allocates Spirit of the Bear", ["type"] = "explicit", }, - [1645] = { + [1646] = { ["id"] = "explicit.stat_2954116742|3348", ["text"] = "Allocates Spirit of the Wolf", ["type"] = "explicit", }, - [1646] = { + [1647] = { ["id"] = "explicit.stat_2954116742|26104", ["text"] = "Allocates Spirit of the Wyvern", ["type"] = "explicit", }, - [1647] = { + [1648] = { ["id"] = "explicit.stat_2954116742|49088", ["text"] = "Allocates Splintering Force", ["type"] = "explicit", }, - [1648] = { + [1649] = { ["id"] = "explicit.stat_2954116742|7449", ["text"] = "Allocates Splinters", ["type"] = "explicit", }, - [1649] = { + [1650] = { ["id"] = "explicit.stat_2954116742|42302", ["text"] = "Allocates Split Shot", ["type"] = "explicit", }, - [1650] = { + [1651] = { ["id"] = "explicit.stat_2954116742|13980", ["text"] = "Allocates Split the Earth", ["type"] = "explicit", }, - [1651] = { + [1652] = { ["id"] = "explicit.stat_2954116742|20251", ["text"] = "Allocates Splitting Ground", ["type"] = "explicit", }, - [1652] = { + [1653] = { ["id"] = "explicit.stat_2954116742|23736", ["text"] = "Allocates Spray and Pray", ["type"] = "explicit", }, - [1653] = { + [1654] = { ["id"] = "explicit.stat_2954116742|11578", ["text"] = "Allocates Spreading Shocks", ["type"] = "explicit", }, - [1654] = { + [1655] = { ["id"] = "explicit.stat_2954116742|63759", ["text"] = "Allocates Stacking Toxins", ["type"] = "explicit", }, - [1655] = { + [1656] = { ["id"] = "explicit.stat_2954116742|39881", ["text"] = "Allocates Staggering Palm", ["type"] = "explicit", }, - [1656] = { + [1657] = { ["id"] = "explicit.stat_2954116742|61104", ["text"] = "Allocates Staggering Wounds", ["type"] = "explicit", }, - [1657] = { + [1658] = { ["id"] = "explicit.stat_2954116742|6304", ["text"] = "Allocates Stand Ground", ["type"] = "explicit", }, - [1658] = { + [1659] = { ["id"] = "explicit.stat_2954116742|5802", ["text"] = "Allocates Stand and Deliver", ["type"] = "explicit", }, - [1659] = { + [1660] = { ["id"] = "explicit.stat_2954116742|2486", ["text"] = "Allocates Stars Aligned", ["type"] = "explicit", }, - [1660] = { + [1661] = { ["id"] = "explicit.stat_2954116742|34908", ["text"] = "Allocates Staunch Deflection", ["type"] = "explicit", }, - [1661] = { + [1662] = { ["id"] = "explicit.stat_2954116742|37408", ["text"] = "Allocates Staunching", ["type"] = "explicit", }, - [1662] = { + [1663] = { ["id"] = "explicit.stat_2954116742|26479", ["text"] = "Allocates Steadfast Resolve", ["type"] = "explicit", }, - [1663] = { + [1664] = { ["id"] = "explicit.stat_2954116742|47782", ["text"] = "Allocates Steady Footing", ["type"] = "explicit", }, - [1664] = { + [1665] = { ["id"] = "explicit.stat_2954116742|47441", ["text"] = "Allocates Stigmata", ["type"] = "explicit", }, - [1665] = { + [1666] = { ["id"] = "explicit.stat_2954116742|7163", ["text"] = "Allocates Stimulants", ["type"] = "explicit", }, - [1666] = { + [1667] = { ["id"] = "explicit.stat_2954116742|1603", ["text"] = "Allocates Storm Driven", ["type"] = "explicit", }, - [1667] = { + [1668] = { ["id"] = "explicit.stat_2954116742|61921", ["text"] = "Allocates Storm Surge", ["type"] = "explicit", }, - [1668] = { + [1669] = { ["id"] = "explicit.stat_2954116742|336", ["text"] = "Allocates Storm Swell", ["type"] = "explicit", }, - [1669] = { + [1670] = { ["id"] = "explicit.stat_2954116742|43139", ["text"] = "Allocates Stormbreaker", ["type"] = "explicit", }, - [1670] = { + [1671] = { ["id"] = "explicit.stat_2954116742|38535", ["text"] = "Allocates Stormcharged", ["type"] = "explicit", }, - [1671] = { + [1672] = { ["id"] = "explicit.stat_2954116742|13515", ["text"] = "Allocates Stormwalker", ["type"] = "explicit", }, - [1672] = { + [1673] = { ["id"] = "explicit.stat_2954116742|45177", ["text"] = "Allocates Strike True", ["type"] = "explicit", }, - [1673] = { + [1674] = { ["id"] = "explicit.stat_2954116742|33922", ["text"] = "Allocates Stripped Defences", ["type"] = "explicit", }, - [1674] = { + [1675] = { ["id"] = "explicit.stat_2954116742|10998", ["text"] = "Allocates Strong Chin", ["type"] = "explicit", }, - [1675] = { + [1676] = { ["id"] = "explicit.stat_2954116742|39369", ["text"] = "Allocates Struck Through", ["type"] = "explicit", }, - [1676] = { + [1677] = { ["id"] = "explicit.stat_2954116742|38342", ["text"] = "Allocates Stupefy", ["type"] = "explicit", }, - [1677] = { + [1678] = { ["id"] = "explicit.stat_2954116742|8791", ["text"] = "Allocates Sturdy Ally", ["type"] = "explicit", }, - [1678] = { + [1679] = { ["id"] = "explicit.stat_2954116742|60138", ["text"] = "Allocates Stylebender", ["type"] = "explicit", }, - [1679] = { + [1680] = { ["id"] = "explicit.stat_2954116742|55193", ["text"] = "Allocates Subterfuge Mask", ["type"] = "explicit", }, - [1680] = { + [1681] = { ["id"] = "explicit.stat_2954116742|30392", ["text"] = "Allocates Succour", ["type"] = "explicit", }, - [1681] = { + [1682] = { ["id"] = "explicit.stat_2954116742|10398", ["text"] = "Allocates Sudden Escalation", ["type"] = "explicit", }, - [1682] = { + [1683] = { ["id"] = "explicit.stat_2954116742|29372", ["text"] = "Allocates Sudden Infuriation", ["type"] = "explicit", }, - [1683] = { + [1684] = { ["id"] = "explicit.stat_2954116742|14383", ["text"] = "Allocates Suffusion", ["type"] = "explicit", }, - [1684] = { + [1685] = { ["id"] = "explicit.stat_2954116742|2511", ["text"] = "Allocates Sundering", ["type"] = "explicit", }, - [1685] = { + [1686] = { ["id"] = "explicit.stat_2954116742|19249", ["text"] = "Allocates Supportive Ancestors", ["type"] = "explicit", }, - [1686] = { + [1687] = { ["id"] = "explicit.stat_2954116742|29881", ["text"] = "Allocates Surging Beast", ["type"] = "explicit", }, - [1687] = { + [1688] = { ["id"] = "explicit.stat_2954116742|42065", ["text"] = "Allocates Surging Currents", ["type"] = "explicit", }, - [1688] = { + [1689] = { ["id"] = "explicit.stat_2954116742|56806", ["text"] = "Allocates Swift Blocking", ["type"] = "explicit", }, - [1689] = { + [1690] = { ["id"] = "explicit.stat_2954116742|32353", ["text"] = "Allocates Swift Claw", ["type"] = "explicit", }, - [1690] = { + [1691] = { ["id"] = "explicit.stat_2954116742|56714", ["text"] = "Allocates Swift Flight", ["type"] = "explicit", }, - [1691] = { + [1692] = { ["id"] = "explicit.stat_2954116742|65265", ["text"] = "Allocates Swift Interruption", ["type"] = "explicit", }, - [1692] = { + [1693] = { ["id"] = "explicit.stat_2954116742|53367", ["text"] = "Allocates Symbol of Defiance", ["type"] = "explicit", }, - [1693] = { + [1694] = { ["id"] = "explicit.stat_2954116742|17825", ["text"] = "Allocates Tactical Retreat", ["type"] = "explicit", }, - [1694] = { + [1695] = { ["id"] = "explicit.stat_2954116742|22864", ["text"] = "Allocates Tainted Strike", ["type"] = "explicit", }, - [1695] = { + [1696] = { ["id"] = "explicit.stat_2954116742|40213", ["text"] = "Allocates Taste for Blood", ["type"] = "explicit", }, - [1696] = { + [1697] = { ["id"] = "explicit.stat_2954116742|48774", ["text"] = "Allocates Taut Flesh", ["type"] = "explicit", }, - [1697] = { + [1698] = { ["id"] = "explicit.stat_2954116742|18157", ["text"] = "Allocates Tempered Defences", ["type"] = "explicit", }, - [1698] = { + [1699] = { ["id"] = "explicit.stat_2954116742|8831", ["text"] = "Allocates Tempered Mind", ["type"] = "explicit", }, - [1699] = { + [1700] = { ["id"] = "explicit.stat_2954116742|12412", ["text"] = "Allocates Temporal Mastery", ["type"] = "explicit", }, - [1700] = { + [1701] = { ["id"] = "explicit.stat_2954116742|25971", ["text"] = "Allocates Tenfold Attacks", ["type"] = "explicit", }, - [1701] = { + [1702] = { ["id"] = "explicit.stat_2954116742|4544", ["text"] = "Allocates The Ancient Serpent", ["type"] = "explicit", }, - [1702] = { + [1703] = { ["id"] = "explicit.stat_2954116742|7847", ["text"] = "Allocates The Fabled Stag", ["type"] = "explicit", }, - [1703] = { + [1704] = { ["id"] = "explicit.stat_2954116742|34543", ["text"] = "Allocates The Frenzied Bear", ["type"] = "explicit", }, - [1704] = { + [1705] = { ["id"] = "explicit.stat_2954116742|54031", ["text"] = "Allocates The Great Boar", ["type"] = "explicit", }, - [1705] = { + [1706] = { ["id"] = "explicit.stat_2954116742|48734", ["text"] = "Allocates The Howling Primate", ["type"] = "explicit", }, - [1706] = { + [1707] = { ["id"] = "explicit.stat_2954116742|28542", ["text"] = "Allocates The Molten One's Gift", ["type"] = "explicit", }, - [1707] = { + [1708] = { ["id"] = "explicit.stat_2954116742|2745", ["text"] = "Allocates The Noble Wolf", ["type"] = "explicit", }, - [1708] = { + [1709] = { ["id"] = "explicit.stat_2954116742|27176", ["text"] = "Allocates The Power Within", ["type"] = "explicit", }, - [1709] = { + [1710] = { ["id"] = "explicit.stat_2954116742|21349", ["text"] = "Allocates The Quick Fox", ["type"] = "explicit", }, - [1710] = { + [1711] = { ["id"] = "explicit.stat_2954116742|45370", ["text"] = "Allocates The Raging Ox", ["type"] = "explicit", }, - [1711] = { + [1712] = { ["id"] = "explicit.stat_2954116742|52971", ["text"] = "Allocates The Soul Meridian", ["type"] = "explicit", }, - [1712] = { + [1713] = { ["id"] = "explicit.stat_2954116742|11774", ["text"] = "Allocates The Spring Hare", ["type"] = "explicit", }, - [1713] = { + [1714] = { ["id"] = "explicit.stat_2954116742|22811", ["text"] = "Allocates The Wild Cat", ["type"] = "explicit", }, - [1714] = { + [1715] = { ["id"] = "explicit.stat_2954116742|53185", ["text"] = "Allocates The Winter Owl", ["type"] = "explicit", }, - [1715] = { + [1716] = { ["id"] = "explicit.stat_2954116742|35849", ["text"] = "Allocates Thickened Arteries", ["type"] = "explicit", }, - [1716] = { + [1717] = { ["id"] = "explicit.stat_2954116742|56893", ["text"] = "Allocates Thicket Warding", ["type"] = "explicit", }, - [1717] = { + [1718] = { ["id"] = "explicit.stat_2954116742|19722", ["text"] = "Allocates Thin Ice", ["type"] = "explicit", }, - [1718] = { + [1719] = { ["id"] = "explicit.stat_2954116742|59433", ["text"] = "Allocates Thirst for Endurance", ["type"] = "explicit", }, - [1719] = { + [1720] = { ["id"] = "explicit.stat_2954116742|38532", ["text"] = "Allocates Thirst for Power", ["type"] = "explicit", }, - [1720] = { + [1721] = { ["id"] = "explicit.stat_2954116742|17600", ["text"] = "Allocates Thirsting Ally", ["type"] = "explicit", }, - [1721] = { + [1722] = { ["id"] = "explicit.stat_2954116742|43711", ["text"] = "Allocates Thornhide", ["type"] = "explicit", }, - [1722] = { + [1723] = { ["id"] = "explicit.stat_2954116742|42714", ["text"] = "Allocates Thousand Cuts", ["type"] = "explicit", }, - [1723] = { + [1724] = { ["id"] = "explicit.stat_2954116742|25711", ["text"] = "Allocates Thrill of Battle", ["type"] = "explicit", }, - [1724] = { + [1725] = { ["id"] = "explicit.stat_2954116742|15606", ["text"] = "Allocates Thrill of the Fight", ["type"] = "explicit", }, - [1725] = { + [1726] = { ["id"] = "explicit.stat_2954116742|56265", ["text"] = "Allocates Throatseeker", ["type"] = "explicit", }, - [1726] = { + [1727] = { ["id"] = "explicit.stat_2954116742|63585", ["text"] = "Allocates Thunderstruck", ["type"] = "explicit", }, - [1727] = { + [1728] = { ["id"] = "explicit.stat_2954116742|42813", ["text"] = "Allocates Tides of Change", ["type"] = "explicit", }, - [1728] = { + [1729] = { ["id"] = "explicit.stat_2954116742|24240", ["text"] = "Allocates Time Manipulation", ["type"] = "explicit", }, - [1729] = { + [1730] = { ["id"] = "explicit.stat_2954116742|65160", ["text"] = "Allocates Titanic", ["type"] = "explicit", }, - [1730] = { + [1731] = { ["id"] = "explicit.stat_2954116742|2843", ["text"] = "Allocates Tolerant Equipment", ["type"] = "explicit", }, - [1731] = { + [1732] = { ["id"] = "explicit.stat_2954116742|28482", ["text"] = "Allocates Total Incineration", ["type"] = "explicit", }, - [1732] = { + [1733] = { ["id"] = "explicit.stat_2954116742|27626", ["text"] = "Allocates Touch the Arcane", ["type"] = "explicit", }, - [1733] = { + [1734] = { ["id"] = "explicit.stat_2954116742|53823", ["text"] = "Allocates Towering Shield", ["type"] = "explicit", }, - [1734] = { + [1735] = { ["id"] = "explicit.stat_2954116742|261", ["text"] = "Allocates Toxic Sludge", ["type"] = "explicit", }, - [1735] = { + [1736] = { ["id"] = "explicit.stat_2954116742|2134", ["text"] = "Allocates Toxic Tolerance", ["type"] = "explicit", }, - [1736] = { + [1737] = { ["id"] = "explicit.stat_2954116742|52180", ["text"] = "Allocates Trained Deflection", ["type"] = "explicit", }, - [1737] = { + [1738] = { ["id"] = "explicit.stat_2954116742|57785", ["text"] = "Allocates Trained Turrets", ["type"] = "explicit", }, - [1738] = { + [1739] = { ["id"] = "explicit.stat_2954116742|750", ["text"] = "Allocates Tribal Fury", ["type"] = "explicit", }, - [1739] = { + [1740] = { ["id"] = "explicit.stat_2954116742|23221", ["text"] = "Allocates Trick Shot", ["type"] = "explicit", }, - [1740] = { + [1741] = { ["id"] = "explicit.stat_2954116742|61601", ["text"] = "Allocates True Strike", ["type"] = "explicit", }, - [1741] = { + [1742] = { ["id"] = "explicit.stat_2954116742|53131", ["text"] = "Allocates Tukohama's Brew", ["type"] = "explicit", }, - [1742] = { + [1743] = { ["id"] = "explicit.stat_2954116742|35564", ["text"] = "Allocates Turn the Clock Back", ["type"] = "explicit", }, - [1743] = { + [1744] = { ["id"] = "explicit.stat_2954116742|2335", ["text"] = "Allocates Turn the Clock Forward", ["type"] = "explicit", }, - [1744] = { + [1745] = { ["id"] = "explicit.stat_2954116742|1352", ["text"] = "Allocates Unbending", ["type"] = "explicit", }, - [1745] = { + [1746] = { ["id"] = "explicit.stat_2954116742|4579", ["text"] = "Allocates Unbothering Cold", ["type"] = "explicit", }, - [1746] = { + [1747] = { ["id"] = "explicit.stat_2954116742|64543", ["text"] = "Allocates Unbound Forces", ["type"] = "explicit", }, - [1747] = { + [1748] = { ["id"] = "explicit.stat_2954116742|53921", ["text"] = "Allocates Unbreaking", ["type"] = "explicit", }, - [1748] = { + [1749] = { ["id"] = "explicit.stat_2954116742|38888", ["text"] = "Allocates Unerring Impact", ["type"] = "explicit", }, - [1749] = { + [1750] = { ["id"] = "explicit.stat_2954116742|31189", ["text"] = "Allocates Unexpected Finesse", ["type"] = "explicit", }, - [1750] = { + [1751] = { ["id"] = "explicit.stat_2954116742|8881", ["text"] = "Allocates Unforgiving", ["type"] = "explicit", }, - [1751] = { + [1752] = { ["id"] = "explicit.stat_2954116742|32543", ["text"] = "Allocates Unhindered", ["type"] = "explicit", }, - [1752] = { + [1753] = { ["id"] = "explicit.stat_2954116742|51394", ["text"] = "Allocates Unimpeded", ["type"] = "explicit", }, - [1753] = { + [1754] = { ["id"] = "explicit.stat_2954116742|20008", ["text"] = "Allocates Unleash Fire", ["type"] = "explicit", }, - [1754] = { + [1755] = { ["id"] = "explicit.stat_2954116742|4547", ["text"] = "Allocates Unnatural Resilience", ["type"] = "explicit", }, - [1755] = { + [1756] = { ["id"] = "explicit.stat_2954116742|51602", ["text"] = "Allocates Unsight", ["type"] = "explicit", }, - [1756] = { + [1757] = { ["id"] = "explicit.stat_2954116742|33585", ["text"] = "Allocates Unspoken Bond", ["type"] = "explicit", }, - [1757] = { + [1758] = { ["id"] = "explicit.stat_2954116742|18485", ["text"] = "Allocates Unstable Bond", ["type"] = "explicit", }, - [1758] = { + [1759] = { ["id"] = "explicit.stat_2954116742|33978", ["text"] = "Allocates Unstoppable Barrier", ["type"] = "explicit", }, - [1759] = { + [1760] = { ["id"] = "explicit.stat_2954116742|10774", ["text"] = "Allocates Unyielding", ["type"] = "explicit", }, - [1760] = { + [1761] = { ["id"] = "explicit.stat_2954116742|1169", ["text"] = "Allocates Urgent Call", ["type"] = "explicit", }, - [1761] = { + [1762] = { ["id"] = "explicit.stat_2954116742|17303", ["text"] = "Allocates Utility Ordnance", ["type"] = "explicit", }, - [1762] = { + [1763] = { ["id"] = "explicit.stat_2954116742|41033", ["text"] = "Allocates Utmost Offering", ["type"] = "explicit", }, - [1763] = { + [1764] = { ["id"] = "explicit.stat_2954116742|12750", ["text"] = "Allocates Vale Shelter", ["type"] = "explicit", }, - [1764] = { + [1765] = { ["id"] = "explicit.stat_2954116742|17762", ["text"] = "Allocates Vengeance", ["type"] = "explicit", }, - [1765] = { + [1766] = { ["id"] = "explicit.stat_2954116742|54937", ["text"] = "Allocates Vengeful Fury", ["type"] = "explicit", }, - [1766] = { + [1767] = { ["id"] = "explicit.stat_2954116742|4238", ["text"] = "Allocates Versatile Arms", ["type"] = "explicit", }, - [1767] = { + [1768] = { ["id"] = "explicit.stat_2954116742|65193", ["text"] = "Allocates Viciousness", ["type"] = "explicit", }, - [1768] = { + [1769] = { ["id"] = "explicit.stat_2954116742|22967", ["text"] = "Allocates Vigilance", ["type"] = "explicit", }, - [1769] = { + [1770] = { ["id"] = "explicit.stat_2954116742|63739", ["text"] = "Allocates Vigorous Remnants", ["type"] = "explicit", }, - [1770] = { + [1771] = { ["id"] = "explicit.stat_2954116742|36507", ["text"] = "Allocates Vile Mending", ["type"] = "explicit", }, - [1771] = { + [1772] = { ["id"] = "explicit.stat_2954116742|31373", ["text"] = "Allocates Vocal Empowerment", ["type"] = "explicit", }, - [1772] = { + [1773] = { ["id"] = "explicit.stat_2954116742|3492", ["text"] = "Allocates Void", ["type"] = "explicit", }, - [1773] = { + [1774] = { ["id"] = "explicit.stat_2954116742|17882", ["text"] = "Allocates Volatile Grenades", ["type"] = "explicit", }, - [1774] = { + [1775] = { ["id"] = "explicit.stat_2954116742|11366", ["text"] = "Allocates Volcanic Skin", ["type"] = "explicit", }, - [1775] = { + [1776] = { ["id"] = "explicit.stat_2954116742|46060", ["text"] = "Allocates Voracious", ["type"] = "explicit", }, - [1776] = { + [1777] = { ["id"] = "explicit.stat_2954116742|27303", ["text"] = "Allocates Vulgar Methods", ["type"] = "explicit", }, - [1777] = { + [1778] = { ["id"] = "explicit.stat_2954116742|25211", ["text"] = "Allocates Waning Hindrances", ["type"] = "explicit", }, - [1778] = { + [1779] = { ["id"] = "explicit.stat_2954116742|31925", ["text"] = "Allocates Warding Fetish", ["type"] = "explicit", }, - [1779] = { + [1780] = { ["id"] = "explicit.stat_2954116742|47418", ["text"] = "Allocates Warding Potions", ["type"] = "explicit", }, - [1780] = { + [1781] = { ["id"] = "explicit.stat_2954116742|53187", ["text"] = "Allocates Warlord Berserker", ["type"] = "explicit", }, - [1781] = { + [1782] = { ["id"] = "explicit.stat_2954116742|14761", ["text"] = "Allocates Warlord Leader", ["type"] = "explicit", }, - [1782] = { + [1783] = { ["id"] = "explicit.stat_2954116742|12998", ["text"] = "Allocates Warm the Heart", ["type"] = "explicit", }, - [1783] = { + [1784] = { ["id"] = "explicit.stat_2954116742|64650", ["text"] = "Allocates Wary Dodging", ["type"] = "explicit", }, - [1784] = { + [1785] = { ["id"] = "explicit.stat_2954116742|51213", ["text"] = "Allocates Wasting", ["type"] = "explicit", }, - [1785] = { + [1786] = { ["id"] = "explicit.stat_2954116742|61444", ["text"] = "Allocates Wasting Casts", ["type"] = "explicit", }, - [1786] = { + [1787] = { ["id"] = "explicit.stat_2954116742|5580", ["text"] = "Allocates Watchtowers", ["type"] = "explicit", }, - [1787] = { + [1788] = { ["id"] = "explicit.stat_2954116742|51509", ["text"] = "Allocates Waters of Life", ["type"] = "explicit", }, - [1788] = { + [1789] = { ["id"] = "explicit.stat_2954116742|58198", ["text"] = "Allocates Well of Power", ["type"] = "explicit", }, - [1789] = { + [1790] = { ["id"] = "explicit.stat_2954116742|2021", ["text"] = "Allocates Wellspring", ["type"] = "explicit", }, - [1790] = { + [1791] = { ["id"] = "explicit.stat_2954116742|37514", ["text"] = "Allocates Whirling Assault", ["type"] = "explicit", }, - [1791] = { + [1792] = { ["id"] = "explicit.stat_2954116742|46384", ["text"] = "Allocates Wide Barrier", ["type"] = "explicit", }, - [1792] = { + [1793] = { ["id"] = "explicit.stat_2954116742|65256", ["text"] = "Allocates Widespread Coverage", ["type"] = "explicit", }, - [1793] = { + [1794] = { ["id"] = "explicit.stat_2954116742|7809", ["text"] = "Allocates Wild Storm", ["type"] = "explicit", }, - [1794] = { + [1795] = { ["id"] = "explicit.stat_2954116742|44373", ["text"] = "Allocates Wither Away", ["type"] = "explicit", }, - [1795] = { + [1796] = { ["id"] = "explicit.stat_2954116742|57921", ["text"] = "Allocates Wolf's Howl", ["type"] = "explicit", }, - [1796] = { + [1797] = { ["id"] = "explicit.stat_2954116742|62803", ["text"] = "Allocates Woodland Aspect", ["type"] = "explicit", }, - [1797] = { + [1798] = { ["id"] = "explicit.stat_2954116742|30132", ["text"] = "Allocates Wrapped Quiver", ["type"] = "explicit", }, - [1798] = { + [1799] = { ["id"] = "explicit.stat_2954116742|35417", ["text"] = "Allocates Wyvern's Breath", ["type"] = "explicit", }, - [1799] = { + [1800] = { ["id"] = "explicit.stat_2954116742|50485", ["text"] = "Allocates Zone of Control", ["type"] = "explicit", }, - [1800] = { + [1801] = { ["id"] = "explicit.stat_2676834156", ["text"] = "Also grants # Guard", ["type"] = "explicit", }, - [1801] = { + [1802] = { ["id"] = "explicit.stat_258955603", ["text"] = "Alternating every 5 seconds:Take #% more Damage from HitsTake #% more Damage over time", ["type"] = "explicit", }, - [1802] = { + [1803] = { ["id"] = "explicit.stat_4126210832", ["text"] = "Always Hits", ["type"] = "explicit", }, - [1803] = { + [1804] = { ["id"] = "explicit.stat_2214130968", ["text"] = "Always deals Critical Hits against Heavy Stunned Enemies", ["type"] = "explicit", }, - [1804] = { + [1805] = { ["id"] = "explicit.stat_3831171903|1", ["text"] = "Ancestral Bond", ["type"] = "explicit", }, - [1805] = { + [1806] = { ["id"] = "explicit.stat_4021234281", ["text"] = "Any number of Poisons from this Weapon can affect a target at the same time", ["type"] = "explicit", }, - [1806] = { + [1807] = { ["id"] = "explicit.stat_2586152168", ["text"] = "Archon recovery period expires #% faster", ["type"] = "explicit", }, - [1807] = { + [1808] = { ["id"] = "explicit.stat_3490187949", ["text"] = "Area contains # additional Abysses", ["type"] = "explicit", }, - [1808] = { + [1809] = { ["id"] = "explicit.stat_358129101", ["text"] = "Area contains # additional Azmeri Spirit", ["type"] = "explicit", }, - [1809] = { + [1810] = { ["id"] = "explicit.stat_3757259819", ["text"] = "Area contains # additional packs of Beasts", ["type"] = "explicit", }, - [1810] = { + [1811] = { ["id"] = "explicit.stat_3309089125", ["text"] = "Area contains # additional packs of Bramble Monsters", ["type"] = "explicit", }, - [1811] = { + [1812] = { ["id"] = "explicit.stat_1436812886", ["text"] = "Area contains # additional packs of Ezomyte Monsters", ["type"] = "explicit", }, - [1812] = { + [1813] = { ["id"] = "explicit.stat_4130878258", ["text"] = "Area contains # additional packs of Faridun Monsters", ["type"] = "explicit", }, - [1813] = { + [1814] = { ["id"] = "explicit.stat_2949706590", ["text"] = "Area contains # additional packs of Iron Guards", ["type"] = "explicit", }, - [1814] = { + [1815] = { ["id"] = "explicit.stat_3592067990", ["text"] = "Area contains # additional packs of Plagued Monsters", ["type"] = "explicit", }, - [1815] = { + [1816] = { ["id"] = "explicit.stat_1689473577", ["text"] = "Area contains # additional packs of Transcended Monsters", ["type"] = "explicit", }, - [1816] = { + [1817] = { ["id"] = "explicit.stat_240445958", ["text"] = "Area contains # additional packs of Undead", ["type"] = "explicit", }, - [1817] = { + [1818] = { ["id"] = "explicit.stat_4181857719", ["text"] = "Area contains # additional packs of Vaal Monsters", ["type"] = "explicit", }, - [1818] = { + [1819] = { ["id"] = "explicit.stat_1640965354", ["text"] = "Area contains #% increased number of Runic Monster Markers", ["type"] = "explicit", }, - [1819] = { + [1820] = { ["id"] = "explicit.stat_1070816711", ["text"] = "Area contains an additional Abyss", ["type"] = "explicit", }, - [1820] = { + [1821] = { ["id"] = "explicit.stat_395808938", ["text"] = "Area contains an additional Essence", ["type"] = "explicit", }, - [1821] = { + [1822] = { ["id"] = "explicit.stat_1827854662", ["text"] = "Area contains an additional Incubator Queen", ["type"] = "explicit", }, - [1822] = { + [1823] = { ["id"] = "explicit.stat_2396719220", ["text"] = "Area contains an additional Magic Chest", ["type"] = "explicit", }, - [1823] = { + [1824] = { ["id"] = "explicit.stat_231864447", ["text"] = "Area contains an additional Rare Chest", ["type"] = "explicit", }, - [1824] = { + [1825] = { ["id"] = "explicit.stat_1468737867", ["text"] = "Area contains an additional Shrine", ["type"] = "explicit", }, - [1825] = { + [1826] = { ["id"] = "explicit.stat_3240183538", ["text"] = "Area contains an additional Strongbox", ["type"] = "explicit", }, - [1826] = { + [1827] = { ["id"] = "explicit.stat_2839545956", ["text"] = "Area contains an additional Summoning Circle", ["type"] = "explicit", }, - [1827] = { + [1828] = { ["id"] = "explicit.stat_2571125745", ["text"] = "Area has #% chance to contain a Shrine", ["type"] = "explicit", }, - [1828] = { + [1829] = { ["id"] = "explicit.stat_2388936716", ["text"] = "Area has #% chance to contain a Strongbox", ["type"] = "explicit", }, - [1829] = { + [1830] = { ["id"] = "explicit.stat_4098286334", ["text"] = "Area has #% chance to contain an Essence", ["type"] = "explicit", }, - [1830] = { + [1831] = { ["id"] = "explicit.stat_2890355696", ["text"] = "Area has #% chance to contain four additional Abysses", ["type"] = "explicit", }, - [1831] = { + [1832] = { ["id"] = "explicit.stat_3815617979", ["text"] = "Area has #% increased chance to contain Azmeri Spirits", ["type"] = "explicit", }, - [1832] = { + [1833] = { ["id"] = "explicit.stat_1825943485", ["text"] = "Area has #% increased chance to contain Essences", ["type"] = "explicit", }, - [1833] = { + [1834] = { ["id"] = "explicit.stat_1352729973", ["text"] = "Area has #% increased chance to contain Rogue Exiles", ["type"] = "explicit", }, - [1834] = { + [1835] = { ["id"] = "explicit.stat_689816330", ["text"] = "Area has #% increased chance to contain Shrines", ["type"] = "explicit", }, - [1835] = { + [1836] = { ["id"] = "explicit.stat_4279535856", ["text"] = "Area has #% increased chance to contain Strongboxes", ["type"] = "explicit", }, - [1836] = { + [1837] = { ["id"] = "explicit.stat_267210597", ["text"] = "Area has #% increased chance to contain a Summoning Circle", ["type"] = "explicit", }, - [1837] = { + [1838] = { ["id"] = "explicit.stat_349586058", ["text"] = "Area has patches of Chilled Ground", ["type"] = "explicit", }, - [1838] = { + [1839] = { ["id"] = "explicit.stat_133340941", ["text"] = "Area has patches of Ignited Ground", ["type"] = "explicit", }, - [1839] = { + [1840] = { ["id"] = "explicit.stat_3190283174", ["text"] = "Area has patches of Mana Siphoning Ground", ["type"] = "explicit", }, - [1840] = { + [1841] = { ["id"] = "explicit.stat_3477720557", ["text"] = "Area has patches of Shocked Ground", ["type"] = "explicit", }, - [1841] = { + [1842] = { ["id"] = "explicit.stat_3550168289", ["text"] = "Area is inhabited by # additional Rogue Exile", ["type"] = "explicit", }, - [1842] = { + [1843] = { ["id"] = "explicit.stat_2741291867", ["text"] = "Area is overrun by the Abyssal", ["type"] = "explicit", }, - [1843] = { + [1844] = { ["id"] = "explicit.stat_3049505189", ["text"] = "Areas which contain Breaches have #% chance to contain an additional Breach", ["type"] = "explicit", }, - [1844] = { + [1845] = { ["id"] = "explicit.stat_2440265466", ["text"] = "Areas which contain Breaches have #% chance to contain three additional Breaches", ["type"] = "explicit", }, - [1845] = { + [1846] = { ["id"] = "explicit.stat_3042527515", ["text"] = "Areas with Map Powerful Map Bosses contain an additional Shrine", ["type"] = "explicit", }, - [1846] = { + [1847] = { ["id"] = "explicit.stat_775597083", ["text"] = "Areas with Powerful Map Bosses contain an additional Azmeri Spirit", ["type"] = "explicit", }, - [1847] = { + [1848] = { ["id"] = "explicit.stat_2162684861", ["text"] = "Areas with Powerful Map Bosses contain an additional Essence", ["type"] = "explicit", }, - [1848] = { + [1849] = { ["id"] = "explicit.stat_3042527515", ["text"] = "Areas with Powerful Map Bosses contain an additional Shrine", ["type"] = "explicit", }, - [1849] = { + [1850] = { ["id"] = "explicit.stat_3040603554", ["text"] = "Areas with Powerful Map Bosses contain an additional Strongbox", ["type"] = "explicit", }, - [1850] = { + [1851] = { ["id"] = "explicit.stat_713266390", ["text"] = "Armour is increased by Uncapped Fire Resistance", ["type"] = "explicit", }, - [1851] = { + [1852] = { ["id"] = "explicit.stat_2421436896", ["text"] = "Arrows Fork", ["type"] = "explicit", }, - [1852] = { + [1853] = { ["id"] = "explicit.stat_2138799639", ["text"] = "Arrows Pierce all targets after Forking", ["type"] = "explicit", }, - [1853] = { + [1854] = { ["id"] = "explicit.stat_3423006863", ["text"] = "Arrows Pierce an additional Target", ["type"] = "explicit", }, - [1854] = { + [1855] = { ["id"] = "explicit.stat_1243721142", ["text"] = "Arrows Return if they have Pierced a target which had Fully Broken Armour", ["type"] = "explicit", }, - [1855] = { + [1856] = { ["id"] = "explicit.stat_300723956", ["text"] = "Attack Hits apply Incision", ["type"] = "explicit", }, - [1856] = { + [1857] = { ["id"] = "explicit.stat_33298888", ["text"] = "Attack Hits inflict Spectral Fire for # seconds", ["type"] = "explicit", }, - [1857] = { + [1858] = { ["id"] = "explicit.stat_2720781168", ["text"] = "Attack Projectiles Return if they Pierced at least # times", ["type"] = "explicit", }, - [1858] = { + [1859] = { ["id"] = "explicit.stat_3868118796", ["text"] = "Attacks Chain an additional time", ["type"] = "explicit", }, - [1859] = { + [1860] = { ["id"] = "explicit.stat_1484500028", ["text"] = "Attacks Gain #% of Damage as Extra Cold Damage", ["type"] = "explicit", }, - [1860] = { + [1861] = { ["id"] = "explicit.stat_1049080093", ["text"] = "Attacks Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, - [1861] = { + [1862] = { ["id"] = "explicit.stat_261503687", ["text"] = "Attacks Gain #% of Physical Damage as extra Chaos Damage", ["type"] = "explicit", }, - [1862] = { + [1863] = { ["id"] = "explicit.stat_3550545679", ["text"] = "Attacks consume an Endurance Charge to Critically Hit", ["type"] = "explicit", }, - [1863] = { + [1864] = { ["id"] = "explicit.stat_2157692677", ["text"] = "Attacks cost an additional #% of your maximum Mana", ["type"] = "explicit", }, - [1864] = { + [1865] = { ["id"] = "explicit.stat_3258071686", ["text"] = "Attacks have Added maximum Lightning Damage equal to #% of maximum Mana", ["type"] = "explicit", }, - [1865] = { + [1866] = { ["id"] = "explicit.stat_2723294374", ["text"] = "Attacks have added Physical damage equal to #% of maximum Life", ["type"] = "explicit", }, - [1866] = { + [1867] = { ["id"] = "explicit.stat_1740229525", ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", ["type"] = "explicit", }, - [1867] = { + [1868] = { ["id"] = "explicit.stat_3398283493", ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", ["type"] = "explicit", }, - [1868] = { + [1869] = { ["id"] = "explicit.stat_2387539034", ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", ["type"] = "explicit", }, - [1869] = { + [1870] = { ["id"] = "explicit.stat_3620731914", ["text"] = "Attacks with this Weapon gain #% of Physical damage as Extra damage of each Element", ["type"] = "explicit", }, - [1870] = { + [1871] = { ["id"] = "explicit.stat_566086661", ["text"] = "Attacks with this Weapon have Added Cold Damage equal to #% to #% of maximum Mana", ["type"] = "explicit", }, - [1871] = { + [1872] = { ["id"] = "explicit.stat_315791320", ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "explicit", }, - [1872] = { + [1873] = { ["id"] = "explicit.stat_3831171903|4", ["text"] = "Avatar of Fire", ["type"] = "explicit", }, - [1873] = { + [1874] = { ["id"] = "explicit.stat_429143663", ["text"] = "Banner Skills have #% increased Area of Effect", ["type"] = "explicit", }, - [1874] = { + [1875] = { ["id"] = "explicit.stat_2720982137", ["text"] = "Banner Skills have #% increased Duration", ["type"] = "explicit", }, - [1875] = { + [1876] = { ["id"] = "explicit.stat_1761741119", ["text"] = "Banners always have maximum Valour", ["type"] = "explicit", }, - [1876] = { + [1877] = { ["id"] = "explicit.stat_2635559734", ["text"] = "Base Critical Hit Chance for Attacks with Weapons is #%", ["type"] = "explicit", }, - [1877] = { + [1878] = { ["id"] = "explicit.stat_4287372938", ["text"] = "Bear Skills Convert #% of Physical Damage to Fire Damage", ["type"] = "explicit", }, - [1878] = { + [1879] = { ["id"] = "explicit.stat_335885735", ["text"] = "Bears the Mark of the Abyssal Lord", ["type"] = "explicit", }, - [1879] = { + [1880] = { ["id"] = "explicit.stat_1451444093", ["text"] = "Bifurcates Critical Hits", ["type"] = "explicit", }, - [1880] = { + [1881] = { ["id"] = "explicit.stat_3831171903|28", ["text"] = "Blackflame Covenant", ["type"] = "explicit", }, - [1881] = { + [1882] = { ["id"] = "explicit.stat_1016759424", ["text"] = "Bleeding you inflict deals Fire Damage instead of Physical Damage", ["type"] = "explicit", }, - [1882] = { + [1883] = { ["id"] = "explicit.stat_841429130", ["text"] = "Bleeding you inflict is Aggravated", ["type"] = "explicit", }, - [1883] = { + [1884] = { ["id"] = "explicit.stat_3450276548", ["text"] = "Blind Chilled enemies on Hit", ["type"] = "explicit", }, - [1884] = { + [1885] = { ["id"] = "explicit.stat_3587953142", ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", ["type"] = "explicit", }, - [1885] = { + [1886] = { ["id"] = "explicit.stat_60826109", ["text"] = "Blind Targets when you Poison them", ["type"] = "explicit", }, - [1886] = { + [1887] = { ["id"] = "explicit.stat_4195198267", ["text"] = "Blocking Damage Poisons the Enemy as though dealing # Base Chaos Damage", ["type"] = "explicit", }, - [1887] = { + [1888] = { ["id"] = "explicit.stat_3831171903|5", ["text"] = "Blood Magic", ["type"] = "explicit", }, - [1888] = { + [1889] = { ["id"] = "explicit.stat_2801937280", ["text"] = "Blood Magic", ["type"] = "explicit", }, - [1889] = { + [1890] = { ["id"] = "explicit.stat_842299438", ["text"] = "Bolts fired by Crossbow Attacks have #% chance to notexpend Ammunition if you've Reloaded Recently", ["type"] = "explicit", }, - [1890] = { + [1891] = { ["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", }, - [1891] = { + [1892] = { ["id"] = "explicit.stat_3885405204", ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "explicit", }, - [1892] = { + [1893] = { ["id"] = "explicit.stat_2734787892", ["text"] = "Breach Hives have an additional wave of Hiveborn Monsters", ["type"] = "explicit", }, - [1893] = { + [1894] = { ["id"] = "explicit.stat_1217651243", ["text"] = "Breaches expand to at least # metre in radiusBreaches remain open while there are alive Breach Monsters", ["type"] = "explicit", }, - [1894] = { + [1895] = { ["id"] = "explicit.stat_1210760818", ["text"] = "Breaches have #% increased Monster density", ["type"] = "explicit", }, - [1895] = { + [1896] = { ["id"] = "explicit.stat_2224050171", ["text"] = "Breaches in Area contain # additional Clasped Hand", ["type"] = "explicit", }, - [1896] = { + [1897] = { ["id"] = "explicit.stat_1090596078", ["text"] = "Breaches in Area spawn #% increased Magic Monsters", ["type"] = "explicit", }, - [1897] = { + [1898] = { ["id"] = "explicit.stat_1653625239", ["text"] = "Breaches in Area spawn an additional Rare Monster", ["type"] = "explicit", }, - [1898] = { + [1899] = { ["id"] = "explicit.stat_2224050171", ["text"] = "Breaches in your Maps contain # additional Clasped Hand", ["type"] = "explicit", }, - [1899] = { + [1900] = { ["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", }, - [1900] = { + [1901] = { ["id"] = "explicit.stat_2504358770", ["text"] = "Breaches in your Maps open and close #% faster", ["type"] = "explicit", }, - [1901] = { + [1902] = { ["id"] = "explicit.stat_1090596078", ["text"] = "Breaches in your Maps spawn #% increased Magic Monsters", ["type"] = "explicit", }, - [1902] = { + [1903] = { ["id"] = "explicit.stat_1653625239", ["text"] = "Breaches in your Maps spawn an additional Rare Monster", ["type"] = "explicit", }, - [1903] = { + [1904] = { ["id"] = "explicit.stat_2504358770", ["text"] = "Breaches open and close #% faster", ["type"] = "explicit", }, - [1904] = { + [1905] = { ["id"] = "explicit.stat_1776411443", ["text"] = "Break #% increased Armour", ["type"] = "explicit", }, - [1905] = { + [1906] = { ["id"] = "explicit.stat_1103616075", ["text"] = "Break Armour equal to #% of Physical Damage dealt", ["type"] = "explicit", }, - [1906] = { + [1907] = { ["id"] = "explicit.stat_1286199571", ["text"] = "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", ["type"] = "explicit", }, - [1907] = { + [1908] = { ["id"] = "explicit.stat_949573361", ["text"] = "Breaks Armour equal to #% of damage from Hits with this weapon", ["type"] = "explicit", }, - [1908] = { + [1909] = { ["id"] = "explicit.stat_3831171903|24", ["text"] = "Bulwark", ["type"] = "explicit", }, - [1909] = { + [1910] = { ["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", }, - [1910] = { + [1911] = { ["id"] = "explicit.stat_738592688", ["text"] = "Can Allocate Passive Skills from the Mercenary's starting point", ["type"] = "explicit", }, - [1911] = { + [1912] = { ["id"] = "explicit.stat_3116298775", ["text"] = "Can Allocate Passive Skills from the Ranger's starting point", ["type"] = "explicit", }, - [1912] = { + [1913] = { ["id"] = "explicit.stat_2218479786", ["text"] = "Can Allocate Passive Skills from the Shadow's starting point", ["type"] = "explicit", }, - [1913] = { + [1914] = { ["id"] = "explicit.stat_3359496001", ["text"] = "Can Allocate Passive Skills from the Sorceress's starting point", ["type"] = "explicit", }, - [1914] = { + [1915] = { ["id"] = "explicit.stat_1688294122", ["text"] = "Can Allocate Passive Skills from the Templar's starting point", ["type"] = "explicit", }, - [1915] = { + [1916] = { ["id"] = "explicit.stat_1359862146", ["text"] = "Can Allocate Passive Skills from the Warrior's starting point", ["type"] = "explicit", }, - [1916] = { + [1917] = { ["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", }, - [1917] = { + [1918] = { ["id"] = "explicit.stat_2500154144", ["text"] = "Can Reroll Favours at Ritual Altars in your Maps twice as many times", ["type"] = "explicit", }, - [1918] = { + [1919] = { ["id"] = "explicit.stat_1161337167", ["text"] = "Can be modified while Corrupted", ["type"] = "explicit", }, - [1919] = { + [1920] = { ["id"] = "explicit.stat_1135194732", ["text"] = "Can have # additional Instilled Modifiers", ["type"] = "explicit", }, - [1920] = { + [1921] = { ["id"] = "explicit.stat_3418590244", ["text"] = "Can only be applied to Precursor Tower MapsCompleting the Tower makes all nearby Maps accessible", ["type"] = "explicit", }, - [1921] = { + [1922] = { ["id"] = "explicit.stat_4007482102", ["text"] = "Can't use Body Armour", ["type"] = "explicit", }, - [1922] = { + [1923] = { ["id"] = "explicit.stat_64726306", ["text"] = "Can't use other Rings", ["type"] = "explicit", }, - [1923] = { + [1924] = { ["id"] = "explicit.stat_1465760952", ["text"] = "Cannot Block", ["type"] = "explicit", }, - [1924] = { + [1925] = { ["id"] = "explicit.stat_474452755", ["text"] = "Cannot Evade Enemy Attacks", ["type"] = "explicit", }, - [1925] = { + [1926] = { ["id"] = "explicit.stat_4062529591", ["text"] = "Cannot Immobilise enemies", ["type"] = "explicit", }, - [1926] = { + [1927] = { ["id"] = "explicit.stat_1458880585", ["text"] = "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", ["type"] = "explicit", }, - [1927] = { + [1928] = { ["id"] = "explicit.stat_1436284579", ["text"] = "Cannot be Blinded", ["type"] = "explicit", }, - [1928] = { + [1929] = { ["id"] = "explicit.stat_331731406", ["text"] = "Cannot be Ignited", ["type"] = "explicit", }, - [1929] = { + [1930] = { ["id"] = "explicit.stat_1000739259", ["text"] = "Cannot be Light Stunned", ["type"] = "explicit", }, - [1930] = { + [1931] = { ["id"] = "explicit.stat_2252419505", ["text"] = "Cannot be Light Stunned by Deflected Hits", ["type"] = "explicit", }, - [1931] = { + [1932] = { ["id"] = "explicit.stat_3835551335", ["text"] = "Cannot be Poisoned", ["type"] = "explicit", }, - [1932] = { + [1933] = { ["id"] = "explicit.stat_491899612", ["text"] = "Cannot be Shocked", ["type"] = "explicit", }, - [1933] = { + [1934] = { ["id"] = "explicit.stat_1237409891", ["text"] = "Cannot be Used manually", ["type"] = "explicit", }, - [1934] = { + [1935] = { ["id"] = "explicit.stat_398335579", ["text"] = "Cannot be used while Manifested", ["type"] = "explicit", }, - [1935] = { + [1936] = { ["id"] = "explicit.stat_410952253", ["text"] = "Cannot have Energy Shield", ["type"] = "explicit", }, - [1936] = { + [1937] = { ["id"] = "explicit.stat_4056809290", ["text"] = "Cannot inflict Elemental Ailments", ["type"] = "explicit", }, - [1937] = { + [1938] = { ["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", }, - [1938] = { + [1939] = { ["id"] = "explicit.stat_1961849903", ["text"] = "Cannot use Projectile Attacks", ["type"] = "explicit", }, - [1939] = { + [1940] = { ["id"] = "explicit.stat_65135897", ["text"] = "Cannot use Shield Skills", ["type"] = "explicit", }, - [1940] = { + [1941] = { ["id"] = "explicit.stat_2598171606", ["text"] = "Cannot use Warcries", ["type"] = "explicit", }, - [1941] = { + [1942] = { ["id"] = "explicit.stat_791928121", ["text"] = "Causes #% increased Stun Buildup", ["type"] = "explicit", }, - [1942] = { + [1943] = { ["id"] = "explicit.stat_2091621414", ["text"] = "Causes Bleeding on Hit", ["type"] = "explicit", }, - [1943] = { + [1944] = { ["id"] = "explicit.stat_1559935218", ["text"] = "Causes Daze buildup equal to #% of Damage dealt", ["type"] = "explicit", }, - [1944] = { + [1945] = { ["id"] = "explicit.stat_769129523", ["text"] = "Causes Double Stun Buildup", ["type"] = "explicit", }, - [1945] = { + [1946] = { ["id"] = "explicit.stat_2957287092", ["text"] = "Chance to Block Damage is Lucky", ["type"] = "explicit", }, - [1946] = { + [1947] = { ["id"] = "explicit.stat_1675120891", ["text"] = "Chance to Deflect is Lucky while on Low Life", ["type"] = "explicit", }, - [1947] = { + [1948] = { ["id"] = "explicit.stat_2315177528", ["text"] = "Chaos Damage from Hits also Contributes to Electrocute Buildup", ["type"] = "explicit", }, - [1948] = { + [1949] = { ["id"] = "explicit.stat_2973498992", ["text"] = "Chaos Damage from Hits also Contributes to Freeze Buildup", ["type"] = "explicit", }, - [1949] = { + [1950] = { ["id"] = "explicit.stat_2418601510", ["text"] = "Chaos Damage from Hits also Contributes to Shock Chance", ["type"] = "explicit", }, - [1950] = { + [1951] = { ["id"] = "explicit.stat_3831171903|8", ["text"] = "Chaos Inoculation", ["type"] = "explicit", }, - [1951] = { + [1952] = { ["id"] = "explicit.stat_2439129490", ["text"] = "Chaos Resistance is zero", ["type"] = "explicit", }, - [1952] = { + [1953] = { ["id"] = "explicit.stat_3480095574", ["text"] = "Charms applied to you have #% increased Effect", ["type"] = "explicit", }, - [1953] = { + [1954] = { ["id"] = "explicit.stat_185580205", ["text"] = "Charms gain # charge per Second", ["type"] = "explicit", }, - [1954] = { + [1955] = { ["id"] = "explicit.stat_2620375641", ["text"] = "Charms use no Charges", ["type"] = "explicit", }, - [1955] = { + [1956] = { ["id"] = "explicit.stat_1261612903", ["text"] = "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", ["type"] = "explicit", }, - [1956] = { + [1957] = { ["id"] = "explicit.stat_4207433208", ["text"] = "Cold Resistance is unaffected by Area Penalties", ["type"] = "explicit", }, - [1957] = { + [1958] = { ["id"] = "explicit.stat_234296660", ["text"] = "Companions deal #% increased Damage", ["type"] = "explicit", }, - [1958] = { + [1959] = { ["id"] = "explicit.stat_1067622524", ["text"] = "Companions deal #% increased damage to your Marked targets", ["type"] = "explicit", }, - [1959] = { + [1960] = { ["id"] = "explicit.stat_666077204", ["text"] = "Companions have #% increased Attack Speed", ["type"] = "explicit", }, - [1960] = { + [1961] = { ["id"] = "explicit.stat_1805182458", ["text"] = "Companions have #% increased maximum Life", ["type"] = "explicit", }, - [1961] = { + [1962] = { ["id"] = "explicit.stat_3831171903|13", ["text"] = "Conduit", ["type"] = "explicit", }, - [1962] = { + [1963] = { ["id"] = "explicit.stat_1938221597", ["text"] = "Conquered Attribute Passive Skills also grant # to Dexterity", ["type"] = "explicit", }, - [1963] = { + [1964] = { ["id"] = "explicit.stat_3116427713", ["text"] = "Conquered Attribute Passive Skills also grant # to Intelligence", ["type"] = "explicit", }, - [1964] = { + [1965] = { ["id"] = "explicit.stat_3871530702", ["text"] = "Conquered Attribute Passive Skills also grant # to Strength", ["type"] = "explicit", }, - [1965] = { + [1966] = { ["id"] = "explicit.stat_1119086588", ["text"] = "Conquered Attribute Passive Skills also grant # to Tribute", ["type"] = "explicit", }, - [1966] = { + [1967] = { ["id"] = "explicit.stat_2552484522", ["text"] = "Conquered Attribute Passive Skills also grant # to all Attributes", ["type"] = "explicit", }, - [1967] = { + [1968] = { ["id"] = "explicit.stat_970480050", ["text"] = "Conquered Small Passive Skills also grant #% increased Armour", ["type"] = "explicit", }, - [1968] = { + [1969] = { ["id"] = "explicit.stat_8816597", ["text"] = "Conquered Small Passive Skills also grant #% increased Attack damage", ["type"] = "explicit", }, - [1969] = { + [1970] = { ["id"] = "explicit.stat_2601021356", ["text"] = "Conquered Small Passive Skills also grant #% increased Chaos damage", ["type"] = "explicit", }, - [1970] = { + [1971] = { ["id"] = "explicit.stat_1283490138", ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", ["type"] = "explicit", }, - [1971] = { + [1972] = { ["id"] = "explicit.stat_4240116297", ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Damage", ["type"] = "explicit", }, - [1972] = { + [1973] = { ["id"] = "explicit.stat_2780670304", ["text"] = "Conquered Small Passive Skills also grant #% increased Energy Shield", ["type"] = "explicit", }, - [1973] = { + [1974] = { ["id"] = "explicit.stat_468694293", ["text"] = "Conquered Small Passive Skills also grant #% increased Evasion Rating", ["type"] = "explicit", }, - [1974] = { + [1975] = { ["id"] = "explicit.stat_4264952559", ["text"] = "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", ["type"] = "explicit", }, - [1975] = { + [1976] = { ["id"] = "explicit.stat_1818915622", ["text"] = "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", ["type"] = "explicit", }, - [1976] = { + [1977] = { ["id"] = "explicit.stat_1829333149", ["text"] = "Conquered Small Passive Skills also grant #% increased Physical damage", ["type"] = "explicit", }, - [1977] = { + [1978] = { ["id"] = "explicit.stat_3038857426", ["text"] = "Conquered Small Passive Skills also grant #% increased Spell damage", ["type"] = "explicit", }, - [1978] = { + [1979] = { ["id"] = "explicit.stat_2475870935", ["text"] = "Conquered Small Passive Skills also grant #% increased Stun Threshold", ["type"] = "explicit", }, - [1979] = { + [1980] = { ["id"] = "explicit.stat_3343033032", ["text"] = "Conquered Small Passive Skills also grant Minions deal #% increased damage", ["type"] = "explicit", }, - [1980] = { + [1981] = { ["id"] = "explicit.stat_1683568809", ["text"] = "Convert #% of Fire Damage with Mace Skills to Cold Damage", ["type"] = "explicit", }, - [1981] = { + [1982] = { ["id"] = "explicit.stat_4274637468", ["text"] = "Convert #% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%", ["type"] = "explicit", }, - [1982] = { + [1983] = { ["id"] = "explicit.stat_2896801635", ["text"] = "Convert 100% of maximum Energy Shield to maximum Divinity", ["type"] = "explicit", }, - [1983] = { + [1984] = { ["id"] = "explicit.stat_3351912431", ["text"] = "Convert All Armour to Evasion Rating", ["type"] = "explicit", }, - [1984] = { + [1985] = { ["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", }, - [1985] = { + [1986] = { ["id"] = "explicit.stat_1658498488", ["text"] = "Corrupted Blood cannot be inflicted on you", ["type"] = "explicit", }, - [1986] = { + [1987] = { ["id"] = "explicit.stat_891466814", ["text"] = "Create a Fragment of Divinity in your Presence every 4 seconds", ["type"] = "explicit", }, - [1987] = { + [1988] = { ["id"] = "explicit.stat_3849649145", ["text"] = "Creates Consecrated Ground on use", ["type"] = "explicit", }, - [1988] = { + [1989] = { ["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", }, - [1989] = { + [1990] = { ["id"] = "explicit.stat_3831171903|26", ["text"] = "Crimson Assault", ["type"] = "explicit", }, - [1990] = { + [1991] = { ["id"] = "explicit.stat_1289045485", ["text"] = "Critical Hits Ignore Enemy Monster Lightning Resistance", ["type"] = "explicit", }, - [1991] = { + [1992] = { ["id"] = "explicit.stat_62849030", ["text"] = "Critical Hits Poison the enemy", ["type"] = "explicit", }, - [1992] = { + [1993] = { ["id"] = "explicit.stat_3414998042", ["text"] = "Critical Hits cannot Extract Impale", ["type"] = "explicit", }, - [1993] = { + [1994] = { ["id"] = "explicit.stat_1094937621", ["text"] = "Critical Hits ignore Enemy Monster Elemental Resistances", ["type"] = "explicit", }, - [1994] = { + [1995] = { ["id"] = "explicit.stat_3058238353", ["text"] = "Critical Hits inflict Impale", ["type"] = "explicit", }, - [1995] = { + [1996] = { ["id"] = "explicit.stat_1550131834", ["text"] = "Critical Hits with Spells apply # Stack of Critical Weakness", ["type"] = "explicit", }, - [1996] = { + [1997] = { ["id"] = "explicit.stat_2524254339", ["text"] = "Culling Strike", ["type"] = "explicit", }, - [1997] = { + [1998] = { ["id"] = "explicit.stat_1158324489", ["text"] = "Culling Strike against Frozen Enemies", ["type"] = "explicit", }, - [1998] = { + [1999] = { ["id"] = "explicit.stat_2378065031", ["text"] = "Curse Skills have #% increased Cast Speed", ["type"] = "explicit", }, - [1999] = { + [2000] = { ["id"] = "explicit.stat_3751072557", ["text"] = "Curses have no Activation Delay", ["type"] = "explicit", }, - [2000] = { + [2001] = { ["id"] = "explicit.stat_4275855121", ["text"] = "Curses you inflict are reflected back to you", ["type"] = "explicit", }, - [2001] = { + [2002] = { ["id"] = "explicit.stat_1367119630", ["text"] = "Curses you inflict can affect Hexproof Enemies", ["type"] = "explicit", }, - [2002] = { + [2003] = { ["id"] = "explicit.stat_2609822974", ["text"] = "Curses you inflict have infinite Duration", ["type"] = "explicit", }, - [2003] = { + [2004] = { ["id"] = "explicit.stat_1793470535", ["text"] = "Curses you inflict ignore Curse limit", ["type"] = "explicit", }, - [2004] = { + [2005] = { ["id"] = "explicit.stat_986616727", ["text"] = "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", ["type"] = "explicit", }, - [2005] = { + [2006] = { ["id"] = "explicit.stat_2875218423", ["text"] = "Damage Blocked is Recouped as Mana", ["type"] = "explicit", }, - [2006] = { + [2007] = { ["id"] = "explicit.stat_3417711605", ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "explicit", }, - [2007] = { + [2008] = { ["id"] = "explicit.stat_2101383955", ["text"] = "Damage Penetrates #% Elemental Resistances", ["type"] = "explicit", }, - [2008] = { + [2009] = { ["id"] = "explicit.stat_2653955271", ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "explicit", }, - [2009] = { + [2010] = { ["id"] = "explicit.stat_818778753", ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "explicit", }, - [2010] = { + [2011] = { ["id"] = "explicit.stat_3753748365", ["text"] = "Damage of Enemies Hitting you is Unlucky while you are on Low Life", ["type"] = "explicit", }, - [2011] = { + [2012] = { ["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", }, - [2012] = { + [2013] = { ["id"] = "explicit.stat_2886108529", ["text"] = "Damage over Time cannot bypass your Energy Shield", ["type"] = "explicit", }, - [2013] = { + [2014] = { ["id"] = "explicit.stat_2432200638", ["text"] = "Damage taken Recouped as Life is also Recouped as Energy Shield", ["type"] = "explicit", }, - [2014] = { + [2015] = { ["id"] = "explicit.stat_538241406", ["text"] = "Damaging Ailments deal damage #% faster", ["type"] = "explicit", }, - [2015] = { + [2016] = { ["id"] = "explicit.stat_3831171903|17", ["text"] = "Dance With Death", ["type"] = "explicit", }, - [2016] = { - ["id"] = "explicit.stat_2933846633", - ["text"] = "Dazes on Hit", - ["type"] = "explicit", - }, [2017] = { ["id"] = "explicit.stat_3146310524", ["text"] = "Dazes on Hit", ["type"] = "explicit", }, [2018] = { + ["id"] = "explicit.stat_2933846633", + ["text"] = "Dazes on Hit", + ["type"] = "explicit", + }, + [2019] = { ["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", }, - [2019] = { + [2020] = { ["id"] = "explicit.stat_2301852600", ["text"] = "Deal #% of Overkill damage to enemies within 2 metres of the enemy killed", ["type"] = "explicit", }, - [2020] = { + [2021] = { ["id"] = "explicit.stat_2998305364", ["text"] = "Deal no Elemental Damage", ["type"] = "explicit", }, - [2021] = { + [2022] = { ["id"] = "explicit.stat_2107791433", ["text"] = "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", ["type"] = "explicit", }, - [2022] = { + [2023] = { ["id"] = "explicit.stat_3311259821", ["text"] = "Deals #% of current Mana as Chaos Damage to you when Effect ends", ["type"] = "explicit", }, - [2023] = { + [2024] = { ["id"] = "explicit.stat_541021467", ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", ["type"] = "explicit", }, - [2024] = { + [2025] = { ["id"] = "explicit.stat_1238227257", ["text"] = "Debuffs on you expire #% faster", ["type"] = "explicit", }, - [2025] = { + [2026] = { ["id"] = "explicit.stat_3650992555", ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", ["type"] = "explicit", }, - [2026] = { + [2027] = { ["id"] = "explicit.stat_3872034802", ["text"] = "Decimating Strike", ["type"] = "explicit", }, - [2027] = { + [2028] = { ["id"] = "explicit.stat_679087890", ["text"] = "Defend against Hits as though you had #% more Armour per 1% current Energy Shield", ["type"] = "explicit", }, - [2028] = { + [2029] = { ["id"] = "explicit.stat_1539671749", ["text"] = "Defend with #% of Armour while you have Energy Shield", ["type"] = "explicit", }, - [2029] = { + [2030] = { ["id"] = "explicit.stat_3387008487", ["text"] = "Defend with 200% of Armour", ["type"] = "explicit", }, - [2030] = { + [2031] = { ["id"] = "explicit.stat_3138344128", ["text"] = "Defend with 200% of Armour during effect", ["type"] = "explicit", }, - [2031] = { + [2032] = { ["id"] = "explicit.stat_1345835998", ["text"] = "Deferring Favours at Ritual Altars in Area costs #% increased Tribute", ["type"] = "explicit", }, - [2032] = { + [2033] = { ["id"] = "explicit.stat_1345835998", ["text"] = "Deferring Favours at Ritual Altars in your Maps costs #% increased Tribute", ["type"] = "explicit", }, - [2033] = { + [2034] = { ["id"] = "explicit.stat_3428124128", ["text"] = "Delirious Monsters Killed in Area provide #% increased Reward Progress", ["type"] = "explicit", }, - [2034] = { + [2035] = { ["id"] = "explicit.stat_3428124128", ["text"] = "Delirious Monsters killed in your Maps provide #% increased Reward Progress", ["type"] = "explicit", }, - [2035] = { + [2036] = { ["id"] = "explicit.stat_3962960008", ["text"] = "Delirium Encounters in Area are #% more likely to spawn Unique Bosses", ["type"] = "explicit", }, - [2036] = { + [2037] = { ["id"] = "explicit.stat_1770833858", ["text"] = "Delirium Encounters in Area have #% chance to generate an additional Reward", ["type"] = "explicit", }, - [2037] = { + [2038] = { ["id"] = "explicit.stat_1770833858", ["text"] = "Delirium Encounters in your Maps have #% chance to generate an additional Reward", ["type"] = "explicit", }, - [2038] = { + [2039] = { ["id"] = "explicit.stat_3350944114", ["text"] = "Delirium Fog dissipates #% faster", ["type"] = "explicit", }, - [2039] = { + [2040] = { ["id"] = "explicit.stat_3350944114", ["text"] = "Delirium Fog in Area dissipates #% faster", ["type"] = "explicit", }, - [2040] = { - ["id"] = "explicit.stat_3226351972", - ["text"] = "Delirium Fog in Area lasts # additional seconds before dissipating", - ["type"] = "explicit", - }, [2041] = { ["id"] = "explicit.stat_1174954559", ["text"] = "Delirium Fog in Area lasts # additional seconds before dissipating", ["type"] = "explicit", }, [2042] = { + ["id"] = "explicit.stat_3226351972", + ["text"] = "Delirium Fog in Area lasts # additional seconds before dissipating", + ["type"] = "explicit", + }, + [2043] = { ["id"] = "explicit.stat_551040294", ["text"] = "Delirium Fog in Area spawns #% increased Fracturing Mirrors", ["type"] = "explicit", }, - [2043] = { + [2044] = { ["id"] = "explicit.stat_1174954559", ["text"] = "Delirium Fog in your Maps lasts # additional seconds before dissipating", ["type"] = "explicit", }, - [2044] = { + [2045] = { ["id"] = "explicit.stat_3226351972", ["text"] = "Delirium Fog in your Maps lasts # additional seconds before dissipating", ["type"] = "explicit", }, - [2045] = { + [2046] = { ["id"] = "explicit.stat_1084853859", ["text"] = "Delirium Fog in your Maps never dissipates", ["type"] = "explicit", }, - [2046] = { + [2047] = { ["id"] = "explicit.stat_3465791711", ["text"] = "Delirium Monsters in Area have #% increased Pack Size", ["type"] = "explicit", }, - [2047] = { + [2048] = { ["id"] = "explicit.stat_3465791711", ["text"] = "Delirium Monsters in your Maps have #% increased Pack Size", ["type"] = "explicit", }, - [2048] = { + [2049] = { ["id"] = "explicit.stat_1769611692", ["text"] = "Delirium in Area increases #% faster with distance from the mirror", ["type"] = "explicit", }, - [2049] = { + [2050] = { ["id"] = "explicit.stat_1769611692", ["text"] = "Delirium in your Maps increases #% faster with distance from the mirror", ["type"] = "explicit", }, - [2050] = { + [2051] = { ["id"] = "explicit.stat_2971398565", ["text"] = "Divine Flight", ["type"] = "explicit", }, - [2051] = { + [2052] = { ["id"] = "explicit.stat_3518087336", ["text"] = "Dodge Roll avoids all Hits", ["type"] = "explicit", }, - [2052] = { + [2053] = { ["id"] = "explicit.stat_1298316550", ["text"] = "Dodge Roll passes through Enemies", ["type"] = "explicit", }, - [2053] = { + [2054] = { ["id"] = "explicit.stat_3686997387", ["text"] = "Double Stun Threshold while Shield is Raised", ["type"] = "explicit", }, - [2054] = { + [2055] = { ["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", }, - [2055] = { + [2056] = { ["id"] = "explicit.stat_65133983", ["text"] = "Drop Shocked Ground while moving, lasting 8 seconds", ["type"] = "explicit", }, - [2056] = { + [2057] = { ["id"] = "explicit.stat_3891922348", ["text"] = "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", ["type"] = "explicit", }, - [2057] = { + [2058] = { ["id"] = "explicit.stat_2103621252", ["text"] = "Eat a Soul when you Hit a Unique Enemy, no more than once every second", ["type"] = "explicit", }, - [2058] = { + [2059] = { ["id"] = "explicit.stat_2932359713", ["text"] = "Effect is not removed when Unreserved Life is Filled", ["type"] = "explicit", }, - [2059] = { + [2060] = { ["id"] = "explicit.stat_3969608626", ["text"] = "Effect is not removed when Unreserved Mana is Filled", ["type"] = "explicit", }, - [2060] = { + [2061] = { ["id"] = "explicit.stat_3831171903|9", ["text"] = "Eldritch Battery", ["type"] = "explicit", }, - [2061] = { + [2062] = { ["id"] = "explicit.stat_2262736444", ["text"] = "Eldritch Battery", ["type"] = "explicit", }, - [2062] = { + [2063] = { ["id"] = "explicit.stat_1000566389", ["text"] = "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", ["type"] = "explicit", }, - [2063] = { + [2064] = { ["id"] = "explicit.stat_1370804479", ["text"] = "Elemental Ailments other than Freeze you inflict are Reflected to you", ["type"] = "explicit", }, - [2064] = { + [2065] = { ["id"] = "explicit.stat_2678924815", ["text"] = "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance", ["type"] = "explicit", }, - [2065] = { + [2066] = { ["id"] = "explicit.stat_3831171903|23", ["text"] = "Elemental Equilibrium", ["type"] = "explicit", }, - [2066] = { + [2067] = { ["id"] = "explicit.stat_1569101201", ["text"] = "Empowered Attacks deal #% increased Damage", ["type"] = "explicit", }, - [2067] = { + [2068] = { ["id"] = "explicit.stat_3119292058", ["text"] = "Enemies Chilled by your Hits can be Shattered as though Frozen", ["type"] = "explicit", }, - [2068] = { + [2069] = { ["id"] = "explicit.stat_1816894864", ["text"] = "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", ["type"] = "explicit", }, - [2069] = { + [2070] = { ["id"] = "explicit.stat_849085925", ["text"] = "Enemies Frozen by you take #% increased Damage", ["type"] = "explicit", }, - [2070] = { + [2071] = { ["id"] = "explicit.stat_1746561819", ["text"] = "Enemies Hindered by you take #% increased Chaos Damage", ["type"] = "explicit", }, - [2071] = { + [2072] = { ["id"] = "explicit.stat_212649958", ["text"] = "Enemies Hindered by you take #% increased Elemental Damage", ["type"] = "explicit", }, - [2072] = { + [2073] = { ["id"] = "explicit.stat_359357545", ["text"] = "Enemies Hindered by you take #% increased Physical Damage", ["type"] = "explicit", }, - [2073] = { + [2074] = { ["id"] = "explicit.stat_1613322341", ["text"] = "Enemies Immobilised by you take #% less Damage", ["type"] = "explicit", }, - [2074] = { + [2075] = { ["id"] = "explicit.stat_381470861", ["text"] = "Enemies are Culled on Block", ["type"] = "explicit", }, - [2075] = { + [2076] = { ["id"] = "explicit.stat_3868746097", ["text"] = "Enemies have an Accuracy Penalty against you based on Distance", ["type"] = "explicit", }, - [2076] = { + [2077] = { ["id"] = "explicit.stat_1224838456", ["text"] = "Enemies in your Presence Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, - [2077] = { + [2078] = { ["id"] = "explicit.stat_2786852525", ["text"] = "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", ["type"] = "explicit", }, - [2078] = { + [2079] = { ["id"] = "explicit.stat_2080373320", ["text"] = "Enemies in your Presence are Blinded", ["type"] = "explicit", }, - [2079] = { + [2080] = { ["id"] = "explicit.stat_1464727508", ["text"] = "Enemies in your Presence are Blinded", ["type"] = "explicit", }, - [2080] = { + [2081] = { ["id"] = "explicit.stat_2890401248", ["text"] = "Enemies in your Presence are Hindered", ["type"] = "explicit", }, - [2081] = { + [2082] = { ["id"] = "explicit.stat_1433051415", ["text"] = "Enemies in your Presence are Ignited as though dealt # Base Fire Damage", ["type"] = "explicit", }, - [2082] = { + [2083] = { ["id"] = "explicit.stat_3491722585", ["text"] = "Enemies in your Presence are Intimidated", ["type"] = "explicit", }, - [2083] = { + [2084] = { ["id"] = "explicit.stat_1285684287", ["text"] = "Enemies in your Presence count as being on Low Life", ["type"] = "explicit", }, - [2084] = { + [2085] = { ["id"] = "explicit.stat_2836928993", ["text"] = "Enemies in your Presence count as having double Power", ["type"] = "explicit", }, - [2085] = { + [2086] = { ["id"] = "explicit.stat_3628041050", ["text"] = "Enemies in your Presence gain 1 Gruelling Madness each second", ["type"] = "explicit", }, - [2086] = { + [2087] = { ["id"] = "explicit.stat_990363519", ["text"] = "Enemies in your Presence have #% to Fire Resistance", ["type"] = "explicit", }, - [2087] = { + [2088] = { ["id"] = "explicit.stat_724806967", ["text"] = "Enemies in your Presence have Exposure", ["type"] = "explicit", }, - [2088] = { + [2089] = { ["id"] = "explicit.stat_1546580830", ["text"] = "Enemies in your Presence have Lightning Resistance equal to yours", ["type"] = "explicit", }, - [2089] = { + [2090] = { ["id"] = "explicit.stat_1827379101", ["text"] = "Enemies in your Presence have additional Power equal to their Gruelling Madness", ["type"] = "explicit", }, - [2090] = { + [2091] = { ["id"] = "explicit.stat_1953536251", ["text"] = "Enemies in your Presence have at least #% of Life Reserved", ["type"] = "explicit", }, - [2091] = { + [2092] = { ["id"] = "explicit.stat_83011992", ["text"] = "Enemies in your Presence have no Elemental Resistances", ["type"] = "explicit", }, - [2092] = { + [2093] = { ["id"] = "explicit.stat_1576794517", ["text"] = "Enemies in your Presence killed by anyone count as being killed by you instead", ["type"] = "explicit", }, - [2093] = { + [2094] = { ["id"] = "explicit.stat_1509533589", ["text"] = "Enemies take #% increased Damage for each Elemental Ailment type amongyour Ailments on them", ["type"] = "explicit", }, - [2094] = { + [2095] = { ["id"] = "explicit.stat_1772929282", ["text"] = "Enemies you Curse have #% to Chaos Resistance", ["type"] = "explicit", }, - [2095] = { + [2096] = { ["id"] = "explicit.stat_2083058281", ["text"] = "Enemies you Mark take #% increased Damage", ["type"] = "explicit", }, - [2096] = { + [2097] = { ["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", }, - [2097] = { + [2098] = { ["id"] = "explicit.stat_793801176", ["text"] = "Energy Generation is doubled", ["type"] = "explicit", }, - [2098] = { + [2099] = { ["id"] = "explicit.stat_1419390131", ["text"] = "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", ["type"] = "explicit", }, - [2099] = { + [2100] = { ["id"] = "explicit.stat_1056492907", ["text"] = "Energy Shield Recharge starts on use", ["type"] = "explicit", }, - [2100] = { + [2101] = { ["id"] = "explicit.stat_2402413437", ["text"] = "Energy Shield Recharge starts when you use a Mana Flask", ["type"] = "explicit", }, - [2101] = { + [2102] = { ["id"] = "explicit.stat_2147773348", ["text"] = "Energy Shield is increased by Uncapped Cold Resistance", ["type"] = "explicit", }, - [2102] = { + [2103] = { ["id"] = "explicit.stat_752930724", ["text"] = "Equipment and Skill Gems have #% increased Attribute Requirements", ["type"] = "explicit", }, - [2103] = { + [2104] = { ["id"] = "explicit.stat_2480151124", ["text"] = "Equipment has no Attribute Requirements", ["type"] = "explicit", }, - [2104] = { + [2105] = { ["id"] = "explicit.stat_3831171903|15", ["text"] = "Eternal Youth", ["type"] = "explicit", }, - [2105] = { + [2106] = { ["id"] = "explicit.stat_1272938854", ["text"] = "Evasion Rating is doubled if you have not been Hit Recently", ["type"] = "explicit", }, - [2106] = { + [2107] = { ["id"] = "explicit.stat_419098854", ["text"] = "Evasion Rating is increased by Uncapped Lightning Resistance", ["type"] = "explicit", }, - [2107] = { + [2108] = { ["id"] = "explicit.stat_145598447", ["text"] = "Everlasting Sacrifice", ["type"] = "explicit", }, - [2108] = { + [2109] = { ["id"] = "explicit.stat_2625554454", ["text"] = "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", ["type"] = "explicit", }, - [2109] = { + [2110] = { ["id"] = "explicit.stat_2879778895", ["text"] = "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", ["type"] = "explicit", }, - [2110] = { + [2111] = { ["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", }, - [2111] = { + [2112] = { ["id"] = "explicit.stat_3764198549", ["text"] = "Every 3 seconds, Consume a nearby Corpse to Recover #% of maximum Life", ["type"] = "explicit", }, - [2112] = { + [2113] = { ["id"] = "explicit.stat_1457411584", ["text"] = "Every 4 seconds, Recover 1 Life for every # Life Recovery per second from Regeneration", ["type"] = "explicit", }, - [2113] = { + [2114] = { ["id"] = "explicit.stat_1895552497", ["text"] = "Every 5 Rage also grants #% of Damage taken Recouped as Life", ["type"] = "explicit", }, - [2114] = { + [2115] = { ["id"] = "explicit.stat_2995914769", ["text"] = "Every Rage also grants #% increased Armour", ["type"] = "explicit", }, - [2115] = { + [2116] = { ["id"] = "explicit.stat_352044736", ["text"] = "Every Rage also grants #% increased Stun Threshold", ["type"] = "explicit", }, - [2116] = { + [2117] = { ["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", }, - [2117] = { + [2118] = { ["id"] = "explicit.stat_1052498387", ["text"] = "Every second, inflicts Critical Weakness on enemies in your Presence for # second", ["type"] = "explicit", }, - [2118] = { + [2119] = { ["id"] = "explicit.stat_636464211", ["text"] = "Excess Life Recovery added as Guard for # seconds", ["type"] = "explicit", }, - [2119] = { + [2120] = { ["id"] = "explicit.stat_999436592", ["text"] = "Excess Life Recovery from Leech is applied to Energy Shield", ["type"] = "explicit", }, - [2120] = { + [2121] = { ["id"] = "explicit.stat_144770454", ["text"] = "Expedition Monsters in your Maps spawn with half of their Life missing", ["type"] = "explicit", }, - [2121] = { + [2122] = { ["id"] = "explicit.stat_3753446846", ["text"] = "Expeditions in Area have # Remnants", ["type"] = "explicit", }, - [2122] = { + [2123] = { ["id"] = "explicit.stat_3753446846", ["text"] = "Expeditions in your Maps have # Remnant", ["type"] = "explicit", }, - [2123] = { + [2124] = { ["id"] = "explicit.stat_28208665", ["text"] = "Favours Deferred at Ritual Altars in Area reappear #% sooner", ["type"] = "explicit", }, - [2124] = { + [2125] = { ["id"] = "explicit.stat_28208665", ["text"] = "Favours Deferred at Ritual Altars in your Maps reappear #% sooner", ["type"] = "explicit", }, - [2125] = { + [2126] = { ["id"] = "explicit.stat_937291386", ["text"] = "Favours Rerolled at Ritual Altars in Area have #% chance to cost no Tribute", ["type"] = "explicit", }, - [2126] = { + [2127] = { ["id"] = "explicit.stat_937291386", ["text"] = "Favours Rerolled at Ritual Altars in your Maps have #% chance to cost no Tribute", ["type"] = "explicit", }, - [2127] = { + [2128] = { ["id"] = "explicit.stat_1228222525", ["text"] = "Favours at Ritual Altars in Area costs #% increased Tribute", ["type"] = "explicit", }, - [2128] = { + [2129] = { ["id"] = "explicit.stat_1221641885", ["text"] = "Fire Damage also Contributes to Bleeding Magnitude", ["type"] = "explicit", }, - [2129] = { + [2130] = { ["id"] = "explicit.stat_2949096603", ["text"] = "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", ["type"] = "explicit", }, - [2130] = { + [2131] = { ["id"] = "explicit.stat_3247805335", ["text"] = "Fire Resistance is unaffected by Area Penalties", ["type"] = "explicit", }, - [2131] = { + [2132] = { ["id"] = "explicit.stat_1540254896", ["text"] = "Flammability Magnitude is doubled", ["type"] = "explicit", }, - [2132] = { + [2133] = { ["id"] = "explicit.stat_265717301", ["text"] = "Flasks do not recover Life", ["type"] = "explicit", }, - [2133] = { + [2134] = { ["id"] = "explicit.stat_2260055669", ["text"] = "Freezes Enemies that are on Full Life", ["type"] = "explicit", }, - [2134] = { + [2135] = { ["id"] = "explicit.stat_3278008231", ["text"] = "Fully Armour Broken enemies you kill with Hits Shatter", ["type"] = "explicit", }, - [2135] = { + [2136] = { ["id"] = "explicit.stat_3841984913", ["text"] = "Gain # Fragile Regrowth each second", ["type"] = "explicit", }, - [2136] = { + [2137] = { ["id"] = "explicit.stat_2443032293", ["text"] = "Gain # Guard for 0.5 seconds per Combo expended when using Skills", ["type"] = "explicit", }, - [2137] = { + [2138] = { ["id"] = "explicit.stat_2797971005", ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "explicit", }, - [2138] = { + [2139] = { ["id"] = "explicit.stat_3695891184", ["text"] = "Gain # Life per enemy killed", ["type"] = "explicit", }, - [2139] = { + [2140] = { ["id"] = "explicit.stat_820939409", ["text"] = "Gain # Mana per Enemy Hit with Attacks", ["type"] = "explicit", }, - [2140] = { + [2141] = { ["id"] = "explicit.stat_1368271171", ["text"] = "Gain # Mana per enemy killed", ["type"] = "explicit", }, - [2141] = { + [2142] = { ["id"] = "explicit.stat_2258007247", ["text"] = "Gain # Rage on Hit", ["type"] = "explicit", }, - [2142] = { + [2143] = { ["id"] = "explicit.stat_2709367754", ["text"] = "Gain # Rage on Melee Hit", ["type"] = "explicit", }, - [2143] = { + [2144] = { ["id"] = "explicit.stat_1466716929", ["text"] = "Gain # Rage when Critically Hit by an Enemy", ["type"] = "explicit", }, - [2144] = { + [2145] = { ["id"] = "explicit.stat_3292710273", ["text"] = "Gain # Rage when Hit by an Enemy", ["type"] = "explicit", }, - [2145] = { + [2146] = { ["id"] = "explicit.stat_555311715", ["text"] = "Gain # Rage when Hit by an Enemy during effect", ["type"] = "explicit", }, - [2146] = { + [2147] = { ["id"] = "explicit.stat_2469544361", ["text"] = "Gain #% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", ["type"] = "explicit", }, - [2147] = { + [2148] = { ["id"] = "explicit.stat_997343726", ["text"] = "Gain #% of Damage as Chaos Damage per Undead Minion", ["type"] = "explicit", }, - [2148] = { + [2149] = { ["id"] = "explicit.stat_3398787959", ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, - [2149] = { + [2150] = { ["id"] = "explicit.stat_2505884597", ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "explicit", }, - [2150] = { + [2151] = { ["id"] = "explicit.stat_825116955", ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", ["type"] = "explicit", }, - [2151] = { + [2152] = { ["id"] = "explicit.stat_3015669065", ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, - [2152] = { + [2153] = { ["id"] = "explicit.stat_589361270", ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", ["type"] = "explicit", }, - [2153] = { + [2154] = { ["id"] = "explicit.stat_1321054058", ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", ["type"] = "explicit", }, - [2154] = { + [2155] = { ["id"] = "explicit.stat_3278136794", ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "explicit", }, - [2155] = { + [2156] = { ["id"] = "explicit.stat_323800555", ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", ["type"] = "explicit", }, - [2156] = { + [2157] = { ["id"] = "explicit.stat_4019237939", ["text"] = "Gain #% of Damage as Extra Physical Damage", ["type"] = "explicit", }, - [2157] = { + [2158] = { ["id"] = "explicit.stat_1158842087", ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", ["type"] = "explicit", }, - [2158] = { + [2159] = { ["id"] = "explicit.stat_701564564", ["text"] = "Gain #% of Elemental Damage as Extra Fire Damage", ["type"] = "explicit", }, - [2159] = { + [2160] = { ["id"] = "explicit.stat_3550887155", ["text"] = "Gain #% of Elemental Damage as Extra Lightning Damage", ["type"] = "explicit", }, - [2160] = { + [2161] = { ["id"] = "explicit.stat_1546604934", ["text"] = "Gain #% of Evasion Rating as extra Armour", ["type"] = "explicit", }, - [2161] = { + [2162] = { ["id"] = "explicit.stat_514290151", ["text"] = "Gain #% of Maximum Mana as Armour", ["type"] = "explicit", }, - [2162] = { + [2163] = { ["id"] = "explicit.stat_758893621", ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", ["type"] = "explicit", }, - [2163] = { + [2164] = { ["id"] = "explicit.stat_915546383", ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", ["type"] = "explicit", }, - [2164] = { + [2165] = { ["id"] = "explicit.stat_1228337241", ["text"] = "Gain #% of maximum Life as Extra maximum Energy Shield", ["type"] = "explicit", }, - [2165] = { + [2166] = { ["id"] = "explicit.stat_3027830452", ["text"] = "Gain #% of maximum Mana as Extra maximum Energy Shield", ["type"] = "explicit", }, - [2166] = { + [2167] = { ["id"] = "explicit.stat_796381300", ["text"] = "Gain 0% to #% increased Movement Speed at random when Hit, until Hit again", ["type"] = "explicit", }, - [2167] = { + [2168] = { ["id"] = "explicit.stat_2482970488", ["text"] = "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", ["type"] = "explicit", }, - [2168] = { + [2169] = { ["id"] = "explicit.stat_1273508088", ["text"] = "Gain 1 Druidic Prowess for every 20 total Rage spent", ["type"] = "explicit", }, - [2169] = { + [2170] = { ["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", }, - [2170] = { + [2171] = { ["id"] = "explicit.stat_3775736880", ["text"] = "Gain 1 Fear Incarnate when you Cull a target", ["type"] = "explicit", }, - [2171] = { + [2172] = { ["id"] = "explicit.stat_343703314", ["text"] = "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill", ["type"] = "explicit", }, - [2172] = { + [2173] = { ["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", }, - [2173] = { + [2174] = { ["id"] = "explicit.stat_3170380905", ["text"] = "Gain 1% of damage as Fire damage per #% Chance to Block", ["type"] = "explicit", }, - [2174] = { + [2175] = { ["id"] = "explicit.stat_3625518318", ["text"] = "Gain Arcane Surge when a Minion Dies", ["type"] = "explicit", }, - [2175] = { + [2176] = { ["id"] = "explicit.stat_1435496528", ["text"] = "Gain Cold Thorns Damage equal to #% of your maximum Mana", ["type"] = "explicit", }, - [2176] = { + [2177] = { ["id"] = "explicit.stat_1752419596", ["text"] = "Gain Deflection Rating equal to #% of Armour", ["type"] = "explicit", }, - [2177] = { + [2178] = { ["id"] = "explicit.stat_3033371881", ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", ["type"] = "explicit", }, - [2178] = { + [2179] = { ["id"] = "explicit.stat_4010198893", ["text"] = "Gain Finality for # seconds per Combo expended when using Skills", ["type"] = "explicit", }, - [2179] = { + [2180] = { ["id"] = "explicit.stat_469006068", ["text"] = "Gain Guard equal to #% of missing Energy Shield for 4 seconds when you Dodge Roll", ["type"] = "explicit", }, - [2180] = { + [2181] = { ["id"] = "explicit.stat_3605616594", ["text"] = "Gain Onslaught for 4 seconds when a Minion Dies", ["type"] = "explicit", }, - [2181] = { + [2182] = { ["id"] = "explicit.stat_2148576938", ["text"] = "Gain Overencumbrance for 4 seconds when you Dodge Roll", ["type"] = "explicit", }, - [2182] = { + [2183] = { ["id"] = "explicit.stat_2163764037", ["text"] = "Gain Physical Thorns damage equal to #% - #% of maximum Life", ["type"] = "explicit", }, - [2183] = { + [2184] = { ["id"] = "explicit.stat_1793740180", ["text"] = "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", ["type"] = "explicit", }, - [2184] = { + [2185] = { ["id"] = "explicit.stat_2459662130", ["text"] = "Gain Tailwind on Critical Hit, no more than once per second", ["type"] = "explicit", }, - [2185] = { + [2186] = { ["id"] = "explicit.stat_2931872063", ["text"] = "Gain Volatility on Critical Hit", ["type"] = "explicit", }, - [2186] = { + [2187] = { ["id"] = "explicit.stat_1099200124", ["text"] = "Gain a Power Charge every Second if you haven't lost Power Charges Recently", ["type"] = "explicit", }, - [2187] = { + [2188] = { ["id"] = "explicit.stat_2284588585", ["text"] = "Gain a random Charge on reaching Maximum Rage, no more than once every # seconds", ["type"] = "explicit", }, - [2188] = { + [2189] = { ["id"] = "explicit.stat_3398301358", ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, - [2189] = { + [2190] = { ["id"] = "explicit.stat_416040624", ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, - [2190] = { + [2191] = { ["id"] = "explicit.stat_4187571952", ["text"] = "Gain no inherent bonus from Intelligence", ["type"] = "explicit", }, - [2191] = { + [2192] = { ["id"] = "explicit.stat_1873752457", ["text"] = "Gains # Charges per Second", ["type"] = "explicit", }, - [2192] = { + [2193] = { ["id"] = "explicit.stat_1875158664", ["text"] = "Giant's Blood", ["type"] = "explicit", }, - [2193] = { + [2194] = { ["id"] = "explicit.stat_3831171903|2", ["text"] = "Giant's Blood", ["type"] = "explicit", }, - [2194] = { + [2195] = { ["id"] = "explicit.stat_3831171903|22", ["text"] = "Glancing Blows", ["type"] = "explicit", }, - [2195] = { + [2196] = { ["id"] = "explicit.stat_4266776872", ["text"] = "Glancing Blows", ["type"] = "explicit", }, - [2196] = { + [2197] = { ["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", }, - [2197] = { + [2198] = { ["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", }, - [2198] = { + [2199] = { ["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", }, - [2199] = { + [2200] = { ["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", }, - [2200] = { + [2201] = { ["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", }, - [2201] = { + [2202] = { ["id"] = "explicit.stat_821021828", ["text"] = "Grants # Life per Enemy Hit", ["type"] = "explicit", }, - [2202] = { + [2203] = { ["id"] = "explicit.stat_2416869319", ["text"] = "Grants #% of Life Recovery to Minions", ["type"] = "explicit", }, - [2203] = { + [2204] = { ["id"] = "explicit.stat_618665892", ["text"] = "Grants Onslaught during effect", ["type"] = "explicit", }, - [2204] = { + [2205] = { ["id"] = "explicit.stat_280890192", ["text"] = "Grants a Frenzy Charge on use", ["type"] = "explicit", }, - [2205] = { + [2206] = { ["id"] = "explicit.stat_2566921799", ["text"] = "Grants a Power Charge on use", ["type"] = "explicit", }, - [2206] = { + [2207] = { ["id"] = "explicit.stat_3742268652", ["text"] = "Grants effect of Dreaming Gloom Shrine", ["type"] = "explicit", }, - [2207] = { + [2208] = { ["id"] = "explicit.stat_234657505", ["text"] = "Grants effect of Guided Freezing Shrine", ["type"] = "explicit", }, - [2208] = { + [2209] = { ["id"] = "explicit.stat_3917429943", ["text"] = "Grants effect of Guided Meteoric Shrine", ["type"] = "explicit", }, - [2209] = { + [2210] = { ["id"] = "explicit.stat_2800412928", ["text"] = "Grants effect of Guided Tempest Shrine", ["type"] = "explicit", }, - [2210] = { + [2211] = { ["id"] = "explicit.stat_1509210032", ["text"] = "Grants up to your maximum Rage on use", ["type"] = "explicit", }, - [2211] = { + [2212] = { ["id"] = "explicit.stat_1980802737", ["text"] = "Grenade Skills Fire an additional Projectile", ["type"] = "explicit", }, - [2212] = { + [2213] = { ["id"] = "explicit.stat_2250681686", ["text"] = "Grenade Skills have +# Cooldown Use", ["type"] = "explicit", }, - [2213] = { + [2214] = { ["id"] = "explicit.stat_538981065", ["text"] = "Grenades have #% chance to activate a second time", ["type"] = "explicit", }, - [2214] = { + [2215] = { ["id"] = "explicit.stat_1416292992", ["text"] = "Has # Charm Slot", ["type"] = "explicit", }, - [2215] = { + [2216] = { ["id"] = "explicit.stat_1955786041", ["text"] = "Has # to # Physical damage, # to # per Boss's Face Broken", ["type"] = "explicit", }, - [2216] = { + [2217] = { ["id"] = "explicit.stat_2739148464", ["text"] = "Has no Attribute Requirements", ["type"] = "explicit", }, - [2217] = { + [2218] = { ["id"] = "explicit.stat_3831171903|18", ["text"] = "Heartstopper", ["type"] = "explicit", }, - [2218] = { + [2219] = { ["id"] = "explicit.stat_668076381", ["text"] = "Heavy Stuns Enemies that are on Full Life", ["type"] = "explicit", }, - [2219] = { + [2220] = { ["id"] = "explicit.stat_21071013", ["text"] = "Herald Skills deal #% increased Damage", ["type"] = "explicit", }, - [2220] = { + [2221] = { ["id"] = "explicit.stat_3787436548", ["text"] = "Historic", ["type"] = "explicit", }, - [2221] = { + [2222] = { ["id"] = "explicit.stat_289086688", ["text"] = "Hits Break # Armour", ["type"] = "explicit", }, - [2222] = { + [2223] = { ["id"] = "explicit.stat_3923947492", ["text"] = "Hits against you have #% increased Critical Hit Chance while you are Chilled", ["type"] = "explicit", }, - [2223] = { + [2224] = { ["id"] = "explicit.stat_3855016469", ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "explicit", }, - [2224] = { + [2225] = { ["id"] = "explicit.stat_701923421", ["text"] = "Hits against you have #% reduced Critical Damage Bonus per Socket filled", ["type"] = "explicit", }, - [2225] = { + [2226] = { ["id"] = "explicit.stat_3593401321", ["text"] = "Hits have #% chance to treat Enemy Monster Elemental Resistance values as inverted", ["type"] = "explicit", }, - [2226] = { + [2227] = { ["id"] = "explicit.stat_4270096386", ["text"] = "Hits have #% increased Critical Hit Chance against you", ["type"] = "explicit", }, - [2227] = { + [2228] = { ["id"] = "explicit.stat_1689748350", ["text"] = "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", ["type"] = "explicit", }, - [2228] = { + [2229] = { ["id"] = "explicit.stat_1867725690", ["text"] = "Hits with this Weapon have #% chance to Trigger Molten Shower per 25 Strength", ["type"] = "explicit", }, - [2229] = { + [2230] = { ["id"] = "explicit.stat_2558253923", ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", ["type"] = "explicit", }, - [2230] = { + [2231] = { ["id"] = "explicit.stat_1508661598", ["text"] = "Hits with this Weapon have no Critical Damage Bonus", ["type"] = "explicit", }, - [2231] = { + [2232] = { ["id"] = "explicit.stat_2526112819", ["text"] = "Hits with this Weapon inflict # Gruelling Madness", ["type"] = "explicit", }, - [2232] = { + [2233] = { ["id"] = "explicit.stat_2036307261", ["text"] = "Hits with this weapon have # to # Added Physical Damage per 1% Block Chance", ["type"] = "explicit", }, - [2233] = { + [2234] = { ["id"] = "explicit.stat_3831171903|27", ["text"] = "Hollow Palm Technique", ["type"] = "explicit", }, - [2234] = { + [2235] = { ["id"] = "explicit.stat_740421489", ["text"] = "Ice Crystals have #% increased maximum Life per 5% Cold Resistance you have", ["type"] = "explicit", }, - [2235] = { + [2236] = { ["id"] = "explicit.stat_2371108370", ["text"] = "If Map was not previously Irradiated, completing Map adds Irradiation instead", ["type"] = "explicit", }, - [2236] = { + [2237] = { ["id"] = "explicit.stat_983582600", ["text"] = "Ignite you inflict deals Chaos Damage instead of Fire Damage", ["type"] = "explicit", }, - [2237] = { + [2238] = { ["id"] = "explicit.stat_3314057862", ["text"] = "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", ["type"] = "explicit", }, - [2238] = { + [2239] = { ["id"] = "explicit.stat_4238331303", ["text"] = "Immobilise enemies at #% buildup instead of 100%", ["type"] = "explicit", }, - [2239] = { + [2240] = { ["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", }, - [2240] = { + [2241] = { ["id"] = "explicit.stat_1138742368", ["text"] = "Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value", ["type"] = "explicit", }, - [2241] = { + [2242] = { ["id"] = "explicit.stat_3407300125", ["text"] = "Increases and Reductions to Mana Regeneration Rate alsoapply to Energy Shield Recharge Rate", ["type"] = "explicit", }, - [2242] = { + [2243] = { ["id"] = "explicit.stat_2293111154", ["text"] = "Increases and Reductions to Minion Attack Speed also affect you", ["type"] = "explicit", }, - [2243] = { + [2244] = { ["id"] = "explicit.stat_1631928082", ["text"] = "Increases and Reductions to Minion Damage also affect you", ["type"] = "explicit", }, - [2244] = { + [2245] = { ["id"] = "explicit.stat_414821772", ["text"] = "Increases and Reductions to Projectile Speed also apply to Damage with Bows", ["type"] = "explicit", }, - [2245] = { + [2246] = { ["id"] = "explicit.stat_3811649872", ["text"] = "Increases and Reductions to Spell damage also apply to Attacks", ["type"] = "explicit", }, - [2246] = { + [2247] = { ["id"] = "explicit.stat_1076031760", ["text"] = "Infinite Parry Range", ["type"] = "explicit", }, - [2247] = { + [2248] = { ["id"] = "explicit.stat_971590056", ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", ["type"] = "explicit", }, - [2248] = { + [2249] = { ["id"] = "explicit.stat_3005701891", ["text"] = "Inflict Cold Exposure on Hit", ["type"] = "explicit", }, - [2249] = { + [2250] = { ["id"] = "explicit.stat_3314536008", ["text"] = "Inflict Cold Exposure on Igniting an Enemy", ["type"] = "explicit", }, - [2250] = { + [2251] = { ["id"] = "explicit.stat_1695767482", ["text"] = "Inflict Corrupted Blood for # second on Block, dealing #% ofyour maximum Life as Physical damage per second", ["type"] = "explicit", }, - [2251] = { + [2252] = { ["id"] = "explicit.stat_533542952", ["text"] = "Inflict Elemental Exposure on Hit", ["type"] = "explicit", }, - [2252] = { + [2253] = { ["id"] = "explicit.stat_2951965588", ["text"] = "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", ["type"] = "explicit", }, - [2253] = { + [2254] = { ["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", }, - [2254] = { + [2255] = { ["id"] = "explicit.stat_1538879632", ["text"] = "Inflict Fire Exposure on Shocking an Enemy", ["type"] = "explicit", }, - [2255] = { + [2256] = { ["id"] = "explicit.stat_2665488635", ["text"] = "Inflict Lightning Exposure on Critical Hit", ["type"] = "explicit", }, - [2256] = { + [2257] = { ["id"] = "explicit.stat_359380213", ["text"] = "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", ["type"] = "explicit", }, - [2257] = { + [2258] = { ["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", }, - [2258] = { + [2259] = { ["id"] = "explicit.stat_2918129907", ["text"] = "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", ["type"] = "explicit", }, - [2259] = { + [2260] = { ["id"] = "explicit.stat_1526933524", ["text"] = "Instant Recovery", ["type"] = "explicit", }, - [2260] = { + [2261] = { ["id"] = "explicit.stat_3703496511", ["text"] = "Intimidate Enemies on Block for # second", ["type"] = "explicit", }, - [2261] = { + [2262] = { ["id"] = "explicit.stat_1078309513", ["text"] = "Invocated Spells deal #% increased Damage", ["type"] = "explicit", }, - [2262] = { + [2263] = { ["id"] = "explicit.stat_3711973554", ["text"] = "Invocated Spells have #% chance to consume half as much Energy", ["type"] = "explicit", }, - [2263] = { + [2264] = { ["id"] = "explicit.stat_1615901249", ["text"] = "Invocated skills have #% increased Maximum Energy", ["type"] = "explicit", }, - [2264] = { + [2265] = { ["id"] = "explicit.stat_3528245713", ["text"] = "Iron Grip", ["type"] = "explicit", }, - [2265] = { - ["id"] = "explicit.stat_326965591", - ["text"] = "Iron Reflexes", - ["type"] = "explicit", - }, [2266] = { ["id"] = "explicit.stat_3831171903|21", ["text"] = "Iron Reflexes", ["type"] = "explicit", }, [2267] = { + ["id"] = "explicit.stat_326965591", + ["text"] = "Iron Reflexes", + ["type"] = "explicit", + }, + [2268] = { ["id"] = "explicit.stat_281311123", ["text"] = "Iron Will", ["type"] = "explicit", }, - [2268] = { + [2269] = { ["id"] = "explicit.stat_281201999", ["text"] = "Knockback direction is reversed", ["type"] = "explicit", }, - [2269] = { + [2270] = { ["id"] = "explicit.stat_3739186583", ["text"] = "Knocks Back Enemies on Hit", ["type"] = "explicit", }, - [2270] = { + [2271] = { ["id"] = "explicit.stat_2557965901", ["text"] = "Leech #% of Physical Attack Damage as Life", ["type"] = "explicit", }, - [2271] = { + [2272] = { ["id"] = "explicit.stat_707457662", ["text"] = "Leech #% of Physical Attack Damage as Mana", ["type"] = "explicit", }, - [2272] = { + [2273] = { ["id"] = "explicit.stat_1570501432", ["text"] = "Leech Life #% faster", ["type"] = "explicit", }, - [2273] = { + [2274] = { ["id"] = "explicit.stat_3389184522", ["text"] = "Leech from Critical Hits is instant", ["type"] = "explicit", }, - [2274] = { + [2275] = { ["id"] = "explicit.stat_55876295", ["text"] = "Leeches #% of Physical Damage as Life", ["type"] = "explicit", }, - [2275] = { + [2276] = { ["id"] = "explicit.stat_669069897", ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "explicit", }, - [2276] = { + [2277] = { ["id"] = "explicit.stat_335699483", ["text"] = "Leeches #% of maximum Life when you Cast a Spell", ["type"] = "explicit", }, - [2277] = { + [2278] = { ["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", }, - [2278] = { + [2279] = { ["id"] = "explicit.stat_2437476305", ["text"] = "Left ring slot: Projectiles from Spells Fork", ["type"] = "explicit", }, - [2279] = { + [2280] = { ["id"] = "explicit.stat_3647242059", ["text"] = "Left ring slot: Projectiles from Spells cannot Chain", ["type"] = "explicit", }, - [2280] = { + [2281] = { ["id"] = "explicit.stat_264262054|1", ["text"] = "Legacy of Amethyst", ["type"] = "explicit", }, - [2281] = { + [2282] = { ["id"] = "explicit.stat_264262054|2", ["text"] = "Legacy of Basalt", ["type"] = "explicit", }, - [2282] = { + [2283] = { ["id"] = "explicit.stat_264262054|3", ["text"] = "Legacy of Bismuth", ["type"] = "explicit", }, - [2283] = { + [2284] = { ["id"] = "explicit.stat_264262054|4", ["text"] = "Legacy of Diamond", ["type"] = "explicit", }, - [2284] = { + [2285] = { ["id"] = "explicit.stat_264262054|5", ["text"] = "Legacy of Gold", ["type"] = "explicit", }, - [2285] = { + [2286] = { ["id"] = "explicit.stat_264262054|6", ["text"] = "Legacy of Granite", ["type"] = "explicit", }, - [2286] = { + [2287] = { ["id"] = "explicit.stat_264262054|7", ["text"] = "Legacy of Jade", ["type"] = "explicit", }, - [2287] = { + [2288] = { ["id"] = "explicit.stat_264262054|8", ["text"] = "Legacy of Quicksilver", ["type"] = "explicit", }, - [2288] = { + [2289] = { ["id"] = "explicit.stat_264262054|9", ["text"] = "Legacy of Ruby", ["type"] = "explicit", }, - [2289] = { + [2290] = { ["id"] = "explicit.stat_264262054|10", ["text"] = "Legacy of Sapphire", ["type"] = "explicit", }, - [2290] = { + [2291] = { ["id"] = "explicit.stat_264262054|11", ["text"] = "Legacy of Silver", ["type"] = "explicit", }, - [2291] = { + [2292] = { ["id"] = "explicit.stat_264262054|12", ["text"] = "Legacy of Stibnite", ["type"] = "explicit", }, - [2292] = { + [2293] = { ["id"] = "explicit.stat_264262054|13", ["text"] = "Legacy of Sulphur", ["type"] = "explicit", }, - [2293] = { + [2294] = { ["id"] = "explicit.stat_264262054|14", ["text"] = "Legacy of Topaz", ["type"] = "explicit", }, - [2294] = { + [2295] = { ["id"] = "explicit.stat_1102738251", ["text"] = "Life Flasks gain # charges per Second", ["type"] = "explicit", }, - [2295] = { + [2296] = { ["id"] = "explicit.stat_1200347828", ["text"] = "Life Flasks used while on Low Life apply Recovery Instantly", ["type"] = "explicit", }, - [2296] = { + [2297] = { ["id"] = "explicit.stat_2714890129", ["text"] = "Life Leech can Overflow Maximum Life", ["type"] = "explicit", }, - [2297] = { + [2298] = { ["id"] = "explicit.stat_3314050176", ["text"] = "Life Leech is Converted to Energy Shield Leech", ["type"] = "explicit", }, - [2298] = { + [2299] = { ["id"] = "explicit.stat_825825364", ["text"] = "Life Leech recovers based on your Chaos damage instead of Physical damage", ["type"] = "explicit", }, - [2299] = { + [2300] = { ["id"] = "explicit.stat_1092555766", ["text"] = "Life Leech recovers based on your Lightning damage as well as Physical damage", ["type"] = "explicit", }, - [2300] = { + [2301] = { ["id"] = "explicit.stat_3971919056", ["text"] = "Life Recharges", ["type"] = "explicit", }, - [2301] = { + [2302] = { ["id"] = "explicit.stat_2812872407", ["text"] = "Life Recovery from Flasks also applies to Energy Shield", ["type"] = "explicit", }, - [2302] = { + [2303] = { ["id"] = "explicit.stat_1245896889", ["text"] = "Life Recovery from Flasks can Overflow Maximum Life", ["type"] = "explicit", }, - [2303] = { + [2304] = { ["id"] = "explicit.stat_720388959", ["text"] = "Life Recovery from Flasks is instant", ["type"] = "explicit", }, - [2304] = { + [2305] = { ["id"] = "explicit.stat_3947672598", ["text"] = "Life Recovery from Regeneration is not applied", ["type"] = "explicit", }, - [2305] = { + [2306] = { ["id"] = "explicit.stat_451403019", ["text"] = "Life Recovery other than Flasks cannot Recover Life to above Low Life", ["type"] = "explicit", }, - [2306] = { + [2307] = { ["id"] = "explicit.stat_632761194", ["text"] = "Life Regeneration is applied to Energy Shield instead", ["type"] = "explicit", }, - [2307] = { + [2308] = { ["id"] = "explicit.stat_932866937", ["text"] = "Life and Mana Flasks can be equipped in either slot", ["type"] = "explicit", }, - [2308] = { + [2309] = { ["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", }, - [2309] = { + [2310] = { ["id"] = "explicit.stat_1011772129", ["text"] = "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", ["type"] = "explicit", }, - [2310] = { + [2311] = { ["id"] = "explicit.stat_3121133045", ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", ["type"] = "explicit", }, - [2311] = { + [2312] = { ["id"] = "explicit.stat_4224965099", ["text"] = "Lightning Damage of Enemies Hitting you is Lucky", ["type"] = "explicit", }, - [2312] = { + [2313] = { ["id"] = "explicit.stat_3246948616", ["text"] = "Lightning Damage of Enemies Hitting you is Lucky during effect", ["type"] = "explicit", }, - [2313] = { + [2314] = { ["id"] = "explicit.stat_3999959974", ["text"] = "Lightning Resistance does not affect Lightning damage taken", ["type"] = "explicit", }, - [2314] = { + [2315] = { ["id"] = "explicit.stat_3631920880", ["text"] = "Lightning Resistance is unaffected by Area Penalties", ["type"] = "explicit", }, - [2315] = { + [2316] = { ["id"] = "explicit.stat_4123841473", ["text"] = "Lightning Skills Chain # times", ["type"] = "explicit", }, - [2316] = { + [2317] = { ["id"] = "explicit.stat_1017648537", ["text"] = "Lightning damage from Hits Contributes to Electrocution Buildup", ["type"] = "explicit", }, - [2317] = { + [2318] = { ["id"] = "explicit.stat_1967051901", ["text"] = "Loads an additional bolt", ["type"] = "explicit", }, - [2318] = { + [2319] = { ["id"] = "explicit.stat_3831171903|31", ["text"] = "Lord of the Wilds", ["type"] = "explicit", }, - [2319] = { + [2320] = { ["id"] = "explicit.stat_1902409192", ["text"] = "Lose # Life when you use a Skill", ["type"] = "explicit", }, - [2320] = { + [2321] = { ["id"] = "explicit.stat_1147913864", ["text"] = "Lose #% Life per second while you have no Runic Ward during Effect", ["type"] = "explicit", }, - [2321] = { + [2322] = { ["id"] = "explicit.stat_1661347488", ["text"] = "Lose #% of maximum Life per second", ["type"] = "explicit", }, - [2322] = { + [2323] = { ["id"] = "explicit.stat_1306791873", ["text"] = "Lose all Fragile Regrowth when Hit", ["type"] = "explicit", }, - [2323] = { + [2324] = { ["id"] = "explicit.stat_2135899247", ["text"] = "Lose all Power Charges on reaching maximum Power Charges", ["type"] = "explicit", }, - [2324] = { + [2325] = { ["id"] = "explicit.stat_3851480592", ["text"] = "Lose all Rage on reaching Maximum Rage", ["type"] = "explicit", }, - [2325] = { + [2326] = { ["id"] = "explicit.stat_367897259", ["text"] = "Lose all Tailwind when Hit", ["type"] = "explicit", }, - [2326] = { + [2327] = { ["id"] = "explicit.stat_2895144208", ["text"] = "Maim on Critical Hit", ["type"] = "explicit", }, - [2327] = { + [2328] = { ["id"] = "explicit.stat_2200293569", ["text"] = "Mana Flasks gain # charges per Second", ["type"] = "explicit", }, - [2328] = { + [2329] = { ["id"] = "explicit.stat_1839832419", ["text"] = "Mana Flasks used while on Low Mana apply Recovery Instantly", ["type"] = "explicit", }, - [2329] = { + [2330] = { ["id"] = "explicit.stat_4100842845", ["text"] = "Mana Recovery from Flasks can Overflow maximum Mana during Effect", ["type"] = "explicit", }, - [2330] = { + [2331] = { ["id"] = "explicit.stat_3593063598", ["text"] = "Mana Recovery other than Regeneration cannot Recover Mana", ["type"] = "explicit", }, - [2331] = { + [2332] = { ["id"] = "explicit.stat_1414945937", ["text"] = "Manifested Dancing Dervishes die when Rampage ends", ["type"] = "explicit", }, - [2332] = { + [2333] = { ["id"] = "explicit.stat_1314787770", ["text"] = "Map Boss has +#% chance to drop a Waystone of the current tier or higher", ["type"] = "explicit", }, - [2333] = { + [2334] = { ["id"] = "explicit.stat_2588474575", ["text"] = "Map Bosses are Hunted by Azmeri Spirits", ["type"] = "explicit", }, - [2334] = { + [2335] = { ["id"] = "explicit.stat_3860150265", ["text"] = "Map Bosses grant #% increased Experience", ["type"] = "explicit", }, - [2335] = { + [2336] = { ["id"] = "explicit.stat_1458461453", ["text"] = "Map Bosses have # additional Modifier", ["type"] = "explicit", }, - [2336] = { + [2337] = { ["id"] = "explicit.stat_588512487", ["text"] = "Map has # additional random Modifier", ["type"] = "explicit", }, - [2337] = { + [2338] = { ["id"] = "explicit.stat_2594634307", ["text"] = "Mark Skills have #% increased Skill Effect Duration", ["type"] = "explicit", }, - [2338] = { + [2339] = { ["id"] = "explicit.stat_1714971114", ["text"] = "Mark Skills have #% increased Use Speed", ["type"] = "explicit", }, - [2339] = { + [2340] = { ["id"] = "explicit.stat_1173537953", ["text"] = "Maximum # Fragile Regrowth", ["type"] = "explicit", }, - [2340] = { + [2341] = { ["id"] = "explicit.stat_1500744699", ["text"] = "Maximum Chance to Evade is 50%", ["type"] = "explicit", }, - [2341] = { + [2342] = { ["id"] = "explicit.stat_2104359366", ["text"] = "Maximum Energy Shield cannot be Converted", ["type"] = "explicit", }, - [2342] = { + [2343] = { ["id"] = "explicit.stat_3960211755", ["text"] = "Maximum Physical Damage Reduction is 50%", ["type"] = "explicit", }, - [2343] = { + [2344] = { ["id"] = "explicit.stat_275498888", ["text"] = "Maximum Quality is #%", ["type"] = "explicit", }, - [2344] = { + [2345] = { ["id"] = "explicit.stat_1338406168", ["text"] = "Maximum amount of Guard is based on maximum Energy Shield instead", ["type"] = "explicit", }, - [2345] = { + [2346] = { ["id"] = "explicit.stat_2013356568", ["text"] = "Melee Attack Skills have # to maximum number of Summoned Totems", ["type"] = "explicit", }, - [2346] = { + [2347] = { ["id"] = "explicit.stat_2889807051", ["text"] = "Melee Hits count as Rampage KillsRampage", ["type"] = "explicit", }, - [2347] = { + [2348] = { ["id"] = "explicit.stat_4236566306", ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "explicit", }, - [2348] = { + [2349] = { ["id"] = "explicit.stat_173471035", ["text"] = "Meta Skills gain #% increased Energy while on Full Mana", ["type"] = "explicit", }, - [2349] = { + [2350] = { ["id"] = "explicit.stat_3831171903|10", ["text"] = "Mind Over Matter", ["type"] = "explicit", }, - [2350] = { + [2351] = { ["id"] = "explicit.stat_195270549", ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", ["type"] = "explicit", }, - [2351] = { + [2352] = { ["id"] = "explicit.stat_2479683456", ["text"] = "Minions Regenerate #% of maximum Life per second", ["type"] = "explicit", }, - [2352] = { + [2353] = { ["id"] = "explicit.stat_2639966148", ["text"] = "Minions Revive #% faster", ["type"] = "explicit", }, - [2353] = { + [2354] = { ["id"] = "explicit.stat_4046380260", ["text"] = "Minions cannot Die while affected by a Life Flask", ["type"] = "explicit", }, - [2354] = { + [2355] = { ["id"] = "explicit.stat_1589917703", ["text"] = "Minions deal #% increased Damage", ["type"] = "explicit", }, - [2355] = { + [2356] = { ["id"] = "explicit.stat_2337295272", ["text"] = "Minions deal #% increased Damage if you've Hit Recently", ["type"] = "explicit", }, - [2356] = { + [2357] = { ["id"] = "explicit.stat_3742865955", ["text"] = "Minions deal #% increased Damage with Command Skills", ["type"] = "explicit", }, - [2357] = { + [2358] = { ["id"] = "explicit.stat_943702197", ["text"] = "Minions gain #% of their maximum Life as Extra maximum Energy Shield", ["type"] = "explicit", }, - [2358] = { + [2359] = { ["id"] = "explicit.stat_1797815732", ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", ["type"] = "explicit", }, - [2359] = { + [2360] = { ["id"] = "explicit.stat_3119612865", ["text"] = "Minions have #% additional Physical Damage Reduction", ["type"] = "explicit", }, - [2360] = { + [2361] = { ["id"] = "explicit.stat_1486714289", ["text"] = "Minions have #% chance to inflict Gruelling Madness on Hit", ["type"] = "explicit", }, - [2361] = { + [2362] = { ["id"] = "explicit.stat_3811191316", ["text"] = "Minions have #% increased Area of Effect", ["type"] = "explicit", }, - [2362] = { + [2363] = { ["id"] = "explicit.stat_3091578504", ["text"] = "Minions have #% increased Attack and Cast Speed", ["type"] = "explicit", }, - [2363] = { + [2364] = { ["id"] = "explicit.stat_1691403182", ["text"] = "Minions have #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, - [2364] = { + [2365] = { ["id"] = "explicit.stat_1854213750", ["text"] = "Minions have #% increased Critical Damage Bonus", ["type"] = "explicit", }, - [2365] = { + [2366] = { ["id"] = "explicit.stat_491450213", ["text"] = "Minions have #% increased Critical Hit Chance", ["type"] = "explicit", }, - [2366] = { + [2367] = { ["id"] = "explicit.stat_1485480327", ["text"] = "Minions have #% increased Immobilisation buildup", ["type"] = "explicit", }, - [2367] = { + [2368] = { ["id"] = "explicit.stat_953593695", ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", ["type"] = "explicit", }, - [2368] = { + [2369] = { ["id"] = "explicit.stat_174664100", ["text"] = "Minions have #% increased Movement Speed", ["type"] = "explicit", }, - [2369] = { + [2370] = { ["id"] = "explicit.stat_73032170", ["text"] = "Minions have #% increased Skill Speed with Command Skills", ["type"] = "explicit", }, - [2370] = { + [2371] = { ["id"] = "explicit.stat_770672621", ["text"] = "Minions have #% increased maximum Life", ["type"] = "explicit", }, - [2371] = { + [2372] = { ["id"] = "explicit.stat_3837707023", ["text"] = "Minions have #% to Chaos Resistance", ["type"] = "explicit", }, - [2372] = { + [2373] = { ["id"] = "explicit.stat_1423639565", ["text"] = "Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, - [2373] = { + [2374] = { ["id"] = "explicit.stat_3893509584", ["text"] = "Minions have Unholy Might", ["type"] = "explicit", }, - [2374] = { + [2375] = { ["id"] = "explicit.stat_3045072899", ["text"] = "Minions' Resistances are equal to yours", ["type"] = "explicit", }, - [2375] = { + [2376] = { ["id"] = "explicit.stat_3679696791", ["text"] = "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", ["type"] = "explicit", }, - [2376] = { + [2377] = { ["id"] = "explicit.stat_3201111383", ["text"] = "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", ["type"] = "explicit", }, - [2377] = { + [2378] = { ["id"] = "explicit.stat_1898978455", ["text"] = "Monster Damage Penetrates #% Elemental Resistances", ["type"] = "explicit", }, - [2378] = { + [2379] = { ["id"] = "explicit.stat_1138708335", ["text"] = "Monster Damage penetrates #% of Cold Resistance", ["type"] = "explicit", }, - [2379] = { + [2380] = { ["id"] = "explicit.stat_3588388638", ["text"] = "Monster Damage penetrates #% of Fire Resistance", ["type"] = "explicit", }, - [2380] = { + [2381] = { ["id"] = "explicit.stat_3093465148", ["text"] = "Monster Damage penetrates #% of Lightning Resistance", ["type"] = "explicit", }, - [2381] = { + [2382] = { ["id"] = "explicit.stat_3877264671", ["text"] = "Monster have #% increased Elemental Ailment Application", ["type"] = "explicit", }, - [2382] = { + [2383] = { ["id"] = "explicit.stat_1879340377", ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", ["type"] = "explicit", }, - [2383] = { + [2384] = { ["id"] = "explicit.stat_159726667", ["text"] = "Monsters Sacrificed at Ritual Altars grant #% increased Tribute", ["type"] = "explicit", }, - [2384] = { + [2385] = { ["id"] = "explicit.stat_159726667", ["text"] = "Monsters Sacrificed at Ritual Altars in Area grant #% increased Tribute", ["type"] = "explicit", }, - [2385] = { + [2386] = { ["id"] = "explicit.stat_2539290279", ["text"] = "Monsters are Armoured", ["type"] = "explicit", }, - [2386] = { + [2387] = { ["id"] = "explicit.stat_2570249991", ["text"] = "Monsters are Evasive", ["type"] = "explicit", }, - [2387] = { + [2388] = { ["id"] = "explicit.stat_2200661314", ["text"] = "Monsters deal #% of Damage as Extra Chaos", ["type"] = "explicit", }, - [2388] = { + [2389] = { ["id"] = "explicit.stat_211727", ["text"] = "Monsters deal #% of Damage as Extra Cold", ["type"] = "explicit", }, - [2389] = { + [2390] = { ["id"] = "explicit.stat_92381065", ["text"] = "Monsters deal #% of Damage as Extra Fire", ["type"] = "explicit", }, - [2390] = { + [2391] = { ["id"] = "explicit.stat_512071314", ["text"] = "Monsters deal #% of Damage as Extra Lightning", ["type"] = "explicit", }, - [2391] = { + [2392] = { ["id"] = "explicit.stat_1309819744", ["text"] = "Monsters fire # additional Projectiles", ["type"] = "explicit", }, - [2392] = { + [2393] = { ["id"] = "explicit.stat_2887760183", ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", ["type"] = "explicit", }, - [2393] = { + [2394] = { ["id"] = "explicit.stat_57326096", ["text"] = "Monsters have #% Critical Damage Bonus", ["type"] = "explicit", }, - [2394] = { + [2395] = { ["id"] = "explicit.stat_95221307", ["text"] = "Monsters have #% chance to Poison on Hit", ["type"] = "explicit", }, - [2395] = { + [2396] = { ["id"] = "explicit.stat_2506820610", ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, - [2396] = { + [2397] = { ["id"] = "explicit.stat_3222482040", ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", ["type"] = "explicit", }, - [2397] = { + [2398] = { ["id"] = "explicit.stat_1588049749", ["text"] = "Monsters have #% increased Accuracy Rating", ["type"] = "explicit", }, - [2398] = { + [2399] = { ["id"] = "explicit.stat_1994551050", ["text"] = "Monsters have #% increased Ailment Threshold", ["type"] = "explicit", }, - [2399] = { + [2400] = { ["id"] = "explicit.stat_1708461270", ["text"] = "Monsters have #% increased Area of Effect", ["type"] = "explicit", }, - [2400] = { + [2401] = { ["id"] = "explicit.stat_3906866585", ["text"] = "Monsters have #% increased Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [2401] = { + [2402] = { ["id"] = "explicit.stat_3909654181", ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", ["type"] = "explicit", }, - [2402] = { + [2403] = { ["id"] = "explicit.stat_2753083623", ["text"] = "Monsters have #% increased Critical Hit Chance", ["type"] = "explicit", }, - [2403] = { + [2404] = { ["id"] = "explicit.stat_3998863698", ["text"] = "Monsters have #% increased Freeze Buildup", ["type"] = "explicit", }, - [2404] = { + [2405] = { ["id"] = "explicit.stat_1984618452", ["text"] = "Monsters have #% increased Shock Chance", ["type"] = "explicit", }, - [2405] = { + [2406] = { ["id"] = "explicit.stat_115425161", ["text"] = "Monsters have #% increased Stun Buildup", ["type"] = "explicit", }, - [2406] = { + [2407] = { ["id"] = "explicit.stat_4101943684", ["text"] = "Monsters have #% increased Stun Threshold", ["type"] = "explicit", }, - [2407] = { + [2408] = { ["id"] = "explicit.stat_1751584857", ["text"] = "Monsters inflict # Grasping Vine on Hit", ["type"] = "explicit", }, - [2408] = { + [2409] = { ["id"] = "explicit.stat_2508044078", ["text"] = "Monsters inflict #% increased Flammability Magnitude", ["type"] = "explicit", }, - [2409] = { + [2410] = { ["id"] = "explicit.stat_337935900", ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", ["type"] = "explicit", }, - [2410] = { + [2411] = { ["id"] = "explicit.stat_4112450013", ["text"] = "Moving while Bleeding doesn't cause you to take extra damage", ["type"] = "explicit", }, - [2411] = { + [2412] = { ["id"] = "explicit.stat_1266185101", ["text"] = "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", ["type"] = "explicit", }, - [2412] = { + [2413] = { ["id"] = "explicit.stat_1168851547", ["text"] = "Natural Rare Monsters in Area have # extra Abyssal Modifier", ["type"] = "explicit", }, - [2413] = { + [2414] = { ["id"] = "explicit.stat_3831171903|12", ["text"] = "Necromantic Talisman", ["type"] = "explicit", }, - [2414] = { + [2415] = { ["id"] = "explicit.stat_4163076972", ["text"] = "No Inherent loss of Rage", ["type"] = "explicit", }, - [2415] = { + [2416] = { ["id"] = "explicit.stat_3464644319", ["text"] = "No Inherent loss of Rage during effect", ["type"] = "explicit", }, - [2416] = { + [2417] = { ["id"] = "explicit.stat_585231074", ["text"] = "No Movement Speed Penalty while Shield is Raised", ["type"] = "explicit", }, - [2417] = { + [2418] = { ["id"] = "explicit.stat_1920747151", ["text"] = "Non-Channelling Spells cost an additional #% of your maximum Life", ["type"] = "explicit", }, - [2418] = { + [2419] = { ["id"] = "explicit.stat_1027889455", ["text"] = "Non-Channelling Spells deal #% increased Damage per 100 maximum Life", ["type"] = "explicit", }, - [2419] = { + [2420] = { ["id"] = "explicit.stat_3843734793", ["text"] = "Non-Channelling Spells deal #% increased Damage per 100 maximum Mana", ["type"] = "explicit", }, - [2420] = { + [2421] = { ["id"] = "explicit.stat_170426423", ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Life", ["type"] = "explicit", }, - [2421] = { + [2422] = { ["id"] = "explicit.stat_1367999357", ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Mana", ["type"] = "explicit", }, - [2422] = { + [2423] = { ["id"] = "explicit.stat_4245905059", ["text"] = "Non-Channelling Spells have #% increased Magnitude of Ailments per 100 maximum Life", ["type"] = "explicit", }, - [2423] = { + [2424] = { ["id"] = "explicit.stat_1846980580", ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "explicit", }, - [2424] = { + [2425] = { ["id"] = "explicit.stat_3991877392", ["text"] = "Notable Passive Skills in Radius also grant # to Spirit", ["type"] = "explicit", }, - [2425] = { + [2426] = { ["id"] = "explicit.stat_1800303440", ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", ["type"] = "explicit", }, - [2426] = { + [2427] = { ["id"] = "explicit.stat_4225700219", ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", ["type"] = "explicit", }, - [2427] = { + [2428] = { ["id"] = "explicit.stat_3394832998", ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", ["type"] = "explicit", }, - [2428] = { + [2429] = { ["id"] = "explicit.stat_3391917254", ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", ["type"] = "explicit", }, - [2429] = { + [2430] = { ["id"] = "explicit.stat_3859848445", ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", ["type"] = "explicit", }, - [2430] = { + [2431] = { ["id"] = "explicit.stat_504915064", ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", ["type"] = "explicit", }, - [2431] = { + [2432] = { ["id"] = "explicit.stat_3429148113", ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "explicit", }, - [2432] = { + [2433] = { ["id"] = "explicit.stat_2822644689", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", ["type"] = "explicit", }, - [2433] = { + [2434] = { ["id"] = "explicit.stat_3641543553", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", ["type"] = "explicit", }, - [2434] = { + [2435] = { ["id"] = "explicit.stat_715957346", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", ["type"] = "explicit", }, - [2435] = { + [2436] = { ["id"] = "explicit.stat_111835965", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", ["type"] = "explicit", }, - [2436] = { + [2437] = { ["id"] = "explicit.stat_1266413530", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", ["type"] = "explicit", }, - [2437] = { + [2438] = { ["id"] = "explicit.stat_1505023559", ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", ["type"] = "explicit", }, - [2438] = { + [2439] = { ["id"] = "explicit.stat_2912416697", ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", ["type"] = "explicit", }, - [2439] = { + [2440] = { ["id"] = "explicit.stat_3821543413", ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", ["type"] = "explicit", }, - [2440] = { + [2441] = { ["id"] = "explicit.stat_1022759479", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", ["type"] = "explicit", }, - [2441] = { + [2442] = { ["id"] = "explicit.stat_2320654813", ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", ["type"] = "explicit", }, - [2442] = { + [2443] = { ["id"] = "explicit.stat_61644361", ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", ["type"] = "explicit", }, - [2443] = { + [2444] = { ["id"] = "explicit.stat_2149603090", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, - [2444] = { + [2445] = { ["id"] = "explicit.stat_2359002191", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", ["type"] = "explicit", }, - [2445] = { + [2446] = { ["id"] = "explicit.stat_1352561456", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "explicit", }, - [2446] = { + [2447] = { ["id"] = "explicit.stat_138421180", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", ["type"] = "explicit", }, - [2447] = { + [2448] = { ["id"] = "explicit.stat_2077117738", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", ["type"] = "explicit", }, - [2448] = { + [2449] = { ["id"] = "explicit.stat_3865605585", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "explicit", }, - [2449] = { + [2450] = { ["id"] = "explicit.stat_2704905000", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", ["type"] = "explicit", }, - [2450] = { + [2451] = { ["id"] = "explicit.stat_2466785537", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", ["type"] = "explicit", }, - [2451] = { + [2452] = { ["id"] = "explicit.stat_3856744003", ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", ["type"] = "explicit", }, - [2452] = { + [2453] = { ["id"] = "explicit.stat_2770044702", ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", ["type"] = "explicit", }, - [2453] = { + [2454] = { ["id"] = "explicit.stat_2717786748", ["text"] = "Notable Passive Skills in Radius also grant #% increased Dexterity", ["type"] = "explicit", }, - [2454] = { + [2455] = { ["id"] = "explicit.stat_2272980012", ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", ["type"] = "explicit", }, - [2455] = { + [2456] = { ["id"] = "explicit.stat_1323216174", ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "explicit", }, - [2456] = { + [2457] = { ["id"] = "explicit.stat_179541474", ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", ["type"] = "explicit", }, - [2457] = { + [2458] = { ["id"] = "explicit.stat_3419203492", ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", ["type"] = "explicit", }, - [2458] = { + [2459] = { ["id"] = "explicit.stat_2066964205", ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", ["type"] = "explicit", }, - [2459] = { + [2460] = { ["id"] = "explicit.stat_1087531620", ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", ["type"] = "explicit", }, - [2460] = { + [2461] = { ["id"] = "explicit.stat_127081978", ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", ["type"] = "explicit", }, - [2461] = { + [2462] = { ["id"] = "explicit.stat_2783157569", ["text"] = "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [2462] = { + [2463] = { ["id"] = "explicit.stat_2907381231", ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", ["type"] = "explicit", }, - [2463] = { + [2464] = { ["id"] = "explicit.stat_253641217", ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", ["type"] = "explicit", }, - [2464] = { + [2465] = { ["id"] = "explicit.stat_40618390", ["text"] = "Notable Passive Skills in Radius also grant #% increased Intelligence", ["type"] = "explicit", }, - [2465] = { + [2466] = { ["id"] = "explicit.stat_2976476845", ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", ["type"] = "explicit", }, - [2466] = { + [2467] = { ["id"] = "explicit.stat_942519401", ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", ["type"] = "explicit", }, - [2467] = { + [2468] = { ["id"] = "explicit.stat_1185341308", ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", ["type"] = "explicit", }, - [2468] = { + [2469] = { ["id"] = "explicit.stat_1321104829", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", ["type"] = "explicit", }, - [2469] = { + [2470] = { ["id"] = "explicit.stat_391602279", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", ["type"] = "explicit", }, - [2470] = { + [2471] = { ["id"] = "explicit.stat_4092130601", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "explicit", }, - [2471] = { + [2472] = { ["id"] = "explicit.stat_462424929", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", ["type"] = "explicit", }, - [2472] = { + [2473] = { ["id"] = "explicit.stat_1166140625", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", ["type"] = "explicit", }, - [2473] = { + [2474] = { ["id"] = "explicit.stat_4257790560", ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", ["type"] = "explicit", }, - [2474] = { + [2475] = { ["id"] = "explicit.stat_3171212276", ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", ["type"] = "explicit", }, - [2475] = { + [2476] = { ["id"] = "explicit.stat_844449513", ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "explicit", }, - [2476] = { + [2477] = { ["id"] = "explicit.stat_1514844108", ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", ["type"] = "explicit", }, - [2477] = { + [2478] = { ["id"] = "explicit.stat_1944020877", ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", ["type"] = "explicit", }, - [2478] = { + [2479] = { ["id"] = "explicit.stat_221701169", ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", ["type"] = "explicit", }, - [2479] = { + [2480] = { ["id"] = "explicit.stat_4032352472", ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", ["type"] = "explicit", }, - [2480] = { + [2481] = { ["id"] = "explicit.stat_1777421941", ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", ["type"] = "explicit", }, - [2481] = { + [2482] = { ["id"] = "explicit.stat_3113764475", ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", ["type"] = "explicit", }, - [2482] = { + [2483] = { ["id"] = "explicit.stat_3579898587", ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", ["type"] = "explicit", }, - [2483] = { + [2484] = { ["id"] = "explicit.stat_2580617872", ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", ["type"] = "explicit", }, - [2484] = { + [2485] = { ["id"] = "explicit.stat_1842384813", ["text"] = "Notable Passive Skills in Radius also grant #% increased Strength", ["type"] = "explicit", }, - [2485] = { + [2486] = { ["id"] = "explicit.stat_4173554949", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", ["type"] = "explicit", }, - [2486] = { + [2487] = { ["id"] = "explicit.stat_2392824305", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", ["type"] = "explicit", }, - [2487] = { + [2488] = { ["id"] = "explicit.stat_1495814176", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", ["type"] = "explicit", }, - [2488] = { + [2489] = { ["id"] = "explicit.stat_2675129731", ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", ["type"] = "explicit", }, - [2489] = { + [2490] = { ["id"] = "explicit.stat_2056107438", ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", ["type"] = "explicit", }, - [2490] = { + [2491] = { ["id"] = "explicit.stat_3936121440", ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", ["type"] = "explicit", }, - [2491] = { + [2492] = { ["id"] = "explicit.stat_4180952808", ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", ["type"] = "explicit", }, - [2492] = { + [2493] = { ["id"] = "explicit.stat_412709880", ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", ["type"] = "explicit", }, - [2493] = { + [2494] = { ["id"] = "explicit.stat_160888068", ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Life", ["type"] = "explicit", }, - [2494] = { + [2495] = { ["id"] = "explicit.stat_2589572664", ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Mana", ["type"] = "explicit", }, - [2495] = { + [2496] = { ["id"] = "explicit.stat_2709646369", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", ["type"] = "explicit", }, - [2496] = { + [2497] = { ["id"] = "explicit.stat_3669820740", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", ["type"] = "explicit", }, - [2497] = { + [2498] = { ["id"] = "explicit.stat_85367160", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", ["type"] = "explicit", }, - [2498] = { + [2499] = { ["id"] = "explicit.stat_3386297724", ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", ["type"] = "explicit", }, - [2499] = { + [2500] = { ["id"] = "explicit.stat_1687542781", ["text"] = "Notable Passive Skills in Radius also grant #% to Lightning Resistance", ["type"] = "explicit", }, - [2500] = { + [2501] = { ["id"] = "explicit.stat_1731760476", ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Chaos Resistance", ["type"] = "explicit", }, - [2501] = { + [2502] = { ["id"] = "explicit.stat_1862508014", ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Cold Resistance", ["type"] = "explicit", }, - [2502] = { + [2503] = { ["id"] = "explicit.stat_4151994709", ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Fire Resistance", ["type"] = "explicit", }, - [2503] = { + [2504] = { ["id"] = "explicit.stat_2217513089", ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Lightning Resistance", ["type"] = "explicit", }, - [2504] = { + [2505] = { ["id"] = "explicit.stat_3243034867", ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", ["type"] = "explicit", }, - [2505] = { + [2506] = { ["id"] = "explicit.stat_1034611536", ["text"] = "Notable Passive Skills in Radius also grant Charms gain # charge per Second", ["type"] = "explicit", }, - [2506] = { + [2507] = { ["id"] = "explicit.stat_3173882956", ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", ["type"] = "explicit", }, - [2507] = { + [2508] = { ["id"] = "explicit.stat_2256120736", ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", ["type"] = "explicit", }, - [2508] = { + [2509] = { ["id"] = "explicit.stat_2969557004", ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", ["type"] = "explicit", }, - [2509] = { + [2510] = { ["id"] = "explicit.stat_2131720304", ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", ["type"] = "explicit", }, - [2510] = { + [2511] = { ["id"] = "explicit.stat_2603051299", ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, - [2511] = { + [2512] = { ["id"] = "explicit.stat_833138896", ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Cold Damage", ["type"] = "explicit", }, - [2512] = { + [2513] = { ["id"] = "explicit.stat_338620903", ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, - [2513] = { + [2514] = { ["id"] = "explicit.stat_852470634", ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Lightning Damage", ["type"] = "explicit", }, - [2514] = { + [2515] = { ["id"] = "explicit.stat_2135541924", ["text"] = "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", ["type"] = "explicit", }, - [2515] = { + [2516] = { ["id"] = "explicit.stat_1148433552", ["text"] = "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", ["type"] = "explicit", }, - [2516] = { + [2517] = { ["id"] = "explicit.stat_3939216292", ["text"] = "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", ["type"] = "explicit", }, - [2517] = { + [2518] = { ["id"] = "explicit.stat_2849546516", ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", ["type"] = "explicit", }, - [2518] = { + [2519] = { ["id"] = "explicit.stat_2534359663", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", ["type"] = "explicit", }, - [2519] = { + [2520] = { ["id"] = "explicit.stat_3106718406", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", ["type"] = "explicit", }, - [2520] = { + [2521] = { ["id"] = "explicit.stat_593241812", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", ["type"] = "explicit", }, - [2521] = { + [2522] = { ["id"] = "explicit.stat_3628935286", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", ["type"] = "explicit", }, - [2522] = { + [2523] = { ["id"] = "explicit.stat_2374711847", ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", ["type"] = "explicit", }, - [2523] = { + [2524] = { ["id"] = "explicit.stat_4258720395", ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "explicit", }, - [2524] = { + [2525] = { ["id"] = "explicit.stat_2334956771", ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "explicit", }, - [2525] = { + [2526] = { ["id"] = "explicit.stat_2726713579", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", ["type"] = "explicit", }, - [2526] = { + [2527] = { ["id"] = "explicit.stat_525523040", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "explicit", }, - [2527] = { + [2528] = { ["id"] = "explicit.stat_3566150527", ["text"] = "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", ["type"] = "explicit", }, - [2528] = { + [2529] = { ["id"] = "explicit.stat_3831171903|19", ["text"] = "Oasis", ["type"] = "explicit", }, - [2529] = { + [2530] = { ["id"] = "explicit.stat_3430033313", ["text"] = "Off-hand Hits inflict Runefather's Challenge", ["type"] = "explicit", }, - [2530] = { + [2531] = { ["id"] = "explicit.stat_3191479793", ["text"] = "Offering Skills have #% increased Buff effect", ["type"] = "explicit", }, - [2531] = { + [2532] = { ["id"] = "explicit.stat_2957407601", ["text"] = "Offering Skills have #% increased Duration", ["type"] = "explicit", }, - [2532] = { + [2533] = { ["id"] = "explicit.stat_3787460122", ["text"] = "Offerings have #% increased Maximum Life", ["type"] = "explicit", }, - [2533] = { + [2534] = { ["id"] = "explicit.stat_4215035940", ["text"] = "On Corruption, Item gains two Enchantments", ["type"] = "explicit", }, - [2534] = { + [2535] = { ["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", }, - [2535] = { + [2536] = { ["id"] = "explicit.stat_259470957", ["text"] = "On-Kill Effects happen twice", ["type"] = "explicit", }, - [2536] = { + [2537] = { ["id"] = "explicit.stat_250458861", ["text"] = "Only Soul Cores can be Socketed in this item", ["type"] = "explicit", }, - [2537] = { + [2538] = { ["id"] = "explicit.stat_3642528642|6", ["text"] = "Only affects Passives in Large Ring", ["type"] = "explicit", }, - [2538] = { + [2539] = { ["id"] = "explicit.stat_3642528642|8", ["text"] = "Only affects Passives in Massive Ring", ["type"] = "explicit", }, - [2539] = { + [2540] = { ["id"] = "explicit.stat_3642528642|4", ["text"] = "Only affects Passives in Medium Ring", ["type"] = "explicit", }, - [2540] = { + [2541] = { ["id"] = "explicit.stat_3642528642|5", ["text"] = "Only affects Passives in Medium-Large Ring", ["type"] = "explicit", }, - [2541] = { + [2542] = { ["id"] = "explicit.stat_3642528642|3", ["text"] = "Only affects Passives in Medium-Small Ring", ["type"] = "explicit", }, - [2542] = { + [2543] = { ["id"] = "explicit.stat_3642528642|2", ["text"] = "Only affects Passives in Small Ring", ["type"] = "explicit", }, - [2543] = { + [2544] = { ["id"] = "explicit.stat_3642528642|7", ["text"] = "Only affects Passives in Very Large Ring", ["type"] = "explicit", }, - [2544] = { + [2545] = { ["id"] = "explicit.stat_3642528642|1", ["text"] = "Only affects Passives in Very Small Ring", ["type"] = "explicit", }, - [2545] = { + [2546] = { ["id"] = "explicit.stat_1520059289", ["text"] = "Onslaught", ["type"] = "explicit", }, - [2546] = { - ["id"] = "explicit.stat_3831171903|7", - ["text"] = "Pain Attunement", - ["type"] = "explicit", - }, [2547] = { ["id"] = "explicit.stat_98977150", ["text"] = "Pain Attunement", ["type"] = "explicit", }, [2548] = { + ["id"] = "explicit.stat_3831171903|7", + ["text"] = "Pain Attunement", + ["type"] = "explicit", + }, + [2549] = { ["id"] = "explicit.stat_3488640354", ["text"] = "Parried enemies take more Spell Damage instead of more Attack Damage", ["type"] = "explicit", }, - [2549] = { + [2550] = { ["id"] = "explicit.stat_2104138899", ["text"] = "Parrying applies # Stack of Critical Weakness", ["type"] = "explicit", }, - [2550] = { + [2551] = { ["id"] = "explicit.stat_4077035099", ["text"] = "Passives in Radius can be Allocated without being connected to your tree", ["type"] = "explicit", }, - [2551] = { + [2552] = { ["id"] = "explicit.stat_2422708892|45202", ["text"] = "Passives in Radius of Ancestral Bond can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2552] = { + [2553] = { ["id"] = "explicit.stat_2422708892|18684", ["text"] = "Passives in Radius of Avatar of Fire can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2553] = { + [2554] = { ["id"] = "explicit.stat_2422708892|42680", ["text"] = "Passives in Radius of Blackflame Covenant can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2554] = { + [2555] = { ["id"] = "explicit.stat_2422708892|51749", ["text"] = "Passives in Radius of Blood Magic can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2555] = { + [2556] = { ["id"] = "explicit.stat_2422708892|56605", ["text"] = "Passives in Radius of Bulwark can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2556] = { + [2557] = { ["id"] = "explicit.stat_2422708892|56349", ["text"] = "Passives in Radius of Chaos Inoculation can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2557] = { + [2558] = { ["id"] = "explicit.stat_2422708892|33979", ["text"] = "Passives in Radius of Conduit can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2558] = { + [2559] = { ["id"] = "explicit.stat_2422708892|9085", ["text"] = "Passives in Radius of Crimson Assault can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2559] = { + [2560] = { ["id"] = "explicit.stat_2422708892|14226", ["text"] = "Passives in Radius of Dance with Death can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2560] = { + [2561] = { ["id"] = "explicit.stat_2422708892|57513", ["text"] = "Passives in Radius of Eldritch Battery can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2561] = { + [2562] = { ["id"] = "explicit.stat_2422708892|46742", ["text"] = "Passives in Radius of Elemental Equilibrium can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2562] = { + [2563] = { ["id"] = "explicit.stat_2422708892|33404", ["text"] = "Passives in Radius of Eternal Youth can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2563] = { + [2564] = { ["id"] = "explicit.stat_2422708892|32349", ["text"] = "Passives in Radius of Giant's Blood can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2564] = { + [2565] = { ["id"] = "explicit.stat_2422708892|19288", ["text"] = "Passives in Radius of Glancing Blows can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2565] = { + [2566] = { ["id"] = "explicit.stat_2422708892|34497", ["text"] = "Passives in Radius of Heartstopper can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2566] = { + [2567] = { ["id"] = "explicit.stat_2422708892|64601", ["text"] = "Passives in Radius of Hollow Palm Technique can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2567] = { + [2568] = { ["id"] = "explicit.stat_2422708892|28492", ["text"] = "Passives in Radius of Iron Reflexes can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2568] = { + [2569] = { ["id"] = "explicit.stat_2422708892|61942", ["text"] = "Passives in Radius of Lord of the Wilds can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2569] = { + [2570] = { ["id"] = "explicit.stat_2422708892|45918", ["text"] = "Passives in Radius of Mind Over Matter can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2570] = { + [2571] = { ["id"] = "explicit.stat_2422708892|39935", ["text"] = "Passives in Radius of Necromantic Talisman can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2571] = { + [2572] = { ["id"] = "explicit.stat_2422708892|25100", ["text"] = "Passives in Radius of Oasis can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2572] = { + [2573] = { ["id"] = "explicit.stat_2422708892|55048", ["text"] = "Passives in Radius of Pain Attunement can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2573] = { + [2574] = { ["id"] = "explicit.stat_2422708892|37484", ["text"] = "Passives in Radius of Primal Hunger can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2574] = { + [2575] = { ["id"] = "explicit.stat_2422708892|44017", ["text"] = "Passives in Radius of Resolute Technique can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2575] = { + [2576] = { ["id"] = "explicit.stat_2422708892|25520", ["text"] = "Passives in Radius of Resonance can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2576] = { + [2577] = { ["id"] = "explicit.stat_2422708892|11230", ["text"] = "Passives in Radius of Ritual Cadence can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2577] = { + [2578] = { ["id"] = "explicit.stat_2422708892|49547", ["text"] = "Passives in Radius of Scarred Faith can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2578] = { + [2579] = { ["id"] = "explicit.stat_2422708892|41861", ["text"] = "Passives in Radius of Trusted Kinship can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2579] = { + [2580] = { ["id"] = "explicit.stat_2422708892|14540", ["text"] = "Passives in Radius of Unwavering Stance can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2580] = { + [2581] = { ["id"] = "explicit.stat_2422708892|33369", ["text"] = "Passives in Radius of Vaal Pact can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2581] = { + [2582] = { ["id"] = "explicit.stat_2422708892|47759", ["text"] = "Passives in Radius of Whispers of Doom can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2582] = { + [2583] = { ["id"] = "explicit.stat_2422708892|49363", ["text"] = "Passives in Radius of Wildsurge Incantation can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2583] = { + [2584] = { ["id"] = "explicit.stat_2422708892|52", ["text"] = "Passives in Radius of Zealot's Oath can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2584] = { + [2585] = { ["id"] = "explicit.stat_2930706364", ["text"] = "Permanently Intimidate enemies on Block", ["type"] = "explicit", }, - [2585] = { + [2586] = { ["id"] = "explicit.stat_2041668411", ["text"] = "Physical Damage is Pinning", ["type"] = "explicit", }, - [2586] = { + [2587] = { ["id"] = "explicit.stat_2424163939", ["text"] = "Physical Damage of Enemies Hitting you is Lucky", ["type"] = "explicit", }, - [2587] = { + [2588] = { ["id"] = "explicit.stat_905072977", ["text"] = "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup", ["type"] = "explicit", }, - [2588] = { + [2589] = { ["id"] = "explicit.stat_3063814459", ["text"] = "Pin Enemies which are Primed for Pinning", ["type"] = "explicit", }, - [2589] = { + [2590] = { ["id"] = "explicit.stat_2408625104", ["text"] = "Players and their Minions deal no damage for 3 out of every 10 seconds", ["type"] = "explicit", }, - [2590] = { + [2591] = { ["id"] = "explicit.stat_558910024", ["text"] = "Players are Cursed with Elemental Weakness", ["type"] = "explicit", }, - [2591] = { + [2592] = { ["id"] = "explicit.stat_4103440490", ["text"] = "Players are Cursed with Enfeeble", ["type"] = "explicit", }, - [2592] = { + [2593] = { ["id"] = "explicit.stat_2326202293", ["text"] = "Players are Cursed with Temporal Chains", ["type"] = "explicit", }, - [2593] = { + [2594] = { ["id"] = "explicit.stat_436406826", ["text"] = "Players are Marked for Death for # secondsafter killing a Rare or Unique monster", ["type"] = "explicit", }, - [2594] = { + [2595] = { ["id"] = "explicit.stat_554690751", ["text"] = "Players are periodically Cursed with Elemental Weakness", ["type"] = "explicit", }, - [2595] = { + [2596] = { ["id"] = "explicit.stat_2029171424", ["text"] = "Players are periodically Cursed with Enfeeble", ["type"] = "explicit", }, - [2596] = { + [2597] = { ["id"] = "explicit.stat_1629357380", ["text"] = "Players are periodically Cursed with Temporal Chains", ["type"] = "explicit", }, - [2597] = { + [2598] = { ["id"] = "explicit.stat_2549889921", ["text"] = "Players gain #% reduced Flask Charges", ["type"] = "explicit", }, - [2598] = { + [2599] = { ["id"] = "explicit.stat_4181072906", ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", ["type"] = "explicit", }, - [2599] = { + [2600] = { ["id"] = "explicit.stat_3510648768", ["text"] = "Players have #% more Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [2600] = { + [2601] = { ["id"] = "explicit.stat_941368244", ["text"] = "Players have #% more Cooldown Recovery Rate", ["type"] = "explicit", }, - [2601] = { + [2602] = { ["id"] = "explicit.stat_4274247770", ["text"] = "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", ["type"] = "explicit", }, - [2602] = { + [2603] = { ["id"] = "explicit.stat_1310597900", ["text"] = "Players have #% more Recovery Rate of Life, Mana and Energy Shield", ["type"] = "explicit", }, - [2603] = { + [2604] = { ["id"] = "explicit.stat_3119282240", ["text"] = "Players have #% more maximum Life and Energy Shield", ["type"] = "explicit", }, - [2604] = { + [2605] = { ["id"] = "explicit.stat_1365079333", ["text"] = "Players steal the Eaten Souls of Slain Rare Monsters in Area", ["type"] = "explicit", }, - [2605] = { + [2606] = { ["id"] = "explicit.stat_3403424702", ["text"] = "Possessed by Spirit Of The Bear for # seconds on use", ["type"] = "explicit", }, - [2606] = { + [2607] = { ["id"] = "explicit.stat_1685559578", ["text"] = "Possessed by Spirit Of The Boar for # seconds on use", ["type"] = "explicit", }, - [2607] = { + [2608] = { ["id"] = "explicit.stat_2839557359", ["text"] = "Possessed by Spirit Of The Cat for # seconds on use", ["type"] = "explicit", }, - [2608] = { + [2609] = { ["id"] = "explicit.stat_300107724", ["text"] = "Possessed by Spirit Of The Owl for # seconds on use", ["type"] = "explicit", }, - [2609] = { + [2610] = { ["id"] = "explicit.stat_3463873033", ["text"] = "Possessed by Spirit Of The Ox for # seconds on use", ["type"] = "explicit", }, - [2610] = { + [2611] = { ["id"] = "explicit.stat_3763491818", ["text"] = "Possessed by Spirit Of The Primate for # seconds on use", ["type"] = "explicit", }, - [2611] = { + [2612] = { ["id"] = "explicit.stat_3181677174", ["text"] = "Possessed by Spirit Of The Serpent for # seconds on use", ["type"] = "explicit", }, - [2612] = { + [2613] = { ["id"] = "explicit.stat_3685424517", ["text"] = "Possessed by Spirit Of The Stag for # seconds on use", ["type"] = "explicit", }, - [2613] = { + [2614] = { ["id"] = "explicit.stat_3504441212", ["text"] = "Possessed by Spirit Of The Wolf for # seconds on use", ["type"] = "explicit", }, - [2614] = { + [2615] = { ["id"] = "explicit.stat_1810907437", ["text"] = "Presence Radius is doubled", ["type"] = "explicit", }, - [2615] = { + [2616] = { ["id"] = "explicit.stat_3552135623", ["text"] = "Prevent #% of Damage from Deflected Hits", ["type"] = "explicit", }, - [2616] = { + [2617] = { ["id"] = "explicit.stat_3831171903|16", ["text"] = "Primal Hunger", ["type"] = "explicit", }, - [2617] = { + [2618] = { ["id"] = "explicit.stat_3932115504", ["text"] = "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", ["type"] = "explicit", }, - [2618] = { + [2619] = { ["id"] = "explicit.stat_2214228141", ["text"] = "Projectiles Pierce all Ignited enemies", ["type"] = "explicit", }, - [2619] = { + [2620] = { ["id"] = "explicit.stat_3464380325", ["text"] = "Projectiles Split towards # targets", ["type"] = "explicit", }, - [2620] = { + [2621] = { ["id"] = "explicit.stat_2825946427", ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", ["type"] = "explicit", }, - [2621] = { + [2622] = { ["id"] = "explicit.stat_2468595624", ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies within 2m", ["type"] = "explicit", }, - [2622] = { + [2623] = { ["id"] = "explicit.stat_883169830", ["text"] = "Projectiles deal #% increased Damage with Hits for each time they have Pierced", ["type"] = "explicit", }, - [2623] = { + [2624] = { ["id"] = "explicit.stat_3826125995", ["text"] = "Projectiles from Spells cannot Pierce", ["type"] = "explicit", }, - [2624] = { + [2625] = { ["id"] = "explicit.stat_3003542304", ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "explicit", }, - [2625] = { + [2626] = { ["id"] = "explicit.stat_4081947835", ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "explicit", }, - [2626] = { + [2627] = { ["id"] = "explicit.stat_2189073790", ["text"] = "Projectiles have #% chance to Fork if you've dealt a Melee Hit in the past eight seconds", ["type"] = "explicit", }, - [2627] = { + [2628] = { ["id"] = "explicit.stat_2573406169", ["text"] = "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", ["type"] = "explicit", }, - [2628] = { + [2629] = { ["id"] = "explicit.stat_2706625504", ["text"] = "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", ["type"] = "explicit", }, - [2629] = { + [2630] = { ["id"] = "explicit.stat_1163615092", ["text"] = "Projectiles have #% increased Critical Hit chance for each time they have Pierced", ["type"] = "explicit", }, - [2630] = { + [2631] = { ["id"] = "explicit.stat_2550456553", ["text"] = "Rare Monsters have # additional Modifier", ["type"] = "explicit", }, - [2631] = { + [2632] = { ["id"] = "explicit.stat_3732878551", ["text"] = "Rare Monsters have a #% Surpassing chance to have an additional Modifier", ["type"] = "explicit", }, - [2632] = { + [2633] = { ["id"] = "explicit.stat_2550456553", ["text"] = "Rare Monsters in your Maps have # additional Modifier", ["type"] = "explicit", }, - [2633] = { + [2634] = { ["id"] = "explicit.stat_3732878551", ["text"] = "Rare Monsters in your Maps have a #% Surpassing chance to have an additional Modifier", ["type"] = "explicit", }, - [2634] = { + [2635] = { ["id"] = "explicit.stat_3198163869", ["text"] = "Raven-Touched", ["type"] = "explicit", }, - [2635] = { + [2636] = { ["id"] = "explicit.stat_2365392475", ["text"] = "Recover # Life when Used", ["type"] = "explicit", }, - [2636] = { + [2637] = { ["id"] = "explicit.stat_1120862500", ["text"] = "Recover # Mana when Used", ["type"] = "explicit", }, - [2637] = { + [2638] = { ["id"] = "explicit.stat_554145967", ["text"] = "Recover # Runic Ward when a Charm is used", ["type"] = "explicit", }, - [2638] = { + [2639] = { ["id"] = "explicit.stat_1568848828", ["text"] = "Recover # Runic Ward when you Block", ["type"] = "explicit", }, - [2639] = { + [2640] = { ["id"] = "explicit.stat_4033618138", ["text"] = "Recover #% of Maximum Life when you expend at least 10 Combo", ["type"] = "explicit", }, - [2640] = { + [2641] = { ["id"] = "explicit.stat_2991045011", ["text"] = "Recover #% of Maximum Mana when you expend at least 10 Combo", ["type"] = "explicit", }, - [2641] = { + [2642] = { ["id"] = "explicit.stat_1990472846", ["text"] = "Recover #% of Missing Life before being Hit by an Enemy", ["type"] = "explicit", }, - [2642] = { + [2643] = { ["id"] = "explicit.stat_939832726", ["text"] = "Recover #% of maximum Life for each Endurance Charge consumed", ["type"] = "explicit", }, - [2643] = { + [2644] = { ["id"] = "explicit.stat_2023107756", ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "explicit", }, - [2644] = { + [2645] = { ["id"] = "explicit.stat_1781372024", ["text"] = "Recover #% of maximum Life on Killing a Poisoned Enemy", ["type"] = "explicit", }, - [2645] = { + [2646] = { ["id"] = "explicit.stat_2535713562", ["text"] = "Recover #% of maximum Life per Poison affecting Enemies you Kill", ["type"] = "explicit", }, - [2646] = { + [2647] = { ["id"] = "explicit.stat_2442647190", ["text"] = "Recover #% of maximum Life when you Block", ["type"] = "explicit", }, - [2647] = { + [2648] = { ["id"] = "explicit.stat_1030153674", ["text"] = "Recover #% of maximum Mana on Kill", ["type"] = "explicit", }, - [2648] = { + [2649] = { ["id"] = "explicit.stat_1604736568", ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "explicit", }, - [2649] = { + [2650] = { ["id"] = "explicit.stat_4121454694", ["text"] = "Recover #% of maximum Mana when a Charm is used", ["type"] = "explicit", }, - [2650] = { + [2651] = { ["id"] = "explicit.stat_346374719", ["text"] = "Recover #% of maximum Mana when you consume a Power Charge", ["type"] = "explicit", }, - [2651] = { + [2652] = { ["id"] = "explicit.stat_3503117295", ["text"] = "Recover #% of your maximum Life when an Enemy dies in your Presence", ["type"] = "explicit", }, - [2652] = { + [2653] = { ["id"] = "explicit.stat_2456226238", ["text"] = "Recover #% of your maximum Mana when an Enemy dies in your Presence", ["type"] = "explicit", }, - [2653] = { + [2654] = { ["id"] = "explicit.stat_2716923832", ["text"] = "Recover Life equal to #% of Mana Flask's Recovery Amount when used", ["type"] = "explicit", }, - [2654] = { + [2655] = { ["id"] = "explicit.stat_3891350097", ["text"] = "Recover Mana equal to #% of Life Flask's Recovery Amount when used", ["type"] = "explicit", }, - [2655] = { + [2656] = { ["id"] = "explicit.stat_1002973905", ["text"] = "Recover all Mana when Used", ["type"] = "explicit", }, - [2656] = { + [2657] = { ["id"] = "explicit.stat_746505085", ["text"] = "Reflects opposite Ring", ["type"] = "explicit", }, - [2657] = { + [2658] = { ["id"] = "explicit.stat_1312381104", ["text"] = "Regenerate # Life per second for every 10 Intelligence", ["type"] = "explicit", }, - [2658] = { + [2659] = { ["id"] = "explicit.stat_3276271783", ["text"] = "Regenerate # Life per second per Maximum Energy Shield", ["type"] = "explicit", }, - [2659] = { + [2660] = { ["id"] = "explicit.stat_2853314994", ["text"] = "Regenerate # Rage per second", ["type"] = "explicit", }, - [2660] = { + [2661] = { ["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", }, - [2661] = { + [2662] = { ["id"] = "explicit.stat_836936635", ["text"] = "Regenerate #% of maximum Life per second", ["type"] = "explicit", }, - [2662] = { + [2663] = { ["id"] = "explicit.stat_2201614328", ["text"] = "Regenerate #% of maximum Life per second if you have been Hit Recently", ["type"] = "explicit", }, - [2663] = { + [2664] = { ["id"] = "explicit.stat_302024054", ["text"] = "Regenerate #% of maximum Life per second while Ignited", ["type"] = "explicit", }, - [2664] = { + [2665] = { ["id"] = "explicit.stat_2002533190", ["text"] = "Regenerate #% of maximum Life per second while Surrounded", ["type"] = "explicit", }, - [2665] = { + [2666] = { ["id"] = "explicit.stat_3942946753", ["text"] = "Regenerate #% of maximum Life per second while on Low Life", ["type"] = "explicit", }, - [2666] = { + [2667] = { ["id"] = "explicit.stat_3418580811|22", ["text"] = "Remembrancing # songworthy deeds by the line of MedvedPassives in radius are Conquered by the Kalguur", ["type"] = "explicit", }, - [2667] = { + [2668] = { ["id"] = "explicit.stat_3418580811|23", ["text"] = "Remembrancing # songworthy deeds by the line of OlrothPassives in radius are Conquered by the Kalguur", ["type"] = "explicit", }, - [2668] = { + [2669] = { ["id"] = "explicit.stat_3418580811|21", ["text"] = "Remembrancing # songworthy deeds by the line of VoranaPassives in radius are Conquered by the Kalguur", ["type"] = "explicit", }, - [2669] = { + [2670] = { ["id"] = "explicit.stat_3482326075", ["text"] = "Remnants can be collected from #% further away", ["type"] = "explicit", }, - [2670] = { + [2671] = { ["id"] = "explicit.stat_315717203", ["text"] = "Remnants you create affect Allies in your Presence as well as you when collected", ["type"] = "explicit", }, - [2671] = { + [2672] = { ["id"] = "explicit.stat_1999910726", ["text"] = "Remnants you create have #% increased effect", ["type"] = "explicit", }, - [2672] = { + [2673] = { ["id"] = "explicit.stat_1394184789", ["text"] = "Remove Bleeding when you use a Life Flask", ["type"] = "explicit", }, - [2673] = { + [2674] = { ["id"] = "explicit.stat_648019518", ["text"] = "Removes #% of Life Recovered from Mana when used", ["type"] = "explicit", }, - [2674] = { + [2675] = { ["id"] = "explicit.stat_959641748", ["text"] = "Removes #% of Mana Recovered from Life when used", ["type"] = "explicit", }, - [2675] = { + [2676] = { ["id"] = "explicit.stat_2306588612", ["text"] = "Repeatable Attacks with this Bow Repeat # time if no enemies are in your Presence", ["type"] = "explicit", }, - [2676] = { + [2677] = { ["id"] = "explicit.stat_2267564181", ["text"] = "Require # additional enemies to be Surrounded", ["type"] = "explicit", }, - [2677] = { + [2678] = { ["id"] = "explicit.stat_2282052746", ["text"] = "Rerolling Favours at Ritual Altars costs #% increased Tribute", ["type"] = "explicit", }, - [2678] = { + [2679] = { ["id"] = "explicit.stat_2282052746", ["text"] = "Rerolling Favours at Ritual Altars in Area costs #% increased Tribute", ["type"] = "explicit", }, - [2679] = { + [2680] = { ["id"] = "explicit.stat_3831171903|6", ["text"] = "Resolute Technique", ["type"] = "explicit", }, - [2680] = { + [2681] = { ["id"] = "explicit.stat_3831171903|14", ["text"] = "Resonance", ["type"] = "explicit", }, - [2681] = { + [2682] = { ["id"] = "explicit.stat_1031644647", ["text"] = "Revived Monsters from Ritual Altars have #% increased chance to be Magic", ["type"] = "explicit", }, - [2682] = { + [2683] = { ["id"] = "explicit.stat_3979184174", ["text"] = "Revived Monsters from Ritual Altars have #% increased chance to be Rare", ["type"] = "explicit", }, - [2683] = { + [2684] = { ["id"] = "explicit.stat_1031644647", ["text"] = "Revived Monsters from Ritual Altars in Area have #% increased chance to be Magic", ["type"] = "explicit", }, - [2684] = { + [2685] = { ["id"] = "explicit.stat_3979184174", ["text"] = "Revived Monsters from Ritual Altars in Area have #% increased chance to be Rare", ["type"] = "explicit", }, - [2685] = { + [2686] = { ["id"] = "explicit.stat_1555918911", ["text"] = "Right ring slot: Projectiles from Spells Chain +# times", ["type"] = "explicit", }, - [2686] = { + [2687] = { ["id"] = "explicit.stat_2933024469", ["text"] = "Right ring slot: Projectiles from Spells cannot Fork", ["type"] = "explicit", }, - [2687] = { + [2688] = { ["id"] = "explicit.stat_120737942", ["text"] = "Ritual Altars allow rerolling Favours an additional time", ["type"] = "explicit", }, - [2688] = { + [2689] = { ["id"] = "explicit.stat_120737942", ["text"] = "Ritual Altars in Area allow rerolling Favours an additional time", ["type"] = "explicit", }, - [2689] = { + [2690] = { ["id"] = "explicit.stat_3831171903|29", ["text"] = "Ritual Cadence", ["type"] = "explicit", }, - [2690] = { + [2691] = { ["id"] = "explicit.stat_4219853180", ["text"] = "Ritual Favours in Area have #% increased chance to be Omens", ["type"] = "explicit", }, - [2691] = { + [2692] = { ["id"] = "explicit.stat_4219853180", ["text"] = "Ritual Favours in your Maps have #% increased chance to be Omens", ["type"] = "explicit", }, - [2692] = { + [2693] = { ["id"] = "explicit.stat_3108672983", ["text"] = "Rolls only the minimum or maximum Damage value for each Damage Type", ["type"] = "explicit", }, - [2693] = { + [2694] = { ["id"] = "explicit.stat_2816104578", ["text"] = "Runic Monsters in your Maps are Duplicated", ["type"] = "explicit", }, - [2694] = { + [2695] = { ["id"] = "explicit.stat_76982026", ["text"] = "Sacrifice # Life to not consume the last bolt when firing", ["type"] = "explicit", }, - [2695] = { + [2696] = { ["id"] = "explicit.stat_613752285", ["text"] = "Sacrifice #% of maximum Life to gain that much Energy Shield when you Cast a Spell", ["type"] = "explicit", }, - [2696] = { + [2697] = { ["id"] = "explicit.stat_3076483222|49977", ["text"] = "Sacrifice up to 10 Chaos Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2697] = { + [2698] = { ["id"] = "explicit.stat_3076483222|53954", ["text"] = "Sacrifice up to 10 Gemcutter's Prisms to receive double on Trial completion", ["type"] = "explicit", }, - [2698] = { + [2699] = { ["id"] = "explicit.stat_3076483222|8084", ["text"] = "Sacrifice up to 10 Greater Exalted Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2699] = { + [2700] = { ["id"] = "explicit.stat_3076483222|30874", ["text"] = "Sacrifice up to 10 Greater Regal Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2700] = { + [2701] = { ["id"] = "explicit.stat_3076483222|20358", ["text"] = "Sacrifice up to 10 Orbs of Alchemy to receive double on Trial completion", ["type"] = "explicit", }, - [2701] = { + [2702] = { ["id"] = "explicit.stat_3076483222|64921", ["text"] = "Sacrifice up to 10 Vaal Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2702] = { + [2703] = { ["id"] = "explicit.stat_3076483222|38303", ["text"] = "Sacrifice up to 20 Arcanist's Etchers to receive double on Trial completion", ["type"] = "explicit", }, - [2703] = { + [2704] = { ["id"] = "explicit.stat_3076483222|4897", ["text"] = "Sacrifice up to 20 Armourer's Scraps to receive double on Trial completion", ["type"] = "explicit", }, - [2704] = { + [2705] = { ["id"] = "explicit.stat_3076483222|19846", ["text"] = "Sacrifice up to 20 Artificer's Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2705] = { + [2706] = { ["id"] = "explicit.stat_3076483222|32821", ["text"] = "Sacrifice up to 20 Blacksmith's Whetstones to receive double on Trial completion", ["type"] = "explicit", }, - [2706] = { + [2707] = { ["id"] = "explicit.stat_3076483222|62634", ["text"] = "Sacrifice up to 20 Exalted Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2707] = { + [2708] = { ["id"] = "explicit.stat_3076483222|136", ["text"] = "Sacrifice up to 20 Glassblower's Baubles to receive double on Trial completion", ["type"] = "explicit", }, - [2708] = { + [2709] = { ["id"] = "explicit.stat_3076483222|54496", ["text"] = "Sacrifice up to 20 Regal Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2709] = { + [2710] = { ["id"] = "explicit.stat_3076483222|61382", ["text"] = "Sacrifice up to 3 Divine Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2710] = { + [2711] = { ["id"] = "explicit.stat_3076483222|19854", ["text"] = "Sacrifice up to 3 Orb of Annulments to receive double on Trial completion", ["type"] = "explicit", }, - [2711] = { + [2712] = { ["id"] = "explicit.stat_3076483222|45026", ["text"] = "Sacrifice up to 3 Orbs of Chance to receive double on Trial completion", ["type"] = "explicit", }, - [2712] = { + [2713] = { ["id"] = "explicit.stat_3076483222|56025", ["text"] = "Sacrifice up to 3 Perfect Chaos Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2713] = { + [2714] = { ["id"] = "explicit.stat_3076483222|6774", ["text"] = "Sacrifice up to 3 Perfect Exalted Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2714] = { + [2715] = { ["id"] = "explicit.stat_3076483222|51981", ["text"] = "Sacrifice up to 3 Perfect Regal Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2715] = { + [2716] = { ["id"] = "explicit.stat_3076483222|42106", ["text"] = "Sacrifice up to 5 Greater Chaos Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2716] = { + [2717] = { ["id"] = "explicit.stat_3831171903|30", ["text"] = "Scarred Faith", ["type"] = "explicit", }, - [2717] = { + [2718] = { ["id"] = "explicit.stat_4147510958", ["text"] = "Sealed Skills have # to maximum Seals", ["type"] = "explicit", }, - [2718] = { + [2719] = { ["id"] = "explicit.stat_3384867265", ["text"] = "Sealed Skills have #% increased Seal gain frequency", ["type"] = "explicit", }, - [2719] = { + [2720] = { ["id"] = "explicit.stat_2535267021", ["text"] = "Share Charges with Allies in your Presence", ["type"] = "explicit", }, - [2720] = { + [2721] = { ["id"] = "explicit.stat_4256314560", ["text"] = "Shocks you when you reach maximum Power Charges", ["type"] = "explicit", }, - [2721] = { + [2722] = { ["id"] = "explicit.stat_4245256219", ["text"] = "Skill Gems have no Attribute Requirements", ["type"] = "explicit", }, - [2722] = { + [2723] = { ["id"] = "explicit.stat_467146530", ["text"] = "Skills Cost Divinity instead of Mana or Life", ["type"] = "explicit", }, - [2723] = { + [2724] = { ["id"] = "explicit.stat_3605834869", ["text"] = "Skills Gain #% of Mana Cost as Extra Life Cost", ["type"] = "explicit", }, - [2724] = { + [2725] = { ["id"] = "explicit.stat_2638381947", ["text"] = "Skills from Corrupted Gems have #% increased Cost Efficiency during any Flask Effect", ["type"] = "explicit", }, - [2725] = { + [2726] = { ["id"] = "explicit.stat_2035336006", ["text"] = "Skills from Corrupted Gems have #% of Mana Costs Converted to Life Costs", ["type"] = "explicit", }, - [2726] = { + [2727] = { ["id"] = "explicit.stat_4117005593", ["text"] = "Skills gain #% of Damage as Chaos Damage per 3 Life Cost", ["type"] = "explicit", }, - [2727] = { + [2728] = { ["id"] = "explicit.stat_396200591", ["text"] = "Skills have # seconds to Cooldown", ["type"] = "explicit", }, - [2728] = { + [2729] = { ["id"] = "explicit.stat_2942439603", ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", ["type"] = "explicit", }, - [2729] = { + [2730] = { ["id"] = "explicit.stat_3024873336", ["text"] = "Skills have #% chance to not remove Elemental Infusions but still count as consuming them", ["type"] = "explicit", }, - [2730] = { + [2731] = { ["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", }, - [2731] = { + [2732] = { ["id"] = "explicit.stat_3982604001", ["text"] = "Skills have #% longer Perfect Timing window during effect", ["type"] = "explicit", }, - [2732] = { + [2733] = { ["id"] = "explicit.stat_2942704390", ["text"] = "Skills have +# to Limit", ["type"] = "explicit", }, - [2733] = { + [2734] = { ["id"] = "explicit.stat_3200877707", ["text"] = "Skills have a #% chance to not consume Glory", ["type"] = "explicit", }, - [2734] = { + [2735] = { ["id"] = "explicit.stat_1373370443", ["text"] = "Skills have a #% longer Perfect Timing window", ["type"] = "explicit", }, - [2735] = { + [2736] = { ["id"] = "explicit.stat_2838161567", ["text"] = "Skills reserve 50% less Spirit", ["type"] = "explicit", }, - [2736] = { + [2737] = { ["id"] = "explicit.stat_2538411280", ["text"] = "Skills which Empower an Attack have #% chance to not count that Attack", ["type"] = "explicit", }, - [2737] = { + [2738] = { ["id"] = "explicit.stat_2544540062", ["text"] = "Skills which create Fissures have a #% chance to create an additional Fissure", ["type"] = "explicit", }, - [2738] = { + [2739] = { ["id"] = "explicit.stat_2480962043", ["text"] = "Skills which require Glory generate # Glory every 2 seconds", ["type"] = "explicit", }, - [2739] = { + [2740] = { ["id"] = "explicit.stat_2323782229", ["text"] = "Slaying Rare Monsters in Area pauses the Delirium Mirror Timer for 1 second", ["type"] = "explicit", }, - [2740] = { + [2741] = { ["id"] = "explicit.stat_2323782229", ["text"] = "Slaying Rare Monsters in your Maps pauses the Delirium Mirror Timer for 1 second", ["type"] = "explicit", }, - [2741] = { + [2742] = { ["id"] = "explicit.stat_1316656343", ["text"] = "Small Passive Skills in Radius also grant # to maximum Life", ["type"] = "explicit", }, - [2742] = { + [2743] = { ["id"] = "explicit.stat_1294464552", ["text"] = "Small Passive Skills in Radius also grant # to maximum Mana", ["type"] = "explicit", }, - [2743] = { + [2744] = { ["id"] = "explicit.stat_2610562860", ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", ["type"] = "explicit", }, - [2744] = { + [2745] = { ["id"] = "explicit.stat_2840989393", ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", ["type"] = "explicit", }, - [2745] = { + [2746] = { ["id"] = "explicit.stat_944643028", ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, - [2746] = { + [2747] = { ["id"] = "explicit.stat_533892981", ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", ["type"] = "explicit", }, - [2747] = { + [2748] = { ["id"] = "explicit.stat_1285594161", ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", ["type"] = "explicit", }, - [2748] = { + [2749] = { ["id"] = "explicit.stat_3858398337", ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", ["type"] = "explicit", }, - [2749] = { + [2750] = { ["id"] = "explicit.stat_1426522529", ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", ["type"] = "explicit", }, - [2750] = { + [2751] = { ["id"] = "explicit.stat_1309799717", ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "explicit", }, - [2751] = { + [2752] = { ["id"] = "explicit.stat_3088348485", ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", ["type"] = "explicit", }, - [2752] = { + [2753] = { ["id"] = "explicit.stat_2442527254", ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "explicit", }, - [2753] = { + [2754] = { ["id"] = "explicit.stat_1087108135", ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", ["type"] = "explicit", }, - [2754] = { + [2755] = { ["id"] = "explicit.stat_1834658952", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", ["type"] = "explicit", }, - [2755] = { + [2756] = { ["id"] = "explicit.stat_1892122971", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", ["type"] = "explicit", }, - [2756] = { + [2757] = { ["id"] = "explicit.stat_266564538", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", ["type"] = "explicit", }, - [2757] = { + [2758] = { ["id"] = "explicit.stat_3752589831", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", ["type"] = "explicit", }, - [2758] = { + [2759] = { ["id"] = "explicit.stat_945774314", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", ["type"] = "explicit", }, - [2759] = { + [2760] = { ["id"] = "explicit.stat_517664839", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", ["type"] = "explicit", }, - [2760] = { + [2761] = { ["id"] = "explicit.stat_147764878", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "explicit", }, - [2761] = { + [2762] = { ["id"] = "explicit.stat_1852184471", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", ["type"] = "explicit", }, - [2762] = { + [2763] = { ["id"] = "explicit.stat_1590846356", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", ["type"] = "explicit", }, - [2763] = { + [2764] = { ["id"] = "explicit.stat_821948283", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", ["type"] = "explicit", }, - [2764] = { + [2765] = { ["id"] = "explicit.stat_2809428780", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", ["type"] = "explicit", }, - [2765] = { + [2766] = { ["id"] = "explicit.stat_1160637284", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", ["type"] = "explicit", }, - [2766] = { + [2767] = { ["id"] = "explicit.stat_3409275777", ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", ["type"] = "explicit", }, - [2767] = { + [2768] = { ["id"] = "explicit.stat_3222402650", ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", ["type"] = "explicit", }, - [2768] = { + [2769] = { ["id"] = "explicit.stat_1552666713", ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", ["type"] = "explicit", }, - [2769] = { + [2770] = { ["id"] = "explicit.stat_1994296038", ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "explicit", }, - [2770] = { + [2771] = { ["id"] = "explicit.stat_139889694", ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "explicit", }, - [2771] = { + [2772] = { ["id"] = "explicit.stat_394473632", ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", ["type"] = "explicit", }, - [2772] = { + [2773] = { ["id"] = "explicit.stat_1773308808", ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", ["type"] = "explicit", }, - [2773] = { + [2774] = { ["id"] = "explicit.stat_830345042", ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", ["type"] = "explicit", }, - [2774] = { + [2775] = { ["id"] = "explicit.stat_1417267954", ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "explicit", }, - [2775] = { + [2776] = { ["id"] = "explicit.stat_255840549", ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", ["type"] = "explicit", }, - [2776] = { + [2777] = { ["id"] = "explicit.stat_980177976", ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", ["type"] = "explicit", }, - [2777] = { + [2778] = { ["id"] = "explicit.stat_2768899959", ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", ["type"] = "explicit", }, - [2778] = { + [2779] = { ["id"] = "explicit.stat_3774951878", ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", ["type"] = "explicit", }, - [2779] = { + [2780] = { ["id"] = "explicit.stat_3256879910", ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", ["type"] = "explicit", }, - [2780] = { + [2781] = { ["id"] = "explicit.stat_1337740333", ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", ["type"] = "explicit", }, - [2781] = { + [2782] = { ["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", }, - [2782] = { + [2783] = { ["id"] = "explicit.stat_793875384", ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", ["type"] = "explicit", }, - [2783] = { + [2784] = { ["id"] = "explicit.stat_1007380041", ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", ["type"] = "explicit", }, - [2784] = { + [2785] = { ["id"] = "explicit.stat_455816363", ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", ["type"] = "explicit", }, - [2785] = { + [2786] = { ["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", }, - [2786] = { + [2787] = { ["id"] = "explicit.stat_3513818125", ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", ["type"] = "explicit", }, - [2787] = { + [2788] = { ["id"] = "explicit.stat_1137305356", ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", ["type"] = "explicit", }, - [2788] = { + [2789] = { ["id"] = "explicit.stat_484792219", ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", ["type"] = "explicit", }, - [2789] = { + [2790] = { ["id"] = "explicit.stat_654207792", ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "explicit", }, - [2790] = { + [2791] = { ["id"] = "explicit.stat_1320662475", ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", ["type"] = "explicit", }, - [2791] = { + [2792] = { ["id"] = "explicit.stat_2108821127", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", ["type"] = "explicit", }, - [2792] = { + [2793] = { ["id"] = "explicit.stat_442393998", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", ["type"] = "explicit", }, - [2793] = { + [2794] = { ["id"] = "explicit.stat_1145481685", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", ["type"] = "explicit", }, - [2794] = { + [2795] = { ["id"] = "explicit.stat_1602294220", ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", ["type"] = "explicit", }, - [2795] = { + [2796] = { ["id"] = "explicit.stat_1129429646", ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", ["type"] = "explicit", }, - [2796] = { + [2797] = { ["id"] = "explicit.stat_3666476747", ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", ["type"] = "explicit", }, - [2797] = { + [2798] = { ["id"] = "explicit.stat_3700202631", ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", ["type"] = "explicit", }, - [2798] = { + [2799] = { ["id"] = "explicit.stat_1039268420", ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", ["type"] = "explicit", }, - [2799] = { + [2800] = { ["id"] = "explicit.stat_3665922113", ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", ["type"] = "explicit", }, - [2800] = { + [2801] = { ["id"] = "explicit.stat_1809641701", ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Life", ["type"] = "explicit", }, - [2801] = { + [2802] = { ["id"] = "explicit.stat_1247628870", ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Mana", ["type"] = "explicit", }, - [2802] = { + [2803] = { ["id"] = "explicit.stat_860443350", ["text"] = "Small Passive Skills in Radius also grant #% reduced Freeze Duration on you", ["type"] = "explicit", }, - [2803] = { + [2804] = { ["id"] = "explicit.stat_3474941090", ["text"] = "Small Passive Skills in Radius also grant #% reduced Ignite Duration on you", ["type"] = "explicit", }, - [2804] = { + [2805] = { ["id"] = "explicit.stat_1627878766", ["text"] = "Small Passive Skills in Radius also grant #% reduced Shock duration on you", ["type"] = "explicit", }, - [2805] = { + [2806] = { ["id"] = "explicit.stat_2264240911", ["text"] = "Small Passive Skills in Radius also grant #% to Chaos Resistance", ["type"] = "explicit", }, - [2806] = { + [2807] = { ["id"] = "explicit.stat_2884937919", ["text"] = "Small Passive Skills in Radius also grant #% to Cold Resistance", ["type"] = "explicit", }, - [2807] = { + [2808] = { ["id"] = "explicit.stat_2948688907", ["text"] = "Small Passive Skills in Radius also grant #% to Fire Resistance", ["type"] = "explicit", }, - [2808] = { + [2809] = { ["id"] = "explicit.stat_3994876825", ["text"] = "Small Passive Skills in Radius also grant #% to Lightning Resistance", ["type"] = "explicit", }, - [2809] = { + [2810] = { ["id"] = "explicit.stat_318092306", ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", ["type"] = "explicit", }, - [2810] = { + [2811] = { ["id"] = "explicit.stat_4142814612", ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", ["type"] = "explicit", }, - [2811] = { + [2812] = { ["id"] = "explicit.stat_2690740379", ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", ["type"] = "explicit", }, - [2812] = { + [2813] = { ["id"] = "explicit.stat_4089835882", ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", ["type"] = "explicit", }, - [2813] = { + [2814] = { ["id"] = "explicit.stat_1494950893", ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", ["type"] = "explicit", }, - [2814] = { + [2815] = { ["id"] = "explicit.stat_2638756573", ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", ["type"] = "explicit", }, - [2815] = { + [2816] = { ["id"] = "explicit.stat_1896066427", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", ["type"] = "explicit", }, - [2816] = { + [2817] = { ["id"] = "explicit.stat_1432756708", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", ["type"] = "explicit", }, - [2817] = { + [2818] = { ["id"] = "explicit.stat_868556494", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", ["type"] = "explicit", }, - [2818] = { + [2819] = { ["id"] = "explicit.stat_4258000627", ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", ["type"] = "explicit", }, - [2819] = { + [2820] = { ["id"] = "explicit.stat_3395186672", ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", ["type"] = "explicit", }, - [2820] = { + [2821] = { ["id"] = "explicit.stat_693237939", ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, - [2821] = { + [2822] = { ["id"] = "explicit.stat_1653682082", ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, - [2822] = { + [2823] = { ["id"] = "explicit.stat_3065378291", ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", ["type"] = "explicit", }, - [2823] = { + [2824] = { ["id"] = "explicit.stat_4162678661", ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", ["type"] = "explicit", }, - [2824] = { + [2825] = { ["id"] = "explicit.stat_2202308025", ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", ["type"] = "explicit", }, - [2825] = { + [2826] = { ["id"] = "explicit.stat_2954360902", ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", ["type"] = "explicit", }, - [2826] = { + [2827] = { ["id"] = "explicit.stat_30438393", ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", ["type"] = "explicit", }, - [2827] = { + [2828] = { ["id"] = "explicit.stat_378796798", ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", ["type"] = "explicit", }, - [2828] = { + [2829] = { ["id"] = "explicit.stat_1756380435", ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", ["type"] = "explicit", }, - [2829] = { + [2830] = { ["id"] = "explicit.stat_3225608889", ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, - [2830] = { + [2831] = { ["id"] = "explicit.stat_2107703111", ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", ["type"] = "explicit", }, - [2831] = { + [2832] = { ["id"] = "explicit.stat_473917671", ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", ["type"] = "explicit", }, - [2832] = { + [2833] = { ["id"] = "explicit.stat_1404607671", ["text"] = "Soul Eater", ["type"] = "explicit", }, - [2833] = { + [2834] = { ["id"] = "explicit.stat_4106787208", ["text"] = "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", ["type"] = "explicit", }, - [2834] = { + [2835] = { ["id"] = "explicit.stat_2653175601", ["text"] = "Spell Hits Gain #% of Damage as Extra Chaos Damage per Curse on target", ["type"] = "explicit", }, - [2835] = { + [2836] = { ["id"] = "explicit.stat_1548338404", ["text"] = "Spell Hits Gain #% of Damage as Extra Physical Damage per Curse on target", ["type"] = "explicit", }, - [2836] = { + [2837] = { ["id"] = "explicit.stat_2474424958", ["text"] = "Spell Skills have # to maximum number of Summoned Totems", ["type"] = "explicit", }, - [2837] = { + [2838] = { ["id"] = "explicit.stat_1967040409", ["text"] = "Spell Skills have #% increased Area of Effect", ["type"] = "explicit", }, - [2838] = { + [2839] = { ["id"] = "explicit.stat_555706343", ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", ["type"] = "explicit", }, - [2839] = { + [2840] = { ["id"] = "explicit.stat_1013492127", ["text"] = "Spells fire # additional ProjectilesSpells fire Projectiles in a circle", ["type"] = "explicit", }, - [2840] = { + [2841] = { ["id"] = "explicit.stat_1493485657", ["text"] = "Spells have #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, - [2841] = { + [2842] = { ["id"] = "explicit.stat_2348696937", ["text"] = "Spells have a #% chance to inflict Withered for 4 seconds on Hit", ["type"] = "explicit", }, - [2842] = { + [2843] = { ["id"] = "explicit.stat_1088082880", ["text"] = "Spells which cost Life Gain #% of Damage as Extra Physical Damage", ["type"] = "explicit", }, - [2843] = { + [2844] = { ["id"] = "explicit.stat_2230687504", ["text"] = "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", ["type"] = "explicit", }, - [2844] = { + [2845] = { ["id"] = "explicit.stat_3675300253", ["text"] = "Strikes deal Splash Damage", ["type"] = "explicit", }, - [2845] = { + [2846] = { ["id"] = "explicit.stat_3249412463", ["text"] = "Supported Minions' Strikes have Melee Splash", ["type"] = "explicit", }, - [2846] = { + [2847] = { ["id"] = "explicit.stat_3164544692", ["text"] = "Take # Chaos damage per second per Endurance Charge", ["type"] = "explicit", }, - [2847] = { + [2848] = { ["id"] = "explicit.stat_2518598473", ["text"] = "Take # Fire Damage when you Ignite an Enemy", ["type"] = "explicit", }, - [2848] = { + [2849] = { ["id"] = "explicit.stat_3181887481", ["text"] = "Take #% of Mana Costs you pay for Skills as Physical Damage", ["type"] = "explicit", }, - [2849] = { + [2850] = { ["id"] = "explicit.stat_4294267596", ["text"] = "Take no Extra Damage from Critical Hits", ["type"] = "explicit", }, - [2850] = { + [2851] = { ["id"] = "explicit.stat_1755296234", ["text"] = "Targets can be affected by # of your Poisons at the same time", ["type"] = "explicit", }, - [2851] = { + [2852] = { ["id"] = "explicit.stat_3984146263", ["text"] = "Tempest Bells are destroyed after an additional # Hits", ["type"] = "explicit", }, - [2852] = { + [2853] = { ["id"] = "explicit.stat_1058934731", ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", ["type"] = "explicit", }, - [2853] = { + [2854] = { ["id"] = "explicit.stat_3783473032", ["text"] = "The Bodach haunts your Presence", ["type"] = "explicit", }, - [2854] = { + [2855] = { ["id"] = "explicit.stat_1010703902", ["text"] = "The Effect of Blind on you is reversed", ["type"] = "explicit", }, - [2855] = { + [2856] = { ["id"] = "explicit.stat_2955966707", ["text"] = "The Effect of Chill on you is reversed", ["type"] = "explicit", }, - [2856] = { + [2857] = { ["id"] = "explicit.stat_2980117882", ["text"] = "This Flask cannot be Used but applies its Effect constantly", ["type"] = "explicit", }, - [2857] = { + [2858] = { ["id"] = "explicit.stat_3384885789", ["text"] = "This Weapon's Critical Hit Chance is #%", ["type"] = "explicit", }, - [2858] = { + [2859] = { ["id"] = "explicit.stat_2733960806", ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", ["type"] = "explicit", }, - [2859] = { + [2860] = { ["id"] = "explicit.stat_1856590738", ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", ["type"] = "explicit", }, - [2860] = { + [2861] = { ["id"] = "explicit.stat_1087787187", ["text"] = "This item gains bonuses from Socketed Items as though it was a Body Armour", ["type"] = "explicit", }, - [2861] = { + [2862] = { ["id"] = "explicit.stat_1458343515", ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", ["type"] = "explicit", }, - [2862] = { + [2863] = { ["id"] = "explicit.stat_2044810874", ["text"] = "This item gains bonuses from Socketed Items as though it was a Shield", ["type"] = "explicit", }, - [2863] = { + [2864] = { ["id"] = "explicit.stat_150590298", ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also Boots", ["type"] = "explicit", }, - [2864] = { + [2865] = { ["id"] = "explicit.stat_3915618954", ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", ["type"] = "explicit", }, - [2865] = { + [2866] = { ["id"] = "explicit.stat_3773763721", ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", ["type"] = "explicit", }, - [2866] = { + [2867] = { ["id"] = "explicit.stat_231726304", ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", ["type"] = "explicit", }, - [2867] = { + [2868] = { ["id"] = "explicit.stat_3414243317", ["text"] = "Thorns can Retaliate against all Hits", ["type"] = "explicit", }, - [2868] = { + [2869] = { ["id"] = "explicit.stat_3371943724", ["text"] = "Trigger Decompose every 1.2 metres travelled", ["type"] = "explicit", }, - [2869] = { + [2870] = { ["id"] = "explicit.stat_826162720", ["text"] = "Trigger Ember Fusillade Skill on casting a Spell", ["type"] = "explicit", }, - [2870] = { + [2871] = { ["id"] = "explicit.stat_704919631", ["text"] = "Trigger Lightning Bolt Skill on Critical Hit", ["type"] = "explicit", }, - [2871] = { + [2872] = { ["id"] = "explicit.stat_811217923", ["text"] = "Trigger Spark Skill on killing a Shocked Enemy", ["type"] = "explicit", }, - [2872] = { + [2873] = { ["id"] = "explicit.stat_3067892458", ["text"] = "Triggered Spells deal #% increased Spell Damage", ["type"] = "explicit", }, - [2873] = { + [2874] = { ["id"] = "explicit.stat_4007938693", ["text"] = "Triggers Level # Manifest Dancing Dervishes on Rampage", ["type"] = "explicit", }, - [2874] = { + [2875] = { ["id"] = "explicit.stat_3831171903|25", ["text"] = "Trusted Kinship", ["type"] = "explicit", }, - [2875] = { + [2876] = { ["id"] = "explicit.stat_1176947534", ["text"] = "Undead Minions have #% reduced Reservation", ["type"] = "explicit", }, - [2876] = { + [2877] = { ["id"] = "explicit.stat_3371085671", ["text"] = "Unique Monsters have # additional Rare Modifier", ["type"] = "explicit", }, - [2877] = { + [2878] = { ["id"] = "explicit.stat_3371085671", ["text"] = "Unique Monsters in your Maps have # additional Rare Modifier", ["type"] = "explicit", }, - [2878] = { + [2879] = { ["id"] = "explicit.stat_2433436306", ["text"] = "Unstable Breaches have #% increased chance to contain Vruun, Marshal of Xesht", ["type"] = "explicit", }, - [2879] = { + [2880] = { ["id"] = "explicit.stat_3762913035", ["text"] = "Unstable Breaches spawn an additional Rare Monster when Stabilised", ["type"] = "explicit", }, - [2880] = { + [2881] = { ["id"] = "explicit.stat_4104094246", ["text"] = "Unstable Breaches take an additional second to collapse after timer is filled", ["type"] = "explicit", }, - [2881] = { + [2882] = { ["id"] = "explicit.stat_3831171903|3", ["text"] = "Unwavering Stance", ["type"] = "explicit", }, - [2882] = { + [2883] = { ["id"] = "explicit.stat_1683578560", ["text"] = "Unwavering Stance", ["type"] = "explicit", }, - [2883] = { + [2884] = { ["id"] = "explicit.stat_3891355829|2", ["text"] = "Upgrades Radius to Large", ["type"] = "explicit", }, - [2884] = { + [2885] = { ["id"] = "explicit.stat_3891355829|1", ["text"] = "Upgrades Radius to Medium", ["type"] = "explicit", }, - [2885] = { + [2886] = { ["id"] = "explicit.stat_3891355829|3", ["text"] = "Upgrades Radius to Very Large", ["type"] = "explicit", }, - [2886] = { + [2887] = { ["id"] = "explicit.stat_3832076641", ["text"] = "Used when you release a skill with Perfect Timing", ["type"] = "explicit", }, - [2887] = { + [2888] = { ["id"] = "explicit.stat_2777675751", ["text"] = "Using a Mana Flask grants Guard equal to #% of Flask's recovery amount for 4 seconds", ["type"] = "explicit", }, - [2888] = { + [2889] = { ["id"] = "explicit.stat_3831171903|20", ["text"] = "Vaal Pact", ["type"] = "explicit", }, - [2889] = { + [2890] = { ["id"] = "explicit.stat_2257118425", ["text"] = "Vaal Pact", ["type"] = "explicit", }, - [2890] = { + [2891] = { ["id"] = "explicit.stat_1132041585", ["text"] = "Virtuous", ["type"] = "explicit", }, - [2891] = { + [2892] = { ["id"] = "explicit.stat_1434716233", ["text"] = "Warcries Empower an additional Attack", ["type"] = "explicit", }, - [2892] = { + [2893] = { ["id"] = "explicit.stat_11014011", ["text"] = "Warcries Explode Corpses dealing #% of their Life as Physical Damage", ["type"] = "explicit", }, - [2893] = { + [2894] = { ["id"] = "explicit.stat_2567751411", ["text"] = "Warcry Skills have #% increased Area of Effect", ["type"] = "explicit", }, - [2894] = { + [2895] = { ["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", }, - [2895] = { + [2896] = { ["id"] = "explicit.stat_447757144", ["text"] = "When you Consume a Charge Trigger Chaotic Surge to gain # Chaos Surge", ["type"] = "explicit", }, - [2896] = { + [2897] = { ["id"] = "explicit.stat_2913235441", ["text"] = "When you kill a Rare monster, you gain its Modifiers for 60 seconds", ["type"] = "explicit", }, - [2897] = { + [2898] = { ["id"] = "explicit.stat_331648983", ["text"] = "When you reload, triggers Gemini Surge to alternatelygain # Cold Surge or # Fire Surge", ["type"] = "explicit", }, - [2898] = { + [2899] = { ["id"] = "explicit.stat_3831171903|11", ["text"] = "Whispers of Doom", ["type"] = "explicit", }, - [2899] = { + [2900] = { ["id"] = "explicit.stat_3831171903|32", ["text"] = "Wildsurge Incantation", ["type"] = "explicit", }, - [2900] = { + [2901] = { ["id"] = "explicit.stat_2626360934", ["text"] = "Wind Skills which can be boosted by Elemental Ground Surfaces countas being boosted by Chilled Ground", ["type"] = "explicit", }, - [2901] = { + [2902] = { ["id"] = "explicit.stat_279110104", ["text"] = "Withered does not expire on Enemies Ignited by you", ["type"] = "explicit", }, - [2902] = { + [2903] = { ["id"] = "explicit.stat_1910297038", ["text"] = "Withered you inflict also increases Fire Damage taken", ["type"] = "explicit", }, - [2903] = { + [2904] = { ["id"] = "explicit.stat_1354656031", ["text"] = "Withered you inflict has infinite Duration", ["type"] = "explicit", }, - [2904] = { + [2905] = { ["id"] = "explicit.stat_2889272422", ["text"] = "Wombgifts have #% chance to drop one Level higher", ["type"] = "explicit", }, - [2905] = { + [2906] = { ["id"] = "explicit.stat_3429986699", ["text"] = "You and Allies in your Presence have #% increased Accuracy Rating", ["type"] = "explicit", }, - [2906] = { + [2907] = { ["id"] = "explicit.stat_3408222535", ["text"] = "You and Allies in your Presence have #% increased Attack Speed", ["type"] = "explicit", }, - [2907] = { + [2908] = { ["id"] = "explicit.stat_281990982", ["text"] = "You and Allies in your Presence have #% increased Cast Speed", ["type"] = "explicit", }, - [2908] = { + [2909] = { ["id"] = "explicit.stat_36954843", ["text"] = "You and Allies in your Presence have #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, - [2909] = { + [2910] = { ["id"] = "explicit.stat_1404134612", ["text"] = "You and Allies in your Presence have #% to Chaos Resistance", ["type"] = "explicit", }, - [2910] = { + [2911] = { ["id"] = "explicit.stat_3774577097", ["text"] = "You are Blind", ["type"] = "explicit", }, - [2911] = { + [2912] = { ["id"] = "explicit.stat_356835700", ["text"] = "You are considered on Low Life while at #% of maximum Life or below instead", ["type"] = "explicit", }, - [2912] = { + [2913] = { ["id"] = "explicit.stat_664024640", ["text"] = "You can Socket an additional copy of each Lineage Support Gem, in different Skills", ["type"] = "explicit", }, - [2913] = { + [2914] = { ["id"] = "explicit.stat_30642521", ["text"] = "You can apply # additional Curses", ["type"] = "explicit", }, - [2914] = { + [2915] = { ["id"] = "explicit.stat_603573028", ["text"] = "You can have any number of Companions of different types", ["type"] = "explicit", }, - [2915] = { + [2916] = { ["id"] = "explicit.stat_1888024332", ["text"] = "You can have two Companions of different types", ["type"] = "explicit", }, - [2916] = { + [2917] = { ["id"] = "explicit.stat_3598729471", ["text"] = "You can only Socket Emerald Jewels in this item", ["type"] = "explicit", }, - [2917] = { + [2918] = { ["id"] = "explicit.stat_4031148736", ["text"] = "You can only Socket Ruby Jewels in this item", ["type"] = "explicit", }, - [2918] = { + [2919] = { ["id"] = "explicit.stat_21302430", ["text"] = "You can only Socket Sapphire Jewels in this item", ["type"] = "explicit", }, - [2919] = { + [2920] = { ["id"] = "explicit.stat_3635316831", ["text"] = "You can wield Two-Handed Axes, Maces and Swords in one hand", ["type"] = "explicit", }, - [2920] = { + [2921] = { ["id"] = "explicit.stat_1536107934", ["text"] = "You cannot Sprint", ["type"] = "explicit", }, - [2921] = { + [2922] = { ["id"] = "explicit.stat_2306924373", ["text"] = "You cannot be Chilled for # second after being Chilled", ["type"] = "explicit", }, - [2922] = { + [2923] = { ["id"] = "explicit.stat_2996245527", ["text"] = "You cannot be Chilled or Frozen", ["type"] = "explicit", }, - [2923] = { + [2924] = { ["id"] = "explicit.stat_3612464552", ["text"] = "You cannot be Frozen for # second after being Frozen", ["type"] = "explicit", }, - [2924] = { + [2925] = { ["id"] = "explicit.stat_947072590", ["text"] = "You cannot be Ignited for # second after being Ignited", ["type"] = "explicit", }, - [2925] = { + [2926] = { ["id"] = "explicit.stat_215346464", ["text"] = "You cannot be Shocked for # second after being Shocked", ["type"] = "explicit", }, - [2926] = { + [2927] = { ["id"] = "explicit.stat_423304126", ["text"] = "You count as on Full Mana while at #% of maximum Mana or above", ["type"] = "explicit", }, - [2927] = { + [2928] = { ["id"] = "explicit.stat_3154256486", ["text"] = "You count as on Low Life while at #% of maximum Mana or below", ["type"] = "explicit", }, - [2928] = { + [2929] = { ["id"] = "explicit.stat_1143240184", ["text"] = "You count as on Low Mana while at #% of maximum Life or below", ["type"] = "explicit", }, - [2929] = { + [2930] = { ["id"] = "explicit.stat_1195849808", ["text"] = "You gain Onslaught for # seconds on Kill", ["type"] = "explicit", }, - [2930] = { + [2931] = { ["id"] = "explicit.stat_1736538865", ["text"] = "You have Consecrated Ground around you while stationary", ["type"] = "explicit", }, - [2931] = { + [2932] = { ["id"] = "explicit.stat_3007552094", ["text"] = "You have Unholy Might", ["type"] = "explicit", }, - [2932] = { + [2933] = { ["id"] = "explicit.stat_2592455368", ["text"] = "You have a Smoke Cloud around you while stationary", ["type"] = "explicit", }, - [2933] = { + [2934] = { ["id"] = "explicit.stat_3070990531", ["text"] = "You have no Accuracy Penalty at Distance", ["type"] = "explicit", }, - [2934] = { + [2935] = { ["id"] = "explicit.stat_4058681894", ["text"] = "You have no Critical Damage Bonus", ["type"] = "explicit", }, - [2935] = { + [2936] = { ["id"] = "explicit.stat_1776968075", ["text"] = "You have no Elemental Resistances", ["type"] = "explicit", }, - [2936] = { + [2937] = { ["id"] = "explicit.stat_854225133", ["text"] = "You have no Life Regeneration", ["type"] = "explicit", }, - [2937] = { + [2938] = { ["id"] = "explicit.stat_3148264775", ["text"] = "You have no Spirit", ["type"] = "explicit", }, - [2938] = { + [2939] = { ["id"] = "explicit.stat_2350411833", ["text"] = "You lose #% of maximum Energy Shield per second", ["type"] = "explicit", }, - [2939] = { + [2940] = { ["id"] = "explicit.stat_2905515354", ["text"] = "You take #% of damage from Blocked Hits", ["type"] = "explicit", }, - [2940] = { + [2941] = { ["id"] = "explicit.stat_3694078435", ["text"] = "You take #% of damage from Blocked Hits with a raised Shield", ["type"] = "explicit", }, - [2941] = { + [2942] = { ["id"] = "explicit.stat_2022332470", ["text"] = "You take Fire Damage instead of Physical Damage from Bleeding", ["type"] = "explicit", }, - [2942] = { + [2943] = { ["id"] = "explicit.stat_2516303866", ["text"] = "Your Critical Damage Bonus is 250%", ["type"] = "explicit", }, - [2943] = { + [2944] = { ["id"] = "explicit.stat_4159551976", ["text"] = "Your Critical Hit Chance cannot be Rerolled", ["type"] = "explicit", }, - [2944] = { + [2945] = { ["id"] = "explicit.stat_886088880", ["text"] = "Your Heavy Stun buildup empties #% faster", ["type"] = "explicit", }, - [2945] = { + [2946] = { ["id"] = "explicit.stat_2890792988", ["text"] = "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", ["type"] = "explicit", }, - [2946] = { + [2947] = { ["id"] = "explicit.stat_2397460217", ["text"] = "Your Life Flask also applies to your Minions", ["type"] = "explicit", }, - [2947] = { + [2948] = { ["id"] = "explicit.stat_3550168289", ["text"] = "Your Maps are inhabited by # additional Rogue Exile", ["type"] = "explicit", }, - [2948] = { + [2949] = { ["id"] = "explicit.stat_3240183538", ["text"] = "Your Maps contain # additional Strongboxes", ["type"] = "explicit", }, - [2949] = { + [2950] = { ["id"] = "explicit.stat_1070816711", ["text"] = "Your Maps contain an additional Abyss", ["type"] = "explicit", }, - [2950] = { + [2951] = { ["id"] = "explicit.stat_395808938", ["text"] = "Your Maps contain an additional Essence", ["type"] = "explicit", }, - [2951] = { + [2952] = { ["id"] = "explicit.stat_231864447", ["text"] = "Your Maps contain an additional Rare Chest", ["type"] = "explicit", }, - [2952] = { + [2953] = { ["id"] = "explicit.stat_1468737867", ["text"] = "Your Maps contain an additional Shrine", ["type"] = "explicit", }, - [2953] = { + [2954] = { ["id"] = "explicit.stat_588512487", ["text"] = "Your Maps have # additional random Modifier", ["type"] = "explicit", }, - [2954] = { + [2955] = { ["id"] = "explicit.stat_2571125745", ["text"] = "Your Maps have #% chance to contain a Shrine", ["type"] = "explicit", }, - [2955] = { + [2956] = { ["id"] = "explicit.stat_2388936716", ["text"] = "Your Maps have #% chance to contain a Strongbox", ["type"] = "explicit", }, - [2956] = { + [2957] = { ["id"] = "explicit.stat_4098286334", ["text"] = "Your Maps have #% chance to contain an Essence", ["type"] = "explicit", }, - [2957] = { + [2958] = { ["id"] = "explicit.stat_3049505189", ["text"] = "Your Maps which contain Breaches have #% chance to contain an additional Breach", ["type"] = "explicit", }, - [2958] = { + [2959] = { ["id"] = "explicit.stat_2440265466", ["text"] = "Your Maps which contain Breaches have #% chance to contain three additional Breaches", ["type"] = "explicit", }, - [2959] = { + [2960] = { ["id"] = "explicit.stat_1265767008", ["text"] = "Your Minions are Gigantic if they have Revived Recently", ["type"] = "explicit", }, - [2960] = { + [2961] = { ["id"] = "explicit.stat_3091132047", ["text"] = "Your base Energy Shield Recharge Delay is # second", ["type"] = "explicit", }, - [2961] = { + [2962] = { ["id"] = "explicit.stat_758226825", ["text"] = "Your maximum Energy Shield is equal to #% of your Strength", ["type"] = "explicit", }, - [2962] = { + [2963] = { ["id"] = "explicit.stat_3128773415", ["text"] = "Your speed is Unaffected by Slows while Sprinting", ["type"] = "explicit", }, - [2963] = { + [2964] = { ["id"] = "explicit.stat_50721145", ["text"] = "Your speed is unaffected by Slows", ["type"] = "explicit", }, - [2964] = { - ["id"] = "explicit.stat_1315418254", + [2965] = { + ["id"] = "explicit.stat_3831171903|33", ["text"] = "Zealot's Oath", ["type"] = "explicit", }, - [2965] = { - ["id"] = "explicit.stat_3831171903|33", + [2966] = { + ["id"] = "explicit.stat_1315418254", ["text"] = "Zealot's Oath", ["type"] = "explicit", }, @@ -15108,12 +15113,12 @@ return { ["type"] = "implicit", }, [18] = { - ["id"] = "implicit.stat_774059442", + ["id"] = "implicit.stat_3336230913", ["text"] = "# to maximum Runic Ward", ["type"] = "implicit", }, [19] = { - ["id"] = "implicit.stat_3336230913", + ["id"] = "implicit.stat_774059442", ["text"] = "# to maximum Runic Ward", ["type"] = "implicit", }, @@ -21335,1426 +21340,1446 @@ return { [5] = { ["entries"] = { [1] = { + ["id"] = "crafted.stat_718638445", + ["text"] = "# Suffix Modifier allowed", + ["type"] = "crafted", + }, + [2] = { ["id"] = "crafted.stat_803737631", ["text"] = "# to Accuracy Rating", ["type"] = "crafted", }, - [2] = { + [3] = { ["id"] = "crafted.stat_691932474", ["text"] = "# to Accuracy Rating (Local)", ["type"] = "crafted", }, - [3] = { + [4] = { ["id"] = "crafted.stat_3261801346", ["text"] = "# to Dexterity", ["type"] = "crafted", }, - [4] = { + [5] = { ["id"] = "crafted.stat_328541901", ["text"] = "# to Intelligence", ["type"] = "crafted", }, - [5] = { + [6] = { ["id"] = "crafted.stat_3035140377", ["text"] = "# to Level of all Attack Skills", ["type"] = "crafted", }, - [6] = { + [7] = { ["id"] = "crafted.stat_2162097452", ["text"] = "# to Level of all Minion Skills", ["type"] = "crafted", }, - [7] = { + [8] = { ["id"] = "crafted.stat_124131830", ["text"] = "# to Level of all Spell Skills", ["type"] = "crafted", }, - [8] = { + [9] = { ["id"] = "crafted.stat_1181501418", ["text"] = "# to Maximum Rage", ["type"] = "crafted", }, - [9] = { + [10] = { ["id"] = "crafted.stat_3981240776", ["text"] = "# to Spirit", ["type"] = "crafted", }, - [10] = { + [11] = { ["id"] = "crafted.stat_4080418644", ["text"] = "# to Strength", ["type"] = "crafted", }, - [11] = { + [12] = { ["id"] = "crafted.stat_2897413282", ["text"] = "# to all Attributes", ["type"] = "crafted", }, - [12] = { + [13] = { ["id"] = "crafted.stat_3299347043", ["text"] = "# to maximum Life", ["type"] = "crafted", }, - [13] = { + [14] = { ["id"] = "crafted.stat_1050105434", ["text"] = "# to maximum Mana", ["type"] = "crafted", }, - [14] = { + [15] = { ["id"] = "crafted.stat_3336230913", ["text"] = "# to maximum Runic Ward", ["type"] = "crafted", }, - [15] = { + [16] = { ["id"] = "crafted.stat_4097212302", ["text"] = "# to maximum number of Elemental Infusions", ["type"] = "crafted", }, - [16] = { + [17] = { ["id"] = "crafted.stat_1823942939", ["text"] = "# to maximum number of Summoned Ballista Totems", ["type"] = "crafted", }, - [17] = { + [18] = { ["id"] = "crafted.stat_2840930496", ["text"] = "#% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", ["type"] = "crafted", }, - [18] = { + [19] = { ["id"] = "crafted.stat_2749595652", ["text"] = "#% chance for Skills to retain 40% of Glory on use", ["type"] = "crafted", }, - [19] = { + [20] = { ["id"] = "crafted.stat_1028592286", ["text"] = "#% chance to Chain an additional time", ["type"] = "crafted", }, - [20] = { + [21] = { ["id"] = "crafted.stat_3518449420", ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", ["type"] = "crafted", }, - [21] = { + [22] = { ["id"] = "crafted.stat_1881230714", ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", ["type"] = "crafted", }, - [22] = { + [23] = { ["id"] = "crafted.stat_2158617060", ["text"] = "#% increased Archon Buff duration", ["type"] = "crafted", }, - [23] = { + [24] = { ["id"] = "crafted.stat_280731498", ["text"] = "#% increased Area of Effect", ["type"] = "crafted", }, - [24] = { + [25] = { ["id"] = "crafted.stat_1840985759", ["text"] = "#% increased Area of Effect for Attacks", ["type"] = "crafted", }, - [25] = { + [26] = { ["id"] = "crafted.stat_2866361420", ["text"] = "#% increased Armour", ["type"] = "crafted", }, - [26] = { + [27] = { ["id"] = "crafted.stat_1062208444", ["text"] = "#% increased Armour (Local)", ["type"] = "crafted", }, - [27] = { + [28] = { ["id"] = "crafted.stat_3321629045", ["text"] = "#% increased Armour and Energy Shield", ["type"] = "crafted", }, - [28] = { + [29] = { ["id"] = "crafted.stat_2451402625", ["text"] = "#% increased Armour and Evasion", ["type"] = "crafted", }, - [29] = { + [30] = { ["id"] = "crafted.stat_2843214518", ["text"] = "#% increased Attack Damage", ["type"] = "crafted", }, - [30] = { + [31] = { ["id"] = "crafted.stat_681332047", ["text"] = "#% increased Attack Speed", ["type"] = "crafted", }, - [31] = { + [32] = { ["id"] = "crafted.stat_210067635", ["text"] = "#% increased Attack Speed (Local)", ["type"] = "crafted", }, - [32] = { + [33] = { ["id"] = "crafted.stat_325171970", ["text"] = "#% increased Attack Speed while missing Runic Ward", ["type"] = "crafted", }, - [33] = { + [34] = { ["id"] = "crafted.stat_2891184298", ["text"] = "#% increased Cast Speed", ["type"] = "crafted", }, - [34] = { + [35] = { ["id"] = "crafted.stat_736967255", ["text"] = "#% increased Chaos Damage", ["type"] = "crafted", }, - [35] = { + [36] = { ["id"] = "crafted.stat_3291658075", ["text"] = "#% increased Cold Damage", ["type"] = "crafted", }, - [36] = { + [37] = { ["id"] = "crafted.stat_1002535626", ["text"] = "#% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", ["type"] = "crafted", }, - [37] = { + [38] = { ["id"] = "crafted.stat_1004011302", ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "crafted", }, - [38] = { + [39] = { ["id"] = "crafted.stat_3556824919", ["text"] = "#% increased Critical Damage Bonus", ["type"] = "crafted", }, - [39] = { + [40] = { ["id"] = "crafted.stat_3714003708", ["text"] = "#% increased Critical Damage Bonus for Attack Damage", ["type"] = "crafted", }, - [40] = { + [41] = { ["id"] = "crafted.stat_2194114101", ["text"] = "#% increased Critical Hit Chance for Attacks", ["type"] = "crafted", }, - [41] = { + [42] = { ["id"] = "crafted.stat_737908626", ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "crafted", }, - [42] = { + [43] = { ["id"] = "crafted.stat_274716455", ["text"] = "#% increased Critical Spell Damage Bonus", ["type"] = "crafted", }, - [43] = { + [44] = { ["id"] = "crafted.stat_1241625305", ["text"] = "#% increased Damage with Bow Skills", ["type"] = "crafted", }, - [44] = { + [45] = { ["id"] = "crafted.stat_4139681126", ["text"] = "#% increased Dexterity", ["type"] = "crafted", }, - [45] = { + [46] = { ["id"] = "crafted.stat_1829102168", ["text"] = "#% increased Duration of Damaging Ailments on Enemies", ["type"] = "crafted", }, - [46] = { + [47] = { ["id"] = "crafted.stat_1443502073", ["text"] = "#% increased Effect of Prefixes", ["type"] = "crafted", }, - [47] = { + [48] = { ["id"] = "crafted.stat_2475221757", ["text"] = "#% increased Effect of Suffixes", ["type"] = "crafted", }, - [48] = { + [49] = { ["id"] = "crafted.stat_712554801", ["text"] = "#% increased Effect of your Mark Skills", ["type"] = "crafted", }, - [49] = { + [50] = { ["id"] = "crafted.stat_3141070085", ["text"] = "#% increased Elemental Damage", ["type"] = "crafted", }, - [50] = { + [51] = { ["id"] = "crafted.stat_4015621042", ["text"] = "#% increased Energy Shield", ["type"] = "crafted", }, - [51] = { + [52] = { + ["id"] = "crafted.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "crafted", + }, + [53] = { ["id"] = "crafted.stat_2106365538", ["text"] = "#% increased Evasion Rating", ["type"] = "crafted", }, - [52] = { + [54] = { ["id"] = "crafted.stat_124859000", ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "crafted", }, - [53] = { + [55] = { ["id"] = "crafted.stat_1999113824", ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "crafted", }, - [54] = { + [56] = { ["id"] = "crafted.stat_1972391381", ["text"] = "#% increased Explicit Resistance Modifier magnitudes", ["type"] = "crafted", }, - [55] = { + [57] = { ["id"] = "crafted.stat_2074866941", ["text"] = "#% increased Exposure Effect", ["type"] = "crafted", }, - [56] = { + [58] = { ["id"] = "crafted.stat_3962278098", ["text"] = "#% increased Fire Damage", ["type"] = "crafted", }, - [57] = { + [59] = { ["id"] = "crafted.stat_1177404658", ["text"] = "#% increased Global Armour, Evasion and Energy Shield", ["type"] = "crafted", }, - [58] = { + [60] = { ["id"] = "crafted.stat_1310194496", ["text"] = "#% increased Global Physical Damage", ["type"] = "crafted", }, - [59] = { + [61] = { ["id"] = "crafted.stat_656461285", ["text"] = "#% increased Intelligence", ["type"] = "crafted", }, - [60] = { + [62] = { ["id"] = "crafted.stat_44972811", ["text"] = "#% increased Life Regeneration rate", ["type"] = "crafted", }, - [61] = { + [63] = { ["id"] = "crafted.stat_2231156303", ["text"] = "#% increased Lightning Damage", ["type"] = "crafted", }, - [62] = { + [64] = { ["id"] = "crafted.stat_797289402", ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", ["type"] = "crafted", }, - [63] = { + [65] = { ["id"] = "crafted.stat_1303248024", ["text"] = "#% increased Magnitude of Ailments you inflict", ["type"] = "crafted", }, - [64] = { + [66] = { ["id"] = "crafted.stat_3621874554", ["text"] = "#% increased Magnitude of Elemental Ailments you inflict with Spells", ["type"] = "crafted", }, - [65] = { + [67] = { ["id"] = "crafted.stat_4101445926", ["text"] = "#% increased Mana Cost Efficiency", ["type"] = "crafted", }, - [66] = { + [68] = { ["id"] = "crafted.stat_789117908", ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "crafted", }, - [67] = { + [69] = { ["id"] = "crafted.stat_3526763442", ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", ["type"] = "crafted", }, - [68] = { + [70] = { ["id"] = "crafted.stat_2250533757", ["text"] = "#% increased Movement Speed", ["type"] = "crafted", }, - [69] = { + [71] = { ["id"] = "crafted.stat_1509134228", ["text"] = "#% increased Physical Damage", ["type"] = "crafted", }, - [70] = { + [72] = { ["id"] = "crafted.stat_101878827", ["text"] = "#% increased Presence Area of Effect", ["type"] = "crafted", }, - [71] = { + [73] = { ["id"] = "crafted.stat_3175163625", ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "crafted", }, - [72] = { + [74] = { ["id"] = "crafted.stat_3917489142", ["text"] = "#% increased Rarity of Items found", ["type"] = "crafted", }, - [73] = { + [75] = { ["id"] = "crafted.stat_1805633363", ["text"] = "#% increased Reservation Efficiency of Minion Skills", ["type"] = "crafted", }, - [74] = { + [76] = { ["id"] = "crafted.stat_830161081", ["text"] = "#% increased Runic Ward", ["type"] = "crafted", }, - [75] = { + [77] = { ["id"] = "crafted.stat_2392260628", ["text"] = "#% increased Runic Ward Regeneration Rate", ["type"] = "crafted", }, - [76] = { + [78] = { ["id"] = "crafted.stat_3377888098", ["text"] = "#% increased Skill Effect Duration", ["type"] = "crafted", }, - [77] = { + [79] = { ["id"] = "crafted.stat_924253255", ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "crafted", }, - [78] = { + [80] = { ["id"] = "crafted.stat_2974417149", ["text"] = "#% increased Spell Damage", ["type"] = "crafted", }, - [79] = { + [81] = { ["id"] = "crafted.stat_734614379", ["text"] = "#% increased Strength", ["type"] = "crafted", }, - [80] = { + [82] = { ["id"] = "crafted.stat_1316278494", ["text"] = "#% increased Warcry Speed", ["type"] = "crafted", }, - [81] = { + [83] = { ["id"] = "crafted.stat_1180552088", ["text"] = "#% increased effect of Archon Buffs on you", ["type"] = "crafted", }, - [82] = { + [84] = { ["id"] = "crafted.stat_2081918629", ["text"] = "#% increased effect of Socketed Augment Items", ["type"] = "crafted", }, - [83] = { + [85] = { ["id"] = "crafted.stat_2482852589", ["text"] = "#% increased maximum Energy Shield", ["type"] = "crafted", }, - [84] = { + [86] = { ["id"] = "crafted.stat_983749596", ["text"] = "#% increased maximum Life", ["type"] = "crafted", }, - [85] = { + [87] = { ["id"] = "crafted.stat_2748665614", ["text"] = "#% increased maximum Mana", ["type"] = "crafted", }, - [86] = { + [88] = { ["id"] = "crafted.stat_4273473110", ["text"] = "#% increased maximum Runic Ward", ["type"] = "crafted", }, - [87] = { + [89] = { ["id"] = "crafted.stat_3679418014", ["text"] = "#% of Cold Damage taken Recouped as Life", ["type"] = "crafted", }, - [88] = { + [90] = { ["id"] = "crafted.stat_54812069", ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", ["type"] = "crafted", }, - [89] = { + [91] = { ["id"] = "crafted.stat_1444556985", ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "crafted", }, - [90] = { + [92] = { ["id"] = "crafted.stat_1742651309", ["text"] = "#% of Fire Damage taken Recouped as Life", ["type"] = "crafted", }, - [91] = { + [93] = { ["id"] = "crafted.stat_2970621759", ["text"] = "#% of Lightning Damage taken Recouped as Life", ["type"] = "crafted", }, - [92] = { + [94] = { ["id"] = "crafted.stat_4129825612", ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", ["type"] = "crafted", }, - [93] = { + [95] = { ["id"] = "crafted.stat_2480498143", ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "crafted", }, - [94] = { + [96] = { ["id"] = "crafted.stat_2923486259", ["text"] = "#% to Chaos Resistance", ["type"] = "crafted", }, - [95] = { + [97] = { ["id"] = "crafted.stat_4220027924", ["text"] = "#% to Cold Resistance", ["type"] = "crafted", }, - [96] = { + [98] = { ["id"] = "crafted.stat_518292764", ["text"] = "#% to Critical Hit Chance", ["type"] = "crafted", }, - [97] = { + [99] = { ["id"] = "crafted.stat_3372524247", ["text"] = "#% to Fire Resistance", ["type"] = "crafted", }, - [98] = { + [100] = { ["id"] = "crafted.stat_3399401168", ["text"] = "#% to Fire Spell Critical Hit Chance", ["type"] = "crafted", }, - [99] = { + [101] = { ["id"] = "crafted.stat_1671376347", ["text"] = "#% to Lightning Resistance", ["type"] = "crafted", }, - [100] = { + [102] = { ["id"] = "crafted.stat_4095671657", ["text"] = "#% to Maximum Fire Resistance", ["type"] = "crafted", }, - [101] = { + [103] = { ["id"] = "crafted.stat_2039822488", ["text"] = "#% to Maximum Quality", ["type"] = "crafted", }, - [102] = { + [104] = { ["id"] = "crafted.stat_933355817", ["text"] = "#% to gain Archon of Undeath when you create an Offering", ["type"] = "crafted", }, - [103] = { + [105] = { ["id"] = "crafted.stat_1484026495", ["text"] = "+# maximum stacks of Puppet Master", ["type"] = "crafted", }, - [104] = { + [106] = { ["id"] = "crafted.stat_2223678961", ["text"] = "Adds # to # Chaos damage", ["type"] = "crafted", }, - [105] = { + [107] = { ["id"] = "crafted.stat_1037193709", ["text"] = "Adds # to # Cold Damage", ["type"] = "crafted", }, - [106] = { + [108] = { ["id"] = "crafted.stat_709508406", ["text"] = "Adds # to # Fire Damage", ["type"] = "crafted", }, - [107] = { + [109] = { ["id"] = "crafted.stat_3336890334", ["text"] = "Adds # to # Lightning Damage", ["type"] = "crafted", }, - [108] = { + [110] = { ["id"] = "crafted.stat_1940865751", ["text"] = "Adds # to # Physical Damage", ["type"] = "crafted", }, - [109] = { + [111] = { ["id"] = "crafted.stat_1798257884", ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "crafted", }, - [110] = { + [112] = { + ["id"] = "crafted.stat_2954116742|43829", + ["text"] = "Allocates Advanced Munitions", + ["type"] = "crafted", + }, + [113] = { ["id"] = "crafted.stat_2954116742|56493", ["text"] = "Allocates Agile Succession", ["type"] = "crafted", }, - [111] = { + [114] = { ["id"] = "crafted.stat_2954116742|26339", ["text"] = "Allocates Ancestral Artifice", ["type"] = "crafted", }, - [112] = { + [115] = { + ["id"] = "crafted.stat_2954116742|5728", + ["text"] = "Allocates Ancient Aegis", + ["type"] = "crafted", + }, + [116] = { ["id"] = "crafted.stat_2954116742|16940", ["text"] = "Allocates Arcane Nature", ["type"] = "crafted", }, - [113] = { + [117] = { ["id"] = "crafted.stat_2954116742|41620", ["text"] = "Allocates Bear's Roar", ["type"] = "crafted", }, - [114] = { + [118] = { ["id"] = "crafted.stat_2954116742|42177", ["text"] = "Allocates Blurred Motion", ["type"] = "crafted", }, - [115] = { + [119] = { ["id"] = "crafted.stat_2954116742|52618", ["text"] = "Allocates Boon of the Beast", ["type"] = "crafted", }, - [116] = { + [120] = { ["id"] = "crafted.stat_2954116742|9535", ["text"] = "Allocates Brinerot Ferocity", ["type"] = "crafted", }, - [117] = { + [121] = { ["id"] = "crafted.stat_2954116742|44005", ["text"] = "Allocates Casting Cascade", ["type"] = "crafted", }, - [118] = { + [122] = { ["id"] = "crafted.stat_2954116742|35031", ["text"] = "Allocates Chakra of Life", ["type"] = "crafted", }, - [119] = { + [123] = { ["id"] = "crafted.stat_2954116742|23427", ["text"] = "Allocates Chilled to the Bone", ["type"] = "crafted", }, - [120] = { + [124] = { ["id"] = "crafted.stat_2954116742|47363", ["text"] = "Allocates Colossal Weapon", ["type"] = "crafted", }, - [121] = { + [125] = { ["id"] = "crafted.stat_2954116742|42660", ["text"] = "Allocates Commanding Rage", ["type"] = "crafted", }, - [122] = { + [126] = { ["id"] = "crafted.stat_2954116742|27761", ["text"] = "Allocates Counterstancing", ["type"] = "crafted", }, - [123] = { + [127] = { ["id"] = "crafted.stat_2954116742|50687", ["text"] = "Allocates Coursing Energy", ["type"] = "crafted", }, - [124] = { + [128] = { ["id"] = "crafted.stat_2954116742|19715", ["text"] = "Allocates Cremation", ["type"] = "crafted", }, - [125] = { + [129] = { ["id"] = "crafted.stat_2954116742|18505", ["text"] = "Allocates Crushing Verdict", ["type"] = "crafted", }, - [126] = { + [130] = { ["id"] = "crafted.stat_2954116742|20495", ["text"] = "Allocates Dark Entropy", ["type"] = "crafted", }, - [127] = { + [131] = { ["id"] = "crafted.stat_2954116742|45612", ["text"] = "Allocates Defensive Reflexes", ["type"] = "crafted", }, - [128] = { + [132] = { ["id"] = "crafted.stat_2954116742|56616", ["text"] = "Allocates Desperate Times", ["type"] = "crafted", }, - [129] = { + [133] = { ["id"] = "crafted.stat_2954116742|1420", ["text"] = "Allocates Dizzying Sweep", ["type"] = "crafted", }, - [130] = { + [134] = { ["id"] = "crafted.stat_2954116742|26214", ["text"] = "Allocates Dominion", ["type"] = "crafted", }, - [131] = { + [135] = { ["id"] = "crafted.stat_2954116742|42245", ["text"] = "Allocates Efficient Inscriptions", ["type"] = "crafted", }, - [132] = { + [136] = { ["id"] = "crafted.stat_2954116742|3894", ["text"] = "Allocates Eldritch Will", ["type"] = "crafted", }, - [133] = { + [137] = { ["id"] = "crafted.stat_2954116742|43633", ["text"] = "Allocates Energising Archon", ["type"] = "crafted", }, - [134] = { + [138] = { ["id"] = "crafted.stat_2954116742|17854", ["text"] = "Allocates Escape Velocity", ["type"] = "crafted", }, - [135] = { + [139] = { ["id"] = "crafted.stat_2954116742|60034", ["text"] = "Allocates Falcon Dive", ["type"] = "crafted", }, - [136] = { + [140] = { ["id"] = "crafted.stat_2954116742|60464", ["text"] = "Allocates Fan the Flames", ["type"] = "crafted", }, - [137] = { + [141] = { ["id"] = "crafted.stat_2954116742|3921", ["text"] = "Allocates Fate Finding", ["type"] = "crafted", }, - [138] = { + [142] = { ["id"] = "crafted.stat_2954116742|32128", ["text"] = "Allocates Flow of Time", ["type"] = "crafted", }, - [139] = { + [143] = { ["id"] = "crafted.stat_2954116742|48699", ["text"] = "Allocates Frostwalker", ["type"] = "crafted", }, - [140] = { + [144] = { ["id"] = "crafted.stat_2954116742|37543", ["text"] = "Allocates Full Recovery", ["type"] = "crafted", }, - [141] = { + [145] = { ["id"] = "crafted.stat_2954116742|58714", ["text"] = "Allocates Grenadier", ["type"] = "crafted", }, - [142] = { + [146] = { ["id"] = "crafted.stat_2954116742|13844", ["text"] = "Allocates Growing Peril", ["type"] = "crafted", }, - [143] = { + [147] = { ["id"] = "crafted.stat_2954116742|52803", ["text"] = "Allocates Hale Traveller", ["type"] = "crafted", }, - [144] = { + [148] = { ["id"] = "crafted.stat_2954116742|34531", ["text"] = "Allocates Hallowed", ["type"] = "crafted", }, - [145] = { + [149] = { ["id"] = "crafted.stat_2954116742|40480", ["text"] = "Allocates Harmonic Generator", ["type"] = "crafted", }, - [146] = { + [150] = { ["id"] = "crafted.stat_2954116742|44293", ["text"] = "Allocates Hastening Barrier", ["type"] = "crafted", }, - [147] = { + [151] = { ["id"] = "crafted.stat_2954116742|13407", ["text"] = "Allocates Heartbreaking", ["type"] = "crafted", }, - [148] = { + [152] = { ["id"] = "crafted.stat_2954116742|38537", ["text"] = "Allocates Heartstopping", ["type"] = "crafted", }, - [149] = { + [153] = { ["id"] = "crafted.stat_2954116742|11826", ["text"] = "Allocates Heavy Ammunition", ["type"] = "crafted", }, - [150] = { + [154] = { ["id"] = "crafted.stat_2954116742|30395", ["text"] = "Allocates Howling Beast", ["type"] = "crafted", }, - [151] = { + [155] = { ["id"] = "crafted.stat_2954116742|48617", ["text"] = "Allocates Hunter", ["type"] = "crafted", }, - [152] = { + [156] = { ["id"] = "crafted.stat_2954116742|46683", ["text"] = "Allocates Inherited Strength ", ["type"] = "crafted", }, - [153] = { + [157] = { ["id"] = "crafted.stat_2954116742|30562", ["text"] = "Allocates Inner Faith", ["type"] = "crafted", }, - [154] = { + [158] = { ["id"] = "crafted.stat_2954116742|4661", ["text"] = "Allocates Inspiring Leader", ["type"] = "crafted", }, - [155] = { + [159] = { ["id"] = "crafted.stat_2954116742|41394", ["text"] = "Allocates Invigorating Archon", ["type"] = "crafted", }, - [156] = { + [160] = { ["id"] = "crafted.stat_2954116742|18496", ["text"] = "Allocates Lasting Trauma", ["type"] = "crafted", }, - [157] = { + [161] = { ["id"] = "crafted.stat_2954116742|31745", ["text"] = "Allocates Lockdown", ["type"] = "crafted", }, - [158] = { + [162] = { ["id"] = "crafted.stat_2954116742|23738", ["text"] = "Allocates Madness in the Bones", ["type"] = "crafted", }, - [159] = { + [163] = { ["id"] = "crafted.stat_2954116742|37742", ["text"] = "Allocates Manifold Method", ["type"] = "crafted", }, - [160] = { + [164] = { ["id"] = "crafted.stat_2954116742|64050", ["text"] = "Allocates Marathon Runner", ["type"] = "crafted", }, - [161] = { + [165] = { ["id"] = "crafted.stat_2954116742|9226", ["text"] = "Allocates Mental Perseverance", ["type"] = "crafted", }, - [162] = { + [166] = { ["id"] = "crafted.stat_2954116742|24120", ["text"] = "Allocates Mental Toughness", ["type"] = "crafted", }, - [163] = { + [167] = { ["id"] = "crafted.stat_2954116742|51868", ["text"] = "Allocates Molten Carapace", ["type"] = "crafted", }, - [164] = { + [168] = { ["id"] = "crafted.stat_2954116742|52764", ["text"] = "Allocates Mystical Rage", ["type"] = "crafted", }, - [165] = { + [169] = { ["id"] = "crafted.stat_2954116742|11376", ["text"] = "Allocates Necrotic Touch", ["type"] = "crafted", }, - [166] = { + [170] = { ["id"] = "crafted.stat_2954116742|60992", ["text"] = "Allocates Nurturing Guardian", ["type"] = "crafted", }, - [167] = { + [171] = { ["id"] = "crafted.stat_2954116742|52199", ["text"] = "Allocates Overexposure", ["type"] = "crafted", }, - [168] = { + [172] = { ["id"] = "crafted.stat_2954116742|65204", ["text"] = "Allocates Overflowing Power", ["type"] = "crafted", }, - [169] = { + [173] = { ["id"] = "crafted.stat_2954116742|20686", ["text"] = "Allocates Paragon", ["type"] = "crafted", }, - [170] = { + [174] = { ["id"] = "crafted.stat_2954116742|17260", ["text"] = "Allocates Piercing Claw", ["type"] = "crafted", }, - [171] = { + [175] = { ["id"] = "crafted.stat_2954116742|19125", ["text"] = "Allocates Potent Incantation", ["type"] = "crafted", }, - [172] = { + [176] = { ["id"] = "crafted.stat_2954116742|6178", ["text"] = "Allocates Power Shots", ["type"] = "crafted", }, - [173] = { + [177] = { ["id"] = "crafted.stat_2954116742|49550", ["text"] = "Allocates Prolonged Fury", ["type"] = "crafted", }, - [174] = { + [178] = { ["id"] = "crafted.stat_2954116742|13482", ["text"] = "Allocates Punctured Lung", ["type"] = "crafted", }, - [175] = { + [179] = { ["id"] = "crafted.stat_2954116742|62185", ["text"] = "Allocates Rattled", ["type"] = "crafted", }, - [176] = { + [180] = { ["id"] = "crafted.stat_2954116742|35809", ["text"] = "Allocates Reinvigoration", ["type"] = "crafted", }, - [177] = { + [181] = { ["id"] = "crafted.stat_2954116742|20414", ["text"] = "Allocates Reprisal", ["type"] = "crafted", }, - [178] = { + [182] = { ["id"] = "crafted.stat_2954116742|56860", ["text"] = "Allocates Resolute Reprisal", ["type"] = "crafted", }, - [179] = { + [183] = { ["id"] = "crafted.stat_2954116742|38972", ["text"] = "Allocates Restless Dead", ["type"] = "crafted", }, - [180] = { + [184] = { ["id"] = "crafted.stat_2954116742|61112", ["text"] = "Allocates Roll and Strike", ["type"] = "crafted", }, - [181] = { + [185] = { ["id"] = "crafted.stat_2954116742|9290", ["text"] = "Allocates Rusted Pins", ["type"] = "crafted", }, - [182] = { + [186] = { ["id"] = "crafted.stat_2954116742|14294", ["text"] = "Allocates Sacrificial Blood", ["type"] = "crafted", }, - [183] = { + [187] = { ["id"] = "crafted.stat_2954116742|4810", ["text"] = "Allocates Sanguine Tolerance", ["type"] = "crafted", }, - [184] = { + [188] = { ["id"] = "crafted.stat_2954116742|36085", ["text"] = "Allocates Serrated Edges", ["type"] = "crafted", }, - [185] = { + [189] = { ["id"] = "crafted.stat_2954116742|57617", ["text"] = "Allocates Shifted Strikes", ["type"] = "crafted", }, - [186] = { + [190] = { ["id"] = "crafted.stat_2954116742|17229", ["text"] = "Allocates Silent Guardian", ["type"] = "crafted", }, - [187] = { + [191] = { ["id"] = "crafted.stat_2954116742|55308", ["text"] = "Allocates Sling Shots", ["type"] = "crafted", }, - [188] = { + [192] = { ["id"] = "crafted.stat_2954116742|14602", ["text"] = "Allocates Specialised Shots", ["type"] = "crafted", }, - [189] = { + [193] = { ["id"] = "crafted.stat_2954116742|34324", ["text"] = "Allocates Spectral Ward", ["type"] = "crafted", }, - [190] = { + [194] = { ["id"] = "crafted.stat_2954116742|26104", ["text"] = "Allocates Spirit of the Wyvern", ["type"] = "crafted", }, - [191] = { + [195] = { ["id"] = "crafted.stat_2954116742|11578", ["text"] = "Allocates Spreading Shocks", ["type"] = "crafted", }, - [192] = { + [196] = { ["id"] = "crafted.stat_2954116742|6304", ["text"] = "Allocates Stand Ground", ["type"] = "crafted", }, - [193] = { + [197] = { ["id"] = "crafted.stat_2954116742|7163", ["text"] = "Allocates Stimulants", ["type"] = "crafted", }, - [194] = { + [198] = { ["id"] = "crafted.stat_2954116742|61921", ["text"] = "Allocates Storm Surge", ["type"] = "crafted", }, - [195] = { + [199] = { ["id"] = "crafted.stat_2954116742|45177", ["text"] = "Allocates Strike True", ["type"] = "crafted", }, - [196] = { + [200] = { ["id"] = "crafted.stat_2954116742|14383", ["text"] = "Allocates Suffusion", ["type"] = "crafted", }, - [197] = { + [201] = { ["id"] = "crafted.stat_2954116742|56806", ["text"] = "Allocates Swift Blocking", ["type"] = "crafted", }, - [198] = { + [202] = { ["id"] = "crafted.stat_2954116742|8831", ["text"] = "Allocates Tempered Mind", ["type"] = "crafted", }, - [199] = { + [203] = { ["id"] = "crafted.stat_2954116742|4544", ["text"] = "Allocates The Ancient Serpent", ["type"] = "crafted", }, - [200] = { + [204] = { ["id"] = "crafted.stat_2954116742|2745", ["text"] = "Allocates The Noble Wolf", ["type"] = "crafted", }, - [201] = { + [205] = { ["id"] = "crafted.stat_2954116742|52971", ["text"] = "Allocates The Soul Meridian", ["type"] = "crafted", }, - [202] = { + [206] = { ["id"] = "crafted.stat_2954116742|11774", ["text"] = "Allocates The Spring Hare", ["type"] = "crafted", }, - [203] = { + [207] = { ["id"] = "crafted.stat_2954116742|35849", ["text"] = "Allocates Thickened Arteries", ["type"] = "crafted", }, - [204] = { + [208] = { ["id"] = "crafted.stat_2954116742|38532", ["text"] = "Allocates Thirst for Power", ["type"] = "crafted", }, - [205] = { + [209] = { ["id"] = "crafted.stat_2954116742|42714", ["text"] = "Allocates Thousand Cuts", ["type"] = "crafted", }, - [206] = { + [210] = { ["id"] = "crafted.stat_2954116742|57785", ["text"] = "Allocates Trained Turrets", ["type"] = "crafted", }, - [207] = { + [211] = { ["id"] = "crafted.stat_2954116742|61601", ["text"] = "Allocates True Strike", ["type"] = "crafted", }, - [208] = { + [212] = { ["id"] = "crafted.stat_2954116742|20008", ["text"] = "Allocates Unleash Fire", ["type"] = "crafted", }, - [209] = { + [213] = { ["id"] = "crafted.stat_2954116742|4547", ["text"] = "Allocates Unnatural Resilience", ["type"] = "crafted", }, - [210] = { + [214] = { ["id"] = "crafted.stat_2954116742|51602", ["text"] = "Allocates Unsight", ["type"] = "crafted", }, - [211] = { + [215] = { ["id"] = "crafted.stat_2954116742|1169", ["text"] = "Allocates Urgent Call", ["type"] = "crafted", }, - [212] = { + [216] = { ["id"] = "crafted.stat_2954116742|41033", ["text"] = "Allocates Utmost Offering", ["type"] = "crafted", }, - [213] = { + [217] = { ["id"] = "crafted.stat_2954116742|17762", ["text"] = "Allocates Vengeance", ["type"] = "crafted", }, - [214] = { + [218] = { ["id"] = "crafted.stat_2954116742|4238", ["text"] = "Allocates Versatile Arms", ["type"] = "crafted", }, - [215] = { + [219] = { ["id"] = "crafted.stat_2954116742|31373", ["text"] = "Allocates Vocal Empowerment", ["type"] = "crafted", }, - [216] = { + [220] = { ["id"] = "crafted.stat_2954116742|14761", ["text"] = "Allocates Warlord Leader", ["type"] = "crafted", }, - [217] = { + [221] = { ["id"] = "crafted.stat_2954116742|51213", ["text"] = "Allocates Wasting", ["type"] = "crafted", }, - [218] = { + [222] = { ["id"] = "crafted.stat_2954116742|65256", ["text"] = "Allocates Widespread Coverage", ["type"] = "crafted", }, - [219] = { + [223] = { ["id"] = "crafted.stat_2954116742|7809", ["text"] = "Allocates Wild Storm", ["type"] = "crafted", }, - [220] = { + [224] = { ["id"] = "crafted.stat_315791320", ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "crafted", }, - [221] = { + [225] = { ["id"] = "crafted.stat_335885735", ["text"] = "Bears the Mark of the Abyssal Lord", ["type"] = "crafted", }, - [222] = { + [226] = { ["id"] = "crafted.stat_3587953142", ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", ["type"] = "crafted", }, - [223] = { + [227] = { ["id"] = "crafted.stat_2101383955", ["text"] = "Damage Penetrates #% Elemental Resistances", ["type"] = "crafted", }, - [224] = { + [228] = { ["id"] = "crafted.stat_541021467", ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", ["type"] = "crafted", }, - [225] = { + [229] = { ["id"] = "crafted.stat_2709367754", ["text"] = "Gain # Rage on Melee Hit", ["type"] = "crafted", }, - [226] = { + [230] = { ["id"] = "crafted.stat_2505884597", ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "crafted", }, - [227] = { + [231] = { ["id"] = "crafted.stat_825116955", ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", ["type"] = "crafted", }, - [228] = { + [232] = { ["id"] = "crafted.stat_3015669065", ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "crafted", }, - [229] = { + [233] = { ["id"] = "crafted.stat_589361270", ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", ["type"] = "crafted", }, - [230] = { + [234] = { ["id"] = "crafted.stat_3278136794", ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "crafted", }, - [231] = { + [235] = { ["id"] = "crafted.stat_323800555", ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", ["type"] = "crafted", }, - [232] = { + [236] = { ["id"] = "crafted.stat_4019237939", ["text"] = "Gain #% of Damage as Extra Physical Damage", ["type"] = "crafted", }, - [233] = { + [237] = { ["id"] = "crafted.stat_1158842087", ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", ["type"] = "crafted", }, - [234] = { + [238] = { ["id"] = "crafted.stat_758893621", ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", ["type"] = "crafted", }, - [235] = { + [239] = { ["id"] = "crafted.stat_3855016469", ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "crafted", }, - [236] = { + [240] = { ["id"] = "crafted.stat_971590056", ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", ["type"] = "crafted", }, - [237] = { + [241] = { ["id"] = "crafted.stat_2951965588", ["text"] = "Inflict Elemental Exposure on Hit while you have a Ruby and an Emerald socketed in your tree", ["type"] = "crafted", }, - [238] = { + [242] = { ["id"] = "crafted.stat_1615901249", ["text"] = "Invocated skills have #% increased Maximum Energy", ["type"] = "crafted", }, - [239] = { + [243] = { ["id"] = "crafted.stat_3121133045", ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", ["type"] = "crafted", }, - [240] = { + [244] = { ["id"] = "crafted.stat_195270549", ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", ["type"] = "crafted", }, - [241] = { + [245] = { ["id"] = "crafted.stat_1797815732", ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", ["type"] = "crafted", }, - [242] = { + [246] = { ["id"] = "crafted.stat_1691403182", ["text"] = "Minions have #% increased Cooldown Recovery Rate", ["type"] = "crafted", }, - [243] = { + [247] = { ["id"] = "crafted.stat_953593695", ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", ["type"] = "crafted", }, - [244] = { + [248] = { ["id"] = "crafted.stat_73032170", ["text"] = "Minions have #% increased Skill Speed with Command Skills", ["type"] = "crafted", }, - [245] = { + [249] = { ["id"] = "crafted.stat_1846980580", ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "crafted", }, - [246] = { + [250] = { ["id"] = "crafted.stat_3391917254", ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", ["type"] = "crafted", }, - [247] = { + [251] = { ["id"] = "crafted.stat_2822644689", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", ["type"] = "crafted", }, - [248] = { + [252] = { ["id"] = "crafted.stat_1022759479", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", ["type"] = "crafted", }, - [249] = { + [253] = { ["id"] = "crafted.stat_2149603090", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", ["type"] = "crafted", }, - [250] = { + [254] = { ["id"] = "crafted.stat_1352561456", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "crafted", }, - [251] = { + [255] = { ["id"] = "crafted.stat_3865605585", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "crafted", }, - [252] = { + [256] = { ["id"] = "crafted.stat_2704905000", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", ["type"] = "crafted", }, - [253] = { + [257] = { ["id"] = "crafted.stat_2466785537", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", ["type"] = "crafted", }, - [254] = { + [258] = { ["id"] = "crafted.stat_1185341308", ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", ["type"] = "crafted", }, - [255] = { + [259] = { ["id"] = "crafted.stat_844449513", ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "crafted", }, - [256] = { + [260] = { ["id"] = "crafted.stat_1687542781", ["text"] = "Notable Passive Skills in Radius also grant #% to Lightning Resistance", ["type"] = "crafted", }, - [257] = { + [261] = { ["id"] = "crafted.stat_2969557004", ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", ["type"] = "crafted", }, - [258] = { + [262] = { ["id"] = "crafted.stat_2726713579", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", ["type"] = "crafted", }, - [259] = { + [263] = { ["id"] = "crafted.stat_525523040", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "crafted", }, - [260] = { + [264] = { ["id"] = "crafted.stat_3191479793", ["text"] = "Offering Skills have #% increased Buff effect", ["type"] = "crafted", }, - [261] = { + [265] = { ["id"] = "crafted.stat_4215035940", ["text"] = "On Corruption, Item gains two Enchantments", ["type"] = "crafted", }, - [262] = { + [266] = { ["id"] = "crafted.stat_554145967", ["text"] = "Recover # Runic Ward when a Charm is used", ["type"] = "crafted", }, - [263] = { + [267] = { ["id"] = "crafted.stat_1568848828", ["text"] = "Recover # Runic Ward when you Block", ["type"] = "crafted", }, - [264] = { + [268] = { ["id"] = "crafted.stat_2023107756", ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "crafted", }, - [265] = { + [269] = { ["id"] = "crafted.stat_1604736568", ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "crafted", }, - [266] = { + [270] = { ["id"] = "crafted.stat_3482326075", ["text"] = "Remnants can be collected from #% further away", ["type"] = "crafted", }, - [267] = { + [271] = { ["id"] = "crafted.stat_4147510958", ["text"] = "Sealed Skills have # to maximum Seals", ["type"] = "crafted", }, - [268] = { + [272] = { ["id"] = "crafted.stat_3858398337", ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", ["type"] = "crafted", }, - [269] = { + [273] = { ["id"] = "crafted.stat_1426522529", ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", ["type"] = "crafted", }, - [270] = { + [274] = { ["id"] = "crafted.stat_1309799717", ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "crafted", }, - [271] = { + [275] = { ["id"] = "crafted.stat_2442527254", ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "crafted", }, - [272] = { + [276] = { ["id"] = "crafted.stat_3222402650", ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", ["type"] = "crafted", }, - [273] = { + [277] = { ["id"] = "crafted.stat_1994296038", ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "crafted", }, - [274] = { + [278] = { ["id"] = "crafted.stat_139889694", ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "crafted", }, - [275] = { + [279] = { ["id"] = "crafted.stat_1417267954", ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "crafted", }, - [276] = { + [280] = { ["id"] = "crafted.stat_2768899959", ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", ["type"] = "crafted", }, - [277] = { + [281] = { ["id"] = "crafted.stat_1137305356", ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", ["type"] = "crafted", }, - [278] = { + [282] = { ["id"] = "crafted.stat_3665922113", ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", ["type"] = "crafted", }, - [279] = { + [283] = { ["id"] = "crafted.stat_1967040409", ["text"] = "Spell Skills have #% increased Area of Effect", ["type"] = "crafted", }, - [280] = { + [284] = { ["id"] = "crafted.stat_555706343", ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", ["type"] = "crafted", }, - [281] = { + [285] = { ["id"] = "crafted.stat_3249412463", ["text"] = "Supported Minions' Strikes have Melee Splash", ["type"] = "crafted", }, - [282] = { + [286] = { ["id"] = "crafted.stat_3984146263", ["text"] = "Tempest Bells are destroyed after an additional # Hits", ["type"] = "crafted", }, - [283] = { + [287] = { ["id"] = "crafted.stat_1058934731", ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", ["type"] = "crafted", }, - [284] = { + [288] = { ["id"] = "crafted.stat_3891355829|3", ["text"] = "Upgrades Radius to Very Large", ["type"] = "crafted", }, - [285] = { + [289] = { ["id"] = "crafted.stat_1265767008", ["text"] = "Your Minions are Gigantic if they have Revived Recently", ["type"] = "crafted", @@ -28922,961 +28947,966 @@ return { ["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", }, - [241] = { + [242] = { ["id"] = "rune.stat_1631975646", ["text"] = "Bonded: #% increased Projectile Speed", ["type"] = "augment", }, - [242] = { + [243] = { ["id"] = "rune.stat_3898665772", ["text"] = "Bonded: #% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "augment", }, - [243] = { + [244] = { ["id"] = "rune.stat_2729035954", ["text"] = "Bonded: #% increased Reservation Efficiency of Companion Skills", ["type"] = "augment", }, - [244] = { + [245] = { ["id"] = "rune.stat_1299166504", ["text"] = "Bonded: #% increased Reservation Efficiency of Herald Skills", ["type"] = "augment", }, - [245] = { + [246] = { ["id"] = "rune.stat_1342402057", ["text"] = "Bonded: #% increased Reservation Efficiency of Minion Skills", ["type"] = "augment", }, - [246] = { + [247] = { ["id"] = "rune.stat_1751756891", ["text"] = "Bonded: #% increased Runic Ward Cost Efficiency", ["type"] = "augment", }, - [247] = { + [248] = { ["id"] = "rune.stat_1396011622", ["text"] = "Bonded: #% increased Runic Ward Regeneration Rate if you've dealt a Critical Hit Recently", ["type"] = "augment", }, - [248] = { + [249] = { ["id"] = "rune.stat_2530800730", ["text"] = "Bonded: #% increased Skill Effect Duration with Plant Skills", ["type"] = "augment", }, - [249] = { + [250] = { ["id"] = "rune.stat_144568384", ["text"] = "Bonded: #% increased Skill Speed while Shapeshifted", ["type"] = "augment", }, - [250] = { + [251] = { ["id"] = "rune.stat_165746512", ["text"] = "Bonded: #% increased Slowing Potency of Debuffs on You", ["type"] = "augment", }, - [251] = { + [252] = { ["id"] = "rune.stat_2012253422", ["text"] = "Bonded: #% increased Spirit", ["type"] = "augment", }, - [252] = { + [253] = { ["id"] = "rune.stat_3435915371", ["text"] = "Bonded: #% increased Spirit Reservation Efficiency", ["type"] = "augment", }, - [253] = { + [254] = { ["id"] = "rune.stat_3038857346", ["text"] = "Bonded: #% increased Stun Buildup", ["type"] = "augment", }, - [254] = { + [255] = { ["id"] = "rune.stat_1756854510", ["text"] = "Bonded: #% increased Stun Recovery", ["type"] = "augment", }, - [255] = { + [256] = { ["id"] = "rune.stat_466741396", ["text"] = "Bonded: #% increased Stun Threshold", ["type"] = "augment", }, - [256] = { + [257] = { ["id"] = "rune.stat_597420223", ["text"] = "Bonded: #% increased Stun buildup while Shapeshifted", ["type"] = "augment", }, - [257] = { + [258] = { ["id"] = "rune.stat_3266426611", ["text"] = "Bonded: #% increased Thorns damage", ["type"] = "augment", }, - [258] = { + [259] = { ["id"] = "rune.stat_542243093", ["text"] = "Bonded: #% increased Warcry Cooldown Recovery Rate", ["type"] = "augment", }, - [259] = { + [260] = { ["id"] = "rune.stat_1984345909", ["text"] = "Bonded: #% increased Withered Magnitude", ["type"] = "augment", }, - [260] = { + [261] = { ["id"] = "rune.stat_3331247603", ["text"] = "Bonded: #% increased amount of Life Leeched", ["type"] = "augment", }, - [261] = { + [262] = { ["id"] = "rune.stat_1236190486", ["text"] = "Bonded: #% increased effect of Archon Buffs on you", ["type"] = "augment", }, - [262] = { + [263] = { ["id"] = "rune.stat_1039491398", ["text"] = "Bonded: #% increased effect of Fully Broken Armour", ["type"] = "augment", }, - [263] = { + [264] = { ["id"] = "rune.stat_3745435177", ["text"] = "Bonded: #% increased maximum Energy Shield if you've consumed a Power Charge Recently", ["type"] = "augment", }, - [264] = { + [265] = { ["id"] = "rune.stat_2246411426", ["text"] = "Bonded: #% increased maximum Life", ["type"] = "augment", }, - [265] = { + [266] = { ["id"] = "rune.stat_1586906534", ["text"] = "Bonded: #% increased maximum Mana", ["type"] = "augment", }, - [266] = { + [267] = { ["id"] = "rune.stat_3634438849", ["text"] = "Bonded: #% increased maximum Runic Ward", ["type"] = "augment", }, - [267] = { + [268] = { ["id"] = "rune.stat_826685275", ["text"] = "Bonded: #% of Armour also applies to Elemental Damage while Shapeshifted", ["type"] = "augment", }, - [268] = { + [269] = { ["id"] = "rune.stat_264750496", ["text"] = "Bonded: #% of Damage taken Recouped as Life", ["type"] = "augment", }, - [269] = { + [270] = { ["id"] = "rune.stat_2100249038", ["text"] = "Bonded: #% of Maximum Life Converted to Energy Shield", ["type"] = "augment", }, - [270] = { + [271] = { ["id"] = "rune.stat_2561960218", ["text"] = "Bonded: #% of Skill Mana Costs Converted to Life Costs", ["type"] = "augment", }, - [271] = { + [272] = { ["id"] = "rune.stat_1441491952", ["text"] = "Bonded: #% reduced Shock duration on you", ["type"] = "augment", }, - [272] = { + [273] = { ["id"] = "rune.stat_3351086592", ["text"] = "Bonded: #% to Chaos Resistance", ["type"] = "augment", }, - [273] = { + [274] = { ["id"] = "rune.stat_3448627618", ["text"] = "Bonded: #% to Cold Resistance", ["type"] = "augment", }, - [274] = { + [275] = { ["id"] = "rune.stat_3294435116", ["text"] = "Bonded: #% to Lightning Resistance", ["type"] = "augment", }, - [275] = { + [276] = { ["id"] = "rune.stat_4042480703", ["text"] = "Bonded: #% to Maximum Cold Resistance", ["type"] = "augment", }, - [276] = { + [277] = { ["id"] = "rune.stat_408302348", ["text"] = "Bonded: #% to Maximum Fire Resistance", ["type"] = "augment", }, - [277] = { + [278] = { ["id"] = "rune.stat_3788647247", ["text"] = "Bonded: #% to Maximum Lightning Resistance", ["type"] = "augment", }, - [278] = { + [279] = { ["id"] = "rune.stat_1134865274", ["text"] = "Bonded: #% to Quality of all Skills", ["type"] = "augment", }, - [279] = { + [280] = { ["id"] = "rune.stat_953010920", ["text"] = "Bonded: #% to all Elemental Resistances", ["type"] = "augment", }, - [280] = { + [281] = { ["id"] = "rune.stat_1404850498", ["text"] = "Bonded: #% to all Maximum Elemental Resistances while on full Runic Ward", ["type"] = "augment", }, - [281] = { + [282] = { ["id"] = "rune.stat_859452080", ["text"] = "Bonded: #% to maximum Block chance", ["type"] = "augment", }, - [282] = { + [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", }, - [283] = { + [284] = { ["id"] = "rune.stat_3308150554", ["text"] = "Bonded: Adds # to # Fire damage to Attacks", ["type"] = "augment", }, - [284] = { + [285] = { ["id"] = "rune.stat_3738367433", ["text"] = "Bonded: Adds # to # Physical Damage to Attacks", ["type"] = "augment", }, - [285] = { + [286] = { ["id"] = "rune.stat_858934954", ["text"] = "Bonded: Allies in your Presence Gain #% of Damage as Extra Chaos Damage", ["type"] = "augment", }, - [286] = { + [287] = { ["id"] = "rune.stat_1799351208", ["text"] = "Bonded: Allies in your Presence Regenerate #% of your Maximum Life per second", ["type"] = "augment", }, - [287] = { + [288] = { ["id"] = "rune.stat_975988108", ["text"] = "Bonded: Archon recovery period expires #% faster", ["type"] = "augment", }, - [288] = { + [289] = { ["id"] = "rune.stat_859085781", ["text"] = "Bonded: Attacks have #% to Critical Hit Chance", ["type"] = "augment", }, - [289] = { + [290] = { ["id"] = "rune.stat_4012965551", ["text"] = "Bonded: Banner Skills have #% increased Aura Magnitudes", ["type"] = "augment", }, - [290] = { + [291] = { ["id"] = "rune.stat_1083521623", ["text"] = "Bonded: Break #% increased Armour", ["type"] = "augment", }, - [291] = { + [292] = { ["id"] = "rune.stat_3990135792", ["text"] = "Bonded: Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", ["type"] = "augment", }, - [292] = { + [293] = { ["id"] = "rune.stat_2804691275", ["text"] = "Bonded: Buffs on you expire #% faster", ["type"] = "augment", }, - [293] = { + [294] = { ["id"] = "rune.stat_1568578715", ["text"] = "Bonded: Charms gain # charge per Second", ["type"] = "augment", }, - [294] = { + [295] = { ["id"] = "rune.stat_1816212773", ["text"] = "Bonded: Companions have #% increased Area of Effect", ["type"] = "augment", }, - [295] = { + [296] = { ["id"] = "rune.stat_750452124", ["text"] = "Bonded: Companions have #% increased maximum Life", ["type"] = "augment", }, - [296] = { + [297] = { ["id"] = "rune.stat_2342427527", ["text"] = "Bonded: Companions in your Presence have #% to Chaos Resistance", ["type"] = "augment", }, - [297] = { + [298] = { ["id"] = "rune.stat_2691854696", ["text"] = "Bonded: Damage of Enemies Hitting you is Unlucky ifyour Runic Ward has been damaged Recently", ["type"] = "augment", }, - [298] = { + [299] = { ["id"] = "rune.stat_807013157", ["text"] = "Bonded: Every Rage also grants #% increased Spell Damage", ["type"] = "augment", }, - [299] = { + [300] = { ["id"] = "rune.stat_1482283017", ["text"] = "Bonded: Fissure Skills have +# to Limit", ["type"] = "augment", }, - [300] = { + [301] = { ["id"] = "rune.stat_3816212813", ["text"] = "Bonded: Gain # Rage on Melee Hit", ["type"] = "augment", }, - [301] = { + [302] = { ["id"] = "rune.stat_635535560", ["text"] = "Bonded: Gain #% of Damage as Extra Physical Damage", ["type"] = "augment", }, - [302] = { + [303] = { ["id"] = "rune.stat_1570901920", ["text"] = "Bonded: Gain #% of Physical Damage as extra Chaos Damage", ["type"] = "augment", }, - [303] = { + [304] = { ["id"] = "rune.stat_2269618934", ["text"] = "Bonded: Gain #% of maximum Life as Extra maximum Runic Ward", ["type"] = "augment", }, - [304] = { + [305] = { ["id"] = "rune.stat_1419386315", ["text"] = "Bonded: Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "augment", }, - [305] = { + [306] = { ["id"] = "rune.stat_2001460689", ["text"] = "Bonded: Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "augment", }, - [306] = { + [307] = { ["id"] = "rune.stat_1256853273", ["text"] = "Bonded: Hits against you have #% reduced Critical Damage Bonus", ["type"] = "augment", }, - [307] = { + [308] = { ["id"] = "rune.stat_4058552370", ["text"] = "Bonded: Invocated Spells have #% chance to consume half as much Energy", ["type"] = "augment", }, - [308] = { + [309] = { ["id"] = "rune.stat_1773391344", ["text"] = "Bonded: Invocated skills have #% increased Maximum Energy", ["type"] = "augment", }, - [309] = { + [310] = { ["id"] = "rune.stat_4254029169", ["text"] = "Bonded: Meta Skills have #% increased Reservation Efficiency", ["type"] = "augment", }, - [310] = { + [311] = { ["id"] = "rune.stat_839375491", ["text"] = "Bonded: Minions Revive #% faster", ["type"] = "augment", }, - [311] = { + [312] = { ["id"] = "rune.stat_1728593484", ["text"] = "Bonded: Minions deal #% increased Damage", ["type"] = "augment", }, - [312] = { + [313] = { ["id"] = "rune.stat_129783399", ["text"] = "Bonded: Minions have #% additional Physical Damage Reduction", ["type"] = "augment", }, - [313] = { + [314] = { ["id"] = "rune.stat_3449499156", ["text"] = "Bonded: Minions have #% increased Area of Effect", ["type"] = "augment", }, - [314] = { + [315] = { ["id"] = "rune.stat_1611856026", ["text"] = "Bonded: Minions have #% increased Cooldown Recovery Rate for Command Skills", ["type"] = "augment", }, - [315] = { + [316] = { ["id"] = "rune.stat_834058335", ["text"] = "Bonded: Minions have #% increased Movement Speed", ["type"] = "augment", }, - [316] = { + [317] = { ["id"] = "rune.stat_901007505", ["text"] = "Bonded: Minions have #% to all Elemental Resistances", ["type"] = "augment", }, - [317] = { + [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", }, - [318] = { + [319] = { ["id"] = "rune.stat_1597408611", ["text"] = "Bonded: Prevent #% of Damage from Deflected Hits", ["type"] = "augment", }, - [319] = { + [320] = { ["id"] = "rune.stat_1528013281", ["text"] = "Bonded: Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "augment", }, - [320] = { + [321] = { ["id"] = "rune.stat_2905013875", ["text"] = "Bonded: Recover #% of Maximum Mana when you collect a Remnant", ["type"] = "augment", }, - [321] = { + [322] = { ["id"] = "rune.stat_1823959929", ["text"] = "Bonded: Recover #% of maximum Life when one of your Minions is Revived", ["type"] = "augment", }, - [322] = { + [323] = { ["id"] = "rune.stat_2420303482", ["text"] = "Bonded: Regenerate # Runic Ward per second", ["type"] = "augment", }, - [323] = { + [324] = { ["id"] = "rune.stat_3134782172", ["text"] = "Bonded: Regenerate #% of maximum Energy Shield per second", ["type"] = "augment", }, - [324] = { + [325] = { ["id"] = "rune.stat_1981392722", ["text"] = "Bonded: Regenerate #% of maximum Life per second", ["type"] = "augment", }, - [325] = { + [326] = { ["id"] = "rune.stat_3373098634", ["text"] = "Bonded: Remnants can be collected from #% further away", ["type"] = "augment", }, - [326] = { + [327] = { ["id"] = "rune.stat_3227486464", ["text"] = "Bonded: Remnants you create have #% increased effect", ["type"] = "augment", }, - [327] = { + [328] = { ["id"] = "rune.stat_3286003349", ["text"] = "Bonded: Storm Skills have +# to Limit", ["type"] = "augment", }, - [328] = { + [329] = { ["id"] = "rune.stat_864484981", ["text"] = "Bonded: Temporary Minion Skills have # to Limit of Minions summoned", ["type"] = "augment", }, - [329] = { + [330] = { ["id"] = "rune.stat_2248594298", ["text"] = "Bonded: When Volatility on you explodes, you regain an equivalent amount of Volatility", ["type"] = "augment", }, - [330] = { + [331] = { ["id"] = "rune.stat_3885405204", ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "augment", }, - [331] = { + [332] = { ["id"] = "rune.stat_1963398329", ["text"] = "Can have # additional Crafted Modifier", ["type"] = "augment", }, - [332] = { + [333] = { ["id"] = "rune.stat_1770091046", ["text"] = "Can roll Berserking modifiers", ["type"] = "augment", }, - [333] = { + [334] = { ["id"] = "rune.stat_3132681620", ["text"] = "Can roll Chronomancy modifiers", ["type"] = "augment", }, - [334] = { + [335] = { ["id"] = "rune.stat_2547063279", ["text"] = "Can roll Decay modifiers", ["type"] = "augment", }, - [335] = { + [336] = { ["id"] = "rune.stat_1676950499", ["text"] = "Can roll Destruction modifiers", ["type"] = "augment", }, - [336] = { + [337] = { ["id"] = "rune.stat_201332984", ["text"] = "Can roll Marksman modifiers", ["type"] = "augment", }, - [337] = { + [338] = { ["id"] = "rune.stat_1927467683", ["text"] = "Can roll Soul modifiers", ["type"] = "augment", }, - [338] = { + [339] = { ["id"] = "rune.stat_791928121", ["text"] = "Causes #% increased Stun Buildup", ["type"] = "augment", }, - [339] = { + [340] = { ["id"] = "rune.stat_234296660", ["text"] = "Companions deal #% increased Damage", ["type"] = "augment", }, - [340] = { + [341] = { ["id"] = "rune.stat_2882351629", ["text"] = "Companions deal #% more Damage for each different type of dead Companion you have", ["type"] = "augment", }, - [341] = { + [342] = { ["id"] = "rune.stat_666077204", ["text"] = "Companions have #% increased Attack Speed", ["type"] = "augment", }, - [342] = { + [343] = { ["id"] = "rune.stat_1805182458", ["text"] = "Companions have #% increased maximum Life", ["type"] = "augment", }, - [343] = { + [344] = { ["id"] = "rune.stat_4200448078", ["text"] = "Companions in your Presence Gain #% of Damage as Extra Damage of a random Element", ["type"] = "augment", }, - [344] = { + [345] = { ["id"] = "rune.stat_2652394701", ["text"] = "Companions in your Presence gain # Rage on hit", ["type"] = "augment", }, - [345] = { + [346] = { ["id"] = "rune.stat_1539508682", ["text"] = "Companions in your Presence have #% to all Elemental Resistances", ["type"] = "augment", }, - [346] = { + [347] = { ["id"] = "rune.stat_1496740334", ["text"] = "Convert #% of Requirements to Dexterity", ["type"] = "augment", }, - [347] = { + [348] = { ["id"] = "rune.stat_2913012734", ["text"] = "Convert #% of Requirements to Intelligence", ["type"] = "augment", }, - [348] = { + [349] = { ["id"] = "rune.stat_1556124492", ["text"] = "Convert #% of Requirements to Strength", ["type"] = "augment", }, - [349] = { + [350] = { ["id"] = "rune.stat_935518591", ["text"] = "Critical Hit chance is Lucky against Parried enemies", ["type"] = "augment", }, - [350] = { + [351] = { ["id"] = "rune.stat_1238227257", ["text"] = "Debuffs on you expire #% faster", ["type"] = "augment", }, - [351] = { + [352] = { ["id"] = "rune.stat_1933674044", ["text"] = "Destroys all Augment Sockets on the item to create a Jewel Socket", ["type"] = "augment", }, - [352] = { + [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", }, - [353] = { + [354] = { ["id"] = "rune.stat_25786091", ["text"] = "Enemies have no Critical Damage Bonus for # seconds after you Blind them", ["type"] = "augment", }, - [354] = { + [355] = { ["id"] = "rune.stat_3370077792", ["text"] = "Enemies you Critically Hit get #% increased Life Regeneration Rate for 4 seconds", ["type"] = "augment", }, - [355] = { + [356] = { ["id"] = "rune.stat_1772929282", ["text"] = "Enemies you Curse have #% to Chaos Resistance", ["type"] = "augment", }, - [356] = { + [357] = { ["id"] = "rune.stat_1984310483", ["text"] = "Enemies you Curse take #% increased Damage", ["type"] = "augment", }, - [357] = { + [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", }, - [358] = { + [359] = { ["id"] = "rune.stat_1963589548", ["text"] = "Every 4 seconds, gain Guard equal to #% of maximum Runic Ward for 2 seconds", ["type"] = "augment", }, - [359] = { + [360] = { ["id"] = "rune.stat_731781020", ["text"] = "Flasks gain # charges per Second", ["type"] = "augment", }, - [360] = { + [361] = { ["id"] = "rune.stat_3444646646", ["text"] = "Gain # Druidic Prowess when you Heavy Stun a Rare or Unique Enemy", ["type"] = "augment", }, - [361] = { + [362] = { ["id"] = "rune.stat_2797971005", ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "augment", }, - [362] = { + [363] = { ["id"] = "rune.stat_3695891184", ["text"] = "Gain # Life per enemy killed", ["type"] = "augment", }, - [363] = { + [364] = { ["id"] = "rune.stat_820939409", ["text"] = "Gain # Mana per Enemy Hit with Attacks", ["type"] = "augment", }, - [364] = { + [365] = { ["id"] = "rune.stat_1368271171", ["text"] = "Gain # Mana per enemy killed", ["type"] = "augment", }, - [365] = { + [366] = { ["id"] = "rune.stat_2709367754", ["text"] = "Gain # Rage on Melee Hit", ["type"] = "augment", }, - [366] = { + [367] = { ["id"] = "rune.stat_3398787959", ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "augment", }, - [367] = { + [368] = { ["id"] = "rune.stat_2505884597", ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "augment", }, - [368] = { + [369] = { ["id"] = "rune.stat_3617669804", ["text"] = "Gain #% of Damage as Extra Damage of a random Element", ["type"] = "augment", }, - [369] = { + [370] = { ["id"] = "rune.stat_3557924960", ["text"] = "Gain #% of Damage as Extra Damage of a random Element perRune Socketed in Equipped Items", ["type"] = "augment", }, - [370] = { + [371] = { ["id"] = "rune.stat_731403740", ["text"] = "Gain #% of Damage as Extra Damage of all Elements", ["type"] = "augment", }, - [371] = { + [372] = { ["id"] = "rune.stat_3015669065", ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "augment", }, - [372] = { + [373] = { ["id"] = "rune.stat_3278136794", ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "augment", }, - [373] = { + [374] = { ["id"] = "rune.stat_1693515857", ["text"] = "Gain #% of Damage as Extra Physical Damage per ten percent missing Mana", ["type"] = "augment", }, - [374] = { + [375] = { ["id"] = "rune.stat_386720106", ["text"] = "Gain #% of maximum Life as Extra maximum Runic Ward", ["type"] = "augment", }, - [375] = { + [376] = { ["id"] = "rune.stat_901336307", ["text"] = "Gain 1 Endurance Charge on reaching Low Life, only once every 2 seconds", ["type"] = "augment", }, - [376] = { + [377] = { ["id"] = "rune.stat_3903510399", ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", ["type"] = "augment", }, - [377] = { + [378] = { ["id"] = "rune.stat_3033371881", ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", ["type"] = "augment", }, - [378] = { + [379] = { ["id"] = "rune.stat_3863682550", ["text"] = "Gain Guard equal to #% of maximum Life for 4 seconds on taking Savage Hit", ["type"] = "augment", }, - [379] = { + [380] = { ["id"] = "rune.stat_1811977226", ["text"] = "Gain Onslaught for # seconds when your Marks Activate", ["type"] = "augment", }, - [380] = { + [381] = { ["id"] = "rune.stat_3398301358", ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "augment", }, - [381] = { + [382] = { ["id"] = "rune.stat_416040624", ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "augment", }, - [382] = { + [383] = { ["id"] = "rune.stat_1995345015", ["text"] = "Gain maximum Runic Ward equal to #% of this Weapon's maximum damage", ["type"] = "augment", }, - [383] = { + [384] = { ["id"] = "rune.stat_538981065", ["text"] = "Grenades have #% chance to activate a second time", ["type"] = "augment", }, - [384] = { + [385] = { ["id"] = "rune.stat_3855016469", ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "augment", }, - [385] = { + [386] = { ["id"] = "rune.stat_726496846", ["text"] = "Idols socketed in this item gain the benefits of their Bonded modifiers", ["type"] = "augment", }, - [386] = { + [387] = { ["id"] = "rune.stat_3570773271", ["text"] = "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", ["type"] = "augment", }, - [387] = { + [388] = { ["id"] = "rune.stat_4282982513", ["text"] = "Increases and Reductions to Movement Speed also apply to Energy Shield Recharge Rate", ["type"] = "augment", }, - [388] = { + [389] = { ["id"] = "rune.stat_55876295", ["text"] = "Leeches #% of Physical Damage as Life", ["type"] = "augment", }, - [389] = { + [390] = { ["id"] = "rune.stat_669069897", ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "augment", }, - [390] = { + [391] = { ["id"] = "rune.stat_3473409233", ["text"] = "Lose #% of maximum Life per second while Sprinting", ["type"] = "augment", }, - [391] = { + [392] = { ["id"] = "rune.stat_3145796865", ["text"] = "Mana Recovery from Regeneration is also applied to Runic Ward", ["type"] = "augment", }, - [392] = { + [393] = { ["id"] = "rune.stat_4236566306", ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "augment", }, - [393] = { + [394] = { ["id"] = "rune.stat_3742865955", ["text"] = "Minions deal #% increased Damage with Command Skills", ["type"] = "augment", }, - [394] = { + [395] = { ["id"] = "rune.stat_1433756169", ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", ["type"] = "augment", }, - [395] = { + [396] = { ["id"] = "rune.stat_3091578504", ["text"] = "Minions have #% increased Attack and Cast Speed", ["type"] = "augment", }, - [396] = { + [397] = { ["id"] = "rune.stat_770672621", ["text"] = "Minions have #% increased maximum Life", ["type"] = "augment", }, - [397] = { + [398] = { ["id"] = "rune.stat_3837707023", ["text"] = "Minions have #% to Chaos Resistance", ["type"] = "augment", }, - [398] = { + [399] = { ["id"] = "rune.stat_540694930", ["text"] = "Minions in your Presence have Onslaught while you are on Low Runic Ward", ["type"] = "augment", }, - [399] = { + [400] = { ["id"] = "rune.stat_889552744", ["text"] = "Minions take #% of Physical Damage as Lightning Damage", ["type"] = "augment", }, - [400] = { + [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", }, - [401] = { + [402] = { ["id"] = "rune.stat_1480688478", ["text"] = "One of your Persistent Minions revives when an Offering expires", ["type"] = "augment", }, - [402] = { + [403] = { ["id"] = "rune.stat_2681952497", ["text"] = "Plants have a #% chance to immediately Overgrow when they enter your Presence for the first time", ["type"] = "augment", }, - [403] = { + [404] = { ["id"] = "rune.stat_3552135623", ["text"] = "Prevent #% of Damage from Deflected Hits", ["type"] = "augment", }, - [404] = { + [405] = { ["id"] = "rune.stat_1549287843", ["text"] = "Projectiles have #% chance to Fork", ["type"] = "augment", }, - [405] = { + [406] = { ["id"] = "rune.stat_1678831767", ["text"] = "Recover # Life when you Block", ["type"] = "augment", }, - [406] = { + [407] = { ["id"] = "rune.stat_2023107756", ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "augment", }, - [407] = { + [408] = { ["id"] = "rune.stat_1030153674", ["text"] = "Recover #% of maximum Mana on Kill", ["type"] = "augment", }, - [408] = { + [409] = { ["id"] = "rune.stat_3515226849", ["text"] = "Recover #% of maximum Runic Ward when one of your Reviving Minions is Killed", ["type"] = "augment", }, - [409] = { + [410] = { ["id"] = "rune.stat_836936635", ["text"] = "Regenerate #% of maximum Life per second", ["type"] = "augment", }, - [410] = { + [411] = { ["id"] = "rune.stat_3482326075", ["text"] = "Remnants can be collected from #% further away", ["type"] = "augment", }, - [411] = { + [412] = { ["id"] = "rune.stat_1999910726", ["text"] = "Remnants you create have #% increased effect", ["type"] = "augment", }, - [412] = { + [413] = { ["id"] = "rune.stat_594547430", ["text"] = "Remove a Damaging Ailment when you use a Command Skill", ["type"] = "augment", }, - [413] = { + [414] = { ["id"] = "rune.stat_103706408", ["text"] = "Rolls only the minimum or maximum Damage value for Physical Damage", ["type"] = "augment", }, - [414] = { + [415] = { ["id"] = "rune.stat_2579974553", ["text"] = "Runic Ward Regeneration Rate is doubled", ["type"] = "augment", }, - [415] = { + [416] = { ["id"] = "rune.stat_1585886916", ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", ["type"] = "augment", }, - [416] = { + [417] = { ["id"] = "rune.stat_2942439603", ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", ["type"] = "augment", }, - [417] = { + [418] = { ["id"] = "rune.stat_267552601", ["text"] = "Spell damage Penetrates #% of enemy Elemental Resistances while on Low Runic Ward", ["type"] = "augment", }, - [418] = { + [419] = { ["id"] = "rune.stat_1755296234", ["text"] = "Targets can be affected by # of your Poisons at the same time", ["type"] = "augment", }, - [419] = { + [420] = { ["id"] = "rune.stat_2889034188", ["text"] = "Targets that are Blinded, Maimed, and Bleeding cannot Evade your Hits", ["type"] = "augment", }, - [420] = { + [421] = { ["id"] = "rune.stat_602344904", ["text"] = "Transforms all Cold and Lightning modifiers on the item into equivalent Fire modifiers", ["type"] = "augment", }, - [421] = { + [422] = { ["id"] = "rune.stat_1433896639", ["text"] = "Transforms all Fire and Cold modifiers on the item into equivalent Lightning modifiers", ["type"] = "augment", }, - [422] = { + [423] = { ["id"] = "rune.stat_1624833382", ["text"] = "Transforms all Fire, Cold and Lightning modifiers on the item into equivalent Chaos modifiers", ["type"] = "augment", }, - [423] = { + [424] = { ["id"] = "rune.stat_2390027291", ["text"] = "When socketed, transforms all Fire and Lightning modifiers to equivalent Cold modifiers", ["type"] = "augment", }, - [424] = { + [425] = { ["id"] = "rune.stat_3353733343", ["text"] = "When you generate a Frenzy Charge, Allies in your Presence generate that Charge instead", ["type"] = "augment", }, - [425] = { + [426] = { ["id"] = "rune.stat_1323701627", ["text"] = "When you generate a Power Charge, Allies in your Presence generate that Charge instead", ["type"] = "augment", }, - [426] = { + [427] = { ["id"] = "rune.stat_3257561708", ["text"] = "When you generate an Endurance Charge, Allies in your Presence generate that Charge instead", ["type"] = "augment", }, - [427] = { + [428] = { ["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", }, - [428] = { + [429] = { ["id"] = "rune.stat_1937310173", ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", ["type"] = "augment", }, - [429] = { + [430] = { ["id"] = "rune.stat_4058681894", ["text"] = "You have no Critical Damage Bonus", ["type"] = "augment", }, - [430] = { + [431] = { ["id"] = "rune.stat_1919509054", ["text"] = "Your Energy Shield Recharge starts when your Minions are Reformed", ["type"] = "augment", }, - [431] = { + [432] = { ["id"] = "rune.stat_3128773415", ["text"] = "Your speed is Unaffected by Slows while Sprinting", ["type"] = "augment", @@ -30018,12 +30048,12 @@ return { ["type"] = "desecrated", }, [27] = { - ["id"] = "desecrated.stat_3981240776", + ["id"] = "desecrated.stat_2704225257", ["text"] = "# to Spirit", ["type"] = "desecrated", }, [28] = { - ["id"] = "desecrated.stat_2704225257", + ["id"] = "desecrated.stat_3981240776", ["text"] = "# to Spirit", ["type"] = "desecrated", }, @@ -34370,12 +34400,12 @@ return { ["type"] = "skill", }, [11] = { - ["id"] = "skill.blink", + ["id"] = "skill.blink_reservation", ["text"] = "Grants Skill: Level # Blink", ["type"] = "skill", }, [12] = { - ["id"] = "skill.blink_reservation", + ["id"] = "skill.blink", ["text"] = "Grants Skill: Level # Blink", ["type"] = "skill", }, @@ -34480,12 +34510,12 @@ return { ["type"] = "skill", }, [33] = { - ["id"] = "skill.corpse_cloud_triggered", + ["id"] = "skill.corpse_cloud", ["text"] = "Grants Skill: Level # Decompose", ["type"] = "skill", }, [34] = { - ["id"] = "skill.corpse_cloud", + ["id"] = "skill.corpse_cloud_triggered", ["text"] = "Grants Skill: Level # Decompose", ["type"] = "skill", }, From c03529df1542c238c23ad150bb83b5915a6bc6a9 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 1 Jun 2026 19:28:57 +0300 Subject: [PATCH 11/11] Regenerate all data fter having properly exported game data --- src/Data/ModCharm.lua | 102 +- src/Data/ModCorrupted.lua | 254 +- src/Data/ModFlask.lua | 156 +- src/Data/ModIncursionLimb.lua | 24 +- src/Data/ModItem.lua | 4269 +++++++------ src/Data/ModItemExclusive.lua | 10323 +++++++++++++++++--------------- src/Data/ModJewel.lua | 738 +-- src/Data/ModVeiled.lua | 733 +-- src/Data/QueryMods.lua | 1857 +++++- src/Data/TradeSiteStats.lua | 6608 ++++++++++---------- 10 files changed, 14068 insertions(+), 10996 deletions(-) diff --git a/src/Data/ModCharm.lua b/src/Data/ModCharm.lua index 9d03df615..c2022eb82 100644 --- a/src/Data/ModCharm.lua +++ b/src/Data/ModCharm.lua @@ -2,55 +2,55 @@ -- Item data (c) Grinding Gear Games return { - ["FlaskChargesAddedIncreasePercent1"] = { type = "Suffix", affix = "of the Constant", "(23-30)% increased Charges gained", statOrder = { 1005 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(23-30)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent2_"] = { type = "Suffix", affix = "of the Continuous", "(31-38)% increased Charges gained", statOrder = { 1005 }, level = 13, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-38)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent3_"] = { type = "Suffix", affix = "of the Endless", "(39-46)% increased Charges gained", statOrder = { 1005 }, level = 33, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(39-46)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent4_"] = { type = "Suffix", affix = "of the Bottomless", "(47-54)% increased Charges gained", statOrder = { 1005 }, level = 48, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(47-54)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent5__"] = { type = "Suffix", affix = "of the Perpetual", "(55-62)% increased Charges gained", statOrder = { 1005 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-62)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent6"] = { type = "Suffix", affix = "of the Eternal", "(63-70)% increased Charges gained", statOrder = { 1005 }, level = 82, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(63-70)% increased Charges gained" }, } }, - ["FlaskExtraCharges1"] = { type = "Suffix", affix = "of the Wide", "(23-30)% increased Charges", statOrder = { 1008 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(23-30)% increased Charges" }, } }, - ["FlaskExtraCharges2__"] = { type = "Suffix", affix = "of the Copious", "(31-38)% increased Charges", statOrder = { 1008 }, level = 12, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(31-38)% increased Charges" }, } }, - ["FlaskExtraCharges3_"] = { type = "Suffix", affix = "of the Plentiful", "(39-46)% increased Charges", statOrder = { 1008 }, level = 32, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(39-46)% increased Charges" }, } }, - ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1008 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, - ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1008 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, - ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1008 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, - ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, - ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1006 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, - ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1006 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, - ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1006 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, - ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1006 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, - ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1006 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, - ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 610 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.15 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 610 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.2 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 610 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.25 Charges per Second" }, } }, - ["CharmIncreasedDuration1"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 903 }, level = 1, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2541588185] = { "(16-20)% increased Duration" }, } }, - ["CharmIncreasedDuration2"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 903 }, level = 20, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2541588185] = { "(21-25)% increased Duration" }, } }, - ["CharmIncreasedDuration3"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 903 }, level = 42, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2541588185] = { "(26-30)% increased Duration" }, } }, - ["CharmIncreasedDuration4"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 903 }, level = 61, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2541588185] = { "(31-35)% increased Duration" }, } }, - ["CharmIncreasedDuration5"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 903 }, level = 78, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2541588185] = { "(36-40)% increased Duration" }, } }, - ["CharmGainLifeOnUse1"] = { type = "Prefix", affix = "Herbal", "Recover (8-12) Life when Used", statOrder = { 901 }, level = 1, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (8-12) Life when Used" }, } }, - ["CharmGainLifeOnUse2"] = { type = "Prefix", affix = "Floral", "Recover (35-52) Life when Used", statOrder = { 901 }, level = 14, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (35-52) Life when Used" }, } }, - ["CharmGainLifeOnUse3"] = { type = "Prefix", affix = "Blooming", "Recover (63-92) Life when Used", statOrder = { 901 }, level = 26, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (63-92) Life when Used" }, } }, - ["CharmGainLifeOnUse4"] = { type = "Prefix", affix = "Sprouting", "Recover (96-130) Life when Used", statOrder = { 901 }, level = 36, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (96-130) Life when Used" }, } }, - ["CharmGainLifeOnUse5"] = { type = "Prefix", affix = "Petaled", "Recover (134-180) Life when Used", statOrder = { 901 }, level = 47, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (134-180) Life when Used" }, } }, - ["CharmGainLifeOnUse6"] = { type = "Prefix", affix = "Botanic", "Recover (185-230) Life when Used", statOrder = { 901 }, level = 58, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (185-230) Life when Used" }, } }, - ["CharmGainLifeOnUse7"] = { type = "Prefix", affix = "Natural", "Recover (235-280) Life when Used", statOrder = { 901 }, level = 67, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (235-280) Life when Used" }, } }, - ["CharmGainLifeOnUse8"] = { type = "Prefix", affix = "Evergreen", "Recover (285-350) Life when Used", statOrder = { 901 }, level = 76, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (285-350) Life when Used" }, } }, - ["CharmGainManaOnUse1"] = { type = "Prefix", affix = "Drizzling", "Recover (16-24) Mana when Used", statOrder = { 902 }, level = 1, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (16-24) Mana when Used" }, } }, - ["CharmGainManaOnUse2"] = { type = "Prefix", affix = "Soaked", "Recover (33-50) Mana when Used", statOrder = { 902 }, level = 14, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (33-50) Mana when Used" }, } }, - ["CharmGainManaOnUse3"] = { type = "Prefix", affix = "Mistbound", "Recover (55-75) Mana when Used", statOrder = { 902 }, level = 26, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (55-75) Mana when Used" }, } }, - ["CharmGainManaOnUse4"] = { type = "Prefix", affix = "Tidebound", "Recover (80-110) Mana when Used", statOrder = { 902 }, level = 36, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (80-110) Mana when Used" }, } }, - ["CharmGainManaOnUse5"] = { type = "Prefix", affix = "Aqueous", "Recover (115-145) Mana when Used", statOrder = { 902 }, level = 47, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (115-145) Mana when Used" }, } }, - ["CharmGainManaOnUse6"] = { type = "Prefix", affix = "Flooded", "Recover (150-180) Mana when Used", statOrder = { 902 }, level = 58, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (150-180) Mana when Used" }, } }, - ["CharmGainManaOnUse7"] = { type = "Prefix", affix = "Oceanic", "Recover (185-225) Mana when Used", statOrder = { 902 }, level = 67, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (185-225) Mana when Used" }, } }, - ["CharmGainManaOnUse8"] = { type = "Prefix", affix = "Raindancer's", "Recover (230-300) Mana when Used", statOrder = { 902 }, level = 76, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (230-300) Mana when Used" }, } }, - ["CharmGuardWhileActive1"] = { type = "Prefix", affix = "Sunny", "Also grants (44-66) Guard", statOrder = { 900 }, level = 10, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (44-66) Guard" }, } }, - ["CharmGuardWhileActive2"] = { type = "Prefix", affix = "Dawnlit", "Also grants (85-128) Guard", statOrder = { 900 }, level = 21, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (85-128) Guard" }, } }, - ["CharmGuardWhileActive3"] = { type = "Prefix", affix = "Bright", "Also grants (148-200) Guard", statOrder = { 900 }, level = 36, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (148-200) Guard" }, } }, - ["CharmGuardWhileActive4"] = { type = "Prefix", affix = "Vibrant", "Also grants (205-260) Guard", statOrder = { 900 }, level = 48, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (205-260) Guard" }, } }, - ["CharmGuardWhileActive5"] = { type = "Prefix", affix = "Lustrous", "Also grants (265-350) Guard", statOrder = { 900 }, level = 60, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (265-350) Guard" }, } }, - ["CharmGuardWhileActive6"] = { type = "Prefix", affix = "Sunburst", "Also grants (355-500) Guard", statOrder = { 900 }, level = 75, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2676834156] = { "Also grants (355-500) Guard" }, } }, + ["FlaskChargesAddedIncreasePercent1"] = { type = "Suffix", affix = "of the Constant", "(23-30)% increased Charges gained", statOrder = { 1071 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(23-30)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent2_"] = { type = "Suffix", affix = "of the Continuous", "(31-38)% increased Charges gained", statOrder = { 1071 }, level = 13, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-38)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent3_"] = { type = "Suffix", affix = "of the Endless", "(39-46)% increased Charges gained", statOrder = { 1071 }, level = 33, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(39-46)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent4_"] = { type = "Suffix", affix = "of the Bottomless", "(47-54)% increased Charges gained", statOrder = { 1071 }, level = 48, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(47-54)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent5__"] = { type = "Suffix", affix = "of the Perpetual", "(55-62)% increased Charges gained", statOrder = { 1071 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-62)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent6"] = { type = "Suffix", affix = "of the Eternal", "(63-70)% increased Charges gained", statOrder = { 1071 }, level = 82, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(63-70)% increased Charges gained" }, } }, + ["FlaskExtraCharges1"] = { type = "Suffix", affix = "of the Wide", "(23-30)% increased Charges", statOrder = { 1074 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(23-30)% increased Charges" }, } }, + ["FlaskExtraCharges2__"] = { type = "Suffix", affix = "of the Copious", "(31-38)% increased Charges", statOrder = { 1074 }, level = 12, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(31-38)% increased Charges" }, } }, + ["FlaskExtraCharges3_"] = { type = "Suffix", affix = "of the Plentiful", "(39-46)% increased Charges", statOrder = { 1074 }, level = 32, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(39-46)% increased Charges" }, } }, + ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1074 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, + ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1074 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, + ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1074 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, + ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1072 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, + ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1072 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, + ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1072 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, + ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1072 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, + ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1072 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, + ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1072 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, + ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 617 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.15 Charges per Second" }, } }, + ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 617 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.2 Charges per Second" }, } }, + ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 617 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.25 Charges per Second" }, } }, + ["CharmIncreasedDuration1"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 927 }, level = 1, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(16-20)% increased Duration" }, } }, + ["CharmIncreasedDuration2"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 927 }, level = 20, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(21-25)% increased Duration" }, } }, + ["CharmIncreasedDuration3"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 927 }, level = 42, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(26-30)% increased Duration" }, } }, + ["CharmIncreasedDuration4"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 927 }, level = 61, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(31-35)% increased Duration" }, } }, + ["CharmIncreasedDuration5"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 927 }, level = 78, group = "CharmIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2541588185] = { "(36-40)% increased Duration" }, } }, + ["CharmGainLifeOnUse1"] = { type = "Prefix", affix = "Herbal", "Recover (8-12) Life when Used", statOrder = { 925 }, level = 1, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (8-12) Life when Used" }, } }, + ["CharmGainLifeOnUse2"] = { type = "Prefix", affix = "Floral", "Recover (35-52) Life when Used", statOrder = { 925 }, level = 14, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (35-52) Life when Used" }, } }, + ["CharmGainLifeOnUse3"] = { type = "Prefix", affix = "Blooming", "Recover (63-92) Life when Used", statOrder = { 925 }, level = 26, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (63-92) Life when Used" }, } }, + ["CharmGainLifeOnUse4"] = { type = "Prefix", affix = "Sprouting", "Recover (96-130) Life when Used", statOrder = { 925 }, level = 36, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (96-130) Life when Used" }, } }, + ["CharmGainLifeOnUse5"] = { type = "Prefix", affix = "Petaled", "Recover (134-180) Life when Used", statOrder = { 925 }, level = 47, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (134-180) Life when Used" }, } }, + ["CharmGainLifeOnUse6"] = { type = "Prefix", affix = "Botanic", "Recover (185-230) Life when Used", statOrder = { 925 }, level = 58, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (185-230) Life when Used" }, } }, + ["CharmGainLifeOnUse7"] = { type = "Prefix", affix = "Natural", "Recover (235-280) Life when Used", statOrder = { 925 }, level = 67, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (235-280) Life when Used" }, } }, + ["CharmGainLifeOnUse8"] = { type = "Prefix", affix = "Evergreen", "Recover (285-350) Life when Used", statOrder = { 925 }, level = 76, group = "CharmGainLifeOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "life" }, tradeHashes = { [2365392475] = { "Recover (285-350) Life when Used" }, } }, + ["CharmGainManaOnUse1"] = { type = "Prefix", affix = "Drizzling", "Recover (16-24) Mana when Used", statOrder = { 926 }, level = 1, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (16-24) Mana when Used" }, } }, + ["CharmGainManaOnUse2"] = { type = "Prefix", affix = "Soaked", "Recover (33-50) Mana when Used", statOrder = { 926 }, level = 14, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (33-50) Mana when Used" }, } }, + ["CharmGainManaOnUse3"] = { type = "Prefix", affix = "Mistbound", "Recover (55-75) Mana when Used", statOrder = { 926 }, level = 26, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (55-75) Mana when Used" }, } }, + ["CharmGainManaOnUse4"] = { type = "Prefix", affix = "Tidebound", "Recover (80-110) Mana when Used", statOrder = { 926 }, level = 36, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (80-110) Mana when Used" }, } }, + ["CharmGainManaOnUse5"] = { type = "Prefix", affix = "Aqueous", "Recover (115-145) Mana when Used", statOrder = { 926 }, level = 47, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (115-145) Mana when Used" }, } }, + ["CharmGainManaOnUse6"] = { type = "Prefix", affix = "Flooded", "Recover (150-180) Mana when Used", statOrder = { 926 }, level = 58, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (150-180) Mana when Used" }, } }, + ["CharmGainManaOnUse7"] = { type = "Prefix", affix = "Oceanic", "Recover (185-225) Mana when Used", statOrder = { 926 }, level = 67, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (185-225) Mana when Used" }, } }, + ["CharmGainManaOnUse8"] = { type = "Prefix", affix = "Raindancer's", "Recover (230-300) Mana when Used", statOrder = { 926 }, level = 76, group = "CharmGainManaOnUse", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "mana" }, tradeHashes = { [1120862500] = { "Recover (230-300) Mana when Used" }, } }, + ["CharmGuardWhileActive1"] = { type = "Prefix", affix = "Sunny", "Also grants (44-66) Guard", statOrder = { 924 }, level = 10, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (44-66) Guard" }, } }, + ["CharmGuardWhileActive2"] = { type = "Prefix", affix = "Dawnlit", "Also grants (85-128) Guard", statOrder = { 924 }, level = 21, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (85-128) Guard" }, } }, + ["CharmGuardWhileActive3"] = { type = "Prefix", affix = "Bright", "Also grants (148-200) Guard", statOrder = { 924 }, level = 36, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (148-200) Guard" }, } }, + ["CharmGuardWhileActive4"] = { type = "Prefix", affix = "Vibrant", "Also grants (205-260) Guard", statOrder = { 924 }, level = 48, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (205-260) Guard" }, } }, + ["CharmGuardWhileActive5"] = { type = "Prefix", affix = "Lustrous", "Also grants (265-350) Guard", statOrder = { 924 }, level = 60, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (265-350) Guard" }, } }, + ["CharmGuardWhileActive6"] = { type = "Prefix", affix = "Sunburst", "Also grants (355-500) Guard", statOrder = { 924 }, level = 75, group = "CharmGuardWhileActive", weightKey = { "utility_flask", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [2676834156] = { "Also grants (355-500) Guard" }, } }, } \ No newline at end of file diff --git a/src/Data/ModCorrupted.lua b/src/Data/ModCorrupted.lua index 315b8b25d..6c1f856ce 100644 --- a/src/Data/ModCorrupted.lua +++ b/src/Data/ModCorrupted.lua @@ -2,131 +2,131 @@ -- Item data (c) Grinding Gear Games return { - ["CorruptionLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(15-25)% increased Armour" }, } }, - ["CorruptionLocalIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(15-25)% increased Evasion Rating" }, } }, - ["CorruptionLocalIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(15-25)% increased Energy Shield" }, } }, - ["CorruptionLocalIncreasedArmourAndEvasion1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(15-25)% increased Armour and Evasion" }, } }, - ["CorruptionLocalIncreasedArmourAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(15-25)% increased Armour and Energy Shield" }, } }, - ["CorruptionLocalIncreasedEvasionAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(15-25)% increased Evasion and Energy Shield" }, } }, - ["CorruptionReducedLocalAttributeRequirements1"] = { type = "Corrupted", affix = "", "(10-20)% reduced Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { "armour", "weapon", "wand", "staff", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "(10-20)% reduced Attribute Requirements" }, } }, - ["CorruptionAdditionalPhysicalDamageReduction1"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction", statOrder = { 951 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, - ["CorruptionDamageTakenGainedAsLife1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["CorruptionDamageTakenGainedAsMana1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["CorruptionLifeLeech1"] = { type = "Corrupted", affix = "", "Leech 3% of Physical Attack Damage as Life", statOrder = { 971 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 3% of Physical Attack Damage as Life" }, } }, - ["CorruptionManaLeech1"] = { type = "Corrupted", affix = "", "Leech 2% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech 2% of Physical Attack Damage as Mana" }, } }, - ["CorruptionMaximumElementalResistance1"] = { type = "Corrupted", affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["CorruptionIncreasedLife1"] = { type = "Corrupted", affix = "", "+(30-40) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, - ["CorruptionIncreasedMana1"] = { type = "Corrupted", affix = "", "+(20-25) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { "focus", "quiver", "ring", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } }, - ["CorruptionIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(15-25)% increased Armour" }, } }, - ["CorruptionIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(15-25)% increased Evasion Rating" }, } }, - ["CorruptionIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(15-25)% increased maximum Energy Shield" }, } }, - ["CorruptionThornsDamageIncrease1"] = { type = "Corrupted", affix = "", "(40-50)% increased Thorns damage", statOrder = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(40-50)% increased Thorns damage" }, } }, - ["CorruptionChaosResistance1"] = { type = "Corrupted", affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, - ["CorruptionFireResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, - ["CorruptionColdResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, - ["CorruptionLightningResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-25)% to Lightning Resistance" }, } }, - ["CorruptionMaximumFireResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(1-3)% to Maximum Fire Resistance" }, } }, - ["CorruptionMaximumColdResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(1-3)% to Maximum Cold Resistance" }, } }, - ["CorruptionMaximumLightningResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(1-3)% to Maximum Lightning Resistance" }, } }, - ["CorruptionIncreasedSpirit1"] = { type = "Corrupted", affix = "", "+(20-30) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(20-30) to Spirit" }, } }, - ["CorruptionFirePenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Fire Resistance", statOrder = { 2613 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (10-15)% Fire Resistance" }, } }, - ["CorruptionColdPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Cold Resistance", statOrder = { 2614 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (10-15)% Cold Resistance" }, } }, - ["CorruptionLightningPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-15)% Lightning Resistance" }, } }, - ["CorruptionArmourBreak1"] = { type = "Corrupted", affix = "", "Break (10-15)% increased Armour", statOrder = { 4283 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (10-15)% increased Armour" }, } }, - ["CorruptionGoldFoundIncrease1"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["CorruptionMaximumEnduranceCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1486 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, - ["CorruptionMaximumFrenzyCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, - ["CorruptionMaximumPowerCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, - ["CorruptionIncreasedAccuracy1"] = { type = "Corrupted", affix = "", "+(50-100) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { "helmet", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(50-100) to Accuracy Rating" }, } }, - ["CorruptionMovementVelocity1"] = { type = "Corrupted", affix = "", "(3-5)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-5)% increased Movement Speed" }, } }, - ["CorruptionIncreasedStunThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, - ["CorruptionIncreasedFreezeThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Threshold", statOrder = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [3780644166] = { "(20-30)% increased Freeze Threshold" }, } }, - ["CorruptionSlowPotency1"] = { type = "Corrupted", affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, - ["CorruptionLifeRegenerationPercent1"] = { type = "Corrupted", affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of maximum Life per second" }, } }, - ["CorruptionLifeRegenerationRate1"] = { type = "Corrupted", affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } }, - ["CorruptionManaRegeneration1"] = { type = "Corrupted", affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, - ["CorruptionLocalBlockChance1"] = { type = "Corrupted", affix = "", "(10-15)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, - ["CorruptionMaximumBlockChance1"] = { type = "Corrupted", affix = "", "+3% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [480796730] = { "+3% to maximum Block chance" }, } }, - ["CorruptionGainLifeOnBlock1"] = { type = "Corrupted", affix = "", "(20-25) Life gained when you Block", statOrder = { 1445 }, level = 1, group = "GainLifeOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(20-25) Life gained when you Block" }, } }, - ["CorruptionGainManaOnBlock1"] = { type = "Corrupted", affix = "", "(10-15) Mana gained when you Block", statOrder = { 1446 }, level = 1, group = "GainManaOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(10-15) Mana gained when you Block" }, } }, - ["CorruptionAllResistances1"] = { type = "Corrupted", affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, - ["CorruptionGlobalFireSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["CorruptionGlobalColdSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["CorruptionGlobalLightningSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["CorruptionGlobalChaosSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["CorruptionGlobalPhysicalSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["CorruptionGlobalMinionSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Minion Skills", statOrder = { 931 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, - ["CorruptionGlobalMeleeSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Melee Skills", statOrder = { 928 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, - ["CorruptionGlobalTrapSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 1, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, - ["CorruptionItemFoundRarityIncrease1"] = { type = "Corrupted", affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, - ["CorruptionAllDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(20-30)% increased Damage" }, } }, - ["CorruptionIncreasedSkillSpeed1"] = { type = "Corrupted", affix = "", "(4-6)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(4-6)% increased Skill Speed" }, } }, - ["CorruptionCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "(15-20)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-20)% increased Critical Damage Bonus" }, } }, - ["CorruptionGlobalSkillGemLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Skills", statOrder = { 4166 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, - ["CorruptionStrength1"] = { type = "Corrupted", affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, - ["CorruptionDexterity1"] = { type = "Corrupted", affix = "", "+(10-15) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, - ["CorruptionIntelligence1"] = { type = "Corrupted", affix = "", "+(10-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, - ["CorruptionIncreasedSlowEffect1"] = { type = "Corrupted", affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4552 }, level = 1, group = "SlowEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, - ["CorruptionWeaponSwapSpeed1"] = { type = "Corrupted", affix = "", "(20-30)% increased Weapon Swap Speed", statOrder = { 9897 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(20-30)% increased Weapon Swap Speed" }, } }, - ["CorruptionLifeFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Life Flasks gain (0.08-0.17) charges per Second", statOrder = { 6451 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.08-0.17) charges per Second" }, } }, - ["CorruptionManaFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Mana Flasks gain (0.08-0.17) charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.08-0.17) charges per Second" }, } }, - ["CorruptionCharmChargeGeneration1"] = { type = "Corrupted", affix = "", "Charms gain (0.08-0.17) charges per Second", statOrder = { 6448 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [185580205] = { "Charms gain (0.08-0.17) charges per Second" }, } }, - ["CorruptionLocalIncreasedPhysicalDamagePercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(15-25)% increased Physical Damage" }, } }, - ["CorruptionSpellDamageOnWeapon1"] = { type = "Corrupted", affix = "", "(20-30)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, - ["CorruptionSpellDamageOnTwoHandWeapon1"] = { type = "Corrupted", affix = "", "(40-60)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, - ["CorruptionLocalIncreasedSpiritPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(15-25)% increased Spirit" }, } }, - ["CorruptionLocalAddedFireDamage1"] = { type = "Corrupted", affix = "", "Adds (9-14) to (15-22) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (9-14) to (15-22) Fire Damage" }, } }, - ["CorruptionLocalAddedFireDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (13-20) to (21-31) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-20) to (21-31) Fire Damage" }, } }, - ["CorruptionLocalAddedColdDamage1"] = { type = "Corrupted", affix = "", "Adds (8-12) to (13-19) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-12) to (13-19) Cold Damage" }, } }, - ["CorruptionLocalAddedColdDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (11-17) to (18-26) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-17) to (18-26) Cold Damage" }, } }, - ["CorruptionLocalAddedLightningDamage1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (29-43) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (29-43) Lightning Damage" }, } }, - ["CorruptionLocalAddedLightningDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (1-3) to (41-61) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (41-61) Lightning Damage" }, } }, - ["CorruptionLocalAddedChaosDamage1"] = { type = "Corrupted", affix = "", "Adds (7-11) to (12-18) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (7-11) to (12-18) Chaos damage" }, } }, - ["CorruptionLocalAddedChaosDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (10-16) to (17-25) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (10-16) to (17-25) Chaos damage" }, } }, - ["CorruptionLocalIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "(6-8)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-8)% increased Attack Speed" }, } }, - ["CorruptionLocalCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(5-10)% to Critical Damage Bonus" }, } }, - ["CorruptionLocalStunDamageIncrease1"] = { type = "Corrupted", affix = "", "Causes (20-30)% 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 = { }, tradeHashes = { [791928121] = { "Causes (20-30)% increased Stun Buildup" }, } }, - ["CorruptionLocalWeaponRangeIncrease1"] = { type = "Corrupted", affix = "", "(10-20)% 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 = { "attack" }, tradeHashes = { [548198834] = { "(10-20)% increased Melee Strike Range with this weapon" }, } }, - ["CorruptionLocalChanceToBleed1"] = { type = "Corrupted", affix = "", "(10-15)% 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", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(10-15)% chance to cause Bleeding on Hit" }, } }, - ["CorruptionLocalChanceToPoison1"] = { type = "Corrupted", affix = "", "(10-15)% 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", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(10-15)% chance to Poison on Hit with this weapon" }, } }, - ["CorruptionLocalRageOnHit1"] = { type = "Corrupted", affix = "", "Grants 1 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 = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, - ["CorruptionLocalChanceToMaim1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Maim on Hit", statOrder = { 7320 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(10-15)% chance to Maim on Hit" }, } }, - ["CorruptionLocalChanceToBlind1"] = { type = "Corrupted", affix = "", "(5-10)% chance to Blind Enemies on hit", statOrder = { 1937 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [2301191210] = { "(5-10)% chance to Blind Enemies on hit" }, } }, - ["CorruptionWeaponElementalDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attacks" }, } }, - ["CorruptionWeaponElementalDamageTwoHand1"] = { type = "Corrupted", affix = "", "(40-50)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(40-50)% increased Elemental Damage with Attacks" }, } }, - ["CorruptionAdditionalArrows1"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 945 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["CorruptionAdditionalAmmo1"] = { type = "Corrupted", affix = "", "Loads an additional bolt", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["CorruptionIgniteChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(20-30)% increased Flammability Magnitude" }, } }, - ["CorruptionFreezeDamageIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(20-30)% increased Freeze Buildup" }, } }, - ["CorruptionShockChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(20-30)% increased chance to Shock" }, } }, - ["CorruptionSpellCriticalStrikeChance1"] = { type = "Corrupted", affix = "", "(20-30)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(20-30)% increased Critical Hit Chance for Spells" }, } }, - ["CorruptionLifeGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (20-25) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-25) Life per enemy killed" }, } }, - ["CorruptionManaGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-15) Mana per enemy killed" }, } }, - ["CorruptionIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "(10-15)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, - ["CorruptionEnergyShieldDelay1"] = { type = "Corrupted", affix = "", "(20-30)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(20-30)% faster start of Energy Shield Recharge" }, } }, - ["CorruptionAlliesInPresenceAllDamage1"] = { type = "Corrupted", affix = "", "Allies in your Presence deal (20-30)% increased Damage", statOrder = { 881 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (20-30)% increased Damage" }, } }, - ["CorruptionAlliesInPresenceIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Attack Speed", statOrder = { 893 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (5-10)% increased Attack Speed" }, } }, - ["CorruptionAlliesInPresenceIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (5-10)% increased Cast Speed" }, } }, - ["CorruptionAlliesInPresenceCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (10-15)% increased Critical Damage Bonus", statOrder = { 892 }, 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 = { 1001 }, 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 = { 8970 }, 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 = { 947 }, 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 = { 948 }, 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 = { 949 }, 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 = { 958 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(5-10)% to Fire Resistance" }, } }, - ["CorruptionJewelColdResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(5-10)% to Cold Resistance" }, } }, - ["CorruptionJewelLightningResist1"] = { type = "Corrupted", affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(5-10)% to Lightning Resistance" }, } }, - ["CorruptionJewelChaosResist1"] = { type = "Corrupted", affix = "", "+(3-7)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(3-7)% to Chaos Resistance" }, } }, - ["CorruptionJewelMaimImmunity1"] = { type = "Corrupted", affix = "", "Immune to Maim", statOrder = { 6850 }, level = 1, group = "ImmuneToMaim", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [3429557654] = { "Immune to Maim" }, } }, - ["CorruptionJewelHinderImmunity1"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 9946 }, 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 = { 4906 }, 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 = { 2608 }, level = 1, group = "ImmunityToBlind", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1436284579] = { "Cannot be Blinded" }, } }, - ["SpecialCorruptionWarcrySpeed1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Warcry Speed", statOrder = { 2884 }, 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 = { 2266 }, 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 = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [280731498] = { "(15-25)% increased Area of Effect" }, } }, - ["SpecialCorruptionPresenceRadius1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, - ["SpecialCorruptionCooldownRecovery1"] = { type = "SpecialCorrupted", affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, - ["SpecialCorruptionSkillEffectDuration1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(15-25)% increased Skill Effect Duration" }, } }, - ["SpecialCorruptionEnergyGeneration1"] = { type = "SpecialCorrupted", affix = "", "Meta Skills gain (20-30)% increased Energy", statOrder = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (20-30)% increased Energy" }, } }, - ["SpecialCorruptionDamageGainedAsChaos1"] = { type = "SpecialCorrupted", affix = "", "Gain (5-8)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (5-8)% of Damage as Extra Chaos Damage" }, } }, + ["CorruptionLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 845 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(15-25)% increased Armour" }, } }, + ["CorruptionLocalIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 847 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(15-25)% increased Evasion Rating" }, } }, + ["CorruptionLocalIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Energy Shield", statOrder = { 848 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(15-25)% increased Energy Shield" }, } }, + ["CorruptionLocalIncreasedArmourAndEvasion1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Evasion", statOrder = { 849 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(15-25)% increased Armour and Evasion" }, } }, + ["CorruptionLocalIncreasedArmourAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour and Energy Shield", statOrder = { 850 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(15-25)% increased Armour and Energy Shield" }, } }, + ["CorruptionLocalIncreasedEvasionAndEnergyShield1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(15-25)% increased Evasion and Energy Shield" }, } }, + ["CorruptionReducedLocalAttributeRequirements1"] = { type = "Corrupted", affix = "", "(10-20)% reduced Attribute Requirements", statOrder = { 947 }, level = 1, group = "LocalAttributeRequirements", weightKey = { "armour", "weapon", "wand", "staff", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "(10-20)% reduced Attribute Requirements" }, } }, + ["CorruptionAdditionalPhysicalDamageReduction1"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction", statOrder = { 1005 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "(3-5)% additional Physical Damage Reduction" }, } }, + ["CorruptionDamageTakenGainedAsLife1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, + ["CorruptionDamageTakenGainedAsMana1"] = { type = "Corrupted", affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, + ["CorruptionLifeLeech1"] = { type = "Corrupted", affix = "", "Leech 3% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech 3% of Physical Attack Damage as Life" }, } }, + ["CorruptionManaLeech1"] = { type = "Corrupted", affix = "", "Leech 2% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech 2% of Physical Attack Damage as Mana" }, } }, + ["CorruptionMaximumElementalResistance1"] = { type = "Corrupted", affix = "", "+1% 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", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, + ["CorruptionIncreasedLife1"] = { type = "Corrupted", affix = "", "+(30-40) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-40) to maximum Life" }, } }, + ["CorruptionIncreasedMana1"] = { type = "Corrupted", affix = "", "+(20-25) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { "focus", "quiver", "ring", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-25) to maximum Mana" }, } }, + ["CorruptionIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Armour", statOrder = { 881 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(15-25)% increased Armour" }, } }, + ["CorruptionIncreasedEvasionRatingPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Evasion Rating", statOrder = { 883 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-25)% increased Evasion Rating" }, } }, + ["CorruptionIncreasedEnergyShieldPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased maximum Energy Shield", statOrder = { 885 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-25)% increased maximum Energy Shield" }, } }, + ["CorruptionThornsDamageIncrease1"] = { type = "Corrupted", affix = "", "(40-50)% increased Thorns damage", statOrder = { 10213 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(40-50)% increased Thorns damage" }, } }, + ["CorruptionChaosResistance1"] = { type = "Corrupted", affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1023 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(13-19)% to Chaos Resistance" }, } }, + ["CorruptionFireResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(20-25)% to Fire Resistance" }, } }, + ["CorruptionColdResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(20-25)% to Cold Resistance" }, } }, + ["CorruptionLightningResistance1"] = { type = "Corrupted", affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(20-25)% to Lightning Resistance" }, } }, + ["CorruptionMaximumFireResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Fire Resistance", statOrder = { 1008 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+(1-3)% to Maximum Fire Resistance" }, } }, + ["CorruptionMaximumColdResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+(1-3)% to Maximum Cold Resistance" }, } }, + ["CorruptionMaximumLightningResistance1"] = { type = "Corrupted", affix = "", "+(1-3)% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+(1-3)% to Maximum Lightning Resistance" }, } }, + ["CorruptionIncreasedSpirit1"] = { type = "Corrupted", affix = "", "+(20-30) to Spirit", statOrder = { 895 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(20-30) to Spirit" }, } }, + ["CorruptionFirePenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Fire Resistance", statOrder = { 2722 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (10-15)% Fire Resistance" }, } }, + ["CorruptionColdPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Cold Resistance", statOrder = { 2723 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (10-15)% Cold Resistance" }, } }, + ["CorruptionLightningPenetration1"] = { type = "Corrupted", affix = "", "Damage Penetrates (10-15)% Lightning Resistance", statOrder = { 2724 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (10-15)% Lightning Resistance" }, } }, + ["CorruptionArmourBreak1"] = { type = "Corrupted", affix = "", "Break (10-15)% increased Armour", statOrder = { 4397 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (10-15)% increased Armour" }, } }, + ["CorruptionGoldFoundIncrease1"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(5-10)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["CorruptionMaximumEnduranceCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1557 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1515657623] = { "+1 to Maximum Endurance Charges" }, } }, + ["CorruptionMaximumFrenzyCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1562 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [4078695] = { "+1 to Maximum Frenzy Charges" }, } }, + ["CorruptionMaximumPowerCharges1"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1567 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge" }, tradeHashes = { [227523295] = { "+1 to Maximum Power Charges" }, } }, + ["CorruptionIncreasedAccuracy1"] = { type = "Corrupted", affix = "", "+(50-100) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { "helmet", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(50-100) to Accuracy Rating" }, } }, + ["CorruptionMovementVelocity1"] = { type = "Corrupted", affix = "", "(3-5)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(3-5)% increased Movement Speed" }, } }, + ["CorruptionIncreasedStunThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2981 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(20-30)% increased Stun Threshold" }, } }, + ["CorruptionIncreasedFreezeThreshold1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Threshold", statOrder = { 2982 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3780644166] = { "(20-30)% increased Freeze Threshold" }, } }, + ["CorruptionSlowPotency1"] = { type = "Corrupted", affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(20-30)% reduced Slowing Potency of Debuffs on You" }, } }, + ["CorruptionLifeRegenerationPercent1"] = { type = "Corrupted", affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1689 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate (1-2)% of maximum Life per second" }, } }, + ["CorruptionLifeRegenerationRate1"] = { type = "Corrupted", affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1035 }, level = 1, group = "LifeRegenerationRate", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(15-25)% increased Life Regeneration rate" }, } }, + ["CorruptionManaRegeneration1"] = { type = "Corrupted", affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-30)% increased Mana Regeneration Rate" }, } }, + ["CorruptionLocalBlockChance1"] = { type = "Corrupted", affix = "", "(10-15)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(10-15)% increased Block chance" }, } }, + ["CorruptionMaximumBlockChance1"] = { type = "Corrupted", affix = "", "+3% to maximum Block chance", statOrder = { 1732 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [480796730] = { "+3% to maximum Block chance" }, } }, + ["CorruptionGainLifeOnBlock1"] = { type = "Corrupted", affix = "", "(20-25) Life gained when you Block", statOrder = { 1517 }, level = 1, group = "GainLifeOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(20-25) Life gained when you Block" }, } }, + ["CorruptionGainManaOnBlock1"] = { type = "Corrupted", affix = "", "(10-15) Mana gained when you Block", statOrder = { 1518 }, level = 1, group = "GainManaOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(10-15) Mana gained when you Block" }, } }, + ["CorruptionAllResistances1"] = { type = "Corrupted", affix = "", "+(5-10)% 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", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, + ["CorruptionGlobalFireSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, + ["CorruptionGlobalColdSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, + ["CorruptionGlobalLightningSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, + ["CorruptionGlobalChaosSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, + ["CorruptionGlobalPhysicalSpellGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, + ["CorruptionGlobalMinionSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Minion Skills", statOrder = { 971 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, + ["CorruptionGlobalMeleeSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Melee Skills", statOrder = { 965 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, + ["CorruptionGlobalTrapSkillGemsLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 1, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, + ["CorruptionItemFoundRarityIncrease1"] = { type = "Corrupted", affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 940 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(10-15)% increased Rarity of Items found" }, } }, + ["CorruptionAllDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage", statOrder = { 1149 }, level = 1, group = "AllDamage", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "(20-30)% increased Damage" }, } }, + ["CorruptionIncreasedSkillSpeed1"] = { type = "Corrupted", affix = "", "(4-6)% increased Skill Speed", statOrder = { 836 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHashes = { [970213192] = { "(4-6)% increased Skill Speed" }, } }, + ["CorruptionCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "(15-20)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-20)% increased Critical Damage Bonus" }, } }, + ["CorruptionGlobalSkillGemLevel1"] = { type = "Corrupted", affix = "", "+1 to Level of all Skills", statOrder = { 948 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, + ["CorruptionStrength1"] = { type = "Corrupted", affix = "", "+(10-15) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(10-15) to Strength" }, } }, + ["CorruptionDexterity1"] = { type = "Corrupted", affix = "", "+(10-15) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(10-15) to Dexterity" }, } }, + ["CorruptionIntelligence1"] = { type = "Corrupted", affix = "", "+(10-15) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(10-15) to Intelligence" }, } }, + ["CorruptionIncreasedSlowEffect1"] = { type = "Corrupted", affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4679 }, level = 1, group = "SlowEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3650992555] = { "Debuffs you inflict have (20-30)% increased Slow Magnitude" }, } }, + ["CorruptionWeaponSwapSpeed1"] = { type = "Corrupted", affix = "", "(20-30)% increased Weapon Swap Speed", statOrder = { 10493 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(20-30)% increased Weapon Swap Speed" }, } }, + ["CorruptionLifeFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Life Flasks gain (0.08-0.17) charges per Second", statOrder = { 6869 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.08-0.17) charges per Second" }, } }, + ["CorruptionManaFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Mana Flasks gain (0.08-0.17) charges per Second", statOrder = { 6870 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.08-0.17) charges per Second" }, } }, + ["CorruptionCharmChargeGeneration1"] = { type = "Corrupted", affix = "", "Charms gain (0.08-0.17) charges per Second", statOrder = { 6866 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain (0.08-0.17) charges per Second" }, } }, + ["CorruptionLocalIncreasedPhysicalDamagePercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(15-25)% increased Physical Damage" }, } }, + ["CorruptionSpellDamageOnWeapon1"] = { type = "Corrupted", affix = "", "(20-30)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, + ["CorruptionSpellDamageOnTwoHandWeapon1"] = { type = "Corrupted", affix = "", "(40-60)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, + ["CorruptionLocalIncreasedSpiritPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Spirit", statOrder = { 856 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(15-25)% increased Spirit" }, } }, + ["CorruptionLocalAddedFireDamage1"] = { type = "Corrupted", affix = "", "Adds (9-14) to (15-22) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (9-14) to (15-22) Fire Damage" }, } }, + ["CorruptionLocalAddedFireDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (13-20) to (21-31) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-20) to (21-31) Fire Damage" }, } }, + ["CorruptionLocalAddedColdDamage1"] = { type = "Corrupted", affix = "", "Adds (8-12) to (13-19) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (8-12) to (13-19) Cold Damage" }, } }, + ["CorruptionLocalAddedColdDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (11-17) to (18-26) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-17) to (18-26) Cold Damage" }, } }, + ["CorruptionLocalAddedLightningDamage1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (29-43) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (29-43) Lightning Damage" }, } }, + ["CorruptionLocalAddedLightningDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (1-3) to (41-61) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (41-61) Lightning Damage" }, } }, + ["CorruptionLocalAddedChaosDamage1"] = { type = "Corrupted", affix = "", "Adds (7-11) to (12-18) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (7-11) to (12-18) Chaos damage" }, } }, + ["CorruptionLocalAddedChaosDamageTwoHand1"] = { type = "Corrupted", affix = "", "Adds (10-16) to (17-25) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (10-16) to (17-25) Chaos damage" }, } }, + ["CorruptionLocalIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "(6-8)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(6-8)% increased Attack Speed" }, } }, + ["CorruptionLocalCriticalStrikeMultiplier1"] = { type = "Corrupted", affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 944 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(5-10)% to Critical Damage Bonus" }, } }, + ["CorruptionLocalStunDamageIncrease1"] = { type = "Corrupted", affix = "", "Causes (20-30)% 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 = { }, tradeHashes = { [791928121] = { "Causes (20-30)% increased Stun Buildup" }, } }, + ["CorruptionLocalWeaponRangeIncrease1"] = { type = "Corrupted", affix = "", "(10-20)% 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 = { "attack" }, tradeHashes = { [548198834] = { "(10-20)% increased Melee Strike Range with this weapon" }, } }, + ["CorruptionLocalChanceToBleed1"] = { type = "Corrupted", affix = "", "(10-15)% 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", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "(10-15)% chance to cause Bleeding on Hit" }, } }, + ["CorruptionLocalChanceToPoison1"] = { type = "Corrupted", affix = "", "(10-15)% 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", "chaos", "attack", "ailment" }, tradeHashes = { [3885634897] = { "(10-15)% chance to Poison on Hit with this weapon" }, } }, + ["CorruptionLocalRageOnHit1"] = { type = "Corrupted", affix = "", "Grants 1 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 = { }, tradeHashes = { [1725749947] = { "Grants 1 Rage on Hit" }, } }, + ["CorruptionLocalChanceToMaim1"] = { type = "Corrupted", affix = "", "(10-15)% chance to Maim on Hit", statOrder = { 7772 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [2763429652] = { "(10-15)% chance to Maim on Hit" }, } }, + ["CorruptionLocalChanceToBlind1"] = { type = "Corrupted", affix = "", "(5-10)% chance to Blind Enemies on hit", statOrder = { 2011 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [2301191210] = { "(5-10)% chance to Blind Enemies on hit" }, } }, + ["CorruptionWeaponElementalDamage1"] = { type = "Corrupted", affix = "", "(20-30)% 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", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attacks" }, } }, + ["CorruptionWeaponElementalDamageTwoHand1"] = { type = "Corrupted", affix = "", "(40-50)% 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", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(40-50)% increased Elemental Damage with Attacks" }, } }, + ["CorruptionAdditionalArrows1"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 989 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, + ["CorruptionAdditionalAmmo1"] = { type = "Corrupted", affix = "", "Loads an additional bolt", statOrder = { 987 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, + ["CorruptionIgniteChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(20-30)% increased Flammability Magnitude" }, } }, + ["CorruptionFreezeDamageIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Buildup", statOrder = { 1056 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(20-30)% increased Freeze Buildup" }, } }, + ["CorruptionShockChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased chance to Shock", statOrder = { 1058 }, level = 1, group = "ShockChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(20-30)% increased chance to Shock" }, } }, + ["CorruptionSpellCriticalStrikeChance1"] = { type = "Corrupted", affix = "", "(20-30)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(20-30)% increased Critical Hit Chance for Spells" }, } }, + ["CorruptionLifeGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (20-25) Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (20-25) Life per enemy killed" }, } }, + ["CorruptionManaGainedFromEnemyDeath1"] = { type = "Corrupted", affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-15) Mana per enemy killed" }, } }, + ["CorruptionIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "(10-15)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(10-15)% increased Cast Speed" }, } }, + ["CorruptionEnergyShieldDelay1"] = { type = "Corrupted", affix = "", "(20-30)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(20-30)% faster start of Energy Shield Recharge" }, } }, + ["CorruptionAlliesInPresenceAllDamage1"] = { type = "Corrupted", affix = "", "Allies in your Presence deal (20-30)% increased Damage", statOrder = { 905 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (20-30)% increased Damage" }, } }, + ["CorruptionAlliesInPresenceIncreasedAttackSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Attack Speed", statOrder = { 917 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (5-10)% increased Attack Speed" }, } }, + ["CorruptionAlliesInPresenceIncreasedCastSpeed1"] = { type = "Corrupted", affix = "", "Allies in your Presence have (5-10)% increased Cast Speed", statOrder = { 918 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (5-10)% increased Cast Speed" }, } }, + ["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 = { "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" }, } }, + ["SpecialCorruptionPresenceRadius1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, + ["SpecialCorruptionCooldownRecovery1"] = { type = "SpecialCorrupted", affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, + ["SpecialCorruptionSkillEffectDuration1"] = { type = "SpecialCorrupted", affix = "", "(15-25)% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(15-25)% increased Skill Effect Duration" }, } }, + ["SpecialCorruptionEnergyGeneration1"] = { type = "SpecialCorrupted", affix = "", "Meta Skills gain (20-30)% increased Energy", statOrder = { 6387 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (20-30)% increased Energy" }, } }, + ["SpecialCorruptionDamageGainedAsChaos1"] = { type = "SpecialCorrupted", affix = "", "Gain (5-8)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (5-8)% of Damage as Extra Chaos Damage" }, } }, } \ No newline at end of file diff --git a/src/Data/ModFlask.lua b/src/Data/ModFlask.lua index 22a5d669c..1442952a2 100644 --- a/src/Data/ModFlask.lua +++ b/src/Data/ModFlask.lua @@ -2,82 +2,82 @@ -- Item data (c) Grinding Gear Games return { - ["FlaskChargesAddedIncreasePercent1"] = { type = "Suffix", affix = "of the Constant", "(23-30)% increased Charges gained", statOrder = { 1005 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(23-30)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent2_"] = { type = "Suffix", affix = "of the Continuous", "(31-38)% increased Charges gained", statOrder = { 1005 }, level = 13, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-38)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent3_"] = { type = "Suffix", affix = "of the Endless", "(39-46)% increased Charges gained", statOrder = { 1005 }, level = 33, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(39-46)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent4_"] = { type = "Suffix", affix = "of the Bottomless", "(47-54)% increased Charges gained", statOrder = { 1005 }, level = 48, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(47-54)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent5__"] = { type = "Suffix", affix = "of the Perpetual", "(55-62)% increased Charges gained", statOrder = { 1005 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-62)% increased Charges gained" }, } }, - ["FlaskChargesAddedIncreasePercent6"] = { type = "Suffix", affix = "of the Eternal", "(63-70)% increased Charges gained", statOrder = { 1005 }, level = 82, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(63-70)% increased Charges gained" }, } }, - ["FlaskExtraCharges1"] = { type = "Suffix", affix = "of the Wide", "(23-30)% increased Charges", statOrder = { 1008 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(23-30)% increased Charges" }, } }, - ["FlaskExtraCharges2__"] = { type = "Suffix", affix = "of the Copious", "(31-38)% increased Charges", statOrder = { 1008 }, level = 12, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(31-38)% increased Charges" }, } }, - ["FlaskExtraCharges3_"] = { type = "Suffix", affix = "of the Plentiful", "(39-46)% increased Charges", statOrder = { 1008 }, level = 32, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(39-46)% increased Charges" }, } }, - ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1008 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, - ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1008 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, - ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1008 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, - ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, - ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1006 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, - ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1006 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, - ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1006 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, - ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1006 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, - ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1006 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, - ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, - ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 610 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.15 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 610 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.2 Charges per Second" }, } }, - ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 610 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.25 Charges per Second" }, } }, - ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Dense", "(41-45)% increased Recovery rate", statOrder = { 913 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(41-45)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Undiluted", "(46-50)% increased Recovery rate", statOrder = { 913 }, level = 15, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(46-50)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Hearty", "(51-55)% increased Recovery rate", statOrder = { 913 }, level = 31, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(51-55)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Viscous", "(56-60)% increased Recovery rate", statOrder = { 913 }, level = 46, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(56-60)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Condensed", "(61-65)% increased Recovery rate", statOrder = { 913 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(61-65)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoverySpeed6"] = { type = "Prefix", affix = "Catalysed", "(66-70)% increased Recovery rate", statOrder = { 913 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(66-70)% increased Recovery rate" }, } }, - ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Opaque", "(41-45)% increased Amount Recovered", statOrder = { 905 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(41-45)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Compact", "(46-50)% increased Amount Recovered", statOrder = { 905 }, level = 11, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(46-50)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(51-55)% increased Amount Recovered", statOrder = { 905 }, level = 23, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(51-55)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Abundant", "(56-60)% increased Amount Recovered", statOrder = { 905 }, level = 34, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(56-60)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Substantial", "(61-65)% increased Amount Recovered", statOrder = { 905 }, level = 46, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(61-65)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount6"] = { type = "Prefix", affix = "Concentrated", "(66-70)% increased Amount Recovered", statOrder = { 905 }, level = 56, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(66-70)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount7"] = { type = "Prefix", affix = "Potent", "(71-75)% increased Amount Recovered", statOrder = { 905 }, level = 67, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(71-75)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryAmount8"] = { type = "Prefix", affix = "Saturated", "(76-80)% increased Amount Recovered", statOrder = { 905 }, level = 83, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(76-80)% increased Amount Recovered" }, } }, - ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(51-60)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 2, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(51-60)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(61-70)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(61-70)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(71-80)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(71-80)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(81-90)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(81-90)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(91-100)% more Recovery if used while on Low Life", statOrder = { 906 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(91-100)% more Recovery if used while on Low Life" }, } }, - ["FlaskIncreasedRecoveryOnLowMana1"] = { type = "Prefix", affix = "Sustained", "(51-60)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 2, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(51-60)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana2"] = { type = "Prefix", affix = "Tenacious", "(61-70)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 25, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(61-70)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana3"] = { type = "Prefix", affix = "Persistent", "(71-80)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 44, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(71-80)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana4"] = { type = "Prefix", affix = "Persevering", "(81-90)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 63, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(81-90)% more Recovery if used while on Low Mana" }, } }, - ["FlaskIncreasedRecoveryOnLowMana5"] = { type = "Prefix", affix = "Prolonged", "(91-100)% more Recovery if used while on Low Mana", statOrder = { 904 }, level = 82, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(91-100)% more Recovery if used while on Low Mana" }, } }, - ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(61-68)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(61-68)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(69-76)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(69-76)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(77-84)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(77-84)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(85-92)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(85-92)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(93-100)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 908, 914 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(93-100)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, - ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(61-68)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(61-68)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(69-76)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(69-76)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(77-84)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(77-84)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(85-92)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(85-92)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(93-100)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 909, 915 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(93-100)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, - ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(20-23)% of Recovery applied Instantly", statOrder = { 912 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(20-23)% of Recovery applied Instantly" }, } }, - ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Effervescent", "(24-27)% of Recovery applied Instantly", statOrder = { 912 }, level = 27, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(24-27)% of Recovery applied Instantly" }, } }, - ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Bubbling", "(28-30)% of Recovery applied Instantly", statOrder = { 912 }, level = 46, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(28-30)% of Recovery applied Instantly" }, } }, - ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "50% reduced Amount Recovered", "Instant Recovery", statOrder = { 905, 911 }, level = 42, group = "FlaskFullInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "50% reduced Amount Recovered" }, } }, - ["FlaskHealsMinions1"] = { type = "Prefix", affix = "Novice's", "Grants (51-56)% of Life Recovery to Minions", statOrder = { 910 }, level = 10, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (51-56)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions2"] = { type = "Prefix", affix = "Acolyte's", "Grants (57-62)% of Life Recovery to Minions", statOrder = { 910 }, level = 28, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (57-62)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions3"] = { type = "Prefix", affix = "Summoner's", "Grants (63-68)% of Life Recovery to Minions", statOrder = { 910 }, level = 46, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (63-68)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions4____"] = { type = "Prefix", affix = "Conjurer's", "Grants (69-74)% of Life Recovery to Minions", statOrder = { 910 }, level = 64, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (69-74)% of Life Recovery to Minions" }, } }, - ["FlaskHealsMinions5"] = { type = "Prefix", affix = "Necromancer's", "Grants (75-80)% of Life Recovery to Minions", statOrder = { 910 }, level = 82, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (75-80)% of Life Recovery to Minions" }, } }, - ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 656 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [3895393544] = { "Removes Curses on use" }, } }, - ["FlaskBleedCorruptingBloodImmunity1"] = { type = "Suffix", affix = "of Sealing", "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood", statOrder = { 659, 659.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood" }, } }, - ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 669 }, level = 6, group = "FlaskShockImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (6-8) seconds if used while Shocked" }, } }, - ["FlaskChillFreezeImmunity1"] = { type = "Suffix", affix = "of Convection", "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen", statOrder = { 661, 661.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen" }, } }, - ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 663, 663.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used" }, } }, - ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 667 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (6-8) seconds if used while Poisoned" }, } }, - ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 623, 743 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } }, - ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 623, 744 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, - ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 623, 742 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, - ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 623, 673, 673.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(45-49)% less Duration" }, } }, - ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 623, 740 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } }, + ["FlaskChargesAddedIncreasePercent1"] = { type = "Suffix", affix = "of the Constant", "(23-30)% increased Charges gained", statOrder = { 1071 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(23-30)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent2_"] = { type = "Suffix", affix = "of the Continuous", "(31-38)% increased Charges gained", statOrder = { 1071 }, level = 13, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(31-38)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent3_"] = { type = "Suffix", affix = "of the Endless", "(39-46)% increased Charges gained", statOrder = { 1071 }, level = 33, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(39-46)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent4_"] = { type = "Suffix", affix = "of the Bottomless", "(47-54)% increased Charges gained", statOrder = { 1071 }, level = 48, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(47-54)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent5__"] = { type = "Suffix", affix = "of the Perpetual", "(55-62)% increased Charges gained", statOrder = { 1071 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(55-62)% increased Charges gained" }, } }, + ["FlaskChargesAddedIncreasePercent6"] = { type = "Suffix", affix = "of the Eternal", "(63-70)% increased Charges gained", statOrder = { 1071 }, level = 82, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(63-70)% increased Charges gained" }, } }, + ["FlaskExtraCharges1"] = { type = "Suffix", affix = "of the Wide", "(23-30)% increased Charges", statOrder = { 1074 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(23-30)% increased Charges" }, } }, + ["FlaskExtraCharges2__"] = { type = "Suffix", affix = "of the Copious", "(31-38)% increased Charges", statOrder = { 1074 }, level = 12, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(31-38)% increased Charges" }, } }, + ["FlaskExtraCharges3_"] = { type = "Suffix", affix = "of the Plentiful", "(39-46)% increased Charges", statOrder = { 1074 }, level = 32, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(39-46)% increased Charges" }, } }, + ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1074 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, + ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1074 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, + ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1074 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, + ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1072 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, + ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1072 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, + ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1072 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, + ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1072 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, + ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1072 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, + ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1072 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, + ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1070 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, + ["FlaskFillChargesPerMinute1"] = { type = "Suffix", affix = "of the Foliage", "Gains 0.15 Charges per Second", statOrder = { 617 }, level = 8, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.15 Charges per Second" }, } }, + ["FlaskFillChargesPerMinute2"] = { type = "Suffix", affix = "of the Verdant", "Gains 0.2 Charges per Second", statOrder = { 617 }, level = 26, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.2 Charges per Second" }, } }, + ["FlaskFillChargesPerMinute3"] = { type = "Suffix", affix = "of the Sylvan", "Gains 0.25 Charges per Second", statOrder = { 617 }, level = 45, group = "FlaskGainChargePerMinute", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHashes = { [1873752457] = { "Gains 0.25 Charges per Second" }, } }, + ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Dense", "(41-45)% increased Recovery rate", statOrder = { 937 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(41-45)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Undiluted", "(46-50)% increased Recovery rate", statOrder = { 937 }, level = 15, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(46-50)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Hearty", "(51-55)% increased Recovery rate", statOrder = { 937 }, level = 31, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(51-55)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Viscous", "(56-60)% increased Recovery rate", statOrder = { 937 }, level = 46, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(56-60)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Condensed", "(61-65)% increased Recovery rate", statOrder = { 937 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(61-65)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoverySpeed6"] = { type = "Prefix", affix = "Catalysed", "(66-70)% increased Recovery rate", statOrder = { 937 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [173226756] = { "(66-70)% increased Recovery rate" }, } }, + ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Opaque", "(41-45)% increased Amount Recovered", statOrder = { 929 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(41-45)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Compact", "(46-50)% increased Amount Recovered", statOrder = { 929 }, level = 11, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(46-50)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(51-55)% increased Amount Recovered", statOrder = { 929 }, level = 23, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(51-55)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Abundant", "(56-60)% increased Amount Recovered", statOrder = { 929 }, level = 34, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(56-60)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Substantial", "(61-65)% increased Amount Recovered", statOrder = { 929 }, level = 46, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(61-65)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount6"] = { type = "Prefix", affix = "Concentrated", "(66-70)% increased Amount Recovered", statOrder = { 929 }, level = 56, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(66-70)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount7"] = { type = "Prefix", affix = "Potent", "(71-75)% increased Amount Recovered", statOrder = { 929 }, level = 67, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(71-75)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryAmount8"] = { type = "Prefix", affix = "Saturated", "(76-80)% increased Amount Recovered", statOrder = { 929 }, level = 83, group = "FlaskIncreasedRecoveryAmount", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(76-80)% increased Amount Recovered" }, } }, + ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(51-60)% more Recovery if used while on Low Life", statOrder = { 930 }, level = 2, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(51-60)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(61-70)% more Recovery if used while on Low Life", statOrder = { 930 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(61-70)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(71-80)% more Recovery if used while on Low Life", statOrder = { 930 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(71-80)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(81-90)% more Recovery if used while on Low Life", statOrder = { 930 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(81-90)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(91-100)% more Recovery if used while on Low Life", statOrder = { 930 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [886931978] = { "(91-100)% more Recovery if used while on Low Life" }, } }, + ["FlaskIncreasedRecoveryOnLowMana1"] = { type = "Prefix", affix = "Sustained", "(51-60)% more Recovery if used while on Low Mana", statOrder = { 928 }, level = 2, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(51-60)% more Recovery if used while on Low Mana" }, } }, + ["FlaskIncreasedRecoveryOnLowMana2"] = { type = "Prefix", affix = "Tenacious", "(61-70)% more Recovery if used while on Low Mana", statOrder = { 928 }, level = 25, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(61-70)% more Recovery if used while on Low Mana" }, } }, + ["FlaskIncreasedRecoveryOnLowMana3"] = { type = "Prefix", affix = "Persistent", "(71-80)% more Recovery if used while on Low Mana", statOrder = { 928 }, level = 44, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(71-80)% more Recovery if used while on Low Mana" }, } }, + ["FlaskIncreasedRecoveryOnLowMana4"] = { type = "Prefix", affix = "Persevering", "(81-90)% more Recovery if used while on Low Mana", statOrder = { 928 }, level = 63, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(81-90)% more Recovery if used while on Low Mana" }, } }, + ["FlaskIncreasedRecoveryOnLowMana5"] = { type = "Prefix", affix = "Prolonged", "(91-100)% more Recovery if used while on Low Mana", statOrder = { 928 }, level = 82, group = "FlaskIncreasedRecoveryOnLowMana", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3276224428] = { "(91-100)% more Recovery if used while on Low Mana" }, } }, + ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(61-68)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 932, 938 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(61-68)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(69-76)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 932, 938 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(69-76)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(77-84)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 932, 938 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(77-84)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(85-92)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 932, 938 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(85-92)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(93-100)% increased Life Recovered", "Removes 15% of Life Recovered from Mana when used", statOrder = { 932, 938 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1261982764] = { "(93-100)% increased Life Recovered" }, [648019518] = { "Removes 15% of Life Recovered from Mana when used" }, } }, + ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(61-68)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 933, 939 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(61-68)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(69-76)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 933, 939 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(69-76)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(77-84)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 933, 939 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(77-84)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(85-92)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 933, 939 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(85-92)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(93-100)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 933, 939 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "mana_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1811130680] = { "(93-100)% increased Mana Recovered" }, [959641748] = { "Removes 15% of Mana Recovered from Life when used" }, } }, + ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(20-23)% of Recovery applied Instantly", statOrder = { 936 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(20-23)% of Recovery applied Instantly" }, } }, + ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Effervescent", "(24-27)% of Recovery applied Instantly", statOrder = { 936 }, level = 27, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(24-27)% of Recovery applied Instantly" }, } }, + ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Bubbling", "(28-30)% of Recovery applied Instantly", statOrder = { 936 }, level = 46, group = "FlaskPartialInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [2503377690] = { "(28-30)% of Recovery applied Instantly" }, } }, + ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "50% reduced Amount Recovered", "Instant Recovery", statOrder = { 929, 935 }, level = 42, group = "FlaskFullInstantRecovery", weightKey = { "life_flask", "mana_flask", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "50% reduced Amount Recovered" }, } }, + ["FlaskHealsMinions1"] = { type = "Prefix", affix = "Novice's", "Grants (51-56)% of Life Recovery to Minions", statOrder = { 934 }, level = 10, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (51-56)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions2"] = { type = "Prefix", affix = "Acolyte's", "Grants (57-62)% of Life Recovery to Minions", statOrder = { 934 }, level = 28, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (57-62)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions3"] = { type = "Prefix", affix = "Summoner's", "Grants (63-68)% of Life Recovery to Minions", statOrder = { 934 }, level = 46, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (63-68)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions4____"] = { type = "Prefix", affix = "Conjurer's", "Grants (69-74)% of Life Recovery to Minions", statOrder = { 934 }, level = 64, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (69-74)% of Life Recovery to Minions" }, } }, + ["FlaskHealsMinions5"] = { type = "Prefix", affix = "Necromancer's", "Grants (75-80)% of Life Recovery to Minions", statOrder = { 934 }, level = 82, group = "FlaskHealsMinions", weightKey = { "life_flask", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life", "minion" }, tradeHashes = { [2416869319] = { "Grants (75-80)% of Life Recovery to Minions" }, } }, + ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 664 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "curse" }, tradeHashes = { [3895393544] = { "Removes Curses on use" }, } }, + ["FlaskBleedCorruptingBloodImmunity1"] = { type = "Suffix", affix = "of Sealing", "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood", statOrder = { 667, 667.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [182714578] = { "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood" }, } }, + ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 677 }, level = 6, group = "FlaskShockImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3854439683] = { "Grants Immunity to Shock for (6-8) seconds if used while Shocked" }, } }, + ["FlaskChillFreezeImmunity1"] = { type = "Suffix", affix = "of Convection", "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen", statOrder = { 669, 669.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3869628136] = { "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen" }, } }, + ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 671, 671.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2361218755] = { "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used" }, } }, + ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 675 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [542375676] = { "Grants Immunity to Poison for (6-8) seconds if used while Poisoned" }, } }, + ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 632, 751 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [1349296959] = { "Immunity to Poison during Effect" }, } }, + ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 632, 752 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [589991690] = { "Immunity to Shock during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, + ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 632, 750 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [3838369929] = { "Immunity to Freeze and Chill during Effect" }, [1506355899] = { "(45-49)% less Duration" }, } }, + ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 632, 681, 681.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [658443507] = { "Immunity to Ignite during Effect", "Removes Burning on use" }, [1506355899] = { "(45-49)% less Duration" }, } }, + ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 632, 748 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [1506355899] = { "(45-49)% less Duration" }, [3965637181] = { "Immunity to Bleeding and Corrupted Blood during Effect" }, } }, } \ No newline at end of file diff --git a/src/Data/ModIncursionLimb.lua b/src/Data/ModIncursionLimb.lua index 0c2a2c7d5..2107ea74a 100644 --- a/src/Data/ModIncursionLimb.lua +++ b/src/Data/ModIncursionLimb.lua @@ -2,16 +2,16 @@ -- Item data (c) Grinding Gear Games return { - ["IncursionLeg1"] = { affix = "", "(20-30)% increased Evasion Rating", statOrder = { 866 }, level = 0, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(20-30)% increased Evasion Rating" }, } }, - ["IncursionLeg2"] = { affix = "", "(6-10)% increased Movement Speed while Sprinting", statOrder = { 9465 }, level = 0, group = "MovementVelocityWhileSprinting", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3107707789] = { "(6-10)% increased Movement Speed while Sprinting" }, } }, - ["IncursionLeg3"] = { affix = "", "(15-25)% increased Stun Threshold", statOrder = { 2878 }, level = 0, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(15-25)% increased Stun Threshold" }, } }, - ["IncursionLeg4"] = { affix = "", "(5-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 8594 }, level = 0, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, - ["IncursionLeg5"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 7532 }, level = 0, group = "ManaRegenerationRateWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, - ["IncursionLeg6"] = { affix = "", "(6-10)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 0, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(6-10)% of Damage taken Recouped as Life" }, } }, - ["IncursionArm1"] = { affix = "", "(8-12)% increased Block chance", statOrder = { 1064 }, level = 0, group = "IncreasedBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(8-12)% increased Block chance" }, } }, - ["IncursionArm2"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 941 }, level = 0, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-10)% increased Attack Speed" }, } }, - ["IncursionArm3"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 942 }, level = 0, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, - ["IncursionArm4"] = { affix = "", "(12-16)% increased Curse Magnitudes", statOrder = { 2266 }, level = 0, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(12-16)% increased Curse Magnitudes" }, } }, - ["IncursionArm5"] = { affix = "", "(6-10)% increased Deflection Rating", statOrder = { 5721 }, level = 0, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [3040571529] = { "(6-10)% increased Deflection Rating" }, } }, - ["IncursionArm6"] = { affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1002 }, level = 0, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, + ["IncursionLeg1"] = { affix = "", "(20-30)% increased Evasion Rating", statOrder = { 883 }, level = 0, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(20-30)% increased Evasion Rating" }, } }, + ["IncursionLeg2"] = { affix = "", "(6-10)% increased Movement Speed while Sprinting", statOrder = { 10028 }, level = 0, group = "MovementVelocityWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(6-10)% increased Movement Speed while Sprinting" }, } }, + ["IncursionLeg3"] = { affix = "", "(15-25)% increased Stun Threshold", statOrder = { 2981 }, level = 0, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [680068163] = { "(15-25)% increased Stun Threshold" }, } }, + ["IncursionLeg4"] = { affix = "", "(5-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9119 }, level = 0, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2590797182] = { "(5-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, + ["IncursionLeg5"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 7994 }, level = 0, group = "ManaRegenerationRateWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, + ["IncursionLeg6"] = { affix = "", "(6-10)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 0, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(6-10)% of Damage taken Recouped as Life" }, } }, + ["IncursionArm1"] = { affix = "", "(8-12)% increased Block chance", statOrder = { 1132 }, level = 0, group = "IncreasedBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(8-12)% increased Block chance" }, } }, + ["IncursionArm2"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 984 }, level = 0, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(6-10)% increased Attack Speed" }, } }, + ["IncursionArm3"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 986 }, level = 0, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(6-10)% increased Cast Speed" }, } }, + ["IncursionArm4"] = { affix = "", "(12-16)% increased Curse Magnitudes", statOrder = { 2374 }, level = 0, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(12-16)% increased Curse Magnitudes" }, } }, + ["IncursionArm5"] = { affix = "", "(6-10)% increased Deflection Rating", statOrder = { 6105 }, level = 0, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, tradeHashes = { [3040571529] = { "(6-10)% increased Deflection Rating" }, } }, + ["IncursionArm6"] = { affix = "", "(15-25)% increased Presence Area of Effect", statOrder = { 1068 }, level = 0, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, } \ No newline at end of file diff --git a/src/Data/ModItem.lua b/src/Data/ModItem.lua index bf43d94a5..9fe332810 100644 --- a/src/Data/ModItem.lua +++ b/src/Data/ModItem.lua @@ -2,1724 +2,2553 @@ -- Item data (c) Grinding Gear Games return { - ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(5-8) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-8) to Strength" }, } }, - ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(9-12) to Strength", statOrder = { 947 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(9-12) to Strength" }, } }, - ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(13-16) to Strength", statOrder = { 947 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(13-16) to Strength" }, } }, - ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(17-20) to Strength", statOrder = { 947 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(17-20) to Strength" }, } }, - ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(21-24) to Strength", statOrder = { 947 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(21-24) to Strength" }, } }, - ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(25-27) to Strength", statOrder = { 947 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(25-27) to Strength" }, } }, - ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(28-30) to Strength", statOrder = { 947 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(28-30) to Strength" }, } }, - ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(31-33) to Strength", statOrder = { 947 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(31-33) to Strength" }, } }, - ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(34-36) to Strength", statOrder = { 947 }, level = 81, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(34-36) to Strength" }, } }, - ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(5-8) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-8) to Dexterity" }, } }, - ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(9-12) to Dexterity", statOrder = { 948 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(9-12) to Dexterity" }, } }, - ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(13-16) to Dexterity", statOrder = { 948 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(13-16) to Dexterity" }, } }, - ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(17-20) to Dexterity", statOrder = { 948 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(17-20) to Dexterity" }, } }, - ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(21-24) to Dexterity", statOrder = { 948 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(21-24) to Dexterity" }, } }, - ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(25-27) to Dexterity", statOrder = { 948 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(25-27) to Dexterity" }, } }, - ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(28-30) to Dexterity", statOrder = { 948 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(28-30) to Dexterity" }, } }, - ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(31-33) to Dexterity", statOrder = { 948 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(31-33) to Dexterity" }, } }, - ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(34-36) to Dexterity", statOrder = { 948 }, level = 81, group = "Dexterity", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(34-36) to Dexterity" }, } }, - ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(5-8) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-8) to Intelligence" }, } }, - ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(9-12) to Intelligence", statOrder = { 949 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(9-12) to Intelligence" }, } }, - ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(13-16) to Intelligence", statOrder = { 949 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(13-16) to Intelligence" }, } }, - ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(17-20) to Intelligence", statOrder = { 949 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(17-20) to Intelligence" }, } }, - ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(21-24) to Intelligence", statOrder = { 949 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(21-24) to Intelligence" }, } }, - ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(25-27) to Intelligence", statOrder = { 949 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(25-27) to Intelligence" }, } }, - ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(28-30) to Intelligence", statOrder = { 949 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(28-30) to Intelligence" }, } }, - ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(31-33) to Intelligence", statOrder = { 949 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(31-33) to Intelligence" }, } }, - ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(34-36) to Intelligence", statOrder = { 949 }, level = 81, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(34-36) to Intelligence" }, } }, - ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(2-4) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(2-4) to all Attributes" }, } }, - ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-7) to all Attributes", statOrder = { 946 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-7) to all Attributes" }, } }, - ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(8-10) to all Attributes", statOrder = { 946 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-10) to all Attributes" }, } }, - ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(11-13) to all Attributes", statOrder = { 946 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(11-13) to all Attributes" }, } }, - ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(14-16) to all Attributes", statOrder = { 946 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(14-16) to all Attributes" }, } }, - ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(17-18) to all Attributes", statOrder = { 946 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(17-18) to all Attributes" }, } }, - ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(19-20) to all Attributes", statOrder = { 946 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(19-20) to all Attributes" }, } }, - ["AllAttributes8"] = { type = "Suffix", affix = "of the Multiverse", "+(21-22) to all Attributes", statOrder = { 946 }, level = 75, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-22) to all Attributes" }, } }, - ["AllAttributes9_"] = { type = "Suffix", affix = "of the Infinite", "+(23-24) to all Attributes", statOrder = { 946 }, level = 82, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(23-24) to all Attributes" }, } }, - ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(6-10)% to Fire Resistance" }, } }, - ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(11-15)% to Fire Resistance", statOrder = { 958 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(11-15)% to Fire Resistance" }, } }, - ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(16-20)% to Fire Resistance", statOrder = { 958 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(16-20)% to Fire Resistance" }, } }, - ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(21-25)% to Fire Resistance", statOrder = { 958 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, - ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(26-30)% to Fire Resistance", statOrder = { 958 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(26-30)% to Fire Resistance" }, } }, - ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(31-35)% to Fire Resistance", statOrder = { 958 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(31-35)% to Fire Resistance" }, } }, - ["FireResist7"] = { type = "Suffix", affix = "of Magma", "+(36-40)% to Fire Resistance", statOrder = { 958 }, level = 71, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, - ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(41-45)% to Fire Resistance", statOrder = { 958 }, level = 82, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(41-45)% to Fire Resistance" }, } }, - ["ColdResist1"] = { type = "Suffix", affix = "of the Seal", "+(6-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(6-10)% to Cold Resistance" }, } }, - ["ColdResist2"] = { type = "Suffix", affix = "of the Penguin", "+(11-15)% to Cold Resistance", statOrder = { 959 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(11-15)% to Cold Resistance" }, } }, - ["ColdResist3"] = { type = "Suffix", affix = "of the Narwhal", "+(16-20)% to Cold Resistance", statOrder = { 959 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(16-20)% to Cold Resistance" }, } }, - ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(21-25)% to Cold Resistance", statOrder = { 959 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, } }, - ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(26-30)% to Cold Resistance", statOrder = { 959 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-30)% to Cold Resistance" }, } }, - ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(31-35)% to Cold Resistance", statOrder = { 959 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-35)% to Cold Resistance" }, } }, - ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(36-40)% to Cold Resistance", statOrder = { 959 }, level = 71, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, } }, - ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(41-45)% to Cold Resistance", statOrder = { 959 }, level = 82, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(41-45)% to Cold Resistance" }, } }, - ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-10)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(6-10)% to Lightning Resistance" }, } }, - ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(11-15)% to Lightning Resistance", statOrder = { 960 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(11-15)% to Lightning Resistance" }, } }, - ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(16-20)% to Lightning Resistance", statOrder = { 960 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(16-20)% to Lightning Resistance" }, } }, - ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(21-25)% to Lightning Resistance", statOrder = { 960 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, - ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(26-30)% to Lightning Resistance", statOrder = { 960 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(26-30)% to Lightning Resistance" }, } }, - ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(31-35)% to Lightning Resistance", statOrder = { 960 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(31-35)% to Lightning Resistance" }, } }, - ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(36-40)% to Lightning Resistance", statOrder = { 960 }, level = 71, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, - ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(41-45)% to Lightning Resistance", statOrder = { 960 }, level = 82, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(41-45)% to Lightning Resistance" }, } }, - ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 957 }, level = 12, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(3-5)% to all Elemental Resistances" }, } }, - ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 957 }, level = 26, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(6-8)% to all Elemental Resistances" }, } }, - ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 957 }, level = 40, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(9-11)% to all Elemental Resistances" }, } }, - ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 957 }, level = 54, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(12-14)% to all Elemental Resistances" }, } }, - ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 957 }, level = 68, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } }, - ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 957 }, level = 80, group = "AllResistances", weightKey = { "str_int_shield", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances1"] = { type = "Suffix", affix = "of Adjustment", "Allies in your Presence have +(3-5)% to all Elemental Resistances", statOrder = { 895 }, level = 12, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(3-5)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances2"] = { type = "Suffix", affix = "of Acclimatisation", "Allies in your Presence have +(6-8)% to all Elemental Resistances", statOrder = { 895 }, level = 26, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(6-8)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances3"] = { type = "Suffix", affix = "of Adaptation", "Allies in your Presence have +(9-11)% to all Elemental Resistances", statOrder = { 895 }, level = 40, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(9-11)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances4"] = { type = "Suffix", affix = "of Evolution", "Allies in your Presence have +(12-14)% to all Elemental Resistances", statOrder = { 895 }, level = 54, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(12-14)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances5"] = { type = "Suffix", affix = "of Progression", "Allies in your Presence have +(15-16)% to all Elemental Resistances", statOrder = { 895 }, level = 68, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(15-16)% to all Elemental Resistances" }, } }, - ["NearbyAlliesAllResistances6"] = { type = "Suffix", affix = "of Metamorphosis", "Allies in your Presence have +(17-18)% to all Elemental Resistances", statOrder = { 895 }, level = 80, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(17-18)% to all Elemental Resistances" }, } }, - ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(4-7)% to Chaos Resistance", statOrder = { 961 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(4-7)% to Chaos Resistance" }, } }, - ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(8-11)% to Chaos Resistance", statOrder = { 961 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-11)% to Chaos Resistance" }, } }, - ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(12-15)% to Chaos Resistance", statOrder = { 961 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-15)% to Chaos Resistance" }, } }, - ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(16-19)% to Chaos Resistance", statOrder = { 961 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-19)% to Chaos Resistance" }, } }, - ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(20-23)% to Chaos Resistance", statOrder = { 961 }, level = 68, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-23)% to Chaos Resistance" }, } }, - ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(24-27)% to Chaos Resistance", statOrder = { 961 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(24-27)% to Chaos Resistance" }, } }, - ["IncreasedLife1"] = { type = "Prefix", affix = "Hale", "+(10-19) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-19) to maximum Life" }, } }, - ["IncreasedLife2"] = { type = "Prefix", affix = "Healthy", "+(20-29) to maximum Life", statOrder = { 869 }, level = 6, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-29) to maximum Life" }, } }, - ["IncreasedLife3"] = { type = "Prefix", affix = "Sanguine", "+(30-39) to maximum Life", statOrder = { 869 }, level = 16, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-39) to maximum Life" }, } }, - ["IncreasedLife4"] = { type = "Prefix", affix = "Stalwart", "+(40-59) to maximum Life", statOrder = { 869 }, level = 24, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-59) to maximum Life" }, } }, - ["IncreasedLife5"] = { type = "Prefix", affix = "Stout", "+(60-69) to maximum Life", statOrder = { 869 }, level = 33, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-69) to maximum Life" }, } }, - ["IncreasedLife6"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 869 }, level = 38, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-84) to maximum Life" }, } }, - ["IncreasedLife7"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 869 }, level = 46, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(85-99) to maximum Life" }, } }, - ["IncreasedLife8"] = { type = "Prefix", affix = "Virile", "+(100-119) to maximum Life", statOrder = { 869 }, level = 54, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-119) to maximum Life" }, } }, - ["IncreasedLife9"] = { type = "Prefix", affix = "Athlete's", "+(120-149) to maximum Life", statOrder = { 869 }, level = 60, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-149) to maximum Life" }, } }, - ["IncreasedLife10"] = { type = "Prefix", affix = "Fecund", "+(150-174) to maximum Life", statOrder = { 869 }, level = 65, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(150-174) to maximum Life" }, } }, - ["IncreasedLife11"] = { type = "Prefix", affix = "Vigorous", "+(175-189) to maximum Life", statOrder = { 869 }, level = 70, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(175-189) to maximum Life" }, } }, - ["IncreasedLife12"] = { type = "Prefix", affix = "Rapturous", "+(190-199) to maximum Life", statOrder = { 869 }, level = 75, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(190-199) to maximum Life" }, } }, - ["IncreasedLife13"] = { type = "Prefix", affix = "Prime", "+(200-214) to maximum Life", statOrder = { 869 }, level = 80, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-214) to maximum Life" }, } }, - ["MaximumLifeIncrease1"] = { type = "Prefix", affix = "Hopeful", "(3-4)% increased maximum Life", statOrder = { 870 }, level = 33, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-4)% increased maximum Life" }, } }, - ["MaximumLifeIncrease2"] = { type = "Prefix", affix = "Optimistic", "(5-6)% increased maximum Life", statOrder = { 870 }, level = 60, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } }, - ["MaximumLifeIncrease3"] = { type = "Prefix", affix = "Confident", "(7-8)% increased maximum Life", statOrder = { 870 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-8)% increased maximum Life" }, } }, - ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(10-14) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-14) to maximum Mana" }, } }, - ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(15-24) to maximum Mana", statOrder = { 871 }, level = 6, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-24) to maximum Mana" }, } }, - ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-34) to maximum Mana", statOrder = { 871 }, level = 16, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-34) to maximum Mana" }, } }, - ["IncreasedMana4"] = { type = "Prefix", affix = "Teal", "+(35-54) to maximum Mana", statOrder = { 871 }, level = 25, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(35-54) to maximum Mana" }, } }, - ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(55-64) to maximum Mana", statOrder = { 871 }, level = 33, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-64) to maximum Mana" }, } }, - ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(65-79) to maximum Mana", statOrder = { 871 }, level = 38, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(65-79) to maximum Mana" }, } }, - ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(80-89) to maximum Mana", statOrder = { 871 }, level = 46, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-89) to maximum Mana" }, } }, - ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(90-104) to maximum Mana", statOrder = { 871 }, level = 54, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(90-104) to maximum Mana" }, } }, - ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(105-124) to maximum Mana", statOrder = { 871 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(105-124) to maximum Mana" }, } }, - ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(125-149) to maximum Mana", statOrder = { 871 }, level = 65, group = "IncreasedMana", weightKey = { "ring", "amulet", "helmet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(125-149) to maximum Mana" }, } }, - ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(150-164) to maximum Mana", statOrder = { 871 }, level = 70, group = "IncreasedMana", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-164) to maximum Mana" }, } }, - ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(165-179) to maximum Mana", statOrder = { 871 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(165-179) to maximum Mana" }, } }, - ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(180-189) to maximum Mana", statOrder = { 871 }, level = 82, group = "IncreasedMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(180-189) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(20-28) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-28) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(29-48) to maximum Mana", statOrder = { 871 }, level = 6, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(29-48) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(49-68) to maximum Mana", statOrder = { 871 }, level = 16, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(49-68) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(69-108) to maximum Mana", statOrder = { 871 }, level = 25, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-108) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(109-128) to maximum Mana", statOrder = { 871 }, level = 33, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(109-128) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(129-158) to maximum Mana", statOrder = { 871 }, level = 38, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(129-158) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(159-178) to maximum Mana", statOrder = { 871 }, level = 46, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(159-178) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(179-208) to maximum Mana", statOrder = { 871 }, level = 54, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(179-208) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(209-248) to maximum Mana", statOrder = { 871 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(209-248) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(249-298) to maximum Mana", statOrder = { 871 }, level = 65, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(249-298) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(299-328) to maximum Mana", statOrder = { 871 }, level = 70, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(299-328) to maximum Mana" }, } }, - ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(231-251) to maximum Mana", statOrder = { 871 }, level = 75, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(231-251) to maximum Mana" }, } }, - ["MaximumManaIncrease1"] = { type = "Prefix", affix = "Cognizant", "(3-4)% increased maximum Mana", statOrder = { 872 }, level = 33, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(3-4)% increased maximum Mana" }, } }, - ["MaximumManaIncrease2"] = { type = "Prefix", affix = "Perceptive", "(5-6)% increased maximum Mana", statOrder = { 872 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(5-6)% increased maximum Mana" }, } }, - ["MaximumManaIncrease3"] = { type = "Prefix", affix = "Mnemonic", "(7-8)% increased maximum Mana", statOrder = { 872 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(7-8)% increased maximum Mana" }, } }, - ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(12-22) to Armour", statOrder = { 863 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(12-22) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(23-42) to Armour", statOrder = { 863 }, level = 11, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(23-42) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(43-54) to Armour", statOrder = { 863 }, level = 16, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(43-54) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(55-81) to Armour", statOrder = { 863 }, level = 25, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(55-81) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(82-106) to Armour", statOrder = { 863 }, level = 33, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(82-106) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(107-138) to Armour", statOrder = { 863 }, level = 46, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(107-138) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(139-168) to Armour", statOrder = { 863 }, level = 54, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(139-168) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(169-195) to Armour", statOrder = { 863 }, level = 65, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(169-195) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating9"] = { type = "Prefix", affix = "Abating", "+(196-224) to Armour", statOrder = { 863 }, level = 70, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(196-224) to Armour" }, } }, - ["IncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(225-255) to Armour", statOrder = { 863 }, level = 80, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [809229260] = { "+(225-255) to Armour" }, } }, - ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(8-15) to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(8-15) to Evasion Rating" }, } }, - ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(16-33) to Evasion Rating", statOrder = { 865 }, level = 11, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(16-33) to Evasion Rating" }, } }, - ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(34-44) to Evasion Rating", statOrder = { 865 }, level = 16, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(34-44) to Evasion Rating" }, } }, - ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(45-69) to Evasion Rating", statOrder = { 865 }, level = 25, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(45-69) to Evasion Rating" }, } }, - ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(70-93) to Evasion Rating", statOrder = { 865 }, level = 33, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(70-93) to Evasion Rating" }, } }, - ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(94-123) to Evasion Rating", statOrder = { 865 }, level = 46, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(94-123) to Evasion Rating" }, } }, - ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(124-151) to Evasion Rating", statOrder = { 865 }, level = 54, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(124-151) to Evasion Rating" }, } }, - ["IncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(152-176) to Evasion Rating", statOrder = { 865 }, level = 65, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(152-176) to Evasion Rating" }, } }, - ["IncreasedEvasionRating9"] = { type = "Prefix", affix = "Adroit", "+(177-203) to Evasion Rating", statOrder = { 865 }, level = 70, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2144192055] = { "+(177-203) to Evasion Rating" }, } }, - ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(8-14) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(8-14) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(15-20) to maximum Energy Shield", statOrder = { 867 }, level = 11, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(15-20) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(21-24) to maximum Energy Shield", statOrder = { 867 }, level = 16, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(21-24) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(25-33) to maximum Energy Shield", statOrder = { 867 }, level = 25, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(25-33) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(34-41) to maximum Energy Shield", statOrder = { 867 }, level = 33, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(34-41) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-51) to maximum Energy Shield", statOrder = { 867 }, level = 46, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(42-51) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(52-61) to maximum Energy Shield", statOrder = { 867 }, level = 54, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(52-61) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(62-70) to maximum Energy Shield", statOrder = { 867 }, level = 65, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(62-70) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(71-79) to maximum Energy Shield", statOrder = { 867 }, level = 70, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(71-79) to maximum Energy Shield" }, } }, - ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(80-89) to maximum Energy Shield", statOrder = { 867 }, level = 80, group = "EnergyShield", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3489782002] = { "+(80-89) to maximum Energy Shield" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(10-14)% increased Armour", statOrder = { 864 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(10-14)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(15-20)% increased Armour", statOrder = { 864 }, level = 16, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(15-20)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(21-26)% increased Armour", statOrder = { 864 }, level = 33, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(21-26)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(27-32)% increased Armour", statOrder = { 864 }, level = 46, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(27-32)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(33-38)% increased Armour", statOrder = { 864 }, level = 54, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(33-38)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(39-44)% increased Armour", statOrder = { 864 }, level = 65, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(39-44)% increased Armour" }, } }, - ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(45-50)% increased Armour", statOrder = { 864 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(45-50)% increased Armour" }, } }, - ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(10-14)% increased Evasion Rating", statOrder = { 866 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(10-14)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(15-20)% increased Evasion Rating", statOrder = { 866 }, level = 16, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(15-20)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(21-26)% increased Evasion Rating", statOrder = { 866 }, level = 33, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(21-26)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(27-32)% increased Evasion Rating", statOrder = { 866 }, level = 46, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(27-32)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(33-38)% increased Evasion Rating", statOrder = { 866 }, level = 54, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(33-38)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(39-44)% increased Evasion Rating", statOrder = { 866 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(39-44)% increased Evasion Rating" }, } }, - ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(45-50)% increased Evasion Rating", statOrder = { 866 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(45-50)% increased Evasion Rating" }, } }, - ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(10-14)% increased maximum Energy Shield", statOrder = { 868 }, level = 2, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(10-14)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(15-20)% increased maximum Energy Shield", statOrder = { 868 }, level = 16, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(15-20)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(21-26)% increased maximum Energy Shield", statOrder = { 868 }, level = 33, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(21-26)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(27-32)% increased maximum Energy Shield", statOrder = { 868 }, level = 46, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(27-32)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(33-38)% increased maximum Energy Shield", statOrder = { 868 }, level = 54, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(33-38)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(39-44)% increased maximum Energy Shield", statOrder = { 868 }, level = 65, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(39-44)% increased maximum Energy Shield" }, } }, - ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(45-50)% increased maximum Energy Shield", statOrder = { 868 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(45-50)% increased maximum Energy Shield" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(16-27) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(16-27) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(28-50) to Armour", statOrder = { 831 }, level = 8, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(28-50) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(51-68) to Armour", statOrder = { 831 }, level = 16, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(51-68) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(69-82) to Armour", statOrder = { 831 }, level = 25, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(69-82) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(83-102) to Armour", statOrder = { 831 }, level = 33, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(83-102) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(103-122) to Armour", statOrder = { 831 }, level = 46, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(103-122) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(123-160) to Armour", statOrder = { 831 }, level = 54, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(123-160) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(161-202) to Armour", statOrder = { 831 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(161-202) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(203-225) to Armour", statOrder = { 831 }, level = 65, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(203-225) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(226-256) to Armour", statOrder = { 831 }, level = 75, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(226-256) to Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(257-276) to Armour", statOrder = { 831 }, level = 79, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [3484657501] = { "+(257-276) to Armour" }, } }, - ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(11-18) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(11-18) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(19-39) to Evasion Rating", statOrder = { 832 }, level = 8, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(19-39) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(40-56) to Evasion Rating", statOrder = { 832 }, level = 16, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(40-56) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(57-70) to Evasion Rating", statOrder = { 832 }, level = 25, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(57-70) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(71-88) to Evasion Rating", statOrder = { 832 }, level = 33, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(71-88) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(89-107) to Evasion Rating", statOrder = { 832 }, level = 46, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(89-107) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(108-142) to Evasion Rating", statOrder = { 832 }, level = 54, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(108-142) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(143-181) to Evasion Rating", statOrder = { 832 }, level = 60, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(143-181) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(182-204) to Evasion Rating", statOrder = { 832 }, level = 65, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(182-204) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(205-232) to Evasion Rating", statOrder = { 832 }, level = 75, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(205-232) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(233-251) to Evasion Rating", statOrder = { 832 }, level = 79, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [53045048] = { "+(233-251) to Evasion Rating" }, } }, - ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(10-17) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(10-17) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(18-24) to maximum Energy Shield", statOrder = { 833 }, level = 8, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(18-24) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(25-30) to maximum Energy Shield", statOrder = { 833 }, level = 16, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(25-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(31-35) to maximum Energy Shield", statOrder = { 833 }, level = 25, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(31-35) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(36-41) to maximum Energy Shield", statOrder = { 833 }, level = 33, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(36-41) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-47) to maximum Energy Shield", statOrder = { 833 }, level = 46, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(42-47) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(48-60) to maximum Energy Shield", statOrder = { 833 }, level = 54, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(48-60) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(61-73) to maximum Energy Shield", statOrder = { 833 }, level = 60, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(61-73) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(74-80) to maximum Energy Shield", statOrder = { 833 }, level = 65, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(74-80) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(81-90) to maximum Energy Shield", statOrder = { 833 }, level = 70, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(81-90) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-96) to maximum Energy Shield", statOrder = { 833 }, level = 79, group = "LocalEnergyShield", weightKey = { "focus", "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4052037485] = { "+(91-96) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(8-14) to Armour", "+(6-9) to Evasion Rating", statOrder = { 831, 832 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(8-14) to Armour" }, [53045048] = { "+(6-9) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(15-35) to Armour", "+(10-30) to Evasion Rating", statOrder = { 831, 832 }, level = 16, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(15-35) to Armour" }, [53045048] = { "+(10-30) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(36-53) to Armour", "+(31-46) to Evasion Rating", statOrder = { 831, 832 }, level = 33, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(36-53) to Armour" }, [53045048] = { "+(31-46) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(54-65) to Armour", "+(47-57) to Evasion Rating", statOrder = { 831, 832 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(54-65) to Armour" }, [53045048] = { "+(47-57) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(66-78) to Armour", "+(58-69) to Evasion Rating", statOrder = { 831, 832 }, level = 54, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(66-78) to Armour" }, [53045048] = { "+(58-69) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(79-98) to Armour", "+(70-88) to Evasion Rating", statOrder = { 831, 832 }, level = 60, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(79-98) to Armour" }, [53045048] = { "+(70-88) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(99-117) to Armour", "+(89-107) to Evasion Rating", statOrder = { 831, 832 }, level = 65, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(99-117) to Armour" }, [53045048] = { "+(89-107) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(118-138) to Armour", "+(108-126) to Evasion Rating", statOrder = { 831, 832 }, level = 75, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [3484657501] = { "+(118-138) to Armour" }, [53045048] = { "+(108-126) to Evasion Rating" }, } }, - ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(8-14) to Armour", "+(5-8) to maximum Energy Shield", statOrder = { 831, 833 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(8-14) to Armour" }, [4052037485] = { "+(5-8) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(15-35) to Armour", "+(9-15) to maximum Energy Shield", statOrder = { 831, 833 }, level = 16, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(15-35) to Armour" }, [4052037485] = { "+(9-15) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(36-53) to Armour", "+(16-21) to maximum Energy Shield", statOrder = { 831, 833 }, level = 33, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(36-53) to Armour" }, [4052037485] = { "+(16-21) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(54-65) to Armour", "+(22-25) to maximum Energy Shield", statOrder = { 831, 833 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(54-65) to Armour" }, [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(66-78) to Armour", "+(26-29) to maximum Energy Shield", statOrder = { 831, 833 }, level = 54, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(66-78) to Armour" }, [4052037485] = { "+(26-29) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(79-98) to Armour", "+(30-36) to maximum Energy Shield", statOrder = { 831, 833 }, level = 60, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(79-98) to Armour" }, [4052037485] = { "+(30-36) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(99-117) to Armour", "+(37-42) to maximum Energy Shield", statOrder = { 831, 833 }, level = 65, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(99-117) to Armour" }, [4052037485] = { "+(37-42) to maximum Energy Shield" }, } }, - ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(118-138) to Armour", "+(43-48) to maximum Energy Shield", statOrder = { 831, 833 }, level = 75, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(118-138) to Armour" }, [4052037485] = { "+(43-48) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(6-9) to Evasion Rating", "+(5-8) to maximum Energy Shield", statOrder = { 832, 833 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(6-9) to Evasion Rating" }, [4052037485] = { "+(5-8) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(10-30) to Evasion Rating", "+(9-15) to maximum Energy Shield", statOrder = { 832, 833 }, level = 16, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(10-30) to Evasion Rating" }, [4052037485] = { "+(9-15) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(31-46) to Evasion Rating", "+(16-21) to maximum Energy Shield", statOrder = { 832, 833 }, level = 33, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(31-46) to Evasion Rating" }, [4052037485] = { "+(16-21) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(47-57) to Evasion Rating", "+(22-25) to maximum Energy Shield", statOrder = { 832, 833 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(47-57) to Evasion Rating" }, [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(58-69) to Evasion Rating", "+(26-29) to maximum Energy Shield", statOrder = { 832, 833 }, level = 54, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(58-69) to Evasion Rating" }, [4052037485] = { "+(26-29) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(70-88) to Evasion Rating", "+(30-36) to maximum Energy Shield", statOrder = { 832, 833 }, level = 60, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(70-88) to Evasion Rating" }, [4052037485] = { "+(30-36) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(89-107) to Evasion Rating", "+(37-42) to maximum Energy Shield", statOrder = { 832, 833 }, level = 65, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(89-107) to Evasion Rating" }, [4052037485] = { "+(37-42) to maximum Energy Shield" }, } }, - ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Banshee's", "+(108-126) to Evasion Rating", "+(43-48) to maximum Energy Shield", statOrder = { 832, 833 }, level = 75, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [53045048] = { "+(108-126) to Evasion Rating" }, [4052037485] = { "+(43-48) to maximum Energy Shield" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 834 }, level = 2, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(15-26)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 834 }, level = 16, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(27-42)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 834 }, level = 35, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(43-55)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 834 }, level = 46, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(56-67)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 834 }, level = 54, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(68-79)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 834 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(80-91)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 834 }, level = 65, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(92-100)% increased Armour" }, } }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 834 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(101-110)% increased Armour" }, } }, - ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 835 }, level = 2, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(15-26)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 835 }, level = 16, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(27-42)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 835 }, level = 33, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(43-55)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 835 }, level = 46, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(56-67)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 835 }, level = 54, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(68-79)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 835 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(80-91)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 835 }, level = 65, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(92-100)% increased Evasion Rating" }, } }, - ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 835 }, level = 75, group = "LocalEvasionRatingIncreasePercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(101-110)% increased Evasion Rating" }, } }, - ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(15-26)% increased Energy Shield", statOrder = { 836 }, level = 2, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(15-26)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 836 }, level = 16, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(27-42)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 836 }, level = 33, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(43-55)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 836 }, level = 46, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(56-67)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 836 }, level = 54, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(68-79)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 836 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(80-91)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 836 }, level = 65, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(92-100)% increased Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 836 }, level = 75, group = "LocalEnergyShieldPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(101-110)% increased Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 837 }, level = 2, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(15-26)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 837 }, level = 16, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(27-42)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 837 }, level = 33, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(43-55)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 837 }, level = 46, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(56-67)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 837 }, level = 54, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(68-79)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 837 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(80-91)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 837 }, level = 65, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(92-100)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 837 }, level = 75, group = "LocalArmourAndEvasion", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(101-110)% increased Armour and Evasion" }, } }, - ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 838 }, level = 2, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(15-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 838 }, level = 16, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(27-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 838 }, level = 33, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(43-55)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 838 }, level = 46, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(56-67)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 838 }, level = 54, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(68-79)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 838 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(80-91)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 65, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(92-100)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 838 }, level = 75, group = "LocalArmourAndEnergyShield", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3321629045] = { "(101-110)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 2, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(15-26)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 16, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(27-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 33, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(43-55)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 46, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(56-67)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 54, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(68-79)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(80-91)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 65, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(92-100)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 75, group = "LocalEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHashes = { [1999113824] = { "(101-110)% increased Evasion and Energy Shield" }, } }, - ["LocalArmourAndStunThreshold1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "+(8-13) to Stun Threshold", statOrder = { 834, 994 }, level = 10, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "+(14-24) to Stun Threshold", statOrder = { 834, 994 }, level = 19, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "+(25-40) to Stun Threshold", statOrder = { 834, 994 }, level = 38, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "+(41-63) to Stun Threshold", statOrder = { 834, 994 }, level = 48, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "+(64-94) to Stun Threshold", statOrder = { 834, 994 }, level = 63, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalArmourAndStunThreshold6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "+(95-136) to Stun Threshold", statOrder = { 834, 994 }, level = 74, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "+(8-13) to Stun Threshold", statOrder = { 835, 994 }, level = 10, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "+(14-24) to Stun Threshold", statOrder = { 835, 994 }, level = 19, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "+(25-40) to Stun Threshold", statOrder = { 835, 994 }, level = 38, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "+(41-63) to Stun Threshold", statOrder = { 835, 994 }, level = 48, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "+(64-94) to Stun Threshold", statOrder = { 835, 994 }, level = 63, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "+(95-136) to Stun Threshold", statOrder = { 835, 994 }, level = 74, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 836, 994 }, level = 10, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 836, 994 }, level = 19, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 836, 994 }, level = 38, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 836, 994 }, level = 48, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 836, 994 }, level = 63, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 836, 994 }, level = 74, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Captain's", "(6-13)% increased Armour and Evasion", "+(8-13) to Stun Threshold", statOrder = { 837, 994 }, level = 10, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Commander's", "(14-20)% increased Armour and Evasion", "+(14-24) to Stun Threshold", statOrder = { 837, 994 }, level = 19, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Magnate's", "(21-26)% increased Armour and Evasion", "+(25-40) to Stun Threshold", statOrder = { 837, 994 }, level = 38, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Marshal's", "(27-32)% increased Armour and Evasion", "+(41-63) to Stun Threshold", statOrder = { 837, 994 }, level = 48, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold5"] = { type = "Prefix", affix = "General's", "(33-38)% increased Armour and Evasion", "+(64-94) to Stun Threshold", statOrder = { 837, 994 }, level = 63, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, - ["LocalArmourAndEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Warlord's", "(39-42)% increased Armour and Evasion", "+(95-136) to Stun Threshold", statOrder = { 837, 994 }, level = 74, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Defender's", "(6-13)% increased Armour and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 838, 994 }, level = 10, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(8-13) to Stun Threshold" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Protector's", "(14-20)% increased Armour and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 838, 994 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(14-24) to Stun Threshold" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Keeper's", "(21-26)% increased Armour and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 838, 994 }, level = 38, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(25-40) to Stun Threshold" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Guardian's", "(27-32)% increased Armour and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 838, 994 }, level = 48, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(41-63) to Stun Threshold" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Warden's", "(33-38)% increased Armour and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 838, 994 }, level = 63, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(64-94) to Stun Threshold" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalArmourAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Sentinel's", "(39-42)% increased Armour and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 838, 994 }, level = 74, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(95-136) to Stun Threshold" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Intuitive", "(6-13)% increased Evasion and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 839, 994 }, level = 10, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(8-13) to Stun Threshold" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Psychic", "(14-20)% increased Evasion and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 839, 994 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(14-24) to Stun Threshold" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Telepath's", "(21-26)% increased Evasion and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 839, 994 }, level = 38, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(25-40) to Stun Threshold" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Illusionist's", "(27-32)% increased Evasion and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 839, 994 }, level = 48, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(41-63) to Stun Threshold" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Mentalist's", "(33-38)% increased Evasion and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 839, 994 }, level = 63, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(64-94) to Stun Threshold" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, - ["LocalEvasionAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Trickster's", "(39-42)% increased Evasion and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 839, 994 }, level = 74, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(95-136) to Stun Threshold" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "(6-13)% increased Armour", "+(7-10) to maximum Life", statOrder = { 834, 869 }, level = 8, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "(14-20)% increased Armour", "+(11-19) to maximum Life", statOrder = { 834, 869 }, level = 16, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "(21-26)% increased Armour", "+(20-25) to maximum Life", statOrder = { 834, 869 }, level = 33, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "(27-32)% increased Armour", "+(26-32) to maximum Life", statOrder = { 834, 869 }, level = 46, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "(33-38)% increased Armour", "+(33-41) to maximum Life", statOrder = { 834, 869 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "(39-42)% increased Armour", "+(42-49) to maximum Life", statOrder = { 834, 869 }, level = 78, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "resource", "life", "defences" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "(6-13)% increased Evasion Rating", "+(7-10) to maximum Life", statOrder = { 835, 869 }, level = 8, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "(14-20)% increased Evasion Rating", "+(11-19) to maximum Life", statOrder = { 835, 869 }, level = 16, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "(21-26)% increased Evasion Rating", "+(20-25) to maximum Life", statOrder = { 835, 869 }, level = 33, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "(27-32)% increased Evasion Rating", "+(26-32) to maximum Life", statOrder = { 835, 869 }, level = 46, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "(33-38)% increased Evasion Rating", "+(33-41) to maximum Life", statOrder = { 835, 869 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "(39-42)% increased Evasion Rating", "+(42-49) to maximum Life", statOrder = { 835, 869 }, level = 78, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "evasion", "resource", "life", "defences" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "(6-13)% increased Energy Shield", "+(7-10) to maximum Life", statOrder = { 836, 869 }, level = 8, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "(14-20)% increased Energy Shield", "+(11-19) to maximum Life", statOrder = { 836, 869 }, level = 16, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "(21-26)% increased Energy Shield", "+(20-25) to maximum Life", statOrder = { 836, 869 }, level = 33, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "(27-32)% increased Energy Shield", "+(26-32) to maximum Life", statOrder = { 836, 869 }, level = 46, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "(33-38)% increased Energy Shield", "+(33-41) to maximum Life", statOrder = { 836, 869 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "(39-42)% increased Energy Shield", "+(42-49) to maximum Life", statOrder = { 836, 869 }, level = 78, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "(6-13)% increased Armour and Evasion", "+(7-10) to maximum Life", statOrder = { 837, 869 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "(14-20)% increased Armour and Evasion", "+(11-19) to maximum Life", statOrder = { 837, 869 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "(21-26)% increased Armour and Evasion", "+(20-25) to maximum Life", statOrder = { 837, 869 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "(27-32)% increased Armour and Evasion", "+(26-32) to maximum Life", statOrder = { 837, 869 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "(33-38)% increased Armour and Evasion", "+(33-41) to maximum Life", statOrder = { 837, 869 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "(39-42)% increased Armour and Evasion", "+(42-49) to maximum Life", statOrder = { 837, 869 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "life", "defences" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "(6-13)% increased Armour and Energy Shield", "+(7-10) to maximum Life", statOrder = { 838, 869 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(7-10) to maximum Life" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "(14-20)% increased Armour and Energy Shield", "+(11-19) to maximum Life", statOrder = { 838, 869 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(11-19) to maximum Life" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "(21-26)% increased Armour and Energy Shield", "+(20-25) to maximum Life", statOrder = { 838, 869 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(20-25) to maximum Life" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "(27-32)% increased Armour and Energy Shield", "+(26-32) to maximum Life", statOrder = { 838, 869 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(26-32) to maximum Life" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "(33-38)% increased Armour and Energy Shield", "+(33-41) to maximum Life", statOrder = { 838, 869 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(33-41) to maximum Life" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "(39-42)% increased Armour and Energy Shield", "+(42-49) to maximum Life", statOrder = { 838, 869 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(42-49) to maximum Life" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "(6-13)% increased Evasion and Energy Shield", "+(7-10) to maximum Life", statOrder = { 839, 869 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(7-10) to maximum Life" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "(14-20)% increased Evasion and Energy Shield", "+(11-19) to maximum Life", statOrder = { 839, 869 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(11-19) to maximum Life" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "(21-26)% increased Evasion and Energy Shield", "+(20-25) to maximum Life", statOrder = { 839, 869 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(20-25) to maximum Life" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "(27-32)% increased Evasion and Energy Shield", "+(26-32) to maximum Life", statOrder = { 839, 869 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(26-32) to maximum Life" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "(33-38)% increased Evasion and Energy Shield", "+(33-41) to maximum Life", statOrder = { 839, 869 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(33-41) to maximum Life" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "(39-42)% increased Evasion and Energy Shield", "+(42-49) to maximum Life", statOrder = { 839, 869 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "life", "defences" }, tradeHashes = { [3299347043] = { "+(42-49) to maximum Life" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndMana1"] = { type = "Prefix", affix = "Imposing", "(6-13)% increased Armour", "+(6-8) to maximum Mana", statOrder = { 834, 871 }, level = 8, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana2"] = { type = "Prefix", affix = "Venerable", "(14-20)% increased Armour", "+(9-16) to maximum Mana", statOrder = { 834, 871 }, level = 16, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana3"] = { type = "Prefix", affix = "Regal", "(21-26)% increased Armour", "+(17-20) to maximum Mana", statOrder = { 834, 871 }, level = 33, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana4"] = { type = "Prefix", affix = "Colossal", "(27-32)% increased Armour", "+(21-26) to maximum Mana", statOrder = { 834, 871 }, level = 46, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana5"] = { type = "Prefix", affix = "Chieftain's", "(33-38)% increased Armour", "+(27-32) to maximum Mana", statOrder = { 834, 871 }, level = 60, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndMana6"] = { type = "Prefix", affix = "Ancestral", "(39-42)% increased Armour", "+(33-39) to maximum Mana", statOrder = { 834, 871 }, level = 78, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "resource", "mana", "defences" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana1"] = { type = "Prefix", affix = "Nomad's", "(6-13)% increased Evasion Rating", "+(6-8) to maximum Mana", statOrder = { 835, 871 }, level = 8, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana2"] = { type = "Prefix", affix = "Drifter's", "(14-20)% increased Evasion Rating", "+(9-16) to maximum Mana", statOrder = { 835, 871 }, level = 16, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana3"] = { type = "Prefix", affix = "Traveller's", "(21-26)% increased Evasion Rating", "+(17-20) to maximum Mana", statOrder = { 835, 871 }, level = 33, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana4"] = { type = "Prefix", affix = "Explorer's", "(27-32)% increased Evasion Rating", "+(21-26) to maximum Mana", statOrder = { 835, 871 }, level = 46, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana5"] = { type = "Prefix", affix = "Wayfarer's", "(33-38)% increased Evasion Rating", "+(27-32) to maximum Mana", statOrder = { 835, 871 }, level = 60, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedEvasionAndMana6"] = { type = "Prefix", affix = "Wanderer's", "(39-42)% increased Evasion Rating", "+(33-39) to maximum Mana", statOrder = { 835, 871 }, level = 78, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "resource", "mana", "defences" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana1"] = { type = "Prefix", affix = "Imbued", "(6-13)% increased Energy Shield", "+(6-8) to maximum Mana", statOrder = { 836, 871 }, level = 8, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana2"] = { type = "Prefix", affix = "Serene", "(14-20)% increased Energy Shield", "+(9-16) to maximum Mana", statOrder = { 836, 871 }, level = 16, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana3"] = { type = "Prefix", affix = "Sacred", "(21-26)% increased Energy Shield", "+(17-20) to maximum Mana", statOrder = { 836, 871 }, level = 33, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana4"] = { type = "Prefix", affix = "Celestial", "(27-32)% increased Energy Shield", "+(21-26) to maximum Mana", statOrder = { 836, 871 }, level = 46, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana5"] = { type = "Prefix", affix = "Heavenly", "(33-38)% increased Energy Shield", "+(27-32) to maximum Mana", statOrder = { 836, 871 }, level = 60, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedEnergyShieldAndMana6"] = { type = "Prefix", affix = "Angel's", "(39-42)% increased Energy Shield", "+(33-39) to maximum Mana", statOrder = { 836, 871 }, level = 78, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana1"] = { type = "Prefix", affix = "Rhoa's", "(6-13)% increased Armour and Evasion", "+(6-8) to maximum Mana", statOrder = { 837, 871 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana2"] = { type = "Prefix", affix = "Rhex's", "(14-20)% increased Armour and Evasion", "+(9-16) to maximum Mana", statOrder = { 837, 871 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana3"] = { type = "Prefix", affix = "Chimeral's", "(21-26)% increased Armour and Evasion", "+(17-20) to maximum Mana", statOrder = { 837, 871 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana4"] = { type = "Prefix", affix = "Bull's", "(27-32)% increased Armour and Evasion", "+(21-26) to maximum Mana", statOrder = { 837, 871 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana5"] = { type = "Prefix", affix = "Minotaur's", "(33-38)% increased Armour and Evasion", "+(27-32) to maximum Mana", statOrder = { 837, 871 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEvasionAndMana6"] = { type = "Prefix", affix = "Cerberus'", "(39-42)% increased Armour and Evasion", "+(33-39) to maximum Mana", statOrder = { 837, 871 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "resource", "mana", "defences" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Coelacanth's", "(6-13)% increased Armour and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 838, 871 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(6-8) to maximum Mana" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Swordfish's", "(14-20)% increased Armour and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 838, 871 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(9-16) to maximum Mana" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Shark's", "(21-26)% increased Armour and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 838, 871 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Dolphin's", "(27-32)% increased Armour and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 838, 871 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(21-26) to maximum Mana" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Orca's", "(33-38)% increased Armour and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 838, 871 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(27-32) to maximum Mana" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Whale's", "(39-42)% increased Armour and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 838, 871 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(33-39) to maximum Mana" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Vulture's", "(6-13)% increased Evasion and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 839, 871 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(6-8) to maximum Mana" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Kingfisher's", "(14-20)% increased Evasion and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 839, 871 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(9-16) to maximum Mana" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Owl's", "(21-26)% increased Evasion and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 839, 871 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Hawk's", "(27-32)% increased Evasion and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 839, 871 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(21-26) to maximum Mana" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Eagle's", "(33-38)% increased Evasion and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 839, 871 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(27-32) to maximum Mana" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Falcon's", "(39-42)% increased Evasion and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 839, 871 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "evasion", "resource", "mana", "defences" }, tradeHashes = { [1050105434] = { "+(33-39) to maximum Mana" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndBase1"] = { type = "Prefix", affix = "Abalone's", "+(7-11) to Armour", "(6-13)% increased Armour", statOrder = { 831, 834 }, level = 8, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [3484657501] = { "+(7-11) to Armour" }, } }, - ["LocalIncreasedArmourAndBase2"] = { type = "Prefix", affix = "Snail's", "+(12-29) to Armour", "(14-20)% increased Armour", statOrder = { 831, 834 }, level = 16, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [3484657501] = { "+(12-29) to Armour" }, } }, - ["LocalIncreasedArmourAndBase3"] = { type = "Prefix", affix = "Tortoise's", "+(30-39) to Armour", "(21-26)% increased Armour", statOrder = { 831, 834 }, level = 33, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [3484657501] = { "+(30-39) to Armour" }, } }, - ["LocalIncreasedArmourAndBase4"] = { type = "Prefix", affix = "Pangolin's", "+(40-53) to Armour", "(27-32)% increased Armour", statOrder = { 831, 834 }, level = 46, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [3484657501] = { "+(40-53) to Armour" }, } }, - ["LocalIncreasedArmourAndBase5"] = { type = "Prefix", affix = "Shelled", "+(54-69) to Armour", "(33-38)% increased Armour", statOrder = { 831, 834 }, level = 60, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [3484657501] = { "+(54-69) to Armour" }, } }, - ["LocalIncreasedArmourAndBase6"] = { type = "Prefix", affix = "Hardened", "+(70-86) to Armour", "(39-42)% increased Armour", statOrder = { 831, 834 }, level = 78, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [3484657501] = { "+(70-86) to Armour" }, } }, - ["LocalIncreasedEvasionAndBase1"] = { type = "Prefix", affix = "Impala's", "+(5-8) to Evasion Rating", "(6-13)% increased Evasion Rating", statOrder = { 832, 835 }, level = 8, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [53045048] = { "+(5-8) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase2"] = { type = "Prefix", affix = "Buck's", "+(9-24) to Evasion Rating", "(14-20)% increased Evasion Rating", statOrder = { 832, 835 }, level = 16, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [53045048] = { "+(9-24) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase3"] = { type = "Prefix", affix = "Moose's", "+(25-34) to Evasion Rating", "(21-26)% increased Evasion Rating", statOrder = { 832, 835 }, level = 33, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [53045048] = { "+(25-34) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase4"] = { type = "Prefix", affix = "Deer's", "+(35-47) to Evasion Rating", "(27-32)% increased Evasion Rating", statOrder = { 832, 835 }, level = 46, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [53045048] = { "+(35-47) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase5"] = { type = "Prefix", affix = "Caribou's", "+(48-62) to Evasion Rating", "(33-38)% increased Evasion Rating", statOrder = { 832, 835 }, level = 60, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [53045048] = { "+(48-62) to Evasion Rating" }, } }, - ["LocalIncreasedEvasionAndBase6"] = { type = "Prefix", affix = "Antelope's", "+(63-79) to Evasion Rating", "(39-42)% increased Evasion Rating", statOrder = { 832, 835 }, level = 78, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [53045048] = { "+(63-79) to Evasion Rating" }, } }, - ["LocalIncreasedEnergyShieldAndBase1"] = { type = "Prefix", affix = "Deacon's", "+(4-7) to maximum Energy Shield", "(6-13)% increased Energy Shield", statOrder = { 833, 836 }, level = 8, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [4052037485] = { "+(4-7) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase2"] = { type = "Prefix", affix = "Cardinal's", "+(8-13) to maximum Energy Shield", "(14-20)% increased Energy Shield", statOrder = { 833, 836 }, level = 16, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [4052037485] = { "+(8-13) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase3"] = { type = "Prefix", affix = "Priest's", "+(14-16) to maximum Energy Shield", "(21-26)% increased Energy Shield", statOrder = { 833, 836 }, level = 33, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [4052037485] = { "+(14-16) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase4"] = { type = "Prefix", affix = "High Priest's", "+(17-20) to maximum Energy Shield", "(27-32)% increased Energy Shield", statOrder = { 833, 836 }, level = 46, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [4052037485] = { "+(17-20) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase5"] = { type = "Prefix", affix = "Archon's", "+(21-25) to maximum Energy Shield", "(33-38)% increased Energy Shield", statOrder = { 833, 836 }, level = 60, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [4052037485] = { "+(21-25) to maximum Energy Shield" }, } }, - ["LocalIncreasedEnergyShieldAndBase6"] = { type = "Prefix", affix = "Divine", "+(26-30) to maximum Energy Shield", "(39-42)% increased Energy Shield", statOrder = { 833, 836 }, level = 78, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [4052037485] = { "+(26-30) to maximum Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase1"] = { type = "Prefix", affix = "Swordsman's", "+(4-6) to Armour", "+(3-5) to Evasion Rating", "(6-13)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [53045048] = { "+(3-5) to Evasion Rating" }, [3484657501] = { "+(4-6) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase2"] = { type = "Prefix", affix = "Fighter's", "+(7-15) to Armour", "+(6-12) to Evasion Rating", "(14-20)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [53045048] = { "+(6-12) to Evasion Rating" }, [3484657501] = { "+(7-15) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase3"] = { type = "Prefix", affix = "Veteran's", "+(16-20) to Armour", "+(13-17) to Evasion Rating", "(21-26)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [53045048] = { "+(13-17) to Evasion Rating" }, [3484657501] = { "+(16-20) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase4"] = { type = "Prefix", affix = "Warrior's", "+(21-27) to Armour", "+(18-24) to Evasion Rating", "(27-32)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [53045048] = { "+(18-24) to Evasion Rating" }, [3484657501] = { "+(21-27) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase5"] = { type = "Prefix", affix = "Knight's", "+(28-34) to Armour", "+(25-31) to Evasion Rating", "(33-38)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [53045048] = { "+(25-31) to Evasion Rating" }, [3484657501] = { "+(28-34) to Armour" }, } }, - ["LocalIncreasedArmourAndEvasionAndBase6"] = { type = "Prefix", affix = "Centurion's", "+(35-43) to Armour", "+(32-39) to Evasion Rating", "(39-42)% increased Armour and Evasion", statOrder = { 831, 832, 837 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [53045048] = { "+(32-39) to Evasion Rating" }, [3484657501] = { "+(35-43) to Armour" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Faithful", "+(4-6) to Armour", "+(2-4) to maximum Energy Shield", "(6-13)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(4-6) to Armour" }, [4052037485] = { "+(2-4) to maximum Energy Shield" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Noble's", "+(7-15) to Armour", "+(5-6) to maximum Energy Shield", "(14-20)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(7-15) to Armour" }, [4052037485] = { "+(5-6) to maximum Energy Shield" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Inquisitor's", "+(16-20) to Armour", "+(7-8) to maximum Energy Shield", "(21-26)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(16-20) to Armour" }, [4052037485] = { "+(7-8) to maximum Energy Shield" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Crusader's", "+(21-27) to Armour", "+(9-10) to maximum Energy Shield", "(27-32)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(21-27) to Armour" }, [4052037485] = { "+(9-10) to maximum Energy Shield" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Paladin's", "+(28-34) to Armour", "+(11-12) to maximum Energy Shield", "(33-38)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(28-34) to Armour" }, [4052037485] = { "+(11-12) to maximum Energy Shield" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Grand", "+(35-43) to Armour", "+(13-15) to maximum Energy Shield", "(39-42)% increased Armour and Energy Shield", statOrder = { 831, 833, 838 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3484657501] = { "+(35-43) to Armour" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Pursuer's", "+(3-5) to Evasion Rating", "+(2-4) to maximum Energy Shield", "(6-13)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(3-5) to Evasion Rating" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, [4052037485] = { "+(2-4) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Tracker's", "+(6-12) to Evasion Rating", "+(5-6) to maximum Energy Shield", "(14-20)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(6-12) to Evasion Rating" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, [4052037485] = { "+(5-6) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Chaser's", "+(13-17) to Evasion Rating", "+(7-8) to maximum Energy Shield", "(21-26)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(13-17) to Evasion Rating" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, [4052037485] = { "+(7-8) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Phantom's", "+(18-24) to Evasion Rating", "+(9-10) to maximum Energy Shield", "(27-32)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(18-24) to Evasion Rating" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, [4052037485] = { "+(9-10) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Rogue's", "+(25-31) to Evasion Rating", "+(11-12) to maximum Energy Shield", "(33-38)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(25-31) to Evasion Rating" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, [4052037485] = { "+(11-12) to maximum Energy Shield" }, } }, - ["LocalIncreasedEvasionAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Stalker's", "+(32-39) to Evasion Rating", "+(13-15) to maximum Energy Shield", "(39-42)% increased Evasion and Energy Shield", statOrder = { 832, 833, 839 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "evasion", "energy_shield", "defences" }, tradeHashes = { [53045048] = { "+(32-39) to Evasion Rating" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 2, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(15-26)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 16, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 33, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(43-55)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 46, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 54, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Incorporeal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 65, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(92-100)% increased Armour, Evasion and Energy Shield" }, } }, - ["LocalIncreasedArmourAndEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Ascendant", "(101-110)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 75, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHashes = { [3523867985] = { "(101-110)% increased Armour, Evasion and Energy Shield" }, } }, - ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "15% reduced Attribute Requirements", statOrder = { 921 }, level = 24, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "15% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "20% reduced Attribute Requirements", statOrder = { 921 }, level = 32, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "20% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements3"] = { type = "Suffix", affix = "of the Talented", "25% reduced Attribute Requirements", statOrder = { 921 }, level = 40, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements4"] = { type = "Suffix", affix = "of the Skilled", "30% reduced Attribute Requirements", statOrder = { 921 }, level = 52, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "30% reduced Attribute Requirements" }, } }, - ["ReducedLocalAttributeRequirements5"] = { type = "Suffix", affix = "of the Proficient", "35% reduced Attribute Requirements", statOrder = { 921 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "35% reduced Attribute Requirements" }, } }, - ["StunThreshold1"] = { type = "Suffix", affix = "of Thick Skin", "+(6-11) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(6-11) to Stun Threshold" }, } }, - ["StunThreshold2"] = { type = "Suffix", affix = "of Reinforced Skin", "+(12-29) to Stun Threshold", statOrder = { 994 }, level = 8, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(12-29) to Stun Threshold" }, } }, - ["StunThreshold3"] = { type = "Suffix", affix = "of Stone Skin", "+(30-49) to Stun Threshold", statOrder = { 994 }, level = 15, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(30-49) to Stun Threshold" }, } }, - ["StunThreshold4"] = { type = "Suffix", affix = "of Iron Skin", "+(50-72) to Stun Threshold", statOrder = { 994 }, level = 22, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(50-72) to Stun Threshold" }, } }, - ["StunThreshold5"] = { type = "Suffix", affix = "of Steel Skin", "+(73-97) to Stun Threshold", statOrder = { 994 }, level = 29, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(73-97) to Stun Threshold" }, } }, - ["StunThreshold6"] = { type = "Suffix", affix = "of Granite Skin", "+(98-124) to Stun Threshold", statOrder = { 994 }, level = 36, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(98-124) to Stun Threshold" }, } }, - ["StunThreshold7"] = { type = "Suffix", affix = "of Platinum Skin", "+(125-163) to Stun Threshold", statOrder = { 994 }, level = 45, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(125-163) to Stun Threshold" }, } }, - ["StunThreshold8"] = { type = "Suffix", affix = "of Adamantite Skin", "+(164-206) to Stun Threshold", statOrder = { 994 }, level = 54, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(164-206) to Stun Threshold" }, } }, - ["StunThreshold9"] = { type = "Suffix", affix = "of Corundum Skin", "+(207-253) to Stun Threshold", statOrder = { 994 }, level = 63, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(207-253) to Stun Threshold" }, } }, - ["StunThreshold10"] = { type = "Suffix", affix = "of Obsidian Skin", "+(254-304) to Stun Threshold", statOrder = { 994 }, level = 72, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(254-304) to Stun Threshold" }, } }, - ["StunThreshold11"] = { type = "Suffix", affix = "of Titanium Skin", "+(305-352) to Stun Threshold", statOrder = { 994 }, level = 80, group = "StunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(305-352) to Stun Threshold" }, } }, - ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, - ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 827 }, level = 16, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, - ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 827 }, level = 33, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, - ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 827 }, level = 46, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, - ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 827 }, level = 65, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, - ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 827 }, level = 82, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "35% increased Movement Speed" }, } }, - ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "(1-2) to (3-4) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(1-2) to (3-4) Physical Thorns damage" }, } }, - ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "(5-7) to (7-10) Physical Thorns damage", statOrder = { 9653 }, level = 10, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(5-7) to (7-10) Physical Thorns damage" }, } }, - ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "(11-16) to (15-23) Physical Thorns damage", statOrder = { 9653 }, level = 19, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(11-16) to (15-23) Physical Thorns damage" }, } }, - ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Pointed", "(24-35) to (35-53) Physical Thorns damage", statOrder = { 9653 }, level = 38, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (35-53) Physical Thorns damage" }, } }, - ["AttackerTakesDamage5"] = { type = "Prefix", affix = "Spiked", "(40-60) to (61-92) Physical Thorns damage", statOrder = { 9653 }, level = 48, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(40-60) to (61-92) Physical Thorns damage" }, } }, - ["AttackerTakesDamage6"] = { type = "Prefix", affix = "Edged", "(64-97) to (97-145) Physical Thorns damage", statOrder = { 9653 }, level = 63, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(64-97) to (97-145) Physical Thorns damage" }, } }, - ["AttackerTakesDamage7"] = { type = "Prefix", affix = "Jagged", "(101-151) to (146-220) Physical Thorns damage", statOrder = { 9653 }, level = 74, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(101-151) to (146-220) Physical Thorns damage" }, } }, - ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (1-2) to 3 Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-6) Physical Damage to Attacks", statOrder = { 843 }, level = 8, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (4-6) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (2-4) to (5-8) Physical Damage to Attacks", statOrder = { 843 }, level = 16, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-4) to (5-8) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (8-11) Physical Damage to Attacks", statOrder = { 843 }, level = 33, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (8-11) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 843 }, level = 46, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (9-13) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-10) to (12-17) Physical Damage to Attacks", statOrder = { 843 }, level = 54, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (12-17) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 843 }, level = 60, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-11) to (14-20) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (10-15) to (18-26) Physical Damage to Attacks", statOrder = { 843 }, level = 65, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (10-15) to (18-26) Physical Damage to Attacks" }, } }, - ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (12-19) to (22-32) Physical Damage to Attacks", statOrder = { 843 }, level = 75, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (12-19) to (22-32) Physical Damage to Attacks" }, } }, - ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire damage to Attacks", statOrder = { 844 }, level = 1, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (1-2) to 3 Fire damage to Attacks" }, } }, - ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 844 }, level = 8, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (3-5) to (6-9) Fire damage to Attacks" }, } }, - ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (6-8) to (10-13) Fire damage to Attacks", statOrder = { 844 }, level = 16, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (10-13) Fire damage to Attacks" }, } }, - ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (9-11) to (14-17) Fire damage to Attacks", statOrder = { 844 }, level = 33, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-11) to (14-17) Fire damage to Attacks" }, } }, - ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (12-13) to (18-20) Fire damage to Attacks", statOrder = { 844 }, level = 46, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (12-13) to (18-20) Fire damage to Attacks" }, } }, - ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-16) to (21-26) Fire damage to Attacks", statOrder = { 844 }, level = 54, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (11-16) to (21-26) Fire damage to Attacks" }, } }, - ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-19) to (27-32) Fire damage to Attacks", statOrder = { 844 }, level = 60, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-19) to (27-32) Fire damage to Attacks" }, } }, - ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (20-24) to (33-36) Fire damage to Attacks", statOrder = { 844 }, level = 65, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (20-24) to (33-36) Fire damage to Attacks" }, } }, - ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (25-29) to (37-45) Fire damage to Attacks", statOrder = { 844 }, level = 75, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (25-29) to (37-45) Fire damage to Attacks" }, } }, - ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold damage to Attacks", statOrder = { 845 }, level = 1, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 1 to (2-3) Cold damage to Attacks" }, } }, - ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 845 }, level = 8, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-4) to (5-8) Cold damage to Attacks" }, } }, - ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-6) to (9-11) Cold damage to Attacks", statOrder = { 845 }, level = 16, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (5-6) to (9-11) Cold damage to Attacks" }, } }, - ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (7-8) to (12-14) Cold damage to Attacks", statOrder = { 845 }, level = 33, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-8) to (12-14) Cold damage to Attacks" }, } }, - ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (9-10) to (15-17) Cold damage to Attacks", statOrder = { 845 }, level = 46, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (9-10) to (15-17) Cold damage to Attacks" }, } }, - ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (11-13) to (18-21) Cold damage to Attacks", statOrder = { 845 }, level = 54, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (11-13) to (18-21) Cold damage to Attacks" }, } }, - ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (14-15) to (22-24) Cold damage to Attacks", statOrder = { 845 }, level = 60, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (14-15) to (22-24) Cold damage to Attacks" }, } }, - ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (16-20) to (25-31) Cold damage to Attacks", statOrder = { 845 }, level = 65, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (16-20) to (25-31) Cold damage to Attacks" }, } }, - ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (21-24) to (32-37) Cold damage to Attacks", statOrder = { 845 }, level = 75, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (21-24) to (32-37) Cold damage to Attacks" }, } }, - ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning damage to Attacks", statOrder = { 846 }, level = 1, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (4-6) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (10-15) Lightning damage to Attacks", statOrder = { 846 }, level = 8, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (10-15) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 1 to (16-22) Lightning damage to Attacks", statOrder = { 846 }, level = 16, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (16-22) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 1 to (23-27) Lightning damage to Attacks", statOrder = { 846 }, level = 33, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (23-27) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds 1 to (28-32) Lightning damage to Attacks", statOrder = { 846 }, level = 46, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (28-32) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-2) to (33-40) Lightning damage to Attacks", statOrder = { 846 }, level = 54, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (33-40) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-2) to (41-47) Lightning damage to Attacks", statOrder = { 846 }, level = 60, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (41-47) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-3) to (48-59) Lightning damage to Attacks", statOrder = { 846 }, level = 65, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (48-59) Lightning damage to Attacks" }, } }, - ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-4) to (60-71) Lightning damage to Attacks", statOrder = { 846 }, level = 75, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (60-71) Lightning damage to Attacks" }, } }, - ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (4-5) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (1-2) to (4-5) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-6) to (7-11) Physical Damage", statOrder = { 822 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-6) to (7-11) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (11-16) Physical Damage", statOrder = { 822 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-9) to (11-16) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (14-21) Physical Damage", statOrder = { 822 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (14-21) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (10-15) to (18-26) Physical Damage", statOrder = { 822 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-15) to (18-26) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-20) to (23-35) Physical Damage", statOrder = { 822 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-20) to (23-35) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-24) to (28-42) Physical Damage", statOrder = { 822 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-24) to (28-42) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (21-31) to (36-53) Physical Damage", statOrder = { 822 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (21-31) to (36-53) Physical Damage" }, } }, - ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (26-39) to (44-66) Physical Damage", statOrder = { 822 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (26-39) to (44-66) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds (2-3) to (5-7) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-3) to (5-7) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (5-8) to (10-15) Physical Damage", statOrder = { 822 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (10-15) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (8-12) to (15-22) Physical Damage", statOrder = { 822 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (15-22) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (11-17) to (20-30) Physical Damage", statOrder = { 822 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-17) to (20-30) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (14-21) to (25-37) Physical Damage", statOrder = { 822 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-21) to (25-37) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (19-29) to (33-49) Physical Damage", statOrder = { 822 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (19-29) to (33-49) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (23-35) to (39-59) Physical Damage", statOrder = { 822 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (23-35) to (39-59) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (29-44) to (50-75) Physical Damage", statOrder = { 822 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (29-44) to (50-75) Physical Damage" }, } }, - ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (37-55) to (63-94) Physical Damage", statOrder = { 822 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (37-55) to (63-94) Physical Damage" }, } }, - ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-5) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (1-2) to (3-5) Fire Damage" }, } }, - ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (4-6) to (7-10) Fire Damage", statOrder = { 823 }, level = 8, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (4-6) to (7-10) Fire Damage" }, } }, - ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (7-11) to (13-19) Fire Damage", statOrder = { 823 }, level = 16, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (7-11) to (13-19) Fire Damage" }, } }, - ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-19) to (21-29) Fire Damage", statOrder = { 823 }, level = 33, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-19) to (21-29) Fire Damage" }, } }, - ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (20-24) to (32-37) Fire Damage", statOrder = { 823 }, level = 46, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (20-24) to (32-37) Fire Damage" }, } }, - ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (25-33) to (38-54) Fire Damage", statOrder = { 823 }, level = 54, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (25-33) to (38-54) Fire Damage" }, } }, - ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (35-44) to (56-71) Fire Damage", statOrder = { 823 }, level = 60, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (35-44) to (56-71) Fire Damage" }, } }, - ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (47-59) to (74-97) Fire Damage", statOrder = { 823 }, level = 65, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (47-59) to (74-97) Fire Damage" }, } }, - ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (62-85) to (101-129) Fire Damage", statOrder = { 823 }, level = 75, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (62-85) to (101-129) Fire Damage" }, } }, - ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (88-101) to (133-154) Fire Damage", statOrder = { 823 }, level = 81, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (88-101) to (133-154) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (2-4) to (5-7) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (6-9) to (10-16) Fire Damage", statOrder = { 823 }, level = 8, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (6-9) to (10-16) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (11-17) to (19-28) Fire Damage", statOrder = { 823 }, level = 16, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (11-17) to (19-28) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (19-27) to (30-42) Fire Damage", statOrder = { 823 }, level = 33, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (19-27) to (30-42) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (30-37) to (45-56) Fire Damage", statOrder = { 823 }, level = 46, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (30-37) to (45-56) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (39-53) to (59-80) Fire Damage", statOrder = { 823 }, level = 54, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (39-53) to (59-80) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (56-70) to (84-107) Fire Damage", statOrder = { 823 }, level = 60, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (56-70) to (84-107) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (73-97) to (112-149) Fire Damage", statOrder = { 823 }, level = 65, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (73-97) to (112-149) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (102-130) to (155-198) Fire Damage", statOrder = { 823 }, level = 75, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (102-130) to (155-198) Fire Damage" }, } }, - ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (135-156) to (205-236) Fire Damage", statOrder = { 823 }, level = 81, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (135-156) to (205-236) Fire Damage" }, } }, - ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (1-2) to (3-4) Cold Damage" }, } }, - ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-5) to (6-9) Cold Damage", statOrder = { 824 }, level = 8, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (3-5) to (6-9) Cold Damage" }, } }, - ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (6-9) to (10-16) Cold Damage", statOrder = { 824 }, level = 16, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-9) to (10-16) Cold Damage" }, } }, - ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (17-24) Cold Damage", statOrder = { 824 }, level = 33, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (17-24) Cold Damage" }, } }, - ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (17-20) to (26-32) Cold Damage", statOrder = { 824 }, level = 46, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (17-20) to (26-32) Cold Damage" }, } }, - ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (22-29) to (34-44) Cold Damage", statOrder = { 824 }, level = 54, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (22-29) to (34-44) Cold Damage" }, } }, - ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (31-38) to (47-59) Cold Damage", statOrder = { 824 }, level = 60, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (31-38) to (47-59) Cold Damage" }, } }, - ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (40-53) to (62-80) Cold Damage", statOrder = { 824 }, level = 65, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (40-53) to (62-80) Cold Damage" }, } }, - ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (55-69) to (83-106) Cold Damage", statOrder = { 824 }, level = 75, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (55-69) to (83-106) Cold Damage" }, } }, - ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (72-81) to (110-123) Cold Damage", statOrder = { 824 }, level = 81, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (72-81) to (110-123) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (4-6) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (2-3) to (4-6) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (5-8) to (9-14) Cold Damage", statOrder = { 824 }, level = 8, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (5-8) to (9-14) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (10-14) to (15-23) Cold Damage", statOrder = { 824 }, level = 16, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-14) to (15-23) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-23) to (25-35) Cold Damage", statOrder = { 824 }, level = 33, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-23) to (25-35) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (25-30) to (38-46) Cold Damage", statOrder = { 824 }, level = 46, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (25-30) to (38-46) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-43) to (49-66) Cold Damage", statOrder = { 824 }, level = 54, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (32-43) to (49-66) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (46-57) to (70-88) Cold Damage", statOrder = { 824 }, level = 60, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (46-57) to (70-88) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (60-80) to (92-121) Cold Damage", statOrder = { 824 }, level = 65, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (60-80) to (92-121) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (84-107) to (126-161) Cold Damage", statOrder = { 824 }, level = 75, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (84-107) to (126-161) Cold Damage" }, } }, - ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (112-124) to (168-189) Cold Damage", statOrder = { 824 }, level = 81, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (112-124) to (168-189) Cold Damage" }, } }, - ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (4-6) Lightning Damage" }, } }, - ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (13-19) Lightning Damage", statOrder = { 825 }, level = 8, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (13-19) Lightning Damage" }, } }, - ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (20-30) Lightning Damage", statOrder = { 825 }, level = 16, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (20-30) Lightning Damage" }, } }, - ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (36-52) Lightning Damage", statOrder = { 825 }, level = 33, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (36-52) Lightning Damage" }, } }, - ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (55-60) Lightning Damage", statOrder = { 825 }, level = 46, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (55-60) Lightning Damage" }, } }, - ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (63-82) Lightning Damage", statOrder = { 825 }, level = 54, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (63-82) Lightning Damage" }, } }, - ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-6) to (85-107) Lightning Damage", statOrder = { 825 }, level = 60, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-6) to (85-107) Lightning Damage" }, } }, - ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-8) to (111-152) Lightning Damage", statOrder = { 825 }, level = 65, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (111-152) Lightning Damage" }, } }, - ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-10) to (157-196) Lightning Damage", statOrder = { 825 }, level = 75, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-10) to (157-196) Lightning Damage" }, } }, - ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-12) to (202-234) Lightning Damage", statOrder = { 825 }, level = 81, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-12) to (202-234) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 1 to (7-10) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (7-10) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (19-27) Lightning Damage", statOrder = { 825 }, level = 8, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (19-27) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (31-43) Lightning Damage", statOrder = { 825 }, level = 16, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (31-43) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (53-76) Lightning Damage", statOrder = { 825 }, level = 33, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (53-76) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (1-4) to (80-88) Lightning Damage", statOrder = { 825 }, level = 46, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (80-88) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (1-6) to (93-122) Lightning Damage", statOrder = { 825 }, level = 54, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-6) to (93-122) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (1-8) to (128-162) Lightning Damage", statOrder = { 825 }, level = 60, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (128-162) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (1-13) to (168-231) Lightning Damage", statOrder = { 825 }, level = 65, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-13) to (168-231) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-16) to (239-300) Lightning Damage", statOrder = { 825 }, level = 75, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-16) to (239-300) Lightning Damage" }, } }, - ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-19) to (310-358) Lightning Damage", statOrder = { 825 }, level = 81, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-19) to (310-358) Lightning Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage", statOrder = { 882 }, level = 1, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage", statOrder = { 882 }, level = 8, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage", statOrder = { 882 }, level = 16, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage", statOrder = { 882 }, level = 33, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage", statOrder = { 882 }, level = 46, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage", statOrder = { 882 }, level = 54, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage", statOrder = { 882 }, level = 60, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage", statOrder = { 882 }, level = 65, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage", statOrder = { 882 }, level = 75, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage" }, } }, - ["NearbyAlliesAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage", statOrder = { 883 }, level = 1, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage", statOrder = { 883 }, level = 8, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage", statOrder = { 883 }, level = 16, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage", statOrder = { 883 }, level = 33, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage", statOrder = { 883 }, level = 46, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage", statOrder = { 883 }, level = 54, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage", statOrder = { 883 }, level = 60, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage", statOrder = { 883 }, level = 65, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage", statOrder = { 883 }, level = 75, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage" }, } }, - ["NearbyAlliesAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage", statOrder = { 884 }, level = 1, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage", statOrder = { 884 }, level = 8, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage", statOrder = { 884 }, level = 16, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage", statOrder = { 884 }, level = 33, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage", statOrder = { 884 }, level = 46, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage", statOrder = { 884 }, level = 54, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage", statOrder = { 884 }, level = 60, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage", statOrder = { 884 }, level = 65, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage", statOrder = { 884 }, level = 75, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage" }, } }, - ["NearbyAlliesAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage", statOrder = { 885 }, level = 1, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage", statOrder = { 885 }, level = 8, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage", statOrder = { 885 }, level = 16, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage", statOrder = { 885 }, level = 33, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage", statOrder = { 885 }, level = 46, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage", statOrder = { 885 }, level = 54, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage", statOrder = { 885 }, level = 60, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage", statOrder = { 885 }, level = 65, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage" }, } }, - ["NearbyAlliesAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage", statOrder = { 885 }, level = 75, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-49)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 821 }, level = 8, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(50-64)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 821 }, level = 16, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(65-84)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 821 }, level = 33, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(85-109)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 821 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(110-134)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 821 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(135-154)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 821 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(155-169)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 821 }, level = 82, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(170-179)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 821, 826 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(16-20) to Accuracy Rating" }, [1509134228] = { "(15-19)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 821, 826 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(21-46) to Accuracy Rating" }, [1509134228] = { "(20-24)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 821, 826 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(47-72) to Accuracy Rating" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 821, 826 }, level = 38, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(73-97) to Accuracy Rating" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 821, 826 }, level = 54, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(98-123) to Accuracy Rating" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 821, 826 }, level = 65, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(124-149) to Accuracy Rating" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 821, 826 }, level = 70, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(150-174) to Accuracy Rating" }, [1509134228] = { "(65-74)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 821, 826 }, level = 81, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(175-200) to Accuracy Rating" }, [1509134228] = { "(75-79)% increased Physical Damage" }, } }, - ["NearbyAlliesAllDamage1"] = { type = "Prefix", affix = "Coercive", "Allies in your Presence deal (25-34)% increased Damage", statOrder = { 881 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (25-34)% increased Damage" }, } }, - ["NearbyAlliesAllDamage2"] = { type = "Prefix", affix = "Agitative", "Allies in your Presence deal (35-44)% increased Damage", statOrder = { 881 }, level = 8, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (35-44)% increased Damage" }, } }, - ["NearbyAlliesAllDamage3"] = { type = "Prefix", affix = "Instigative", "Allies in your Presence deal (45-54)% increased Damage", statOrder = { 881 }, level = 16, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (45-54)% increased Damage" }, } }, - ["NearbyAlliesAllDamage4"] = { type = "Prefix", affix = "Provocative", "Allies in your Presence deal (55-64)% increased Damage", statOrder = { 881 }, level = 33, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (55-64)% increased Damage" }, } }, - ["NearbyAlliesAllDamage5"] = { type = "Prefix", affix = "Persuasive", "Allies in your Presence deal (65-74)% increased Damage", statOrder = { 881 }, level = 46, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (65-74)% increased Damage" }, } }, - ["NearbyAlliesAllDamage6"] = { type = "Prefix", affix = "Motivating", "Allies in your Presence deal (75-89)% increased Damage", statOrder = { 881 }, level = 60, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (75-89)% increased Damage" }, } }, - ["NearbyAlliesAllDamage7"] = { type = "Prefix", affix = "Inspirational", "Allies in your Presence deal (90-104)% increased Damage", statOrder = { 881 }, level = 70, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (90-104)% increased Damage" }, } }, - ["NearbyAlliesAllDamage8"] = { type = "Prefix", affix = "Empowering", "Allies in your Presence deal (105-119)% increased Damage", statOrder = { 881 }, level = 82, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (105-119)% increased Damage" }, } }, - ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(25-34)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-34)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(35-44)% increased Spell Damage", statOrder = { 853 }, level = 8, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-44)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-54)% increased Spell Damage", statOrder = { 853 }, level = 16, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-54)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(55-64)% increased Spell Damage", statOrder = { 853 }, level = 33, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(55-64)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(65-74)% increased Spell Damage", statOrder = { 853 }, level = 46, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(65-74)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(75-89)% increased Spell Damage", statOrder = { 853 }, level = 60, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(75-89)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(90-104)% increased Spell Damage", statOrder = { 853 }, level = 70, group = "WeaponSpellDamage", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(90-104)% increased Spell Damage" }, } }, - ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(105-119)% increased Spell Damage", statOrder = { 853 }, level = 80, group = "WeaponSpellDamage", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(105-119)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(50-68)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-68)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(69-88)% increased Spell Damage", statOrder = { 853 }, level = 8, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-88)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(89-108)% increased Spell Damage", statOrder = { 853 }, level = 16, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(89-108)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(109-128)% increased Spell Damage", statOrder = { 853 }, level = 33, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(109-128)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(129-148)% increased Spell Damage", statOrder = { 853 }, level = 46, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(129-148)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(149-188)% increased Spell Damage", statOrder = { 853 }, level = 60, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(149-188)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(189-208)% increased Spell Damage", statOrder = { 853 }, level = 70, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(189-208)% increased Spell Damage" }, } }, - ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(209-238)% increased Spell Damage", statOrder = { 853 }, level = 80, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(209-238)% increased Spell Damage" }, } }, - ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(15-19)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 853, 871 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(20-24)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 853, 871 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, [1050105434] = { "+(21-24) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(25-29)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 853, 871 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-29)% increased Spell Damage" }, [1050105434] = { "+(25-28) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-34)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 853, 871 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, [1050105434] = { "+(29-33) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(35-39)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 853, 871 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, [1050105434] = { "+(34-37) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(40-44)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 853, 871 }, level = 60, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-44)% increased Spell Damage" }, [1050105434] = { "+(38-41) to maximum Mana" }, } }, - ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(45-49)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 853, 871 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-49)% increased Spell Damage" }, [1050105434] = { "+(42-45) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(30-38)% increased Spell Damage", "+(34-40) to maximum Mana", statOrder = { 853, 871 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-38)% increased Spell Damage" }, [1050105434] = { "+(34-40) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(39-48)% increased Spell Damage", "+(41-48) to maximum Mana", statOrder = { 853, 871 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(39-48)% increased Spell Damage" }, [1050105434] = { "+(41-48) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(49-58)% increased Spell Damage", "+(49-56) to maximum Mana", statOrder = { 853, 871 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(49-58)% increased Spell Damage" }, [1050105434] = { "+(49-56) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(59-68)% increased Spell Damage", "+(57-66) to maximum Mana", statOrder = { 853, 871 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(59-68)% increased Spell Damage" }, [1050105434] = { "+(57-66) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(69-78)% increased Spell Damage", "+(67-74) to maximum Mana", statOrder = { 853, 871 }, level = 48, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-78)% increased Spell Damage" }, [1050105434] = { "+(67-74) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(79-88)% increased Spell Damage", "+(75-82) to maximum Mana", statOrder = { 853, 871 }, level = 63, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(79-88)% increased Spell Damage" }, [1050105434] = { "+(75-82) to maximum Mana" }, } }, - ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(89-98)% increased Spell Damage", "+(83-90) to maximum Mana", statOrder = { 853, 871 }, level = 79, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(89-98)% increased Spell Damage" }, [1050105434] = { "+(83-90) to maximum Mana" }, } }, - ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(25-34)% increased Fire Damage", statOrder = { 855 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-34)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(35-44)% increased Fire Damage", statOrder = { 855 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-44)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-54)% increased Fire Damage", statOrder = { 855 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(45-54)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(55-64)% increased Fire Damage", statOrder = { 855 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(55-64)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Smoldering", "(65-74)% increased Fire Damage", statOrder = { 855 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(65-74)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(75-89)% increased Fire Damage", statOrder = { 855 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(75-89)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Volcanic", "(90-104)% increased Fire Damage", statOrder = { 855 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(90-104)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(105-119)% increased Fire Damage", statOrder = { 855 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(105-119)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(50-68)% increased Fire Damage", statOrder = { 855 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(50-68)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(69-88)% increased Fire Damage", statOrder = { 855 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(69-88)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(89-108)% increased Fire Damage", statOrder = { 855 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(89-108)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(109-128)% increased Fire Damage", statOrder = { 855 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(109-128)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Smoldering", "(129-148)% increased Fire Damage", statOrder = { 855 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(129-148)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(149-188)% increased Fire Damage", statOrder = { 855 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(149-188)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Volcanic", "(189-208)% increased Fire Damage", statOrder = { 855 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(189-208)% increased Fire Damage" }, } }, - ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(209-238)% increased Fire Damage", statOrder = { 855 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(209-238)% increased Fire Damage" }, } }, - ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(25-34)% increased Cold Damage", statOrder = { 856 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(25-34)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(35-44)% increased Cold Damage", statOrder = { 856 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-44)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(45-54)% increased Cold Damage", statOrder = { 856 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(45-54)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(55-64)% increased Cold Damage", statOrder = { 856 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(55-64)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(65-74)% increased Cold Damage", statOrder = { 856 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(65-74)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Arctic", "(75-89)% increased Cold Damage", statOrder = { 856 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(75-89)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Crystalline", "(90-104)% increased Cold Damage", statOrder = { 856 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(90-104)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(105-119)% increased Cold Damage", statOrder = { 856 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(105-119)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(50-68)% increased Cold Damage", statOrder = { 856 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(50-68)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(69-88)% increased Cold Damage", statOrder = { 856 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(69-88)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(89-108)% increased Cold Damage", statOrder = { 856 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(89-108)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(109-128)% increased Cold Damage", statOrder = { 856 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(109-128)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(129-148)% increased Cold Damage", statOrder = { 856 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(129-148)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Arctic", "(149-188)% increased Cold Damage", statOrder = { 856 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(149-188)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Crystalline", "(189-208)% increased Cold Damage", statOrder = { 856 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(189-208)% increased Cold Damage" }, } }, - ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(209-238)% increased Cold Damage", statOrder = { 856 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(209-238)% increased Cold Damage" }, } }, - ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(25-34)% increased Lightning Damage", statOrder = { 857 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(25-34)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(35-44)% increased Lightning Damage", statOrder = { 857 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(35-44)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-54)% increased Lightning Damage", statOrder = { 857 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(45-54)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(55-64)% increased Lightning Damage", statOrder = { 857 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(55-64)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(65-74)% increased Lightning Damage", statOrder = { 857 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(65-74)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(75-89)% increased Lightning Damage", statOrder = { 857 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(75-89)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(90-104)% increased Lightning Damage", statOrder = { 857 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(90-104)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(105-119)% increased Lightning Damage", statOrder = { 857 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(105-119)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(50-68)% increased Lightning Damage", statOrder = { 857 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(50-68)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(69-88)% increased Lightning Damage", statOrder = { 857 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(69-88)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(89-108)% increased Lightning Damage", statOrder = { 857 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(89-108)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(109-128)% increased Lightning Damage", statOrder = { 857 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(109-128)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(129-148)% increased Lightning Damage", statOrder = { 857 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(129-148)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(149-188)% increased Lightning Damage", statOrder = { 857 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(149-188)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(189-208)% increased Lightning Damage", statOrder = { 857 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(189-208)% increased Lightning Damage" }, } }, - ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(209-238)% increased Lightning Damage", statOrder = { 857 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(209-238)% increased Lightning Damage" }, } }, - ["ChaosDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Impure", "(25-34)% increased Chaos Damage", statOrder = { 858 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(25-34)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Tainted", "(35-44)% increased Chaos Damage", statOrder = { 858 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(35-44)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Clouded", "(45-54)% increased Chaos Damage", statOrder = { 858 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(45-54)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Darkened", "(55-64)% increased Chaos Damage", statOrder = { 858 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(55-64)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Malignant", "(65-74)% increased Chaos Damage", statOrder = { 858 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(65-74)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Vile", "(75-89)% increased Chaos Damage", statOrder = { 858 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(75-89)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Twisted", "(90-104)% increased Chaos Damage", statOrder = { 858 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(90-104)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Malevolent", "(105-119)% increased Chaos Damage", statOrder = { 858 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(105-119)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Impure", "(50-68)% increased Chaos Damage", statOrder = { 858 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-68)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Tainted", "(69-88)% increased Chaos Damage", statOrder = { 858 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(69-88)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Clouded", "(89-108)% increased Chaos Damage", statOrder = { 858 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(89-108)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Darkened", "(109-128)% increased Chaos Damage", statOrder = { 858 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(109-128)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Malignant", "(129-148)% increased Chaos Damage", statOrder = { 858 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(129-148)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Vile", "(149-188)% increased Chaos Damage", statOrder = { 858 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(149-188)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Twisted", "(189-208)% increased Chaos Damage", statOrder = { 858 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(189-208)% increased Chaos Damage" }, } }, - ["ChaosDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Malevolent", "(209-238)% increased Chaos Damage", statOrder = { 858 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(209-238)% increased Chaos Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Punishing", "(25-34)% increased Spell Physical Damage", statOrder = { 860 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(25-34)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(35-44)% increased Spell Physical Damage", statOrder = { 860 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(35-44)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Vengeful", "(45-54)% increased Spell Physical Damage", statOrder = { 860 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(45-54)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Sadistic", "(55-64)% increased Spell Physical Damage", statOrder = { 860 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(55-64)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Pitiless", "(65-74)% increased Spell Physical Damage", statOrder = { 860 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(65-74)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Agonising", "(75-89)% increased Spell Physical Damage", statOrder = { 860 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(75-89)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(90-104)% increased Spell Physical Damage", statOrder = { 860 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(90-104)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Torturer's", "(105-119)% increased Spell Physical Damage", statOrder = { 860 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(105-119)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Punishing", "(50-68)% increased Spell Physical Damage", statOrder = { 860 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(50-68)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(69-88)% increased Spell Physical Damage", statOrder = { 860 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(69-88)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Vengeful", "(89-108)% increased Spell Physical Damage", statOrder = { 860 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(89-108)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Sadistic", "(109-128)% increased Spell Physical Damage", statOrder = { 860 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(109-128)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Pitiless", "(129-148)% increased Spell Physical Damage", statOrder = { 860 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(129-148)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Agonising", "(149-188)% increased Spell Physical Damage", statOrder = { 860 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(149-188)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(189-208)% increased Spell Physical Damage", statOrder = { 860 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(189-208)% increased Spell Physical Damage" }, } }, - ["PhysicalDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Torturer's", "(209-238)% increased Spell Physical Damage", statOrder = { 860 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(209-238)% increased Spell Physical Damage" }, } }, - ["TrapDamageOnWeapon1"] = { type = "Prefix", affix = "Explosive", "(25-34)% increased Trap Damage", statOrder = { 854 }, level = 2, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(25-34)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon2"] = { type = "Prefix", affix = "Eviscerating", "(35-44)% increased Trap Damage", statOrder = { 854 }, level = 8, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(35-44)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon3"] = { type = "Prefix", affix = "Crippling", "(45-54)% increased Trap Damage", statOrder = { 854 }, level = 16, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(45-54)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon4"] = { type = "Prefix", affix = "Disabling", "(55-64)% increased Trap Damage", statOrder = { 854 }, level = 33, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(55-64)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon5"] = { type = "Prefix", affix = "Decimating", "(65-74)% increased Trap Damage", statOrder = { 854 }, level = 46, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(65-74)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon6"] = { type = "Prefix", affix = "Demolishing", "(75-89)% increased Trap Damage", statOrder = { 854 }, level = 60, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(75-89)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon7"] = { type = "Prefix", affix = "Obliterating", "(90-104)% increased Trap Damage", statOrder = { 854 }, level = 70, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(90-104)% increased Trap Damage" }, } }, - ["TrapDamageOnWeapon8"] = { type = "Prefix", affix = "Shattering", "(105-119)% increased Trap Damage", statOrder = { 854 }, level = 81, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(105-119)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Sapper's", "(15-19)% increased Trap Damage", "+(17-20) to maximum Mana", statOrder = { 854, 871 }, level = 2, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [2941585404] = { "(15-19)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Saboteur's", "(20-24)% increased Trap Damage", "+(21-24) to maximum Mana", statOrder = { 854, 871 }, level = 11, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [2941585404] = { "(20-24)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Tinkerer's", "(25-29)% increased Trap Damage", "+(25-28) to maximum Mana", statOrder = { 854, 871 }, level = 23, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [2941585404] = { "(25-29)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Mechanic's", "(30-34)% increased Trap Damage", "+(29-33) to maximum Mana", statOrder = { 854, 871 }, level = 35, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [2941585404] = { "(30-34)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Engineer's", "(35-39)% increased Trap Damage", "+(34-37) to maximum Mana", statOrder = { 854, 871 }, level = 48, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [2941585404] = { "(35-39)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Inventor's", "(40-44)% increased Trap Damage", "+(38-41) to maximum Mana", statOrder = { 854, 871 }, level = 63, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [2941585404] = { "(40-44)% increased Trap Damage" }, } }, - ["TrapDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Artificer's", "(45-49)% increased Trap Damage", "+(42-45) to maximum Mana", statOrder = { 854, 871 }, level = 78, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [2941585404] = { "(45-49)% increased Trap Damage" }, } }, - ["GlobalSpellGemsLevel1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 922 }, level = 10, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevel2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 922 }, level = 41, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevel3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 75, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 922 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 922 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of the Wizard", "+4 to Level of all Spell Skills", statOrder = { 922 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+4 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Mage", "+2 to Level of all Spell Skills", statOrder = { 922 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Evoker", "+4 to Level of all Spell Skills", statOrder = { 922 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+4 to Level of all Spell Skills" }, } }, - ["GlobalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Sorcerer", "+(5-6) to Level of all Spell Skills", statOrder = { 922 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(5-6) to Level of all Spell Skills" }, } }, - ["GlobalFireSpellGemsLevel1_"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 5, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevel2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 41, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevel3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 75, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Immolation", "+4 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+4 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Inferno", "+5 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+5 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Flames", "+(3-4) to Level of all Fire Spell Skills", statOrder = { 924 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(3-4) to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Immolation", "+(5-6) to Level of all Fire Spell Skills", statOrder = { 924 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(5-6) to Level of all Fire Spell Skills" }, } }, - ["GlobalFireSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Inferno", "+7 to Level of all Fire Spell Skills", statOrder = { 924 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+7 to Level of all Fire Spell Skills" }, } }, - ["GlobalColdSpellGemsLevel1_"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 5, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevel2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 41, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevel3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 75, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Rime", "+4 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+4 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+5 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+5 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ice", "+(3-4) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(3-4) to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Rime", "+(5-6) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(5-6) to Level of all Cold Spell Skills" }, } }, - ["GlobalColdSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+7 to Level of all Cold Spell Skills", statOrder = { 925 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+7 to Level of all Cold Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevel1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 5, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevel2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 41, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevel3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 75, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Voltage", "+4 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+4 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Thunder", "+5 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+5 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Electricity", "+(3-4) to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(3-4) to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Voltage", "+(5-6) to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(5-6) to Level of all Lightning Spell Skills" }, } }, - ["GlobalLightningSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Thunder", "+7 to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+7 to Level of all Lightning Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevel1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 5, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevel2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 41, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevel3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 75, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Havoc", "+4 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+4 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+5 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+5 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ruin", "+(3-4) to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(3-4) to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Havoc", "+(5-6) to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(5-6) to Level of all Chaos Spell Skills" }, } }, - ["GlobalChaosSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+7 to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+7 to Level of all Chaos Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevel1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 5, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevel2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 41, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevel3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 75, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Desolation", "+4 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+4 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Grief", "+5 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+5 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Torment", "+(3-4) to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(3-4) to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Desolation", "+(5-6) to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(5-6) to Level of all Physical Spell Skills" }, } }, - ["GlobalPhysicalSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Grief", "+7 to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+7 to Level of all Physical Spell Skills" }, } }, - ["GlobalMinionSpellSkillGemLevel1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 931 }, level = 5, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevel2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 931 }, level = 41, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevel3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 931 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+3 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 931 }, level = 2, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 931 }, level = 25, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 931 }, level = 55, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+3 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Slavedriver", "+4 to Level of all Minion Skills", statOrder = { 931 }, level = 78, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+4 to Level of all Minion Skills" }, } }, - ["GlobalMinionSpellSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Tyrant", "+5 to Level of all Minion Skills", statOrder = { 931 }, level = 81, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+5 to Level of all Minion Skills" }, } }, - ["GlobalTrapSkillGemLevel1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 5, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevel2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 41, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+2 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevel3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 75, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+3 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 2, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 18, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+2 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 36, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+3 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Detonation", "+4 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 55, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+4 to Level of all Trap Skill Gems" }, } }, - ["GlobalTrapSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of Pyrotechnics", "+5 to Level of all Trap Skill Gems", statOrder = { 932 }, level = 81, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+5 to Level of all Trap Skill Gems" }, } }, - ["GlobalMeleeSkillGemLevel1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 928 }, level = 5, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevel2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 928 }, level = 41, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevel3"] = { type = "Suffix", affix = "of Battle", "+3 to Level of all Melee Skills", statOrder = { 928 }, level = 75, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 928 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 928 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Conflict", "+3 to Level of all Melee Skills", statOrder = { 928 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Battle", "+4 to Level of all Melee Skills", statOrder = { 928 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+4 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of War", "+5 to Level of all Melee Skills", statOrder = { 928 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+5 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Combat", "+2 to Level of all Melee Skills", statOrder = { 928 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Dueling", "+3 to Level of all Melee Skills", statOrder = { 928 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Conflict", "+4 to Level of all Melee Skills", statOrder = { 928 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+4 to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Battle", "+(5-6) to Level of all Melee Skills", statOrder = { 928 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+(5-6) to Level of all Melee Skills" }, } }, - ["GlobalMeleeSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of War", "+7 to Level of all Melee Skills", statOrder = { 928 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+7 to Level of all Melee Skills" }, } }, - ["GlobalProjectileSkillGemLevel1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 930 }, level = 5, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevel2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 930 }, level = 41, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevel3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 930 }, level = 75, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 930 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 930 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 930 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+4 to Level of all Projectile Skills", statOrder = { 930 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+4 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+5 to Level of all Projectile Skills", statOrder = { 930 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+5 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Archer", "+2 to Level of all Projectile Skills", statOrder = { 930 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+3 to Level of all Projectile Skills", statOrder = { 930 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+4 to Level of all Projectile Skills", statOrder = { 930 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+4 to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+(5-6) to Level of all Projectile Skills", statOrder = { 930 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+(5-6) to Level of all Projectile Skills" }, } }, - ["GlobalProjectileSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+7 to Level of all Projectile Skills", statOrder = { 930 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+7 to Level of all Projectile Skills" }, } }, - ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "(1-2) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(1-2) Life Regeneration per second" }, } }, - ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "(2.1-3) Life Regeneration per second", statOrder = { 968 }, level = 5, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(2.1-3) Life Regeneration per second" }, } }, - ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "(3.1-4) Life Regeneration per second", statOrder = { 968 }, level = 11, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3.1-4) Life Regeneration per second" }, } }, - ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "(4.1-6) Life Regeneration per second", statOrder = { 968 }, level = 17, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(4.1-6) Life Regeneration per second" }, } }, - ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "(6.1-9) Life Regeneration per second", statOrder = { 968 }, level = 26, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(6.1-9) Life Regeneration per second" }, } }, - ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "(9.1-13) Life Regeneration per second", statOrder = { 968 }, level = 35, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(9.1-13) Life Regeneration per second" }, } }, - ["LifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "(13.1-18) Life Regeneration per second", statOrder = { 968 }, level = 47, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(13.1-18) Life Regeneration per second" }, } }, - ["LifeRegeneration8_"] = { type = "Suffix", affix = "of Recuperation", "(18.1-23) Life Regeneration per second", statOrder = { 968 }, level = 58, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(18.1-23) Life Regeneration per second" }, } }, - ["LifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "(23.1-29) Life Regeneration per second", statOrder = { 968 }, level = 68, group = "LifeRegeneration", weightKey = { "body_armour", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(23.1-29) Life Regeneration per second" }, } }, - ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Immortality", "(29.1-33) Life Regeneration per second", statOrder = { 968 }, level = 75, group = "LifeRegeneration", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(29.1-33) Life Regeneration per second" }, } }, - ["LifeRegeneration11____"] = { type = "Suffix", affix = "of the Phoenix", "(33.1-36) Life Regeneration per second", statOrder = { 968 }, level = 81, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(33.1-36) Life Regeneration per second" }, } }, - ["NearbyAlliesLifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Allies in your Presence Regenerate (1-2) Life per second", statOrder = { 896 }, level = 1, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (1-2) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Allies in your Presence Regenerate (2.1-3) Life per second", statOrder = { 896 }, level = 5, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (2.1-3) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Allies in your Presence Regenerate (3.1-4) Life per second", statOrder = { 896 }, level = 11, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (3.1-4) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Allies in your Presence Regenerate (4.1-6) Life per second", statOrder = { 896 }, level = 17, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (4.1-6) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Allies in your Presence Regenerate (6.1-9) Life per second", statOrder = { 896 }, level = 26, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (6.1-9) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Allies in your Presence Regenerate (9.1-13) Life per second", statOrder = { 896 }, level = 35, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (9.1-13) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "Allies in your Presence Regenerate (13.1-18) Life per second", statOrder = { 896 }, level = 47, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (13.1-18) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration8"] = { type = "Suffix", affix = "of Recuperation", "Allies in your Presence Regenerate (18.1-23) Life per second", statOrder = { 896 }, level = 58, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (18.1-23) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "Allies in your Presence Regenerate (23.1-29) Life per second", statOrder = { 896 }, level = 68, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (23.1-29) Life per second" }, } }, - ["NearbyAlliesLifeRegeneration10"] = { type = "Suffix", affix = "of Immortality", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 896 }, level = 75, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (29.1-33) Life per second" }, } }, - ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(10-19)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-29)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-39)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-49)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(50-59)% increased Mana Regeneration Rate" }, } }, - ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-69)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(15-29)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-29)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(30-44)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-44)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(45-59)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(45-59)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(60-74)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-74)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(75-89)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(75-89)% increased Mana Regeneration Rate" }, } }, - ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(90-104)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(90-104)% increased Mana Regeneration Rate" }, } }, - ["LifeLeech1"] = { type = "Suffix", affix = "of the Parasite", "Leech (5-5.9)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 21, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (5-5.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech2"] = { type = "Suffix", affix = "of the Locust", "Leech (6-6.9)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 38, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (6-6.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech3"] = { type = "Suffix", affix = "of the Remora", "Leech (7-7.9)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 54, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (7-7.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech4"] = { type = "Suffix", affix = "of the Lamprey", "Leech (8-8.9)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (8-8.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeech5"] = { type = "Suffix", affix = "of the Vampire", "Leech (9-9.9)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 81, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (9-9.9)% of Physical Attack Damage as Life" }, } }, - ["LifeLeechLocal1"] = { type = "Suffix", affix = "of the Parasite", "Leeches (5-5.9)% of Physical Damage as Life", statOrder = { 972 }, level = 21, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-5.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal2"] = { type = "Suffix", affix = "of the Locust", "Leeches (6-6.9)% of Physical Damage as Life", statOrder = { 972 }, level = 38, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (6-6.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal3"] = { type = "Suffix", affix = "of the Remora", "Leeches (7-7.9)% of Physical Damage as Life", statOrder = { 972 }, level = 54, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (7-7.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal4"] = { type = "Suffix", affix = "of the Lamprey", "Leeches (8-8.9)% of Physical Damage as Life", statOrder = { 972 }, level = 68, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (8-8.9)% of Physical Damage as Life" }, } }, - ["LifeLeechLocal5"] = { type = "Suffix", affix = "of the Vampire", "Leeches (9-9.9)% of Physical Damage as Life", statOrder = { 972 }, level = 81, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (9-9.9)% of Physical Damage as Life" }, } }, - ["ManaLeech1"] = { type = "Suffix", affix = "of the Thirsty", "Leech (4-4.9)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 21, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (4-4.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech2"] = { type = "Suffix", affix = "of the Parched", "Leech (5-5.9)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 38, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (5-5.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech3"] = { type = "Suffix", affix = "of the Arid", "Leech (6-6.9)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 54, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (6-6.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech4"] = { type = "Suffix", affix = "of the Drought", "Leech (7-7.9)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (7-7.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeech5"] = { type = "Suffix", affix = "of the Desperate", "Leech (8-8.9)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 81, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (8-8.9)% of Physical Attack Damage as Mana" }, } }, - ["ManaLeechLocal1"] = { type = "Suffix", affix = "of the Thirsty", "Leeches (4-4.9)% of Physical Damage as Mana", statOrder = { 978 }, level = 21, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (4-4.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal2"] = { type = "Suffix", affix = "of the Parched", "Leeches (5-5.9)% of Physical Damage as Mana", statOrder = { 978 }, level = 38, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (5-5.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal3"] = { type = "Suffix", affix = "of the Arid", "Leeches (6-6.9)% of Physical Damage as Mana", statOrder = { 978 }, level = 54, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (6-6.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal4"] = { type = "Suffix", affix = "of the Drought", "Leeches (7-7.9)% of Physical Damage as Mana", statOrder = { 978 }, level = 68, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (7-7.9)% of Physical Damage as Mana" }, } }, - ["ManaLeechLocal5"] = { type = "Suffix", affix = "of the Desperate", "Leeches (8-8.9)% of Physical Damage as Mana", statOrder = { 978 }, level = 81, group = "ManaLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (8-8.9)% of Physical Damage as Mana" }, } }, - ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (4-6) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (4-6) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (7-9) Life per enemy killed", statOrder = { 975 }, level = 11, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (7-9) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (10-18) Life per enemy killed", statOrder = { 975 }, level = 22, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-18) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (19-28) Life per enemy killed", statOrder = { 975 }, level = 33, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (19-28) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Vanquishing", "Gain (29-40) Life per enemy killed", statOrder = { 975 }, level = 44, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (29-40) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Valour", "Gain (41-53) Life per enemy killed", statOrder = { 975 }, level = 55, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (41-53) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Glory", "Gain (54-68) Life per enemy killed", statOrder = { 975 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (54-68) Life per enemy killed" }, } }, - ["LifeGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Legend", "Gain (69-84) Life per enemy killed", statOrder = { 975 }, level = 77, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (69-84) Life per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (2-3) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (2-3) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (4-5) Mana per enemy killed", statOrder = { 980 }, level = 12, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (4-5) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Infusion", "Gain (6-9) Mana per enemy killed", statOrder = { 980 }, level = 23, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (6-9) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Enveloping", "Gain (10-14) Mana per enemy killed", statOrder = { 980 }, level = 34, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-14) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Consumption", "Gain (15-20) Mana per enemy killed", statOrder = { 980 }, level = 45, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (15-20) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Gain (21-27) Mana per enemy killed", statOrder = { 980 }, level = 56, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (21-27) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Devouring", "Gain (28-35) Mana per enemy killed", statOrder = { 980 }, level = 67, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (28-35) Mana per enemy killed" }, } }, - ["ManaGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Assimilation", "Gain (36-45) Mana per enemy killed", statOrder = { 980 }, level = 78, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (36-45) Mana per enemy killed" }, } }, - ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 8, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 2 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 20, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 3 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 30, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 4 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 40, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 5 Life per Enemy Hit with Attacks" }, } }, - ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants 2 Life per Enemy Hit", statOrder = { 974 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 2 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants 3 Life per Enemy Hit", statOrder = { 974 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants 4 Life per Enemy Hit", statOrder = { 974 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 4 Life per Enemy Hit" }, } }, - ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants 5 Life per Enemy Hit", statOrder = { 974 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 5 Life per Enemy Hit" }, } }, - ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-7)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 941 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 941 }, level = 37, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(11-13)% increased Attack Speed" }, } }, - ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 941 }, level = 60, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(14-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 919 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 919 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-13)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 919 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 919 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 919 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 919 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(23-25)% increased Attack Speed" }, } }, - ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-28)% increased Attack Speed", statOrder = { 919 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(26-28)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "Allies in your Presence have (5-7)% increased Attack Speed", statOrder = { 893 }, level = 5, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (5-7)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "Allies in your Presence have (8-10)% increased Attack Speed", statOrder = { 893 }, level = 20, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (8-10)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "Allies in your Presence have (11-13)% increased Attack Speed", statOrder = { 893 }, level = 35, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (11-13)% increased Attack Speed" }, } }, - ["NearbyAlliesIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "Allies in your Presence have (14-16)% increased Attack Speed", statOrder = { 893 }, level = 55, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (14-16)% increased Attack Speed" }, } }, - ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(9-12)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(13-16)% increased Cast Speed", statOrder = { 942 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-16)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(17-20)% increased Cast Speed", statOrder = { 942 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(17-20)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "(21-24)% increased Cast Speed", statOrder = { 942 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(21-24)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Legerdemain", "(25-28)% increased Cast Speed", statOrder = { 942 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-28)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Prestidigitation", "(29-32)% increased Cast Speed", statOrder = { 942 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(29-32)% increased Cast Speed" }, } }, - ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(33-35)% increased Cast Speed", statOrder = { 942 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(33-35)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(14-19)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-19)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(20-25)% increased Cast Speed", statOrder = { 942 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-25)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(26-31)% increased Cast Speed", statOrder = { 942 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(26-31)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Sortilege", "(32-37)% increased Cast Speed", statOrder = { 942 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(32-37)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Legerdemain", "(38-43)% increased Cast Speed", statOrder = { 942 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(38-43)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Prestidigitation", "(44-49)% increased Cast Speed", statOrder = { 942 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(44-49)% increased Cast Speed" }, } }, - ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(50-52)% increased Cast Speed", statOrder = { 942 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(50-52)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "Allies in your Presence have (5-8)% increased Cast Speed", statOrder = { 894 }, level = 6, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (5-8)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Allies in your Presence have (9-12)% increased Cast Speed", statOrder = { 894 }, level = 21, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (9-12)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "Allies in your Presence have (13-16)% increased Cast Speed", statOrder = { 894 }, level = 36, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (13-16)% increased Cast Speed" }, } }, - ["NearbyAlliesIncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "Allies in your Presence have (17-20)% increased Cast Speed", statOrder = { 894 }, level = 56, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (17-20)% increased Cast Speed" }, } }, - ["IncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(11-32) to Accuracy Rating" }, } }, - ["IncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 862 }, level = 11, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(33-60) to Accuracy Rating" }, } }, - ["IncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 862 }, level = 18, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(61-84) to Accuracy Rating" }, } }, - ["IncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 862 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(85-123) to Accuracy Rating" }, } }, - ["IncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 862 }, level = 36, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(124-167) to Accuracy Rating" }, } }, - ["IncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 862 }, level = 48, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(168-236) to Accuracy Rating" }, } }, - ["IncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 862 }, level = 58, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(237-346) to Accuracy Rating" }, } }, - ["IncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 862 }, level = 67, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(347-450) to Accuracy Rating" }, } }, - ["IncreasedAccuracy9"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 862 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(451-550) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(11-32) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 826 }, level = 11, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(33-60) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 826 }, level = 18, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(61-84) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 826 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(85-123) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 826 }, level = 36, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(124-167) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 826 }, level = 48, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(168-236) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 826 }, level = 58, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(237-346) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 826 }, level = 67, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(347-450) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy9_"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 826 }, level = 76, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(451-550) to Accuracy Rating" }, } }, - ["LocalIncreasedAccuracy10"] = { type = "Prefix", affix = "Valkyrie's", "+(551-650) to Accuracy Rating", statOrder = { 826 }, level = 82, group = "LocalAccuracyRating", weightKey = { "ranged", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(551-650) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "Allies in your Presence have +(11-32) to Accuracy Rating", statOrder = { 890 }, level = 1, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(11-32) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "Allies in your Presence have +(33-60) to Accuracy Rating", statOrder = { 890 }, level = 11, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(33-60) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "Allies in your Presence have +(61-84) to Accuracy Rating", statOrder = { 890 }, level = 18, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(61-84) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "Allies in your Presence have +(85-123) to Accuracy Rating", statOrder = { 890 }, level = 26, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(85-123) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "Allies in your Presence have +(124-167) to Accuracy Rating", statOrder = { 890 }, level = 36, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(124-167) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "Allies in your Presence have +(168-236) to Accuracy Rating", statOrder = { 890 }, level = 48, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(168-236) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "Allies in your Presence have +(237-346) to Accuracy Rating", statOrder = { 890 }, level = 58, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(237-346) to Accuracy Rating" }, } }, - ["NearbyAlliesIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "Allies in your Presence have +(347-450) to Accuracy Rating", statOrder = { 890 }, level = 67, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(347-450) to Accuracy Rating" }, } }, - ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance", statOrder = { 933 }, level = 5, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(10-14)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance", statOrder = { 933 }, level = 20, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-19)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance", statOrder = { 933 }, level = 30, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-24)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance", statOrder = { 933 }, level = 44, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-29)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance", statOrder = { 933 }, level = 58, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-34)% increased Critical Hit Chance" }, } }, - ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance", statOrder = { 933 }, level = 72, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(35-38)% increased Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "+(1.01-1.5)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(1.01-1.5)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "+(1.51-2.1)% to Critical Hit Chance", statOrder = { 917 }, level = 20, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(1.51-2.1)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "+(2.11-2.7)% to Critical Hit Chance", statOrder = { 917 }, level = 30, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(2.11-2.7)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "+(3.11-3.8)% to Critical Hit Chance", statOrder = { 917 }, level = 44, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3.11-3.8)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "+(3.81-4.4)% to Critical Hit Chance", statOrder = { 917 }, level = 59, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3.81-4.4)% to Critical Hit Chance" }, } }, - ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "+(4.41-5)% to Critical Hit Chance", statOrder = { 917 }, level = 73, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(4.41-5)% to Critical Hit Chance" }, } }, - ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(27-33)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(27-33)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(34-39)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(34-39)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-46)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-46)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(47-53)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(47-53)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(54-59)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(54-59)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(60-73)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-73)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand1"] = { type = "Suffix", affix = "of Menace", "(40-49)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(40-49)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand2"] = { type = "Suffix", affix = "of Havoc", "(50-59)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(50-59)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand3"] = { type = "Suffix", affix = "of Disaster", "(60-69)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(60-69)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand4"] = { type = "Suffix", affix = "of Calamity", "(70-79)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(70-79)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand5"] = { type = "Suffix", affix = "of Ruin", "(80-89)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(80-89)% increased Critical Hit Chance for Spells" }, } }, - ["SpellCriticalStrikeChanceTwoHand6"] = { type = "Suffix", affix = "of Unmaking", "(90-109)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(90-109)% increased Critical Hit Chance for Spells" }, } }, - ["AttackCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 5, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(10-14)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 20, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(15-19)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 30, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(20-24)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 44, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(25-29)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 58, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(30-34)% increased Critical Hit Chance for Attacks" }, } }, - ["AttackCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 72, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(35-38)% increased Critical Hit Chance for Attacks" }, } }, - ["TrapCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 11, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(10-19)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 21, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(20-39)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 28, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(40-59)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 41, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(60-79)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 59, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(80-99)% increased Critical Hit Chance with Traps" }, } }, - ["TrapCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 76, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(100-109)% increased Critical Hit Chance with Traps" }, } }, - ["NearbyAlliesCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "Allies in your Presence have (10-14)% increased Critical Hit Chance", statOrder = { 891 }, level = 11, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (10-14)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "Allies in your Presence have (15-19)% increased Critical Hit Chance", statOrder = { 891 }, level = 21, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (15-19)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "Allies in your Presence have (20-24)% increased Critical Hit Chance", statOrder = { 891 }, level = 28, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (20-24)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "Allies in your Presence have (25-29)% increased Critical Hit Chance", statOrder = { 891 }, level = 41, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (25-29)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "Allies in your Presence have (30-34)% increased Critical Hit Chance", statOrder = { 891 }, level = 59, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (30-34)% increased Critical Hit Chance" }, } }, - ["NearbyAlliesCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "Allies in your Presence have (35-38)% increased Critical Hit Chance", statOrder = { 891 }, level = 76, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (35-38)% increased Critical Hit Chance" }, } }, - ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus", statOrder = { 937 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-14)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus", statOrder = { 937 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-19)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus", statOrder = { 937 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-24)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus", statOrder = { 937 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(25-29)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus", statOrder = { 937 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(30-34)% increased Critical Damage Bonus" }, } }, - ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus", statOrder = { 937 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(35-39)% increased Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-11)% to Critical Damage Bonus", statOrder = { 918 }, level = 8, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(10-11)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(12-13)% to Critical Damage Bonus", statOrder = { 918 }, level = 21, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(12-13)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(14-16)% to Critical Damage Bonus", statOrder = { 918 }, level = 30, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(14-16)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(17-19)% to Critical Damage Bonus", statOrder = { 918 }, level = 44, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(17-19)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(20-22)% to Critical Damage Bonus", statOrder = { 918 }, level = 59, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(20-22)% to Critical Damage Bonus" }, } }, - ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(23-25)% to Critical Damage Bonus", statOrder = { 918 }, level = 73, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(23-25)% to Critical Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(10-14)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(15-19)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(20-24)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(25-29)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(30-34)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(35-39)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Ire", "(15-21)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(15-21)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Anger", "(23-29)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(23-29)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Rage", "(30-36)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(30-36)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Fury", "(38-44)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(38-44)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Ferocity", "(45-51)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(45-51)% increased Critical Spell Damage Bonus" }, } }, - ["SpellCriticalStrikeMultiplierTwoHand6"] = { type = "Suffix", affix = "of Destruction", "(53-59)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [274716455] = { "(53-59)% increased Critical Spell Damage Bonus" }, } }, - ["AttackCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 8, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(10-14)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 21, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(15-19)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 31, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(20-24)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 45, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(25-29)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 59, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(30-34)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["AttackCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 74, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(35-39)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["TrapCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 8, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(10-14)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 21, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(15-19)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 30, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(20-24)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 44, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(25-29)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 59, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(30-34)% to Critical Damage Bonus with Traps" }, } }, - ["TrapCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-39)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 73, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(35-39)% to Critical Damage Bonus with Traps" }, } }, - ["NearbyAlliesCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "Allies in your Presence have (10-14)% increased Critical Damage Bonus", statOrder = { 892 }, level = 8, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (10-14)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "Allies in your Presence have (15-19)% increased Critical Damage Bonus", statOrder = { 892 }, level = 21, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (15-19)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "Allies in your Presence have (20-24)% increased Critical Damage Bonus", statOrder = { 892 }, level = 30, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (20-24)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "Allies in your Presence have (25-29)% increased Critical Damage Bonus", statOrder = { 892 }, level = 44, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (25-29)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "Allies in your Presence have (30-34)% increased Critical Damage Bonus", statOrder = { 892 }, level = 59, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-34)% increased Critical Damage Bonus" }, } }, - ["NearbyAlliesCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "Allies in your Presence have (35-39)% increased Critical Damage Bonus", statOrder = { 892 }, level = 73, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (35-39)% increased Critical Damage Bonus" }, } }, - ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 916 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-10)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 916 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(11-14)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-18)% increased Rarity of Items found", statOrder = { 916 }, level = 40, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-18)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(19-21)% increased Rarity of Items found", statOrder = { 916 }, level = 63, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(19-21)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncrease5"] = { type = "Suffix", affix = "of Windfall", "(22-25)% increased Rarity of Items found", statOrder = { 916 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(22-25)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-11)% increased Rarity of Items found", statOrder = { 916 }, level = 10, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(8-11)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Collector's", "(12-15)% increased Rarity of Items found", statOrder = { 916 }, level = 29, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-15)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Hoarder's", "(16-19)% increased Rarity of Items found", statOrder = { 916 }, level = 47, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(16-19)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Pirate's", "(20-22)% increased Rarity of Items found", statOrder = { 916 }, level = 65, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-22)% increased Rarity of Items found" }, } }, - ["ItemFoundRarityIncreasePrefix5"] = { type = "Prefix", affix = "Dragon's", "(23-25)% increased Rarity of Items found", statOrder = { 916 }, level = 81, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(23-25)% increased Rarity of Items found" }, } }, - ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 862, 1003 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [803737631] = { "+(10-20) to Accuracy Rating" }, } }, - ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 862, 1003 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [803737631] = { "+(21-40) to Accuracy Rating" }, } }, - ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 862, 1003 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [803737631] = { "+(41-60) to Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 826, 1003 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [691932474] = { "+(10-20) to Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 826, 1003 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [691932474] = { "+(21-40) to Accuracy Rating" }, } }, - ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 826, 1003 }, level = 30, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [691932474] = { "+(41-60) to Accuracy Rating" }, } }, - ["LightRadiusAndManaRegeneration1"] = { type = "Suffix", affix = "of Warmth", "(8-12)% increased Mana Regeneration Rate", "5% increased Light Radius", statOrder = { 976, 1003 }, level = 8, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [789117908] = { "(8-12)% increased Mana Regeneration Rate" }, } }, - ["LightRadiusAndManaRegeneration2"] = { type = "Suffix", affix = "of Kindling", "(13-17)% increased Mana Regeneration Rate", "10% increased Light Radius", statOrder = { 976, 1003 }, level = 15, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [789117908] = { "(13-17)% increased Mana Regeneration Rate" }, } }, - ["LightRadiusAndManaRegeneration3"] = { type = "Suffix", affix = "of the Hearth", "(18-22)% increased Mana Regeneration Rate", "15% increased Light Radius", statOrder = { 976, 1003 }, level = 30, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [789117908] = { "(18-22)% increased Mana Regeneration Rate" }, } }, - ["LocalBlockChance1"] = { type = "Prefix", affix = "Steadfast", "(15-19)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(15-19)% increased Block chance" }, } }, - ["LocalBlockChance2"] = { type = "Prefix", affix = "Unrelenting", "(20-24)% increased Block chance", statOrder = { 830 }, level = 33, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-24)% increased Block chance" }, } }, - ["LocalBlockChance3"] = { type = "Prefix", affix = "Adamant", "(25-30)% increased Block chance", statOrder = { 830 }, level = 65, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(25-30)% increased Block chance" }, } }, - ["LocalBlockChance4_"] = { type = "Prefix", affix = "Warded", "(58-63)% increased Block chance", statOrder = { 830 }, level = 46, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(58-63)% increased Block chance" }, } }, - ["LocalBlockChance5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Block chance", statOrder = { 830 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(64-69)% increased Block chance" }, } }, - ["LocalBlockChance6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Block chance", statOrder = { 830 }, level = 74, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(70-75)% increased Block chance" }, } }, - ["LocalBlockChance7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Block chance", statOrder = { 830 }, level = 82, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(76-81)% increased Block chance" }, } }, - ["IncreasedSpirit1"] = { type = "Prefix", affix = "Lady's", "+(30-33) to Spirit", statOrder = { 874 }, level = 16, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(30-33) to Spirit" }, } }, - ["IncreasedSpirit2"] = { type = "Prefix", affix = "Baronness'", "+(34-37) to Spirit", statOrder = { 874 }, level = 25, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(34-37) to Spirit" }, } }, - ["IncreasedSpirit3"] = { type = "Prefix", affix = "Viscountess'", "+(38-42) to Spirit", statOrder = { 874 }, level = 33, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(38-42) to Spirit" }, } }, - ["IncreasedSpirit4"] = { type = "Prefix", affix = "Marchioness'", "+(43-46) to Spirit", statOrder = { 874 }, level = 46, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(43-46) to Spirit" }, } }, - ["IncreasedSpirit5"] = { type = "Prefix", affix = "Countess'", "+(47-50) to Spirit", statOrder = { 874 }, level = 54, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(47-50) to Spirit" }, } }, - ["IncreasedSpirit6"] = { type = "Prefix", affix = "Duchess'", "+(51-53) to Spirit", statOrder = { 874 }, level = 60, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(51-53) to Spirit" }, } }, - ["IncreasedSpirit7"] = { type = "Prefix", affix = "Princess'", "+(54-56) to Spirit", statOrder = { 874 }, level = 65, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(54-56) to Spirit" }, } }, - ["IncreasedSpirit8"] = { type = "Prefix", affix = "Queen's", "+(57-61) to Spirit", statOrder = { 874 }, level = 78, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(57-61) to Spirit" }, } }, - ["LocalIncreasedSpiritPercent1"] = { type = "Prefix", affix = "Lord's", "(30-36)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(30-36)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent2"] = { type = "Prefix", affix = "Baron's", "(27-32)% increased Spirit", statOrder = { 842 }, level = 8, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(27-32)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent3"] = { type = "Prefix", affix = "Viscount's", "(33-38)% increased Spirit", statOrder = { 842 }, level = 16, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(33-38)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent4"] = { type = "Prefix", affix = "Marquess'", "(39-44)% increased Spirit", statOrder = { 842 }, level = 33, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(39-44)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent5"] = { type = "Prefix", affix = "Count's", "(45-50)% increased Spirit", statOrder = { 842 }, level = 46, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(45-50)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent6"] = { type = "Prefix", affix = "Duke's", "(51-55)% increased Spirit", statOrder = { 842 }, level = 60, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(51-55)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent7"] = { type = "Prefix", affix = "Prince's", "(56-60)% increased Spirit", statOrder = { 842 }, level = 75, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(56-60)% increased Spirit" }, } }, - ["LocalIncreasedSpiritPercent8"] = { type = "Prefix", affix = "King's", "(61-65)% increased Spirit", statOrder = { 842 }, level = 82, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(61-65)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana1"] = { type = "Prefix", affix = "Advisor's", "(10-14)% increased Spirit", "+(17-20) to maximum Mana", statOrder = { 842, 871 }, level = 2, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [3984865854] = { "(10-14)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana2"] = { type = "Prefix", affix = "Counselor's", "(15-18)% increased Spirit", "+(21-24) to maximum Mana", statOrder = { 842, 871 }, level = 11, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [3984865854] = { "(15-18)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana3"] = { type = "Prefix", affix = "Emissary's", "(19-22)% increased Spirit", "+(25-28) to maximum Mana", statOrder = { 842, 871 }, level = 26, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [3984865854] = { "(19-22)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana4"] = { type = "Prefix", affix = "Minister's", "(23-26)% increased Spirit", "+(29-33) to maximum Mana", statOrder = { 842, 871 }, level = 36, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [3984865854] = { "(23-26)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana5"] = { type = "Prefix", affix = "Envoy's", "(27-30)% increased Spirit", "+(34-37) to maximum Mana", statOrder = { 842, 871 }, level = 48, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [3984865854] = { "(27-30)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana6"] = { type = "Prefix", affix = "Diplomat's", "(31-34)% increased Spirit", "+(38-41) to maximum Mana", statOrder = { 842, 871 }, level = 58, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [3984865854] = { "(31-34)% increased Spirit" }, } }, - ["LocalIncreasedSpiritAndMana7"] = { type = "Prefix", affix = "Chancellor's", "(35-38)% increased Spirit", "+(42-45) to maximum Mana", statOrder = { 842, 871 }, level = 70, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [3984865854] = { "(35-38)% increased Spirit" }, } }, - ["ReducedBleedDuration1"] = { type = "Suffix", affix = "of Sealing", "(36-40)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 21, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(36-40)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration2"] = { type = "Suffix", affix = "of Alleviation", "(41-45)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 37, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(41-45)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration3"] = { type = "Suffix", affix = "of Allaying", "(46-50)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 50, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(46-50)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration4"] = { type = "Suffix", affix = "of Assuaging", "(51-55)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 64, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(51-55)% reduced Duration of Bleeding on You" }, } }, - ["ReducedBleedDuration5"] = { type = "Suffix", affix = "of Staunching", "(56-60)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 76, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(56-60)% reduced Duration of Bleeding on You" }, } }, - ["ReducedPoisonDuration1"] = { type = "Suffix", affix = "of the Antitoxin", "(36-40)% reduced Poison Duration on you", statOrder = { 1000 }, level = 21, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(36-40)% reduced Poison Duration on you" }, } }, - ["ReducedPoisonDuration2"] = { type = "Suffix", affix = "of the Remedy", "(41-45)% reduced Poison Duration on you", statOrder = { 1000 }, level = 37, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(41-45)% reduced Poison Duration on you" }, } }, - ["ReducedPoisonDuration3"] = { type = "Suffix", affix = "of the Cure", "(46-50)% reduced Poison Duration on you", statOrder = { 1000 }, level = 50, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(46-50)% reduced Poison Duration on you" }, } }, - ["ReducedPoisonDuration4"] = { type = "Suffix", affix = "of the Panacea", "(51-55)% reduced Poison Duration on you", statOrder = { 1000 }, level = 64, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(51-55)% reduced Poison Duration on you" }, } }, - ["ReducedPoisonDuration5"] = { type = "Suffix", affix = "of the Antidote", "(56-60)% reduced Poison Duration on you", statOrder = { 1000 }, level = 76, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(56-60)% reduced Poison Duration on you" }, } }, - ["ReducedBurnDuration1"] = { type = "Suffix", affix = "of Damping", "(36-40)% reduced Ignite Duration on you", statOrder = { 996 }, level = 21, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-40)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration2"] = { type = "Suffix", affix = "of Quashing", "(41-45)% reduced Ignite Duration on you", statOrder = { 996 }, level = 37, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(41-45)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration3"] = { type = "Suffix", affix = "of Quelling", "(46-50)% reduced Ignite Duration on you", statOrder = { 996 }, level = 50, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(46-50)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration4"] = { type = "Suffix", affix = "of Quenching", "(51-55)% reduced Ignite Duration on you", statOrder = { 996 }, level = 64, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(51-55)% reduced Ignite Duration on you" }, } }, - ["ReducedBurnDuration5"] = { type = "Suffix", affix = "of Dousing", "(56-60)% reduced Ignite Duration on you", statOrder = { 996 }, level = 76, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(56-60)% reduced Ignite Duration on you" }, } }, - ["ReducedShockDuration1"] = { type = "Suffix", affix = "of Earthing", "(36-40)% reduced Shock duration on you", statOrder = { 999 }, level = 20, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(36-40)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration2"] = { type = "Suffix", affix = "of Insulation", "(41-45)% reduced Shock duration on you", statOrder = { 999 }, level = 36, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(41-45)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration3"] = { type = "Suffix", affix = "of the Impedance", "(46-50)% reduced Shock duration on you", statOrder = { 999 }, level = 49, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(46-50)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration4"] = { type = "Suffix", affix = "of the Dielectric", "(51-55)% reduced Shock duration on you", statOrder = { 999 }, level = 63, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(51-55)% reduced Shock duration on you" }, } }, - ["ReducedShockDuration5"] = { type = "Suffix", affix = "of Grounding", "(56-60)% reduced Shock duration on you", statOrder = { 999 }, level = 75, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(56-60)% reduced Shock duration on you" }, } }, - ["ReducedChillDuration1"] = { type = "Suffix", affix = "of Convection", "(36-40)% reduced Chill Duration on you", statOrder = { 997 }, level = 20, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(36-40)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration2"] = { type = "Suffix", affix = "of Fluidity", "(41-45)% reduced Chill Duration on you", statOrder = { 997 }, level = 36, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(41-45)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration3"] = { type = "Suffix", affix = "of Entropy", "(46-50)% reduced Chill Duration on you", statOrder = { 997 }, level = 49, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(46-50)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration4"] = { type = "Suffix", affix = "of Dissipation", "(51-55)% reduced Chill Duration on you", statOrder = { 997 }, level = 63, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(51-55)% reduced Chill Duration on you" }, } }, - ["ReducedChillDuration5"] = { type = "Suffix", affix = "of the Reversal", "(56-60)% reduced Chill Duration on you", statOrder = { 997 }, level = 75, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(56-60)% reduced Chill Duration on you" }, } }, - ["ReducedFreezeDuration1"] = { type = "Suffix", affix = "of Heating", "(36-40)% reduced Freeze Duration on you", statOrder = { 998 }, level = 20, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-40)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration2"] = { type = "Suffix", affix = "of Unfreezing", "(41-45)% reduced Freeze Duration on you", statOrder = { 998 }, level = 36, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(41-45)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration3"] = { type = "Suffix", affix = "of Defrosting", "(46-50)% reduced Freeze Duration on you", statOrder = { 998 }, level = 49, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(46-50)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration4"] = { type = "Suffix", affix = "of the Temperate", "(51-55)% reduced Freeze Duration on you", statOrder = { 998 }, level = 63, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-55)% reduced Freeze Duration on you" }, } }, - ["ReducedFreezeDuration5"] = { type = "Suffix", affix = "of Thawing", "(56-60)% reduced Freeze Duration on you", statOrder = { 998 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(56-60)% reduced Freeze Duration on you" }, } }, - ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "Hits against you have (21-27)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (21-27)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "Hits against you have (28-34)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (28-34)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "Hits against you have (35-41)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 58, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (35-41)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "Hits against you have (42-47)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 69, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (42-47)% reduced Critical Damage Bonus" }, } }, - ["ReducedExtraDamageFromCrits5"] = { type = "Suffix", affix = "of the Bastion", "Hits against you have (48-54)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 81, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (48-54)% reduced Critical Damage Bonus" }, } }, - ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 951 }, level = 32, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "4% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Custodian", "5% additional Physical Damage Reduction", statOrder = { 951 }, level = 41, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "5% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Sentry", "6% additional Physical Damage Reduction", statOrder = { 951 }, level = 53, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "6% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 951 }, level = 66, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "7% additional Physical Damage Reduction" }, } }, - ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 951 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "8% additional Physical Damage Reduction" }, } }, - ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, - ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to Maximum Fire Resistance", statOrder = { 953 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, } }, - ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to Maximum Fire Resistance", statOrder = { 953 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to Maximum Fire Resistance" }, } }, - ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to Maximum Cold Resistance", statOrder = { 954 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, - ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to Maximum Cold Resistance", statOrder = { 954 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, - ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, - ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to Maximum Lightning Resistance", statOrder = { 955 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, } }, - ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to Maximum Lightning Resistance", statOrder = { 955 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, } }, - ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to Maximum Chaos Resistance", statOrder = { 956 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, } }, - ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to Maximum Chaos Resistance", statOrder = { 956 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, } }, - ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to Maximum Chaos Resistance", statOrder = { 956 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to Maximum Chaos Resistance" }, } }, - ["MaximumElementalResistance1"] = { type = "Suffix", affix = "of the Deathless", "+1% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 75, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["MaximumElementalResistance2"] = { type = "Suffix", affix = "of the Everlasting", "+2% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 81, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+2% to all Maximum Elemental Resistances" }, } }, - ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Enlivening", "(26-30)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(26-30)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(31-35)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 16, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(31-35)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(36-40)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 36, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(36-40)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(41-45)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 48, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(41-45)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(46-50)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 66, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(46-50)% increased Energy Shield Recharge Rate" }, } }, - ["EnergyShieldRechargeRate6"] = { type = "Suffix", affix = "of Suffusion", "(51-55)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(51-55)% increased Energy Shield Recharge Rate" }, } }, - ["FasterStartOfEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Impatience", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Restlessness", "(31-35)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 16, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(31-35)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge3"] = { type = "Suffix", affix = "of Fretfulness", "(36-40)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 36, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(36-40)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Motivation", "(41-45)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 48, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(41-45)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge5"] = { type = "Suffix", affix = "of Excitement", "(46-50)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 66, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(46-50)% faster start of Energy Shield Recharge" }, } }, - ["FasterStartOfEnergyShieldRecharge6"] = { type = "Suffix", affix = "of Anticipation", "(51-55)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 81, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(51-55)% faster start of Energy Shield Recharge" }, } }, - ["ArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of Covering", "+(14-19)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(14-19)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of Sheathing", "+(20-25)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 16, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(20-25)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage3"] = { type = "Suffix", affix = "of Lining", "+(26-31)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 36, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(26-31)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage4"] = { type = "Suffix", affix = "of Padding", "+(32-37)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 48, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(32-37)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage5"] = { type = "Suffix", affix = "of Furring", "+(38-43)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 66, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(38-43)% of Armour also applies to Elemental Damage" }, } }, - ["ArmourAppliesToElementalDamage6"] = { type = "Suffix", affix = "of Thermokryptance", "+(44-50)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 81, group = "ArmourAppliesToElementalDamage", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "armour", "defences", "elemental" }, tradeHashes = { [3362812763] = { "+(44-50)% of Armour also applies to Elemental Damage" }, } }, - ["EvasionGrantsDeflection1"] = { type = "Suffix", affix = "of Deflecting", "Gain Deflection Rating equal to (8-11)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (8-11)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection2"] = { type = "Suffix", affix = "of Bending", "Gain Deflection Rating equal to (12-14)% of Evasion Rating", statOrder = { 964 }, level = 16, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (12-14)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection3"] = { type = "Suffix", affix = "of Curvation", "Gain Deflection Rating equal to (15-17)% of Evasion Rating", statOrder = { 964 }, level = 36, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (15-17)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection4"] = { type = "Suffix", affix = "of Diversion", "Gain Deflection Rating equal to (18-20)% of Evasion Rating", statOrder = { 964 }, level = 48, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (18-20)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection5"] = { type = "Suffix", affix = "of Flexure", "Gain Deflection Rating equal to (21-23)% of Evasion Rating", statOrder = { 964 }, level = 66, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (21-23)% of Evasion Rating" }, } }, - ["EvasionGrantsDeflection6"] = { type = "Suffix", affix = "of Warping", "Gain Deflection Rating equal to (24-26)% of Evasion Rating", statOrder = { 964 }, level = 81, group = "EvasionAppliesToDeflection", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (24-26)% of Evasion Rating" }, } }, - ["ArrowPierceChance1"] = { type = "Suffix", affix = "of Piercing", "(12-14)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 11, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(12-14)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance2"] = { type = "Suffix", affix = "of Drilling", "(15-17)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 26, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(15-17)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance3"] = { type = "Suffix", affix = "of Puncturing", "(18-20)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 44, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(18-20)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance4"] = { type = "Suffix", affix = "of Skewering", "(21-23)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 61, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(21-23)% chance to Pierce an Enemy" }, } }, - ["ArrowPierceChance5"] = { type = "Suffix", affix = "of Penetrating", "(24-26)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 77, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(24-26)% chance to Pierce an Enemy" }, } }, - ["AdditionalArrow1"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 945 }, level = 55, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["AdditionalArrow2"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 945 }, level = 82, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["AdditionalArrowChance1"] = { type = "Suffix", affix = "of Surplus", "+(25-50)% Surpassing chance to fire an additional Arrow", statOrder = { 5137 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-50)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChance2"] = { type = "Suffix", affix = "of Splintering", "+(75-100)% Surpassing chance to fire an additional Arrow", statOrder = { 5137 }, level = 55, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(75-100)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChance3"] = { type = "Suffix", affix = "of Shards", "+(125-150)% Surpassing chance to fire an additional Arrow", statOrder = { 5137 }, level = 66, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(125-150)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalArrowChance4"] = { type = "Suffix", affix = "of Many", "+(175-200)% Surpassing chance to fire an additional Arrow", statOrder = { 5137 }, level = 82, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(175-200)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalAmmo1"] = { type = "Suffix", affix = "of Shelling", "Loads an additional bolt", statOrder = { 943 }, level = 55, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, - ["AdditionalAmmo2"] = { type = "Suffix", affix = "of Bursting", "Loads 2 additional bolts", statOrder = { 943 }, level = 82, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads 2 additional bolts" }, } }, - ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(5-10)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 16, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(11-16)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 33, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(17-22)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 46, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(23-28)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 60, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(29-34)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 75, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(35-40)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(5-10)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 11, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-16)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 26, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(17-22)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 36, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(23-28)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 54, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(29-34)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(35-40)% increased Flask Mana Recovery rate" }, } }, - ["BeltIncreasedCharmDuration1"] = { type = "Prefix", affix = "Conservative", "(4-9)% increased Charm Effect Duration", statOrder = { 878 }, level = 8, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(4-9)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration2"] = { type = "Prefix", affix = "Transformative", "(10-15)% increased Charm Effect Duration", statOrder = { 878 }, level = 33, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(10-15)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration3"] = { type = "Prefix", affix = "Progressive", "(16-21)% increased Charm Effect Duration", statOrder = { 878 }, level = 46, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(16-21)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration4"] = { type = "Prefix", affix = "Innovative", "(22-27)% increased Charm Effect Duration", statOrder = { 878 }, level = 60, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(22-27)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedCharmDuration5"] = { type = "Prefix", affix = "Revolutionary", "(28-33)% increased Charm Effect Duration", statOrder = { 878 }, level = 75, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(28-33)% increased Charm Effect Duration" }, } }, - ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 6216 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 6216 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(11-16)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 6216 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(17-22)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 6216 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(23-28)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 6216 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(29-34)% increased Flask Charges gained" }, } }, - ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 6216 }, level = 81, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(35-40)% increased Flask Charges gained" }, } }, - ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(8-10)% reduced Flask Charges used", statOrder = { 982 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(8-10)% reduced Flask Charges used" }, } }, - ["BeltReducedFlaskChargesUsed2"] = { type = "Suffix", affix = "of Imbibing", "(11-13)% reduced Flask Charges used", statOrder = { 982 }, level = 18, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(11-13)% reduced Flask Charges used" }, } }, - ["BeltReducedFlaskChargesUsed3"] = { type = "Suffix", affix = "of Relishing", "(14-16)% reduced Flask Charges used", statOrder = { 982 }, level = 33, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(14-16)% reduced Flask Charges used" }, } }, - ["BeltReducedFlaskChargesUsed4"] = { type = "Suffix", affix = "of Savouring", "(17-19)% reduced Flask Charges used", statOrder = { 982 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(17-19)% reduced Flask Charges used" }, } }, - ["BeltReducedFlaskChargesUsed5"] = { type = "Suffix", affix = "of Reveling", "(20-22)% reduced Flask Charges used", statOrder = { 982 }, level = 72, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(20-22)% reduced Flask Charges used" }, } }, - ["BeltReducedFlaskChargesUsed6"] = { type = "Suffix", affix = "of Nourishing", "(23-25)% reduced Flask Charges used", statOrder = { 982 }, level = 81, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(23-25)% reduced Flask Charges used" }, } }, - ["BeltIncreasedCharmChargesGained1"] = { type = "Suffix", affix = "of Plenty", "(5-10)% increased Charm Charges gained", statOrder = { 5227 }, level = 2, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(5-10)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained2"] = { type = "Suffix", affix = "of Surplus", "(11-16)% increased Charm Charges gained", statOrder = { 5227 }, level = 16, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(11-16)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained3"] = { type = "Suffix", affix = "of Fertility", "(17-22)% increased Charm Charges gained", statOrder = { 5227 }, level = 32, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(17-22)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained4"] = { type = "Suffix", affix = "of Bounty", "(23-28)% increased Charm Charges gained", statOrder = { 5227 }, level = 48, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(23-28)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained5"] = { type = "Suffix", affix = "of the Harvest", "(29-34)% increased Charm Charges gained", statOrder = { 5227 }, level = 70, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(29-34)% increased Charm Charges gained" }, } }, - ["BeltIncreasedCharmChargesGained6"] = { type = "Suffix", affix = "of Abundance", "(35-40)% increased Charm Charges gained", statOrder = { 5227 }, level = 81, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(35-40)% increased Charm Charges gained" }, } }, - ["BeltReducedCharmChargesUsed1"] = { type = "Suffix", affix = "of Austerity", "(8-10)% reduced Charm Charges used", statOrder = { 5229 }, level = 3, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(8-10)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed2"] = { type = "Suffix", affix = "of Frugality", "(11-13)% reduced Charm Charges used", statOrder = { 5229 }, level = 18, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(11-13)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed3"] = { type = "Suffix", affix = "of Temperance", "(14-16)% reduced Charm Charges used", statOrder = { 5229 }, level = 33, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(14-16)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed4"] = { type = "Suffix", affix = "of Restraint", "(17-19)% reduced Charm Charges used", statOrder = { 5229 }, level = 50, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(17-19)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed5"] = { type = "Suffix", affix = "of Economy", "(20-22)% reduced Charm Charges used", statOrder = { 5229 }, level = 72, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(20-22)% reduced Charm Charges used" }, } }, - ["BeltReducedCharmChargesUsed6"] = { type = "Suffix", affix = "of Scarcity", "(23-25)% reduced Charm Charges used", statOrder = { 5229 }, level = 81, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1570770415] = { "(23-25)% reduced Charm Charges used" }, } }, - ["AdditionalCharm1"] = { type = "Suffix", affix = "of Symbolism", "+1 Charm Slot", statOrder = { 944 }, level = 23, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2582079000] = { "+1 Charm Slot" }, } }, - ["AdditionalCharm2"] = { type = "Suffix", affix = "of Inscription", "+2 Charm Slots", statOrder = { 944 }, level = 64, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2582079000] = { "+2 Charm Slots" }, } }, - ["IgniteChanceIncrease1"] = { type = "Suffix", affix = "of Ignition", "(51-60)% increased Flammability Magnitude", statOrder = { 988 }, level = 15, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(51-60)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease2"] = { type = "Suffix", affix = "of Scorching", "(61-70)% increased Flammability Magnitude", statOrder = { 988 }, level = 30, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(61-70)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease3"] = { type = "Suffix", affix = "of Incineration", "(71-80)% increased Flammability Magnitude", statOrder = { 988 }, level = 45, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(71-80)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease4"] = { type = "Suffix", affix = "of Combustion", "(81-90)% increased Flammability Magnitude", statOrder = { 988 }, level = 60, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(81-90)% increased Flammability Magnitude" }, } }, - ["IgniteChanceIncrease5"] = { type = "Suffix", affix = "of Conflagration", "(91-100)% increased Flammability Magnitude", statOrder = { 988 }, level = 75, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(91-100)% increased Flammability Magnitude" }, } }, - ["FreezeDamageIncrease1"] = { type = "Suffix", affix = "of Freezing", "(31-40)% increased Freeze Buildup", statOrder = { 990 }, level = 15, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(31-40)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease2"] = { type = "Suffix", affix = "of Bleakness", "(41-50)% increased Freeze Buildup", statOrder = { 990 }, level = 30, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(41-50)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease3"] = { type = "Suffix", affix = "of the Glacier", "(51-60)% increased Freeze Buildup", statOrder = { 990 }, level = 45, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(51-60)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease4"] = { type = "Suffix", affix = "of the Hyperboreal", "(61-70)% increased Freeze Buildup", statOrder = { 990 }, level = 60, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(61-70)% increased Freeze Buildup" }, } }, - ["FreezeDamageIncrease5"] = { type = "Suffix", affix = "of the Arctic", "(71-80)% increased Freeze Buildup", statOrder = { 990 }, level = 75, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(71-80)% increased Freeze Buildup" }, } }, - ["ShockChanceIncrease1"] = { type = "Suffix", affix = "of Shocking", "(51-60)% increased chance to Shock", statOrder = { 992 }, level = 15, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(51-60)% increased chance to Shock" }, } }, - ["ShockChanceIncrease2"] = { type = "Suffix", affix = "of Zapping", "(61-70)% increased chance to Shock", statOrder = { 992 }, level = 30, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(61-70)% increased chance to Shock" }, } }, - ["ShockChanceIncrease3"] = { type = "Suffix", affix = "of Electrocution", "(71-80)% increased chance to Shock", statOrder = { 992 }, level = 45, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(71-80)% increased chance to Shock" }, } }, - ["ShockChanceIncrease4"] = { type = "Suffix", affix = "of Voltages", "(81-90)% increased chance to Shock", statOrder = { 992 }, level = 60, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(81-90)% increased chance to Shock" }, } }, - ["ShockChanceIncrease5"] = { type = "Suffix", affix = "of the Thunderbolt", "(91-100)% increased chance to Shock", statOrder = { 992 }, level = 75, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(91-100)% increased chance to Shock" }, } }, - ["ProjectileSpeed1"] = { type = "Prefix", affix = "Darting", "(10-17)% increased Projectile Speed", statOrder = { 875 }, level = 14, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(10-17)% increased Projectile Speed" }, } }, - ["ProjectileSpeed2"] = { type = "Prefix", affix = "Brisk", "(18-25)% increased Projectile Speed", statOrder = { 875 }, level = 27, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(18-25)% increased Projectile Speed" }, } }, - ["ProjectileSpeed3"] = { type = "Prefix", affix = "Quick", "(26-33)% increased Projectile Speed", statOrder = { 875 }, level = 41, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(26-33)% increased Projectile Speed" }, } }, - ["ProjectileSpeed4"] = { type = "Prefix", affix = "Rapid", "(34-41)% increased Projectile Speed", statOrder = { 875 }, level = 55, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(34-41)% increased Projectile Speed" }, } }, - ["ProjectileSpeed5"] = { type = "Prefix", affix = "Nimble", "(42-46)% increased Projectile Speed", statOrder = { 875 }, level = 82, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(42-46)% increased Projectile Speed" }, } }, - ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Mending", "(10-12)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 30, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-12)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Bandaging", "(13-15)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(13-15)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Stitching", "(16-18)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-18)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Suturing", "(19-21)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(19-21)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsLife5"] = { type = "Suffix", affix = "of Fleshbinding", "(22-24)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-24)% of Damage taken Recouped as Life" }, } }, - ["DamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of Reprieve", "(10-12)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 31, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-12)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana2"] = { type = "Suffix", affix = "of Solace", "(13-15)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(13-15)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana3"] = { type = "Suffix", affix = "of Tranquility", "(16-18)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 57, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(16-18)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana4"] = { type = "Suffix", affix = "of Serenity", "(19-21)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 69, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(19-21)% of Damage taken Recouped as Mana" }, } }, - ["DamageTakenGainedAsMana5"] = { type = "Suffix", affix = "of Zen", "(22-24)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 80, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(22-24)% of Damage taken Recouped as Mana" }, } }, - ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-13)% increased Stun Duration", statOrder = { 987 }, level = 5, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(11-13)% increased Stun Duration" }, } }, - ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(14-16)% increased Stun Duration", statOrder = { 987 }, level = 18, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(14-16)% increased Stun Duration" }, } }, - ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(17-19)% increased Stun Duration", statOrder = { 987 }, level = 30, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(17-19)% increased Stun Duration" }, } }, - ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(20-22)% increased Stun Duration", statOrder = { 987 }, level = 44, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(20-22)% increased Stun Duration" }, } }, - ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(23-26)% increased Stun Duration", statOrder = { 987 }, level = 58, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(23-26)% increased Stun Duration" }, } }, - ["StunDuration6"] = { type = "Suffix", affix = "of the Concussion", "(27-30)% increased Stun Duration", statOrder = { 987 }, level = 71, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(27-30)% increased Stun Duration" }, } }, - ["StunDamageIncrease1"] = { type = "Suffix", affix = "of the Pugilist", "Causes (21-30)% increased Stun Buildup", statOrder = { 985 }, level = 5, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (21-30)% increased Stun Buildup" }, } }, - ["StunDamageIncrease2"] = { type = "Suffix", affix = "of the Brawler", "Causes (31-40)% increased Stun Buildup", statOrder = { 985 }, level = 20, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (31-40)% increased Stun Buildup" }, } }, - ["StunDamageIncrease3"] = { type = "Suffix", affix = "of the Boxer", "Causes (41-50)% increased Stun Buildup", statOrder = { 985 }, level = 30, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (41-50)% increased Stun Buildup" }, } }, - ["StunDamageIncrease4"] = { type = "Suffix", affix = "of the Combatant", "Causes (51-60)% increased Stun Buildup", statOrder = { 985 }, level = 44, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (51-60)% increased Stun Buildup" }, } }, - ["StunDamageIncrease5"] = { type = "Suffix", affix = "of the Gladiator", "Causes (61-70)% increased Stun Buildup", statOrder = { 985 }, level = 58, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (61-70)% increased Stun Buildup" }, } }, - ["StunDamageIncrease6"] = { type = "Suffix", affix = "of the Champion", "Causes (71-80)% increased Stun Buildup", statOrder = { 985 }, level = 74, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (71-80)% increased Stun Buildup" }, } }, - ["SpellDamage1"] = { type = "Prefix", affix = "Apprentice's", "(3-7)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(3-7)% increased Spell Damage" }, } }, - ["SpellDamage2"] = { type = "Prefix", affix = "Adept's", "(8-12)% increased Spell Damage", statOrder = { 853 }, level = 16, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, } }, - ["SpellDamage3"] = { type = "Prefix", affix = "Scholar's", "(13-17)% increased Spell Damage", statOrder = { 853 }, level = 33, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-17)% increased Spell Damage" }, } }, - ["SpellDamage4"] = { type = "Prefix", affix = "Professor's", "(18-22)% increased Spell Damage", statOrder = { 853 }, level = 46, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } }, - ["SpellDamage5"] = { type = "Prefix", affix = "Occultist's", "(23-26)% increased Spell Damage", statOrder = { 853 }, level = 60, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } }, - ["SpellDamage6"] = { type = "Prefix", affix = "Incanter's", "(27-30)% increased Spell Damage", statOrder = { 853 }, level = 75, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-30)% increased Spell Damage" }, } }, - ["FireDamagePercent1"] = { type = "Prefix", affix = "Searing", "(3-7)% increased Fire Damage", statOrder = { 855 }, level = 8, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(3-7)% increased Fire Damage" }, } }, - ["FireDamagePercent2"] = { type = "Prefix", affix = "Sizzling", "(8-12)% increased Fire Damage", statOrder = { 855 }, level = 16, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(8-12)% increased Fire Damage" }, } }, - ["FireDamagePercent3"] = { type = "Prefix", affix = "Blistering", "(13-17)% increased Fire Damage", statOrder = { 855 }, level = 33, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(13-17)% increased Fire Damage" }, } }, - ["FireDamagePercent4"] = { type = "Prefix", affix = "Cauterising", "(18-22)% increased Fire Damage", statOrder = { 855 }, level = 46, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-22)% increased Fire Damage" }, } }, - ["FireDamagePercent5"] = { type = "Prefix", affix = "Volcanic", "(23-26)% increased Fire Damage", statOrder = { 855 }, level = 65, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-26)% increased Fire Damage" }, } }, - ["FireDamagePercent6"] = { type = "Prefix", affix = "Magmatic", "(27-30)% increased Fire Damage", statOrder = { 855 }, level = 75, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } }, - ["ColdDamagePercent1"] = { type = "Prefix", affix = "Bitter", "(3-7)% increased Cold Damage", statOrder = { 856 }, level = 8, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(3-7)% increased Cold Damage" }, } }, - ["ColdDamagePercent2"] = { type = "Prefix", affix = "Biting", "(8-12)% increased Cold Damage", statOrder = { 856 }, level = 16, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(8-12)% increased Cold Damage" }, } }, - ["ColdDamagePercent3"] = { type = "Prefix", affix = "Alpine", "(13-17)% increased Cold Damage", statOrder = { 856 }, level = 33, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(13-17)% increased Cold Damage" }, } }, - ["ColdDamagePercent4"] = { type = "Prefix", affix = "Snowy", "(18-22)% increased Cold Damage", statOrder = { 856 }, level = 46, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-22)% increased Cold Damage" }, } }, - ["ColdDamagePercent5"] = { type = "Prefix", affix = "Hailing", "(23-26)% increased Cold Damage", statOrder = { 856 }, level = 65, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-26)% increased Cold Damage" }, } }, - ["ColdDamagePercent6"] = { type = "Prefix", affix = "Crystalline", "(27-30)% increased Cold Damage", statOrder = { 856 }, level = 75, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } }, - ["LightningDamagePercent1"] = { type = "Prefix", affix = "Charged", "(3-7)% increased Lightning Damage", statOrder = { 857 }, level = 8, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(3-7)% increased Lightning Damage" }, } }, - ["LightningDamagePercent2"] = { type = "Prefix", affix = "Hissing", "(8-12)% increased Lightning Damage", statOrder = { 857 }, level = 16, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(8-12)% increased Lightning Damage" }, } }, - ["LightningDamagePercent3"] = { type = "Prefix", affix = "Bolting", "(13-17)% increased Lightning Damage", statOrder = { 857 }, level = 33, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(13-17)% increased Lightning Damage" }, } }, - ["LightningDamagePercent4"] = { type = "Prefix", affix = "Coursing", "(18-22)% increased Lightning Damage", statOrder = { 857 }, level = 46, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-22)% increased Lightning Damage" }, } }, - ["LightningDamagePercent5"] = { type = "Prefix", affix = "Striking", "(23-26)% increased Lightning Damage", statOrder = { 857 }, level = 65, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-26)% increased Lightning Damage" }, } }, - ["LightningDamagePercent6"] = { type = "Prefix", affix = "Smiting", "(27-30)% increased Lightning Damage", statOrder = { 857 }, level = 75, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-30)% increased Lightning Damage" }, } }, - ["ChaosDamagePercent1"] = { type = "Prefix", affix = "Impure", "(3-7)% increased Chaos Damage", statOrder = { 858 }, level = 8, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(3-7)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent2"] = { type = "Prefix", affix = "Tainted", "(8-12)% increased Chaos Damage", statOrder = { 858 }, level = 16, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(8-12)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent3"] = { type = "Prefix", affix = "Clouded", "(13-17)% increased Chaos Damage", statOrder = { 858 }, level = 33, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-17)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent4"] = { type = "Prefix", affix = "Darkened", "(18-22)% increased Chaos Damage", statOrder = { 858 }, level = 46, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(18-22)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent5"] = { type = "Prefix", affix = "Malignant", "(23-26)% increased Chaos Damage", statOrder = { 858 }, level = 65, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } }, - ["ChaosDamagePercent6"] = { type = "Prefix", affix = "Vile", "(27-30)% increased Chaos Damage", statOrder = { 858 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } }, - ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(19-35)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(19-35)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(36-52)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 16, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(36-52)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(53-62)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 33, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(53-62)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(63-72)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 46, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(63-72)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(73-86)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(73-86)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(87-100)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(34-47)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(34-47)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(48-71)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 16, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(48-71)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(72-85)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 33, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(72-85)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(86-99)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 46, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(86-99)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(100-119)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(100-119)% increased Elemental Damage with Attacks" }, } }, - ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(120-139)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(120-139)% increased Elemental Damage with Attacks" }, } }, - ["SpellDamageGainedAsFire1"] = { type = "Prefix", affix = "Fervent", "Gain (13-15)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 5, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (13-15)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire2"] = { type = "Prefix", affix = "Ardent", "Gain (16-18)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 16, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (16-18)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire3"] = { type = "Prefix", affix = "Fanatic's", "Gain (19-21)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 33, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (19-21)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire4"] = { type = "Prefix", affix = "Zealot's", "Gain (22-24)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 46, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (22-24)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire5"] = { type = "Prefix", affix = "Infernal", "Gain (25-27)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 60, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-27)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFire6"] = { type = "Prefix", affix = "Flamebound", "Gain (28-30)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 80, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (28-30)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand1"] = { type = "Prefix", affix = "Fervent", "Gain (26-30)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 5, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (26-30)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand2"] = { type = "Prefix", affix = "Ardent", "Gain (31-36)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 16, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (31-36)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand3"] = { type = "Prefix", affix = "Fanatic's", "Gain (37-42)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 33, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (37-42)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand4"] = { type = "Prefix", affix = "Zealot's", "Gain (43-48)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 46, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (43-48)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand5"] = { type = "Prefix", affix = "Infernal", "Gain (49-54)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 60, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (49-54)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsFireTwoHand6"] = { type = "Prefix", affix = "Flamebound", "Gain (55-60)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 80, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (55-60)% of Damage as Extra Fire Damage" }, } }, - ["SpellDamageGainedAsCold1"] = { type = "Prefix", affix = "Malignant", "Gain (13-15)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 5, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (13-15)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold2"] = { type = "Prefix", affix = "Pernicious", "Gain (16-18)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 16, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (16-18)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold3"] = { type = "Prefix", affix = "Destructive", "Gain (19-21)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 33, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (19-21)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold4"] = { type = "Prefix", affix = "Malicious", "Gain (22-24)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 46, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (22-24)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold5"] = { type = "Prefix", affix = "Ruthless", "Gain (25-27)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 60, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (25-27)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsCold6"] = { type = "Prefix", affix = "Frostbound", "Gain (28-30)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 80, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (28-30)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand1"] = { type = "Prefix", affix = "Malignant", "Gain (26-30)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 5, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (26-30)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand2"] = { type = "Prefix", affix = "Pernicious", "Gain (31-36)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 16, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (31-36)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand3"] = { type = "Prefix", affix = "Destructive", "Gain (37-42)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 33, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (37-42)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand4"] = { type = "Prefix", affix = "Malicious", "Gain (43-48)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 46, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (43-48)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand5"] = { type = "Prefix", affix = "Ruthless", "Gain (49-54)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 60, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (49-54)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsColdTwoHand6"] = { type = "Prefix", affix = "Frostbound", "Gain (55-60)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 80, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (55-60)% of Damage as Extra Cold Damage" }, } }, - ["SpellDamageGainedAsLightning1"] = { type = "Prefix", affix = "Deadly", "Gain (13-15)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (13-15)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning2"] = { type = "Prefix", affix = "Lethal", "Gain (16-18)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (16-18)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning3"] = { type = "Prefix", affix = "Fatal", "Gain (19-21)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (19-21)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning4"] = { type = "Prefix", affix = "Vorpal", "Gain (22-24)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (22-24)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning5"] = { type = "Prefix", affix = "Electrifying", "Gain (25-27)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (25-27)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightning6"] = { type = "Prefix", affix = "Stormbound", "Gain (28-30)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (28-30)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand1"] = { type = "Prefix", affix = "Deadly", "Gain (26-30)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (26-30)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand2"] = { type = "Prefix", affix = "Lethal", "Gain (31-36)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (31-36)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand3"] = { type = "Prefix", affix = "Fatal", "Gain (37-42)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (37-42)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand4"] = { type = "Prefix", affix = "Vorpal", "Gain (43-48)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (43-48)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand5"] = { type = "Prefix", affix = "Electrifying", "Gain (49-54)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (49-54)% of Damage as Extra Lightning Damage" }, } }, - ["SpellDamageGainedAsLightningTwoHand6"] = { type = "Prefix", affix = "Stormbound", "Gain (55-60)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (55-60)% of Damage as Extra Lightning Damage" }, } }, - ["DamageWithBows1"] = { type = "Prefix", affix = "Acute", "(11-20)% increased Damage with Bow Skills", statOrder = { 861 }, level = 1, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(11-20)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows2"] = { type = "Prefix", affix = "Trenchant", "(21-30)% increased Damage with Bow Skills", statOrder = { 861 }, level = 16, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(21-30)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows3"] = { type = "Prefix", affix = "Perforating", "(31-36)% increased Damage with Bow Skills", statOrder = { 861 }, level = 33, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(31-36)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows4"] = { type = "Prefix", affix = "Incisive", "(37-42)% increased Damage with Bow Skills", statOrder = { 861 }, level = 46, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(37-42)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows5"] = { type = "Prefix", affix = "Lacerating", "(43-50)% increased Damage with Bow Skills", statOrder = { 861 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(43-50)% increased Damage with Bow Skills" }, } }, - ["DamageWithBows6"] = { type = "Prefix", affix = "Impaling", "(51-59)% increased Damage with Bow Skills", statOrder = { 861 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(51-59)% increased Damage with Bow Skills" }, } }, - ["PresenceRadius1"] = { type = "Suffix", affix = "of Direction", "(36-45)% increased Presence Area of Effect", statOrder = { 1002 }, level = 23, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(36-45)% increased Presence Area of Effect" }, } }, - ["PresenceRadius2"] = { type = "Suffix", affix = "of Outreach", "(46-55)% increased Presence Area of Effect", statOrder = { 1002 }, level = 40, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(46-55)% increased Presence Area of Effect" }, } }, - ["PresenceRadius3"] = { type = "Suffix", affix = "of Guidance", "(56-65)% increased Presence Area of Effect", statOrder = { 1002 }, level = 56, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(56-65)% increased Presence Area of Effect" }, } }, - ["PresenceRadius4"] = { type = "Suffix", affix = "of Influence", "(66-80)% increased Presence Area of Effect", statOrder = { 1002 }, level = 72, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(66-80)% increased Presence Area of Effect" }, } }, - ["MinionLife1"] = { type = "Suffix", affix = "of the Mentor", "Minions have (21-25)% increased maximum Life", statOrder = { 962 }, level = 2, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (21-25)% increased maximum Life" }, } }, - ["MinionLife2"] = { type = "Suffix", affix = "of the Tutor", "Minions have (26-30)% increased maximum Life", statOrder = { 962 }, level = 16, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (26-30)% increased maximum Life" }, } }, - ["MinionLife3"] = { type = "Suffix", affix = "of the Director", "Minions have (31-35)% increased maximum Life", statOrder = { 962 }, level = 32, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (31-35)% increased maximum Life" }, } }, - ["MinionLife4"] = { type = "Suffix", affix = "of the Headmaster", "Minions have (36-40)% increased maximum Life", statOrder = { 962 }, level = 48, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (36-40)% increased maximum Life" }, } }, - ["MinionLife5"] = { type = "Suffix", affix = "of the Administrator", "Minions have (41-45)% increased maximum Life", statOrder = { 962 }, level = 64, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (41-45)% increased maximum Life" }, } }, - ["MinionLife6"] = { type = "Suffix", affix = "of the Rector", "Minions have (46-50)% increased maximum Life", statOrder = { 962 }, level = 80, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (46-50)% increased maximum Life" }, } }, - ["EssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "60% increased effect of Socketed Items", statOrder = { 7351 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2081918629] = { "60% increased effect of Socketed Items" }, } }, - ["EssenceCorruptForTwoEnchantments1"] = { type = "Suffix", affix = "of the Essence", "On Corruption, Item gains two Enchantments", statOrder = { 7237 }, level = 1, group = "CorruptForTwoEnchantments", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4215035940] = { "On Corruption, Item gains two Enchantments" }, } }, - ["EssenceAbyssPrefix"] = { type = "Prefix", affix = "Abyssal", "Bears the Mark of the Abyssal Lord", statOrder = { 6048 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, - ["EssenceAbyssSuffix"] = { type = "Suffix", affix = "of the Abyss", "Bears the Mark of the Abyssal Lord", statOrder = { 6048 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, - ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(8-11)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(12-15)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(16-19)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-23)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(24-27)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(28-31)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(32-35)% increased Flask Life Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-15)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(16-20)% increased Flask Mana Recovery rate" }, } }, - ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(21-25)% increased Flask Mana Recovery rate" }, } }, - ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(35-38)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(39-42)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(43-46)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(47-50)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-55)% chance to Avoid being Shocked" }, } }, - ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(56-60)% chance to Avoid being Shocked" }, } }, - ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (51-100) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (101-150) Physical Damage to Melee Attackers" }, } }, - ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (151-200) Physical Damage to Melee Attackers" }, } }, - ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(39-42)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(43-46)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(47-50)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(51-55)% chance to Avoid being Frozen" }, } }, - ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(56-60)% chance to Avoid being Frozen" }, } }, - ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 829 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-2)% Chance to Block" }, } }, - ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 829 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } }, - ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 829 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(5-6)% Chance to Block" }, } }, - ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 829 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(7-8)% Chance to Block" }, } }, - ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2119 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, - ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1529 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(43-46)% chance to Avoid being Ignited" }, } }, - ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1529 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(47-50)% chance to Avoid being Ignited" }, } }, - ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1529 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-55)% chance to Avoid being Ignited" }, } }, - ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1529 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(56-60)% chance to Avoid being Ignited" }, } }, - ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 8, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(1-2)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 19, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(3-4)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 30, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(5-6)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 55, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(7-8)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 70, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(9-10)% chance to Block Projectile Attack Damage" }, } }, - ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 81, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(11-12)% chance to Block Projectile Attack Damage" }, } }, - ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 42, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 58, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "6% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 74, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "8% increased Mana Reservation Efficiency of Skills" }, } }, - ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 82, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 42, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(3-4)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 58, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(5-6)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 74, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(7-8)% increased Mana Reservation Efficiency of Skills" }, } }, - ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(9-10)% increased Mana Reservation Efficiency of Skills" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+1 to Weapon Range", statOrder = { 2401 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+1 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+2 to Weapon Range", statOrder = { 2401 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, - ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+3 to Weapon Range", statOrder = { 2401 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+3 to Weapon Range" }, } }, - ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1445 }, level = 11, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(5-15) Life gained when you Block" }, } }, - ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1445 }, level = 22, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(16-25) Life gained when you Block" }, } }, - ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1445 }, level = 36, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(26-40) Life gained when you Block" }, } }, - ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1445 }, level = 48, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(41-60) Life gained when you Block" }, } }, - ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1445 }, level = 60, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(61-85) Life gained when you Block" }, } }, - ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1445 }, level = 75, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(86-100) Life gained when you Block" }, } }, - ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1446 }, level = 15, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(4-12) Mana gained when you Block" }, } }, - ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1446 }, level = 32, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(13-21) Mana gained when you Block" }, } }, - ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1446 }, level = 58, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(22-30) Mana gained when you Block" }, } }, - ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1446 }, level = 75, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(31-39) Mana gained when you Block" }, } }, - ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2498 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1842038569] = { "(20-40)% increased Fishing Line Strength" }, } }, - ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2499 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1550221644] = { "(15-30)% reduced Fishing Pool Consumption" }, } }, - ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2500 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3360430812] = { "Rhoa Feather Lure" }, } }, - ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2501 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2054162825] = { "Karui Stone Hook" }, } }, - ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2502 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [170497091] = { "(30-50)% increased Fishing Range" }, } }, - ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2503 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3802667447] = { "(15-20)% increased Quantity of Fish Caught" }, } }, - ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2504 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3310914132] = { "(25-40)% increased Rarity of Fish Caught" }, } }, - ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 2902 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, - ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 858 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 858 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } }, - ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 858 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(31-34)% increased Chaos Damage" }, } }, - ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "Leech Life 150% faster", statOrder = { 1821 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life 150% faster" }, } }, - ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2615 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (6-10)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2615 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2615 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2615 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, - ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2615 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 2615 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (9-10)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 2615 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (11-12)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 2615 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (13-14)% Lightning Resistance" }, } }, - ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 2615 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (15-16)% Lightning Resistance" }, } }, - ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2613 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (6-10)% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 2613 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 2613 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 2613 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 2613 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, - ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 2613 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 2613 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (7-8)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 2613 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (9-10)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 2613 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (11-12)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 2613 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (13-14)% Fire Resistance" }, } }, - ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 2613 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (15-16)% Fire Resistance" }, } }, - ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2614 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (6-10)% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 2614 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 3% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 2614 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 2614 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 2614 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 2614 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, - ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 2614 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 2614 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-6)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 2614 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (7-8)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 2614 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (9-10)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 2614 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (11-12)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 2614 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (13-14)% Cold Resistance" }, } }, - ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 2614 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (15-16)% Cold Resistance" }, } }, - ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, - ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, - ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 15, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(3-4)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 45, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-6)% increased Attack and Cast Speed" }, } }, - ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 70, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-8)% increased Attack and Cast Speed" }, } }, - ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "Leeches (0.5-0.7)% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.5-0.7)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "Leeches (0.6-0.8)% of Physical Damage as Life", statOrder = { 972 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.6-0.8)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "Leeches (0.7-0.9)% of Physical Damage as Life", statOrder = { 972 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.7-0.9)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "Leeches (0.8-1)% of Physical Damage as Life", statOrder = { 972 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.8-1)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "Leeches (0.9-1.1)% of Physical Damage as Life", statOrder = { 972 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.9-1.1)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "Leeches (1-1.2)% of Physical Damage as Life", statOrder = { 972 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (1-1.2)% of Physical Damage as Life" }, } }, - ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "Leeches (1.1-1.3)% of Physical Damage as Life", statOrder = { 972 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (1.1-1.3)% of Physical Damage as Life" }, } }, - ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1093 }, level = 4, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, } }, - ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1093 }, level = 15, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(9-16)% increased Attack Damage" }, } }, - ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1093 }, level = 30, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-24)% increased Attack Damage" }, } }, - ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1093 }, level = 60, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(25-29)% increased Attack Damage" }, } }, - ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1093 }, level = 81, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(30-34)% increased Attack Damage" }, } }, - ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2250 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(21-25)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2250 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(26-30)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2250 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(31-35)% increased Totem Placement speed" }, } }, - ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2250 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(36-45)% increased Totem Placement speed" }, } }, - ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(11-13)% chance to Avoid being Stunned" }, } }, - ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(14-16)% chance to Avoid being Stunned" }, } }, - ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(17-19)% chance to Avoid being Stunned" }, } }, - ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-22)% chance to Avoid being Stunned" }, } }, - ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 58, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(23-26)% chance to Avoid being Stunned" }, } }, - ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 74, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-30)% chance to Avoid being Stunned" }, } }, - ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 82, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(31-44)% chance to Avoid being Stunned" }, } }, - ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 2878 }, level = 58, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(31-39)% increased Stun Threshold" }, } }, - ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 2878 }, level = 74, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(40-45)% increased Stun Threshold" }, } }, - ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 2878 }, level = 82, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(46-60)% increased Stun Threshold" }, } }, - ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (3-4) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrder = { 1241 }, level = 11, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (6-8) to (12-14) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-12) to (19-23) Fire Damage to Spells", statOrder = { 1241 }, level = 18, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-12) to (19-23) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrder = { 1241 }, level = 26, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-18) to (27-31) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (19-25) to (37-44) Fire Damage to Spells", statOrder = { 1241 }, level = 33, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-25) to (37-44) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (26-33) to (48-57) Fire Damage to Spells", statOrder = { 1241 }, level = 42, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (26-33) to (48-57) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (34-42) to (64-73) Fire Damage to Spells", statOrder = { 1241 }, level = 51, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (34-42) to (64-73) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (43-52) to (79-91) Fire Damage to Spells", statOrder = { 1241 }, level = 62, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (43-52) to (79-91) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (53-66) to (98-115) Fire Damage to Spells", statOrder = { 1241 }, level = 74, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (53-66) to (98-115) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds 67 to (80-90) Fire Damage to Spells", statOrder = { 1241 }, level = 82, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds 67 to (80-90) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 1 to (2-3) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrder = { 1242 }, level = 11, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (5-7) to (10-12) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrder = { 1242 }, level = 18, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (16-18) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrder = { 1242 }, level = 26, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-15) to (22-25) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (16-20) to (30-36) Cold Damage to Spells", statOrder = { 1242 }, level = 33, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-20) to (30-36) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (21-26) to (40-46) Cold Damage to Spells", statOrder = { 1242 }, level = 42, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-26) to (40-46) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (27-35) to (51-60) Cold Damage to Spells", statOrder = { 1242 }, level = 51, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (27-35) to (51-60) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (36-43) to (64-75) Cold Damage to Spells", statOrder = { 1242 }, level = 62, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (36-43) to (64-75) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (44-54) to (81-93) Cold Damage to Spells", statOrder = { 1242 }, level = 74, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (44-54) to (81-93) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1242 }, level = 82, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (35-45) to (66-74) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (4-5) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrder = { 1243 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (21-22) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (33-35) Lightning Damage to Spells", statOrder = { 1243 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (33-35) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-48) Lightning Damage to Spells", statOrder = { 1243 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (46-48) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (49-68) Lightning Damage to Spells", statOrder = { 1243 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (49-68) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (69-88) Lightning Damage to Spells", statOrder = { 1243 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (69-88) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (89-115) Lightning Damage to Spells", statOrder = { 1243 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-9) to (89-115) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (116-144) Lightning Damage to Spells", statOrder = { 1243 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (116-144) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (145-179) Lightning Damage to Spells", statOrder = { 1243 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-14) to (145-179) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1243 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (134-144) Lightning Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (4-5) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrder = { 1241 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (8-11) to (17-19) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-29) Fire Damage to Spells", statOrder = { 1241 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-17) to (26-29) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-23) to (36-42) Fire Damage to Spells", statOrder = { 1241 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-23) to (36-42) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1241 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-33) to (50-59) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (34-44) to (65-76) Fire Damage to Spells", statOrder = { 1241 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (34-44) to (65-76) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (45-56) to (85-99) Fire Damage to Spells", statOrder = { 1241 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (45-56) to (85-99) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (57-70) to (107-123) Fire Damage to Spells", statOrder = { 1241 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (57-70) to (107-123) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (71-88) to (132-155) Fire Damage to Spells", statOrder = { 1241 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (71-88) to (132-155) Fire Damage to Spells" }, } }, - ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1241 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (67-81) to (120-135) Fire Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (1-2) to (3-4) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrder = { 1242 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (15-18) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-15) to (23-28) Cold Damage to Spells", statOrder = { 1242 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (12-15) to (23-28) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrder = { 1242 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-22) to (33-38) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (24-30) to (45-53) Cold Damage to Spells", statOrder = { 1242 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (24-30) to (45-53) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-40) to (59-69) Cold Damage to Spells", statOrder = { 1242 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (32-40) to (59-69) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (42-52) to (77-90) Cold Damage to Spells", statOrder = { 1242 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (42-52) to (77-90) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (54-64) to (96-113) Cold Damage to Spells", statOrder = { 1242 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (54-64) to (96-113) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (66-82) to (120-140) Cold Damage to Spells", statOrder = { 1242 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (66-82) to (120-140) Cold Damage to Spells" }, } }, - ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1242 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (57-66) to (100-111) Cold Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (6-7) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrder = { 1243 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (32-34) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrder = { 1243 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (49-52) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (69-73) Lightning Damage to Spells", statOrder = { 1243 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (69-73) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-8) to (97-102) Lightning Damage to Spells", statOrder = { 1243 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (97-102) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrder = { 1243 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-10) to (126-133) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-12) to (164-173) Lightning Damage to Spells", statOrder = { 1243 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-12) to (164-173) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-17) to (204-216) Lightning Damage to Spells", statOrder = { 1243 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-17) to (204-216) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-20) to (255-270) Lightning Damage to Spells", statOrder = { 1243 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (7-20) to (255-270) Lightning Damage to Spells" }, } }, - ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrder = { 1243 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (6-16) to (201-216) Lightning Damage to Spells" }, } }, - ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos damage", statOrder = { 1227 }, level = 83, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (56-87) to (105-160) Chaos damage" }, } }, - ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos damage", statOrder = { 1227 }, level = 62, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (37-59) to (79-103) Chaos damage" }, } }, - ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos damage", statOrder = { 1227 }, level = 74, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-67) to (89-113) Chaos damage" }, } }, - ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos damage", statOrder = { 1227 }, level = 82, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (53-79) to (101-131) Chaos damage" }, } }, - ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos damage", statOrder = { 1227 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (98-149) to (183-280) Chaos damage" }, } }, - ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos damage", statOrder = { 1227 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (61-103) to (149-193) Chaos damage" }, } }, - ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos damage", statOrder = { 1227 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (73-113) to (163-205) Chaos damage" }, } }, - ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos damage", statOrder = { 1227 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (89-131) to (181-229) Chaos damage" }, } }, - ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 2967 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, - ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1225 }, level = 62, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (11-15) to (27-33) Chaos Damage to Attacks" }, } }, - ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1225 }, level = 74, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (17-21) to (37-43) Chaos Damage to Attacks" }, } }, - ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1225 }, level = 82, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (23-37) to (49-61) Chaos Damage to Attacks" }, } }, - ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 2786 }, level = 30, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, } }, - ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 2786 }, level = 60, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, } }, - ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 858, 2786 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } }, - ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 402 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1289910726] = { "Socketed Gems deal 175 to 225 Added Fire Damage" }, } }, - ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 396 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 20% more Attack and Cast Speed" }, } }, - ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 396 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 16% more Attack and Cast Speed" }, } }, - ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 399 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [3835899275] = { "Socketed Gems deal 30% more Elemental Damage" }, } }, - ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 3879 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [3859593448] = { "5% reduced Elemental Damage Taken while stationary" }, } }, - ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2120 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, - ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1604 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, - ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1604 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 15% of Physical Damage as Extra Fire Damage" }, } }, - ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1621 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [3762784591] = { "25% reduced Chaos Damage taken over time" }, } }, - ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Hit Chance", statOrder = { 388 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1681904129] = { "Socketed Gems have +3.5% Critical Hit Chance" }, } }, - ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 3820 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "caster", "speed" }, tradeHashes = { [614350381] = { "10% increased Attack and Cast Speed during any Flask Effect" }, } }, - ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 2800 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "10% increased Movement Speed during any Flask Effect" }, } }, - ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 3819 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "4 to 7 Added Cold Damage per Frenzy Charge" }, } }, - ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 3819 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "8 to 12 Added Cold Damage per Frenzy Charge" }, } }, - ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 3821 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3623716321] = { "Adds 60 to 100 Fire Damage if you've Blocked Recently" }, } }, - ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 398 }, level = 63, group = "DisplaySupportedSkillsDealDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1235873320] = { "Socketed Gems deal 30% more Damage while on Low Life" }, } }, - ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrder = { 3813 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHashes = { [3392890360] = { "Damage Penetrates 5% Elemental Resistances during any Flask Effect" }, } }, - ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 3814 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "physical" }, tradeHashes = { [2693266036] = { "5% additional Physical Damage Reduction during any Flask Effect" }, } }, - ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 9130 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 40% reduced Reflected Damage" }, } }, - ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 3816 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "power_charge" }, tradeHashes = { [3945147290] = { "25% chance to gain a Power Charge when you Block" }, } }, - ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrder = { 3817 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [583277599] = { "Chill Nearby Enemies when you Block" }, } }, - ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of maximum Mana when you use a Skill", statOrder = { 3058 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [308309328] = { "10% chance to Recover 10% of maximum Mana when you use a Skill" }, } }, - ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 8287 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335507772] = { "+3 to maximum Fortification" }, } }, - ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5120 }, level = 63, group = "CrushOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2228892313] = { "(15-25)% chance to Crush on Hit" }, } }, - ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6315 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2989883253] = { "Gain Alchemist's Genius when you use a Flask" }, } }, - ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3187 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "16% chance to gain a Power, Frenzy, or Endurance Charge on kill" }, } }, - ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrder = { 432 }, level = 63, group = "SocketedGemsNonCurseAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "aura", "gem" }, tradeHashes = { [223595318] = { "Socketed Non-Curse Aura Gems have 20% increased Aura Effect" }, } }, - ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrder = { 132 }, level = 63, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, - ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Cast Level 20 Fire Burst on Hit", statOrder = { 556 }, level = 63, group = "FireBurstOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack" }, tradeHashes = { [1621470436] = { "Cast Level 20 Fire Burst on Hit" }, } }, - ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits", statOrder = { 533, 533.1 }, level = 63, group = "GrantsEssenceMinion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [470688636] = { "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits" }, } }, - ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Area of Effect", statOrder = { 1557 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [280731498] = { "25% increased Area of Effect" }, } }, - ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6384 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3049760680] = { "Gain Onslaught for 3 seconds when Hit" }, } }, - ["OnslaughtWhenHitNewEssence1"] = { type = "Suffix", affix = "of the Essence", "You gain Onslaught for 6 seconds when Hit", statOrder = { 2481 }, level = 63, group = "OnslaughtWhenHitForDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2764164760] = { "You gain Onslaught for 6 seconds when Hit" }, } }, - ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrder = { 430 }, level = 63, group = "SupportDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "damage", "gem" }, tradeHashes = { [3846088475] = { "Socketed Gems deal 30% more Damage over Time" }, } }, - ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Curse Magnitudes", statOrder = { 2266 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "5% increased Curse Magnitudes" }, } }, - ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Curse Magnitudes", statOrder = { 2266 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Curse Magnitudes" }, } }, - ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Mark Skills", statOrder = { 2268 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [712554801] = { "25% increased Effect of your Mark Skills" }, } }, - ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 5687 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3322709337] = { "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds" }, } }, - ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 8613 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1521863824] = { "12% increased Movement speed while on Burning, Chilled or Shocked ground" }, } }, - ["ManaRegenerationWhileShockedEssence1"] = { type = "Suffix", affix = "of the Essence", "70% increased Mana Regeneration Rate while Shocked", statOrder = { 2177 }, level = 63, group = "ManaRegenerationWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2076519255] = { "70% increased Mana Regeneration Rate while Shocked" }, } }, - ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 7503 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [3041288981] = { "Recover 5% of your maximum Mana when you Block" }, } }, - ["BleedDuration1"] = { type = "Suffix", affix = "", "(8-12)% increased Bleeding Duration", statOrder = { 4522 }, level = 30, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(8-12)% increased Bleeding Duration" }, } }, - ["BleedDuration2"] = { type = "Suffix", affix = "", "(13-18)% increased Bleeding Duration", statOrder = { 4522 }, level = 60, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(13-18)% increased Bleeding Duration" }, } }, - ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 500 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } }, - ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 496 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } }, - ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 519 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, - ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 501 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1142 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-15)% to Chaos Damage over Time Multiplier" }, } }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1142 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-20)% to Chaos Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1139 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-15)% to Cold Damage over Time Multiplier" }, } }, - ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1139 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-20)% to Cold Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-15)% to Fire Damage over Time Multiplier" }, } }, - ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-20)% to Fire Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1134 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-15)% to Physical Damage over Time Multiplier" }, } }, - ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1134 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-20)% to Physical Damage over Time Multiplier" }, } }, - ["EssenceIncreasedLifePercent1"] = { type = "Prefix", affix = "Essences", "(8-10)% increased maximum Life", statOrder = { 870 }, level = 72, group = "MaximumLifeIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } }, - ["EssenceIncreasedManaPercent1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Mana", statOrder = { 872 }, level = 72, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, } }, - ["EssenceGlobalDefences1"] = { type = "Prefix", affix = "Essences", "(20-30)% increased Global Defences", statOrder = { 2486 }, level = 72, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1389153006] = { "(20-30)% increased Global Defences" }, } }, - ["EssenceDamageasExtraPhysical1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 72, group = "DamageasExtraPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (15-20)% of Damage as Extra Physical Damage" }, } }, - ["EssenceDamageasExtraPhysical2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 72, group = "DamageasExtraPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (25-33)% of Damage as Extra Physical Damage" }, } }, - ["EssenceDamageasExtraFire1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 72, group = "DamageasExtraFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (15-20)% of Damage as Extra Fire Damage" }, } }, - ["EssenceDamageasExtraFire2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 72, group = "DamageasExtraFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-33)% of Damage as Extra Fire Damage" }, } }, - ["EssenceDamageasExtraCold1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 72, group = "DamageasExtraCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (15-20)% of Damage as Extra Cold Damage" }, } }, - ["EssenceDamageasExtraCold2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 72, group = "DamageasExtraCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (25-33)% of Damage as Extra Cold Damage" }, } }, - ["EssenceDamageasExtraLightning1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 72, group = "DamageasExtraLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (15-20)% of Damage as Extra Lightning Damage" }, } }, - ["EssenceDamageasExtraLightning2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 72, group = "DamageasExtraLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (25-33)% of Damage as Extra Lightning Damage" }, } }, - ["EssenceFireRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Fire Damage taken Recouped as Life", statOrder = { 6150 }, level = 72, group = "EssenceFireRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(26-30)% of Fire Damage taken Recouped as Life" }, } }, - ["EssenceColdRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Cold Damage taken Recouped as Life", statOrder = { 5307 }, level = 72, group = "EssenceColdRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(26-30)% of Cold Damage taken Recouped as Life" }, } }, - ["EssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7081 }, level = 72, group = "EssenceLightningRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(26-30)% of Lightning Damage taken Recouped as Life" }, } }, - ["EssencePhysicalDamageTakenAsChaos1"] = { type = "Prefix", affix = "Essences", "(10-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2124 }, level = 72, group = "PhysicalDamageTakenAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(10-15)% of Physical Damage from Hits taken as Chaos Damage" }, } }, - ["EssenceAttackSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Attack Skills", statOrder = { 929 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+3 to Level of all Attack Skills" }, } }, - ["EssenceAttackSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+5 to Level of all Attack Skills", statOrder = { 929 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+5 to Level of all Attack Skills" }, } }, - ["EssenceSpellSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, - ["EssenceSpellSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+5 to Level of all Spell Skills", statOrder = { 922 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+5 to Level of all Spell Skills" }, } }, - ["EssenceOnslaughtonKill1"] = { type = "Suffix", affix = "of the Essence", "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon", statOrder = { 7174 }, level = 72, group = "EssenceOnslaughtonKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1881230714] = { "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon" }, } }, - ["EssenceManaCostReduction"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-20)% increased Mana Cost Efficiency" }, } }, - ["EssenceManaCostReduction2H"] = { type = "Suffix", affix = "of the Essence", "(28-32)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(28-32)% increased Mana Cost Efficiency" }, } }, - ["EssencePercentStrength1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Strength", statOrder = { 1080 }, level = 72, group = "PercentageStrength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(7-10)% increased Strength" }, } }, - ["EssencePercentDexterity1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Dexterity", statOrder = { 1081 }, level = 72, group = "PercentageDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(7-10)% increased Dexterity" }, } }, - ["EssencePercentIntelligence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Intelligence", statOrder = { 1082 }, level = 72, group = "PercentageIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(7-10)% increased Intelligence" }, } }, - ["EssenceReducedCriticalDamageAgainstYou1"] = { type = "Suffix", affix = "of the Essence", "Hits against you have (40-50)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 72, group = "EssenceReducedCriticalDamageAgainstYou", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3855016469] = { "Hits against you have (40-50)% reduced Critical Damage Bonus" }, } }, - ["EssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 72, group = "EssenceGoldDropped", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, - ["EssenceAuraEffect1"] = { type = "Suffix", affix = "of the Essence", "Aura Skills have (15-20)% increased Magnitudes", statOrder = { 2472 }, level = 72, group = "EssenceAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [315791320] = { "Aura Skills have (15-20)% increased Magnitudes" }, } }, + ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(5-8) to Strength", statOrder = { 991 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(5-8) to Strength" }, } }, + ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(9-12) to Strength", statOrder = { 991 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(9-12) to Strength" }, } }, + ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(13-16) to Strength", statOrder = { 991 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(13-16) to Strength" }, } }, + ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(17-20) to Strength", statOrder = { 991 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(17-20) to Strength" }, } }, + ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(21-24) to Strength", statOrder = { 991 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(21-24) to Strength" }, } }, + ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(25-27) to Strength", statOrder = { 991 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(25-27) to Strength" }, } }, + ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(28-30) to Strength", statOrder = { 991 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(28-30) to Strength" }, } }, + ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(31-33) to Strength", statOrder = { 991 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "mace", "axe", "sword", "spear", "flail", "crossbow", "sceptre", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(31-33) to Strength" }, } }, + ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(34-36) to Strength", statOrder = { 991 }, level = 81, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(34-36) to Strength" }, } }, + ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(5-8) to Dexterity", statOrder = { 992 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(5-8) to Dexterity" }, } }, + ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(9-12) to Dexterity", statOrder = { 992 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(9-12) to Dexterity" }, } }, + ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(13-16) to Dexterity", statOrder = { 992 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(13-16) to Dexterity" }, } }, + ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(17-20) to Dexterity", statOrder = { 992 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(17-20) to Dexterity" }, } }, + ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(21-24) to Dexterity", statOrder = { 992 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(21-24) to Dexterity" }, } }, + ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(25-27) to Dexterity", statOrder = { 992 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(25-27) to Dexterity" }, } }, + ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(28-30) to Dexterity", statOrder = { 992 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(28-30) to Dexterity" }, } }, + ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(31-33) to Dexterity", statOrder = { 992 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "sword", "spear", "claw", "warstaff", "dagger", "bow", "crossbow", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(31-33) to Dexterity" }, } }, + ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(34-36) to Dexterity", statOrder = { 992 }, level = 81, group = "Dexterity", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(34-36) to Dexterity" }, } }, + ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(5-8) to Intelligence", statOrder = { 993 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(5-8) to Intelligence" }, } }, + ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(9-12) to Intelligence", statOrder = { 993 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(9-12) to Intelligence" }, } }, + ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(13-16) to Intelligence", statOrder = { 993 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(13-16) to Intelligence" }, } }, + ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(17-20) to Intelligence", statOrder = { 993 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(17-20) to Intelligence" }, } }, + ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(21-24) to Intelligence", statOrder = { 993 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(21-24) to Intelligence" }, } }, + ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(25-27) to Intelligence", statOrder = { 993 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(25-27) to Intelligence" }, } }, + ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(28-30) to Intelligence", statOrder = { 993 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(28-30) to Intelligence" }, } }, + ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(31-33) to Intelligence", statOrder = { 993 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "dagger", "warstaff", "flail", "wand", "staff", "sceptre", "trap", "talisman", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(31-33) to Intelligence" }, } }, + ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(34-36) to Intelligence", statOrder = { 993 }, level = 81, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(34-36) to Intelligence" }, } }, + ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(2-4) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(2-4) to all Attributes" }, } }, + ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-7) to all Attributes", statOrder = { 990 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-7) to all Attributes" }, } }, + ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(8-10) to all Attributes", statOrder = { 990 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(8-10) to all Attributes" }, } }, + ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(11-13) to all Attributes", statOrder = { 990 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(11-13) to all Attributes" }, } }, + ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(14-16) to all Attributes", statOrder = { 990 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(14-16) to all Attributes" }, } }, + ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(17-18) to all Attributes", statOrder = { 990 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(17-18) to all Attributes" }, } }, + ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(19-20) to all Attributes", statOrder = { 990 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(19-20) to all Attributes" }, } }, + ["AllAttributes8"] = { type = "Suffix", affix = "of the Multiverse", "+(21-22) to all Attributes", statOrder = { 990 }, level = 75, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-22) to all Attributes" }, } }, + ["AllAttributes9_"] = { type = "Suffix", affix = "of the Infinite", "+(23-24) to all Attributes", statOrder = { 990 }, level = 82, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(23-24) to all Attributes" }, } }, + ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-10)% to Fire Resistance", statOrder = { 1013 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(6-10)% to Fire Resistance" }, } }, + ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(11-15)% to Fire Resistance", statOrder = { 1013 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(11-15)% to Fire Resistance" }, } }, + ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(16-20)% to Fire Resistance", statOrder = { 1013 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(16-20)% to Fire Resistance" }, } }, + ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(21-25)% to Fire Resistance", statOrder = { 1013 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, + ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(26-30)% to Fire Resistance", statOrder = { 1013 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(26-30)% to Fire Resistance" }, } }, + ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(31-35)% to Fire Resistance", statOrder = { 1013 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(31-35)% to Fire Resistance" }, } }, + ["FireResist7"] = { type = "Suffix", affix = "of Magma", "+(36-40)% to Fire Resistance", statOrder = { 1013 }, level = 71, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, + ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(41-45)% to Fire Resistance", statOrder = { 1013 }, level = 82, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [3372524247] = { "+(41-45)% to Fire Resistance" }, } }, + ["ColdResist1"] = { type = "Suffix", affix = "of the Seal", "+(6-10)% to Cold Resistance", statOrder = { 1019 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(6-10)% to Cold Resistance" }, } }, + ["ColdResist2"] = { type = "Suffix", affix = "of the Penguin", "+(11-15)% to Cold Resistance", statOrder = { 1019 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(11-15)% to Cold Resistance" }, } }, + ["ColdResist3"] = { type = "Suffix", affix = "of the Narwhal", "+(16-20)% to Cold Resistance", statOrder = { 1019 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(16-20)% to Cold Resistance" }, } }, + ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(21-25)% to Cold Resistance", statOrder = { 1019 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, } }, + ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(26-30)% to Cold Resistance", statOrder = { 1019 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-30)% to Cold Resistance" }, } }, + ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(31-35)% to Cold Resistance", statOrder = { 1019 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-35)% to Cold Resistance" }, } }, + ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(36-40)% to Cold Resistance", statOrder = { 1019 }, level = 71, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, } }, + ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(41-45)% to Cold Resistance", statOrder = { 1019 }, level = 82, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(41-45)% to Cold Resistance" }, } }, + ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-10)% to Lightning Resistance", statOrder = { 1022 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(6-10)% to Lightning Resistance" }, } }, + ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(11-15)% to Lightning Resistance", statOrder = { 1022 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(11-15)% to Lightning Resistance" }, } }, + ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(16-20)% to Lightning Resistance", statOrder = { 1022 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(16-20)% to Lightning Resistance" }, } }, + ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(21-25)% to Lightning Resistance", statOrder = { 1022 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, + ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(26-30)% to Lightning Resistance", statOrder = { 1022 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(26-30)% to Lightning Resistance" }, } }, + ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(31-35)% to Lightning Resistance", statOrder = { 1022 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(31-35)% to Lightning Resistance" }, } }, + ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(36-40)% to Lightning Resistance", statOrder = { 1022 }, level = 71, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, + ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(41-45)% to Lightning Resistance", statOrder = { 1022 }, level = 82, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1671376347] = { "+(41-45)% to Lightning Resistance" }, } }, + ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 1012 }, level = 12, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(3-5)% to all Elemental Resistances" }, } }, + ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 1012 }, level = 26, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(6-8)% to all Elemental Resistances" }, } }, + ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 1012 }, level = 40, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(9-11)% to all Elemental Resistances" }, } }, + ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 1012 }, level = 54, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(12-14)% to all Elemental Resistances" }, } }, + ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 1012 }, level = 68, group = "AllResistances", weightKey = { "str_int_shield", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(15-16)% to all Elemental Resistances" }, } }, + ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 1012 }, level = 80, group = "AllResistances", weightKey = { "str_int_shield", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(17-18)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances1"] = { type = "Suffix", affix = "of Adjustment", "Allies in your Presence have +(3-5)% to all Elemental Resistances", statOrder = { 919 }, level = 12, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(3-5)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances2"] = { type = "Suffix", affix = "of Acclimatisation", "Allies in your Presence have +(6-8)% to all Elemental Resistances", statOrder = { 919 }, level = 26, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(6-8)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances3"] = { type = "Suffix", affix = "of Adaptation", "Allies in your Presence have +(9-11)% to all Elemental Resistances", statOrder = { 919 }, level = 40, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(9-11)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances4"] = { type = "Suffix", affix = "of Evolution", "Allies in your Presence have +(12-14)% to all Elemental Resistances", statOrder = { 919 }, level = 54, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(12-14)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances5"] = { type = "Suffix", affix = "of Progression", "Allies in your Presence have +(15-16)% to all Elemental Resistances", statOrder = { 919 }, level = 68, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(15-16)% to all Elemental Resistances" }, } }, + ["NearbyAlliesAllResistances6"] = { type = "Suffix", affix = "of Metamorphosis", "Allies in your Presence have +(17-18)% to all Elemental Resistances", statOrder = { 919 }, level = 80, group = "AlliesInPresenceAllResistances", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(17-18)% to all Elemental Resistances" }, } }, + ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(4-7)% to Chaos Resistance", statOrder = { 1023 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(4-7)% to Chaos Resistance" }, } }, + ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(8-11)% to Chaos Resistance", statOrder = { 1023 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(8-11)% to Chaos Resistance" }, } }, + ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(12-15)% to Chaos Resistance", statOrder = { 1023 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(12-15)% to Chaos Resistance" }, } }, + ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(16-19)% to Chaos Resistance", statOrder = { 1023 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(16-19)% to Chaos Resistance" }, } }, + ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(20-23)% to Chaos Resistance", statOrder = { 1023 }, level = 68, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(20-23)% to Chaos Resistance" }, } }, + ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(24-27)% to Chaos Resistance", statOrder = { 1023 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(24-27)% to Chaos Resistance" }, } }, + ["IncreasedLife1"] = { type = "Prefix", affix = "Hale", "+(10-19) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(10-19) to maximum Life" }, } }, + ["IncreasedLife2"] = { type = "Prefix", affix = "Healthy", "+(20-29) to maximum Life", statOrder = { 886 }, level = 6, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(20-29) to maximum Life" }, } }, + ["IncreasedLife3"] = { type = "Prefix", affix = "Sanguine", "+(30-39) to maximum Life", statOrder = { 886 }, level = 16, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(30-39) to maximum Life" }, } }, + ["IncreasedLife4"] = { type = "Prefix", affix = "Stalwart", "+(40-59) to maximum Life", statOrder = { 886 }, level = 24, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(40-59) to maximum Life" }, } }, + ["IncreasedLife5"] = { type = "Prefix", affix = "Stout", "+(60-69) to maximum Life", statOrder = { 886 }, level = 33, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(60-69) to maximum Life" }, } }, + ["IncreasedLife6"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 886 }, level = 38, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(70-84) to maximum Life" }, } }, + ["IncreasedLife7"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 886 }, level = 46, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(85-99) to maximum Life" }, } }, + ["IncreasedLife8"] = { type = "Prefix", affix = "Virile", "+(100-119) to maximum Life", statOrder = { 886 }, level = 54, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(100-119) to maximum Life" }, } }, + ["IncreasedLife9"] = { type = "Prefix", affix = "Athlete's", "+(120-149) to maximum Life", statOrder = { 886 }, level = 60, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "gloves", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(120-149) to maximum Life" }, } }, + ["IncreasedLife10"] = { type = "Prefix", affix = "Fecund", "+(150-174) to maximum Life", statOrder = { 886 }, level = 65, group = "IncreasedLife", weightKey = { "body_armour", "shield", "helmet", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(150-174) to maximum Life" }, } }, + ["IncreasedLife11"] = { type = "Prefix", affix = "Vigorous", "+(175-189) to maximum Life", statOrder = { 886 }, level = 70, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(175-189) to maximum Life" }, } }, + ["IncreasedLife12"] = { type = "Prefix", affix = "Rapturous", "+(190-199) to maximum Life", statOrder = { 886 }, level = 75, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(190-199) to maximum Life" }, } }, + ["IncreasedLife13"] = { type = "Prefix", affix = "Prime", "+(200-214) to maximum Life", statOrder = { 886 }, level = 80, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(200-214) to maximum Life" }, } }, + ["MaximumLifeIncrease1"] = { type = "Prefix", affix = "Hopeful", "(3-4)% increased maximum Life", statOrder = { 888 }, level = 33, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(3-4)% increased maximum Life" }, } }, + ["MaximumLifeIncrease2"] = { type = "Prefix", affix = "Optimistic", "(5-6)% increased maximum Life", statOrder = { 888 }, level = 60, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(5-6)% increased maximum Life" }, } }, + ["MaximumLifeIncrease3"] = { type = "Prefix", affix = "Confident", "(7-8)% increased maximum Life", statOrder = { 888 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(7-8)% increased maximum Life" }, } }, + ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(10-14) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(10-14) to maximum Mana" }, } }, + ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(15-24) to maximum Mana", statOrder = { 891 }, level = 6, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(15-24) to maximum Mana" }, } }, + ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-34) to maximum Mana", statOrder = { 891 }, level = 16, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(25-34) to maximum Mana" }, } }, + ["IncreasedMana4"] = { type = "Prefix", affix = "Teal", "+(35-54) to maximum Mana", statOrder = { 891 }, level = 25, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(35-54) to maximum Mana" }, } }, + ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(55-64) to maximum Mana", statOrder = { 891 }, level = 33, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(55-64) to maximum Mana" }, } }, + ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(65-79) to maximum Mana", statOrder = { 891 }, level = 38, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(65-79) to maximum Mana" }, } }, + ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(80-89) to maximum Mana", statOrder = { 891 }, level = 46, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(80-89) to maximum Mana" }, } }, + ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(90-104) to maximum Mana", statOrder = { 891 }, level = 54, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(90-104) to maximum Mana" }, } }, + ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(105-124) to maximum Mana", statOrder = { 891 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "helmet", "gloves", "boots", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(105-124) to maximum Mana" }, } }, + ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(125-149) to maximum Mana", statOrder = { 891 }, level = 65, group = "IncreasedMana", weightKey = { "ring", "amulet", "helmet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(125-149) to maximum Mana" }, } }, + ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(150-164) to maximum Mana", statOrder = { 891 }, level = 70, group = "IncreasedMana", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(150-164) to maximum Mana" }, } }, + ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(165-179) to maximum Mana", statOrder = { 891 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(165-179) to maximum Mana" }, } }, + ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(180-189) to maximum Mana", statOrder = { 891 }, level = 82, group = "IncreasedMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(180-189) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(20-28) to maximum Mana", statOrder = { 891 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(20-28) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(29-48) to maximum Mana", statOrder = { 891 }, level = 6, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(29-48) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(49-68) to maximum Mana", statOrder = { 891 }, level = 16, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(49-68) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(69-108) to maximum Mana", statOrder = { 891 }, level = 25, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(69-108) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(109-128) to maximum Mana", statOrder = { 891 }, level = 33, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(109-128) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(129-158) to maximum Mana", statOrder = { 891 }, level = 38, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(129-158) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(159-178) to maximum Mana", statOrder = { 891 }, level = 46, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(159-178) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(179-208) to maximum Mana", statOrder = { 891 }, level = 54, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(179-208) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(209-248) to maximum Mana", statOrder = { 891 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(209-248) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(249-298) to maximum Mana", statOrder = { 891 }, level = 65, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(249-298) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(299-328) to maximum Mana", statOrder = { 891 }, level = 70, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(299-328) to maximum Mana" }, } }, + ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(231-251) to maximum Mana", statOrder = { 891 }, level = 75, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(231-251) to maximum Mana" }, } }, + ["MaximumManaIncrease1"] = { type = "Prefix", affix = "Cognizant", "(3-4)% increased maximum Mana", statOrder = { 893 }, level = 33, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(3-4)% increased maximum Mana" }, } }, + ["MaximumManaIncrease2"] = { type = "Prefix", affix = "Perceptive", "(5-6)% increased maximum Mana", statOrder = { 893 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(5-6)% increased maximum Mana" }, } }, + ["MaximumManaIncrease3"] = { type = "Prefix", affix = "Mnemonic", "(7-8)% increased maximum Mana", statOrder = { 893 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(7-8)% increased maximum Mana" }, } }, + ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(12-22) to Armour", statOrder = { 880 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(12-22) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(23-51) to Armour", statOrder = { 880 }, level = 11, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(23-51) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(52-68) to Armour", statOrder = { 880 }, level = 16, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(52-68) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(69-107) to Armour", statOrder = { 880 }, level = 25, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(69-107) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(108-140) to Armour", statOrder = { 880 }, level = 33, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(108-140) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(141-186) to Armour", statOrder = { 880 }, level = 46, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(141-186) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(187-225) to Armour", statOrder = { 880 }, level = 54, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(187-225) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(226-267) to Armour", statOrder = { 880 }, level = 65, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(226-267) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating9"] = { type = "Prefix", affix = "Abating", "+(268-311) to Armour", statOrder = { 880 }, level = 70, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(268-311) to Armour" }, } }, + ["IncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(312-351) to Armour", statOrder = { 880 }, level = 80, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [809229260] = { "+(312-351) to Armour" }, } }, + ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(8-17) to Evasion Rating", statOrder = { 882 }, level = 1, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(8-17) to Evasion Rating" }, } }, + ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(18-38) to Evasion Rating", statOrder = { 882 }, level = 11, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(18-38) to Evasion Rating" }, } }, + ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(39-51) to Evasion Rating", statOrder = { 882 }, level = 16, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(39-51) to Evasion Rating" }, } }, + ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(52-79) to Evasion Rating", statOrder = { 882 }, level = 25, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(52-79) to Evasion Rating" }, } }, + ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(80-107) to Evasion Rating", statOrder = { 882 }, level = 33, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(80-107) to Evasion Rating" }, } }, + ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(108-141) to Evasion Rating", statOrder = { 882 }, level = 46, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(108-141) to Evasion Rating" }, } }, + ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(142-174) to Evasion Rating", statOrder = { 882 }, level = 54, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(142-174) to Evasion Rating" }, } }, + ["IncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(175-202) to Evasion Rating", statOrder = { 882 }, level = 65, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(175-202) to Evasion Rating" }, } }, + ["IncreasedEvasionRating9"] = { type = "Prefix", affix = "Adroit", "+(203-233) to Evasion Rating", statOrder = { 882 }, level = 70, group = "EvasionRating", weightKey = { "body_armour", "ring", "default", }, weightVal = { 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2144192055] = { "+(203-233) to Evasion Rating" }, } }, + ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(8-14) to maximum Energy Shield", statOrder = { 884 }, level = 1, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(8-14) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(15-20) to maximum Energy Shield", statOrder = { 884 }, level = 11, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(15-20) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(21-24) to maximum Energy Shield", statOrder = { 884 }, level = 16, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(21-24) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(25-33) to maximum Energy Shield", statOrder = { 884 }, level = 25, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(25-33) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(34-41) to maximum Energy Shield", statOrder = { 884 }, level = 33, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(34-41) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-51) to maximum Energy Shield", statOrder = { 884 }, level = 46, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(42-51) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(52-61) to maximum Energy Shield", statOrder = { 884 }, level = 54, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(52-61) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(62-70) to maximum Energy Shield", statOrder = { 884 }, level = 65, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(62-70) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(71-79) to maximum Energy Shield", statOrder = { 884 }, level = 70, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(71-79) to maximum Energy Shield" }, } }, + ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(80-89) to maximum Energy Shield", statOrder = { 884 }, level = 80, group = "EnergyShield", weightKey = { "amulet", "ring", "genesis_tree_caster", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3489782002] = { "+(80-89) to maximum Energy Shield" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(10-14)% increased Armour", statOrder = { 881 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-14)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(15-20)% increased Armour", statOrder = { 881 }, level = 16, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(15-20)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(21-26)% increased Armour", statOrder = { 881 }, level = 33, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(21-26)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(27-32)% increased Armour", statOrder = { 881 }, level = 46, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(27-32)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(33-38)% increased Armour", statOrder = { 881 }, level = 54, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(33-38)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(39-44)% increased Armour", statOrder = { 881 }, level = 65, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(39-44)% increased Armour" }, } }, + ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(45-50)% increased Armour", statOrder = { 881 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(45-50)% increased Armour" }, } }, + ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(10-14)% increased Evasion Rating", statOrder = { 883 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(10-14)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(15-20)% increased Evasion Rating", statOrder = { 883 }, level = 16, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(15-20)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(21-26)% increased Evasion Rating", statOrder = { 883 }, level = 33, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(21-26)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(27-32)% increased Evasion Rating", statOrder = { 883 }, level = 46, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(27-32)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(33-38)% increased Evasion Rating", statOrder = { 883 }, level = 54, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(33-38)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(39-44)% increased Evasion Rating", statOrder = { 883 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(39-44)% increased Evasion Rating" }, } }, + ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(45-50)% increased Evasion Rating", statOrder = { 883 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(45-50)% increased Evasion Rating" }, } }, + ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(10-14)% increased maximum Energy Shield", statOrder = { 885 }, level = 2, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-14)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(15-20)% increased maximum Energy Shield", statOrder = { 885 }, level = 16, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(15-20)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(21-26)% increased maximum Energy Shield", statOrder = { 885 }, level = 33, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(21-26)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(27-32)% increased maximum Energy Shield", statOrder = { 885 }, level = 46, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(27-32)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(33-38)% increased maximum Energy Shield", statOrder = { 885 }, level = 54, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(33-38)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(39-44)% increased maximum Energy Shield", statOrder = { 885 }, level = 65, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(39-44)% increased maximum Energy Shield" }, } }, + ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(45-50)% increased maximum Energy Shield", statOrder = { 885 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(45-50)% increased maximum Energy Shield" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(16-27) to Armour", statOrder = { 839 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(16-27) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(28-56) to Armour", statOrder = { 839 }, level = 8, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(28-56) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(57-77) to Armour", statOrder = { 839 }, level = 16, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(57-77) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(78-98) to Armour", statOrder = { 839 }, level = 25, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(78-98) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(99-127) to Armour", statOrder = { 839 }, level = 33, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(99-127) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(128-159) to Armour", statOrder = { 839 }, level = 46, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(128-159) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(160-190) to Armour", statOrder = { 839 }, level = 54, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(160-190) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(191-221) to Armour", statOrder = { 839 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(191-221) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(222-248) to Armour", statOrder = { 839 }, level = 65, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(222-248) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(249-277) to Armour", statOrder = { 839 }, level = 75, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(249-277) to Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(278-310) to Armour", statOrder = { 839 }, level = 79, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [3484657501] = { "+(278-310) to Armour" }, } }, + ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(11-18) to Evasion Rating", statOrder = { 840 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(11-18) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(19-46) to Evasion Rating", statOrder = { 840 }, level = 8, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(19-46) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(47-66) to Evasion Rating", statOrder = { 840 }, level = 16, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(47-66) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(67-87) to Evasion Rating", statOrder = { 840 }, level = 25, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(67-87) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(88-116) to Evasion Rating", statOrder = { 840 }, level = 33, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(88-116) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(117-146) to Evasion Rating", statOrder = { 840 }, level = 46, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(117-146) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(147-176) to Evasion Rating", statOrder = { 840 }, level = 54, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(147-176) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(177-207) to Evasion Rating", statOrder = { 840 }, level = 60, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(177-207) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(208-234) to Evasion Rating", statOrder = { 840 }, level = 65, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(208-234) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(235-261) to Evasion Rating", statOrder = { 840 }, level = 75, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(235-261) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(262-300) to Evasion Rating", statOrder = { 840 }, level = 79, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [53045048] = { "+(262-300) to Evasion Rating" }, } }, + ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(10-17) to maximum Energy Shield", statOrder = { 842 }, level = 1, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(10-17) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(18-24) to maximum Energy Shield", statOrder = { 842 }, level = 8, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(18-24) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(25-30) to maximum Energy Shield", statOrder = { 842 }, level = 16, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(25-30) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(31-35) to maximum Energy Shield", statOrder = { 842 }, level = 25, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(31-35) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(36-41) to maximum Energy Shield", statOrder = { 842 }, level = 33, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(36-41) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(42-47) to maximum Energy Shield", statOrder = { 842 }, level = 46, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(42-47) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "+(48-60) to maximum Energy Shield", statOrder = { 842 }, level = 54, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(48-60) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Dazzling", "+(61-73) to maximum Energy Shield", statOrder = { 842 }, level = 60, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(61-73) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(74-80) to maximum Energy Shield", statOrder = { 842 }, level = 65, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(74-80) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(81-90) to maximum Energy Shield", statOrder = { 842 }, level = 70, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(81-90) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-96) to maximum Energy Shield", statOrder = { 842 }, level = 79, group = "LocalEnergyShield", weightKey = { "focus", "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4052037485] = { "+(91-96) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(9-16) to Armour", "+(6-10) to Evasion Rating", statOrder = { 839, 840 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(9-16) to Armour" }, [53045048] = { "+(6-10) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(17-46) to Armour", "+(11-41) to Evasion Rating", statOrder = { 839, 840 }, level = 16, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(17-46) to Armour" }, [53045048] = { "+(11-41) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(47-71) to Armour", "+(42-64) to Evasion Rating", statOrder = { 839, 840 }, level = 33, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(47-71) to Armour" }, [53045048] = { "+(42-64) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(72-85) to Armour", "+(65-78) to Evasion Rating", statOrder = { 839, 840 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(72-85) to Armour" }, [53045048] = { "+(65-78) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(86-102) to Armour", "+(79-94) to Evasion Rating", statOrder = { 839, 840 }, level = 54, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(86-102) to Armour" }, [53045048] = { "+(79-94) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(103-127) to Armour", "+(95-119) to Evasion Rating", statOrder = { 839, 840 }, level = 60, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(103-127) to Armour" }, [53045048] = { "+(95-119) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(128-149) to Armour", "+(120-141) to Evasion Rating", statOrder = { 839, 840 }, level = 65, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(128-149) to Armour" }, [53045048] = { "+(120-141) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(150-170) to Armour", "+(142-161) to Evasion Rating", statOrder = { 839, 840 }, level = 75, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [3484657501] = { "+(150-170) to Armour" }, [53045048] = { "+(142-161) to Evasion Rating" }, } }, + ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(9-16) to Armour", "+(5-8) to maximum Energy Shield", statOrder = { 839, 842 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(9-16) to Armour" }, [4052037485] = { "+(5-8) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(17-46) to Armour", "+(9-15) to maximum Energy Shield", statOrder = { 839, 842 }, level = 16, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(17-46) to Armour" }, [4052037485] = { "+(9-15) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(47-71) to Armour", "+(16-21) to maximum Energy Shield", statOrder = { 839, 842 }, level = 33, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(47-71) to Armour" }, [4052037485] = { "+(16-21) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(72-85) to Armour", "+(22-25) to maximum Energy Shield", statOrder = { 839, 842 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(72-85) to Armour" }, [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(86-102) to Armour", "+(26-29) to maximum Energy Shield", statOrder = { 839, 842 }, level = 54, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(86-102) to Armour" }, [4052037485] = { "+(26-29) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(103-127) to Armour", "+(30-36) to maximum Energy Shield", statOrder = { 839, 842 }, level = 60, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(103-127) to Armour" }, [4052037485] = { "+(30-36) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(128-149) to Armour", "+(37-42) to maximum Energy Shield", statOrder = { 839, 842 }, level = 65, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(128-149) to Armour" }, [4052037485] = { "+(37-42) to maximum Energy Shield" }, } }, + ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(150-170) to Armour", "+(43-48) to maximum Energy Shield", statOrder = { 839, 842 }, level = 75, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(150-170) to Armour" }, [4052037485] = { "+(43-48) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(6-10) to Evasion Rating", "+(5-8) to maximum Energy Shield", statOrder = { 840, 842 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(6-10) to Evasion Rating" }, [4052037485] = { "+(5-8) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(11-41) to Evasion Rating", "+(9-15) to maximum Energy Shield", statOrder = { 840, 842 }, level = 16, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(11-41) to Evasion Rating" }, [4052037485] = { "+(9-15) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(42-64) to Evasion Rating", "+(16-21) to maximum Energy Shield", statOrder = { 840, 842 }, level = 33, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(42-64) to Evasion Rating" }, [4052037485] = { "+(16-21) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(65-78) to Evasion Rating", "+(22-25) to maximum Energy Shield", statOrder = { 840, 842 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(65-78) to Evasion Rating" }, [4052037485] = { "+(22-25) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(79-94) to Evasion Rating", "+(26-29) to maximum Energy Shield", statOrder = { 840, 842 }, level = 54, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(79-94) to Evasion Rating" }, [4052037485] = { "+(26-29) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(95-119) to Evasion Rating", "+(30-36) to maximum Energy Shield", statOrder = { 840, 842 }, level = 60, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(95-119) to Evasion Rating" }, [4052037485] = { "+(30-36) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(120-141) to Evasion Rating", "+(37-42) to maximum Energy Shield", statOrder = { 840, 842 }, level = 65, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(120-141) to Evasion Rating" }, [4052037485] = { "+(37-42) to maximum Energy Shield" }, } }, + ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Banshee's", "+(142-161) to Evasion Rating", "+(43-48) to maximum Energy Shield", statOrder = { 840, 842 }, level = 75, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(142-161) to Evasion Rating" }, [4052037485] = { "+(43-48) to maximum Energy Shield" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 845 }, level = 2, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(15-26)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 845 }, level = 16, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-42)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 845 }, level = 35, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(43-55)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 845 }, level = 46, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(56-67)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 845 }, level = 54, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(68-79)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 845 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(80-91)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 845 }, level = 65, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(92-100)% increased Armour" }, } }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 845 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(101-110)% increased Armour" }, } }, + ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 847 }, level = 2, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(15-26)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 847 }, level = 16, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-42)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 847 }, level = 33, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(43-55)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 847 }, level = 46, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(56-67)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 847 }, level = 54, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(68-79)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 847 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(80-91)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 847 }, level = 65, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(92-100)% increased Evasion Rating" }, } }, + ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 847 }, level = 75, group = "LocalEvasionRatingIncreasePercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(101-110)% increased Evasion Rating" }, } }, + ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(15-26)% increased Energy Shield", statOrder = { 848 }, level = 2, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(15-26)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 848 }, level = 16, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-42)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 848 }, level = 33, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(43-55)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 848 }, level = 46, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(56-67)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 848 }, level = 54, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(68-79)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 848 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(80-91)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 848 }, level = 65, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(92-100)% increased Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 848 }, level = 75, group = "LocalEnergyShieldPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(101-110)% increased Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 849 }, level = 2, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(15-26)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 849 }, level = 16, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-42)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 849 }, level = 33, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(43-55)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 849 }, level = 46, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(56-67)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 849 }, level = 54, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(68-79)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 849 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(80-91)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 849 }, level = 65, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(92-100)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 849 }, level = 75, group = "LocalArmourAndEvasion", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(101-110)% increased Armour and Evasion" }, } }, + ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 850 }, level = 2, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(15-26)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 850 }, level = 16, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(27-42)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 850 }, level = 33, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(43-55)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 850 }, level = 46, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(56-67)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 850 }, level = 54, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(68-79)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 850 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(80-91)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 850 }, level = 65, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(92-100)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 850 }, level = 75, group = "LocalArmourAndEnergyShield", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3321629045] = { "(101-110)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 2, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(15-26)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 16, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(27-42)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 33, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(43-55)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 46, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(56-67)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 54, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(68-79)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(80-91)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 65, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(92-100)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 851 }, level = 75, group = "LocalEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [1999113824] = { "(101-110)% increased Evasion and Energy Shield" }, } }, + ["LocalArmourAndStunThreshold1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "+(8-13) to Stun Threshold", statOrder = { 845, 1060 }, level = 10, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, + ["LocalArmourAndStunThreshold2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "+(14-24) to Stun Threshold", statOrder = { 845, 1060 }, level = 19, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, + ["LocalArmourAndStunThreshold3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "+(25-40) to Stun Threshold", statOrder = { 845, 1060 }, level = 38, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, + ["LocalArmourAndStunThreshold4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "+(41-63) to Stun Threshold", statOrder = { 845, 1060 }, level = 48, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, + ["LocalArmourAndStunThreshold5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "+(64-94) to Stun Threshold", statOrder = { 845, 1060 }, level = 63, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, + ["LocalArmourAndStunThreshold6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "+(95-136) to Stun Threshold", statOrder = { 845, 1060 }, level = 74, group = "LocalArmourAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "+(8-13) to Stun Threshold", statOrder = { 847, 1060 }, level = 10, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "+(14-24) to Stun Threshold", statOrder = { 847, 1060 }, level = 19, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "+(25-40) to Stun Threshold", statOrder = { 847, 1060 }, level = 38, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "+(41-63) to Stun Threshold", statOrder = { 847, 1060 }, level = 48, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "+(64-94) to Stun Threshold", statOrder = { 847, 1060 }, level = 63, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, + ["LocalEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "+(95-136) to Stun Threshold", statOrder = { 847, 1060 }, level = 74, group = "LocalEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 848, 1060 }, level = 10, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 848, 1060 }, level = 19, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 848, 1060 }, level = 38, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 848, 1060 }, level = 48, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 848, 1060 }, level = 63, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, + ["LocalEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 848, 1060 }, level = 74, group = "LocalEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold1"] = { type = "Prefix", affix = "Captain's", "(6-13)% increased Armour and Evasion", "+(8-13) to Stun Threshold", statOrder = { 849, 1060 }, level = 10, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [915769802] = { "+(8-13) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold2"] = { type = "Prefix", affix = "Commander's", "(14-20)% increased Armour and Evasion", "+(14-24) to Stun Threshold", statOrder = { 849, 1060 }, level = 19, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [915769802] = { "+(14-24) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold3"] = { type = "Prefix", affix = "Magnate's", "(21-26)% increased Armour and Evasion", "+(25-40) to Stun Threshold", statOrder = { 849, 1060 }, level = 38, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [915769802] = { "+(25-40) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold4"] = { type = "Prefix", affix = "Marshal's", "(27-32)% increased Armour and Evasion", "+(41-63) to Stun Threshold", statOrder = { 849, 1060 }, level = 48, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [915769802] = { "+(41-63) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold5"] = { type = "Prefix", affix = "General's", "(33-38)% increased Armour and Evasion", "+(64-94) to Stun Threshold", statOrder = { 849, 1060 }, level = 63, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [915769802] = { "+(64-94) to Stun Threshold" }, } }, + ["LocalArmourAndEvasionAndStunThreshold6"] = { type = "Prefix", affix = "Warlord's", "(39-42)% increased Armour and Evasion", "+(95-136) to Stun Threshold", statOrder = { 849, 1060 }, level = 74, group = "LocalArmourAndEvasionAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [915769802] = { "+(95-136) to Stun Threshold" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Defender's", "(6-13)% increased Armour and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 850, 1060 }, level = 10, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(8-13) to Stun Threshold" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Protector's", "(14-20)% increased Armour and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 850, 1060 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(14-24) to Stun Threshold" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Keeper's", "(21-26)% increased Armour and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 850, 1060 }, level = 38, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(25-40) to Stun Threshold" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Guardian's", "(27-32)% increased Armour and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 850, 1060 }, level = 48, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(41-63) to Stun Threshold" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Warden's", "(33-38)% increased Armour and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 850, 1060 }, level = 63, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(64-94) to Stun Threshold" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, + ["LocalArmourAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Sentinel's", "(39-42)% increased Armour and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 850, 1060 }, level = 74, group = "LocalArmourAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(95-136) to Stun Threshold" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold1"] = { type = "Prefix", affix = "Intuitive", "(6-13)% increased Evasion and Energy Shield", "+(8-13) to Stun Threshold", statOrder = { 851, 1060 }, level = 10, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(8-13) to Stun Threshold" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold2"] = { type = "Prefix", affix = "Psychic", "(14-20)% increased Evasion and Energy Shield", "+(14-24) to Stun Threshold", statOrder = { 851, 1060 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(14-24) to Stun Threshold" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold3"] = { type = "Prefix", affix = "Telepath's", "(21-26)% increased Evasion and Energy Shield", "+(25-40) to Stun Threshold", statOrder = { 851, 1060 }, level = 38, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(25-40) to Stun Threshold" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold4"] = { type = "Prefix", affix = "Illusionist's", "(27-32)% increased Evasion and Energy Shield", "+(41-63) to Stun Threshold", statOrder = { 851, 1060 }, level = 48, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(41-63) to Stun Threshold" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold5"] = { type = "Prefix", affix = "Mentalist's", "(33-38)% increased Evasion and Energy Shield", "+(64-94) to Stun Threshold", statOrder = { 851, 1060 }, level = 63, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(64-94) to Stun Threshold" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, + ["LocalEvasionAndEnergyShieldAndStunThreshold6"] = { type = "Prefix", affix = "Trickster's", "(39-42)% increased Evasion and Energy Shield", "+(95-136) to Stun Threshold", statOrder = { 851, 1060 }, level = 74, group = "LocalEvasionAndEnergyShieldAndStunThreshold", weightKey = { "body_armour", "helmet", "gloves", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(95-136) to Stun Threshold" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "(6-13)% increased Armour", "+(7-10) to maximum Life", statOrder = { 845, 886 }, level = 8, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, + ["LocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "(14-20)% increased Armour", "+(11-19) to maximum Life", statOrder = { 845, 886 }, level = 16, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, + ["LocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "(21-26)% increased Armour", "+(20-25) to maximum Life", statOrder = { 845, 886 }, level = 33, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, + ["LocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "(27-32)% increased Armour", "+(26-32) to maximum Life", statOrder = { 845, 886 }, level = 46, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, + ["LocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "(33-38)% increased Armour", "+(33-41) to maximum Life", statOrder = { 845, 886 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, + ["LocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "(39-42)% increased Armour", "+(42-49) to maximum Life", statOrder = { 845, 886 }, level = 78, group = "LocalIncreasedArmourAndLife", weightKey = { "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "(6-13)% increased Evasion Rating", "+(7-10) to maximum Life", statOrder = { 847, 886 }, level = 8, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "(14-20)% increased Evasion Rating", "+(11-19) to maximum Life", statOrder = { 847, 886 }, level = 16, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "(21-26)% increased Evasion Rating", "+(20-25) to maximum Life", statOrder = { 847, 886 }, level = 33, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "(27-32)% increased Evasion Rating", "+(26-32) to maximum Life", statOrder = { 847, 886 }, level = 46, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "(33-38)% increased Evasion Rating", "+(33-41) to maximum Life", statOrder = { 847, 886 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, + ["LocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "(39-42)% increased Evasion Rating", "+(42-49) to maximum Life", statOrder = { 847, 886 }, level = 78, group = "LocalIncreasedEvasionAndLife", weightKey = { "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "(6-13)% increased Energy Shield", "+(7-10) to maximum Life", statOrder = { 848, 886 }, level = 8, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "(14-20)% increased Energy Shield", "+(11-19) to maximum Life", statOrder = { 848, 886 }, level = 16, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "(21-26)% increased Energy Shield", "+(20-25) to maximum Life", statOrder = { 848, 886 }, level = 33, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "(27-32)% increased Energy Shield", "+(26-32) to maximum Life", statOrder = { 848, 886 }, level = 46, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "(33-38)% increased Energy Shield", "+(33-41) to maximum Life", statOrder = { 848, 886 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, + ["LocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "(39-42)% increased Energy Shield", "+(42-49) to maximum Life", statOrder = { 848, 886 }, level = 78, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "(6-13)% increased Armour and Evasion", "+(7-10) to maximum Life", statOrder = { 849, 886 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [3299347043] = { "+(7-10) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "(14-20)% increased Armour and Evasion", "+(11-19) to maximum Life", statOrder = { 849, 886 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [3299347043] = { "+(11-19) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "(21-26)% increased Armour and Evasion", "+(20-25) to maximum Life", statOrder = { 849, 886 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [3299347043] = { "+(20-25) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "(27-32)% increased Armour and Evasion", "+(26-32) to maximum Life", statOrder = { 849, 886 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [3299347043] = { "+(26-32) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "(33-38)% increased Armour and Evasion", "+(33-41) to maximum Life", statOrder = { 849, 886 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [3299347043] = { "+(33-41) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "(39-42)% increased Armour and Evasion", "+(42-49) to maximum Life", statOrder = { 849, 886 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [3299347043] = { "+(42-49) to maximum Life" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "(6-13)% increased Armour and Energy Shield", "+(7-10) to maximum Life", statOrder = { 850, 886 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(7-10) to maximum Life" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "(14-20)% increased Armour and Energy Shield", "+(11-19) to maximum Life", statOrder = { 850, 886 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(11-19) to maximum Life" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "(21-26)% increased Armour and Energy Shield", "+(20-25) to maximum Life", statOrder = { 850, 886 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(20-25) to maximum Life" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "(27-32)% increased Armour and Energy Shield", "+(26-32) to maximum Life", statOrder = { 850, 886 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(26-32) to maximum Life" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "(33-38)% increased Armour and Energy Shield", "+(33-41) to maximum Life", statOrder = { 850, 886 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(33-41) to maximum Life" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "(39-42)% increased Armour and Energy Shield", "+(42-49) to maximum Life", statOrder = { 850, 886 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "armour", "energy_shield" }, tradeHashes = { [3299347043] = { "+(42-49) to maximum Life" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "(6-13)% increased Evasion and Energy Shield", "+(7-10) to maximum Life", statOrder = { 851, 886 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(7-10) to maximum Life" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "(14-20)% increased Evasion and Energy Shield", "+(11-19) to maximum Life", statOrder = { 851, 886 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(11-19) to maximum Life" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "(21-26)% increased Evasion and Energy Shield", "+(20-25) to maximum Life", statOrder = { 851, 886 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(20-25) to maximum Life" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "(27-32)% increased Evasion and Energy Shield", "+(26-32) to maximum Life", statOrder = { 851, 886 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(26-32) to maximum Life" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "(33-38)% increased Evasion and Energy Shield", "+(33-41) to maximum Life", statOrder = { 851, 886 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(33-41) to maximum Life" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "(39-42)% increased Evasion and Energy Shield", "+(42-49) to maximum Life", statOrder = { 851, 886 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "defences", "resource", "life", "evasion", "energy_shield" }, tradeHashes = { [3299347043] = { "+(42-49) to maximum Life" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndMana1"] = { type = "Prefix", affix = "Imposing", "(6-13)% increased Armour", "+(6-8) to maximum Mana", statOrder = { 845, 891 }, level = 8, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndMana2"] = { type = "Prefix", affix = "Venerable", "(14-20)% increased Armour", "+(9-16) to maximum Mana", statOrder = { 845, 891 }, level = 16, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndMana3"] = { type = "Prefix", affix = "Regal", "(21-26)% increased Armour", "+(17-20) to maximum Mana", statOrder = { 845, 891 }, level = 33, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndMana4"] = { type = "Prefix", affix = "Colossal", "(27-32)% increased Armour", "+(21-26) to maximum Mana", statOrder = { 845, 891 }, level = 46, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndMana5"] = { type = "Prefix", affix = "Chieftain's", "(33-38)% increased Armour", "+(27-32) to maximum Mana", statOrder = { 845, 891 }, level = 60, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndMana6"] = { type = "Prefix", affix = "Ancestral", "(39-42)% increased Armour", "+(33-39) to maximum Mana", statOrder = { 845, 891 }, level = 78, group = "LocalIncreasedArmourAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana1"] = { type = "Prefix", affix = "Nomad's", "(6-13)% increased Evasion Rating", "+(6-8) to maximum Mana", statOrder = { 847, 891 }, level = 8, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana2"] = { type = "Prefix", affix = "Drifter's", "(14-20)% increased Evasion Rating", "+(9-16) to maximum Mana", statOrder = { 847, 891 }, level = 16, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana3"] = { type = "Prefix", affix = "Traveller's", "(21-26)% increased Evasion Rating", "+(17-20) to maximum Mana", statOrder = { 847, 891 }, level = 33, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana4"] = { type = "Prefix", affix = "Explorer's", "(27-32)% increased Evasion Rating", "+(21-26) to maximum Mana", statOrder = { 847, 891 }, level = 46, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana5"] = { type = "Prefix", affix = "Wayfarer's", "(33-38)% increased Evasion Rating", "+(27-32) to maximum Mana", statOrder = { 847, 891 }, level = 60, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, + ["LocalIncreasedEvasionAndMana6"] = { type = "Prefix", affix = "Wanderer's", "(39-42)% increased Evasion Rating", "+(33-39) to maximum Mana", statOrder = { 847, 891 }, level = 78, group = "LocalIncreasedEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana1"] = { type = "Prefix", affix = "Imbued", "(6-13)% increased Energy Shield", "+(6-8) to maximum Mana", statOrder = { 848, 891 }, level = 8, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana2"] = { type = "Prefix", affix = "Serene", "(14-20)% increased Energy Shield", "+(9-16) to maximum Mana", statOrder = { 848, 891 }, level = 16, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana3"] = { type = "Prefix", affix = "Sacred", "(21-26)% increased Energy Shield", "+(17-20) to maximum Mana", statOrder = { 848, 891 }, level = 33, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana4"] = { type = "Prefix", affix = "Celestial", "(27-32)% increased Energy Shield", "+(21-26) to maximum Mana", statOrder = { 848, 891 }, level = 46, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana5"] = { type = "Prefix", affix = "Heavenly", "(33-38)% increased Energy Shield", "+(27-32) to maximum Mana", statOrder = { 848, 891 }, level = 60, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, + ["LocalIncreasedEnergyShieldAndMana6"] = { type = "Prefix", affix = "Angel's", "(39-42)% increased Energy Shield", "+(33-39) to maximum Mana", statOrder = { 848, 891 }, level = 78, group = "LocalIncreasedEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana1"] = { type = "Prefix", affix = "Rhoa's", "(6-13)% increased Armour and Evasion", "+(6-8) to maximum Mana", statOrder = { 849, 891 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [1050105434] = { "+(6-8) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana2"] = { type = "Prefix", affix = "Rhex's", "(14-20)% increased Armour and Evasion", "+(9-16) to maximum Mana", statOrder = { 849, 891 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [1050105434] = { "+(9-16) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana3"] = { type = "Prefix", affix = "Chimeral's", "(21-26)% increased Armour and Evasion", "+(17-20) to maximum Mana", statOrder = { 849, 891 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana4"] = { type = "Prefix", affix = "Bull's", "(27-32)% increased Armour and Evasion", "+(21-26) to maximum Mana", statOrder = { 849, 891 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [1050105434] = { "+(21-26) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana5"] = { type = "Prefix", affix = "Minotaur's", "(33-38)% increased Armour and Evasion", "+(27-32) to maximum Mana", statOrder = { 849, 891 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [1050105434] = { "+(27-32) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEvasionAndMana6"] = { type = "Prefix", affix = "Cerberus'", "(39-42)% increased Armour and Evasion", "+(33-39) to maximum Mana", statOrder = { 849, 891 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [1050105434] = { "+(33-39) to maximum Mana" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Coelacanth's", "(6-13)% increased Armour and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 850, 891 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(6-8) to maximum Mana" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Swordfish's", "(14-20)% increased Armour and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 850, 891 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(9-16) to maximum Mana" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Shark's", "(21-26)% increased Armour and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 850, 891 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Dolphin's", "(27-32)% increased Armour and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 850, 891 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(21-26) to maximum Mana" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Orca's", "(33-38)% increased Armour and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 850, 891 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(27-32) to maximum Mana" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Whale's", "(39-42)% increased Armour and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 850, 891 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(33-39) to maximum Mana" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana1"] = { type = "Prefix", affix = "Vulture's", "(6-13)% increased Evasion and Energy Shield", "+(6-8) to maximum Mana", statOrder = { 851, 891 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(6-8) to maximum Mana" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana2"] = { type = "Prefix", affix = "Kingfisher's", "(14-20)% increased Evasion and Energy Shield", "+(9-16) to maximum Mana", statOrder = { 851, 891 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(9-16) to maximum Mana" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana3"] = { type = "Prefix", affix = "Owl's", "(21-26)% increased Evasion and Energy Shield", "+(17-20) to maximum Mana", statOrder = { 851, 891 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana4"] = { type = "Prefix", affix = "Hawk's", "(27-32)% increased Evasion and Energy Shield", "+(21-26) to maximum Mana", statOrder = { 851, 891 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(21-26) to maximum Mana" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana5"] = { type = "Prefix", affix = "Eagle's", "(33-38)% increased Evasion and Energy Shield", "+(27-32) to maximum Mana", statOrder = { 851, 891 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(27-32) to maximum Mana" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndMana6"] = { type = "Prefix", affix = "Falcon's", "(39-42)% increased Evasion and Energy Shield", "+(33-39) to maximum Mana", statOrder = { 851, 891 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndMana", weightKey = { "body_armour", "shield", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(33-39) to maximum Mana" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndBase1"] = { type = "Prefix", affix = "Abalone's", "+(5-9) to Armour", "(6-13)% increased Armour", statOrder = { 839, 845 }, level = 8, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(6-13)% increased Armour" }, [3484657501] = { "+(5-9) to Armour" }, } }, + ["LocalIncreasedArmourAndBase2"] = { type = "Prefix", affix = "Snail's", "+(10-29) to Armour", "(14-20)% increased Armour", statOrder = { 839, 845 }, level = 16, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(14-20)% increased Armour" }, [3484657501] = { "+(10-29) to Armour" }, } }, + ["LocalIncreasedArmourAndBase3"] = { type = "Prefix", affix = "Tortoise's", "+(30-41) to Armour", "(21-26)% increased Armour", statOrder = { 839, 845 }, level = 33, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(21-26)% increased Armour" }, [3484657501] = { "+(30-41) to Armour" }, } }, + ["LocalIncreasedArmourAndBase4"] = { type = "Prefix", affix = "Pangolin's", "+(42-57) to Armour", "(27-32)% increased Armour", statOrder = { 839, 845 }, level = 46, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(27-32)% increased Armour" }, [3484657501] = { "+(42-57) to Armour" }, } }, + ["LocalIncreasedArmourAndBase5"] = { type = "Prefix", affix = "Shelled", "+(58-75) to Armour", "(33-38)% increased Armour", statOrder = { 839, 845 }, level = 60, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(33-38)% increased Armour" }, [3484657501] = { "+(58-75) to Armour" }, } }, + ["LocalIncreasedArmourAndBase6"] = { type = "Prefix", affix = "Hardened", "+(76-95) to Armour", "(39-42)% increased Armour", statOrder = { 839, 845 }, level = 78, group = "LocalIncreasedArmourAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(39-42)% increased Armour" }, [3484657501] = { "+(76-95) to Armour" }, } }, + ["LocalIncreasedEvasionAndBase1"] = { type = "Prefix", affix = "Impala's", "+(4-6) to Evasion Rating", "(6-13)% increased Evasion Rating", statOrder = { 840, 847 }, level = 8, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(6-13)% increased Evasion Rating" }, [53045048] = { "+(4-6) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndBase2"] = { type = "Prefix", affix = "Buck's", "+(7-26) to Evasion Rating", "(14-20)% increased Evasion Rating", statOrder = { 840, 847 }, level = 16, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(14-20)% increased Evasion Rating" }, [53045048] = { "+(7-26) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndBase3"] = { type = "Prefix", affix = "Moose's", "+(27-38) to Evasion Rating", "(21-26)% increased Evasion Rating", statOrder = { 840, 847 }, level = 33, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(21-26)% increased Evasion Rating" }, [53045048] = { "+(27-38) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndBase4"] = { type = "Prefix", affix = "Deer's", "+(39-53) to Evasion Rating", "(27-32)% increased Evasion Rating", statOrder = { 840, 847 }, level = 46, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(27-32)% increased Evasion Rating" }, [53045048] = { "+(39-53) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndBase5"] = { type = "Prefix", affix = "Caribou's", "+(54-70) to Evasion Rating", "(33-38)% increased Evasion Rating", statOrder = { 840, 847 }, level = 60, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(33-38)% increased Evasion Rating" }, [53045048] = { "+(54-70) to Evasion Rating" }, } }, + ["LocalIncreasedEvasionAndBase6"] = { type = "Prefix", affix = "Antelope's", "+(71-90) to Evasion Rating", "(39-42)% increased Evasion Rating", statOrder = { 840, 847 }, level = 78, group = "LocalIncreasedEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(39-42)% increased Evasion Rating" }, [53045048] = { "+(71-90) to Evasion Rating" }, } }, + ["LocalIncreasedEnergyShieldAndBase1"] = { type = "Prefix", affix = "Deacon's", "+(4-7) to maximum Energy Shield", "(6-13)% increased Energy Shield", statOrder = { 842, 848 }, level = 8, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-13)% increased Energy Shield" }, [4052037485] = { "+(4-7) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldAndBase2"] = { type = "Prefix", affix = "Cardinal's", "+(8-13) to maximum Energy Shield", "(14-20)% increased Energy Shield", statOrder = { 842, 848 }, level = 16, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(14-20)% increased Energy Shield" }, [4052037485] = { "+(8-13) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldAndBase3"] = { type = "Prefix", affix = "Priest's", "+(14-16) to maximum Energy Shield", "(21-26)% increased Energy Shield", statOrder = { 842, 848 }, level = 33, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(21-26)% increased Energy Shield" }, [4052037485] = { "+(14-16) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldAndBase4"] = { type = "Prefix", affix = "High Priest's", "+(17-20) to maximum Energy Shield", "(27-32)% increased Energy Shield", statOrder = { 842, 848 }, level = 46, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(27-32)% increased Energy Shield" }, [4052037485] = { "+(17-20) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldAndBase5"] = { type = "Prefix", affix = "Archon's", "+(21-25) to maximum Energy Shield", "(33-38)% increased Energy Shield", statOrder = { 842, 848 }, level = 60, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(33-38)% increased Energy Shield" }, [4052037485] = { "+(21-25) to maximum Energy Shield" }, } }, + ["LocalIncreasedEnergyShieldAndBase6"] = { type = "Prefix", affix = "Divine", "+(26-30) to maximum Energy Shield", "(39-42)% increased Energy Shield", statOrder = { 842, 848 }, level = 78, group = "LocalIncreasedEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "focus", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(39-42)% increased Energy Shield" }, [4052037485] = { "+(26-30) to maximum Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase1"] = { type = "Prefix", affix = "Swordsman's", "+(3-5) to Armour", "+(2-3) to Evasion Rating", "(6-13)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 8, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-13)% increased Armour and Evasion" }, [53045048] = { "+(2-3) to Evasion Rating" }, [3484657501] = { "+(3-5) to Armour" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase2"] = { type = "Prefix", affix = "Fighter's", "+(6-16) to Armour", "+(4-14) to Evasion Rating", "(14-20)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 16, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(14-20)% increased Armour and Evasion" }, [53045048] = { "+(4-14) to Evasion Rating" }, [3484657501] = { "+(6-16) to Armour" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase3"] = { type = "Prefix", affix = "Veteran's", "+(17-23) to Armour", "+(15-21) to Evasion Rating", "(21-26)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 33, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(21-26)% increased Armour and Evasion" }, [53045048] = { "+(15-21) to Evasion Rating" }, [3484657501] = { "+(17-23) to Armour" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase4"] = { type = "Prefix", affix = "Warrior's", "+(24-32) to Armour", "+(22-29) to Evasion Rating", "(27-32)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 46, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(27-32)% increased Armour and Evasion" }, [53045048] = { "+(22-29) to Evasion Rating" }, [3484657501] = { "+(24-32) to Armour" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase5"] = { type = "Prefix", affix = "Knight's", "+(33-41) to Armour", "+(30-39) to Evasion Rating", "(33-38)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(33-38)% increased Armour and Evasion" }, [53045048] = { "+(30-39) to Evasion Rating" }, [3484657501] = { "+(33-41) to Armour" }, } }, + ["LocalIncreasedArmourAndEvasionAndBase6"] = { type = "Prefix", affix = "Centurion's", "+(42-52) to Armour", "+(40-50) to Evasion Rating", "(39-42)% increased Armour and Evasion", statOrder = { 839, 840, 849 }, level = 78, group = "LocalIncreasedArmourAndEvasionAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(39-42)% increased Armour and Evasion" }, [53045048] = { "+(40-50) to Evasion Rating" }, [3484657501] = { "+(42-52) to Armour" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Faithful", "+(3-5) to Armour", "+(2-4) to maximum Energy Shield", "(6-13)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 8, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(3-5) to Armour" }, [4052037485] = { "+(2-4) to maximum Energy Shield" }, [3321629045] = { "(6-13)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Noble's", "+(6-16) to Armour", "+(5-6) to maximum Energy Shield", "(14-20)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 16, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(6-16) to Armour" }, [4052037485] = { "+(5-6) to maximum Energy Shield" }, [3321629045] = { "(14-20)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Inquisitor's", "+(17-23) to Armour", "+(7-8) to maximum Energy Shield", "(21-26)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 33, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(17-23) to Armour" }, [4052037485] = { "+(7-8) to maximum Energy Shield" }, [3321629045] = { "(21-26)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Crusader's", "+(24-32) to Armour", "+(9-10) to maximum Energy Shield", "(27-32)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 46, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(24-32) to Armour" }, [4052037485] = { "+(9-10) to maximum Energy Shield" }, [3321629045] = { "(27-32)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Paladin's", "+(33-41) to Armour", "+(11-12) to maximum Energy Shield", "(33-38)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(33-41) to Armour" }, [4052037485] = { "+(11-12) to maximum Energy Shield" }, [3321629045] = { "(33-38)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Grand", "+(42-52) to Armour", "+(13-15) to maximum Energy Shield", "(39-42)% increased Armour and Energy Shield", statOrder = { 839, 842, 850 }, level = 78, group = "LocalIncreasedArmourAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [3484657501] = { "+(42-52) to Armour" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, [3321629045] = { "(39-42)% increased Armour and Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase1"] = { type = "Prefix", affix = "Pursuer's", "+(2-3) to Evasion Rating", "+(2-4) to maximum Energy Shield", "(6-13)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 8, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(2-3) to Evasion Rating" }, [1999113824] = { "(6-13)% increased Evasion and Energy Shield" }, [4052037485] = { "+(2-4) to maximum Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase2"] = { type = "Prefix", affix = "Tracker's", "+(4-14) to Evasion Rating", "+(5-6) to maximum Energy Shield", "(14-20)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 16, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(4-14) to Evasion Rating" }, [1999113824] = { "(14-20)% increased Evasion and Energy Shield" }, [4052037485] = { "+(5-6) to maximum Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase3"] = { type = "Prefix", affix = "Chaser's", "+(15-21) to Evasion Rating", "+(7-8) to maximum Energy Shield", "(21-26)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 33, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(15-21) to Evasion Rating" }, [1999113824] = { "(21-26)% increased Evasion and Energy Shield" }, [4052037485] = { "+(7-8) to maximum Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase4"] = { type = "Prefix", affix = "Phantom's", "+(22-29) to Evasion Rating", "+(9-10) to maximum Energy Shield", "(27-32)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 46, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(22-29) to Evasion Rating" }, [1999113824] = { "(27-32)% increased Evasion and Energy Shield" }, [4052037485] = { "+(9-10) to maximum Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase5"] = { type = "Prefix", affix = "Rogue's", "+(30-39) to Evasion Rating", "+(11-12) to maximum Energy Shield", "(33-38)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(30-39) to Evasion Rating" }, [1999113824] = { "(33-38)% increased Evasion and Energy Shield" }, [4052037485] = { "+(11-12) to maximum Energy Shield" }, } }, + ["LocalIncreasedEvasionAndEnergyShieldAndBase6"] = { type = "Prefix", affix = "Stalker's", "+(40-50) to Evasion Rating", "+(13-15) to maximum Energy Shield", "(39-42)% increased Evasion and Energy Shield", statOrder = { 840, 842, 851 }, level = 78, group = "LocalIncreasedEvasionAndEnergyShieldAndBase", weightKey = { "helmet", "gloves", "boots", "shield", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [53045048] = { "+(40-50) to Evasion Rating" }, [1999113824] = { "(39-42)% increased Evasion and Energy Shield" }, [4052037485] = { "+(13-15) to maximum Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 2, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(15-26)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 16, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(27-42)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 33, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(43-55)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 46, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(56-67)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 54, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(68-79)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(80-91)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Incorporeal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 65, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(92-100)% increased Armour, Evasion and Energy Shield" }, } }, + ["LocalIncreasedArmourAndEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Ascendant", "(101-110)% increased Armour, Evasion and Energy Shield", statOrder = { 853 }, level = 75, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, tradeHashes = { [3523867985] = { "(101-110)% increased Armour, Evasion and Energy Shield" }, } }, + ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "15% reduced Attribute Requirements", statOrder = { 947 }, level = 24, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "15% reduced Attribute Requirements" }, } }, + ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "20% reduced Attribute Requirements", statOrder = { 947 }, level = 32, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "20% reduced Attribute Requirements" }, } }, + ["ReducedLocalAttributeRequirements3"] = { type = "Suffix", affix = "of the Talented", "25% reduced Attribute Requirements", statOrder = { 947 }, level = 40, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "25% reduced Attribute Requirements" }, } }, + ["ReducedLocalAttributeRequirements4"] = { type = "Suffix", affix = "of the Skilled", "30% reduced Attribute Requirements", statOrder = { 947 }, level = 52, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "30% reduced Attribute Requirements" }, } }, + ["ReducedLocalAttributeRequirements5"] = { type = "Suffix", affix = "of the Proficient", "35% reduced Attribute Requirements", statOrder = { 947 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "wand", "staff", "sceptre", "body_armour", "helmet", "shield", "focus", "gloves", "boots", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [3639275092] = { "35% reduced Attribute Requirements" }, } }, + ["StunThreshold1"] = { type = "Suffix", affix = "of Thick Skin", "+(6-11) to Stun Threshold", statOrder = { 1060 }, level = 1, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(6-11) to Stun Threshold" }, } }, + ["StunThreshold2"] = { type = "Suffix", affix = "of Reinforced Skin", "+(12-29) to Stun Threshold", statOrder = { 1060 }, level = 8, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(12-29) to Stun Threshold" }, } }, + ["StunThreshold3"] = { type = "Suffix", affix = "of Stone Skin", "+(30-49) to Stun Threshold", statOrder = { 1060 }, level = 15, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(30-49) to Stun Threshold" }, } }, + ["StunThreshold4"] = { type = "Suffix", affix = "of Iron Skin", "+(50-72) to Stun Threshold", statOrder = { 1060 }, level = 22, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(50-72) to Stun Threshold" }, } }, + ["StunThreshold5"] = { type = "Suffix", affix = "of Steel Skin", "+(73-97) to Stun Threshold", statOrder = { 1060 }, level = 29, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(73-97) to Stun Threshold" }, } }, + ["StunThreshold6"] = { type = "Suffix", affix = "of Granite Skin", "+(98-124) to Stun Threshold", statOrder = { 1060 }, level = 36, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(98-124) to Stun Threshold" }, } }, + ["StunThreshold7"] = { type = "Suffix", affix = "of Platinum Skin", "+(125-163) to Stun Threshold", statOrder = { 1060 }, level = 45, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(125-163) to Stun Threshold" }, } }, + ["StunThreshold8"] = { type = "Suffix", affix = "of Adamantite Skin", "+(164-206) to Stun Threshold", statOrder = { 1060 }, level = 54, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(164-206) to Stun Threshold" }, } }, + ["StunThreshold9"] = { type = "Suffix", affix = "of Corundum Skin", "+(207-253) to Stun Threshold", statOrder = { 1060 }, level = 63, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(207-253) to Stun Threshold" }, } }, + ["StunThreshold10"] = { type = "Suffix", affix = "of Obsidian Skin", "+(254-304) to Stun Threshold", statOrder = { 1060 }, level = 72, group = "StunThreshold", weightKey = { "body_armour", "boots", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(254-304) to Stun Threshold" }, } }, + ["StunThreshold11"] = { type = "Suffix", affix = "of Titanium Skin", "+(305-352) to Stun Threshold", statOrder = { 1060 }, level = 80, group = "StunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [915769802] = { "+(305-352) to Stun Threshold" }, } }, + ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "10% increased Movement Speed" }, } }, + ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 835 }, level = 16, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "15% increased Movement Speed" }, } }, + ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 835 }, level = 33, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "20% increased Movement Speed" }, } }, + ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 835 }, level = 46, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "25% increased Movement Speed" }, } }, + ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 835 }, level = 65, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "30% increased Movement Speed" }, } }, + ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 835 }, level = 82, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "35% increased Movement Speed" }, } }, + ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "(1-2) to (3-4) Physical Thorns damage", statOrder = { 10220 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(1-2) to (3-4) Physical Thorns damage" }, } }, + ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "(5-7) to (7-10) Physical Thorns damage", statOrder = { 10220 }, level = 10, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(5-7) to (7-10) Physical Thorns damage" }, } }, + ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "(11-16) to (17-23) Physical Thorns damage", statOrder = { 10220 }, level = 19, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(11-16) to (17-23) Physical Thorns damage" }, } }, + ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Pointed", "(24-35) to (36-53) Physical Thorns damage", statOrder = { 10220 }, level = 38, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(24-35) to (36-53) Physical Thorns damage" }, } }, + ["AttackerTakesDamage5"] = { type = "Prefix", affix = "Spiked", "(40-60) to (61-92) Physical Thorns damage", statOrder = { 10220 }, level = 48, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(40-60) to (61-92) Physical Thorns damage" }, } }, + ["AttackerTakesDamage6"] = { type = "Prefix", affix = "Edged", "(64-97) to (98-145) Physical Thorns damage", statOrder = { 10220 }, level = 63, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(64-97) to (98-145) Physical Thorns damage" }, } }, + ["AttackerTakesDamage7"] = { type = "Prefix", affix = "Jagged", "(101-151) to (152-220) Physical Thorns damage", statOrder = { 10220 }, level = 74, group = "ThornsPhysicalDamage", weightKey = { "body_armour", "shield", "belt", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2881298780] = { "(101-151) to (152-220) Physical Thorns damage" }, } }, + ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 857 }, level = 1, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (1-2) to 3 Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-6) Physical Damage to Attacks", statOrder = { 857 }, level = 8, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-3) to (4-6) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (2-4) to (5-8) Physical Damage to Attacks", statOrder = { 857 }, level = 16, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (2-4) to (5-8) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (8-11) Physical Damage to Attacks", statOrder = { 857 }, level = 33, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (4-6) to (8-11) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 857 }, level = 46, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (5-7) to (9-13) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-10) to (12-17) Physical Damage to Attacks", statOrder = { 857 }, level = 54, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (6-10) to (12-17) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 857 }, level = 60, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (7-11) to (14-20) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (10-15) to (18-26) Physical Damage to Attacks", statOrder = { 857 }, level = 65, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (10-15) to (18-26) Physical Damage to Attacks" }, } }, + ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (12-19) to (22-32) Physical Damage to Attacks", statOrder = { 857 }, level = 75, group = "PhysicalDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds (12-19) to (22-32) Physical Damage to Attacks" }, } }, + ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire damage to Attacks", statOrder = { 858 }, level = 1, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (1-2) to 3 Fire damage to Attacks" }, } }, + ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 858 }, level = 8, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (3-5) to (6-9) Fire damage to Attacks" }, } }, + ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (6-8) to (10-13) Fire damage to Attacks", statOrder = { 858 }, level = 16, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (6-8) to (10-13) Fire damage to Attacks" }, } }, + ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (9-11) to (14-17) Fire damage to Attacks", statOrder = { 858 }, level = 33, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (9-11) to (14-17) Fire damage to Attacks" }, } }, + ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (12-13) to (18-20) Fire damage to Attacks", statOrder = { 858 }, level = 46, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (12-13) to (18-20) Fire damage to Attacks" }, } }, + ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-16) to (21-26) Fire damage to Attacks", statOrder = { 858 }, level = 54, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (11-16) to (21-26) Fire damage to Attacks" }, } }, + ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-19) to (27-32) Fire damage to Attacks", statOrder = { 858 }, level = 60, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (13-19) to (27-32) Fire damage to Attacks" }, } }, + ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (20-24) to (33-36) Fire damage to Attacks", statOrder = { 858 }, level = 65, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (20-24) to (33-36) Fire damage to Attacks" }, } }, + ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (25-29) to (37-45) Fire damage to Attacks", statOrder = { 858 }, level = 75, group = "FireDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [1573130764] = { "Adds (25-29) to (37-45) Fire damage to Attacks" }, } }, + ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold damage to Attacks", statOrder = { 859 }, level = 1, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds 1 to (2-3) Cold damage to Attacks" }, } }, + ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 859 }, level = 8, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (3-4) to (5-8) Cold damage to Attacks" }, } }, + ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-6) to (9-11) Cold damage to Attacks", statOrder = { 859 }, level = 16, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (5-6) to (9-11) Cold damage to Attacks" }, } }, + ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (7-8) to (12-14) Cold damage to Attacks", statOrder = { 859 }, level = 33, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (7-8) to (12-14) Cold damage to Attacks" }, } }, + ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (9-10) to (15-17) Cold damage to Attacks", statOrder = { 859 }, level = 46, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (9-10) to (15-17) Cold damage to Attacks" }, } }, + ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (11-13) to (18-21) Cold damage to Attacks", statOrder = { 859 }, level = 54, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (11-13) to (18-21) Cold damage to Attacks" }, } }, + ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (14-15) to (22-24) Cold damage to Attacks", statOrder = { 859 }, level = 60, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (14-15) to (22-24) Cold damage to Attacks" }, } }, + ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (16-20) to (25-31) Cold damage to Attacks", statOrder = { 859 }, level = 65, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (16-20) to (25-31) Cold damage to Attacks" }, } }, + ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (21-24) to (32-37) Cold damage to Attacks", statOrder = { 859 }, level = 75, group = "ColdDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [4067062424] = { "Adds (21-24) to (32-37) Cold damage to Attacks" }, } }, + ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning damage to Attacks", statOrder = { 860 }, level = 1, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (4-6) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (10-15) Lightning damage to Attacks", statOrder = { 860 }, level = 8, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (10-15) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 1 to (16-22) Lightning damage to Attacks", statOrder = { 860 }, level = 16, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (16-22) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 1 to (23-27) Lightning damage to Attacks", statOrder = { 860 }, level = 33, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (23-27) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds 1 to (28-32) Lightning damage to Attacks", statOrder = { 860 }, level = 46, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to (28-32) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-2) to (33-40) Lightning damage to Attacks", statOrder = { 860 }, level = 54, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (33-40) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-2) to (41-47) Lightning damage to Attacks", statOrder = { 860 }, level = 60, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-2) to (41-47) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-3) to (48-59) Lightning damage to Attacks", statOrder = { 860 }, level = 65, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-3) to (48-59) Lightning damage to Attacks" }, } }, + ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-4) to (60-71) Lightning damage to Attacks", statOrder = { 860 }, level = 75, group = "LightningDamage", weightKey = { "ring", "gloves", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds (1-4) to (60-71) Lightning damage to Attacks" }, } }, + ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to (4-5) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (1-2) to (4-5) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-6) to (7-11) Physical Damage", statOrder = { 830 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (4-6) to (7-11) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (11-16) Physical Damage", statOrder = { 830 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (6-9) to (11-16) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (14-21) Physical Damage", statOrder = { 830 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (14-21) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (10-15) to (18-26) Physical Damage", statOrder = { 830 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (10-15) to (18-26) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-20) to (23-35) Physical Damage", statOrder = { 830 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (13-20) to (23-35) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-24) to (28-42) Physical Damage", statOrder = { 830 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (16-24) to (28-42) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (21-31) to (36-53) Physical Damage", statOrder = { 830 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (21-31) to (36-53) Physical Damage" }, } }, + ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (26-39) to (44-66) Physical Damage", statOrder = { 830 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (26-39) to (44-66) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds (2-3) to (5-7) Physical Damage", statOrder = { 830 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (2-3) to (5-7) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (5-8) to (10-15) Physical Damage", statOrder = { 830 }, level = 8, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (5-8) to (10-15) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (8-12) to (15-22) Physical Damage", statOrder = { 830 }, level = 16, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (8-12) to (15-22) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (11-17) to (20-30) Physical Damage", statOrder = { 830 }, level = 33, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (11-17) to (20-30) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (14-21) to (25-37) Physical Damage", statOrder = { 830 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (14-21) to (25-37) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (19-29) to (33-49) Physical Damage", statOrder = { 830 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (19-29) to (33-49) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (23-35) to (39-59) Physical Damage", statOrder = { 830 }, level = 60, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (23-35) to (39-59) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (29-44) to (50-75) Physical Damage", statOrder = { 830 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (29-44) to (50-75) Physical Damage" }, } }, + ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (37-55) to (63-94) Physical Damage", statOrder = { 830 }, level = 75, group = "LocalPhysicalDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (37-55) to (63-94) Physical Damage" }, } }, + ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-5) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (1-2) to (3-5) Fire Damage" }, } }, + ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (4-6) to (7-10) Fire Damage", statOrder = { 831 }, level = 8, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (4-6) to (7-10) Fire Damage" }, } }, + ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (7-11) to (13-19) Fire Damage", statOrder = { 831 }, level = 16, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (7-11) to (13-19) Fire Damage" }, } }, + ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-19) to (21-29) Fire Damage", statOrder = { 831 }, level = 33, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (13-19) to (21-29) Fire Damage" }, } }, + ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (20-24) to (32-37) Fire Damage", statOrder = { 831 }, level = 46, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (20-24) to (32-37) Fire Damage" }, } }, + ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (25-33) to (38-54) Fire Damage", statOrder = { 831 }, level = 54, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (25-33) to (38-54) Fire Damage" }, } }, + ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (35-44) to (56-71) Fire Damage", statOrder = { 831 }, level = 60, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (35-44) to (56-71) Fire Damage" }, } }, + ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (47-59) to (74-97) Fire Damage", statOrder = { 831 }, level = 65, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (47-59) to (74-97) Fire Damage" }, } }, + ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (62-85) to (101-129) Fire Damage", statOrder = { 831 }, level = 75, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (62-85) to (101-129) Fire Damage" }, } }, + ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (88-101) to (133-154) Fire Damage", statOrder = { 831 }, level = 81, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (88-101) to (133-154) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (2-4) to (5-7) Fire Damage", statOrder = { 831 }, level = 1, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (2-4) to (5-7) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (6-9) to (10-16) Fire Damage", statOrder = { 831 }, level = 8, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (6-9) to (10-16) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (11-17) to (19-28) Fire Damage", statOrder = { 831 }, level = 16, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (11-17) to (19-28) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (19-27) to (30-42) Fire Damage", statOrder = { 831 }, level = 33, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (19-27) to (30-42) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (30-37) to (45-56) Fire Damage", statOrder = { 831 }, level = 46, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (30-37) to (45-56) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (39-53) to (59-80) Fire Damage", statOrder = { 831 }, level = 54, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (39-53) to (59-80) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (56-70) to (84-107) Fire Damage", statOrder = { 831 }, level = 60, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (56-70) to (84-107) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (73-97) to (112-149) Fire Damage", statOrder = { 831 }, level = 65, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (73-97) to (112-149) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (102-130) to (155-198) Fire Damage", statOrder = { 831 }, level = 75, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (102-130) to (155-198) Fire Damage" }, } }, + ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (135-156) to (205-236) Fire Damage", statOrder = { 831 }, level = 81, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [709508406] = { "Adds (135-156) to (205-236) Fire Damage" }, } }, + ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (1-2) to (3-4) Cold Damage" }, } }, + ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-5) to (6-9) Cold Damage", statOrder = { 832 }, level = 8, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (3-5) to (6-9) Cold Damage" }, } }, + ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (6-9) to (10-16) Cold Damage", statOrder = { 832 }, level = 16, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (6-9) to (10-16) Cold Damage" }, } }, + ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (17-24) Cold Damage", statOrder = { 832 }, level = 33, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (11-15) to (17-24) Cold Damage" }, } }, + ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (17-20) to (26-32) Cold Damage", statOrder = { 832 }, level = 46, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (17-20) to (26-32) Cold Damage" }, } }, + ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (22-29) to (34-44) Cold Damage", statOrder = { 832 }, level = 54, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (22-29) to (34-44) Cold Damage" }, } }, + ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (31-38) to (47-59) Cold Damage", statOrder = { 832 }, level = 60, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (31-38) to (47-59) Cold Damage" }, } }, + ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (40-53) to (62-80) Cold Damage", statOrder = { 832 }, level = 65, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (40-53) to (62-80) Cold Damage" }, } }, + ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (55-69) to (83-106) Cold Damage", statOrder = { 832 }, level = 75, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (55-69) to (83-106) Cold Damage" }, } }, + ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (72-81) to (110-123) Cold Damage", statOrder = { 832 }, level = 81, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (72-81) to (110-123) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (4-6) Cold Damage", statOrder = { 832 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (2-3) to (4-6) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (5-8) to (9-14) Cold Damage", statOrder = { 832 }, level = 8, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (5-8) to (9-14) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (10-14) to (15-23) Cold Damage", statOrder = { 832 }, level = 16, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (10-14) to (15-23) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-23) to (25-35) Cold Damage", statOrder = { 832 }, level = 33, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (16-23) to (25-35) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (25-30) to (38-46) Cold Damage", statOrder = { 832 }, level = 46, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (25-30) to (38-46) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-43) to (49-66) Cold Damage", statOrder = { 832 }, level = 54, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (32-43) to (49-66) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (46-57) to (70-88) Cold Damage", statOrder = { 832 }, level = 60, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (46-57) to (70-88) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (60-80) to (92-121) Cold Damage", statOrder = { 832 }, level = 65, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (60-80) to (92-121) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (84-107) to (126-161) Cold Damage", statOrder = { 832 }, level = 75, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (84-107) to (126-161) Cold Damage" }, } }, + ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (112-124) to (168-189) Cold Damage", statOrder = { 832 }, level = 81, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1037193709] = { "Adds (112-124) to (168-189) Cold Damage" }, } }, + ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-6) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (4-6) Lightning Damage" }, } }, + ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (13-19) Lightning Damage", statOrder = { 833 }, level = 8, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (13-19) Lightning Damage" }, } }, + ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (20-30) Lightning Damage", statOrder = { 833 }, level = 16, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (20-30) Lightning Damage" }, } }, + ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (36-52) Lightning Damage", statOrder = { 833 }, level = 33, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (36-52) Lightning Damage" }, } }, + ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (55-60) Lightning Damage", statOrder = { 833 }, level = 46, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (55-60) Lightning Damage" }, } }, + ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (63-82) Lightning Damage", statOrder = { 833 }, level = 54, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (63-82) Lightning Damage" }, } }, + ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (1-6) to (85-107) Lightning Damage", statOrder = { 833 }, level = 60, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-6) to (85-107) Lightning Damage" }, } }, + ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (1-8) to (111-152) Lightning Damage", statOrder = { 833 }, level = 65, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (111-152) Lightning Damage" }, } }, + ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-10) to (157-196) Lightning Damage", statOrder = { 833 }, level = 75, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-10) to (157-196) Lightning Damage" }, } }, + ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-12) to (202-234) Lightning Damage", statOrder = { 833 }, level = 81, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "default", }, weightVal = { 1, 0, 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-12) to (202-234) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 1 to (7-10) Lightning Damage", statOrder = { 833 }, level = 1, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds 1 to (7-10) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (19-27) Lightning Damage", statOrder = { 833 }, level = 8, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-2) to (19-27) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (31-43) Lightning Damage", statOrder = { 833 }, level = 16, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-3) to (31-43) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (53-76) Lightning Damage", statOrder = { 833 }, level = 33, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (53-76) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (1-4) to (80-88) Lightning Damage", statOrder = { 833 }, level = 46, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-4) to (80-88) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (1-6) to (93-122) Lightning Damage", statOrder = { 833 }, level = 54, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-6) to (93-122) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (1-8) to (128-162) Lightning Damage", statOrder = { 833 }, level = 60, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-8) to (128-162) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (1-13) to (168-231) Lightning Damage", statOrder = { 833 }, level = 65, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-13) to (168-231) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (1-16) to (239-300) Lightning Damage", statOrder = { 833 }, level = 75, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-16) to (239-300) Lightning Damage" }, } }, + ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (1-19) to (310-358) Lightning Damage", statOrder = { 833 }, level = 81, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "crossbow", "sword", "axe", "mace", "warstaff", "talisman", "default", }, weightVal = { 0, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3336890334] = { "Adds (1-19) to (310-358) Lightning Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage", statOrder = { 906 }, level = 1, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage", statOrder = { 906 }, level = 8, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (2-3) to (4-6) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage", statOrder = { 906 }, level = 16, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (2-4) to (5-8) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage", statOrder = { 906 }, level = 33, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (4-6) to (8-11) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage", statOrder = { 906 }, level = 46, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (5-7) to (9-13) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage", statOrder = { 906 }, level = 54, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (6-10) to (12-17) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage", statOrder = { 906 }, level = 60, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (7-11) to (14-20) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage", statOrder = { 906 }, level = 65, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (10-15) to (18-26) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage", statOrder = { 906 }, level = 75, group = "AlliesInPresenceAddedPhysicalDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1574590649] = { "Allies in your Presence deal (12-19) to (22-32) added Attack Physical Damage" }, } }, + ["NearbyAlliesAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage", statOrder = { 907 }, level = 1, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage", statOrder = { 907 }, level = 8, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (3-5) to (6-9) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage", statOrder = { 907 }, level = 16, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (6-8) to (10-13) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage", statOrder = { 907 }, level = 33, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (9-11) to (14-17) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage", statOrder = { 907 }, level = 46, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (12-13) to (18-20) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage", statOrder = { 907 }, level = 54, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (14-16) to (21-26) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage", statOrder = { 907 }, level = 60, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (17-19) to (27-30) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage", statOrder = { 907 }, level = 65, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (20-24) to (31-38) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage", statOrder = { 907 }, level = 75, group = "AlliesInPresenceAddedFireDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [849987426] = { "Allies in your Presence deal (25-29) to (39-45) added Attack Fire Damage" }, } }, + ["NearbyAlliesAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage", statOrder = { 908 }, level = 1, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (1-2) to (3-4) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage", statOrder = { 908 }, level = 8, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (3-4) to (5-8) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage", statOrder = { 908 }, level = 16, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (5-6) to (9-11) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage", statOrder = { 908 }, level = 33, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (7-8) to (12-14) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage", statOrder = { 908 }, level = 46, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (9-10) to (15-17) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage", statOrder = { 908 }, level = 54, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (11-13) to (18-21) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage", statOrder = { 908 }, level = 60, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (14-15) to (22-24) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage", statOrder = { 908 }, level = 65, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (16-20) to (25-31) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage", statOrder = { 908 }, level = 75, group = "AlliesInPresenceAddedColdDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (21-24) to (32-37) added Attack Cold Damage" }, } }, + ["NearbyAlliesAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage", statOrder = { 909 }, level = 1, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (5-7) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage", statOrder = { 909 }, level = 8, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (10-15) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage", statOrder = { 909 }, level = 16, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (16-22) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage", statOrder = { 909 }, level = 33, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (23-27) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage", statOrder = { 909 }, level = 46, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (28-32) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage", statOrder = { 909 }, level = 54, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-2) to (33-40) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage", statOrder = { 909 }, level = 60, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage", statOrder = { 909 }, level = 65, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage" }, } }, + ["NearbyAlliesAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage", statOrder = { 909 }, level = 75, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 829 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-49)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 829 }, level = 8, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(50-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 829 }, level = 16, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(65-84)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 829 }, level = 33, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(85-109)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 829 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(110-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 829 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(135-154)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 829 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(155-169)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 829 }, level = 82, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(170-179)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 829, 834 }, level = 8, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(16-20) to Accuracy Rating" }, [1509134228] = { "(15-19)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 829, 834 }, level = 14, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(21-46) to Accuracy Rating" }, [1509134228] = { "(20-24)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 829, 834 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(47-72) to Accuracy Rating" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 829, 834 }, level = 38, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(73-97) to Accuracy Rating" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 829, 834 }, level = 54, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(98-123) to Accuracy Rating" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 829, 834 }, level = 65, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(124-149) to Accuracy Rating" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 829, 834 }, level = 70, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(150-174) to Accuracy Rating" }, [1509134228] = { "(65-74)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 829, 834 }, level = 81, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(175-200) to Accuracy Rating" }, [1509134228] = { "(75-79)% increased Physical Damage" }, } }, + ["NearbyAlliesAllDamage1"] = { type = "Prefix", affix = "Coercive", "Allies in your Presence deal (25-34)% increased Damage", statOrder = { 905 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (25-34)% increased Damage" }, } }, + ["NearbyAlliesAllDamage2"] = { type = "Prefix", affix = "Agitative", "Allies in your Presence deal (35-44)% increased Damage", statOrder = { 905 }, level = 8, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (35-44)% increased Damage" }, } }, + ["NearbyAlliesAllDamage3"] = { type = "Prefix", affix = "Instigative", "Allies in your Presence deal (45-54)% increased Damage", statOrder = { 905 }, level = 16, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (45-54)% increased Damage" }, } }, + ["NearbyAlliesAllDamage4"] = { type = "Prefix", affix = "Provocative", "Allies in your Presence deal (55-64)% increased Damage", statOrder = { 905 }, level = 33, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (55-64)% increased Damage" }, } }, + ["NearbyAlliesAllDamage5"] = { type = "Prefix", affix = "Persuasive", "Allies in your Presence deal (65-74)% increased Damage", statOrder = { 905 }, level = 46, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (65-74)% increased Damage" }, } }, + ["NearbyAlliesAllDamage6"] = { type = "Prefix", affix = "Motivating", "Allies in your Presence deal (75-89)% increased Damage", statOrder = { 905 }, level = 60, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (75-89)% increased Damage" }, } }, + ["NearbyAlliesAllDamage7"] = { type = "Prefix", affix = "Inspirational", "Allies in your Presence deal (90-104)% increased Damage", statOrder = { 905 }, level = 70, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (90-104)% increased Damage" }, } }, + ["NearbyAlliesAllDamage8"] = { type = "Prefix", affix = "Empowering", "Allies in your Presence deal (105-119)% increased Damage", statOrder = { 905 }, level = 82, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (105-119)% increased Damage" }, } }, + ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(25-34)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-34)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(35-44)% increased Spell Damage", statOrder = { 870 }, level = 8, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-44)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-54)% increased Spell Damage", statOrder = { 870 }, level = 16, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-54)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(55-64)% increased Spell Damage", statOrder = { 870 }, level = 33, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(55-64)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(65-74)% increased Spell Damage", statOrder = { 870 }, level = 46, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(65-74)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(75-89)% increased Spell Damage", statOrder = { 870 }, level = 60, group = "WeaponSpellDamage", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(75-89)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(90-104)% increased Spell Damage", statOrder = { 870 }, level = 70, group = "WeaponSpellDamage", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(90-104)% increased Spell Damage" }, } }, + ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(105-119)% increased Spell Damage", statOrder = { 870 }, level = 80, group = "WeaponSpellDamage", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(105-119)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(50-68)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(50-68)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(69-88)% increased Spell Damage", statOrder = { 870 }, level = 8, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-88)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(89-108)% increased Spell Damage", statOrder = { 870 }, level = 16, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(89-108)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(109-128)% increased Spell Damage", statOrder = { 870 }, level = 33, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(109-128)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(129-148)% increased Spell Damage", statOrder = { 870 }, level = 46, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(129-148)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(149-188)% increased Spell Damage", statOrder = { 870 }, level = 60, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(149-188)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(189-208)% increased Spell Damage", statOrder = { 870 }, level = 70, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(189-208)% increased Spell Damage" }, } }, + ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(209-238)% increased Spell Damage", statOrder = { 870 }, level = 80, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(209-238)% increased Spell Damage" }, } }, + ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(15-19)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 870, 891 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(15-19)% increased Spell Damage" }, [1050105434] = { "+(17-20) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(20-24)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 870, 891 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-24)% increased Spell Damage" }, [1050105434] = { "+(21-24) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(25-29)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 870, 891 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(25-29)% increased Spell Damage" }, [1050105434] = { "+(25-28) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-34)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 870, 891 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, [1050105434] = { "+(29-33) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(35-39)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 870, 891 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, [1050105434] = { "+(34-37) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(40-44)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 870, 891 }, level = 60, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-44)% increased Spell Damage" }, [1050105434] = { "+(38-41) to maximum Mana" }, } }, + ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(45-49)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 870, 891 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(45-49)% increased Spell Damage" }, [1050105434] = { "+(42-45) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(30-38)% increased Spell Damage", "+(34-40) to maximum Mana", statOrder = { 870, 891 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-38)% increased Spell Damage" }, [1050105434] = { "+(34-40) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(39-48)% increased Spell Damage", "+(41-48) to maximum Mana", statOrder = { 870, 891 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(39-48)% increased Spell Damage" }, [1050105434] = { "+(41-48) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(49-58)% increased Spell Damage", "+(49-56) to maximum Mana", statOrder = { 870, 891 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(49-58)% increased Spell Damage" }, [1050105434] = { "+(49-56) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(59-68)% increased Spell Damage", "+(57-66) to maximum Mana", statOrder = { 870, 891 }, level = 38, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(59-68)% increased Spell Damage" }, [1050105434] = { "+(57-66) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(69-78)% increased Spell Damage", "+(67-74) to maximum Mana", statOrder = { 870, 891 }, level = 48, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(69-78)% increased Spell Damage" }, [1050105434] = { "+(67-74) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(79-88)% increased Spell Damage", "+(75-82) to maximum Mana", statOrder = { 870, 891 }, level = 63, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(79-88)% increased Spell Damage" }, [1050105434] = { "+(75-82) to maximum Mana" }, } }, + ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(89-98)% increased Spell Damage", "+(83-90) to maximum Mana", statOrder = { 870, 891 }, level = 79, group = "WeaponSpellDamageAndMana", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, tradeHashes = { [2974417149] = { "(89-98)% increased Spell Damage" }, [1050105434] = { "+(83-90) to maximum Mana" }, } }, + ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(25-34)% increased Fire Damage", statOrder = { 872 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(25-34)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(35-44)% increased Fire Damage", statOrder = { 872 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(35-44)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-54)% increased Fire Damage", statOrder = { 872 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(45-54)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(55-64)% increased Fire Damage", statOrder = { 872 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(55-64)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Smoldering", "(65-74)% increased Fire Damage", statOrder = { 872 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(65-74)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(75-89)% increased Fire Damage", statOrder = { 872 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "focus", "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(75-89)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Volcanic", "(90-104)% increased Fire Damage", statOrder = { 872 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(90-104)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(105-119)% increased Fire Damage", statOrder = { 872 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(105-119)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(50-68)% increased Fire Damage", statOrder = { 872 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(50-68)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(69-88)% increased Fire Damage", statOrder = { 872 }, level = 8, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(69-88)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(89-108)% increased Fire Damage", statOrder = { 872 }, level = 16, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(89-108)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(109-128)% increased Fire Damage", statOrder = { 872 }, level = 33, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(109-128)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Smoldering", "(129-148)% increased Fire Damage", statOrder = { 872 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(129-148)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(149-188)% increased Fire Damage", statOrder = { 872 }, level = 60, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(149-188)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Volcanic", "(189-208)% increased Fire Damage", statOrder = { 872 }, level = 70, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(189-208)% increased Fire Damage" }, } }, + ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Pyromancer's", "(209-238)% increased Fire Damage", statOrder = { 872 }, level = 81, group = "FireDamageWeaponPrefix", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(209-238)% increased Fire Damage" }, } }, + ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(25-34)% increased Cold Damage", statOrder = { 873 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(25-34)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(35-44)% increased Cold Damage", statOrder = { 873 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(35-44)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(45-54)% increased Cold Damage", statOrder = { 873 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(45-54)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(55-64)% increased Cold Damage", statOrder = { 873 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(55-64)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(65-74)% increased Cold Damage", statOrder = { 873 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(65-74)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Arctic", "(75-89)% increased Cold Damage", statOrder = { 873 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(75-89)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Crystalline", "(90-104)% increased Cold Damage", statOrder = { 873 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(90-104)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(105-119)% increased Cold Damage", statOrder = { 873 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(105-119)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(50-68)% increased Cold Damage", statOrder = { 873 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(50-68)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(69-88)% increased Cold Damage", statOrder = { 873 }, level = 8, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(69-88)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(89-108)% increased Cold Damage", statOrder = { 873 }, level = 16, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(89-108)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(109-128)% increased Cold Damage", statOrder = { 873 }, level = 33, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(109-128)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(129-148)% increased Cold Damage", statOrder = { 873 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(129-148)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Arctic", "(149-188)% increased Cold Damage", statOrder = { 873 }, level = 60, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(149-188)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Crystalline", "(189-208)% increased Cold Damage", statOrder = { 873 }, level = 70, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(189-208)% increased Cold Damage" }, } }, + ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Cryomancer's", "(209-238)% increased Cold Damage", statOrder = { 873 }, level = 81, group = "ColdDamageWeaponPrefix", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(209-238)% increased Cold Damage" }, } }, + ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(25-34)% increased Lightning Damage", statOrder = { 874 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(25-34)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(35-44)% increased Lightning Damage", statOrder = { 874 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(35-44)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-54)% increased Lightning Damage", statOrder = { 874 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(45-54)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(55-64)% increased Lightning Damage", statOrder = { 874 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(55-64)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(65-74)% increased Lightning Damage", statOrder = { 874 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(65-74)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(75-89)% increased Lightning Damage", statOrder = { 874 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(75-89)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(90-104)% increased Lightning Damage", statOrder = { 874 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(90-104)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(105-119)% increased Lightning Damage", statOrder = { 874 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(105-119)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(50-68)% increased Lightning Damage", statOrder = { 874 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(50-68)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(69-88)% increased Lightning Damage", statOrder = { 874 }, level = 8, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(69-88)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(89-108)% increased Lightning Damage", statOrder = { 874 }, level = 16, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(89-108)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(109-128)% increased Lightning Damage", statOrder = { 874 }, level = 33, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(109-128)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(129-148)% increased Lightning Damage", statOrder = { 874 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(129-148)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(149-188)% increased Lightning Damage", statOrder = { 874 }, level = 60, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(149-188)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(189-208)% increased Lightning Damage", statOrder = { 874 }, level = 70, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(189-208)% increased Lightning Damage" }, } }, + ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Electromancer's", "(209-238)% increased Lightning Damage", statOrder = { 874 }, level = 81, group = "LightningDamageWeaponPrefix", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(209-238)% increased Lightning Damage" }, } }, + ["ChaosDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Impure", "(25-34)% increased Chaos Damage", statOrder = { 875 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(25-34)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Tainted", "(35-44)% increased Chaos Damage", statOrder = { 875 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(35-44)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Clouded", "(45-54)% increased Chaos Damage", statOrder = { 875 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(45-54)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Darkened", "(55-64)% increased Chaos Damage", statOrder = { 875 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(55-64)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Malignant", "(65-74)% increased Chaos Damage", statOrder = { 875 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(65-74)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Vile", "(75-89)% increased Chaos Damage", statOrder = { 875 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "focus", "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(75-89)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Twisted", "(90-104)% increased Chaos Damage", statOrder = { 875 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(90-104)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Malevolent", "(105-119)% increased Chaos Damage", statOrder = { 875 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(105-119)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Impure", "(50-68)% increased Chaos Damage", statOrder = { 875 }, level = 2, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(50-68)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Tainted", "(69-88)% increased Chaos Damage", statOrder = { 875 }, level = 8, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(69-88)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Clouded", "(89-108)% increased Chaos Damage", statOrder = { 875 }, level = 16, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(89-108)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Darkened", "(109-128)% increased Chaos Damage", statOrder = { 875 }, level = 33, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(109-128)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Malignant", "(129-148)% increased Chaos Damage", statOrder = { 875 }, level = 46, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(129-148)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Vile", "(149-188)% increased Chaos Damage", statOrder = { 875 }, level = 60, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(149-188)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Twisted", "(189-208)% increased Chaos Damage", statOrder = { 875 }, level = 70, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(189-208)% increased Chaos Damage" }, } }, + ["ChaosDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Malevolent", "(209-238)% increased Chaos Damage", statOrder = { 875 }, level = 81, group = "ChaosDamageWeaponPrefix", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(209-238)% increased Chaos Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Punishing", "(25-34)% increased Spell Physical Damage", statOrder = { 877 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(25-34)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(35-44)% increased Spell Physical Damage", statOrder = { 877 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(35-44)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Vengeful", "(45-54)% increased Spell Physical Damage", statOrder = { 877 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(45-54)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Sadistic", "(55-64)% increased Spell Physical Damage", statOrder = { 877 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(55-64)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Pitiless", "(65-74)% increased Spell Physical Damage", statOrder = { 877 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(65-74)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Agonising", "(75-89)% increased Spell Physical Damage", statOrder = { 877 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "focus", "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 1, 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(75-89)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(90-104)% increased Spell Physical Damage", statOrder = { 877 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(90-104)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Torturer's", "(105-119)% increased Spell Physical Damage", statOrder = { 877 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "wand", "trap", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(105-119)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Punishing", "(50-68)% increased Spell Physical Damage", statOrder = { 877 }, level = 2, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(50-68)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Unforgiving", "(69-88)% increased Spell Physical Damage", statOrder = { 877 }, level = 8, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(69-88)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Vengeful", "(89-108)% increased Spell Physical Damage", statOrder = { 877 }, level = 16, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(89-108)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Sadistic", "(109-128)% increased Spell Physical Damage", statOrder = { 877 }, level = 33, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(109-128)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Pitiless", "(129-148)% increased Spell Physical Damage", statOrder = { 877 }, level = 46, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(129-148)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Agonising", "(149-188)% increased Spell Physical Damage", statOrder = { 877 }, level = 60, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(149-188)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Oppressor's", "(189-208)% increased Spell Physical Damage", statOrder = { 877 }, level = 70, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(189-208)% increased Spell Physical Damage" }, } }, + ["PhysicalDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Torturer's", "(209-238)% increased Spell Physical Damage", statOrder = { 877 }, level = 81, group = "PhysicalSpellDamageWeaponPrefix", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2768835289] = { "(209-238)% increased Spell Physical Damage" }, } }, + ["TrapDamageOnWeapon1"] = { type = "Prefix", affix = "Explosive", "(25-34)% increased Trap Damage", statOrder = { 871 }, level = 2, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(25-34)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon2"] = { type = "Prefix", affix = "Eviscerating", "(35-44)% increased Trap Damage", statOrder = { 871 }, level = 8, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(35-44)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon3"] = { type = "Prefix", affix = "Crippling", "(45-54)% increased Trap Damage", statOrder = { 871 }, level = 16, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(45-54)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon4"] = { type = "Prefix", affix = "Disabling", "(55-64)% increased Trap Damage", statOrder = { 871 }, level = 33, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(55-64)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon5"] = { type = "Prefix", affix = "Decimating", "(65-74)% increased Trap Damage", statOrder = { 871 }, level = 46, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(65-74)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon6"] = { type = "Prefix", affix = "Demolishing", "(75-89)% increased Trap Damage", statOrder = { 871 }, level = 60, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(75-89)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon7"] = { type = "Prefix", affix = "Obliterating", "(90-104)% increased Trap Damage", statOrder = { 871 }, level = 70, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(90-104)% increased Trap Damage" }, } }, + ["TrapDamageOnWeapon8"] = { type = "Prefix", affix = "Shattering", "(105-119)% increased Trap Damage", statOrder = { 871 }, level = 81, group = "TrapDamageOnWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(105-119)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Sapper's", "(15-19)% increased Trap Damage", "+(17-20) to maximum Mana", statOrder = { 871, 891 }, level = 2, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [2941585404] = { "(15-19)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Saboteur's", "(20-24)% increased Trap Damage", "+(21-24) to maximum Mana", statOrder = { 871, 891 }, level = 11, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [2941585404] = { "(20-24)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Tinkerer's", "(25-29)% increased Trap Damage", "+(25-28) to maximum Mana", statOrder = { 871, 891 }, level = 23, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [2941585404] = { "(25-29)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Mechanic's", "(30-34)% increased Trap Damage", "+(29-33) to maximum Mana", statOrder = { 871, 891 }, level = 35, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [2941585404] = { "(30-34)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Engineer's", "(35-39)% increased Trap Damage", "+(34-37) to maximum Mana", statOrder = { 871, 891 }, level = 48, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [2941585404] = { "(35-39)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Inventor's", "(40-44)% increased Trap Damage", "+(38-41) to maximum Mana", statOrder = { 871, 891 }, level = 63, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [2941585404] = { "(40-44)% increased Trap Damage" }, } }, + ["TrapDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Artificer's", "(45-49)% increased Trap Damage", "+(42-45) to maximum Mana", statOrder = { 871, 891 }, level = 78, group = "WeaponTrapDamageAndMana", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [2941585404] = { "(45-49)% increased Trap Damage" }, } }, + ["GlobalSpellGemsLevel1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 949 }, level = 10, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevel2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 949 }, level = 41, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "focus", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevel3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 949 }, level = 75, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of the Mage", "+1 to Level of all Spell Skills", statOrder = { 949 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+2 to Level of all Spell Skills", statOrder = { 949 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of the Sorcerer", "+3 to Level of all Spell Skills", statOrder = { 949 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of the Wizard", "+4 to Level of all Spell Skills", statOrder = { 949 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+4 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Mage", "+2 to Level of all Spell Skills", statOrder = { 949 }, level = 5, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+2 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Enchanter", "+3 to Level of all Spell Skills", statOrder = { 949 }, level = 25, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Evoker", "+4 to Level of all Spell Skills", statOrder = { 949 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+4 to Level of all Spell Skills" }, } }, + ["GlobalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Sorcerer", "+(5-6) to Level of all Spell Skills", statOrder = { 949 }, level = 78, group = "GlobalIncreaseSpellSkillGemLevelWeapon", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+(5-6) to Level of all Spell Skills" }, } }, + ["GlobalFireSpellGemsLevel1_"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 5, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevel2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 41, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevel3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 75, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Flames", "+3 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+3 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Immolation", "+4 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+4 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Inferno", "+5 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+5 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Coals", "+1 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+1 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Cinders", "+2 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 18, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+2 to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Flames", "+(3-4) to Level of all Fire Spell Skills", statOrder = { 958 }, level = 36, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(3-4) to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Immolation", "+(5-6) to Level of all Fire Spell Skills", statOrder = { 958 }, level = 55, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+(5-6) to Level of all Fire Spell Skills" }, } }, + ["GlobalFireSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Inferno", "+7 to Level of all Fire Spell Skills", statOrder = { 958 }, level = 81, group = "GlobalIncreaseFireSpellSkillGemLevelWeapon", weightKey = { "no_fire_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, tradeHashes = { [591105508] = { "+7 to Level of all Fire Spell Skills" }, } }, + ["GlobalColdSpellGemsLevel1_"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 5, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevel2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 41, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevel3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 75, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ice", "+3 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+3 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Rime", "+4 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+4 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+5 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+5 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Snow", "+1 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+1 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Sleet", "+2 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 18, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+2 to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ice", "+(3-4) to Level of all Cold Spell Skills", statOrder = { 960 }, level = 36, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(3-4) to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Rime", "+(5-6) to Level of all Cold Spell Skills", statOrder = { 960 }, level = 55, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(5-6) to Level of all Cold Spell Skills" }, } }, + ["GlobalColdSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Frostbite", "+7 to Level of all Cold Spell Skills", statOrder = { 960 }, level = 81, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { "no_cold_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+7 to Level of all Cold Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevel1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 5, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevel2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 41, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevel3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 75, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Electricity", "+3 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+3 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Voltage", "+4 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+4 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Thunder", "+5 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+5 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Sparks", "+1 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+1 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Static", "+2 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 18, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+2 to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Electricity", "+(3-4) to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 36, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(3-4) to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Voltage", "+(5-6) to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 55, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+(5-6) to Level of all Lightning Spell Skills" }, } }, + ["GlobalLightningSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Thunder", "+7 to Level of all Lightning Spell Skills", statOrder = { 962 }, level = 81, group = "GlobalIncreaseLightningSpellSkillGemLevelWeapon", weightKey = { "no_lightning_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, tradeHashes = { [1545858329] = { "+7 to Level of all Lightning Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevel1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 5, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevel2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 41, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevel3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 75, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Ruin", "+3 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+3 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Havoc", "+4 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+4 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+5 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+5 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Anarchy", "+1 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+1 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Turmoil", "+2 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 18, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+2 to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Ruin", "+(3-4) to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 36, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(3-4) to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Havoc", "+(5-6) to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 55, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+(5-6) to Level of all Chaos Spell Skills" }, } }, + ["GlobalChaosSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Armageddon", "+7 to Level of all Chaos Spell Skills", statOrder = { 964 }, level = 81, group = "GlobalIncreaseChaosSpellSkillGemLevelWeapon", weightKey = { "no_chaos_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos", "caster", "gem" }, tradeHashes = { [4226189338] = { "+7 to Level of all Chaos Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevel1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 5, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevel2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 41, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevel3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 75, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelWeapon3"] = { type = "Suffix", affix = "of Torment", "+3 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+3 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelWeapon4"] = { type = "Suffix", affix = "of Desolation", "+4 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+4 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelWeapon5"] = { type = "Suffix", affix = "of Grief", "+5 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "wand", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+5 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Agony", "+1 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+1 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Suffering", "+2 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 18, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+2 to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Torment", "+(3-4) to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 36, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(3-4) to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Desolation", "+(5-6) to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 55, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+(5-6) to Level of all Physical Spell Skills" }, } }, + ["GlobalPhysicalSpellGemsLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of Grief", "+7 to Level of all Physical Spell Skills", statOrder = { 1475 }, level = 81, group = "GlobalIncreasePhysicalSpellSkillGemLevelWeapon", weightKey = { "no_physical_spell_mods", "staff", "default", }, weightVal = { 0, 1, 0 }, modTags = { "physical", "caster", "gem" }, tradeHashes = { [1600707273] = { "+7 to Level of all Physical Spell Skills" }, } }, + ["GlobalMinionSpellSkillGemLevel1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 971 }, level = 5, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevel2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 971 }, level = 41, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevel3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 971 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+3 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 971 }, level = 2, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 971 }, level = 25, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Overseer", "+3 to Level of all Minion Skills", statOrder = { 971 }, level = 55, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+3 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Slavedriver", "+4 to Level of all Minion Skills", statOrder = { 971 }, level = 78, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+4 to Level of all Minion Skills" }, } }, + ["GlobalMinionSpellSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Tyrant", "+5 to Level of all Minion Skills", statOrder = { 971 }, level = 81, group = "GlobalIncreaseMinionSpellSkillGemLevelWeapon", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+5 to Level of all Minion Skills" }, } }, + ["GlobalTrapSkillGemLevel1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 5, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevel2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 41, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "belt", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+2 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevel3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 75, group = "GlobalIncreaseTrapSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+3 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Explosives", "+1 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 2, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+1 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Shrapnel", "+2 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 18, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+2 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Sabotage", "+3 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 36, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+3 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Detonation", "+4 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 55, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+4 to Level of all Trap Skill Gems" }, } }, + ["GlobalTrapSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of Pyrotechnics", "+5 to Level of all Trap Skill Gems", statOrder = { 973 }, level = 81, group = "GlobalIncreaseTrapSkillGemLevelWeapon", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239953100] = { "+5 to Level of all Trap Skill Gems" }, } }, + ["GlobalMeleeSkillGemLevel1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 965 }, level = 5, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevel2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 965 }, level = 41, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevel3"] = { type = "Suffix", affix = "of Battle", "+3 to Level of all Melee Skills", statOrder = { 965 }, level = 75, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of Combat", "+1 to Level of all Melee Skills", statOrder = { 965 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of Dueling", "+1 to Level of all Melee Skills", statOrder = { 965 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of Conflict", "+2 to Level of all Melee Skills", statOrder = { 965 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of Battle", "+3 to Level of all Melee Skills", statOrder = { 965 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of War", "+4 to Level of all Melee Skills", statOrder = { 965 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "ranged", "spear", "one_hand_weapon", "default", }, weightVal = { 0, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+4 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of Combat", "+2 to Level of all Melee Skills", statOrder = { 965 }, level = 2, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of Dueling", "+2 to Level of all Melee Skills", statOrder = { 965 }, level = 18, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+2 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of Conflict", "+3 to Level of all Melee Skills", statOrder = { 965 }, level = 36, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+3 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of Battle", "+4 to Level of all Melee Skills", statOrder = { 965 }, level = 55, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+4 to Level of all Melee Skills" }, } }, + ["GlobalMeleeSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of War", "+5 to Level of all Melee Skills", statOrder = { 965 }, level = 81, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [9187492] = { "+5 to Level of all Melee Skills" }, } }, + ["GlobalProjectileSkillGemLevel1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 967 }, level = 5, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevel2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 967 }, level = 41, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "quiver", "amulet", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevel3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 967 }, level = 75, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelWeapon1"] = { type = "Suffix", affix = "of the Archer", "+1 to Level of all Projectile Skills", statOrder = { 967 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+1 to Level of all Projectile Skills", statOrder = { 967 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+2 to Level of all Projectile Skills", statOrder = { 967 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+3 to Level of all Projectile Skills", statOrder = { 967 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+4 to Level of all Projectile Skills", statOrder = { 967 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "bow", "spear", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+4 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon1"] = { type = "Suffix", affix = "of the Archer", "+2 to Level of all Projectile Skills", statOrder = { 967 }, level = 2, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon2"] = { type = "Suffix", affix = "of the Fletcher", "+2 to Level of all Projectile Skills", statOrder = { 967 }, level = 18, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon3"] = { type = "Suffix", affix = "of the Sharpshooter", "+3 to Level of all Projectile Skills", statOrder = { 967 }, level = 36, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+3 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon4"] = { type = "Suffix", affix = "of the Marksman", "+4 to Level of all Projectile Skills", statOrder = { 967 }, level = 55, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+4 to Level of all Projectile Skills" }, } }, + ["GlobalProjectileSkillGemLevelTwoHandWeapon5"] = { type = "Suffix", affix = "of the Sniper", "+5 to Level of all Projectile Skills", statOrder = { 967 }, level = 81, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+5 to Level of all Projectile Skills" }, } }, + ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "(1-2) Life Regeneration per second", statOrder = { 1033 }, level = 1, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(1-2) Life Regeneration per second" }, } }, + ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "(2.1-3) Life Regeneration per second", statOrder = { 1033 }, level = 5, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(2.1-3) Life Regeneration per second" }, } }, + ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "(3.1-4) Life Regeneration per second", statOrder = { 1033 }, level = 11, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(3.1-4) Life Regeneration per second" }, } }, + ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "(4.1-6) Life Regeneration per second", statOrder = { 1033 }, level = 17, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(4.1-6) Life Regeneration per second" }, } }, + ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "(6.1-9) Life Regeneration per second", statOrder = { 1033 }, level = 26, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(6.1-9) Life Regeneration per second" }, } }, + ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "(9.1-13) Life Regeneration per second", statOrder = { 1033 }, level = 35, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(9.1-13) Life Regeneration per second" }, } }, + ["LifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "(13.1-18) Life Regeneration per second", statOrder = { 1033 }, level = 47, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "ring", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(13.1-18) Life Regeneration per second" }, } }, + ["LifeRegeneration8_"] = { type = "Suffix", affix = "of Recuperation", "(18.1-23) Life Regeneration per second", statOrder = { 1033 }, level = 58, group = "LifeRegeneration", weightKey = { "body_armour", "helmet", "boots", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(18.1-23) Life Regeneration per second" }, } }, + ["LifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "(23.1-29) Life Regeneration per second", statOrder = { 1033 }, level = 68, group = "LifeRegeneration", weightKey = { "body_armour", "belt", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(23.1-29) Life Regeneration per second" }, } }, + ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Immortality", "(29.1-33) Life Regeneration per second", statOrder = { 1033 }, level = 75, group = "LifeRegeneration", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(29.1-33) Life Regeneration per second" }, } }, + ["LifeRegeneration11____"] = { type = "Suffix", affix = "of the Phoenix", "(33.1-36) Life Regeneration per second", statOrder = { 1033 }, level = 81, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "flat_life_regen", "resource", "life" }, tradeHashes = { [3325883026] = { "(33.1-36) Life Regeneration per second" }, } }, + ["NearbyAlliesLifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Allies in your Presence Regenerate (1-2) Life per second", statOrder = { 920 }, level = 1, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (1-2) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Allies in your Presence Regenerate (2.1-3) Life per second", statOrder = { 920 }, level = 5, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (2.1-3) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Allies in your Presence Regenerate (3.1-4) Life per second", statOrder = { 920 }, level = 11, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (3.1-4) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Allies in your Presence Regenerate (4.1-6) Life per second", statOrder = { 920 }, level = 17, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (4.1-6) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Allies in your Presence Regenerate (6.1-9) Life per second", statOrder = { 920 }, level = 26, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (6.1-9) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Allies in your Presence Regenerate (9.1-13) Life per second", statOrder = { 920 }, level = 35, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (9.1-13) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration7"] = { type = "Suffix", affix = "of Convalescence", "Allies in your Presence Regenerate (13.1-18) Life per second", statOrder = { 920 }, level = 47, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (13.1-18) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration8"] = { type = "Suffix", affix = "of Recuperation", "Allies in your Presence Regenerate (18.1-23) Life per second", statOrder = { 920 }, level = 58, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (18.1-23) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration9"] = { type = "Suffix", affix = "of Resurgence", "Allies in your Presence Regenerate (23.1-29) Life per second", statOrder = { 920 }, level = 68, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (23.1-29) Life per second" }, } }, + ["NearbyAlliesLifeRegeneration10"] = { type = "Suffix", affix = "of Immortality", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 920 }, level = 75, group = "AlliesInPresenceLifeRegeneration", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (29.1-33) Life per second" }, } }, + ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(10-19)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(20-29)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-39)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(40-49)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(50-59)% increased Mana Regeneration Rate" }, } }, + ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "trap", "genesis_tree_caster", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-69)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(15-29)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(15-29)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(30-44)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(30-44)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(45-59)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(45-59)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(60-74)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(60-74)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(75-89)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(75-89)% increased Mana Regeneration Rate" }, } }, + ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(90-104)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(90-104)% increased Mana Regeneration Rate" }, } }, + ["LifeLeech1"] = { type = "Suffix", affix = "of the Parasite", "Leech (5-5.9)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (5-5.9)% of Physical Attack Damage as Life" }, } }, + ["LifeLeech2"] = { type = "Suffix", affix = "of the Locust", "Leech (6-6.9)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 21, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (6-6.9)% of Physical Attack Damage as Life" }, } }, + ["LifeLeech3"] = { type = "Suffix", affix = "of the Remora", "Leech (7-7.9)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 38, group = "LifeLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (7-7.9)% of Physical Attack Damage as Life" }, } }, + ["LifeLeech4"] = { type = "Suffix", affix = "of the Lamprey", "Leech (8-8.9)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 54, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (8-8.9)% of Physical Attack Damage as Life" }, } }, + ["LifeLeech5"] = { type = "Suffix", affix = "of the Vampire", "Leech (9-9.9)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 65, group = "LifeLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (9-9.9)% of Physical Attack Damage as Life" }, } }, + ["LifeLeechLocal1"] = { type = "Suffix", affix = "of the Parasite", "Leeches (5-5.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-5.9)% of Physical Damage as Life" }, } }, + ["LifeLeechLocal2"] = { type = "Suffix", affix = "of the Locust", "Leeches (6-6.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 21, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (6-6.9)% of Physical Damage as Life" }, } }, + ["LifeLeechLocal3"] = { type = "Suffix", affix = "of the Remora", "Leeches (7-7.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 38, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (7-7.9)% of Physical Damage as Life" }, } }, + ["LifeLeechLocal4"] = { type = "Suffix", affix = "of the Lamprey", "Leeches (8-8.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 54, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (8-8.9)% of Physical Damage as Life" }, } }, + ["LifeLeechLocal5"] = { type = "Suffix", affix = "of the Vampire", "Leeches (9-9.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 65, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (9-9.9)% of Physical Damage as Life" }, } }, + ["ManaLeech1"] = { type = "Suffix", affix = "of the Thirsty", "Leech (4-4.9)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (4-4.9)% of Physical Attack Damage as Mana" }, } }, + ["ManaLeech2"] = { type = "Suffix", affix = "of the Parched", "Leech (5-5.9)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 21, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (5-5.9)% of Physical Attack Damage as Mana" }, } }, + ["ManaLeech3"] = { type = "Suffix", affix = "of the Arid", "Leech (6-6.9)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 38, group = "ManaLeechPermyriad", weightKey = { "gloves", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (6-6.9)% of Physical Attack Damage as Mana" }, } }, + ["ManaLeech4"] = { type = "Suffix", affix = "of the Drought", "Leech (7-7.9)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 54, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (7-7.9)% of Physical Attack Damage as Mana" }, } }, + ["ManaLeech5"] = { type = "Suffix", affix = "of the Desperate", "Leech (8-8.9)% of Physical Attack Damage as Mana", statOrder = { 1045 }, level = 65, group = "ManaLeechPermyriad", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [707457662] = { "Leech (8-8.9)% of Physical Attack Damage as Mana" }, } }, + ["ManaLeechLocal1"] = { type = "Suffix", affix = "of the Thirsty", "Leeches (4-4.9)% of Physical Damage as Mana", statOrder = { 1044 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (4-4.9)% of Physical Damage as Mana" }, } }, + ["ManaLeechLocal2"] = { type = "Suffix", affix = "of the Parched", "Leeches (5-5.9)% of Physical Damage as Mana", statOrder = { 1044 }, level = 21, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (5-5.9)% of Physical Damage as Mana" }, } }, + ["ManaLeechLocal3"] = { type = "Suffix", affix = "of the Arid", "Leeches (6-6.9)% of Physical Damage as Mana", statOrder = { 1044 }, level = 38, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (6-6.9)% of Physical Damage as Mana" }, } }, + ["ManaLeechLocal4"] = { type = "Suffix", affix = "of the Drought", "Leeches (7-7.9)% of Physical Damage as Mana", statOrder = { 1044 }, level = 54, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (7-7.9)% of Physical Damage as Mana" }, } }, + ["ManaLeechLocal5"] = { type = "Suffix", affix = "of the Desperate", "Leeches (8-8.9)% of Physical Damage as Mana", statOrder = { 1044 }, level = 65, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHashes = { [669069897] = { "Leeches (8-8.9)% of Physical Damage as Mana" }, } }, + ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (4-6) Life per enemy killed", statOrder = { 1041 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (4-6) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (7-9) Life per enemy killed", statOrder = { 1041 }, level = 11, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (7-9) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (10-18) Life per enemy killed", statOrder = { 1041 }, level = 22, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (10-18) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (19-28) Life per enemy killed", statOrder = { 1041 }, level = 33, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (19-28) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Vanquishing", "Gain (29-40) Life per enemy killed", statOrder = { 1041 }, level = 44, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (29-40) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Valour", "Gain (41-53) Life per enemy killed", statOrder = { 1041 }, level = 55, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (41-53) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Glory", "Gain (54-68) Life per enemy killed", statOrder = { 1041 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (54-68) Life per enemy killed" }, } }, + ["LifeGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Legend", "Gain (69-84) Life per enemy killed", statOrder = { 1041 }, level = 77, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [3695891184] = { "Gain (69-84) Life per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (2-3) Mana per enemy killed", statOrder = { 1046 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (2-3) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (4-5) Mana per enemy killed", statOrder = { 1046 }, level = 12, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (4-5) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Infusion", "Gain (6-9) Mana per enemy killed", statOrder = { 1046 }, level = 23, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (6-9) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Enveloping", "Gain (10-14) Mana per enemy killed", statOrder = { 1046 }, level = 34, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (10-14) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Consumption", "Gain (15-20) Mana per enemy killed", statOrder = { 1046 }, level = 45, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (15-20) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Gain (21-27) Mana per enemy killed", statOrder = { 1046 }, level = 56, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "ring", "gloves", "quiver", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (21-27) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Devouring", "Gain (28-35) Mana per enemy killed", statOrder = { 1046 }, level = 67, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (28-35) Mana per enemy killed" }, } }, + ["ManaGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Assimilation", "Gain (36-45) Mana per enemy killed", statOrder = { 1046 }, level = 78, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "wand", "staff", "gloves", "trap", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1368271171] = { "Gain (36-45) Mana per enemy killed" }, } }, + ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 8, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 2 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 20, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 3 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 30, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 4 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 1039 }, level = 40, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [2797971005] = { "Gain 5 Life per Enemy Hit with Attacks" }, } }, + ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants 2 Life per Enemy Hit", statOrder = { 1040 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 2 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants 3 Life per Enemy Hit", statOrder = { 1040 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 3 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants 4 Life per Enemy Hit", statOrder = { 1040 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 4 Life per Enemy Hit" }, } }, + ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants 5 Life per Enemy Hit", statOrder = { 1040 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [821021828] = { "Grants 5 Life per Enemy Hit" }, } }, + ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(5-7)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 984 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(8-10)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 984 }, level = 37, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(11-13)% increased Attack Speed" }, } }, + ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 984 }, level = 60, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(14-16)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 945 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(5-7)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 945 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(8-10)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 945 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(11-13)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 945 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(14-16)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 945 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(17-19)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 945 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(20-22)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 945 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(23-25)% increased Attack Speed" }, } }, + ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-28)% increased Attack Speed", statOrder = { 945 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(26-28)% increased Attack Speed" }, } }, + ["NearbyAlliesIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "Allies in your Presence have (5-7)% increased Attack Speed", statOrder = { 917 }, level = 5, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (5-7)% increased Attack Speed" }, } }, + ["NearbyAlliesIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "Allies in your Presence have (8-10)% increased Attack Speed", statOrder = { 917 }, level = 20, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (8-10)% increased Attack Speed" }, } }, + ["NearbyAlliesIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "Allies in your Presence have (11-13)% increased Attack Speed", statOrder = { 917 }, level = 35, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (11-13)% increased Attack Speed" }, } }, + ["NearbyAlliesIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "Allies in your Presence have (14-16)% increased Attack Speed", statOrder = { 917 }, level = 55, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1998951374] = { "Allies in your Presence have (14-16)% increased Attack Speed" }, } }, + ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(9-12)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(13-16)% increased Cast Speed", statOrder = { 986 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-16)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(17-20)% increased Cast Speed", statOrder = { 986 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(17-20)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "(21-24)% increased Cast Speed", statOrder = { 986 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(21-24)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Legerdemain", "(25-28)% increased Cast Speed", statOrder = { 986 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-28)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Prestidigitation", "(29-32)% increased Cast Speed", statOrder = { 986 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(29-32)% increased Cast Speed" }, } }, + ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(33-35)% increased Cast Speed", statOrder = { 986 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(33-35)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(14-19)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(14-19)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(20-25)% increased Cast Speed", statOrder = { 986 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(20-25)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(26-31)% increased Cast Speed", statOrder = { 986 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(26-31)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Sortilege", "(32-37)% increased Cast Speed", statOrder = { 986 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(32-37)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Legerdemain", "(38-43)% increased Cast Speed", statOrder = { 986 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(38-43)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Prestidigitation", "(44-49)% increased Cast Speed", statOrder = { 986 }, level = 70, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(44-49)% increased Cast Speed" }, } }, + ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(50-52)% increased Cast Speed", statOrder = { 986 }, level = 80, group = "IncreasedCastSpeed", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(50-52)% increased Cast Speed" }, } }, + ["NearbyAlliesIncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "Allies in your Presence have (5-8)% increased Cast Speed", statOrder = { 918 }, level = 6, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (5-8)% increased Cast Speed" }, } }, + ["NearbyAlliesIncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Allies in your Presence have (9-12)% increased Cast Speed", statOrder = { 918 }, level = 21, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (9-12)% increased Cast Speed" }, } }, + ["NearbyAlliesIncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "Allies in your Presence have (13-16)% increased Cast Speed", statOrder = { 918 }, level = 36, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (13-16)% increased Cast Speed" }, } }, + ["NearbyAlliesIncreasedCastSpeed4"] = { type = "Suffix", affix = "of Sortilege", "Allies in your Presence have (17-20)% increased Cast Speed", statOrder = { 918 }, level = 56, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [289128254] = { "Allies in your Presence have (17-20)% increased Cast Speed" }, } }, + ["IncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 879 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(11-32) to Accuracy Rating" }, } }, + ["IncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 879 }, level = 11, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(33-60) to Accuracy Rating" }, } }, + ["IncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 879 }, level = 18, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(61-84) to Accuracy Rating" }, } }, + ["IncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 879 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(85-123) to Accuracy Rating" }, } }, + ["IncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 879 }, level = 36, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(124-167) to Accuracy Rating" }, } }, + ["IncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 879 }, level = 48, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(168-236) to Accuracy Rating" }, } }, + ["IncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 879 }, level = 58, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(237-346) to Accuracy Rating" }, } }, + ["IncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 879 }, level = 67, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(347-450) to Accuracy Rating" }, } }, + ["IncreasedAccuracy9"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 879 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "attack" }, tradeHashes = { [803737631] = { "+(451-550) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "+(11-32) to Accuracy Rating", statOrder = { 834 }, level = 8, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(11-32) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "+(33-60) to Accuracy Rating", statOrder = { 834 }, level = 13, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(33-60) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "+(61-84) to Accuracy Rating", statOrder = { 834 }, level = 18, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(61-84) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "+(85-123) to Accuracy Rating", statOrder = { 834 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(85-123) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "+(124-167) to Accuracy Rating", statOrder = { 834 }, level = 36, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(124-167) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "+(168-236) to Accuracy Rating", statOrder = { 834 }, level = 48, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(168-236) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "+(237-346) to Accuracy Rating", statOrder = { 834 }, level = 58, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(237-346) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "+(347-450) to Accuracy Rating", statOrder = { 834 }, level = 67, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(347-450) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy9_"] = { type = "Prefix", affix = "Amazon's", "+(451-550) to Accuracy Rating", statOrder = { 834 }, level = 76, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(451-550) to Accuracy Rating" }, } }, + ["LocalIncreasedAccuracy10"] = { type = "Prefix", affix = "Valkyrie's", "+(551-650) to Accuracy Rating", statOrder = { 834 }, level = 82, group = "LocalAccuracyRating", weightKey = { "ranged", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [691932474] = { "+(551-650) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "Allies in your Presence have +(11-32) to Accuracy Rating", statOrder = { 914 }, level = 1, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(11-32) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "Allies in your Presence have +(33-60) to Accuracy Rating", statOrder = { 914 }, level = 11, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(33-60) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "Allies in your Presence have +(61-84) to Accuracy Rating", statOrder = { 914 }, level = 18, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(61-84) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "Allies in your Presence have +(85-123) to Accuracy Rating", statOrder = { 914 }, level = 26, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(85-123) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "Allies in your Presence have +(124-167) to Accuracy Rating", statOrder = { 914 }, level = 36, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(124-167) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "Allies in your Presence have +(168-236) to Accuracy Rating", statOrder = { 914 }, level = 48, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(168-236) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "Allies in your Presence have +(237-346) to Accuracy Rating", statOrder = { 914 }, level = 58, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(237-346) to Accuracy Rating" }, } }, + ["NearbyAlliesIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "Allies in your Presence have +(347-450) to Accuracy Rating", statOrder = { 914 }, level = 67, group = "AlliesInPresenceIncreasedAccuracy", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3169585282] = { "Allies in your Presence have +(347-450) to Accuracy Rating" }, } }, + ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance", statOrder = { 975 }, level = 5, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(10-14)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance", statOrder = { 975 }, level = 20, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(15-19)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance", statOrder = { 975 }, level = 30, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(20-24)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance", statOrder = { 975 }, level = 44, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(25-29)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance", statOrder = { 975 }, level = 58, group = "CriticalStrikeChance", weightKey = { "helmet", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(30-34)% increased Critical Hit Chance" }, } }, + ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance", statOrder = { 975 }, level = 72, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(35-38)% increased Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "+(1.01-1.5)% to Critical Hit Chance", statOrder = { 943 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(1.01-1.5)% to Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "+(1.51-2.1)% to Critical Hit Chance", statOrder = { 943 }, level = 20, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(1.51-2.1)% to Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "+(2.11-2.7)% to Critical Hit Chance", statOrder = { 943 }, level = 30, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(2.11-2.7)% to Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "+(3.11-3.8)% to Critical Hit Chance", statOrder = { 943 }, level = 44, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3.11-3.8)% to Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "+(3.81-4.4)% to Critical Hit Chance", statOrder = { 943 }, level = 59, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(3.81-4.4)% to Critical Hit Chance" }, } }, + ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "+(4.41-5)% to Critical Hit Chance", statOrder = { 943 }, level = 73, group = "LocalBaseCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [518292764] = { "+(4.41-5)% to Critical Hit Chance" }, } }, + ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(27-33)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(27-33)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(34-39)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(34-39)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-46)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(40-46)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(47-53)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(47-53)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(54-59)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(54-59)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(60-73)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(60-73)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand1"] = { type = "Suffix", affix = "of Menace", "(40-49)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(40-49)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand2"] = { type = "Suffix", affix = "of Havoc", "(50-59)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(50-59)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand3"] = { type = "Suffix", affix = "of Disaster", "(60-69)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(60-69)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand4"] = { type = "Suffix", affix = "of Calamity", "(70-79)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(70-79)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand5"] = { type = "Suffix", affix = "of Ruin", "(80-89)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(80-89)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceTwoHand6"] = { type = "Suffix", affix = "of Unmaking", "(90-109)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(90-109)% increased Critical Hit Chance for Spells" }, } }, + ["AttackCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-14)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 5, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(10-14)% increased Critical Hit Chance for Attacks" }, } }, + ["AttackCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(15-19)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 20, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(15-19)% increased Critical Hit Chance for Attacks" }, } }, + ["AttackCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(20-24)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 30, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(20-24)% increased Critical Hit Chance for Attacks" }, } }, + ["AttackCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(25-29)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 44, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(25-29)% increased Critical Hit Chance for Attacks" }, } }, + ["AttackCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(30-34)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 58, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(30-34)% increased Critical Hit Chance for Attacks" }, } }, + ["AttackCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(35-38)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 72, group = "AttackCriticalStrikeChance", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(35-38)% increased Critical Hit Chance for Attacks" }, } }, + ["TrapCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 11, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(10-19)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 21, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(20-39)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 28, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(40-59)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 41, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(60-79)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 59, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(80-99)% increased Critical Hit Chance with Traps" }, } }, + ["TrapCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Critical Hit Chance with Traps", statOrder = { 978 }, level = 76, group = "TrapCriticalStrikeChance", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1192661666] = { "(100-109)% increased Critical Hit Chance with Traps" }, } }, + ["NearbyAlliesCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "Allies in your Presence have (10-14)% increased Critical Hit Chance", statOrder = { 915 }, level = 11, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (10-14)% increased Critical Hit Chance" }, } }, + ["NearbyAlliesCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "Allies in your Presence have (15-19)% increased Critical Hit Chance", statOrder = { 915 }, level = 21, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (15-19)% increased Critical Hit Chance" }, } }, + ["NearbyAlliesCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "Allies in your Presence have (20-24)% increased Critical Hit Chance", statOrder = { 915 }, level = 28, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (20-24)% increased Critical Hit Chance" }, } }, + ["NearbyAlliesCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "Allies in your Presence have (25-29)% increased Critical Hit Chance", statOrder = { 915 }, level = 41, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (25-29)% increased Critical Hit Chance" }, } }, + ["NearbyAlliesCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "Allies in your Presence have (30-34)% increased Critical Hit Chance", statOrder = { 915 }, level = 59, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (30-34)% increased Critical Hit Chance" }, } }, + ["NearbyAlliesCriticalStrikeChance6"] = { type = "Suffix", affix = "of Unmaking", "Allies in your Presence have (35-38)% increased Critical Hit Chance", statOrder = { 915 }, level = 76, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (35-38)% increased Critical Hit Chance" }, } }, + ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus", statOrder = { 979 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-14)% increased Critical Damage Bonus" }, } }, + ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus", statOrder = { 979 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(15-19)% increased Critical Damage Bonus" }, } }, + ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus", statOrder = { 979 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(20-24)% increased Critical Damage Bonus" }, } }, + ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus", statOrder = { 979 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(25-29)% increased Critical Damage Bonus" }, } }, + ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus", statOrder = { 979 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "gloves", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(30-34)% increased Critical Damage Bonus" }, } }, + ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus", statOrder = { 979 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(35-39)% increased Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-11)% to Critical Damage Bonus", statOrder = { 944 }, level = 8, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(10-11)% to Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(12-13)% to Critical Damage Bonus", statOrder = { 944 }, level = 21, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(12-13)% to Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(14-16)% to Critical Damage Bonus", statOrder = { 944 }, level = 30, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(14-16)% to Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(17-19)% to Critical Damage Bonus", statOrder = { 944 }, level = 44, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(17-19)% to Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(20-22)% to Critical Damage Bonus", statOrder = { 944 }, level = 59, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(20-22)% to Critical Damage Bonus" }, } }, + ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(23-25)% to Critical Damage Bonus", statOrder = { 944 }, level = 73, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [2694482655] = { "+(23-25)% to Critical Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(10-14)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(15-19)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(20-24)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(25-29)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "focus", "wand", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(30-34)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(35-39)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Ire", "(15-21)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 8, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(15-21)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Anger", "(23-29)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 21, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(23-29)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Rage", "(30-36)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(30-36)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Fury", "(38-44)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(38-44)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Ferocity", "(45-51)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 59, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(45-51)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierTwoHand6"] = { type = "Suffix", affix = "of Destruction", "(53-59)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 73, group = "SpellCriticalStrikeMultiplier", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(53-59)% increased Critical Spell Damage Bonus" }, } }, + ["AttackCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "(10-14)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 8, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(10-14)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "(15-19)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 21, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(15-19)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "(20-24)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 31, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(20-24)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "(25-29)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 45, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(25-29)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "(30-34)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 59, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(30-34)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["AttackCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "(35-39)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 74, group = "AttackCriticalStrikeMultiplier", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(35-39)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["TrapCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 8, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(10-14)% to Critical Damage Bonus with Traps" }, } }, + ["TrapCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 21, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(15-19)% to Critical Damage Bonus with Traps" }, } }, + ["TrapCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 30, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(20-24)% to Critical Damage Bonus with Traps" }, } }, + ["TrapCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 44, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(25-29)% to Critical Damage Bonus with Traps" }, } }, + ["TrapCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 59, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(30-34)% to Critical Damage Bonus with Traps" }, } }, + ["TrapCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-39)% to Critical Damage Bonus with Traps", statOrder = { 983 }, level = 73, group = "TrapCriticalStrikeMultiplier", weightKey = { "trap", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1780168381] = { "+(35-39)% to Critical Damage Bonus with Traps" }, } }, + ["NearbyAlliesCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "Allies in your Presence have (10-14)% increased Critical Damage Bonus", statOrder = { 916 }, level = 8, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (10-14)% increased Critical Damage Bonus" }, } }, + ["NearbyAlliesCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "Allies in your Presence have (15-19)% increased Critical Damage Bonus", statOrder = { 916 }, level = 21, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (15-19)% increased Critical Damage Bonus" }, } }, + ["NearbyAlliesCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "Allies in your Presence have (20-24)% increased Critical Damage Bonus", statOrder = { 916 }, level = 30, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (20-24)% increased Critical Damage Bonus" }, } }, + ["NearbyAlliesCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "Allies in your Presence have (25-29)% increased Critical Damage Bonus", statOrder = { 916 }, level = 44, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (25-29)% increased Critical Damage Bonus" }, } }, + ["NearbyAlliesCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "Allies in your Presence have (30-34)% increased Critical Damage Bonus", statOrder = { 916 }, level = 59, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (30-34)% increased Critical Damage Bonus" }, } }, + ["NearbyAlliesCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "Allies in your Presence have (35-39)% increased Critical Damage Bonus", statOrder = { 916 }, level = 73, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3057012405] = { "Allies in your Presence have (35-39)% increased Critical Damage Bonus" }, } }, + ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 940 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(6-10)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 940 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(11-14)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-18)% increased Rarity of Items found", statOrder = { 940 }, level = 40, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(15-18)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(19-21)% increased Rarity of Items found", statOrder = { 940 }, level = 63, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(19-21)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncrease5"] = { type = "Suffix", affix = "of Windfall", "(22-25)% increased Rarity of Items found", statOrder = { 940 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(22-25)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-11)% increased Rarity of Items found", statOrder = { 940 }, level = 10, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(8-11)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Collector's", "(12-15)% increased Rarity of Items found", statOrder = { 940 }, level = 29, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(12-15)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Hoarder's", "(16-19)% increased Rarity of Items found", statOrder = { 940 }, level = 47, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(16-19)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Pirate's", "(20-22)% increased Rarity of Items found", statOrder = { 940 }, level = 65, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(20-22)% increased Rarity of Items found" }, } }, + ["ItemFoundRarityIncreasePrefix5"] = { type = "Prefix", affix = "Dragon's", "(23-25)% increased Rarity of Items found", statOrder = { 940 }, level = 81, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, tradeHashes = { [3917489142] = { "(23-25)% increased Rarity of Items found" }, } }, + ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 879, 1069 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [803737631] = { "+(10-20) to Accuracy Rating" }, } }, + ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 879, 1069 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [803737631] = { "+(21-40) to Accuracy Rating" }, } }, + ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 879, 1069 }, level = 30, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [803737631] = { "+(41-60) to Accuracy Rating" }, } }, + ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 834, 1069 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [691932474] = { "+(10-20) to Accuracy Rating" }, } }, + ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 834, 1069 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [691932474] = { "+(21-40) to Accuracy Rating" }, } }, + ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "+(41-60) to Accuracy Rating", "15% increased Light Radius", statOrder = { 834, 1069 }, level = 30, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [691932474] = { "+(41-60) to Accuracy Rating" }, } }, + ["LightRadiusAndManaRegeneration1"] = { type = "Suffix", affix = "of Warmth", "(8-12)% increased Mana Regeneration Rate", "5% increased Light Radius", statOrder = { 1042, 1069 }, level = 8, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "5% increased Light Radius" }, [789117908] = { "(8-12)% increased Mana Regeneration Rate" }, } }, + ["LightRadiusAndManaRegeneration2"] = { type = "Suffix", affix = "of Kindling", "(13-17)% increased Mana Regeneration Rate", "10% increased Light Radius", statOrder = { 1042, 1069 }, level = 15, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "10% increased Light Radius" }, [789117908] = { "(13-17)% increased Mana Regeneration Rate" }, } }, + ["LightRadiusAndManaRegeneration3"] = { type = "Suffix", affix = "of the Hearth", "(18-22)% increased Mana Regeneration Rate", "15% increased Light Radius", statOrder = { 1042, 1069 }, level = 30, group = "LightRadiusAndManaRegeneration", weightKey = { "wand", "staff", "sceptre", "ring", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1263695895] = { "15% increased Light Radius" }, [789117908] = { "(18-22)% increased Mana Regeneration Rate" }, } }, + ["LocalBlockChance1"] = { type = "Prefix", affix = "Steadfast", "(15-19)% increased Block chance", statOrder = { 838 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(15-19)% increased Block chance" }, } }, + ["LocalBlockChance2"] = { type = "Prefix", affix = "Unrelenting", "(20-24)% increased Block chance", statOrder = { 838 }, level = 33, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(20-24)% increased Block chance" }, } }, + ["LocalBlockChance3"] = { type = "Prefix", affix = "Adamant", "(25-30)% increased Block chance", statOrder = { 838 }, level = 65, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(25-30)% increased Block chance" }, } }, + ["LocalBlockChance4_"] = { type = "Prefix", affix = "Warded", "(58-63)% increased Block chance", statOrder = { 838 }, level = 46, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(58-63)% increased Block chance" }, } }, + ["LocalBlockChance5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Block chance", statOrder = { 838 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(64-69)% increased Block chance" }, } }, + ["LocalBlockChance6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Block chance", statOrder = { 838 }, level = 74, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(70-75)% increased Block chance" }, } }, + ["LocalBlockChance7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Block chance", statOrder = { 838 }, level = 82, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "block" }, tradeHashes = { [2481353198] = { "(76-81)% increased Block chance" }, } }, + ["IncreasedSpirit1"] = { type = "Prefix", affix = "Lady's", "+(30-33) to Spirit", statOrder = { 895 }, level = 16, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(30-33) to Spirit" }, } }, + ["IncreasedSpirit2"] = { type = "Prefix", affix = "Baronness'", "+(34-37) to Spirit", statOrder = { 895 }, level = 25, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(34-37) to Spirit" }, } }, + ["IncreasedSpirit3"] = { type = "Prefix", affix = "Viscountess'", "+(38-42) to Spirit", statOrder = { 895 }, level = 33, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(38-42) to Spirit" }, } }, + ["IncreasedSpirit4"] = { type = "Prefix", affix = "Marchioness'", "+(43-46) to Spirit", statOrder = { 895 }, level = 46, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(43-46) to Spirit" }, } }, + ["IncreasedSpirit5"] = { type = "Prefix", affix = "Countess'", "+(47-50) to Spirit", statOrder = { 895 }, level = 54, group = "BaseSpirit", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(47-50) to Spirit" }, } }, + ["IncreasedSpirit6"] = { type = "Prefix", affix = "Duchess'", "+(51-53) to Spirit", statOrder = { 895 }, level = 60, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(51-53) to Spirit" }, } }, + ["IncreasedSpirit7"] = { type = "Prefix", affix = "Princess'", "+(54-56) to Spirit", statOrder = { 895 }, level = 65, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(54-56) to Spirit" }, } }, + ["IncreasedSpirit8"] = { type = "Prefix", affix = "Queen's", "+(57-61) to Spirit", statOrder = { 895 }, level = 78, group = "BaseSpirit", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(57-61) to Spirit" }, } }, + ["LocalIncreasedSpiritPercent1"] = { type = "Prefix", affix = "Lord's", "(20-26)% increased Spirit", statOrder = { 856 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(20-26)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent2"] = { type = "Prefix", affix = "Baron's", "(27-32)% increased Spirit", statOrder = { 856 }, level = 8, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(27-32)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent3"] = { type = "Prefix", affix = "Viscount's", "(33-38)% increased Spirit", statOrder = { 856 }, level = 16, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(33-38)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent4"] = { type = "Prefix", affix = "Marquess'", "(39-44)% increased Spirit", statOrder = { 856 }, level = 33, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(39-44)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent5"] = { type = "Prefix", affix = "Count's", "(45-50)% increased Spirit", statOrder = { 856 }, level = 46, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(45-50)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent6"] = { type = "Prefix", affix = "Duke's", "(51-55)% increased Spirit", statOrder = { 856 }, level = 60, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(51-55)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent7"] = { type = "Prefix", affix = "Prince's", "(56-60)% increased Spirit", statOrder = { 856 }, level = 75, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(56-60)% increased Spirit" }, } }, + ["LocalIncreasedSpiritPercent8"] = { type = "Prefix", affix = "King's", "(61-65)% increased Spirit", statOrder = { 856 }, level = 82, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(61-65)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana1"] = { type = "Prefix", affix = "Advisor's", "(10-14)% increased Spirit", "+(17-20) to maximum Mana", statOrder = { 856, 891 }, level = 2, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(17-20) to maximum Mana" }, [3984865854] = { "(10-14)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana2"] = { type = "Prefix", affix = "Counselor's", "(15-18)% increased Spirit", "+(21-24) to maximum Mana", statOrder = { 856, 891 }, level = 11, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(21-24) to maximum Mana" }, [3984865854] = { "(15-18)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana3"] = { type = "Prefix", affix = "Emissary's", "(19-22)% increased Spirit", "+(25-28) to maximum Mana", statOrder = { 856, 891 }, level = 26, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(25-28) to maximum Mana" }, [3984865854] = { "(19-22)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana4"] = { type = "Prefix", affix = "Minister's", "(23-26)% increased Spirit", "+(29-33) to maximum Mana", statOrder = { 856, 891 }, level = 36, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(29-33) to maximum Mana" }, [3984865854] = { "(23-26)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana5"] = { type = "Prefix", affix = "Envoy's", "(27-30)% increased Spirit", "+(34-37) to maximum Mana", statOrder = { 856, 891 }, level = 48, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(34-37) to maximum Mana" }, [3984865854] = { "(27-30)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana6"] = { type = "Prefix", affix = "Diplomat's", "(31-34)% increased Spirit", "+(38-41) to maximum Mana", statOrder = { 856, 891 }, level = 58, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(38-41) to maximum Mana" }, [3984865854] = { "(31-34)% increased Spirit" }, } }, + ["LocalIncreasedSpiritAndMana7"] = { type = "Prefix", affix = "Chancellor's", "(35-38)% increased Spirit", "+(42-45) to maximum Mana", statOrder = { 856, 891 }, level = 70, group = "LocalIncreasedSpiritAndMana", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(42-45) to maximum Mana" }, [3984865854] = { "(35-38)% increased Spirit" }, } }, + ["ReducedBleedDuration1"] = { type = "Suffix", affix = "of Sealing", "(36-40)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 21, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(36-40)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration2"] = { type = "Suffix", affix = "of Alleviation", "(41-45)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 37, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(41-45)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration3"] = { type = "Suffix", affix = "of Allaying", "(46-50)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 50, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(46-50)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration4"] = { type = "Suffix", affix = "of Assuaging", "(51-55)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 64, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(51-55)% reduced Duration of Bleeding on You" }, } }, + ["ReducedBleedDuration5"] = { type = "Suffix", affix = "of Staunching", "(56-60)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 76, group = "ReducedBleedDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(56-60)% reduced Duration of Bleeding on You" }, } }, + ["ReducedPoisonDuration1"] = { type = "Suffix", affix = "of the Antitoxin", "(36-40)% reduced Poison Duration on you", statOrder = { 1066 }, level = 21, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(36-40)% reduced Poison Duration on you" }, } }, + ["ReducedPoisonDuration2"] = { type = "Suffix", affix = "of the Remedy", "(41-45)% reduced Poison Duration on you", statOrder = { 1066 }, level = 37, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(41-45)% reduced Poison Duration on you" }, } }, + ["ReducedPoisonDuration3"] = { type = "Suffix", affix = "of the Cure", "(46-50)% reduced Poison Duration on you", statOrder = { 1066 }, level = 50, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(46-50)% reduced Poison Duration on you" }, } }, + ["ReducedPoisonDuration4"] = { type = "Suffix", affix = "of the Panacea", "(51-55)% reduced Poison Duration on you", statOrder = { 1066 }, level = 64, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(51-55)% reduced Poison Duration on you" }, } }, + ["ReducedPoisonDuration5"] = { type = "Suffix", affix = "of the Antidote", "(56-60)% reduced Poison Duration on you", statOrder = { 1066 }, level = 76, group = "ReducedPoisonDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(56-60)% reduced Poison Duration on you" }, } }, + ["ReducedBurnDuration1"] = { type = "Suffix", affix = "of Damping", "(36-40)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 21, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(36-40)% reduced Ignite Duration on you" }, } }, + ["ReducedBurnDuration2"] = { type = "Suffix", affix = "of Quashing", "(41-45)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 37, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(41-45)% reduced Ignite Duration on you" }, } }, + ["ReducedBurnDuration3"] = { type = "Suffix", affix = "of Quelling", "(46-50)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 50, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(46-50)% reduced Ignite Duration on you" }, } }, + ["ReducedBurnDuration4"] = { type = "Suffix", affix = "of Quenching", "(51-55)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 64, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(51-55)% reduced Ignite Duration on you" }, } }, + ["ReducedBurnDuration5"] = { type = "Suffix", affix = "of Dousing", "(56-60)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 76, group = "ReducedBurnDuration", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(56-60)% reduced Ignite Duration on you" }, } }, + ["ReducedShockDuration1"] = { type = "Suffix", affix = "of Earthing", "(36-40)% reduced Shock duration on you", statOrder = { 1065 }, level = 20, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(36-40)% reduced Shock duration on you" }, } }, + ["ReducedShockDuration2"] = { type = "Suffix", affix = "of Insulation", "(41-45)% reduced Shock duration on you", statOrder = { 1065 }, level = 36, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(41-45)% reduced Shock duration on you" }, } }, + ["ReducedShockDuration3"] = { type = "Suffix", affix = "of the Impedance", "(46-50)% reduced Shock duration on you", statOrder = { 1065 }, level = 49, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(46-50)% reduced Shock duration on you" }, } }, + ["ReducedShockDuration4"] = { type = "Suffix", affix = "of the Dielectric", "(51-55)% reduced Shock duration on you", statOrder = { 1065 }, level = 63, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(51-55)% reduced Shock duration on you" }, } }, + ["ReducedShockDuration5"] = { type = "Suffix", affix = "of Grounding", "(56-60)% reduced Shock duration on you", statOrder = { 1065 }, level = 75, group = "ReducedShockDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [99927264] = { "(56-60)% reduced Shock duration on you" }, } }, + ["ReducedChillDuration1"] = { type = "Suffix", affix = "of Convection", "(36-40)% reduced Chill Duration on you", statOrder = { 1063 }, level = 20, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(36-40)% reduced Chill Duration on you" }, } }, + ["ReducedChillDuration2"] = { type = "Suffix", affix = "of Fluidity", "(41-45)% reduced Chill Duration on you", statOrder = { 1063 }, level = 36, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(41-45)% reduced Chill Duration on you" }, } }, + ["ReducedChillDuration3"] = { type = "Suffix", affix = "of Entropy", "(46-50)% reduced Chill Duration on you", statOrder = { 1063 }, level = 49, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(46-50)% reduced Chill Duration on you" }, } }, + ["ReducedChillDuration4"] = { type = "Suffix", affix = "of Dissipation", "(51-55)% reduced Chill Duration on you", statOrder = { 1063 }, level = 63, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(51-55)% reduced Chill Duration on you" }, } }, + ["ReducedChillDuration5"] = { type = "Suffix", affix = "of the Reversal", "(56-60)% reduced Chill Duration on you", statOrder = { 1063 }, level = 75, group = "ReducedChillDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1874553720] = { "(56-60)% reduced Chill Duration on you" }, } }, + ["ReducedFreezeDuration1"] = { type = "Suffix", affix = "of Heating", "(36-40)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 20, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(36-40)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDuration2"] = { type = "Suffix", affix = "of Unfreezing", "(41-45)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 36, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(41-45)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDuration3"] = { type = "Suffix", affix = "of Defrosting", "(46-50)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 49, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(46-50)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDuration4"] = { type = "Suffix", affix = "of the Temperate", "(51-55)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 63, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(51-55)% reduced Freeze Duration on you" }, } }, + ["ReducedFreezeDuration5"] = { type = "Suffix", affix = "of Thawing", "(56-60)% reduced Freeze Duration on you", statOrder = { 1064 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2160282525] = { "(56-60)% reduced Freeze Duration on you" }, } }, + ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "Hits against you have (21-27)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (21-27)% reduced Critical Damage Bonus" }, } }, + ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "Hits against you have (28-34)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (28-34)% reduced Critical Damage Bonus" }, } }, + ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "Hits against you have (35-41)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 58, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (35-41)% reduced Critical Damage Bonus" }, } }, + ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "Hits against you have (42-47)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 69, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (42-47)% reduced Critical Damage Bonus" }, } }, + ["ReducedExtraDamageFromCrits5"] = { type = "Suffix", affix = "of the Bastion", "Hits against you have (48-54)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 81, group = "ReducedExtraDamageFromCrits", weightKey = { "str_dex_shield", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (48-54)% reduced Critical Damage Bonus" }, } }, + ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 1005 }, level = 32, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "4% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Custodian", "5% additional Physical Damage Reduction", statOrder = { 1005 }, level = 41, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "5% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Sentry", "6% additional Physical Damage Reduction", statOrder = { 1005 }, level = 53, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "6% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 1005 }, level = 66, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "7% additional Physical Damage Reduction" }, } }, + ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 1005 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "str_shield", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [3771516363] = { "8% additional Physical Damage Reduction" }, } }, + ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to Maximum Fire Resistance", statOrder = { 1008 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, + ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to Maximum Fire Resistance", statOrder = { 1008 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, } }, + ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to Maximum Fire Resistance", statOrder = { 1008 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to Maximum Fire Resistance" }, } }, + ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to Maximum Cold Resistance", statOrder = { 1009 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to Maximum Cold Resistance", statOrder = { 1009 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to Maximum Cold Resistance", statOrder = { 1009 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, + ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, + ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, } }, + ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, } }, + ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to Maximum Chaos Resistance", statOrder = { 1011 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, } }, + ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to Maximum Chaos Resistance", statOrder = { 1011 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, } }, + ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to Maximum Chaos Resistance", statOrder = { 1011 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+3% to Maximum Chaos Resistance" }, } }, + ["MaximumElementalResistance1"] = { type = "Suffix", affix = "of the Deathless", "+1% to all Maximum Elemental Resistances", statOrder = { 1006 }, level = 75, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, + ["MaximumElementalResistance2"] = { type = "Suffix", affix = "of the Everlasting", "+2% to all Maximum Elemental Resistances", statOrder = { 1006 }, level = 81, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+2% to all Maximum Elemental Resistances" }, } }, + ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Enlivening", "(5-8)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(5-8)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(9-11)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 16, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(9-11)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(12-15)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 36, group = "EnergyShieldRegeneration", weightKey = { "body_armour", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(12-15)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(16-19)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 48, group = "EnergyShieldRegeneration", weightKey = { "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(16-19)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(20-23)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 66, group = "EnergyShieldRegeneration", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(20-23)% increased Energy Shield Recharge Rate" }, } }, + ["EnergyShieldRechargeRate6"] = { type = "Suffix", affix = "of Suffusion", "(24-27)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "focus", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(24-27)% increased Energy Shield Recharge Rate" }, } }, + ["FasterStartOfEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Impatience", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartOfEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Restlessness", "(31-35)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 16, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(31-35)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartOfEnergyShieldRecharge3"] = { type = "Suffix", affix = "of Fretfulness", "(36-40)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 36, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(36-40)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartOfEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Motivation", "(41-45)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 48, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(41-45)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartOfEnergyShieldRecharge5"] = { type = "Suffix", affix = "of Excitement", "(46-50)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 66, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(46-50)% faster start of Energy Shield Recharge" }, } }, + ["FasterStartOfEnergyShieldRecharge6"] = { type = "Suffix", affix = "of Anticipation", "(51-55)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 81, group = "EnergyShieldDelay", weightKey = { "helmet", "gloves", "boots", "shield", "str_dex_int_armour", "str_int_armour", "dex_int_armour", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(51-55)% faster start of Energy Shield Recharge" }, } }, + ["ArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of Covering", "+(14-19)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(14-19)% of Armour also applies to Elemental Damage" }, } }, + ["ArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of Sheathing", "+(20-25)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 16, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(20-25)% of Armour also applies to Elemental Damage" }, } }, + ["ArmourAppliesToElementalDamage3"] = { type = "Suffix", affix = "of Lining", "+(26-31)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 36, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(26-31)% of Armour also applies to Elemental Damage" }, } }, + ["ArmourAppliesToElementalDamage4"] = { type = "Suffix", affix = "of Padding", "+(32-37)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 48, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(32-37)% of Armour also applies to Elemental Damage" }, } }, + ["ArmourAppliesToElementalDamage5"] = { type = "Suffix", affix = "of Furring", "+(38-43)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 66, group = "ArmourAppliesToElementalDamage", weightKey = { "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(38-43)% of Armour also applies to Elemental Damage" }, } }, + ["ArmourAppliesToElementalDamage6"] = { type = "Suffix", affix = "of Thermokryptance", "+(44-50)% of Armour also applies to Elemental Damage", statOrder = { 1026 }, level = 81, group = "ArmourAppliesToElementalDamage", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "str_int_armour", "str_dex_armour", "str_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "defences", "armour", "elemental" }, tradeHashes = { [3362812763] = { "+(44-50)% of Armour also applies to Elemental Damage" }, } }, + ["EvasionGrantsDeflection1"] = { type = "Suffix", affix = "of Deflecting", "Gain Deflection Rating equal to (8-11)% of Evasion Rating", statOrder = { 1027 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (8-11)% of Evasion Rating" }, } }, + ["EvasionGrantsDeflection2"] = { type = "Suffix", affix = "of Bending", "Gain Deflection Rating equal to (12-14)% of Evasion Rating", statOrder = { 1027 }, level = 16, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (12-14)% of Evasion Rating" }, } }, + ["EvasionGrantsDeflection3"] = { type = "Suffix", affix = "of Curvation", "Gain Deflection Rating equal to (15-17)% of Evasion Rating", statOrder = { 1027 }, level = 36, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (15-17)% of Evasion Rating" }, } }, + ["EvasionGrantsDeflection4"] = { type = "Suffix", affix = "of Diversion", "Gain Deflection Rating equal to (18-20)% of Evasion Rating", statOrder = { 1027 }, level = 48, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (18-20)% of Evasion Rating" }, } }, + ["EvasionGrantsDeflection5"] = { type = "Suffix", affix = "of Flexure", "Gain Deflection Rating equal to (21-23)% of Evasion Rating", statOrder = { 1027 }, level = 66, group = "EvasionAppliesToDeflection", weightKey = { "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (21-23)% of Evasion Rating" }, } }, + ["EvasionGrantsDeflection6"] = { type = "Suffix", affix = "of Warping", "Gain Deflection Rating equal to (24-26)% of Evasion Rating", statOrder = { 1027 }, level = 81, group = "EvasionAppliesToDeflection", weightKey = { "helmet", "gloves", "boots", "str_dex_int_armour", "dex_int_armour", "str_dex_armour", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1, 1, 1, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (24-26)% of Evasion Rating" }, } }, + ["ArrowPierceChance1"] = { type = "Suffix", affix = "of Piercing", "(12-14)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 11, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(12-14)% chance to Pierce an Enemy" }, } }, + ["ArrowPierceChance2"] = { type = "Suffix", affix = "of Drilling", "(15-17)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 26, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(15-17)% chance to Pierce an Enemy" }, } }, + ["ArrowPierceChance3"] = { type = "Suffix", affix = "of Puncturing", "(18-20)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 44, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(18-20)% chance to Pierce an Enemy" }, } }, + ["ArrowPierceChance4"] = { type = "Suffix", affix = "of Skewering", "(21-23)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 61, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(21-23)% chance to Pierce an Enemy" }, } }, + ["ArrowPierceChance5"] = { type = "Suffix", affix = "of Penetrating", "(24-26)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 77, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(24-26)% chance to Pierce an Enemy" }, } }, + ["AdditionalArrow1"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 989 }, level = 55, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, + ["AdditionalArrow2"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 989 }, level = 82, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, + ["AdditionalArrowChance1"] = { type = "Suffix", affix = "of Surplus", "+(25-50)% Surpassing chance to fire an additional Arrow", statOrder = { 5500 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-50)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChance2"] = { type = "Suffix", affix = "of Splintering", "+(75-100)% Surpassing chance to fire an additional Arrow", statOrder = { 5500 }, level = 55, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(75-100)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChance3"] = { type = "Suffix", affix = "of Shards", "+(125-150)% Surpassing chance to fire an additional Arrow", statOrder = { 5500 }, level = 66, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(125-150)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChance4"] = { type = "Suffix", affix = "of Many", "+(175-200)% Surpassing chance to fire an additional Arrow", statOrder = { 5500 }, level = 82, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(175-200)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChanceQuiver1"] = { type = "Suffix", affix = "of Surplus", "+(25-40)% Surpassing chance to fire an additional Arrow", statOrder = { 5500 }, level = 46, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(25-40)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalArrowChanceQuiver2"] = { type = "Suffix", affix = "of Splintering", "+(41-60)% Surpassing chance to fire an additional Arrow", statOrder = { 5500 }, level = 80, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(41-60)% Surpassing chance to fire an additional Arrow" }, } }, + ["AdditionalAmmo1"] = { type = "Suffix", affix = "of Shelling", "Loads an additional bolt", statOrder = { 987 }, level = 55, group = "AdditionalAmmo", weightKey = { "cannon", "crossbow", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, + ["AdditionalAmmo2"] = { type = "Suffix", affix = "of Bursting", "Loads 2 additional bolts", statOrder = { 987 }, level = 82, group = "AdditionalAmmo", weightKey = { "cannon", "crossbow", "default", }, weightVal = { 0, 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads 2 additional bolts" }, } }, + ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(5-10)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 16, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(11-16)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 33, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(17-22)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 46, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(23-28)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 60, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(29-34)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 75, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(35-40)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(5-10)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 11, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-16)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 26, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(17-22)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 36, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(23-28)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 54, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(29-34)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(35-40)% increased Flask Mana Recovery rate" }, } }, + ["BeltIncreasedCharmDuration1"] = { type = "Prefix", affix = "Conservative", "(4-9)% increased Charm Effect Duration", statOrder = { 899 }, level = 8, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(4-9)% increased Charm Effect Duration" }, } }, + ["BeltIncreasedCharmDuration2"] = { type = "Prefix", affix = "Transformative", "(10-15)% increased Charm Effect Duration", statOrder = { 899 }, level = 33, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(10-15)% increased Charm Effect Duration" }, } }, + ["BeltIncreasedCharmDuration3"] = { type = "Prefix", affix = "Progressive", "(16-21)% increased Charm Effect Duration", statOrder = { 899 }, level = 46, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(16-21)% increased Charm Effect Duration" }, } }, + ["BeltIncreasedCharmDuration4"] = { type = "Prefix", affix = "Innovative", "(22-27)% increased Charm Effect Duration", statOrder = { 899 }, level = 60, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(22-27)% increased Charm Effect Duration" }, } }, + ["BeltIncreasedCharmDuration5"] = { type = "Prefix", affix = "Revolutionary", "(28-33)% increased Charm Effect Duration", statOrder = { 899 }, level = 75, group = "BeltIncreasedCharmDuration", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(28-33)% increased Charm Effect Duration" }, } }, + ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 6617 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 6617 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(11-16)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 6617 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(17-22)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 6617 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(23-28)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 6617 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(29-34)% increased Flask Charges gained" }, } }, + ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 6617 }, level = 81, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(35-40)% increased Flask Charges gained" }, } }, + ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(8-10)% reduced Flask Charges used", statOrder = { 1048 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(8-10)% reduced Flask Charges used" }, } }, + ["BeltReducedFlaskChargesUsed2"] = { type = "Suffix", affix = "of Imbibing", "(11-13)% reduced Flask Charges used", statOrder = { 1048 }, level = 18, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(11-13)% reduced Flask Charges used" }, } }, + ["BeltReducedFlaskChargesUsed3"] = { type = "Suffix", affix = "of Relishing", "(14-16)% reduced Flask Charges used", statOrder = { 1048 }, level = 33, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(14-16)% reduced Flask Charges used" }, } }, + ["BeltReducedFlaskChargesUsed4"] = { type = "Suffix", affix = "of Savouring", "(17-19)% reduced Flask Charges used", statOrder = { 1048 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(17-19)% reduced Flask Charges used" }, } }, + ["BeltReducedFlaskChargesUsed5"] = { type = "Suffix", affix = "of Reveling", "(20-22)% reduced Flask Charges used", statOrder = { 1048 }, level = 72, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(20-22)% reduced Flask Charges used" }, } }, + ["BeltReducedFlaskChargesUsed6"] = { type = "Suffix", affix = "of Nourishing", "(23-25)% reduced Flask Charges used", statOrder = { 1048 }, level = 81, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [644456512] = { "(23-25)% reduced Flask Charges used" }, } }, + ["BeltIncreasedCharmChargesGained1"] = { type = "Suffix", affix = "of Plenty", "(5-10)% increased Charm Charges gained", statOrder = { 5591 }, level = 2, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(5-10)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained2"] = { type = "Suffix", affix = "of Surplus", "(11-16)% increased Charm Charges gained", statOrder = { 5591 }, level = 16, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(11-16)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained3"] = { type = "Suffix", affix = "of Fertility", "(17-22)% increased Charm Charges gained", statOrder = { 5591 }, level = 32, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(17-22)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained4"] = { type = "Suffix", affix = "of Bounty", "(23-28)% increased Charm Charges gained", statOrder = { 5591 }, level = 48, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(23-28)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained5"] = { type = "Suffix", affix = "of the Harvest", "(29-34)% increased Charm Charges gained", statOrder = { 5591 }, level = 70, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(29-34)% increased Charm Charges gained" }, } }, + ["BeltIncreasedCharmChargesGained6"] = { type = "Suffix", affix = "of Abundance", "(35-40)% increased Charm Charges gained", statOrder = { 5591 }, level = 81, group = "BeltIncreasedCharmChargesGained", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(35-40)% increased Charm Charges gained" }, } }, + ["BeltReducedCharmChargesUsed1"] = { type = "Suffix", affix = "of Austerity", "(8-10)% reduced Charm Charges used", statOrder = { 5592 }, level = 3, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(8-10)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed2"] = { type = "Suffix", affix = "of Frugality", "(11-13)% reduced Charm Charges used", statOrder = { 5592 }, level = 18, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(11-13)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed3"] = { type = "Suffix", affix = "of Temperance", "(14-16)% reduced Charm Charges used", statOrder = { 5592 }, level = 33, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(14-16)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed4"] = { type = "Suffix", affix = "of Restraint", "(17-19)% reduced Charm Charges used", statOrder = { 5592 }, level = 50, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(17-19)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed5"] = { type = "Suffix", affix = "of Economy", "(20-22)% reduced Charm Charges used", statOrder = { 5592 }, level = 72, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(20-22)% reduced Charm Charges used" }, } }, + ["BeltReducedCharmChargesUsed6"] = { type = "Suffix", affix = "of Scarcity", "(23-25)% reduced Charm Charges used", statOrder = { 5592 }, level = 81, group = "BeltReducedCharmChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1570770415] = { "(23-25)% reduced Charm Charges used" }, } }, + ["AdditionalCharm1"] = { type = "Suffix", affix = "of Symbolism", "+1 Charm Slot", statOrder = { 988 }, level = 23, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+1 Charm Slot" }, } }, + ["AdditionalCharm2"] = { type = "Suffix", affix = "of Inscription", "+2 Charm Slots", statOrder = { 988 }, level = 64, group = "AdditionalCharm", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "charm" }, tradeHashes = { [2582079000] = { "+2 Charm Slots" }, } }, + ["IgniteChanceIncrease1"] = { type = "Suffix", affix = "of Ignition", "(51-60)% increased Flammability Magnitude", statOrder = { 1054 }, level = 15, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(51-60)% increased Flammability Magnitude" }, } }, + ["IgniteChanceIncrease2"] = { type = "Suffix", affix = "of Scorching", "(61-70)% increased Flammability Magnitude", statOrder = { 1054 }, level = 30, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(61-70)% increased Flammability Magnitude" }, } }, + ["IgniteChanceIncrease3"] = { type = "Suffix", affix = "of Incineration", "(71-80)% increased Flammability Magnitude", statOrder = { 1054 }, level = 45, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(71-80)% increased Flammability Magnitude" }, } }, + ["IgniteChanceIncrease4"] = { type = "Suffix", affix = "of Combustion", "(81-90)% increased Flammability Magnitude", statOrder = { 1054 }, level = 60, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(81-90)% increased Flammability Magnitude" }, } }, + ["IgniteChanceIncrease5"] = { type = "Suffix", affix = "of Conflagration", "(91-100)% increased Flammability Magnitude", statOrder = { 1054 }, level = 75, group = "IgniteChanceIncrease", weightKey = { "no_fire_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(91-100)% increased Flammability Magnitude" }, } }, + ["FreezeDamageIncrease1"] = { type = "Suffix", affix = "of Freezing", "(31-40)% increased Freeze Buildup", statOrder = { 1056 }, level = 15, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(31-40)% increased Freeze Buildup" }, } }, + ["FreezeDamageIncrease2"] = { type = "Suffix", affix = "of Bleakness", "(41-50)% increased Freeze Buildup", statOrder = { 1056 }, level = 30, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(41-50)% increased Freeze Buildup" }, } }, + ["FreezeDamageIncrease3"] = { type = "Suffix", affix = "of the Glacier", "(51-60)% increased Freeze Buildup", statOrder = { 1056 }, level = 45, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(51-60)% increased Freeze Buildup" }, } }, + ["FreezeDamageIncrease4"] = { type = "Suffix", affix = "of the Hyperboreal", "(61-70)% increased Freeze Buildup", statOrder = { 1056 }, level = 60, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(61-70)% increased Freeze Buildup" }, } }, + ["FreezeDamageIncrease5"] = { type = "Suffix", affix = "of the Arctic", "(71-80)% increased Freeze Buildup", statOrder = { 1056 }, level = 75, group = "FreezeDamageIncrease", weightKey = { "no_cold_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(71-80)% increased Freeze Buildup" }, } }, + ["ShockChanceIncrease1"] = { type = "Suffix", affix = "of Shocking", "(51-60)% increased chance to Shock", statOrder = { 1058 }, level = 15, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(51-60)% increased chance to Shock" }, } }, + ["ShockChanceIncrease2"] = { type = "Suffix", affix = "of Zapping", "(61-70)% increased chance to Shock", statOrder = { 1058 }, level = 30, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(61-70)% increased chance to Shock" }, } }, + ["ShockChanceIncrease3"] = { type = "Suffix", affix = "of Electrocution", "(71-80)% increased chance to Shock", statOrder = { 1058 }, level = 45, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(71-80)% increased chance to Shock" }, } }, + ["ShockChanceIncrease4"] = { type = "Suffix", affix = "of Voltages", "(81-90)% increased chance to Shock", statOrder = { 1058 }, level = 60, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(81-90)% increased chance to Shock" }, } }, + ["ShockChanceIncrease5"] = { type = "Suffix", affix = "of the Thunderbolt", "(91-100)% increased chance to Shock", statOrder = { 1058 }, level = 75, group = "ShockChanceIncrease", weightKey = { "no_lightning_spell_mods", "wand", "staff", "trap", "default", }, weightVal = { 0, 1, 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(91-100)% increased chance to Shock" }, } }, + ["ProjectileSpeed1"] = { type = "Prefix", affix = "Darting", "(10-17)% increased Projectile Speed", statOrder = { 896 }, level = 14, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(10-17)% increased Projectile Speed" }, } }, + ["ProjectileSpeed2"] = { type = "Prefix", affix = "Brisk", "(18-25)% increased Projectile Speed", statOrder = { 896 }, level = 27, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(18-25)% increased Projectile Speed" }, } }, + ["ProjectileSpeed3"] = { type = "Prefix", affix = "Quick", "(26-33)% increased Projectile Speed", statOrder = { 896 }, level = 41, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(26-33)% increased Projectile Speed" }, } }, + ["ProjectileSpeed4"] = { type = "Prefix", affix = "Rapid", "(34-41)% increased Projectile Speed", statOrder = { 896 }, level = 55, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(34-41)% increased Projectile Speed" }, } }, + ["ProjectileSpeed5"] = { type = "Prefix", affix = "Nimble", "(42-46)% increased Projectile Speed", statOrder = { 896 }, level = 82, group = "ProjectileSpeed", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(42-46)% increased Projectile Speed" }, } }, + ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Mending", "(10-12)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 30, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(10-12)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Bandaging", "(13-15)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(13-15)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Stitching", "(16-18)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(16-18)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Suturing", "(19-21)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(19-21)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsLife5"] = { type = "Suffix", affix = "of Fleshbinding", "(22-24)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(22-24)% of Damage taken Recouped as Life" }, } }, + ["DamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of Reprieve", "(10-12)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 31, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(10-12)% of Damage taken Recouped as Mana" }, } }, + ["DamageTakenGainedAsMana2"] = { type = "Suffix", affix = "of Solace", "(13-15)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(13-15)% of Damage taken Recouped as Mana" }, } }, + ["DamageTakenGainedAsMana3"] = { type = "Suffix", affix = "of Tranquility", "(16-18)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 57, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(16-18)% of Damage taken Recouped as Mana" }, } }, + ["DamageTakenGainedAsMana4"] = { type = "Suffix", affix = "of Serenity", "(19-21)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 69, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(19-21)% of Damage taken Recouped as Mana" }, } }, + ["DamageTakenGainedAsMana5"] = { type = "Suffix", affix = "of Zen", "(22-24)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 80, group = "PercentDamageGoesToMana", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(22-24)% of Damage taken Recouped as Mana" }, } }, + ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-13)% increased Stun Duration", statOrder = { 1053 }, level = 5, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(11-13)% increased Stun Duration" }, } }, + ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(14-16)% increased Stun Duration", statOrder = { 1053 }, level = 18, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(14-16)% increased Stun Duration" }, } }, + ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(17-19)% increased Stun Duration", statOrder = { 1053 }, level = 30, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(17-19)% increased Stun Duration" }, } }, + ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(20-22)% increased Stun Duration", statOrder = { 1053 }, level = 44, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(20-22)% increased Stun Duration" }, } }, + ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(23-26)% increased Stun Duration", statOrder = { 1053 }, level = 58, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(23-26)% increased Stun Duration" }, } }, + ["StunDuration6"] = { type = "Suffix", affix = "of the Concussion", "(27-30)% increased Stun Duration", statOrder = { 1053 }, level = 71, group = "LocalStunDuration", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [748522257] = { "(27-30)% increased Stun Duration" }, } }, + ["StunDamageIncrease1"] = { type = "Suffix", affix = "of the Pugilist", "Causes (21-30)% increased Stun Buildup", statOrder = { 1051 }, level = 5, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (21-30)% increased Stun Buildup" }, } }, + ["StunDamageIncrease2"] = { type = "Suffix", affix = "of the Brawler", "Causes (31-40)% increased Stun Buildup", statOrder = { 1051 }, level = 20, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (31-40)% increased Stun Buildup" }, } }, + ["StunDamageIncrease3"] = { type = "Suffix", affix = "of the Boxer", "Causes (41-50)% increased Stun Buildup", statOrder = { 1051 }, level = 30, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (41-50)% increased Stun Buildup" }, } }, + ["StunDamageIncrease4"] = { type = "Suffix", affix = "of the Combatant", "Causes (51-60)% increased Stun Buildup", statOrder = { 1051 }, level = 44, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (51-60)% increased Stun Buildup" }, } }, + ["StunDamageIncrease5"] = { type = "Suffix", affix = "of the Gladiator", "Causes (61-70)% increased Stun Buildup", statOrder = { 1051 }, level = 58, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (61-70)% increased Stun Buildup" }, } }, + ["StunDamageIncrease6"] = { type = "Suffix", affix = "of the Champion", "Causes (71-80)% increased Stun Buildup", statOrder = { 1051 }, level = 74, group = "LocalStunDamageIncrease", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [791928121] = { "Causes (71-80)% increased Stun Buildup" }, } }, + ["SpellDamage1"] = { type = "Prefix", affix = "Apprentice's", "(3-7)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(3-7)% increased Spell Damage" }, } }, + ["SpellDamage2"] = { type = "Prefix", affix = "Adept's", "(8-12)% increased Spell Damage", statOrder = { 870 }, level = 16, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(8-12)% increased Spell Damage" }, } }, + ["SpellDamage3"] = { type = "Prefix", affix = "Scholar's", "(13-17)% increased Spell Damage", statOrder = { 870 }, level = 33, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(13-17)% increased Spell Damage" }, } }, + ["SpellDamage4"] = { type = "Prefix", affix = "Professor's", "(18-22)% increased Spell Damage", statOrder = { 870 }, level = 46, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-22)% increased Spell Damage" }, } }, + ["SpellDamage5"] = { type = "Prefix", affix = "Occultist's", "(23-26)% increased Spell Damage", statOrder = { 870 }, level = 60, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(23-26)% increased Spell Damage" }, } }, + ["SpellDamage6"] = { type = "Prefix", affix = "Incanter's", "(27-30)% increased Spell Damage", statOrder = { 870 }, level = 75, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(27-30)% increased Spell Damage" }, } }, + ["FireDamagePercent1"] = { type = "Prefix", affix = "Searing", "(3-7)% increased Fire Damage", statOrder = { 872 }, level = 8, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(3-7)% increased Fire Damage" }, } }, + ["FireDamagePercent2"] = { type = "Prefix", affix = "Sizzling", "(8-12)% increased Fire Damage", statOrder = { 872 }, level = 16, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(8-12)% increased Fire Damage" }, } }, + ["FireDamagePercent3"] = { type = "Prefix", affix = "Blistering", "(13-17)% increased Fire Damage", statOrder = { 872 }, level = 33, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(13-17)% increased Fire Damage" }, } }, + ["FireDamagePercent4"] = { type = "Prefix", affix = "Cauterising", "(18-22)% increased Fire Damage", statOrder = { 872 }, level = 46, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(18-22)% increased Fire Damage" }, } }, + ["FireDamagePercent5"] = { type = "Prefix", affix = "Volcanic", "(23-26)% increased Fire Damage", statOrder = { 872 }, level = 65, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(23-26)% increased Fire Damage" }, } }, + ["FireDamagePercent6"] = { type = "Prefix", affix = "Magmatic", "(27-30)% increased Fire Damage", statOrder = { 872 }, level = 75, group = "FireDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(27-30)% increased Fire Damage" }, } }, + ["ColdDamagePercent1"] = { type = "Prefix", affix = "Bitter", "(3-7)% increased Cold Damage", statOrder = { 873 }, level = 8, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(3-7)% increased Cold Damage" }, } }, + ["ColdDamagePercent2"] = { type = "Prefix", affix = "Biting", "(8-12)% increased Cold Damage", statOrder = { 873 }, level = 16, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(8-12)% increased Cold Damage" }, } }, + ["ColdDamagePercent3"] = { type = "Prefix", affix = "Alpine", "(13-17)% increased Cold Damage", statOrder = { 873 }, level = 33, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(13-17)% increased Cold Damage" }, } }, + ["ColdDamagePercent4"] = { type = "Prefix", affix = "Snowy", "(18-22)% increased Cold Damage", statOrder = { 873 }, level = 46, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(18-22)% increased Cold Damage" }, } }, + ["ColdDamagePercent5"] = { type = "Prefix", affix = "Hailing", "(23-26)% increased Cold Damage", statOrder = { 873 }, level = 65, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(23-26)% increased Cold Damage" }, } }, + ["ColdDamagePercent6"] = { type = "Prefix", affix = "Crystalline", "(27-30)% increased Cold Damage", statOrder = { 873 }, level = 75, group = "ColdDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(27-30)% increased Cold Damage" }, } }, + ["LightningDamagePercent1"] = { type = "Prefix", affix = "Charged", "(3-7)% increased Lightning Damage", statOrder = { 874 }, level = 8, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(3-7)% increased Lightning Damage" }, } }, + ["LightningDamagePercent2"] = { type = "Prefix", affix = "Hissing", "(8-12)% increased Lightning Damage", statOrder = { 874 }, level = 16, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(8-12)% increased Lightning Damage" }, } }, + ["LightningDamagePercent3"] = { type = "Prefix", affix = "Bolting", "(13-17)% increased Lightning Damage", statOrder = { 874 }, level = 33, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(13-17)% increased Lightning Damage" }, } }, + ["LightningDamagePercent4"] = { type = "Prefix", affix = "Coursing", "(18-22)% increased Lightning Damage", statOrder = { 874 }, level = 46, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(18-22)% increased Lightning Damage" }, } }, + ["LightningDamagePercent5"] = { type = "Prefix", affix = "Striking", "(23-26)% increased Lightning Damage", statOrder = { 874 }, level = 65, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(23-26)% increased Lightning Damage" }, } }, + ["LightningDamagePercent6"] = { type = "Prefix", affix = "Smiting", "(27-30)% increased Lightning Damage", statOrder = { 874 }, level = 75, group = "LightningDamagePercentage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(27-30)% increased Lightning Damage" }, } }, + ["ChaosDamagePercent1"] = { type = "Prefix", affix = "Impure", "(3-7)% increased Chaos Damage", statOrder = { 875 }, level = 8, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(3-7)% increased Chaos Damage" }, } }, + ["ChaosDamagePercent2"] = { type = "Prefix", affix = "Tainted", "(8-12)% increased Chaos Damage", statOrder = { 875 }, level = 16, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(8-12)% increased Chaos Damage" }, } }, + ["ChaosDamagePercent3"] = { type = "Prefix", affix = "Clouded", "(13-17)% increased Chaos Damage", statOrder = { 875 }, level = 33, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(13-17)% increased Chaos Damage" }, } }, + ["ChaosDamagePercent4"] = { type = "Prefix", affix = "Darkened", "(18-22)% increased Chaos Damage", statOrder = { 875 }, level = 46, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(18-22)% increased Chaos Damage" }, } }, + ["ChaosDamagePercent5"] = { type = "Prefix", affix = "Malignant", "(23-26)% increased Chaos Damage", statOrder = { 875 }, level = 65, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } }, + ["ChaosDamagePercent6"] = { type = "Prefix", affix = "Vile", "(27-30)% increased Chaos Damage", statOrder = { 875 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "ring", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } }, + ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(19-35)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(19-35)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(36-52)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 16, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(36-52)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(53-62)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 33, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(53-62)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(63-72)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 46, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(63-72)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(73-86)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(73-86)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(87-100)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(34-47)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(34-47)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(48-71)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 16, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(48-71)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(72-85)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 33, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(72-85)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(86-99)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 46, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(86-99)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(100-119)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(100-119)% increased Elemental Damage with Attacks" }, } }, + ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(120-139)% increased Elemental Damage with Attacks", statOrder = { 876 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "has_attack_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [387439868] = { "(120-139)% increased Elemental Damage with Attacks" }, } }, + ["SpellDamageGainedAsFire1"] = { type = "Prefix", affix = "Fervent", "Gain (13-15)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 5, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (13-15)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFire2"] = { type = "Prefix", affix = "Ardent", "Gain (16-18)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 16, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (16-18)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFire3"] = { type = "Prefix", affix = "Fanatic's", "Gain (19-21)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 33, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (19-21)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFire4"] = { type = "Prefix", affix = "Zealot's", "Gain (22-24)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 46, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (22-24)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFire5"] = { type = "Prefix", affix = "Infernal", "Gain (25-27)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 60, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-27)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFire6"] = { type = "Prefix", affix = "Flamebound", "Gain (28-30)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 80, group = "DamageGainedAsFire", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (28-30)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand1"] = { type = "Prefix", affix = "Fervent", "Gain (26-30)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 5, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (26-30)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand2"] = { type = "Prefix", affix = "Ardent", "Gain (31-36)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 16, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (31-36)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand3"] = { type = "Prefix", affix = "Fanatic's", "Gain (37-42)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 33, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (37-42)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand4"] = { type = "Prefix", affix = "Zealot's", "Gain (43-48)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 46, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (43-48)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand5"] = { type = "Prefix", affix = "Infernal", "Gain (49-54)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 60, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (49-54)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsFireTwoHand6"] = { type = "Prefix", affix = "Flamebound", "Gain (55-60)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 80, group = "DamageGainedAsFire", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (55-60)% of Damage as Extra Fire Damage" }, } }, + ["SpellDamageGainedAsCold1"] = { type = "Prefix", affix = "Malignant", "Gain (13-15)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 5, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (13-15)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsCold2"] = { type = "Prefix", affix = "Pernicious", "Gain (16-18)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 16, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (16-18)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsCold3"] = { type = "Prefix", affix = "Destructive", "Gain (19-21)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 33, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (19-21)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsCold4"] = { type = "Prefix", affix = "Malicious", "Gain (22-24)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 46, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (22-24)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsCold5"] = { type = "Prefix", affix = "Ruthless", "Gain (25-27)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 60, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (25-27)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsCold6"] = { type = "Prefix", affix = "Frostbound", "Gain (28-30)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 80, group = "DamageGainedAsCold", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (28-30)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand1"] = { type = "Prefix", affix = "Malignant", "Gain (26-30)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 5, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (26-30)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand2"] = { type = "Prefix", affix = "Pernicious", "Gain (31-36)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 16, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (31-36)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand3"] = { type = "Prefix", affix = "Destructive", "Gain (37-42)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 33, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (37-42)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand4"] = { type = "Prefix", affix = "Malicious", "Gain (43-48)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 46, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (43-48)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand5"] = { type = "Prefix", affix = "Ruthless", "Gain (49-54)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 60, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (49-54)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsColdTwoHand6"] = { type = "Prefix", affix = "Frostbound", "Gain (55-60)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 80, group = "DamageGainedAsCold", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (55-60)% of Damage as Extra Cold Damage" }, } }, + ["SpellDamageGainedAsLightning1"] = { type = "Prefix", affix = "Deadly", "Gain (13-15)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (13-15)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightning2"] = { type = "Prefix", affix = "Lethal", "Gain (16-18)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (16-18)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightning3"] = { type = "Prefix", affix = "Fatal", "Gain (19-21)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (19-21)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightning4"] = { type = "Prefix", affix = "Vorpal", "Gain (22-24)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (22-24)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightning5"] = { type = "Prefix", affix = "Electrifying", "Gain (25-27)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (25-27)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightning6"] = { type = "Prefix", affix = "Stormbound", "Gain (28-30)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "wand", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (28-30)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand1"] = { type = "Prefix", affix = "Deadly", "Gain (26-30)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 5, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (26-30)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand2"] = { type = "Prefix", affix = "Lethal", "Gain (31-36)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 16, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (31-36)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand3"] = { type = "Prefix", affix = "Fatal", "Gain (37-42)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 33, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (37-42)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand4"] = { type = "Prefix", affix = "Vorpal", "Gain (43-48)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 46, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (43-48)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand5"] = { type = "Prefix", affix = "Electrifying", "Gain (49-54)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 60, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (49-54)% of Damage as Extra Lightning Damage" }, } }, + ["SpellDamageGainedAsLightningTwoHand6"] = { type = "Prefix", affix = "Stormbound", "Gain (55-60)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 80, group = "DamageGainedAsLightning", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (55-60)% of Damage as Extra Lightning Damage" }, } }, + ["DamageWithBows1"] = { type = "Prefix", affix = "Acute", "(11-20)% increased Damage with Bow Skills", statOrder = { 878 }, level = 1, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(11-20)% increased Damage with Bow Skills" }, } }, + ["DamageWithBows2"] = { type = "Prefix", affix = "Trenchant", "(21-30)% increased Damage with Bow Skills", statOrder = { 878 }, level = 16, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(21-30)% increased Damage with Bow Skills" }, } }, + ["DamageWithBows3"] = { type = "Prefix", affix = "Perforating", "(31-36)% increased Damage with Bow Skills", statOrder = { 878 }, level = 33, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(31-36)% increased Damage with Bow Skills" }, } }, + ["DamageWithBows4"] = { type = "Prefix", affix = "Incisive", "(37-42)% increased Damage with Bow Skills", statOrder = { 878 }, level = 46, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(37-42)% increased Damage with Bow Skills" }, } }, + ["DamageWithBows5"] = { type = "Prefix", affix = "Lacerating", "(43-50)% increased Damage with Bow Skills", statOrder = { 878 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(43-50)% increased Damage with Bow Skills" }, } }, + ["DamageWithBows6"] = { type = "Prefix", affix = "Impaling", "(51-59)% increased Damage with Bow Skills", statOrder = { 878 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1241625305] = { "(51-59)% increased Damage with Bow Skills" }, } }, + ["PresenceRadius1"] = { type = "Suffix", affix = "of Direction", "(36-45)% increased Presence Area of Effect", statOrder = { 1068 }, level = 23, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(36-45)% increased Presence Area of Effect" }, } }, + ["PresenceRadius2"] = { type = "Suffix", affix = "of Outreach", "(46-55)% increased Presence Area of Effect", statOrder = { 1068 }, level = 40, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(46-55)% increased Presence Area of Effect" }, } }, + ["PresenceRadius3"] = { type = "Suffix", affix = "of Guidance", "(56-65)% increased Presence Area of Effect", statOrder = { 1068 }, level = 56, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(56-65)% increased Presence Area of Effect" }, } }, + ["PresenceRadius4"] = { type = "Suffix", affix = "of Influence", "(66-80)% increased Presence Area of Effect", statOrder = { 1068 }, level = 72, group = "PresenceRadius", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(66-80)% increased Presence Area of Effect" }, } }, + ["MinionLife1"] = { type = "Suffix", affix = "of the Mentor", "Minions have (21-25)% increased maximum Life", statOrder = { 1025 }, level = 2, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (21-25)% increased maximum Life" }, } }, + ["MinionLife2"] = { type = "Suffix", affix = "of the Tutor", "Minions have (26-30)% increased maximum Life", statOrder = { 1025 }, level = 16, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (26-30)% increased maximum Life" }, } }, + ["MinionLife3"] = { type = "Suffix", affix = "of the Director", "Minions have (31-35)% increased maximum Life", statOrder = { 1025 }, level = 32, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (31-35)% increased maximum Life" }, } }, + ["MinionLife4"] = { type = "Suffix", affix = "of the Headmaster", "Minions have (36-40)% increased maximum Life", statOrder = { 1025 }, level = 48, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (36-40)% increased maximum Life" }, } }, + ["MinionLife5"] = { type = "Suffix", affix = "of the Administrator", "Minions have (41-45)% increased maximum Life", statOrder = { 1025 }, level = 64, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (41-45)% increased maximum Life" }, } }, + ["MinionLife6"] = { type = "Suffix", affix = "of the Rector", "Minions have (46-50)% increased maximum Life", statOrder = { 1025 }, level = 80, group = "MinionLife", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (46-50)% increased maximum Life" }, } }, + ["GrenadeSkillAdditionalCooldownUse1"] = { type = "Suffix", affix = "of Stockpiling", "Grenade Skills have +1 Cooldown Use", statOrder = { 6918 }, level = 72, group = "GrenadeCooldownUse", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, + ["GrenadeSkillAdditionalCooldownUse2"] = { type = "Suffix", affix = "of Ordnance", "Grenade Skills have +2 Cooldown Uses", statOrder = { 6918 }, level = 81, group = "GrenadeCooldownUse", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2250681686] = { "Grenade Skills have +2 Cooldown Uses" }, } }, + ["GrenadeSkillAdditionalProjectile1"] = { type = "Suffix", affix = "of Blasting", "Grenade Skills Fire an additional Projectile", statOrder = { 6922 }, level = 72, group = "GrenadeProjectiles", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire an additional Projectile" }, } }, + ["GrenadeSkillAdditionalProjectile2"] = { type = "Suffix", affix = "of Bombarding", "Grenade Skills Fire 2 additional Projectiles", statOrder = { 6922 }, level = 81, group = "GrenadeProjectiles", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire 2 additional Projectiles" }, } }, + ["GrenadeSkillCooldownRecovery1"] = { type = "Suffix", affix = "of Speed", "(4-8)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6919 }, level = 4, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(4-8)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillCooldownRecovery2"] = { type = "Suffix", affix = "of Brevity", "(9-14)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6919 }, level = 16, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(9-14)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillCooldownRecovery3"] = { type = "Suffix", affix = "of Rapidity", "(15-21)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6919 }, level = 33, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(15-21)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillCooldownRecovery4"] = { type = "Suffix", affix = "of Swiftness", "(22-26)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6919 }, level = 46, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(22-26)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillCooldownRecovery5"] = { type = "Suffix", affix = "of Fleetness", "(27-32)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6919 }, level = 60, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(27-32)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["GrenadeSkillCooldownRecovery6"] = { type = "Suffix", affix = "of Alacrity", "(33-40)% increased Cooldown Recovery Rate for Grenade Skills", statOrder = { 6919 }, level = 81, group = "GrenadeSkillCooldownSpeed", weightKey = { "cannon", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1544773869] = { "(33-40)% increased Cooldown Recovery Rate for Grenade Skills" }, } }, + ["EssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "60% increased effect of Socketed Augment Items", statOrder = { 177 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2081918629] = { "60% increased effect of Socketed Augment Items" }, } }, + ["EssenceCorruptForTwoEnchantments1"] = { type = "Suffix", affix = "of the Essence", "On Corruption, Item gains two Enchantments", statOrder = { 7677 }, level = 1, group = "CorruptForTwoEnchantments", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4215035940] = { "On Corruption, Item gains two Enchantments" }, } }, + ["EssenceAbyssPrefix"] = { type = "Prefix", affix = "Abyssal", "Bears the Mark of the Abyssal Lord", statOrder = { 6450 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, + ["EssenceAbyssSuffix"] = { type = "Suffix", affix = "of the Abyss", "Bears the Mark of the Abyssal Lord", statOrder = { 6450 }, level = 1, group = "AbyssTargetMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335885735] = { "Bears the Mark of the Abyssal Lord" }, } }, + ["EssenceBreach"] = { type = "Prefix", affix = "Breachlord's", "+20% to Maximum Quality", statOrder = { 614 }, level = 1, group = "LocalMaximumQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2039822488] = { "+20% to Maximum Quality" }, } }, + ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(8-11)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(12-15)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(16-19)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(20-23)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(24-27)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(28-31)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 897 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(32-35)% increased Flask Life Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(11-15)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(16-20)% increased Flask Mana Recovery rate" }, } }, + ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 898 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1412217137] = { "(21-25)% increased Flask Mana Recovery rate" }, } }, + ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(35-38)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(39-42)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(43-46)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(47-50)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(51-55)% chance to Avoid being Shocked" }, } }, + ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(56-60)% chance to Avoid being Shocked" }, } }, + ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (51-100) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (101-150) Physical Damage to Melee Attackers" }, } }, + ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 904 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (151-200) Physical Damage to Melee Attackers" }, } }, + ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(39-42)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(43-46)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(47-50)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(51-55)% chance to Avoid being Frozen" }, } }, + ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1599 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "" }, [1514829491] = { "(56-60)% chance to Avoid being Frozen" }, } }, + ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 837 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(1-2)% Chance to Block" }, } }, + ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 837 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(3-4)% Chance to Block" }, } }, + ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 837 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(5-6)% Chance to Block" }, } }, + ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 837 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [4253454700] = { "+(7-8)% Chance to Block" }, } }, + ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2195 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, tradeHashes = { [3342989455] = { "10% of Physical Damage from Hits taken as Fire Damage" }, } }, + ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1600 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(43-46)% chance to Avoid being Ignited" }, } }, + ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1600 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(47-50)% chance to Avoid being Ignited" }, } }, + ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1600 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(51-55)% chance to Avoid being Ignited" }, } }, + ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1600 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(56-60)% chance to Avoid being Ignited" }, } }, + ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 8, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(1-2)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 19, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(3-4)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 30, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(5-6)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 55, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(7-8)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 70, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(9-10)% chance to Block Projectile Attack Damage" }, } }, + ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2243 }, level = 81, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, tradeHashes = { [3416410609] = { "+(11-12)% chance to Block Projectile Attack Damage" }, } }, + ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1955 }, level = 42, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "4% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 1955 }, level = 58, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "6% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 1955 }, level = 74, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "8% increased Mana Reservation Efficiency of Skills" }, } }, + ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1955 }, level = 82, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1269219558] = { "10% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 1951 }, level = 42, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(3-4)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 1951 }, level = 58, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(5-6)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 1951 }, level = 74, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(7-8)% increased Mana Reservation Efficiency of Skills" }, } }, + ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1951 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(9-10)% increased Mana Reservation Efficiency of Skills" }, } }, + ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+1 to Weapon Range", statOrder = { 2505 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+1 to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+2 to Weapon Range", statOrder = { 2505 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+2 to Weapon Range" }, } }, + ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+3 to Weapon Range", statOrder = { 2505 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+3 to Weapon Range" }, } }, + ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1517 }, level = 11, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(5-15) Life gained when you Block" }, } }, + ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1517 }, level = 22, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(16-25) Life gained when you Block" }, } }, + ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1517 }, level = 36, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(26-40) Life gained when you Block" }, } }, + ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1517 }, level = 48, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(41-60) Life gained when you Block" }, } }, + ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1517 }, level = 60, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(61-85) Life gained when you Block" }, } }, + ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1517 }, level = 75, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, tradeHashes = { [762600725] = { "(86-100) Life gained when you Block" }, } }, + ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1518 }, level = 15, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(4-12) Mana gained when you Block" }, } }, + ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1518 }, level = 32, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(13-21) Mana gained when you Block" }, } }, + ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1518 }, level = 58, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(22-30) Mana gained when you Block" }, } }, + ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1518 }, level = 75, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [2122183138] = { "(31-39) Mana gained when you Block" }, } }, + ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2598 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1842038569] = { "(20-40)% increased Fishing Line Strength" }, } }, + ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2599 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1550221644] = { "(15-30)% reduced Fishing Pool Consumption" }, } }, + ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2600 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3360430812] = { "Rhoa Feather Lure" }, } }, + ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2601 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2054162825] = { "Karui Stone Hook" }, } }, + ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2602 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [170497091] = { "(30-50)% increased Fishing Range" }, } }, + ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2603 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3802667447] = { "(15-20)% increased Quantity of Fish Caught" }, } }, + ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2604 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3310914132] = { "(25-40)% increased Rarity of Fish Caught" }, } }, + ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3006 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "flask", "chaos", "resistance" }, tradeHashes = { [392168009] = { "+50% to Chaos Resistance during any Flask Effect" }, } }, + ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 875 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(23-26)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 875 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(27-30)% increased Chaos Damage" }, } }, + ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 875 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(31-34)% increased Chaos Damage" }, } }, + ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "Leech Life 150% faster", statOrder = { 1894 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [1570501432] = { "Leech Life 150% faster" }, } }, + ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2724 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (6-10)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2724 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 5% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2724 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 6% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2724 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 7% Lightning Resistance" }, } }, + ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2724 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates 8% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 2724 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (9-10)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 2724 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (11-12)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 2724 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (13-14)% Lightning Resistance" }, } }, + ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 2724 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (15-16)% Lightning Resistance" }, } }, + ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2722 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (6-10)% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 2722 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 4% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 2722 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 5% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 2722 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 6% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 2722 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 7% Fire Resistance" }, } }, + ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 2722 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 8% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 2722 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (7-8)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 2722 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (9-10)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 2722 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (11-12)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 2722 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (13-14)% Fire Resistance" }, } }, + ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 2722 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (15-16)% Fire Resistance" }, } }, + ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2723 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (6-10)% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 2723 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 3% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 2723 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 4% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 2723 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 5% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 2723 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 6% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 2723 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 7% Cold Resistance" }, } }, + ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 2723 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates 8% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 2723 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-6)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 2723 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (7-8)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 2723 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (9-10)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 2723 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (11-12)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 2723 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (13-14)% Cold Resistance" }, } }, + ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 2723 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (15-16)% Cold Resistance" }, } }, + ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(16-20)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(21-25)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(26-30)% chance to Avoid Elemental Ailments" }, } }, + ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1597 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [3005472710] = { "(31-35)% chance to Avoid Elemental Ailments" }, } }, + ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 15, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(3-4)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 45, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-6)% increased Attack and Cast Speed" }, } }, + ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 1779 }, level = 70, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(7-8)% increased Attack and Cast Speed" }, } }, + ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "Leeches (0.5-0.7)% of Physical Damage as Life", statOrder = { 1038 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.5-0.7)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "Leeches (0.6-0.8)% of Physical Damage as Life", statOrder = { 1038 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.6-0.8)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "Leeches (0.7-0.9)% of Physical Damage as Life", statOrder = { 1038 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.7-0.9)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "Leeches (0.8-1)% of Physical Damage as Life", statOrder = { 1038 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.8-1)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "Leeches (0.9-1.1)% of Physical Damage as Life", statOrder = { 1038 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (0.9-1.1)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "Leeches (1-1.2)% of Physical Damage as Life", statOrder = { 1038 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (1-1.2)% of Physical Damage as Life" }, } }, + ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "Leeches (1.1-1.3)% of Physical Damage as Life", statOrder = { 1038 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (1.1-1.3)% of Physical Damage as Life" }, } }, + ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1155 }, level = 4, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, } }, + ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1155 }, level = 15, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(9-16)% increased Attack Damage" }, } }, + ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1155 }, level = 30, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(17-24)% increased Attack Damage" }, } }, + ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1155 }, level = 60, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(25-29)% increased Attack Damage" }, } }, + ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1155 }, level = 81, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(30-34)% increased Attack Damage" }, } }, + ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2358 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(21-25)% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2358 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(26-30)% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2358 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(31-35)% increased Totem Placement speed" }, } }, + ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2358 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(36-45)% increased Totem Placement speed" }, } }, + ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(11-13)% chance to Avoid being Stunned" }, } }, + ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(14-16)% chance to Avoid being Stunned" }, } }, + ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(17-19)% chance to Avoid being Stunned" }, } }, + ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(20-22)% chance to Avoid being Stunned" }, } }, + ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 58, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(23-26)% chance to Avoid being Stunned" }, } }, + ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 74, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(27-30)% chance to Avoid being Stunned" }, } }, + ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1605 }, level = 82, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(31-44)% chance to Avoid being Stunned" }, } }, + ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 2981 }, level = 58, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(31-39)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 2981 }, level = 74, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(40-45)% increased Stun Threshold" }, } }, + ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 2981 }, level = 82, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [680068163] = { "(46-60)% increased Stun Threshold" }, } }, + ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1304 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (3-4) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrder = { 1304 }, level = 11, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (6-8) to (12-14) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-12) to (19-23) Fire Damage to Spells", statOrder = { 1304 }, level = 18, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (10-12) to (19-23) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrder = { 1304 }, level = 26, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-18) to (27-31) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (19-25) to (37-44) Fire Damage to Spells", statOrder = { 1304 }, level = 33, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (19-25) to (37-44) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (26-33) to (48-57) Fire Damage to Spells", statOrder = { 1304 }, level = 42, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (26-33) to (48-57) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (34-42) to (64-73) Fire Damage to Spells", statOrder = { 1304 }, level = 51, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (34-42) to (64-73) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (43-52) to (79-91) Fire Damage to Spells", statOrder = { 1304 }, level = 62, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (43-52) to (79-91) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (53-66) to (98-115) Fire Damage to Spells", statOrder = { 1304 }, level = 74, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (53-66) to (98-115) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds 67 to (80-90) Fire Damage to Spells", statOrder = { 1304 }, level = 82, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds 67 to (80-90) Fire Damage to Spells" }, } }, + ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds 1 to (2-3) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrder = { 1305 }, level = 11, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (5-7) to (10-12) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrder = { 1305 }, level = 18, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (16-18) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrder = { 1305 }, level = 26, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (11-15) to (22-25) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (16-20) to (30-36) Cold Damage to Spells", statOrder = { 1305 }, level = 33, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-20) to (30-36) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (21-26) to (40-46) Cold Damage to Spells", statOrder = { 1305 }, level = 42, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (21-26) to (40-46) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (27-35) to (51-60) Cold Damage to Spells", statOrder = { 1305 }, level = 51, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (27-35) to (51-60) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (36-43) to (64-75) Cold Damage to Spells", statOrder = { 1305 }, level = 62, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (36-43) to (64-75) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (44-54) to (81-93) Cold Damage to Spells", statOrder = { 1305 }, level = 74, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (44-54) to (81-93) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1305 }, level = 82, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (35-45) to (66-74) Cold Damage to Spells" }, } }, + ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1306 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (4-5) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrder = { 1306 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (21-22) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (33-35) Lightning Damage to Spells", statOrder = { 1306 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-2) to (33-35) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-48) Lightning Damage to Spells", statOrder = { 1306 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (46-48) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (49-68) Lightning Damage to Spells", statOrder = { 1306 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (49-68) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (69-88) Lightning Damage to Spells", statOrder = { 1306 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-7) to (69-88) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (89-115) Lightning Damage to Spells", statOrder = { 1306 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-9) to (89-115) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (116-144) Lightning Damage to Spells", statOrder = { 1306 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (116-144) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (145-179) Lightning Damage to Spells", statOrder = { 1306 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-14) to (145-179) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1306 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (4-11) to (134-144) Lightning Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrder = { 1304 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (1-2) to (4-5) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrder = { 1304 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (8-11) to (17-19) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-29) Fire Damage to Spells", statOrder = { 1304 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (13-17) to (26-29) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-23) to (36-42) Fire Damage to Spells", statOrder = { 1304 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (18-23) to (36-42) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1304 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (25-33) to (50-59) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (34-44) to (65-76) Fire Damage to Spells", statOrder = { 1304 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (34-44) to (65-76) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (45-56) to (85-99) Fire Damage to Spells", statOrder = { 1304 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (45-56) to (85-99) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (57-70) to (107-123) Fire Damage to Spells", statOrder = { 1304 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (57-70) to (107-123) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (71-88) to (132-155) Fire Damage to Spells", statOrder = { 1304 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (71-88) to (132-155) Fire Damage to Spells" }, } }, + ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1304 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [1133016593] = { "Adds (67-81) to (120-135) Fire Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrder = { 1305 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (1-2) to (3-4) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrder = { 1305 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (8-10) to (15-18) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-15) to (23-28) Cold Damage to Spells", statOrder = { 1305 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (12-15) to (23-28) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrder = { 1305 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (16-22) to (33-38) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (24-30) to (45-53) Cold Damage to Spells", statOrder = { 1305 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (24-30) to (45-53) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (32-40) to (59-69) Cold Damage to Spells", statOrder = { 1305 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (32-40) to (59-69) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (42-52) to (77-90) Cold Damage to Spells", statOrder = { 1305 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (42-52) to (77-90) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (54-64) to (96-113) Cold Damage to Spells", statOrder = { 1305 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (54-64) to (96-113) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (66-82) to (120-140) Cold Damage to Spells", statOrder = { 1305 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (66-82) to (120-140) Cold Damage to Spells" }, } }, + ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1305 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [2469416729] = { "Adds (57-66) to (100-111) Cold Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrder = { 1306 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds 1 to (6-7) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrder = { 1306 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-3) to (32-34) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrder = { 1306 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (1-4) to (49-52) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (69-73) Lightning Damage to Spells", statOrder = { 1306 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-5) to (69-73) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-8) to (97-102) Lightning Damage to Spells", statOrder = { 1306 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (2-8) to (97-102) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrder = { 1306 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (3-10) to (126-133) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-12) to (164-173) Lightning Damage to Spells", statOrder = { 1306 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-12) to (164-173) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-17) to (204-216) Lightning Damage to Spells", statOrder = { 1306 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (5-17) to (204-216) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-20) to (255-270) Lightning Damage to Spells", statOrder = { 1306 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (7-20) to (255-270) Lightning Damage to Spells" }, } }, + ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrder = { 1306 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "elemental_damage", "damage", "elemental", "lightning", "caster" }, tradeHashes = { [2831165374] = { "Adds (6-16) to (201-216) Lightning Damage to Spells" }, } }, + ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos damage", statOrder = { 1290 }, level = 83, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (56-87) to (105-160) Chaos damage" }, } }, + ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos damage", statOrder = { 1290 }, level = 62, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (37-59) to (79-103) Chaos damage" }, } }, + ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos damage", statOrder = { 1290 }, level = 74, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-67) to (89-113) Chaos damage" }, } }, + ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos damage", statOrder = { 1290 }, level = 82, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (53-79) to (101-131) Chaos damage" }, } }, + ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos damage", statOrder = { 1290 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (98-149) to (183-280) Chaos damage" }, } }, + ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos damage", statOrder = { 1290 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (61-103) to (149-193) Chaos damage" }, } }, + ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos damage", statOrder = { 1290 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (73-113) to (163-205) Chaos damage" }, } }, + ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos damage", statOrder = { 1290 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (89-131) to (181-229) Chaos damage" }, } }, + ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 3071 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3835551335] = { "Cannot be Poisoned" }, } }, + ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1287 }, level = 62, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (11-15) to (27-33) Chaos Damage to Attacks" }, } }, + ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1287 }, level = 74, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (17-21) to (37-43) Chaos Damage to Attacks" }, } }, + ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1287 }, level = 82, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [674553446] = { "Adds (23-37) to (49-61) Chaos Damage to Attacks" }, } }, + ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 2894 }, level = 30, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(8-12)% increased Poison Duration" }, } }, + ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 2894 }, level = 60, group = "PoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, } }, + ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 875, 2894 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(13-18)% increased Poison Duration" }, [736967255] = { "(26-30)% increased Chaos Damage" }, } }, + ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 413 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "skill", "damage", "elemental", "fire", "gem" }, tradeHashes = { [1289910726] = { "Socketed Gems deal 175 to 225 Added Fire Damage" }, } }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 407 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 20% more Attack and Cast Speed" }, } }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 407 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 16% more Attack and Cast Speed" }, } }, + ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 410 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "skill", "damage", "elemental", "gem" }, tradeHashes = { [3835899275] = { "Socketed Gems deal 30% more Elemental Damage" }, } }, + ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 3980 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [3859593448] = { "5% reduced Elemental Damage Taken while stationary" }, } }, + ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2204 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, + ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1672 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, + ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1672 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 15% of Physical Damage as Extra Fire Damage" }, } }, + ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1693 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [3762784591] = { "25% reduced Chaos Damage taken over time" }, } }, + ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Hit Chance", statOrder = { 399 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1681904129] = { "Socketed Gems have +3.5% Critical Hit Chance" }, } }, + ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 3917 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "flask", "attack", "caster", "speed" }, tradeHashes = { [614350381] = { "10% increased Attack and Cast Speed during any Flask Effect" }, } }, + ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 2903 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "speed" }, tradeHashes = { [304970526] = { "10% increased Movement Speed during any Flask Effect" }, } }, + ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 3916 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "4 to 7 Added Cold Damage per Frenzy Charge" }, } }, + ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 3916 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3648858570] = { "8 to 12 Added Cold Damage per Frenzy Charge" }, } }, + ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 3918 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3623716321] = { "Adds 60 to 100 Fire Damage if you've Blocked Recently" }, } }, + ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 409 }, level = 63, group = "DisplaySupportedSkillsDealDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1235873320] = { "Socketed Gems deal 30% more Damage while on Low Life" }, } }, + ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrder = { 3910 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "flask", "damage", "elemental" }, tradeHashes = { [3392890360] = { "Damage Penetrates 5% Elemental Resistances during any Flask Effect" }, } }, + ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 3911 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "physical" }, tradeHashes = { [2693266036] = { "5% additional Physical Damage Reduction during any Flask Effect" }, } }, + ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 9673 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3577248251] = { "You and your Minions take 40% reduced Reflected Damage" }, } }, + ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 3913 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "power_charge" }, tradeHashes = { [3945147290] = { "25% chance to gain a Power Charge when you Block" }, } }, + ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrder = { 3914 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [583277599] = { "Chill Nearby Enemies when you Block" }, } }, + ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of maximum Mana when you use a Skill", statOrder = { 3162 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [308309328] = { "10% chance to Recover 10% of maximum Mana when you use a Skill" }, } }, + ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 8800 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [335507772] = { "+3 to maximum Fortification" }, } }, + ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5483 }, level = 63, group = "CrushOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2228892313] = { "(15-25)% chance to Crush on Hit" }, } }, + ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6719 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, tradeHashes = { [2989883253] = { "Gain Alchemist's Genius when you use a Flask" }, } }, + ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3291 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [498214257] = { "16% chance to gain a Power, Frenzy, or Endurance Charge on kill" }, } }, + ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrder = { 443 }, level = 63, group = "SocketedGemsNonCurseAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "aura", "gem" }, tradeHashes = { [223595318] = { "Socketed Non-Curse Aura Gems have 20% increased Aura Effect" }, } }, + ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrder = { 140 }, level = 63, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, tradeHashes = { [2452998583] = { "+2 to Level of Socketed Aura Gems" }, } }, + ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Cast Level 20 Fire Burst on Hit", statOrder = { 563 }, level = 63, group = "FireBurstOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack" }, tradeHashes = { [1621470436] = { "Cast Level 20 Fire Burst on Hit" }, } }, + ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits", statOrder = { 544, 544.1 }, level = 63, group = "GrantsEssenceMinion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [470688636] = { "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits" }, } }, + ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Area of Effect", statOrder = { 1628 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [280731498] = { "25% increased Area of Effect" }, } }, + ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6800 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3049760680] = { "Gain Onslaught for 3 seconds when Hit" }, } }, + ["OnslaughtWhenHitNewEssence1"] = { type = "Suffix", affix = "of the Essence", "You gain Onslaught for 6 seconds when Hit", statOrder = { 2581 }, level = 63, group = "OnslaughtWhenHitForDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2764164760] = { "You gain Onslaught for 6 seconds when Hit" }, } }, + ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrder = { 441 }, level = 63, group = "SupportDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "damage", "gem" }, tradeHashes = { [3846088475] = { "Socketed Gems deal 30% more Damage over Time" }, } }, + ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Curse Magnitudes", statOrder = { 2374 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "5% increased Curse Magnitudes" }, } }, + ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Curse Magnitudes", statOrder = { 2374 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "10% increased Curse Magnitudes" }, } }, + ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [712554801] = { "25% increased Effect of your Mark Skills" }, } }, + ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 6070 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3322709337] = { "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds" }, } }, + ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 9137 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1521863824] = { "12% increased Movement speed while on Burning, Chilled or Shocked ground" }, } }, + ["ManaRegenerationWhileShockedEssence1"] = { type = "Suffix", affix = "of the Essence", "70% increased Mana Regeneration Rate while Shocked", statOrder = { 2286 }, level = 63, group = "ManaRegenerationWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2076519255] = { "70% increased Mana Regeneration Rate while Shocked" }, } }, + ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 7964 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, tradeHashes = { [3041288981] = { "Recover 5% of your maximum Mana when you Block" }, } }, + ["BleedDuration1"] = { type = "Suffix", affix = "", "(8-12)% increased Bleeding Duration", statOrder = { 4649 }, level = 30, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(8-12)% increased Bleeding Duration" }, } }, + ["BleedDuration2"] = { type = "Suffix", affix = "", "(13-18)% increased Bleeding Duration", statOrder = { 4649 }, level = 60, group = "BleedDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(13-18)% increased Bleeding Duration" }, } }, + ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 511 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [1265282021] = { "Grants Level 20 Aspect of the Cat Skill" }, } }, + ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 507 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [3914740665] = { "Grants Level 20 Aspect of the Avian Skill" }, } }, + ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 530 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, tradeHashes = { [956546305] = { "Grants Level 20 Aspect of the Spider Skill" }, } }, + ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 512 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, tradeHashes = { [4102318278] = { "Grants Level 20 Aspect of the Crab Skill" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1204 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "dot_multi", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(11-15)% to Chaos Damage over Time Multiplier" }, } }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1204 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "dot_multi", "damage", "chaos" }, tradeHashes = { [4055307827] = { "+(16-20)% to Chaos Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1201 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(11-15)% to Cold Damage over Time Multiplier" }, } }, + ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1201 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1950806024] = { "+(16-20)% to Cold Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1198 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(11-15)% to Fire Damage over Time Multiplier" }, } }, + ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1198 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3382807662] = { "+(16-20)% to Fire Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1196 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(11-15)% to Physical Damage over Time Multiplier" }, } }, + ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1196 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 1, 1, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, tradeHashes = { [1314617696] = { "+(16-20)% to Physical Damage over Time Multiplier" }, } }, + ["EssenceIncreasedLifePercent1"] = { type = "Prefix", affix = "Essences", "(8-10)% increased maximum Life", statOrder = { 888 }, level = 72, group = "MaximumLifeIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(8-10)% increased maximum Life" }, } }, + ["EssenceIncreasedManaPercent1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Mana", statOrder = { 893 }, level = 72, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(4-6)% increased maximum Mana" }, } }, + ["EssenceGlobalDefences1"] = { type = "Prefix", affix = "Essences", "(20-30)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2586 }, level = 72, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHashes = { [1177404658] = { "(20-30)% increased Global Armour, Evasion and Energy Shield" }, } }, + ["EssenceDamageasExtraPhysical1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Physical Damage", statOrder = { 1669 }, level = 72, group = "DamageasExtraPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (15-20)% of Damage as Extra Physical Damage" }, } }, + ["EssenceDamageasExtraPhysical2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Physical Damage", statOrder = { 1669 }, level = 72, group = "DamageasExtraPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (25-33)% of Damage as Extra Physical Damage" }, } }, + ["EssenceDamageasExtraFire1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 72, group = "DamageasExtraFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (15-20)% of Damage as Extra Fire Damage" }, } }, + ["EssenceDamageasExtraFire2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 72, group = "DamageasExtraFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (25-33)% of Damage as Extra Fire Damage" }, } }, + ["EssenceDamageasExtraCold1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 72, group = "DamageasExtraCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (15-20)% of Damage as Extra Cold Damage" }, } }, + ["EssenceDamageasExtraCold2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 72, group = "DamageasExtraCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (25-33)% of Damage as Extra Cold Damage" }, } }, + ["EssenceDamageasExtraLightning1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 72, group = "DamageasExtraLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (15-20)% of Damage as Extra Lightning Damage" }, } }, + ["EssenceDamageasExtraLightning2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 72, group = "DamageasExtraLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (25-33)% of Damage as Extra Lightning Damage" }, } }, + ["EssenceFireRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Fire Damage taken Recouped as Life", statOrder = { 6552 }, level = 72, group = "EssenceFireRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, tradeHashes = { [1742651309] = { "(26-30)% of Fire Damage taken Recouped as Life" }, } }, + ["EssenceColdRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Cold Damage taken Recouped as Life", statOrder = { 5675 }, level = 72, group = "EssenceColdRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, tradeHashes = { [3679418014] = { "(26-30)% of Cold Damage taken Recouped as Life" }, } }, + ["EssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(26-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7526 }, level = 72, group = "EssenceLightningRecoupLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, tradeHashes = { [2970621759] = { "(26-30)% of Lightning Damage taken Recouped as Life" }, } }, + ["EssencePhysicalDamageTakenAsChaos1"] = { type = "Prefix", affix = "Essences", "(10-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2210 }, level = 72, group = "PhysicalDamageTakenAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "chaos" }, tradeHashes = { [4129825612] = { "(10-15)% of Physical Damage from Hits taken as Chaos Damage" }, } }, + ["EssenceAttackSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of all Attack Skills", statOrder = { 966 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+2 to Level of all Attack Skills" }, } }, + ["EssenceAttackSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Attack Skills", statOrder = { 966 }, level = 72, group = "EssenceAttackSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3035140377] = { "+3 to Level of all Attack Skills" }, } }, + ["EssenceSpellSkillLevel1H1"] = { type = "Suffix", affix = "of the Essence", "+3 to Level of all Spell Skills", statOrder = { 949 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+3 to Level of all Spell Skills" }, } }, + ["EssenceSpellSkillLevel2H1"] = { type = "Suffix", affix = "of the Essence", "+5 to Level of all Spell Skills", statOrder = { 949 }, level = 72, group = "EssenceSpellSkillLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+5 to Level of all Spell Skills" }, } }, + ["EssenceOnslaughtonKill1"] = { type = "Suffix", affix = "of the Essence", "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon", statOrder = { 7614 }, level = 72, group = "EssenceOnslaughtonKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1881230714] = { "(20-25)% chance to gain Onslaught on Killing Hits with this Weapon" }, } }, + ["EssenceManaCostReduction"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-20)% increased Mana Cost Efficiency" }, } }, + ["EssenceManaCostReduction2H"] = { type = "Suffix", affix = "of the Essence", "(28-32)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 72, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(28-32)% increased Mana Cost Efficiency" }, } }, + ["EssencePercentStrength1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Strength", statOrder = { 998 }, level = 72, group = "PercentageStrength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [734614379] = { "(7-10)% increased Strength" }, } }, + ["EssencePercentDexterity1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Dexterity", statOrder = { 999 }, level = 72, group = "PercentageDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [4139681126] = { "(7-10)% increased Dexterity" }, } }, + ["EssencePercentIntelligence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Intelligence", statOrder = { 1000 }, level = 72, group = "PercentageIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [656461285] = { "(7-10)% increased Intelligence" }, } }, + ["EssenceReducedCriticalDamageAgainstYou1"] = { type = "Suffix", affix = "of the Essence", "Hits against you have (40-50)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 72, group = "EssenceReducedCriticalDamageAgainstYou", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3855016469] = { "Hits against you have (40-50)% reduced Critical Damage Bonus" }, } }, + ["EssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 72, group = "EssenceGoldDropped", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3175163625] = { "(10-15)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["EssenceAuraEffect1"] = { type = "Suffix", affix = "of the Essence", "Aura Skills have (15-20)% increased Magnitudes", statOrder = { 2572 }, level = 72, group = "EssenceAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [315791320] = { "Aura Skills have (15-20)% increased Magnitudes" }, } }, + ["GenesisTreeAmuletColdDamageAsPortionOfDamageCrafted"] = { type = "Prefix", affix = "Tul's", "Gain (10-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1673 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [758893621] = { "Gain (10-20)% of Physical Damage as Extra Cold Damage" }, } }, + ["GenesisTreeAmuletAnaemiaOnHitCrafted"] = { type = "Prefix", affix = "Uul-Netol's", "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", statOrder = { 4314, 4314.1 }, level = 1, group = "AnaemiaOnHit", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "physical" }, tradeHashes = { [971590056] = { "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies" }, } }, + ["GenesisTreeFireSpellBaseCriticalChanceCrafted"] = { type = "Suffix", affix = "of Xoph", "+(4-5)% to Fire Spell Critical Hit Chance", statOrder = { 6567 }, level = 1, group = "FireSpellBaseCriticalChance", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { "caster_critical", "elemental", "fire", "caster", "critical" }, tradeHashes = { [3399401168] = { "+(4-5)% to Fire Spell Critical Hit Chance" }, } }, + ["GenesisTreeAdditionalMaximumSealsCrafted"] = { type = "Suffix", affix = "of Esh", "Sealed Skills have +1 to maximum Seals", statOrder = { 4715 }, level = 1, group = "AdditionalMaximumSeals", weightKey = { "default", "amulet", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [4147510958] = { "Sealed Skills have +1 to maximum Seals" }, } }, + ["GenesisTreeBeltMinionAdditionalProjectileChanceCrafted"] = { type = "Suffix", affix = "of Scattering", "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", statOrder = { 8984 }, level = 1, group = "MinionAdditionalProjectileChance", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1797815732] = { "Minions have +(50-100)% Surpassing chance to fire an additional Projectile" }, } }, + ["GenesisTreeRingMaximumElementalInfusionCrafted"] = { type = "Suffix", affix = "of Amplification", "+1 to maximum number of Elemental Infusions", statOrder = { 8840 }, level = 1, group = "MaximumElementalInfusion", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, + ["GenesisTreeBeltSealGainFrequencyCrafted"] = { type = "Suffix", affix = "of Expectation", "Sealed Skills have (21-35)% increased Seal gain frequency", statOrder = { 9759 }, level = 1, group = "SealGainFrequency", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3384867265] = { "Sealed Skills have (21-35)% increased Seal gain frequency" }, } }, + ["GenesisTreeRingOfferingEffectCrafted"] = { type = "Prefix", affix = "Sacrificial", "Offering Skills have (16-23)% increased Buff effect", statOrder = { 3717 }, level = 1, group = "OfferingEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "Offering Skills have (16-23)% increased Buff effect" }, } }, + ["GenesisTreeRingTemporaryMinionLimitCrafted"] = { type = "Suffix", affix = "of Multitudes", "Temporary Minion Skills have +1 to Limit of Minions summoned", statOrder = { 10206 }, level = 1, group = "TemporaryMinionLimit", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +1 to Limit of Minions summoned" }, } }, + ["GenesisTreeRingMinionArmourBreakCrafted"] = { type = "Prefix", affix = "Scratching", "Minions Break Armour equal to (2-4)% of Physical damage dealt", statOrder = { 8965 }, level = 1, group = "MinionArmourBreak", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [195270549] = { "Minions Break Armour equal to (2-4)% of Physical damage dealt" }, } }, + ["GenesisTreeRingMinionAilmentMagnitudeCrafted"] = { type = "Prefix", affix = "Contaminating", "Minions have (35-45)% increased Magnitude of Damaging Ailments", statOrder = { 8977 }, level = 1, group = "MinionDamagingAilments", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (35-45)% increased Magnitude of Damaging Ailments" }, } }, + ["GenesisTreeRingCommandSkillSpeedCrafted"] = { type = "Suffix", affix = "of Punctuality", "Minions have (20-30)% increased Skill Speed with Command Skills", statOrder = { 8990 }, level = 1, group = "MinionCommandSkillSpeed", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [73032170] = { "Minions have (20-30)% increased Skill Speed with Command Skills" }, } }, + ["GenesisTreeRingMinionCooldownRecoveryCrafted"] = { type = "Suffix", affix = "of Invigoration", "Minions have (21-29)% increased Cooldown Recovery Rate", statOrder = { 8994 }, level = 1, group = "MinionCooldownRecoveryRate", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have (21-29)% increased Cooldown Recovery Rate" }, } }, + ["GenesisTreeRingSpellDamageAsExtraLightningCrafted"] = { type = "Prefix", affix = "Storm Chaser's", "Gain (8-12)% of Damage as Extra Lightning Damage with Spells", statOrder = { 869 }, level = 1, group = "SpellDamageGainedAsLightning", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [323800555] = { "Gain (8-12)% of Damage as Extra Lightning Damage with Spells" }, } }, + ["GenesisTreeRingSpellDamageAsExtraFireCrafted"] = { type = "Prefix", affix = "Fire Breather's", "Gain (8-12)% of Damage as Extra Fire Damage with Spells", statOrder = { 863 }, level = 1, group = "SpellDamageGainedAsFire", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1321054058] = { "Gain (8-12)% of Damage as Extra Fire Damage with Spells" }, } }, + ["GenesisTreeRingSpellDamageAsExtraColdCrafted"] = { type = "Prefix", affix = "Tempest Rider's", "Gain (8-12)% of Damage as Extra Cold Damage with Spells", statOrder = { 867 }, level = 1, group = "SpellDamageGainedAsCold", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [825116955] = { "Gain (8-12)% of Damage as Extra Cold Damage with Spells" }, } }, + ["GenesisTreeRingSpellDamageAsExtraChaosCrafted"] = { type = "Prefix", affix = "Soul Stealer's", "Spells Gain (8-12)% of Damage as extra Chaos Damage", statOrder = { 9201 }, level = 1, group = "SpellDamageGainedAsChaos", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "chaos_warband", "damage" }, tradeHashes = { [555706343] = { "Spells Gain (8-12)% of Damage as extra Chaos Damage" }, } }, + ["GenesisTreeRingDamageTakenFromManaBeforeLifeCrafted"] = { type = "Prefix", affix = "Burdensome", "(8-12)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(8-12)% of Damage is taken from Mana before Life" }, } }, + ["GenesisTreeRingExposureEffectCrafted"] = { type = "Suffix", affix = "of Drenching", "(25-35)% increased Exposure Effect", statOrder = { 6510 }, level = 1, group = "ElementalExposureEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(25-35)% increased Exposure Effect" }, } }, + ["GenesisTreeRingMaximumInvocationEnergyCrafted"] = { type = "Suffix", affix = "of Vastness", "Invocated skills have (25-35)% increased Maximum Energy", statOrder = { 7361 }, level = 1, group = "InvocationMaximumEnergy", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1615901249] = { "Invocated skills have (25-35)% increased Maximum Energy" }, } }, + ["GenesisTreeRingSpellImpaleEffectCrafted"] = { type = "Suffix", affix = "of Lancing", "(20-30)% increased Magnitude of Impales inflicted with Spells", statOrder = { 9986 }, level = 1, group = "SpellImpaleEffect", weightKey = { "default", "ring", }, weightVal = { 0, 0 }, modTags = { "physical", "caster" }, tradeHashes = { [4259875040] = { "(20-30)% increased Magnitude of Impales inflicted with Spells" }, } }, + ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Erupting", "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", statOrder = { 6538 }, level = 1, group = "FireDamageIfFireInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3858572996] = { "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Energising", "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", statOrder = { 7518 }, level = 1, group = "LightningDamageIfLightningInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [797289402] = { "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8SecondsCrafted"] = { type = "Prefix", affix = "Glacial", "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", statOrder = { 5661 }, level = 1, group = "ColdDamageIfColdInfusionCollectedLast8Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [1002535626] = { "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltArchonEffectCrafted"] = { type = "Prefix", affix = "Unshackling", "(20-39)% increased effect of Archon Buffs on you", statOrder = { 4335 }, level = 1, group = "ArchonEffect", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1180552088] = { "(20-39)% increased effect of Archon Buffs on you" }, } }, + ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6SecondsCrafted"] = { type = "Suffix", affix = "of Reverberation", "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", statOrder = { 5551 }, level = 1, group = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2150661403] = { "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds" }, } }, + ["GenesisTreeBeltSpellElementalAilmentMagnitudeCrafted"] = { type = "Suffix", affix = "of Imbuing", "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", statOrder = { 9984 }, level = 1, group = "SpellElementalAilmentMagnitude", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "caster" }, tradeHashes = { [3621874554] = { "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells" }, } }, + ["GenesisTreeBeltArchonDurationCrafted"] = { type = "Suffix", affix = "of Exertion", "(40-50)% increased Archon Buff duration", statOrder = { 4334 }, level = 1, group = "ArchonDuration", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(40-50)% increased Archon Buff duration" }, } }, + ["GenesisTreeBeltArchonUndeathOnOfferingUseCrafted"] = { type = "Suffix", affix = "of Unending", "(35-50)% to gain Archon of Undeath when you create an Offering", statOrder = { 5388 }, level = 1, group = "ArchonUndeathOnOfferingUse", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [933355817] = { "(35-50)% to gain Archon of Undeath when you create an Offering" }, } }, + ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15SecondsCrafted"] = { type = "Prefix", affix = "Instructor's", "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", statOrder = { 8999 }, level = 1, group = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3526763442] = { "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds" }, } }, + ["GenesisTreeBeltMinionsGiganticRevivedRecentlyCrafted"] = { type = "Prefix", affix = "Monstrous", "Your Minions are Gigantic if they have Revived Recently", statOrder = { 9061 }, level = 1, group = "MinionsGiganticRevivedRecently", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [1265767008] = { "Your Minions are Gigantic if they have Revived Recently" }, } }, + ["GenesisTreeBeltDamageRemovedFromSpectresCrafted"] = { type = "Prefix", affix = "Underling's", "5% of Damage from Hits is taken from your Spectres' Life before you", statOrder = { 6022 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [54812069] = { "5% of Damage from Hits is taken from your Spectres' Life before you" }, } }, + ["GenesisTreeBeltMinionReservationEfficiencyCrafted"] = { type = "Suffix", affix = "of Coherence", "(7-10)% increased Reservation Efficiency of Minion Skills", statOrder = { 9726 }, level = 1, group = "MinionReservationEfficiency", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1805633363] = { "(7-10)% increased Reservation Efficiency of Minion Skills" }, } }, + ["GenesisTreeBeltMinionMeleeSplashCrafted"] = { type = "Suffix", affix = "of Ravaging", "Supported Minions' Strikes have Melee Splash", statOrder = { 9032 }, level = 1, group = "MinionMeleeSplash", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Supported Minions' Strikes have Melee Splash" }, } }, + ["GenesisTreeBeltMinionDurationCrafted"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4716 }, level = 1, group = "MinionDuration", weightKey = { "default", "belt", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(35-49)% increased Minion Duration" }, } }, + ["AlloyMaximumRunicWard1"] = { type = "Prefix", affix = "Verisium", "+(37-49) to maximum Runic Ward", statOrder = { 889 }, level = 13, group = "GlobalMaximumRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(37-49) to maximum Runic Ward" }, } }, + ["AlloyRunicWardRechargeRate1"] = { type = "Prefix", affix = "Verisium", "(15-20)% increased Runic Ward Regeneration Rate", statOrder = { 10478 }, level = 13, group = "WardRegenerationRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [2392260628] = { "(15-20)% increased Runic Ward Regeneration Rate" }, } }, + ["AlloyMaximumRunicWardPercent1"] = { type = "Prefix", affix = "Verisium", "(6-10)% increased maximum Runic Ward", statOrder = { 890 }, level = 13, group = "GlobalRunicWardPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [4273473110] = { "(6-10)% increased maximum Runic Ward" }, } }, + ["AlloyRunicWardOnBlock1"] = { type = "Suffix", affix = "of the Stars", "Recover (10-15) Runic Ward when you Block", statOrder = { 9641 }, level = 13, group = "WardOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1568848828] = { "Recover (10-15) Runic Ward when you Block" }, } }, + ["AlloyDamageAsExtraFireWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward", statOrder = { 9210 }, level = 25, group = "DamageGainedAsFireWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [589361270] = { "Gain (21-26)% of Damage as Extra Fire Damage while you are missing Runic Ward" }, } }, + ["AlloyDamageAsExtraFireTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward", statOrder = { 9210 }, level = 25, group = "DamageGainedAsFireWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [589361270] = { "Gain (42-52)% of Damage as Extra Fire Damage while you are missing Runic Ward" }, } }, + ["AlloyAttackSpeedIfMissingWardRecently1"] = { type = "Suffix", affix = "of the Stars", "(10-15)% increased Attack Speed while missing Runic Ward", statOrder = { 4548 }, level = 25, group = "AttackSpeedWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [325171970] = { "(10-15)% increased Attack Speed while missing Runic Ward" }, } }, + ["AlloyRecoverRunicWardOnCharmUse1"] = { type = "Prefix", affix = "Verisium", "Recover (32-45) Runic Ward when a Charm is used", statOrder = { 9642 }, level = 25, group = "RecoverRunicWardOnCharmUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [554145967] = { "Recover (32-45) Runic Ward when a Charm is used" }, } }, + ["AlloyLocalWardIncreasePercent1"] = { type = "Prefix", affix = "Verisium", "(24-30)% increased Runic Ward", statOrder = { 854 }, level = 25, group = "LocalRunicWardIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [830161081] = { "(24-30)% increased Runic Ward" }, } }, + ["AlloyLocalWardIncreasePercent2"] = { type = "Prefix", affix = "Verisium", "(31-40)% increased Runic Ward", statOrder = { 854 }, level = 65, group = "LocalRunicWardIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [830161081] = { "(31-40)% increased Runic Ward" }, } }, + ["AlloyMaximumRunicWardWeapon1"] = { type = "Suffix", affix = "of the Stars", "+(51-74) to maximum Runic Ward", statOrder = { 889 }, level = 25, group = "GlobalMaximumRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "runic_ward" }, tradeHashes = { [3336230913] = { "+(51-74) to maximum Runic Ward" }, } }, + ["AlloyRemnantPickupRange1"] = { type = "Suffix", affix = "of the Stars", "Remnants can be collected from (35-50)% further away", statOrder = { 9697 }, level = 25, group = "RemnantPickupRadiusIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (35-50)% further away" }, } }, + ["AlloyPresenceAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "(35-50)% increased Presence Area of Effect", statOrder = { 1068 }, level = 25, group = "PresenceRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(35-50)% increased Presence Area of Effect" }, } }, + ["AlloyManaCostEfficiency1"] = { type = "Prefix", affix = "Verisium", "(18-29)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 25, group = "ManaCostEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [4101445926] = { "(18-29)% increased Mana Cost Efficiency" }, } }, + ["AlloyTemporaryMinionSkillLimit1"] = { type = "Suffix", affix = "of the Stars", "Temporary Minion Skills have +(1-2) to Limit of Minions summoned", statOrder = { 10206 }, level = 25, group = "TemporaryMinionLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +(1-2) to Limit of Minions summoned" }, } }, + ["AlloyCastSpeedGloves1"] = { type = "Suffix", affix = "of the Stars", "(9-12)% increased Cast Speed", statOrder = { 986 }, level = 45, group = "IncreasedCastSpeedNoAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, + ["AlloyAttackSpeedRing1"] = { type = "Suffix", affix = "of the Stars", "(7-9)% increased Attack Speed", statOrder = { 984 }, level = 45, group = "IncreasedAttackSpeedNoCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-9)% increased Attack Speed" }, } }, + ["AlloyFlaskChargesPerSecond1"] = { type = "Suffix", affix = "of the Stars", "Flasks gain (0.75-1) charges per Second", statOrder = { 6865 }, level = 45, group = "AllFlaskChargeGeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [731781020] = { "Flasks gain (0.75-1) charges per Second" }, } }, + ["AlloyTotemPlacementSpeed1"] = { type = "Suffix", affix = "of the Stars", "(30-49)% increased Totem Placement speed", statOrder = { 2358 }, level = 45, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(30-49)% increased Totem Placement speed" }, } }, + ["AlloyReducedSlowPotency1"] = { type = "Suffix", affix = "of the Stars", "(15-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 45, group = "SlowPotency", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [924253255] = { "(15-30)% reduced Slowing Potency of Debuffs on You" }, } }, + ["AlloySkillEffectDuration1"] = { type = "Suffix", affix = "of the Stars", "(15-19)% increased Skill Effect Duration", statOrder = { 1643 }, level = 45, group = "SkillEffectDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-19)% increased Skill Effect Duration" }, } }, + ["AlloyDamagingAilmentDuration1"] = { type = "Suffix", affix = "of the Stars", "(20-25)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6051 }, level = 45, group = "DamagingAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(20-25)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["AlloyArchonDuration1"] = { type = "Suffix", affix = "of the Stars", "(35-42)% increased Archon Buff duration", statOrder = { 4334 }, level = 45, group = "ArchonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(35-42)% increased Archon Buff duration" }, } }, + ["AlloyElementalPenetration1"] = { type = "Prefix", affix = "of the Stars", "Damage Penetrates (9-15)% Elemental Resistances", statOrder = { 2721 }, level = 45, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-15)% Elemental Resistances" }, } }, + ["AlloyAilmentMagnitude1"] = { type = "Suffix", affix = "of the Stars", "(20-30)% increased Magnitude of Ailments you inflict", statOrder = { 4249 }, level = 45, group = "AilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(20-30)% increased Magnitude of Ailments you inflict" }, } }, + ["AlloyExposureEffect1"] = { type = "Suffix", affix = "of the Stars", "(40-50)% increased Exposure Effect", statOrder = { 6510 }, level = 45, group = "ElementalExposureEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(40-50)% increased Exposure Effect" }, } }, + ["AlloyMinionDamagingAilmentMagnitude1"] = { type = "Suffix", affix = "of the Stars", "Minions have (40-49)% increased Magnitude of Damaging Ailments", statOrder = { 8977 }, level = 45, group = "MinionDamagingAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (40-49)% increased Magnitude of Damaging Ailments" }, } }, + ["AlloySpellAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "Spell Skills have (10-15)% increased Area of Effect", statOrder = { 9950 }, level = 45, group = "SpellAreaOfEffectPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-15)% increased Area of Effect" }, } }, + ["AlloyAttackAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "(10-15)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 45, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(10-15)% increased Area of Effect for Attacks" }, } }, + ["AlloySpiritOnBoots1"] = { type = "Suffix", affix = "of the Stars", "+(10-15) to Spirit", statOrder = { 895 }, level = 45, group = "BaseSpirit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3981240776] = { "+(10-15) to Spirit" }, } }, + ["AlloyChanceToChain1"] = { type = "Suffix", affix = "of the Stars", "(25-35)% chance to Chain an additional time", statOrder = { 7578 }, level = 45, group = "LocalAdditionalChainChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1028592286] = { "(25-35)% chance to Chain an additional time" }, } }, + ["AlloyMaximumElementalInfusions1"] = { type = "Suffix", affix = "of the Stars", "+1 to maximum number of Elemental Infusions", statOrder = { 8840 }, level = 45, group = "MaximumElementalInfusion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, + ["AlloyEffectOfSocketedAugments1"] = { type = "Suffix", affix = "of the Stars", "(20-30)% increased effect of Socketed Augment Items", statOrder = { 177 }, level = 65, group = "LocalSocketItemsEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2081918629] = { "(20-30)% increased effect of Socketed Augment Items" }, } }, + ["AlloyEffectOfResistanceMods1"] = { type = "Prefix", affix = "Verisium", "(20-30)% increased Explicit Resistance Modifier magnitudes", statOrder = { 44 }, level = 65, group = "ArmourEnchantmentHeistResistanceModifierEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1972391381] = { "(20-30)% increased Explicit Resistance Modifier magnitudes" }, } }, + ["AlloySpellLevelManaHybrid1"] = { type = "Prefix", affix = "Verisium", "+(142-188) to maximum Mana", "+1 to Level of all Spell Skills", statOrder = { 891, 949 }, level = 65, group = "ManaSpellLevelHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1050105434] = { "+(142-188) to maximum Mana" }, [124131830] = { "+1 to Level of all Spell Skills" }, } }, + ["AlloyAccuracyAttackSpeedHybrid1"] = { type = "Prefix", affix = "Verisium", "+(327-427) to Accuracy Rating", "(5-8)% increased Attack Speed", statOrder = { 879, 945 }, level = 65, group = "AccuracyAttackSpeedHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [210067635] = { "(5-8)% increased Attack Speed" }, [803737631] = { "+(327-427) to Accuracy Rating" }, } }, + ["AlloyManaNearbyAllyAttackSpeedHybrid1"] = { type = "Prefix", affix = "Verisium", "+(110-114) to maximum Mana", "Allies in your Presence have (4-8)% increased Attack Speed", statOrder = { 891, 917 }, level = 65, group = "ManaNearbyAllyAttackSpeedHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1050105434] = { "+(110-114) to maximum Mana" }, [1998951374] = { "Allies in your Presence have (4-8)% increased Attack Speed" }, } }, + ["AlloyCastSpeedDamageAsExtraColdHybrid1"] = { type = "Suffix", affix = "of the Stars", "(39-47)% increased Cast Speed", "Gain (11-16)% of Elemental Damage as Extra Cold Damage", statOrder = { 986, 9225 }, level = 65, group = "CastSpeedDamageAsExtraColdHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1158842087] = { "Gain (11-16)% of Elemental Damage as Extra Cold Damage" }, [2891184298] = { "(39-47)% increased Cast Speed" }, } }, + ["AlloyAttributeIncreasedLocalPhysicalDamageHybrid1"] = { type = "Suffix", affix = "of the Stars", "(15-20)% increased Physical Damage", "+(7-10) to all Attributes", statOrder = { 829, 1144 }, level = 65, group = "AttributeIncreasedLocalPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2897413282] = { "+(7-10) to all Attributes" }, [1509134228] = { "(15-20)% increased Physical Damage" }, } }, + ["AlloySpiritPresenceAreaOfEffectHybrid1"] = { type = "Suffix", affix = "of the Stars", "(8-12)% increased Spirit", "(50-60)% increased Presence Area of Effect", statOrder = { 856, 1068 }, level = 65, group = "SpiritPresenceAreaOfEffectHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [101878827] = { "(50-60)% increased Presence Area of Effect" }, [3984865854] = { "(8-12)% increased Spirit" }, } }, + ["AlloyNaturesArchon1"] = { type = "Suffix", affix = "of the Stars", "(25-50)% chance to gain Nature's Archon when your Plants Overgrow", statOrder = { 5386 }, level = 65, group = "ChanceToGainNaturesArchon", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3518449420] = { "(25-50)% chance to gain Nature's Archon when your Plants Overgrow" }, } }, + ["AlloyElementalSkillLimit1"] = { type = "Suffix", affix = "of the Stars", "+1 to Limit for Elemental Skills", statOrder = { 6293 }, level = 65, group = "ElementalSkillLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [1713927892] = { "+1 to Limit for Elemental Skills" }, } }, + ["AlloyRetainGlory1"] = { type = "Suffix", affix = "of the Stars", "(60-75)% chance for Skills to retain 40% of Glory on use", statOrder = { 5556 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2749595652] = { "(60-75)% chance for Skills to retain 40% of Glory on use" }, } }, + ["AlloyBellLimit1"] = { type = "Suffix", affix = "of the Stars", "Tempest Bells are destroyed after an additional (4-5) Hits", statOrder = { 4761 }, level = 65, group = "BellHitLimit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [3984146263] = { "Tempest Bells are destroyed after an additional (4-5) Hits" }, } }, + ["AlloyPuppeteerStacks1"] = { type = "Suffix", affix = "of the Stars", "+(4-5) maximum stacks of Puppet Master", statOrder = { 8804 }, level = 65, group = "MaximumPuppeteerStacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, tradeHashes = { [1484026495] = { "+(4-5) maximum stacks of Puppet Master" }, } }, + ["AlloyMeleeStrikeRange1"] = { type = "Suffix", affix = "of the Stars", "+(8-10) to Weapon Range", statOrder = { 2505 }, level = 65, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [350598685] = { "+(8-10) to Weapon Range" }, } }, + ["AlloyBallistaLimit1"] = { type = "Suffix", affix = "of the Stars", "+2 to maximum number of Summoned Ballista Totems", statOrder = { 4165 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1823942939] = { "+2 to maximum number of Summoned Ballista Totems" }, } }, + ["AlloyLightningDamageIgnites1"] = { type = "Suffix", affix = "of the Stars", "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", statOrder = { 7521 }, level = 65, group = "LightningDamageCanIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3121133045] = { "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes" }, } }, + ["AlloyMarkEffect"] = { type = "Suffix", affix = "of the Stars", "(40-50)% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 65, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [712554801] = { "(40-50)% increased Effect of your Mark Skills" }, } }, + ["HandWrapsStrength1"] = { type = "Suffix", affix = "of the Brute", "(7-10)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(7-10)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength2"] = { type = "Suffix", affix = "of the Wrestler", "(11-13)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(11-13)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength3"] = { type = "Suffix", affix = "of the Bear", "(14-16)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(14-16)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength4"] = { type = "Suffix", affix = "of the Lion", "(17-19)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(17-19)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength5"] = { type = "Suffix", affix = "of the Gorilla", "(20-22)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(20-22)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength6"] = { type = "Suffix", affix = "of the Goliath", "(23-25)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(23-25)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength7"] = { type = "Suffix", affix = "of the Leviathan", "(26-28)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(26-28)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsStrength8"] = { type = "Suffix", affix = "of the Titan", "(29-32)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [1840985759] = { "(29-32)% increased Area of Effect for Attacks" }, } }, + ["HandWrapsDexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(15-18)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(15-18)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(19-22)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(19-22)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity3"] = { type = "Suffix", affix = "of the Fox", "+(23-26)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(23-26)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(27-30)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(27-30)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity5"] = { type = "Suffix", affix = "of the Panther", "+(31-35)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(31-35)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(36-40)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(36-40)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(41-45)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(41-45)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(46-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(46-50)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsDexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-60)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 1, group = "AdditionalProjectileChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(51-60)% Surpassing chance to fire an additional Projectile" }, } }, + ["HandWrapsIntelligence1"] = { type = "Suffix", affix = "of the Pupil", "(5-8)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(5-8)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence2"] = { type = "Suffix", affix = "of the Student", "(9-12)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(9-12)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence3"] = { type = "Suffix", affix = "of the Prodigy", "(13-16)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(13-16)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence4"] = { type = "Suffix", affix = "of the Augur", "(17-20)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(17-20)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence5"] = { type = "Suffix", affix = "of the Philosopher", "(21-24)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(21-24)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence6"] = { type = "Suffix", affix = "of the Sage", "(25-28)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(25-28)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence7"] = { type = "Suffix", affix = "of the Savant", "(29-32)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(29-32)% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsIntelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "10% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1004011302] = { "10% increased Cooldown Recovery Rate" }, } }, + ["HandWrapsFireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+1% to Maximum Fire Resistance", "+(11-15)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(11-15)% to Fire Resistance" }, } }, + ["HandWrapsFireResist2"] = { type = "Suffix", affix = "of the Salamander", "+1% to Maximum Fire Resistance", "+(16-20)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(16-20)% to Fire Resistance" }, } }, + ["HandWrapsFireResist3"] = { type = "Suffix", affix = "of the Drake", "+1% to Maximum Fire Resistance", "+(21-25)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, + ["HandWrapsFireResist4"] = { type = "Suffix", affix = "of the Kiln", "+2% to Maximum Fire Resistance", "+(21-25)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(21-25)% to Fire Resistance" }, } }, + ["HandWrapsFireResist5"] = { type = "Suffix", affix = "of the Furnace", "+2% to Maximum Fire Resistance", "+(26-30)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(26-30)% to Fire Resistance" }, } }, + ["HandWrapsFireResist6"] = { type = "Suffix", affix = "of the Volcano", "+2% to Maximum Fire Resistance", "+(31-35)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(31-35)% to Fire Resistance" }, } }, + ["HandWrapsFireResist7"] = { type = "Suffix", affix = "of Magma", "+2% to Maximum Fire Resistance", "+(36-40)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+2% to Maximum Fire Resistance" }, [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, + ["HandWrapsFireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+3% to Maximum Fire Resistance", "+(36-40)% to Fire Resistance", statOrder = { 1008, 1013 }, level = 1, group = "FireResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+3% to Maximum Fire Resistance" }, [3372524247] = { "+(36-40)% to Fire Resistance" }, } }, + ["HandWrapsColdResist1"] = { type = "Suffix", affix = "of the Seal", "+1% to Maximum Cold Resistance", "+(11-15)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(11-15)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist2"] = { type = "Suffix", affix = "of the Penguin", "+1% to Maximum Cold Resistance", "+(16-20)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(16-20)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist3"] = { type = "Suffix", affix = "of the Narwhal", "+1% to Maximum Cold Resistance", "+(21-25)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+2% to Maximum Cold Resistance", "+(21-25)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(21-25)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+2% to Maximum Cold Resistance", "+(26-30)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(26-30)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+2% to Maximum Cold Resistance", "+(31-35)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(31-35)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist7"] = { type = "Suffix", affix = "of the Ice", "+2% to Maximum Cold Resistance", "+(36-40)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, [3676141501] = { "+2% to Maximum Cold Resistance" }, } }, + ["HandWrapsColdResist8"] = { type = "Suffix", affix = "of Haast", "+3% to Maximum Cold Resistance", "+(36-40)% to Cold Resistance", statOrder = { 1009, 1019 }, level = 1, group = "ColdResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [4220027924] = { "+(36-40)% to Cold Resistance" }, [3676141501] = { "+3% to Maximum Cold Resistance" }, } }, + ["HandWrapsLightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+1% to Maximum Lightning Resistance", "+(11-15)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(11-15)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist2"] = { type = "Suffix", affix = "of the Squall", "+1% to Maximum Lightning Resistance", "+(16-20)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(16-20)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist3"] = { type = "Suffix", affix = "of the Storm", "+1% to Maximum Lightning Resistance", "+(21-25)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+2% to Maximum Lightning Resistance", "+(21-25)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(21-25)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+2% to Maximum Lightning Resistance", "+(26-30)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(26-30)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+2% to Maximum Lightning Resistance", "+(31-35)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(31-35)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+2% to Maximum Lightning Resistance", "+(36-40)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+2% to Maximum Lightning Resistance" }, [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, + ["HandWrapsLightningResist8"] = { type = "Suffix", affix = "of Ephij", "+3% to Maximum Lightning Resistance", "+(36-40)% to Lightning Resistance", statOrder = { 1010, 1022 }, level = 1, group = "LightningResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+3% to Maximum Lightning Resistance" }, [1671376347] = { "+(36-40)% to Lightning Resistance" }, } }, + ["HandWrapsChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+1% to Maximum Chaos Resistance", "+(6-9)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(6-9)% to Chaos Resistance" }, } }, + ["HandWrapsChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+1% to Maximum Chaos Resistance", "+(10-13)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(10-13)% to Chaos Resistance" }, } }, + ["HandWrapsChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+1% to Maximum Chaos Resistance", "+(14-17)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(14-17)% to Chaos Resistance" }, } }, + ["HandWrapsChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+1% to Maximum Chaos Resistance", "+(18-21)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(18-21)% to Chaos Resistance" }, } }, + ["HandWrapsChaosResist5"] = { type = "Suffix", affix = "of Exile", "+1% to Maximum Chaos Resistance", "+(22-25)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+1% to Maximum Chaos Resistance" }, [2923486259] = { "+(22-25)% to Chaos Resistance" }, } }, + ["HandWrapsChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+2% to Maximum Chaos Resistance", "+(22-25)% to Chaos Resistance", statOrder = { 1011, 1023 }, level = 1, group = "ChaosResistanceAndMax", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [1301765461] = { "+2% to Maximum Chaos Resistance" }, [2923486259] = { "+(22-25)% to Chaos Resistance" }, } }, + ["HandWrapsIncreasedLife1"] = { type = "Prefix", affix = "Hale", "5% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "5% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife2"] = { type = "Prefix", affix = "Healthy", "6% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "6% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife3"] = { type = "Prefix", affix = "Sanguine", "7% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "7% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife4"] = { type = "Prefix", affix = "Stalwart", "8% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "8% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife5"] = { type = "Prefix", affix = "Stout", "9% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "9% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife6"] = { type = "Prefix", affix = "Robust", "10% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "10% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife7"] = { type = "Prefix", affix = "Rotund", "11% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "11% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife8"] = { type = "Prefix", affix = "Virile", "12% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "12% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife9"] = { type = "Prefix", affix = "Athlete's", "13% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "13% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife10"] = { type = "Prefix", affix = "Fecund", "14% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "14% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife11"] = { type = "Prefix", affix = "Vigorous", "15% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "15% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife12"] = { type = "Prefix", affix = "Rapturous", "16% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "16% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedLife13"] = { type = "Prefix", affix = "Prime", "17% less damage taken while on Low Life", statOrder = { 887 }, level = 1, group = "HandWrapsDamageTakenOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1725136006] = { "17% less damage taken while on Low Life" }, } }, + ["HandWrapsIncreasedMana1"] = { type = "Prefix", affix = "Beryl", "(10-11)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(10-11)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "(12-13)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(12-13)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana3"] = { type = "Prefix", affix = "Azure", "(14-15)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(14-15)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana4"] = { type = "Prefix", affix = "Teal", "(16-17)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(16-17)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "(18-19)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(18-19)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana6"] = { type = "Prefix", affix = "Aqua", "(20-21)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(20-21)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "(22-23)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(22-23)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana8"] = { type = "Prefix", affix = "Gentian", "(24-25)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(24-25)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsIncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "(26-27)% more Attack damage while on Low Mana", statOrder = { 892 }, level = 1, group = "HandWrapsAttackDamageOnLowMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2091975590] = { "(26-27)% more Attack damage while on Low Mana" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Blazing", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEnergyShield2"] = { type = "Prefix", affix = "Anointed", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +1 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "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 = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +2 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "Has +3 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +3 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "Has +4 to Evasion Rating per player level", "Has +1 to maximum Energy Shield per player level", statOrder = { 841, 843 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3188814226] = { "Has +4 to Evasion Rating per player level" }, [2729727878] = { "Has +1 to maximum Energy Shield per player level" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife2"] = { type = "Prefix", affix = "Lobster's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife3"] = { type = "Prefix", affix = "Urchin's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife4"] = { type = "Prefix", affix = "Nautilus'", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife5"] = { type = "Prefix", affix = "Octopus'", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndLife6"] = { type = "Prefix", affix = "Crocodile's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife1"] = { type = "Prefix", affix = "Flea's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife2"] = { type = "Prefix", affix = "Fawn's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife3"] = { type = "Prefix", affix = "Mouflon's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife4"] = { type = "Prefix", affix = "Ram's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife5"] = { type = "Prefix", affix = "Ibex's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndLife6"] = { type = "Prefix", affix = "Stag's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife3"] = { type = "Prefix", affix = "Abbot's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bishop's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife5"] = { type = "Prefix", affix = "Exarch's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEnergyShieldAndLife6"] = { type = "Prefix", affix = "Pope's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife1"] = { type = "Prefix", affix = "Bully's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife2"] = { type = "Prefix", affix = "Thug's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife3"] = { type = "Prefix", affix = "Brute's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife4"] = { type = "Prefix", affix = "Assailant's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife5"] = { type = "Prefix", affix = "Aggressor's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndLife6"] = { type = "Prefix", affix = "Predator's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Augur's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Auspex's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Druid's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Haruspex's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Visionary's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Prophet's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Poet's", "3% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "3% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Musician's", "4% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "4% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Troubadour's", "5% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "5% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Bard's", "6% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "6% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife5"] = { type = "Prefix", affix = "Minstrel's", "7% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "7% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedEvasionAndEnergyShieldAndLife6"] = { type = "Prefix", affix = "Maestro's", "8% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 6029 }, level = 1, group = "RecoupLifeAndEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2319832234] = { "8% of Damage Taken Recouped as Life, Mana and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(7-8)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(7-8)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(9-10)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(9-10)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(11-12)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(11-12)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(13-14)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(13-14)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(15-16)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(15-16)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(17-18)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(17-18)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Incorporeal", "(19-20)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(19-20)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsLocalIncreasedArmourAndEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Ascendant", "(21-22)% more Global Evasion Rating and Energy Shield", statOrder = { 852 }, level = 1, group = "HandWrapsMoreGlobalEvasionEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [711236369] = { "(21-22)% more Global Evasion Rating and Energy Shield" }, } }, + ["HandWrapsReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "+(5-10) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(5-10) to all Attributes" }, } }, + ["HandWrapsReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "+(11-15) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(11-15) to all Attributes" }, } }, + ["HandWrapsReducedLocalAttributeRequirements3"] = { type = "Suffix", affix = "of the Talented", "+(16-20) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(16-20) to all Attributes" }, } }, + ["HandWrapsReducedLocalAttributeRequirements4"] = { type = "Suffix", affix = "of the Skilled", "+(21-25) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(21-25) to all Attributes" }, } }, + ["HandWrapsReducedLocalAttributeRequirements5"] = { type = "Suffix", affix = "of the Proficient", "+(26-30) to all Attributes", statOrder = { 990 }, level = 1, group = "AllAttributes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, tradeHashes = { [1379411836] = { "+(26-30) to all Attributes" }, } }, + ["HandWrapsAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Attacks Gain 10% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 10% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Attacks Gain 11% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 11% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Attacks Gain 12% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 12% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Attacks Gain 13% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 13% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Attacks Gain 14% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain 14% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Attacks Gain (15-16)% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (15-16)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Attacks Gain (17-18)% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (17-18)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Attacks Gain (19-20)% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (19-20)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Attacks Gain (21-23)% of Damage as Extra Physical Damage", statOrder = { 861 }, level = 1, group = "AttackDamageGainedAsPhysical", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, tradeHashes = { [2707870225] = { "Attacks Gain (21-23)% of Damage as Extra Physical Damage" }, } }, + ["HandWrapsAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Attacks Gain 10% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 10% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Attacks Gain 11% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 11% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Attacks Gain 12% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 12% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Attacks Gain 13% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 13% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Attacks Gain 14% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain 14% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Attacks Gain (15-16)% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (15-16)% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Attacks Gain (17-18)% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (17-18)% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Attacks Gain (19-20)% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (19-20)% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Attacks Gain (21-23)% of Damage as Extra Fire Damage", statOrder = { 864 }, level = 1, group = "AttackDamageGainedAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, tradeHashes = { [1049080093] = { "Attacks Gain (21-23)% of Damage as Extra Fire Damage" }, } }, + ["HandWrapsAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Attacks Gain 10% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 10% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Attacks Gain 11% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 11% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Attacks Gain 12% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 12% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Attacks Gain 13% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 13% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Attacks Gain 14% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain 14% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Attacks Gain (15-16)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (15-16)% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Attacks Gain (17-18)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (17-18)% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Attacks Gain (19-20)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (19-20)% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Attacks Gain (21-23)% of Damage as Extra Cold Damage", statOrder = { 866 }, level = 1, group = "AttackDamageGainedAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, tradeHashes = { [1484500028] = { "Attacks Gain (21-23)% of Damage as Extra Cold Damage" }, } }, + ["HandWrapsAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Attacks Gain 10% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 10% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Attacks Gain 11% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 11% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Attacks Gain 12% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 12% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Attacks Gain 13% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 13% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Attacks Gain 14% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain 14% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Attacks Gain (15-16)% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (15-16)% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Attacks Gain (17-18)% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (17-18)% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Attacks Gain (19-20)% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (19-20)% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Attacks Gain (21-23)% of Damage as Extra Lightning Damage", statOrder = { 9224 }, level = 1, group = "AttackDamageGainedAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, tradeHashes = { [318492616] = { "Attacks Gain (21-23)% of Damage as Extra Lightning Damage" }, } }, + ["HandWrapsGlobalMeleeSkillGemLevel1"] = { type = "Suffix", affix = "of Combat", "+(10-12)% to Quality of all Skills", statOrder = { 974 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, tradeHashes = { [3655769732] = { "+(10-12)% to Quality of all Skills" }, } }, + ["HandWrapsGlobalMeleeSkillGemLevel2"] = { type = "Suffix", affix = "of Dueling", "+1 to Level of all Melee Skills", "+(10-12)% to Quality of all Skills", statOrder = { 965, 974 }, level = 1, group = "GlobalSkillGemQualityMeleeLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "gem" }, tradeHashes = { [9187492] = { "+1 to Level of all Melee Skills" }, [3655769732] = { "+(10-12)% to Quality of all Skills" }, } }, + ["HandWrapsLifeLeech1"] = { type = "Suffix", affix = "of the Parasite", "Leech (8-8.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1037, 1894 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-8.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsLifeLeech2"] = { type = "Suffix", affix = "of the Locust", "Leech (9-10.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1037, 1894 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (9-10.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsLifeLeech3"] = { type = "Suffix", affix = "of the Remora", "Leech (11-11.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1037, 1894 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (11-11.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsLifeLeech4"] = { type = "Suffix", affix = "of the Lamprey", "Leech (12-13.9)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1037, 1894 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (12-13.9)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsLifeLeech5"] = { type = "Suffix", affix = "of the Vampire", "Leech (14-15)% of Physical Attack Damage as Life", "Leech Life (20-25)% slower", statOrder = { 1037, 1894 }, level = 1, group = "LifeLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (14-15)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (20-25)% slower" }, } }, + ["HandWrapsManaLeech1"] = { type = "Suffix", affix = "of the Thirsty", "Leech (6-7.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1045, 1896 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (6-7.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, + ["HandWrapsManaLeech2"] = { type = "Suffix", affix = "of the Parched", "Leech (8-8.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1045, 1896 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (8-8.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, + ["HandWrapsManaLeech3"] = { type = "Suffix", affix = "of the Arid", "Leech (9-10.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1045, 1896 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (9-10.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, + ["HandWrapsManaLeech4"] = { type = "Suffix", affix = "of the Drought", "Leech (11-11.9)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1045, 1896 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (11-11.9)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, + ["HandWrapsManaLeech5"] = { type = "Suffix", affix = "of the Desperate", "Leech (12-13)% of Physical Attack Damage as Mana", "Leech Mana (20-25)% slower", statOrder = { 1045, 1896 }, level = 1, group = "ManaLeechAndRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [707457662] = { "Leech (12-13)% of Physical Attack Damage as Mana" }, [3554867738] = { "Leech Mana (20-25)% slower" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Recover 1% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Recover 1% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 1% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Recover 2% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Vanquishing", "Recover 2% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Valour", "Recover 2% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Glory", "Recover 2% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, } }, + ["HandWrapsLifeGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Legend", "Recover 3% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover 3% of maximum Life on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Recover 1% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Infusion", "Recover 1% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 1% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Enveloping", "Recover 2% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Consumption", "Recover 2% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Siphoning", "Recover 2% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath7"] = { type = "Suffix", affix = "of Devouring", "Recover 2% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, } }, + ["HandWrapsManaGainedFromEnemyDeath8"] = { type = "Suffix", affix = "of Assimilation", "Recover 3% of maximum Mana on Kill", statOrder = { 1511 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover 3% of maximum Mana on Kill" }, } }, + ["HandWrapsLifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7421 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (4-6) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, + ["HandWrapsLifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7421 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (7-9) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, + ["HandWrapsLifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7421 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (10-12) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, + ["HandWrapsLifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7421 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (13-15) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, + ["HandWrapsIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(8-12)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(8-12)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(14-18)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(14-18)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(20-24)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(20-24)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(26-30)% chance to gain Onslaught for 4 seconds on Hit", statOrder = { 985 }, level = 1, group = "OnslaughtOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3264616904] = { "(26-30)% chance to gain Onslaught for 4 seconds on Hit" }, } }, + ["HandWrapsIncreasedAccuracy1"] = { type = "Prefix", affix = "Precise", "(12-14)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(12-14)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy2"] = { type = "Prefix", affix = "Reliable", "(15-17)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(15-17)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy3"] = { type = "Prefix", affix = "Focused", "(18-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(18-20)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy4"] = { type = "Prefix", affix = "Deliberate", "(21-23)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(21-23)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy5"] = { type = "Prefix", affix = "Consistent", "(24-26)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(24-26)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy6"] = { type = "Prefix", affix = "Steady", "(27-29)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(27-29)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy7"] = { type = "Prefix", affix = "Hunter's", "(30-32)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(30-32)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy8"] = { type = "Prefix", affix = "Ranger's", "(33-35)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(33-35)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsIncreasedAccuracy9"] = { type = "Prefix", affix = "Amazon's", "(36-38)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(36-38)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["HandWrapsCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(0.5-1)% to Critical Hit Chance", statOrder = { 1354 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(0.5-1)% to Critical Hit Chance" }, } }, + ["HandWrapsCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(1.1-1.5)% to Critical Hit Chance", statOrder = { 1354 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.1-1.5)% to Critical Hit Chance" }, } }, + ["HandWrapsCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(1.6-2)% to Critical Hit Chance", statOrder = { 1354 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(1.6-2)% to Critical Hit Chance" }, } }, + ["HandWrapsCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(2.1-2.5)% to Critical Hit Chance", statOrder = { 1354 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(2.1-2.5)% to Critical Hit Chance" }, } }, + ["HandWrapsCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(2.5-3)% to Critical Hit Chance", statOrder = { 1354 }, level = 1, group = "BaseCriticalHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1909401378] = { "+(2.5-3)% to Critical Hit Chance" }, } }, + ["HandWrapsItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(15-20)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(15-20)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["HandWrapsItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(21-25)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(21-25)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["HandWrapsItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(26-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6894 }, level = 1, group = "GoldFoundIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, tradeHashes = { [3175163625] = { "(26-30)% increased Quantity of Gold Dropped by Slain Enemies" }, } }, + ["HandWrapsEnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Enlivening", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(26-30)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsEnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(31-35)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(31-35)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsEnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(36-40)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(36-40)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsEnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(41-45)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(41-45)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsEnergyShieldRechargeRate5"] = { type = "Suffix", affix = "of Ardour", "(46-50)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(46-50)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsEnergyShieldRechargeRate6"] = { type = "Suffix", affix = "of Suffusion", "(51-55)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(51-55)% faster start of Energy Shield Recharge" }, } }, + ["HandWrapsArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of Covering", "+(10-12)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(10-12)% to all Elemental Resistances" }, } }, + ["HandWrapsArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of Sheathing", "+(13-15)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(13-15)% to all Elemental Resistances" }, } }, + ["HandWrapsArmourAppliesToElementalDamage3"] = { type = "Suffix", affix = "of Lining", "+(16-18)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(16-18)% to all Elemental Resistances" }, } }, + ["HandWrapsArmourAppliesToElementalDamage4"] = { type = "Suffix", affix = "of Padding", "+(19-21)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(19-21)% to all Elemental Resistances" }, } }, + ["HandWrapsArmourAppliesToElementalDamage5"] = { type = "Suffix", affix = "of Furring", "+(22-24)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(22-24)% to all Elemental Resistances" }, } }, + ["HandWrapsEvasionGrantsDeflection1"] = { type = "Suffix", affix = "of Deflecting", "Prevent +3% of Damage from Deflected Hits", statOrder = { 4667 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +3% of Damage from Deflected Hits" }, } }, + ["HandWrapsEvasionGrantsDeflection2"] = { type = "Suffix", affix = "of Bending", "Prevent +4% of Damage from Deflected Hits", statOrder = { 4667 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +4% of Damage from Deflected Hits" }, } }, + ["HandWrapsEvasionGrantsDeflection3"] = { type = "Suffix", affix = "of Curvation", "Prevent +5% of Damage from Deflected Hits", statOrder = { 4667 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +5% of Damage from Deflected Hits" }, } }, + ["HandWrapsEvasionGrantsDeflection4"] = { type = "Suffix", affix = "of Diversion", "Prevent +6% of Damage from Deflected Hits", statOrder = { 4667 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +6% of Damage from Deflected Hits" }, } }, + ["HandWrapsEvasionGrantsDeflection5"] = { type = "Suffix", affix = "of Flexure", "Prevent +7% of Damage from Deflected Hits", statOrder = { 4667 }, level = 1, group = "DeflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3552135623] = { "Prevent +7% of Damage from Deflected Hits" }, } }, + ["HandWrapsAbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(2-3)% to Maximum Lightning Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1010, 1023 }, level = 1, group = "ChaosAndMaxLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [1011760251] = { "+(2-3)% to Maximum Lightning Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, + ["HandWrapsAbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "(7-9)% increased Strength and Dexterity", statOrder = { 1001 }, level = 1, group = "IncreasedStrengthAndDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dexterity", "strength", "attribute" }, tradeHashes = { [4248928173] = { "(7-9)% increased Strength and Dexterity" }, } }, + ["HandWrapsAbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(2-3)% to Maximum Fire Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1008, 1023 }, level = 1, group = "ChaosAndMaxFireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [4095671657] = { "+(2-3)% to Maximum Fire Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, + ["HandWrapsAbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "(7-9)% increased Strength and Intelligence", statOrder = { 1002 }, level = 1, group = "IncreasedStrengthAndIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "intelligence", "strength", "attribute" }, tradeHashes = { [517666337] = { "(7-9)% increased Strength and Intelligence" }, } }, + ["HandWrapsAbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(2-3)% to Maximum Cold Resistance", "+(13-17)% to Chaos Resistance", statOrder = { 1009, 1023 }, level = 1, group = "ChaosAndMaxColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3676141501] = { "+(2-3)% to Maximum Cold Resistance" }, [2923486259] = { "+(13-17)% to Chaos Resistance" }, } }, + ["HandWrapsAbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "(7-9)% increased Dexterity and Intelligence", statOrder = { 1003 }, level = 1, group = "IncreasedDexterityAndIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dexterity", "intelligence", "attribute" }, tradeHashes = { [3300318172] = { "(7-9)% increased Dexterity and Intelligence" }, } }, + ["HandWrapsAbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Reservation Efficiency of Skills", statOrder = { 1953 }, level = 1, group = "ReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2587176568] = { "(6-10)% increased Reservation Efficiency of Skills" }, } }, + ["HandWrapsAbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5804 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(20-35)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, + ["HandWrapsAbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "Chance to Poison is calculated from your base chance to inflict Bleeding instead", statOrder = { 4725 }, level = 1, group = "BaseBleedChanceAppliesToPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "poison", "physical", "chaos", "ailment" }, tradeHashes = { [1670828838] = { "Chance to Poison is calculated from your base chance to inflict Bleeding instead" }, } }, + ["HandWrapsAbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "Chance to inflict Bleeding is calculated from your base chance to Poison instead", statOrder = { 4648 }, level = 1, group = "BasePoisonChanceAppliesToBleed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "poison", "physical", "chaos", "ailment" }, tradeHashes = { [1710906986] = { "Chance to inflict Bleeding is calculated from your base chance to Poison instead" }, } }, + ["HandWrapsAbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "Attack Hits Aggravate any Bleeding on targets which is older than (3-4) seconds", statOrder = { 4228 }, level = 1, group = "AggravateOldBleedOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [521615509] = { "Attack Hits Aggravate any Bleeding on targets which is older than (3-4) seconds" }, } }, + ["HandWrapsAbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(13-17)% increased Attack Speed if you haven't been Hit Recently", statOrder = { 4541 }, level = 1, group = "AttackSpeedIfNotHitRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3842707164] = { "(13-17)% increased Attack Speed if you haven't been Hit Recently" }, } }, + ["HandWrapsAbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Mark Skills have (15-25)% increased Use Speed", statOrder = { 1944 }, level = 1, group = "MarkCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, tradeHashes = { [1714971114] = { "Mark Skills have (15-25)% increased Use Speed" }, } }, + ["HandWrapsAbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies", statOrder = { 9237 }, level = 1, group = "DamageGainedAsColdVsDazed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [4212675042] = { "Gain (11-15)% of Physical Damage as Extra Cold Damage against Dazed Enemies" }, } }, + ["HandWrapsAbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "Life Leech can Overflow Maximum Life", statOrder = { 7430 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2714890129] = { "Life Leech can Overflow Maximum Life" }, } }, + ["HandWrapsAbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(26-35)% increased Damage against Immobilised Enemies", statOrder = { 5945 }, level = 1, group = "ImmobiliseIncreasedDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3120508478] = { "(26-35)% increased Damage against Immobilised Enemies" }, } }, + ["HandWrapsAbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(5-10)% chance to gain a Power Charge on Critical Hit", statOrder = { 1583 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge", "critical" }, tradeHashes = { [3814876985] = { "(5-10)% chance to gain a Power Charge on Critical Hit" }, } }, + ["HandWrapsAbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(17-23)% increased Attack Speed when on Full Life", statOrder = { 1177 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [4268321763] = { "(17-23)% increased Attack Speed when on Full Life" }, } }, + ["HandWrapsDecayInfluenceIgniteMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies killed by your Hits are destroyed", "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6326, 6498, 6498.1 }, level = 1, group = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (10-30)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, + ["HandWrapsDecayInfluenceIgniteMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies killed by your Hits are destroyed", "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6326, 6498, 6498.1 }, level = 1, group = "EnemiesDestroyedOnKillAndBurningEnemiesExplodeOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [1617268696] = { "Burning Enemies you kill have a (31-50)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage" }, [2970902024] = { "Enemies killed by your Hits are destroyed" }, } }, + ["HandWrapsDecayInfluenceBleedMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (10-30)% chance to explode, dealing a tenth of their maximum Life as Physical damage", statOrder = { 3009 }, level = 1, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you kill have a (10-30)% chance to explode, dealing a tenth of their maximum Life as Physical damage" }, } }, + ["HandWrapsDecayInfluenceBleedMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (31-50)% chance to explode, dealing a tenth of their maximum Life as Physical damage", statOrder = { 3009 }, level = 1, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3295179224] = { "Enemies you kill have a (31-50)% chance to explode, dealing a tenth of their maximum Life as Physical damage" }, } }, + ["HandWrapsDecayInfluencePoisonMagnitude1"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (9-14)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 3010 }, level = 1, group = "ExplodeOnKillChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1776945532] = { "Enemies you kill have a (9-14)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, + ["HandWrapsDecayInfluencePoisonMagnitude2"] = { type = "Prefix", affix = "Katla's", "Enemies you kill have a (15-20)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 3010 }, level = 1, group = "ExplodeOnKillChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1776945532] = { "Enemies you kill have a (15-20)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, + ["HandWrapsDecayInfluenceAilmentMagnitude1"] = { type = "Prefix", affix = "Katla's", "+(10-25) to Ailment Threshold", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4254, 4256 }, level = 1, group = "AilmentThresholdAndIncreasedAilmentThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1488650448] = { "+(10-25) to Ailment Threshold" }, [3544800472] = { "(10-20)% increased Elemental Ailment Threshold" }, } }, + ["HandWrapsDecayInfluenceAilmentMagnitude2"] = { type = "Prefix", affix = "Katla's", "+(26-40) to Ailment Threshold", "(21-35)% increased Elemental Ailment Threshold", statOrder = { 4254, 4256 }, level = 1, group = "AilmentThresholdAndIncreasedAilmentThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [1488650448] = { "+(26-40) to Ailment Threshold" }, [3544800472] = { "(21-35)% increased Elemental Ailment Threshold" }, } }, + ["HandWrapsDecayInfluenceFasterDamagingAilments1"] = { type = "Prefix", affix = "Katla's", "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6244, 6244.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (5-10)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, + ["HandWrapsDecayInfluenceFasterDamagingAilments2"] = { type = "Prefix", affix = "Katla's", "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 6244, 6244.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1509533589] = { "Enemies take (11-15)% increased Damage for each Elemental Ailment type among", "your Ailments on them" }, } }, + ["HandWrapsDecayInfluenceAilmentDuration1"] = { type = "Suffix", affix = "of Decay", "(10-22)% increased Duration of Ailments on Enemies", statOrder = { 1614 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(10-22)% increased Duration of Ailments on Enemies" }, } }, + ["HandWrapsDecayInfluenceAilmentDuration2"] = { type = "Suffix", affix = "of Decay", "(23-37)% increased Duration of Ailments on Enemies", statOrder = { 1614 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, tradeHashes = { [2419712247] = { "(23-37)% increased Duration of Ailments on Enemies" }, } }, + ["HandWrapsDecayInfluenceFasterLeech1"] = { type = "Suffix", affix = "of Decay", "(15-35)% increased Damage while Leeching", statOrder = { 2793 }, level = 1, group = "DamageWhileLeeching", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [310246444] = { "(15-35)% increased Damage while Leeching" }, } }, + ["HandWrapsDecayInfluenceSlowerLeech1"] = { type = "Suffix", affix = "of Decay", "(15-35)% increased Evasion while Leeching", statOrder = { 6487 }, level = 1, group = "IncreasedEvasionRatingWhileLeeching", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [3854334101] = { "(15-35)% increased Evasion while Leeching" }, } }, + ["HandWrapsDecayInfluenceLeechAmount1"] = { type = "Suffix", affix = "of Decay", "Leech (7-12)% of Physical Attack Damage as Life", statOrder = { 1037 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [2557965901] = { "Leech (7-12)% of Physical Attack Damage as Life" }, } }, + ["HandWrapsDecayInfluenceWitherMagnitude1"] = { type = "Suffix", affix = "of Decay", "Damage with Weapons Penetrates (5-9)% Chaos Resistance", statOrder = { 3271 }, level = 1, group = "ChaosPenetrationWithAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2237902788] = { "Damage with Weapons Penetrates (5-9)% Chaos Resistance" }, } }, + ["HandWrapsDecayInfluenceWitherMagnitude2"] = { type = "Suffix", affix = "of Decay", "Damage with Weapons Penetrates (10-17)% Chaos Resistance", statOrder = { 3271 }, level = 1, group = "ChaosPenetrationWithAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2237902788] = { "Damage with Weapons Penetrates (10-17)% Chaos Resistance" }, } }, + ["HandWrapsDecayInfluenceCurseMagnitude1"] = { type = "Suffix", affix = "of Decay", "You can apply an additional Curse", statOrder = { 1907 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, } }, + ["HandWrapsDecayInfluenceCurseMagnitude2"] = { type = "Suffix", affix = "of Decay", "You can apply an additional Curse", "(5-15)% increased Curse Magnitudes", statOrder = { 1907, 2374 }, level = 1, group = "AdditionalCurseOnEnemiesAndCurseMagnitude", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, tradeHashes = { [30642521] = { "You can apply an additional Curse" }, [2353576063] = { "(5-15)% increased Curse Magnitudes" }, } }, + ["HandWrapsDecayInfluenceExposureEffect1"] = { type = "Suffix", affix = "of Decay", "Damage Penetrates (4-8)% Elemental Resistances", statOrder = { 2721 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (4-8)% Elemental Resistances" }, } }, + ["HandWrapsDecayInfluenceExposureEffect2"] = { type = "Suffix", affix = "of Decay", "Damage Penetrates (9-15)% Elemental Resistances", statOrder = { 2721 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates (9-15)% Elemental Resistances" }, } }, + ["HandWrapsDecayInfluenceIncreasedCurseDuration1"] = { type = "Suffix", affix = "of Decay", "Gain (1-10) Life per Cursed Enemy Hit with Attacks", statOrder = { 7422 }, level = 1, group = "LifeGainOnHitCursedEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, tradeHashes = { [3072303874] = { "Gain (1-10) Life per Cursed Enemy Hit with Attacks" }, } }, + ["HandWrapsDecayInfluenceFasterCurseActivation1"] = { type = "Suffix", affix = "of Decay", "Gain (1-10) Mana per Cursed Enemy Hit with Attacks", statOrder = { 7956 }, level = 1, group = "ManaGainOnHitCursedEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, tradeHashes = { [2087996552] = { "Gain (1-10) Mana per Cursed Enemy Hit with Attacks" }, } }, + ["HandWrapsMarksmanInfluenceProjectileDamage1"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire an additional Projectile", statOrder = { 3847 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire an additional Projectile" }, } }, + ["HandWrapsMarksmanInfluenceProjectileDamage2"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire 2 additional Projectiles", statOrder = { 3847 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire 2 additional Projectiles" }, } }, + ["HandWrapsMarksmanInfluenceProjectileDamage3"] = { type = "Prefix", affix = "Kolr's", "Melee Attacks fire 3 additional Projectiles", statOrder = { 3847 }, level = 1, group = "MeleeAttackAdditionalProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "melee", "attack" }, tradeHashes = { [1776942008] = { "Melee Attacks fire 3 additional Projectiles" }, } }, + ["HandWrapsMarksmanInfluenceMarkEffect1"] = { type = "Prefix", affix = "Kolr's", "(32-46)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5820 }, level = 1, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1045789614] = { "(32-46)% increased Critical Hit Chance against Marked Enemies" }, } }, + ["HandWrapsMarksmanInfluenceMarkEffect2"] = { type = "Prefix", affix = "Kolr's", "(47-61)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5820 }, level = 1, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHashes = { [1045789614] = { "(47-61)% increased Critical Hit Chance against Marked Enemies" }, } }, + ["HandWrapsMarksmanInfluenceProjectileSpeed1"] = { type = "Prefix", affix = "Kolr's", "(1-2)% increased Projectile Damage per Power Charge", statOrder = { 2413 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(1-2)% increased Projectile Damage per Power Charge" }, } }, + ["HandWrapsMarksmanInfluenceProjectileSpeed2"] = { type = "Prefix", affix = "Kolr's", "(3-4)% increased Projectile Damage per Power Charge", statOrder = { 2413 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(3-4)% increased Projectile Damage per Power Charge" }, } }, + ["HandWrapsMarksmanInfluenceProjectileSpeed3"] = { type = "Prefix", affix = "Kolr's", "(5-6)% increased Projectile Damage per Power Charge", statOrder = { 2413 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [3816512110] = { "(5-6)% increased Projectile Damage per Power Charge" }, } }, + ["HandWrapsMarksmanInfluenceCriticalHitChance1"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (30-39)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (30-39)% reduced Critical Damage Bonus" }, } }, + ["HandWrapsMarksmanInfluenceCriticalHitChance2"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (40-49)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (40-49)% reduced Critical Damage Bonus" }, } }, + ["HandWrapsMarksmanInfluenceCriticalHitChance3"] = { type = "Suffix", affix = "of the Hunt", "Hits against you have (50-60)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (50-60)% reduced Critical Damage Bonus" }, } }, + ["HandWrapsMarksmanInfluenceChanceToPierce1"] = { type = "Prefix", affix = "of the Hunt", "Projectiles Pierce an additional Target", statOrder = { 1547 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce an additional Target" }, } }, + ["HandWrapsMarksmanInfluenceChanceToPierce2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles Pierce 2 additional Targets", statOrder = { 1547 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2067062068] = { "Projectiles Pierce 2 additional Targets" }, } }, + ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (15-20)% chance to Shock", statOrder = { 2474 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (15-20)% chance to Shock" }, } }, + ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (21-25)% chance to Shock", statOrder = { 2474 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (21-25)% chance to Shock" }, } }, + ["HandWrapsMarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (26-30)% chance to Shock", statOrder = { 2474 }, level = 1, group = "ProjectileShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2803352419] = { "Projectiles have (26-30)% chance to Shock" }, } }, + ["HandWrapsMarksmanInfluenceChainToChainOffTerrain1"] = { type = "Suffix", affix = "of the Hunt", "Attacks Chain an additional time", statOrder = { 3781 }, level = 1, group = "AttacksChainAdditionalTimes", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain an additional time" }, } }, + ["HandWrapsMarksmanInfluenceChainToChainOffTerrain2"] = { type = "Suffix", affix = "of the Hunt", "Attacks Chain 2 additional times", statOrder = { 3781 }, level = 1, group = "AttacksChainAdditionalTimes", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3868118796] = { "Attacks Chain 2 additional times" }, } }, + ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9524 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2189073790] = { "Projectiles have (45-64)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["HandWrapsMarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9524 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2189073790] = { "Projectiles have (65-85)% chance to Fork if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["HandWrapsMarksmanInfluenceIncreasedMarkDuration1"] = { type = "Suffix", affix = "of the Hunt", "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres", statOrder = { 10580 }, level = 1, group = "SpreadMarkOnConsume", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4031619030] = { "When your Marks are Consumed, they have (10-19)% chance to Mark another Enemy within 3 metres" }, } }, + ["HandWrapsMarksmanInfluenceIncreasedMarkDuration2"] = { type = "Suffix", affix = "of the Hunt", "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres", statOrder = { 10580 }, level = 1, group = "SpreadMarkOnConsume", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4031619030] = { "When your Marks are Consumed, they have (20-29)% chance to Mark another Enemy within 3 metres" }, } }, + ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed1"] = { type = "Suffix", affix = "of the Hunt", "(10-19)% increased Damage with Hits against Marked Enemy", statOrder = { 5965 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(10-19)% increased Damage with Hits against Marked Enemy" }, } }, + ["HandWrapsMarksmanInfluenceMarkSkillUseSpeed2"] = { type = "Suffix", affix = "of the Hunt", "(20-29)% increased Damage with Hits against Marked Enemy", statOrder = { 5965 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [2001747092] = { "(20-29)% increased Damage with Hits against Marked Enemy" }, } }, + ["HandWrapsMarksmanInfluenceMarkSkillLevels1"] = { type = "Suffix", affix = "of the Hunt", "Enemies you Mark take (1-5)% increased Damage", statOrder = { 8793 }, level = 1, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2083058281] = { "Enemies you Mark take (1-5)% increased Damage" }, } }, + ["HandWrapsMarksmanInfluenceMarkSkillLevels2"] = { type = "Suffix", affix = "of the Hunt", "Enemies you Mark take (6-10)% increased Damage", statOrder = { 8793 }, level = 1, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2083058281] = { "Enemies you Mark take (6-10)% increased Damage" }, } }, + ["HandWrapsMarksmanInfluenceProjectileSkills1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (25-44)% chance to Fork", statOrder = { 9503 }, level = 1, group = "ProjectileChanceToFork", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1549287843] = { "Projectiles have (25-44)% chance to Fork" }, } }, + ["HandWrapsMarksmanInfluenceProjectileSkills2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (45-65)% chance to Fork", statOrder = { 9503 }, level = 1, group = "ProjectileChanceToFork", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [1549287843] = { "Projectiles have (45-65)% chance to Fork" }, } }, + ["HandWrapsAlloyRemnantPickupRange1"] = { type = "Suffix", affix = "of the Stars", "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5790 }, level = 1, group = "RemnantGrantEffectTwiceChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(17-23)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["HandWrapsAlloyCastSpeedGloves1"] = { type = "Suffix", affix = "of the Stars", "(10-30)% chance to gain a Power Charge when you Stun", statOrder = { 2529 }, level = 1, group = "PowerChargeOnStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "(10-30)% chance to gain a Power Charge when you Stun" }, } }, + ["HandWrapsAlloyDamagingAilmentDuration1"] = { type = "Suffix", affix = "of the Stars", "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5804 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(15-25)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, + ["HandWrapsAlloyElementalPenetration1"] = { type = "Suffix", affix = "of the Stars", "+(20-30)% to all Elemental Resistances", statOrder = { 1012 }, level = 1, group = "AllResistances", weightKey = { "default", }, weightVal = { 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(20-30)% to all Elemental Resistances" }, } }, + ["HandWrapsAlloyAttackAreaOfEffect1"] = { type = "Suffix", affix = "of the Stars", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4484 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [434750362] = { "1% increased Area of Effect for Attacks per 10 Intelligence" }, } }, + ["HandWrapsEssenceLightningRecoupLife1"] = { type = "Suffix", affix = "of the Essence", "(12-23)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 6102 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3471443885] = { "(12-23)% of Damage taken from Deflected Hits Recouped as Life" }, } }, + ["HandWrapsEssenceGoldDropped1"] = { type = "Suffix", affix = "of the Essence", "Charms gain (0.13-0.27) charges per Second", statOrder = { 6866 }, level = 1, group = "CharmChargeGeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "charm" }, tradeHashes = { [185580205] = { "Charms gain (0.13-0.27) charges per Second" }, } }, + ["HandWrapsEssenceLocalRuneAndSoulCoreEffect1"] = { type = "Suffix", affix = "of the Essence", "Life Flasks gain (0.13-0.27) charges per Second", "Mana Flasks gain (0.13-0.27) charges per Second", statOrder = { 6869, 6870 }, level = 1, group = "GenerateLifeAndManaFlasksChargesPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "mana" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.13-0.27) charges per Second" }, [2200293569] = { "Mana Flasks gain (0.13-0.27) charges per Second" }, } }, + ["HandWrapsUniqueMutatedVaalMaximumManaIncreasePercent"] = { type = "Prefix", affix = "", "+(36-42) to maximum Mana", "(15-35)% increased Attack Damage", statOrder = { 891, 1155 }, level = 1, group = "AttackDamageAndBaseMaximumMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "damage", "attack" }, tradeHashes = { [1050105434] = { "+(36-42) to maximum Mana" }, [2843214518] = { "(15-35)% increased Attack Damage" }, } }, + ["HandWrapsUniqueMutatedVaalManaLeechPermyriad"] = { type = "Prefix", affix = "", "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9647 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2456226238] = { "Recover (2-6)% of your maximum Mana when an Enemy dies in your Presence" }, } }, + ["HandWrapsUniqueMutatedVaalEnergyOnFullMana"] = { type = "Prefix", affix = "", "(25-45)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [472520716] = { "(25-45)% of Damage taken Recouped as Mana" }, } }, + ["HandWrapsUniqueMutatedVaalManaCostEfficiency"] = { type = "Prefix", affix = "", "(15-40)% reduced Mana Cost of Attacks", statOrder = { 4528 }, level = 1, group = "ReducedAttackManaCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [2859471749] = { "(15-40)% reduced Mana Cost of Attacks" }, } }, + ["HandWrapsUniqueMutatedVaalSkillCostEfficiency"] = { type = "Prefix", affix = "", "Non-Channelling Skills Cost -(8-3) Mana", statOrder = { 9869 }, level = 1, group = "ManaCostBaseNonChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHashes = { [407482587] = { "Non-Channelling Skills Cost -(8-3) Mana" }, } }, + ["HandWrapsUniqueMutatedVaalSpellLifeCostPercent"] = { type = "Prefix", affix = "", "Attacks have added Physical damage equal to (1-3)% of maximum Life", statOrder = { 4454 }, level = 1, group = "PhysicalDamageMaximumLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, tradeHashes = { [2723294374] = { "Attacks have added Physical damage equal to (1-3)% of maximum Life" }, } }, + ["HandWrapsUniqueMutatedVaalArcaneSurgeEffect"] = { type = "Prefix", affix = "", "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently", statOrder = { 7421 }, level = 1, group = "LifeOnHitIfCritRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [20762282] = { "Gain (16-24) Life per Enemy Hit with Attacks if you have dealt a Critical Hit Recently" }, } }, + ["HandWrapsUniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { type = "Prefix", affix = "", "(20-30)% increased Attack Damage while on Low Life", statOrder = { 4520 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4246007234] = { "(20-30)% increased Attack Damage while on Low Life" }, } }, + ["HandWrapsUniqueMutatedVaalGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "", "Dazes on Hit", statOrder = { 4658 }, level = 1, group = "DazeBuildup", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3146310524] = { "Dazes on Hit" }, } }, + ["HandWrapsUniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { type = "Suffix", affix = "", "(10-60)% reduced Poison Duration on you", statOrder = { 1066 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(10-60)% reduced Poison Duration on you" }, } }, + ["HandWrapsUniqueMutatedVaalGlobalChaosGemLevel"] = { type = "Suffix", affix = "", "Attacks have added Chaos damage equal to (1-3)% of maximum Life", statOrder = { 4453 }, level = 1, group = "ChaosDamageMaximumLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, tradeHashes = { [1141563002] = { "Attacks have added Chaos damage equal to (1-3)% of maximum Life" }, } }, + ["HandWrapsUniqueMutatedVaalPoisonEffect"] = { type = "Suffix", affix = "", "Critical Hits Poison the enemy", statOrder = { 9461 }, level = 1, group = "PoisonOnCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHashes = { [62849030] = { "Critical Hits Poison the enemy" }, } }, + ["HandWrapsUniqueMutatedVaalIncreasedLifePercent"] = { type = "Suffix", affix = "", "+(205-221) to maximum Life", statOrder = { 886 }, level = 1, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [3299347043] = { "+(205-221) to maximum Life" }, } }, + ["HandWrapsUniqueMutatedVaalAddedMaximumEnergyShield"] = { type = "Suffix", affix = "", "(7-16)% increased maximum Energy Shield", statOrder = { 885 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(7-16)% increased maximum Energy Shield" }, } }, + ["HandWrapsUniqueMutatedVaalLifeLeechAmount"] = { type = "Suffix", affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 2926 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [4224337800] = { "Life Leech effects are not removed when Unreserved Life is Filled" }, } }, + ["HandWrapsUniqueMutatedVaalChanceToBleed"] = { type = "Suffix", affix = "", "Attacks have (35-80)% chance to cause Bleeding", statOrder = { 2268 }, level = 1, group = "ChanceToBleed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (35-80)% chance to cause Bleeding" }, } }, + ["HandWrapsUniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { type = "Suffix", affix = "", "+(12-23)% to Chaos Resistance per Poison on you", "Poison you inflict is Reflected to you", statOrder = { 5577, 9462 }, level = 1, group = "ChaosResistancePerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "poison", "chaos", "resistance", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, [175362265] = { "+(12-23)% to Chaos Resistance per Poison on you" }, } }, + ["HandWrapsUniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { type = "Suffix", affix = "", "(20-35)% increased Damage for each Poison on you up to a maximum of 75%", "Poison you inflict is Reflected to you", statOrder = { 5994, 9462 }, level = 1, group = "DamageIncreasePerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, tradeHashes = { [1034580601] = { "(20-35)% increased Damage for each Poison on you up to a maximum of 75%" }, [2374357674] = { "Poison you inflict is Reflected to you" }, } }, + ["HandWrapsUniqueMutatedVaalReducedPoisonDuration"] = { type = "Suffix", affix = "", "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%", "Poison you inflict is Reflected to you", statOrder = { 9129, 9462 }, level = 1, group = "MovementSpeedPerPoisonOnSelfAndReflectPoisonToSelf", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "speed", "ailment" }, tradeHashes = { [2374357674] = { "Poison you inflict is Reflected to you" }, [1360723495] = { "(17-25)% increased Movement Speed for each Poison on you up to a maximum of 50%" }, } }, + ["HandWrapsUniqueMutatedVaalIgniteEffect1"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Ignited", statOrder = { 1600 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1783006896] = { "(20-50)% chance to Avoid being Ignited" }, } }, + ["HandWrapsUniqueMutatedVaalChillEffect"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Chilled", statOrder = { 1598 }, level = 1, group = "AvoidChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(20-50)% chance to Avoid being Chilled" }, } }, + ["HandWrapsUniqueMutatedVaalFreezeDuration"] = { type = "Suffix", affix = "", "Regenerate (5-15)% of maximum Life per second while Frozen", statOrder = { 3417 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHashes = { [2656696317] = { "Regenerate (5-15)% of maximum Life per second while Frozen" }, } }, + ["HandWrapsUniqueMutatedVaalShockEffect"] = { type = "Suffix", affix = "", "(20-50)% chance to Avoid being Shocked", statOrder = { 1602 }, level = 1, group = "AvoidShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1871765599] = { "(20-50)% chance to Avoid being Shocked" }, } }, + ["HandWrapsUniqueMutatedVaalCurseEffectiveness"] = { type = "Suffix", affix = "", "(20-30)% reduced effect of Curses on you", statOrder = { 1909 }, level = 1, group = "ReducedCurseEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3407849389] = { "(20-30)% reduced effect of Curses on you" }, } }, + ["HandWrapsUniqueMutatedVaalDamagePerCurse"] = { type = "Suffix", affix = "", "(10-20)% increased Damage with Hits per Curse on Enemy", statOrder = { 2747 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, tradeHashes = { [1818773442] = { "(10-20)% increased Damage with Hits per Curse on Enemy" }, } }, + ["HandWrapsUniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { type = "Suffix", affix = "", "Gain (1-3) Rage on Melee Hit", statOrder = { 6850 }, level = 1, group = "RageOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain (1-3) Rage on Melee Hit" }, } }, + ["HandWrapsUniqueMutatedVaalMaxRageFromRageOnHitChance"] = { type = "Suffix", affix = "", "Gain 1% of Physical Damage as Extra Fire Damage per Rage", statOrder = { 9260 }, level = 1, group = "PhysicalAddedAsFirePerRage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1336175820] = { "Gain 1% of Physical Damage as Extra Fire Damage per Rage" }, } }, + ["HandWrapsUniqueMutatedVaalIncreasedAttackSpeed"] = { type = "Suffix", affix = "", "Attack Skills have Added Lightning Damage equal to (1-5)% of maximum Mana", statOrder = { 4540 }, level = 1, group = "AttackLightningDamageMaximumMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2778228111] = { "Attack Skills have Added Lightning Damage equal to (1-5)% of maximum Mana" }, } }, + ["MinionDamage1"] = { type = "Prefix", affix = "Hustler's", "Minions deal (7-9)% increased Damage", statOrder = { 1718 }, level = 13, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (7-9)% increased Damage" }, } }, + ["MinionDamage2"] = { type = "Prefix", affix = "Conniver's", "Minions deal (10-12)% increased Damage", statOrder = { 1718 }, level = 26, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (10-12)% increased Damage" }, } }, + ["MinionDamage3"] = { type = "Prefix", affix = "Schemer's", "Minions deal (13-15)% increased Damage", statOrder = { 1718 }, level = 33, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (13-15)% increased Damage" }, } }, + ["MinionDamage4"] = { type = "Prefix", affix = "Plotter's", "Minions deal (16-18)% increased Damage", statOrder = { 1718 }, level = 46, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (16-18)% increased Damage" }, } }, + ["MinionDamage5"] = { type = "Prefix", affix = "Conspirator's", "Minions deal (19-21)% increased Damage", statOrder = { 1718 }, level = 54, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (19-21)% increased Damage" }, } }, + ["MinionDamage6"] = { type = "Prefix", affix = "Exploiter's", "Minions deal (22-24)% increased Damage", statOrder = { 1718 }, level = 65, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (22-24)% increased Damage" }, } }, + ["MinionDamage7"] = { type = "Prefix", affix = "Manipulator's", "Minions deal (25-27)% increased Damage", statOrder = { 1718 }, level = 70, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (25-27)% increased Damage" }, } }, + ["MinionDamage8"] = { type = "Prefix", affix = "Puppeteer's", "Minions deal (28-31)% increased Damage", statOrder = { 1718 }, level = 82, group = "MinionDamage", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (28-31)% increased Damage" }, } }, + ["MinionMovementSpeed1"] = { type = "Suffix", affix = "of Persuasion", "Minions have (5-7)% increased Movement Speed", statOrder = { 1526 }, level = 27, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (5-7)% increased Movement Speed" }, } }, + ["MinionMovementSpeed2"] = { type = "Suffix", affix = "of Pressure", "Minions have (8-10)% increased Movement Speed", statOrder = { 1526 }, level = 48, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (8-10)% increased Movement Speed" }, } }, + ["MinionMovementSpeed3"] = { type = "Suffix", affix = "of Coercion", "Minions have (11-13)% increased Movement Speed", statOrder = { 1526 }, level = 68, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (11-13)% increased Movement Speed" }, } }, + ["MinionMovementSpeed4"] = { type = "Suffix", affix = "of Compulsion", "Minions have (14-16)% increased Movement Speed", statOrder = { 1526 }, level = 77, group = "MinionMovementSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [174664100] = { "Minions have (14-16)% increased Movement Speed" }, } }, + ["MinionElementalResistance1"] = { type = "Suffix", affix = "of Numbness", "Minions have +(7-9)% to all Elemental Resistances", statOrder = { 2665 }, level = 22, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(7-9)% to all Elemental Resistances" }, } }, + ["MinionElementalResistance2"] = { type = "Suffix", affix = "of Dullness", "Minions have +(10-12)% to all Elemental Resistances", statOrder = { 2665 }, level = 38, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(10-12)% to all Elemental Resistances" }, } }, + ["MinionElementalResistance3"] = { type = "Suffix", affix = "of Desensitisation", "Minions have +(14-16)% to all Elemental Resistances", statOrder = { 2665 }, level = 49, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(14-16)% to all Elemental Resistances" }, } }, + ["MinionElementalResistance4"] = { type = "Suffix", affix = "of Conditioning", "Minions have +(17-19)% to all Elemental Resistances", statOrder = { 2665 }, level = 57, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(17-19)% to all Elemental Resistances" }, } }, + ["MinionElementalResistance5"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(20-22)% to all Elemental Resistances", statOrder = { 2665 }, level = 66, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(20-22)% to all Elemental Resistances" }, } }, + ["MinionElementalResistance6"] = { type = "Suffix", affix = "of Adaptation", "Minions have +(23-25)% to all Elemental Resistances", statOrder = { 2665 }, level = 73, group = "MinionElementalResistance", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(23-25)% to all Elemental Resistances" }, } }, + ["MinionAttackSpeedAndCastSpeed1"] = { type = "Suffix", affix = "of Guidance", "Minions have (3-4)% increased Attack and Cast Speed", statOrder = { 8968 }, level = 31, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (3-4)% increased Attack and Cast Speed" }, } }, + ["MinionAttackSpeedAndCastSpeed2"] = { type = "Suffix", affix = "of Direction", "Minions have (5-6)% increased Attack and Cast Speed", statOrder = { 8968 }, level = 53, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (5-6)% increased Attack and Cast Speed" }, } }, + ["MinionAttackSpeedAndCastSpeed3"] = { type = "Suffix", affix = "of Management", "Minions have (7-8)% increased Attack and Cast Speed", statOrder = { 8968 }, level = 69, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (7-8)% increased Attack and Cast Speed" }, } }, + ["MinionAttackSpeedAndCastSpeed4"] = { type = "Suffix", affix = "of Control", "Minions have (9-10)% increased Attack and Cast Speed", statOrder = { 8968 }, level = 80, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (9-10)% increased Attack and Cast Speed" }, } }, + ["MinionCriticalStrikeChanceRing1"] = { type = "Suffix", affix = "of Pricking", "Minions have (5-12)% increased Critical Hit Chance", statOrder = { 8995 }, level = 18, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (5-12)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeChanceRing2"] = { type = "Suffix", affix = "of Stinging", "Minions have (13-20)% increased Critical Hit Chance", statOrder = { 8995 }, level = 32, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (13-20)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeChanceRing3"] = { type = "Suffix", affix = "of Gouging", "Minions have (21-28)% increased Critical Hit Chance", statOrder = { 8995 }, level = 45, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (21-28)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeChanceRing4"] = { type = "Suffix", affix = "of Puncturing", "Minions have (29-36)% increased Critical Hit Chance", statOrder = { 8995 }, level = 58, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (29-36)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeChanceRing5"] = { type = "Suffix", affix = "of Lacinating", "Minions have (37-44)% increased Critical Hit Chance", statOrder = { 8995 }, level = 70, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (37-44)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeChanceRing6"] = { type = "Suffix", affix = "of Piercing", "Minions have (45-52)% increased Critical Hit Chance", statOrder = { 8995 }, level = 81, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (45-52)% increased Critical Hit Chance" }, } }, + ["MinionCriticalStrikeMultiplierRing1"] = { type = "Suffix", affix = "of Quashing", "Minions have (6-10)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 17, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (6-10)% increased Critical Damage Bonus" }, } }, + ["MinionCriticalStrikeMultiplierRing2"] = { type = "Suffix", affix = "of Purging", "Minions have (11-15)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 30, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (11-15)% increased Critical Damage Bonus" }, } }, + ["MinionCriticalStrikeMultiplierRing3"] = { type = "Suffix", affix = "of Elimination", "Minions have (16-20)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 44, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (16-20)% increased Critical Damage Bonus" }, } }, + ["MinionCriticalStrikeMultiplierRing4"] = { type = "Suffix", affix = "of Devastation", "Minions have (21-25)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 57, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (21-25)% increased Critical Damage Bonus" }, } }, + ["MinionCriticalStrikeMultiplierRing5"] = { type = "Suffix", affix = "of Eradication", "Minions have (26-30)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 69, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (26-30)% increased Critical Damage Bonus" }, } }, + ["MinionCriticalStrikeMultiplierRing6"] = { type = "Suffix", affix = "of Extinction", "Minions have (31-35)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 80, group = "MinionCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (31-35)% increased Critical Damage Bonus" }, } }, + ["MinionLifeRing1"] = { type = "Prefix", affix = "Bearing", "Minions have (7-10)% increased maximum Life", statOrder = { 1025 }, level = 18, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (7-10)% increased maximum Life" }, } }, + ["MinionLifeRing2"] = { type = "Prefix", affix = "Bracing", "Minions have (11-14)% increased maximum Life", statOrder = { 1025 }, level = 29, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (11-14)% increased maximum Life" }, } }, + ["MinionLifeRing3"] = { type = "Prefix", affix = "Toughening", "Minions have (15-18)% increased maximum Life", statOrder = { 1025 }, level = 41, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (15-18)% increased maximum Life" }, } }, + ["MinionLifeRing4"] = { type = "Prefix", affix = "Reinforcing", "Minions have (19-22)% increased maximum Life", statOrder = { 1025 }, level = 52, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (19-22)% increased maximum Life" }, } }, + ["MinionLifeRing5"] = { type = "Prefix", affix = "Bolstering", "Minions have (23-26)% increased maximum Life", statOrder = { 1025 }, level = 67, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (23-26)% increased maximum Life" }, } }, + ["MinionLifeRing6"] = { type = "Prefix", affix = "Fortifying", "Minions have (27-30)% increased maximum Life", statOrder = { 1025 }, level = 75, group = "MinionLife", weightKey = { "genesis_tree_minion", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (27-30)% increased maximum Life" }, } }, + ["MinionReviveSpeed1"] = { type = "Prefix", affix = "Stirring", "Minions Revive (1-2)% faster", statOrder = { 9050 }, level = 24, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (1-2)% faster" }, } }, + ["MinionReviveSpeed2"] = { type = "Prefix", affix = "Rousing", "Minions Revive (3-5)% faster", statOrder = { 9050 }, level = 45, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (3-5)% faster" }, } }, + ["MinionReviveSpeed3"] = { type = "Prefix", affix = "Waking", "Minions Revive (7-9)% faster", statOrder = { 9050 }, level = 63, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (7-9)% faster" }, } }, + ["MinionReviveSpeed4"] = { type = "Prefix", affix = "Restless", "Minions Revive (10-12)% faster", statOrder = { 9050 }, level = 76, group = "MinionReviveSpeed", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (10-12)% faster" }, } }, + ["MinionCommandSkillDamage1"] = { type = "Prefix", affix = "Guide's", "Minions deal (13-20)% increased Damage with Command Skills", statOrder = { 8992 }, level = 18, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (13-20)% increased Damage with Command Skills" }, } }, + ["MinionCommandSkillDamage2"] = { type = "Prefix", affix = "Lookout's", "Minions deal (21-28)% increased Damage with Command Skills", statOrder = { 8992 }, level = 35, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (21-28)% increased Damage with Command Skills" }, } }, + ["MinionCommandSkillDamage3"] = { type = "Prefix", affix = "Watcher's", "Minions deal (29-36)% increased Damage with Command Skills", statOrder = { 8992 }, level = 44, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (29-36)% increased Damage with Command Skills" }, } }, + ["MinionCommandSkillDamage4"] = { type = "Prefix", affix = "Sentry's", "Minions deal (37-44)% increased Damage with Command Skills", statOrder = { 8992 }, level = 52, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (37-44)% increased Damage with Command Skills" }, } }, + ["MinionCommandSkillDamage5"] = { type = "Prefix", affix = "Shepherd's", "Minions deal (45-52)% increased Damage with Command Skills", statOrder = { 8992 }, level = 63, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (45-52)% increased Damage with Command Skills" }, } }, + ["MinionCommandSkillDamage6"] = { type = "Prefix", affix = "Custodian's", "Minions deal (53-61)% increased Damage with Command Skills", statOrder = { 8992 }, level = 81, group = "MinionCommandSkillDamage", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3742865955] = { "Minions deal (53-61)% increased Damage with Command Skills" }, } }, + ["MinionGemLevelBelt1"] = { type = "Suffix", affix = "of the Taskmaster", "+1 to Level of all Minion Skills", statOrder = { 971 }, level = 36, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+1 to Level of all Minion Skills" }, } }, + ["MinionGemLevelBelt2"] = { type = "Suffix", affix = "of the Despot", "+2 to Level of all Minion Skills", statOrder = { 971 }, level = 64, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion", "gem" }, tradeHashes = { [2162097452] = { "+2 to Level of all Minion Skills" }, } }, + ["MinionImmobilisationBuildup1"] = { type = "Suffix", affix = "of Clutching", "Minions have (20-25)% increased Immobilisation buildup", statOrder = { 9023 }, level = 16, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (20-25)% increased Immobilisation buildup" }, } }, + ["MinionImmobilisationBuildup2"] = { type = "Suffix", affix = "of Grasping", "Minions have (26-31)% increased Immobilisation buildup", statOrder = { 9023 }, level = 34, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (26-31)% increased Immobilisation buildup" }, } }, + ["MinionImmobilisationBuildup3"] = { type = "Suffix", affix = "of Gripping", "Minions have (32-37)% increased Immobilisation buildup", statOrder = { 9023 }, level = 48, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (32-37)% increased Immobilisation buildup" }, } }, + ["MinionImmobilisationBuildup4"] = { type = "Suffix", affix = "of Snaring", "Minions have (38-43)% increased Immobilisation buildup", statOrder = { 9023 }, level = 56, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (38-43)% increased Immobilisation buildup" }, } }, + ["MinionImmobilisationBuildup5"] = { type = "Suffix", affix = "of Grappling", "Minions have (44-49)% increased Immobilisation buildup", statOrder = { 9023 }, level = 65, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (44-49)% increased Immobilisation buildup" }, } }, + ["MinionImmobilisationBuildup6"] = { type = "Suffix", affix = "of Seizing", "Minions have (50-55)% increased Immobilisation buildup", statOrder = { 9023 }, level = 74, group = "MinionImmobilisationBuildup", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1485480327] = { "Minions have (50-55)% increased Immobilisation buildup" }, } }, + ["OfferingDuration1"] = { type = "Suffix", affix = "of Tradition", "Offering Skills have (6-15)% increased Duration", statOrder = { 9314 }, level = 15, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (6-15)% increased Duration" }, } }, + ["OfferingDuration2"] = { type = "Suffix", affix = "of Observance", "Offering Skills have (16-25)% increased Duration", statOrder = { 9314 }, level = 29, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (16-25)% increased Duration" }, } }, + ["OfferingDuration3"] = { type = "Suffix", affix = "of the Rite", "Offering Skills have (26-35)% increased Duration", statOrder = { 9314 }, level = 47, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (26-35)% increased Duration" }, } }, + ["OfferingDuration4"] = { type = "Suffix", affix = "of Ceremony", "Offering Skills have (36-45)% increased Duration", statOrder = { 9314 }, level = 68, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (36-45)% increased Duration" }, } }, + ["OfferingDuration5"] = { type = "Suffix", affix = "of Liturgy", "Offering Skills have (46-55)% increased Duration", statOrder = { 9314 }, level = 79, group = "OfferingDuration", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (46-55)% increased Duration" }, } }, + ["MinionAreaOfEffect1"] = { type = "Suffix", affix = "of Scurrying", "Minions have (5-8)% increased Area of Effect", statOrder = { 2757 }, level = 23, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (5-8)% increased Area of Effect" }, } }, + ["MinionAreaOfEffect2"] = { type = "Suffix", affix = "of Bustling", "Minions have (9-12)% increased Area of Effect", statOrder = { 2757 }, level = 36, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (9-12)% increased Area of Effect" }, } }, + ["MinionAreaOfEffect3"] = { type = "Suffix", affix = "of Trampling", "Minions have (13-16)% increased Area of Effect", statOrder = { 2757 }, level = 49, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (13-16)% increased Area of Effect" }, } }, + ["MinionAreaOfEffect4"] = { type = "Suffix", affix = "of Storming", "Minions have (17-20)% increased Area of Effect", statOrder = { 2757 }, level = 61, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (17-20)% increased Area of Effect" }, } }, + ["MinionAreaOfEffect5"] = { type = "Suffix", affix = "of Stampeding", "Minions have (21-24)% increased Area of Effect", statOrder = { 2757 }, level = 73, group = "MinionAreaOfEffect", weightKey = { "ring", "genesis_tree_minion", "default", }, weightVal = { 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (21-24)% increased Area of Effect" }, } }, + ["SpellDamageRing1"] = { type = "Prefix", affix = "Apprentice's", "(6-9)% increased Spell Damage", statOrder = { 870 }, level = 9, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(6-9)% increased Spell Damage" }, } }, + ["SpellDamageRing2"] = { type = "Prefix", affix = "Adept's", "(10-13)% increased Spell Damage", statOrder = { 870 }, level = 20, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(10-13)% increased Spell Damage" }, } }, + ["SpellDamageRing3"] = { type = "Prefix", affix = "Scholar's", "(14-17)% increased Spell Damage", statOrder = { 870 }, level = 31, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(14-17)% increased Spell Damage" }, } }, + ["SpellDamageRing4"] = { type = "Prefix", affix = "Professor's", "(18-21)% increased Spell Damage", statOrder = { 870 }, level = 46, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(18-21)% increased Spell Damage" }, } }, + ["SpellDamageRing5"] = { type = "Prefix", affix = "Occultist's", "(22-25)% increased Spell Damage", statOrder = { 870 }, level = 55, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(22-25)% increased Spell Damage" }, } }, + ["SpellDamageRing6"] = { type = "Prefix", affix = "Incanter's", "(26-29)% increased Spell Damage", statOrder = { 870 }, level = 63, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(26-29)% increased Spell Damage" }, } }, + ["SpellDamageRing7"] = { type = "Prefix", affix = "Glyphic", "(30-34)% increased Spell Damage", statOrder = { 870 }, level = 71, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(30-34)% increased Spell Damage" }, } }, + ["SpellDamageRing8"] = { type = "Prefix", affix = "Runic", "(35-39)% increased Spell Damage", statOrder = { 870 }, level = 82, group = "SpellDamage", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(35-39)% increased Spell Damage" }, } }, + ["SpellCostEfficiency1"] = { type = "Prefix", affix = "Thoughtful", "(7-9)% increased Mana Cost Efficiency of Spells", statOrder = { 4739 }, level = 12, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(7-9)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency2"] = { type = "Prefix", affix = "Considerate", "(10-12)% increased Mana Cost Efficiency of Spells", statOrder = { 4739 }, level = 29, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(10-12)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency3"] = { type = "Prefix", affix = "Prudent", "(13-15)% increased Mana Cost Efficiency of Spells", statOrder = { 4739 }, level = 42, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(13-15)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency4"] = { type = "Prefix", affix = "Astute", "(16-18)% increased Mana Cost Efficiency of Spells", statOrder = { 4739 }, level = 53, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(16-18)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency5"] = { type = "Prefix", affix = "Sagacious", "(19-22)% increased Mana Cost Efficiency of Spells", statOrder = { 4739 }, level = 64, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(19-22)% increased Mana Cost Efficiency of Spells" }, } }, + ["SpellCostEfficiency6"] = { type = "Prefix", affix = "Calculating", "(23-26)% increased Mana Cost Efficiency of Spells", statOrder = { 4739 }, level = 77, group = "SpellManaCostEfficiency", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2653231923] = { "(23-26)% increased Mana Cost Efficiency of Spells" }, } }, + ["ArcaneSurgeEffect1"] = { type = "Prefix", affix = "Eager", "(12-18)% increased effect of Arcane Surge on you", statOrder = { 2994 }, level = 24, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(12-18)% increased effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffect2"] = { type = "Prefix", affix = "Enthusiastic", "(19-25)% increased effect of Arcane Surge on you", statOrder = { 2994 }, level = 47, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(19-25)% increased effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffect3"] = { type = "Prefix", affix = "Spirited", "(26-32)% increased effect of Arcane Surge on you", statOrder = { 2994 }, level = 61, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(26-32)% increased effect of Arcane Surge on you" }, } }, + ["ArcaneSurgeEffect4"] = { type = "Prefix", affix = "Passionate", "(33-39)% increased effect of Arcane Surge on you", statOrder = { 2994 }, level = 79, group = "ArcaneSurgeEffect", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "mana", "caster" }, tradeHashes = { [2103650854] = { "(33-39)% increased effect of Arcane Surge on you" }, } }, + ["SpellCriticalStrikeChanceRing1"] = { type = "Suffix", affix = "of Menace", "(7-9)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 18, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(7-9)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceRing2"] = { type = "Suffix", affix = "of Havoc", "(10-12)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 32, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(10-12)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceRing3"] = { type = "Suffix", affix = "of Disaster", "(13-15)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 45, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(13-15)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceRing4"] = { type = "Suffix", affix = "of Calamity", "(16-18)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 58, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(16-18)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceRing5"] = { type = "Suffix", affix = "of Ruin", "(19-21)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 70, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(19-21)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeChanceRing6"] = { type = "Suffix", affix = "of Unmaking", "(22-25)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 81, group = "SpellCriticalStrikeChance", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(22-25)% increased Critical Hit Chance for Spells" }, } }, + ["SpellCriticalStrikeMultiplierRing1"] = { type = "Suffix", affix = "of Ire", "(8-10)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 17, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(8-10)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierRing2"] = { type = "Suffix", affix = "of Anger", "(11-13)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 30, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(11-13)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierRing3"] = { type = "Suffix", affix = "of Rage", "(14-17)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 44, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(14-17)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierRing4"] = { type = "Suffix", affix = "of Fury", "(18-21)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 57, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(18-21)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierRing5"] = { type = "Suffix", affix = "of Ferocity", "(22-25)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 69, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(22-25)% increased Critical Spell Damage Bonus" }, } }, + ["SpellCriticalStrikeMultiplierRing6"] = { type = "Suffix", affix = "of Destruction", "(26-29)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 80, group = "SpellCriticalStrikeMultiplier", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [274716455] = { "(26-29)% increased Critical Spell Damage Bonus" }, } }, + ["SpellDamageDuringManaFlaskEffect1"] = { type = "Prefix", affix = "Activating", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 9958 }, level = 12, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(20-25)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect2"] = { type = "Prefix", affix = "Stimulating", "(26-31)% increased Spell Damage during any Flask Effect", statOrder = { 9958 }, level = 26, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(26-31)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect3"] = { type = "Prefix", affix = "Awakening", "(32-37)% increased Spell Damage during any Flask Effect", statOrder = { 9958 }, level = 39, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(32-37)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect4"] = { type = "Prefix", affix = "Elevating", "(38-43)% increased Spell Damage during any Flask Effect", statOrder = { 9958 }, level = 53, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(38-43)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect5"] = { type = "Prefix", affix = "Energising", "(44-49)% increased Spell Damage during any Flask Effect", statOrder = { 9958 }, level = 67, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(44-49)% increased Spell Damage during any Flask Effect" }, } }, + ["SpellDamageDuringManaFlaskEffect6"] = { type = "Prefix", affix = "Exhilarating", "(50-55)% increased Spell Damage during any Flask Effect", statOrder = { 9958 }, level = 80, group = "SpellDamageDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [1014398896] = { "(50-55)% increased Spell Damage during any Flask Effect" }, } }, + ["DamageRemovedFromManaBeforeLife1"] = { type = "Prefix", affix = "Taxing", "(4-6)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 23, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(4-6)% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLife2"] = { type = "Prefix", affix = "Draining", "(7-9)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 39, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(7-9)% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLife3"] = { type = "Prefix", affix = "Exhausting", "(10-12)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 52, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(10-12)% of Damage is taken from Mana before Life" }, } }, + ["DamageRemovedFromManaBeforeLife4"] = { type = "Prefix", affix = "Enervating", "(13-15)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 77, group = "DamageRemovedFromManaBeforeLife", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(13-15)% of Damage is taken from Mana before Life" }, } }, + ["RemnantGrantEffectTwiceChance1"] = { type = "Suffix", affix = "of Accumulation", "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5790 }, level = 24, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(4-6)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["RemnantGrantEffectTwiceChance2"] = { type = "Suffix", affix = "of Proliferation", "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5790 }, level = 37, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(7-9)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["RemnantGrantEffectTwiceChance3"] = { type = "Suffix", affix = "of Expansion", "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5790 }, level = 49, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(10-12)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["RemnantGrantEffectTwiceChance4"] = { type = "Suffix", affix = "of Magnification", "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5790 }, level = 61, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(13-14)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["RemnantGrantEffectTwiceChance5"] = { type = "Suffix", affix = "of Multiplication", "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant", statOrder = { 5790 }, level = 73, group = "RemnantGrantEffectTwiceChance", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3422093970] = { "(15-16)% chance for Remnants you pick up to count as picking up an additional Remnant" }, } }, + ["CastSpeedDuringManaFlaskEffect1"] = { type = "Suffix", affix = "of Hurrying", "(8-10)% increased Cast Speed during any Flask Effect", statOrder = { 5320 }, level = 22, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(8-10)% increased Cast Speed during any Flask Effect" }, } }, + ["CastSpeedDuringManaFlaskEffect2"] = { type = "Suffix", affix = "of Quickening", "(11-13)% increased Cast Speed during any Flask Effect", statOrder = { 5320 }, level = 41, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(11-13)% increased Cast Speed during any Flask Effect" }, } }, + ["CastSpeedDuringManaFlaskEffect3"] = { type = "Suffix", affix = "of Hastening", "(14-16)% increased Cast Speed during any Flask Effect", statOrder = { 5320 }, level = 59, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(14-16)% increased Cast Speed during any Flask Effect" }, } }, + ["CastSpeedDuringManaFlaskEffect4"] = { type = "Suffix", affix = "of Accelerating", "(17-19)% increased Cast Speed during any Flask Effect", statOrder = { 5320 }, level = 76, group = "CastSpeedDuringManaFlaskEffect", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [145581225] = { "(17-19)% increased Cast Speed during any Flask Effect" }, } }, + ["CurseEffectiveness1"] = { type = "Prefix", affix = "Hexing", "(2-3)% increased Curse Magnitudes", statOrder = { 2374 }, level = 31, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(2-3)% increased Curse Magnitudes" }, } }, + ["CurseEffectiveness2"] = { type = "Prefix", affix = "Condemning", "(4-6)% increased Curse Magnitudes", statOrder = { 2374 }, level = 47, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(4-6)% increased Curse Magnitudes" }, } }, + ["CurseEffectiveness3"] = { type = "Prefix", affix = "Maledicting", "(7-9)% increased Curse Magnitudes", statOrder = { 2374 }, level = 61, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(7-9)% increased Curse Magnitudes" }, } }, + ["CurseEffectiveness4"] = { type = "Prefix", affix = "Dooming", "(10-12)% increased Curse Magnitudes", statOrder = { 2374 }, level = 77, group = "CurseEffectiveness", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(10-12)% increased Curse Magnitudes" }, } }, + ["GlobalIncreaseSpellSkillGemLevel1"] = { type = "Suffix", affix = "of Jordan", "+1 to Level of all Spell Skills", statOrder = { 949 }, level = 45, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster", "gem" }, tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, } }, + ["SpellAreaOfEffectPercent1"] = { type = "Suffix", affix = "of Analysis", "Spell Skills have (6-8)% increased Area of Effect", statOrder = { 9950 }, level = 23, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (6-8)% increased Area of Effect" }, } }, + ["SpellAreaOfEffectPercent2"] = { type = "Suffix", affix = "of Experimentation", "Spell Skills have (9-11)% increased Area of Effect", statOrder = { 9950 }, level = 48, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (9-11)% increased Area of Effect" }, } }, + ["SpellAreaOfEffectPercent3"] = { type = "Suffix", affix = "of Understanding", "Spell Skills have (12-14)% increased Area of Effect", statOrder = { 9950 }, level = 69, group = "SpellAreaOfEffectPercent", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (12-14)% increased Area of Effect" }, } }, + ["RemnantPickupRadiusIncrease1"] = { type = "Suffix", affix = "of Receiving", "Remnants can be collected from (12-19)% further away", statOrder = { 9697 }, level = 26, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (12-19)% further away" }, } }, + ["RemnantPickupRadiusIncrease2"] = { type = "Suffix", affix = "of Collecting", "Remnants can be collected from (20-27)% further away", statOrder = { 9697 }, level = 38, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-27)% further away" }, } }, + ["RemnantPickupRadiusIncrease3"] = { type = "Suffix", affix = "of Amassing", "Remnants can be collected from (28-35)% further away", statOrder = { 9697 }, level = 51, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (28-35)% further away" }, } }, + ["RemnantPickupRadiusIncrease4"] = { type = "Suffix", affix = "of Absorbing", "Remnants can be collected from (36-43)% further away", statOrder = { 9697 }, level = 64, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (36-43)% further away" }, } }, + ["RemnantPickupRadiusIncrease5"] = { type = "Suffix", affix = "of Engulfing", "Remnants can be collected from (44-51)% further away", statOrder = { 9697 }, level = 76, group = "RemnantPickupRadiusIncrease", weightKey = { "belt", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { }, tradeHashes = { [3482326075] = { "Remnants can be collected from (44-51)% further away" }, } }, + ["SpellCooldownRecovery1"] = { type = "Prefix", affix = "Imagninative", "Spells have (2-4)% increased Cooldown Recovery Rate", statOrder = { 4736 }, level = 12, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (2-4)% increased Cooldown Recovery Rate" }, } }, + ["SpellCooldownRecovery2"] = { type = "Prefix", affix = "Inventive", "Spells have (6-10)% increased Cooldown Recovery Rate", statOrder = { 4736 }, level = 28, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (6-10)% increased Cooldown Recovery Rate" }, } }, + ["SpellCooldownRecovery3"] = { type = "Prefix", affix = "Pioneering", "Spells have (11-15)% increased Cooldown Recovery Rate", statOrder = { 4736 }, level = 41, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (11-15)% increased Cooldown Recovery Rate" }, } }, + ["SpellCooldownRecovery4"] = { type = "Prefix", affix = "Trailblazing", "Spells have (16-20)% increased Cooldown Recovery Rate", statOrder = { 4736 }, level = 59, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (16-20)% increased Cooldown Recovery Rate" }, } }, + ["SpellCooldownRecovery5"] = { type = "Prefix", affix = "Ingenious", "Spells have (21-25)% increased Cooldown Recovery Rate", statOrder = { 4736 }, level = 74, group = "SpellCooldownRecovery", weightKey = { "ring", "genesis_tree_caster", "default", }, weightVal = { 0, 1, 0 }, modTags = { "caster" }, tradeHashes = { [1493485657] = { "Spells have (21-25)% increased Cooldown Recovery Rate" }, } }, + ["CastSpeedJewellery1"] = { type = "Suffix", affix = "of Talent", "(9-12)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(9-12)% increased Cast Speed" }, } }, + ["CastSpeedJewellery2"] = { type = "Suffix", affix = "of Nimbleness", "(13-15)% increased Cast Speed", statOrder = { 986 }, level = 18, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(13-15)% increased Cast Speed" }, } }, + ["CastSpeedJewellery3"] = { type = "Suffix", affix = "of Expertise", "(16-18)% increased Cast Speed", statOrder = { 986 }, level = 35, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(16-18)% increased Cast Speed" }, } }, + ["CastSpeedJewellery4"] = { type = "Suffix", affix = "of Sortilege", "(19-21)% increased Cast Speed", statOrder = { 986 }, level = 51, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(19-21)% increased Cast Speed" }, } }, + ["CastSpeedJewellery5"] = { type = "Suffix", affix = "of Legerdemain", "(22-24)% increased Cast Speed", statOrder = { 986 }, level = 60, group = "IncreasedCastSpeed", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(22-24)% increased Cast Speed" }, } }, + ["CastSpeedJewellery6"] = { type = "Suffix", affix = "of Prestidigitation", "(25-28)% increased Cast Speed", statOrder = { 986 }, level = 66, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(25-28)% increased Cast Speed" }, } }, + ["ConvertedSpellDamageGainedAsChaos1"] = { type = "Prefix", affix = "Impure", "Gain (13-15)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 5, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (13-15)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaos2"] = { type = "Prefix", affix = "Tainted", "Gain (16-18)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 16, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (16-18)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaos3"] = { type = "Prefix", affix = "Clouded", "Gain (19-21)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 33, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (19-21)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaos4"] = { type = "Prefix", affix = "Darkened", "Gain (22-24)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 46, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (22-24)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaos5"] = { type = "Prefix", affix = "Malignant", "Gain (25-27)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 60, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (25-27)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaos6"] = { type = "Prefix", affix = "Vile", "Gain (28-30)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 80, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (28-30)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaosTwoHand1"] = { type = "Prefix", affix = "Impure", "Gain (26-30)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 5, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (26-30)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaosTwoHand2"] = { type = "Prefix", affix = "Tainted", "Gain (31-36)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 16, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (31-36)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaosTwoHand3"] = { type = "Prefix", affix = "Clouded", "Gain (37-42)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 33, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (37-42)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaosTwoHand4"] = { type = "Prefix", affix = "Darkened", "Gain (43-48)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 46, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (43-48)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaosTwoHand5"] = { type = "Prefix", affix = "Malignant", "Gain (49-54)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 60, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (49-54)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedSpellDamageGainedAsChaosTwoHand6"] = { type = "Prefix", affix = "Vile", "Gain (55-60)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 80, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (55-60)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedEssenceDamageasExtraChaos1"] = { type = "Prefix", affix = "Essences", "Gain (15-20)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 72, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (15-20)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedEssenceDamageasExtraChaos2H"] = { type = "Prefix", affix = "Essences", "Gain (25-33)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 72, group = "DamageGainedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (25-33)% of Damage as Extra Chaos Damage" }, } }, + ["ConvertedLocalAddedChaosDamage1"] = { type = "Prefix", affix = "Impure", "Adds (1-3) to (3-5) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (1-3) to (3-5) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage2"] = { type = "Prefix", affix = "Tainted", "Adds (3-5) to (7-11) Chaos damage", statOrder = { 1290 }, level = 8, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (3-5) to (7-11) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage3"] = { type = "Prefix", affix = "Clouded", "Adds (5-11) to (13-19) Chaos damage", statOrder = { 1290 }, level = 16, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (5-11) to (13-19) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage4"] = { type = "Prefix", affix = "Darkened", "Adds (11-19) to (23-29) Chaos damage", statOrder = { 1290 }, level = 33, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (11-19) to (23-29) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage5"] = { type = "Prefix", affix = "Malignant", "Adds (19-23) to (31-37) Chaos damage", statOrder = { 1290 }, level = 46, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (19-23) to (31-37) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage6"] = { type = "Prefix", affix = "Vile", "Adds (23-31) to (41-53) Chaos damage", statOrder = { 1290 }, level = 54, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (23-31) to (41-53) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage7"] = { type = "Prefix", affix = "Twisted", "Adds (31-43) to (59-71) Chaos damage", statOrder = { 1290 }, level = 60, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (31-43) to (59-71) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage8"] = { type = "Prefix", affix = "Malevolent", "Adds (43-59) to (73-97) Chaos damage", statOrder = { 1290 }, level = 65, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (43-59) to (73-97) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage9"] = { type = "Prefix", affix = "Baleful", "Adds (59-83) to (101-131) Chaos damage", statOrder = { 1290 }, level = 75, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (59-83) to (101-131) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamage10"] = { type = "Prefix", affix = "Pestilent", "Adds (83-101) to (137-157) Chaos damage", statOrder = { 1290 }, level = 81, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (83-101) to (137-157) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Impure", "Adds (2-3) to (5-7) Chaos damage", statOrder = { 1290 }, level = 1, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (2-3) to (5-7) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand2"] = { type = "Prefix", affix = "Tainted", "Adds (5-9) to (11-17) Chaos damage", statOrder = { 1290 }, level = 8, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (5-9) to (11-17) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand3"] = { type = "Prefix", affix = "Clouded", "Adds (11-17) to (19-29) Chaos damage", statOrder = { 1290 }, level = 16, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (11-17) to (19-29) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand4"] = { type = "Prefix", affix = "Darkened", "Adds (19-29) to (31-41) Chaos damage", statOrder = { 1290 }, level = 33, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (19-29) to (31-41) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand5"] = { type = "Prefix", affix = "Malignant", "Adds (31-37) to (43-53) Chaos damage", statOrder = { 1290 }, level = 46, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (31-37) to (43-53) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand6"] = { type = "Prefix", affix = "Vile", "Adds (41-53) to (59-79) Chaos damage", statOrder = { 1290 }, level = 54, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (41-53) to (59-79) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand7"] = { type = "Prefix", affix = "Twisted", "Adds (59-71) to (83-107) Chaos damage", statOrder = { 1290 }, level = 60, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (59-71) to (83-107) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand8"] = { type = "Prefix", affix = "Malevolent", "Adds (73-97) to (113-149) Chaos damage", statOrder = { 1290 }, level = 65, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (73-97) to (113-149) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand9"] = { type = "Prefix", affix = "Baleful", "Adds (101-131) to (151-197) Chaos damage", statOrder = { 1290 }, level = 75, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (101-131) to (151-197) Chaos damage" }, } }, + ["ConvertedLocalAddedChaosDamageTwoHand10"] = { type = "Prefix", affix = "Pestilent", "Adds (137-157) to (199-239) Chaos damage", statOrder = { 1290 }, level = 81, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2223678961] = { "Adds (137-157) to (199-239) Chaos damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage1"] = { type = "Prefix", affix = "Impure", "Allies in your Presence deal (1-2) to (3-5) added Attack Chaos Damage", statOrder = { 910 }, level = 1, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (1-2) to (3-5) added Attack Chaos Damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage2"] = { type = "Prefix", affix = "Tainted", "Allies in your Presence deal (3-5) to (6-7) added Attack Chaos Damage", statOrder = { 910 }, level = 8, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (3-5) to (6-7) added Attack Chaos Damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage3"] = { type = "Prefix", affix = "Clouded", "Allies in your Presence deal (6-7) to (11-13) added Attack Chaos Damage", statOrder = { 910 }, level = 16, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (6-7) to (11-13) added Attack Chaos Damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage4"] = { type = "Prefix", affix = "Darkened", "Allies in your Presence deal (8-11) to (14-17) added Attack Chaos Damage", statOrder = { 910 }, level = 33, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (8-11) to (14-17) added Attack Chaos Damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage5"] = { type = "Prefix", affix = "Malignant", "Allies in your Presence deal (12-13) to (19-23) added Attack Chaos Damage", statOrder = { 910 }, level = 46, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (12-13) to (19-23) added Attack Chaos Damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage6"] = { type = "Prefix", affix = "Vile", "Allies in your Presence deal (14-17) to (21-29) added Attack Chaos Damage", statOrder = { 910 }, level = 54, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (14-17) to (21-29) added Attack Chaos Damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage7"] = { type = "Prefix", affix = "Twisted", "Allies in your Presence deal (17-19) to (30-31) added Attack Chaos Damage", statOrder = { 910 }, level = 60, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (17-19) to (30-31) added Attack Chaos Damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage8"] = { type = "Prefix", affix = "Malevolent", "Allies in your Presence deal (20-23) to (32-37) added Attack Chaos Damage", statOrder = { 910 }, level = 65, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (20-23) to (32-37) added Attack Chaos Damage" }, } }, + ["ConvertedNearbyAlliesAddedChaosDamage9"] = { type = "Prefix", affix = "Baleful", "Allies in your Presence deal (24-29) to (38-47) added Attack Chaos Damage", statOrder = { 910 }, level = 75, group = "AlliesInPresenceAddedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (24-29) to (38-47) added Attack Chaos Damage" }, } }, + ["ConvertedAbyssChaosPenetration"] = { type = "Prefix", affix = "Abyssal", "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance", statOrder = { 7616 }, level = 65, group = "LocalChaosPenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3762412853] = { "Attacks with this Weapon Penetrate (15-25)% Chaos Resistance" }, } }, + ["ConvertedSoulHybridResistance1"] = { type = "Suffix", affix = "of the Soul", "+(3-41)% to Chaos Resistance", statOrder = { 1023 }, level = 65, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(3-41)% to Chaos Resistance" }, } }, + ["ConvertedAlloyDamageAsExtraColdWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward", statOrder = { 9203 }, level = 25, group = "DamageGainedAsColdWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2888350852] = { "Gain (21-26)% of Damage as Extra Cold Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraColdTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward", statOrder = { 9203 }, level = 25, group = "DamageGainedAsColdWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2888350852] = { "Gain (42-52)% of Damage as Extra Cold Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraLightningWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward", statOrder = { 9215 }, level = 25, group = "DamageGainedAsLightningWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [457920946] = { "Gain (21-26)% of Damage as Extra Lightning Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraLightningTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward", statOrder = { 9215 }, level = 25, group = "DamageGainedAsLightningWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [457920946] = { "Gain (42-52)% of Damage as Extra Lightning Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraChaosWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward", statOrder = { 9199 }, level = 25, group = "DamageGainedAsChaosWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4011431182] = { "Gain (21-26)% of Damage as Extra Chaos Damage while you are missing Runic Ward" }, } }, + ["ConvertedAlloyDamageAsExtraChaosTwoHandWhileMissingRunicWard1"] = { type = "Prefix", affix = "Verisium", "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward", statOrder = { 9199 }, level = 25, group = "DamageGainedAsChaosWhileMissingRunicWard", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4011431182] = { "Gain (42-52)% of Damage as Extra Chaos Damage while you are missing Runic Ward" }, } }, + ["TimeInfluenceIncreasedDuration1"] = { type = "Suffix", affix = "of Chronomancy", "(15-19)% increased Skill Effect Duration", statOrder = { 1643 }, level = 45, group = "SkillEffectDuration", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(15-19)% increased Skill Effect Duration" }, } }, + ["TimeInfluenceIncreasedDuration2"] = { type = "Suffix", affix = "of Chronomancy", "(20-29)% increased Skill Effect Duration", statOrder = { 1643 }, level = 55, group = "SkillEffectDuration", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(20-29)% increased Skill Effect Duration" }, } }, + ["TimeInfluenceIncreasedDuration3"] = { type = "Suffix", affix = "of Chronomancy", "(30-40)% increased Skill Effect Duration", statOrder = { 1643 }, level = 78, group = "SkillEffectDuration", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(30-40)% increased Skill Effect Duration" }, } }, + ["TimeInfluenceCooldownRecovery1"] = { type = "Suffix", affix = "of Chronomancy", "(12-17)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 45, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(12-17)% increased Cooldown Recovery Rate" }, } }, + ["TimeInfluenceCooldownRecovery2"] = { type = "Suffix", affix = "of Chronomancy", "(18-23)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 55, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(18-23)% increased Cooldown Recovery Rate" }, } }, + ["TimeInfluenceCooldownRecovery3"] = { type = "Suffix", affix = "of Chronomancy", "(24-30)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 78, group = "GlobalCooldownRecovery", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(24-30)% increased Cooldown Recovery Rate" }, } }, + ["TimeInfluenceMovementSpeed1"] = { type = "Prefix", affix = "Uhtred's", "(24-26)% increased Movement Speed", "(10-15)% increased Slowing Potency of Debuffs on You", statOrder = { 835, 4735 }, level = 65, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(10-15)% increased Slowing Potency of Debuffs on You" }, [2250533757] = { "(24-26)% increased Movement Speed" }, } }, + ["TimeInfluenceMovementSpeed2"] = { type = "Prefix", affix = "Uhtred's", "(27-29)% increased Movement Speed", "(16-20)% increased Slowing Potency of Debuffs on You", statOrder = { 835, 4735 }, level = 70, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(16-20)% increased Slowing Potency of Debuffs on You" }, [2250533757] = { "(27-29)% increased Movement Speed" }, } }, + ["TimeInfluenceMovementSpeed3"] = { type = "Prefix", affix = "Uhtred's", "(30-32)% increased Movement Speed", "(21-25)% increased Slowing Potency of Debuffs on You", statOrder = { 835, 4735 }, level = 78, group = "MovementVelocitySlowPotencyHybrid", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [924253255] = { "(21-25)% increased Slowing Potency of Debuffs on You" }, [2250533757] = { "(30-32)% increased Movement Speed" }, } }, + ["TimeInfluenceSprintSpeed1"] = { type = "Prefix", affix = "Uhtred's", "(10-14)% increased Movement Speed while Sprinting", statOrder = { 10028 }, level = 45, group = "MovementVelocityWhileSprinting", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(10-14)% increased Movement Speed while Sprinting" }, } }, + ["TimeInfluenceSprintSpeed2"] = { type = "Prefix", affix = "Uhtred's", "(17-23)% increased Movement Speed while Sprinting", statOrder = { 10028 }, level = 78, group = "MovementVelocityWhileSprinting", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3107707789] = { "(17-23)% increased Movement Speed while Sprinting" }, } }, + ["TimeInfluenceDodgeRoll1"] = { type = "Prefix", affix = "Uhtred's", "+(0.3-0.4) metres to Dodge Roll distance", statOrder = { 6186 }, level = 45, group = "DodgeRollDistance", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [258119672] = { "+(0.3-0.4) metres to Dodge Roll distance" }, } }, + ["TimeInfluenceDodgeRoll2"] = { type = "Prefix", affix = "Uhtred's", "+(0.4-0.5) metres to Dodge Roll distance", statOrder = { 6186 }, level = 78, group = "DodgeRollDistance", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [258119672] = { "+(0.4-0.5) metres to Dodge Roll distance" }, } }, + ["TimeInfluenceCharges1"] = { type = "Suffix", affix = "of Chronomancy", "Skills have (7-10)% chance to not remove Charges but still count as consuming them", statOrder = { 5589 }, level = 45, group = "ChargeChanceToNotConsume", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2942439603] = { "Skills have (7-10)% chance to not remove Charges but still count as consuming them" }, } }, + ["TimeInfluenceCharges2"] = { type = "Suffix", affix = "of Chronomancy", "Skills have (11-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5589 }, level = 78, group = "ChargeChanceToNotConsume", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2942439603] = { "Skills have (11-15)% chance to not remove Charges but still count as consuming them" }, } }, + ["TimeInfluenceDebuffExpiry1"] = { type = "Suffix", affix = "of Chronomancy", "Debuffs on you expire (50-69)% faster", statOrder = { 6085 }, level = 45, group = "DebuffTimePassed", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (50-69)% faster" }, } }, + ["TimeInfluenceDebuffExpiry2"] = { type = "Suffix", affix = "of Chronomancy", "Debuffs on you expire (70-89)% faster", statOrder = { 6085 }, level = 78, group = "DebuffTimePassed", weightKey = { "chronomancy", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (70-89)% faster" }, } }, + ["SoulInfluenceIncreasedLifePercent"] = { type = "Prefix", affix = "Medved's", "(1-20)% increased maximum Life", statOrder = { 888 }, level = 65, group = "MaximumLifeIncreasePercent", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [983749596] = { "(1-20)% increased maximum Life" }, } }, + ["SoulInfluenceIncreasedManaPercent"] = { type = "Prefix", affix = "Medved's", "(1-20)% increased maximum Mana", statOrder = { 893 }, level = 65, group = "MaximumManaIncreasePercent", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2748665614] = { "(1-20)% increased maximum Mana" }, } }, + ["SoulInfluenceIncreasedSpiritPercent"] = { type = "Prefix", affix = "Medved's", "(1-20)% increased Spirit", statOrder = { 1416 }, level = 65, group = "MaximumSpiritPercentageAllowBaseSpirit", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1416406066] = { "(1-20)% increased Spirit" }, } }, + ["SoulInfluenceReducedAilmentDurationAgainstYou"] = { type = "Suffix", affix = "of the Soul", "(5-50)% reduced Duration of Ailments on You", statOrder = { 4633 }, level = 65, group = "AilmentDurationOnYou", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "poison", "physical", "elemental", "fire", "cold", "lightning", "chaos", "ailment" }, tradeHashes = { [548070846] = { "(5-50)% reduced Duration of Ailments on You" }, } }, + ["SoulInfluenceReducedCriticalDamageAgainstYou"] = { type = "Suffix", affix = "of the Soul", "Hits against you have (10-99)% reduced Critical Damage Bonus", statOrder = { 1004 }, level = 65, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3855016469] = { "Hits against you have (10-99)% reduced Critical Damage Bonus" }, } }, + ["SoulInfluenceFireAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Fire and Chaos Resistances", statOrder = { 6530 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(3-31)% to Fire and Chaos Resistances" }, } }, + ["SoulInfluenceColdAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Cold and Chaos Resistances", statOrder = { 5660 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(3-31)% to Cold and Chaos Resistances" }, } }, + ["SoulInfluenceLightningAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(3-31)% to Lightning and Chaos Resistances", statOrder = { 7512 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(3-31)% to Lightning and Chaos Resistances" }, } }, + ["SoulInfluenceConvertedChaosAndChaosResistance"] = { type = "Suffix", affix = "of the Soul", "+(5-47)% to Chaos Resistance", statOrder = { 1023 }, level = 65, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_resistance", "chaos", "resistance" }, tradeHashes = { [2923486259] = { "+(5-47)% to Chaos Resistance" }, } }, + ["SoulInfluenceIncreasedLifeAndMana"] = { type = "Prefix", affix = "Medved's", "+(19-189) to maximum Life", "+(19-189) to maximum Mana", statOrder = { 886, 891 }, level = 65, group = "BaseLifeAndMana", weightKey = { "soul", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [1050105434] = { "+(19-189) to maximum Mana" }, [3299347043] = { "+(19-189) to maximum Life" }, } }, + ["SoulInfluenceSpiritDefencesHybridArmourEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Evasion", "+(1-24) to Spirit", statOrder = { 849, 894 }, level = 65, group = "LocalIncreasedArmourAndEvasionAndSpiritNoLife", weightKey = { "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-52)% increased Armour and Evasion" }, [2704225257] = { "+(1-24) to Spirit" }, } }, + ["SoulInfluenceSpiritDefencesHybridArmourEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Energy Shield", "+(1-24) to Spirit", statOrder = { 850, 894 }, level = 65, group = "LocalIncreasedArmourAndEnergyShieldAndSpiritNoLife", weightKey = { "str_dex_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour", "energy_shield" }, tradeHashes = { [2704225257] = { "+(1-24) to Spirit" }, [3321629045] = { "(6-52)% increased Armour and Energy Shield" }, } }, + ["SoulInfluenceSpiritDefencesHybridEvasionEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion and Energy Shield", "+(1-24) to Spirit", statOrder = { 851, 894 }, level = 65, group = "LocalIncreasedEvasionAndEnergyShieldAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion", "energy_shield" }, tradeHashes = { [2704225257] = { "+(1-24) to Spirit" }, [1999113824] = { "(6-52)% increased Evasion and Energy Shield" }, } }, + ["SoulInfluenceSpiritDefencesHybridArmour"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour", "+(1-24) to Spirit", statOrder = { 845, 894 }, level = 65, group = "LocalIncreasedArmourAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [1062208444] = { "(6-52)% increased Armour" }, [2704225257] = { "+(1-24) to Spirit" }, } }, + ["SoulInfluenceSpiritDefencesHybridEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion Rating", "+(1-24) to Spirit", statOrder = { 847, 894 }, level = 65, group = "LocalIncreasedEvasionAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [124859000] = { "(6-52)% increased Evasion Rating" }, [2704225257] = { "+(1-24) to Spirit" }, } }, + ["SoulInfluenceSpiritDefencesHybridEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Energy Shield", "+(1-24) to Spirit", statOrder = { 848, 894 }, level = 65, group = "LocalIncreasedEnergyShieldAndSpiritNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-52)% increased Energy Shield" }, [2704225257] = { "+(1-24) to Spirit" }, } }, + ["SoulInfluenceManaDefencesHybridArmourEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Evasion", "+(7-57) to maximum Mana", statOrder = { 849, 891 }, level = 65, group = "LocalIncreasedArmourAndEvasionAndManaNoLife", weightKey = { "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "evasion" }, tradeHashes = { [2451402625] = { "(6-52)% increased Armour and Evasion" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, + ["SoulInfluenceManaDefencesHybridArmourEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour and Energy Shield", "+(7-57) to maximum Mana", statOrder = { 850, 891 }, level = 65, group = "LocalIncreasedArmourAndEnergyShieldAndManaNoLife", weightKey = { "str_dex_armour", "dex_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour", "energy_shield" }, tradeHashes = { [1050105434] = { "+(7-57) to maximum Mana" }, [3321629045] = { "(6-52)% increased Armour and Energy Shield" }, } }, + ["SoulInfluenceManaDefencesHybridEvasionEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion and Energy Shield", "+(7-57) to maximum Mana", statOrder = { 851, 891 }, level = 65, group = "LocalIncreasedEvasionAndEnergyShieldAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "str_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion", "energy_shield" }, tradeHashes = { [1050105434] = { "+(7-57) to maximum Mana" }, [1999113824] = { "(6-52)% increased Evasion and Energy Shield" }, } }, + ["SoulInfluenceManaDefencesHybridArmour"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Armour", "+(7-57) to maximum Mana", statOrder = { 845, 891 }, level = 65, group = "LocalIncreasedArmourAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "dex_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "armour" }, tradeHashes = { [1062208444] = { "(6-52)% increased Armour" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, + ["SoulInfluenceManaDefencesHybridEvasion"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Evasion Rating", "+(7-57) to maximum Mana", statOrder = { 847, 891 }, level = 65, group = "LocalIncreasedEvasionAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "int_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "evasion" }, tradeHashes = { [124859000] = { "(6-52)% increased Evasion Rating" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, + ["SoulInfluenceManaDefencesHybridEnergyShield"] = { type = "Prefix", affix = "Medved's", "(6-52)% increased Energy Shield", "+(7-57) to maximum Mana", statOrder = { 848, 891 }, level = 65, group = "LocalIncreasedEnergyShieldAndManaNoLife", weightKey = { "str_dex_armour", "str_int_armour", "dex_int_armour", "str_armour", "dex_armour", "soul", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "defences", "resource", "mana", "energy_shield" }, tradeHashes = { [4015621042] = { "(6-52)% increased Energy Shield" }, [1050105434] = { "+(7-57) to maximum Mana" }, } }, + ["BerserkInfluenceMaximumRage1"] = { type = "Prefix", affix = "Vorana's", "+(4-7) to Maximum Rage", statOrder = { 9568 }, level = 45, group = "MaximumRage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(4-7) to Maximum Rage" }, } }, + ["BerserkInfluenceMaximumRage2"] = { type = "Prefix", affix = "Vorana's", "+(8-12) to Maximum Rage", statOrder = { 9568 }, level = 75, group = "MaximumRage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(8-12) to Maximum Rage" }, } }, + ["BerserkInfluenceDamageWithWarcries1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased Damage with Warcries", statOrder = { 10467 }, level = 45, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(20-34)% increased Damage with Warcries" }, } }, + ["BerserkInfluenceDamageWithWarcries2"] = { type = "Prefix", affix = "Vorana's", "(35-49)% increased Damage with Warcries", statOrder = { 10467 }, level = 65, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(35-49)% increased Damage with Warcries" }, } }, + ["BerserkInfluenceDamageWithWarcries3"] = { type = "Prefix", affix = "Vorana's", "(50-75)% increased Damage with Warcries", statOrder = { 10467 }, level = 75, group = "WarcryDamage", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(50-75)% increased Damage with Warcries" }, } }, + ["BerserkInfluencePowerWithWarcries1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased total Power counted by Warcries", statOrder = { 10470 }, level = 45, group = "WarcryPower", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2663359259] = { "(20-34)% increased total Power counted by Warcries" }, } }, + ["BerserkInfluencePowerWithWarcries2"] = { type = "Prefix", affix = "Vorana's", "(35-55)% increased total Power counted by Warcries", statOrder = { 10470 }, level = 75, group = "WarcryPower", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2663359259] = { "(35-55)% increased total Power counted by Warcries" }, } }, + ["BerserkInfluenceArmourBreakMagnitude1"] = { type = "Prefix", affix = "Vorana's", "(15-24)% increased effect of Fully Broken Armour", statOrder = { 5224 }, level = 45, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(15-24)% increased effect of Fully Broken Armour" }, } }, + ["BerserkInfluenceArmourBreakMagnitude2"] = { type = "Prefix", affix = "Vorana's", "(25-39)% increased effect of Fully Broken Armour", statOrder = { 5224 }, level = 65, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(25-39)% increased effect of Fully Broken Armour" }, } }, + ["BerserkInfluenceArmourBreakMagnitude3"] = { type = "Prefix", affix = "Vorana's", "(40-60)% increased effect of Fully Broken Armour", statOrder = { 5224 }, level = 75, group = "ArmourBreakEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1879206848] = { "(40-60)% increased effect of Fully Broken Armour" }, } }, + ["BerserkInfluenceGloryGeneration1"] = { type = "Prefix", affix = "Vorana's", "(20-49)% increased Glory generation", statOrder = { 6891 }, level = 45, group = "GloryGeneration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3143918757] = { "(20-49)% increased Glory generation" }, } }, + ["BerserkInfluenceGloryGeneration2"] = { type = "Prefix", affix = "Vorana's", "(50-85)% increased Glory generation", statOrder = { 6891 }, level = 75, group = "GloryGeneration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3143918757] = { "(50-85)% increased Glory generation" }, } }, + ["BerserkInfluenceRageCostEfficiency1"] = { type = "Prefix", affix = "Vorana's", "(20-34)% increased Rage Cost Efficiency", statOrder = { 4728 }, level = 45, group = "RageCostEfficiency", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2416650879] = { "(20-34)% increased Rage Cost Efficiency" }, } }, + ["BerserkInfluenceRageCostEfficiency2"] = { type = "Prefix", affix = "Vorana's", "(35-60)% increased Rage Cost Efficiency", statOrder = { 4728 }, level = 75, group = "RageCostEfficiency", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2416650879] = { "(35-60)% increased Rage Cost Efficiency" }, } }, + ["BerserkInfluenceRageLossDelay1"] = { type = "Suffix", affix = "of the Berserker", "Inherent Rage loss starts 1 second later", statOrder = { 9581 }, level = 45, group = "RageLossDelay", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3987691524] = { "Inherent Rage loss starts 1 second later" }, } }, + ["BerserkInfluenceRageLossDelay2"] = { type = "Suffix", affix = "of the Berserker", "Inherent Rage loss starts (3-5) seconds later", statOrder = { 9581 }, level = 75, group = "RageLossDelay", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3987691524] = { "Inherent Rage loss starts (3-5) seconds later" }, } }, + ["BerserkInfluenceRageWhenHit1"] = { type = "Suffix", affix = "of the Berserker", "Gain (4-5) Rage when Hit by an Enemy", statOrder = { 6852 }, level = 45, group = "GainRageWhenHit", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (4-5) Rage when Hit by an Enemy" }, } }, + ["BerserkInfluenceRageWhenHit2"] = { type = "Suffix", affix = "of the Berserker", "Gain (6-10) Rage when Hit by an Enemy", statOrder = { 6852 }, level = 75, group = "GainRageWhenHit", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (6-10) Rage when Hit by an Enemy" }, } }, + ["BerserkInfluenceWarcrySpeed1"] = { type = "Suffix", affix = "of the Berserker", "(23-36)% increased Warcry Speed", statOrder = { 2987 }, level = 45, group = "WarcrySpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(23-36)% increased Warcry Speed" }, } }, + ["BerserkInfluenceWarcrySpeed2"] = { type = "Suffix", affix = "of the Berserker", "(37-50)% increased Warcry Speed", statOrder = { 2987 }, level = 75, group = "WarcrySpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(37-50)% increased Warcry Speed" }, } }, + ["BerserkInfluenceWarcryCooldown1"] = { type = "Suffix", affix = "of the Berserker", "(23-36)% increased Warcry Cooldown Recovery Rate", statOrder = { 3033 }, level = 45, group = "WarcryCooldownSpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(23-36)% increased Warcry Cooldown Recovery Rate" }, } }, + ["BerserkInfluenceWarcryCooldown2"] = { type = "Suffix", affix = "of the Berserker", "(37-50)% increased Warcry Cooldown Recovery Rate", statOrder = { 3033 }, level = 75, group = "WarcryCooldownSpeed", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(37-50)% increased Warcry Cooldown Recovery Rate" }, } }, + ["BerserkInfluenceWarcryArea1"] = { type = "Suffix", affix = "of the Berserker", "Warcry Skills have (15-29)% increased Area of Effect", statOrder = { 10472 }, level = 45, group = "WarcryAreaOfEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (15-29)% increased Area of Effect" }, } }, + ["BerserkInfluenceWarcryArea2"] = { type = "Suffix", affix = "of the Berserker", "Warcry Skills have (30-50)% increased Area of Effect", statOrder = { 10472 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2567751411] = { "Warcry Skills have (30-50)% increased Area of Effect" }, } }, + ["BerserkInfluenceWarcryLifeRecovery1"] = { type = "Suffix", affix = "of the Berserker", "Recover (2-3)% of maximum Life when you use a Warcry", statOrder = { 2917 }, level = 45, group = "RecoverLifeOnWarcry", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1040141381] = { "Recover (2-3)% of maximum Life when you use a Warcry" }, } }, + ["BerserkInfluenceWarcryLifeRecovery2"] = { type = "Suffix", affix = "of the Berserker", "Recover (4-5)% of maximum Life when you use a Warcry", statOrder = { 2917 }, level = 75, group = "RecoverLifeOnWarcry", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1040141381] = { "Recover (4-5)% of maximum Life when you use a Warcry" }, } }, + ["BerserkInfluenceArmourBreakDuration1"] = { type = "Suffix", affix = "of the Berserker", "(50-99)% increased Armour Break Duration", statOrder = { 4399 }, level = 45, group = "ArmourBreakDuration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(50-99)% increased Armour Break Duration" }, } }, + ["BerserkInfluenceArmourBreakDuration2"] = { type = "Suffix", affix = "of the Berserker", "(100-150)% increased Armour Break Duration", statOrder = { 4399 }, level = 75, group = "ArmourBreakDuration", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(100-150)% increased Armour Break Duration" }, } }, + ["BerserkInfluenceAdditionalCombo1"] = { type = "Suffix", affix = "of the Berserker", "(20-39)% chance to build an additional Combo on Hit", statOrder = { 4175 }, level = 45, group = "ChanceToGenerateAdditionalCombo", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4258524206] = { "(20-39)% chance to build an additional Combo on Hit" }, } }, + ["BerserkInfluenceAdditionalCombo2"] = { type = "Suffix", affix = "of the Berserker", "(40-60)% chance to build an additional Combo on Hit", statOrder = { 4175 }, level = 75, group = "ChanceToGenerateAdditionalCombo", weightKey = { "berserking", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4258524206] = { "(40-60)% chance to build an additional Combo on Hit" }, } }, + ["DestructionInfluencePhysicalModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(10-15)% increased Explicit Physical Modifier magnitudes", statOrder = { 43 }, level = 65, group = "DestructionInfluencePhysicalModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, tradeHashes = { [1335369947] = { "(10-15)% increased Explicit Physical Modifier magnitudes" }, } }, + ["DestructionInfluenceFireModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Fire Modifier magnitudes", statOrder = { 39 }, level = 65, group = "DestructionInfluenceFireModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3574578302] = { "(15-20)% increased Explicit Fire Modifier magnitudes" }, } }, + ["DestructionInfluenceLightningModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Lightning Modifier magnitudes", statOrder = { 41 }, level = 65, group = "DestructionInfluenceLightningModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [3624940721] = { "(15-20)% increased Explicit Lightning Modifier magnitudes" }, } }, + ["DestructionInfluenceColdModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Cold Modifier magnitudes", statOrder = { 35 }, level = 65, group = "DestructionInfluenceColdModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [3206904707] = { "(15-20)% increased Explicit Cold Modifier magnitudes" }, } }, + ["DestructionInfluenceElementalModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Elemental Damage Modifier magnitudes", statOrder = { 46 }, level = 65, group = "DestructionInfluenceElementalModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "elemental" }, tradeHashes = { [231689132] = { "(15-20)% increased Explicit Elemental Damage Modifier magnitudes" }, } }, + ["DestructionInfluenceChaosModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(15-20)% increased Explicit Chaos Modifier magnitudes", statOrder = { 34 }, level = 65, group = "DestructionInfluenceChaosModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3196512240] = { "(15-20)% increased Explicit Chaos Modifier magnitudes" }, } }, + ["DestructionInfluenceManaModifierEffect"] = { type = "Suffix", affix = "of Destruction", "(25-30)% increased Explicit Mana Modifier magnitudes", statOrder = { 42 }, level = 65, group = "DestructionInfluenceManaModifierEffect", weightKey = { "sword", "axe", "mace", "spear", "claw", "dagger", "flail", "crossbow", "warstaff", "talisman", "destruction", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [3514984677] = { "(25-30)% increased Explicit Mana Modifier magnitudes" }, } }, + ["DestructionInfluenceSpeedModifierEffect"] = { type = "Prefix", affix = "Thrud's", "(25-30)% increased Explicit Speed Modifier magnitudes", statOrder = { 45 }, level = 65, group = "DestructionInfluenceSpeedModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [363924732] = { "(25-30)% increased Explicit Speed Modifier magnitudes" }, } }, + ["DestructionInfluenceCriticalModifierEffect"] = { type = "Prefix", affix = "Thrud's", "(20-30)% increased Explicit Critical Modifier magnitudes", statOrder = { 36 }, level = 65, group = "DestructionInfluenceCriticalModifierEffect", weightKey = { "destruction", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [2393315299] = { "(20-30)% increased Explicit Critical Modifier magnitudes" }, } }, + ["DecayInfluenceIgniteMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-34)% increased Ignite Magnitude", statOrder = { 1076 }, level = 45, group = "IgniteEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(20-34)% increased Ignite Magnitude" }, } }, + ["DecayInfluenceIgniteMagnitude2"] = { type = "Prefix", affix = "Katla's", "(35-50)% increased Ignite Magnitude", statOrder = { 1076 }, level = 75, group = "IgniteEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(35-50)% increased Ignite Magnitude" }, } }, + ["DecayInfluenceBleedMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-29)% increased Magnitude of Bleeding you inflict", statOrder = { 4797 }, level = 45, group = "BleedDotMultiplier", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(20-29)% increased Magnitude of Bleeding you inflict" }, } }, + ["DecayInfluenceBleedMagnitude2"] = { type = "Prefix", affix = "Katla's", "(30-42)% increased Magnitude of Bleeding you inflict", statOrder = { 4797 }, level = 75, group = "BleedDotMultiplier", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(30-42)% increased Magnitude of Bleeding you inflict" }, } }, + ["DecayInfluencePoisonMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-29)% increased Magnitude of Poison you inflict", statOrder = { 9457 }, level = 45, group = "PoisonEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(20-29)% increased Magnitude of Poison you inflict" }, } }, + ["DecayInfluencePoisonMagnitude2"] = { type = "Prefix", affix = "Katla's", "(30-42)% increased Magnitude of Poison you inflict", statOrder = { 9457 }, level = 75, group = "PoisonEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(30-42)% increased Magnitude of Poison you inflict" }, } }, + ["DecayInfluenceAilmentMagnitude1"] = { type = "Prefix", affix = "Katla's", "(20-25)% increased Magnitude of Ailments you inflict", statOrder = { 4249 }, level = 45, group = "AilmentEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(20-25)% increased Magnitude of Ailments you inflict" }, } }, + ["DecayInfluenceAilmentMagnitude2"] = { type = "Prefix", affix = "Katla's", "(26-32)% increased Magnitude of Ailments you inflict", statOrder = { 4249 }, level = 75, group = "AilmentEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(26-32)% increased Magnitude of Ailments you inflict" }, } }, + ["DecayInfluenceFasterDamagingAilments1"] = { type = "Prefix", affix = "Katla's", "Damaging Ailments deal damage (8-13)% faster", statOrder = { 6054 }, level = 45, group = "FasterAilmentDamage", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (8-13)% faster" }, } }, + ["DecayInfluenceFasterDamagingAilments2"] = { type = "Prefix", affix = "Katla's", "Damaging Ailments deal damage (14-20)% faster", statOrder = { 6054 }, level = 75, group = "FasterAilmentDamage", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (14-20)% faster" }, } }, + ["DecayInfluenceAilmentDuration1"] = { type = "Suffix", affix = "of Decay", "(10-19)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6051 }, level = 45, group = "DamagingAilmentDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(10-19)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["DecayInfluenceAilmentDuration2"] = { type = "Suffix", affix = "of Decay", "(20-30)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6051 }, level = 75, group = "DamagingAilmentDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(20-30)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["DecayInfluenceFasterLeech1"] = { type = "Suffix", affix = "of Decay", "Leech (8-12)% of Physical Attack Damage as Life", "Leech Life (15-25)% faster", statOrder = { 1037, 1894 }, level = 45, group = "LeechAndLeechSpeed", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-12)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (15-25)% faster" }, } }, + ["DecayInfluenceSlowerLeech1"] = { type = "Suffix", affix = "of Decay", "Leech (8-12)% of Physical Attack Damage as Life", "Leech Life (15-25)% slower", statOrder = { 1037, 1894 }, level = 45, group = "LeechAndLeechSpeed", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2557965901] = { "Leech (8-12)% of Physical Attack Damage as Life" }, [1570501432] = { "Leech Life (15-25)% slower" }, } }, + ["DecayInfluenceLeechAmount1"] = { type = "Suffix", affix = "of Decay", "(30-40)% increased amount of Life Leeched", statOrder = { 1893 }, level = 45, group = "IncreasedLifeLeechAmountGloves", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2112395885] = { "(30-40)% increased amount of Life Leeched" }, } }, + ["DecayInfluenceWitherMagnitude1"] = { type = "Suffix", affix = "of Decay", "(15-24)% increased Withered Magnitude", statOrder = { 10514 }, level = 45, group = "WitheredEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(15-24)% increased Withered Magnitude" }, } }, + ["DecayInfluenceWitherMagnitude2"] = { type = "Suffix", affix = "of Decay", "(25-35)% increased Withered Magnitude", statOrder = { 10514 }, level = 75, group = "WitheredEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(25-35)% increased Withered Magnitude" }, } }, + ["DecayInfluenceCurseMagnitude1"] = { type = "Suffix", affix = "of Decay", "(15-21)% increased Curse Magnitudes", statOrder = { 2374 }, level = 45, group = "CurseEffectiveness", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(15-21)% increased Curse Magnitudes" }, } }, + ["DecayInfluenceCurseMagnitude2"] = { type = "Suffix", affix = "of Decay", "(22-29)% increased Curse Magnitudes", statOrder = { 2374 }, level = 75, group = "CurseEffectiveness", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(22-29)% increased Curse Magnitudes" }, } }, + ["DecayInfluenceExposureEffect1"] = { type = "Suffix", affix = "of Decay", "(20-34)% increased Exposure Effect", statOrder = { 6510 }, level = 45, group = "ElementalExposureEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(20-34)% increased Exposure Effect" }, } }, + ["DecayInfluenceExposureEffect2"] = { type = "Suffix", affix = "of Decay", "(35-50)% increased Exposure Effect", statOrder = { 6510 }, level = 75, group = "ElementalExposureEffect", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(35-50)% increased Exposure Effect" }, } }, + ["DecayInfluenceIncreasedCurseDuration1"] = { type = "Suffix", affix = "of Decay", "(50-99)% increased Curse Duration", statOrder = { 1538 }, level = 75, group = "BaseCurseDuration", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3824372849] = { "(50-99)% increased Curse Duration" }, } }, + ["DecayInfluenceFasterCurseActivation1"] = { type = "Suffix", affix = "of Decay", "(20-30)% faster Curse Activation", statOrder = { 5910 }, level = 75, group = "CurseDelay", weightKey = { "decay", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(20-30)% faster Curse Activation" }, } }, + ["MarksmanInfluenceProjectileDamage1"] = { type = "Prefix", affix = "Kolr's", "(11-20)% increased Projectile Damage", statOrder = { 1736 }, level = 45, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(11-20)% increased Projectile Damage" }, } }, + ["MarksmanInfluenceProjectileDamage2"] = { type = "Prefix", affix = "Kolr's", "(21-30)% increased Projectile Damage", statOrder = { 1736 }, level = 65, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(21-30)% increased Projectile Damage" }, } }, + ["MarksmanInfluenceProjectileDamage3"] = { type = "Prefix", affix = "Kolr's", "(31-40)% increased Projectile Damage", statOrder = { 1736 }, level = 75, group = "ProjectileDamage", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(31-40)% increased Projectile Damage" }, } }, + ["MarksmanInfluenceMarkEffect1"] = { type = "Prefix", affix = "Kolr's", "(15-24)% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 45, group = "MarkEffect", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [712554801] = { "(15-24)% increased Effect of your Mark Skills" }, } }, + ["MarksmanInfluenceMarkEffect2"] = { type = "Prefix", affix = "Kolr's", "(25-39)% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 65, group = "MarkEffect", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [712554801] = { "(25-39)% increased Effect of your Mark Skills" }, } }, + ["MarksmanInfluenceProjectileSpeed1"] = { type = "Prefix", affix = "Kolr's", "(11-20)% increased Projectile Speed", statOrder = { 896 }, level = 45, group = "ProjectileSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(11-20)% increased Projectile Speed" }, } }, + ["MarksmanInfluenceProjectileSpeed2"] = { type = "Prefix", affix = "Kolr's", "(21-30)% increased Projectile Speed", statOrder = { 896 }, level = 65, group = "ProjectileSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(21-30)% increased Projectile Speed" }, } }, + ["MarksmanInfluenceProjectileSpeed3"] = { type = "Prefix", affix = "Kolr's", "(31-40)% increased Projectile Speed", statOrder = { 896 }, level = 75, group = "ProjectileSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(31-40)% increased Projectile Speed" }, } }, + ["MarksmanInfluenceCriticalHitChance1"] = { type = "Suffix", affix = "of the Hunt", "(16-21)% increased Critical Hit Chance", statOrder = { 975 }, level = 45, group = "CriticalStrikeChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(16-21)% increased Critical Hit Chance" }, } }, + ["MarksmanInfluenceCriticalHitChance2"] = { type = "Suffix", affix = "of the Hunt", "(22-27)% increased Critical Hit Chance", statOrder = { 975 }, level = 65, group = "CriticalStrikeChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(22-27)% increased Critical Hit Chance" }, } }, + ["MarksmanInfluenceCriticalHitChance3"] = { type = "Suffix", affix = "of the Hunt", "(28-34)% increased Critical Hit Chance", statOrder = { 975 }, level = 75, group = "CriticalStrikeChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(28-34)% increased Critical Hit Chance" }, } }, + ["MarksmanInfluenceChanceToPierce1"] = { type = "Suffix", affix = "of the Hunt", "(25-50)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 45, group = "ChanceToPierce", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(25-50)% chance to Pierce an Enemy" }, } }, + ["MarksmanInfluenceChanceToPierce2"] = { type = "Suffix", affix = "of the Hunt", "(51-100)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 75, group = "ChanceToPierce", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(51-100)% chance to Pierce an Enemy" }, } }, + ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles1"] = { type = "Suffix", affix = "of the Hunt", "+(23-36)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 45, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(23-36)% Surpassing chance to fire an additional Projectile" }, } }, + ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles2"] = { type = "Suffix", affix = "of the Hunt", "+(37-50)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 65, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(37-50)% Surpassing chance to fire an additional Projectile" }, } }, + ["MarksmanInfluenceSurpassingChanceAdditionalProjectiles3"] = { type = "Suffix", affix = "of the Hunt", "+(51-66)% Surpassing chance to fire an additional Projectile", statOrder = { 5499 }, level = 75, group = "AdditionalProjectileChance", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1347539079] = { "+(51-66)% Surpassing chance to fire an additional Projectile" }, } }, + ["MarksmanInfluenceChainToChainOffTerrain1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (10-19)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 45, group = "ChainFromTerrain", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (10-19)% chance to Chain an additional time from terrain" }, } }, + ["MarksmanInfluenceChainToChainOffTerrain2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (20-32)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 75, group = "ChainFromTerrain", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (20-32)% chance to Chain an additional time from terrain" }, } }, + ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking1"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (25-50)% chance for an additional Projectile when Forking", statOrder = { 5502 }, level = 45, group = "ForkingProjectiles", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (25-50)% chance for an additional Projectile when Forking" }, } }, + ["MarksmanInfluenceChanceForAdditionalProjectileWhenForking2"] = { type = "Suffix", affix = "of the Hunt", "Projectiles have (51-100)% chance for an additional Projectile when Forking", statOrder = { 5502 }, level = 75, group = "ForkingProjectiles", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (51-100)% chance for an additional Projectile when Forking" }, } }, + ["MarksmanInfluenceIncreasedMarkDuration1"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (50-74)% increased Skill Effect Duration", statOrder = { 8787 }, level = 45, group = "MarkDuration", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (50-74)% increased Skill Effect Duration" }, } }, + ["MarksmanInfluenceIncreasedMarkDuration2"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (75-100)% increased Skill Effect Duration", statOrder = { 8787 }, level = 75, group = "MarkDuration", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (75-100)% increased Skill Effect Duration" }, } }, + ["MarksmanInfluenceMarkSkillUseSpeed1"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (13-23)% increased Use Speed", statOrder = { 1944 }, level = 45, group = "MarkUseSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1714971114] = { "Mark Skills have (13-23)% increased Use Speed" }, } }, + ["MarksmanInfluenceMarkSkillUseSpeed2"] = { type = "Suffix", affix = "of the Hunt", "Mark Skills have (24-39)% increased Use Speed", statOrder = { 1944 }, level = 75, group = "MarkUseSpeed", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1714971114] = { "Mark Skills have (24-39)% increased Use Speed" }, } }, + ["MarksmanInfluenceMarkSkillLevels1"] = { type = "Suffix", affix = "of the Hunt", "+(1-2) to Level of all Mark Skills", statOrder = { 8788 }, level = 45, group = "MarkSkillGemLevels", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1992191903] = { "+(1-2) to Level of all Mark Skills" }, } }, + ["MarksmanInfluenceMarkSkillLevels2"] = { type = "Suffix", affix = "of the Hunt", "+(3-4) to Level of all Mark Skills", statOrder = { 8788 }, level = 65, group = "MarkSkillGemLevels", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1992191903] = { "+(3-4) to Level of all Mark Skills" }, } }, + ["MarksmanInfluenceProjectileSkills1"] = { type = "Suffix", affix = "of the Hunt", "+1 to Level of all Projectile Skills", statOrder = { 967 }, level = 45, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+1 to Level of all Projectile Skills" }, } }, + ["MarksmanInfluenceProjectileSkills2"] = { type = "Suffix", affix = "of the Hunt", "+2 to Level of all Projectile Skills", statOrder = { 967 }, level = 65, group = "GlobalIncreaseProjectileSkillGemLevel", weightKey = { "marksman", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1202301673] = { "+2 to Level of all Projectile Skills" }, } }, } \ No newline at end of file diff --git a/src/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua index c52188352..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] = { "Small Passive Skills in Radius also grant 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] = { "Small Passive Skills in Radius also grant 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] = { "Small Passive Skills in Radius also grant +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] = { "Small Passive Skills in Radius also grant +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] = { "Small Passive Skills in Radius also grant (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] = { "Small Passive Skills in Radius also grant (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] = { "Small Passive Skills in Radius also grant (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] = { "Small Passive Skills in Radius also grant +(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] = { "Small Passive Skills in Radius also grant +(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] = { "Small Passive Skills in Radius also grant +(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] = { "Small Passive Skills in Radius also grant +(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] = { "Notable Passive Skills in Radius also grant +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] = { "Notable Passive Skills in Radius also grant +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] = { "Notable Passive Skills in Radius also grant +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] = { "Notable Passive Skills in Radius also grant +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] = { "Notable Passive Skills in Radius also grant (2-3)% increased Strength" }, } }, - ["UniqueJewelRadiusPercentIntelligence"] = { affix = "", "(2-3)% increased Intelligence", statOrder = { 1082 }, 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 = { 1081 }, 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 = { 873 }, 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 = { 847 }, 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 = { 849 }, 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 = { 851 }, 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 = { 1602 }, 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" }, } }, - ["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 e4f528c69..0eb481ad5 100644 --- a/src/Data/ModJewel.lua +++ b/src/Data/ModJewel.lua @@ -2,365 +2,381 @@ -- Item data (c) Grinding Gear Games return { - ["JewelAccuracy"] = { type = "Prefix", affix = "Accurate", "(5-10)% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(5-10)% increased Accuracy Rating" }, } }, - ["JewelAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(5-15)% increased chance to inflict Ailments", statOrder = { 4136 }, level = 1, group = "AilmentChance", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1772247089] = { "(5-15)% increased chance to inflict Ailments" }, } }, - ["JewelAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(5-15)% increased Magnitude of Ailments you inflict", statOrder = { 4140 }, level = 1, group = "AilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(5-15)% increased Magnitude of Ailments you inflict" }, } }, - ["JewelAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3544800472] = { "(10-20)% increased Elemental Ailment Threshold" }, } }, - ["JewelAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(4-6)% increased Area of Effect", statOrder = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-6)% increased Area of Effect" }, } }, - ["JewelArmour"] = { type = "Prefix", affix = "Armoured", "(10-20)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHashes = { [2866361420] = { "(10-20)% increased Armour" }, } }, - ["JewelArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (5-15)% increased Armour", statOrder = { 4283 }, level = 1, group = "ArmourBreak", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (5-15)% increased Armour" }, } }, - ["JewelArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(10-20)% increased Armour Break Duration", statOrder = { 4285 }, level = 1, group = "ArmourBreakDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(10-20)% increased Armour Break Duration" }, } }, - ["JewelAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(6-16)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(6-16)% increased Critical Hit Chance for Attacks" }, } }, - ["JewelAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(10-20)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [3714003708] = { "(10-20)% increased Critical Damage Bonus for Attack Damage" }, } }, - ["JewelAttackDamage"] = { type = "Prefix", affix = "Combat", "(5-15)% increased Attack Damage", statOrder = { 1093 }, level = 1, group = "AttackDamage", weightKey = { "strjewel", "dexjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(5-15)% increased Attack Damage" }, } }, - ["JewelAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(2-4)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(2-4)% increased Attack Speed" }, } }, - ["JewelAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (3-7)% increased Magnitudes", statOrder = { 2472 }, level = 1, group = "AuraEffectForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "aura" }, tradeHashes = { [315791320] = { "Aura Skills have (3-7)% increased Magnitudes" }, } }, - ["JewelAxeDamage"] = { type = "Prefix", affix = "Sinister", "(5-15)% increased Damage with Axes", statOrder = { 1170 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3314142259] = { "(5-15)% increased Damage with Axes" }, } }, - ["JewelAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(2-4)% increased Attack Speed with Axes", statOrder = { 1255 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "(2-4)% increased Attack Speed with Axes" }, } }, - ["JewelBleedingChance"] = { type = "Prefix", affix = "Bleeding", "(3-7)% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "BaseChanceToBleed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2174054121] = { "(3-7)% chance to inflict Bleeding on Hit" }, } }, - ["JewelBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(5-10)% increased Bleeding Duration", statOrder = { 4522 }, level = 1, group = "BleedDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(5-10)% increased Bleeding Duration" }, } }, - ["JewelBlindEffect"] = { type = "Prefix", affix = "Stifling", "(5-10)% increased Blind Effect", statOrder = { 4781 }, level = 1, group = "BlindEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(5-10)% increased Blind Effect" }, } }, - ["JewelBlindonHit"] = { type = "Suffix", affix = "of Blinding", "(3-7)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4453 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(3-7)% chance to Blind Enemies on Hit with Attacks" }, } }, - ["JewelBlock"] = { type = "Prefix", affix = "Protecting", "(3-7)% increased Block chance", statOrder = { 1064 }, level = 1, group = "IncreasedBlockChance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(3-7)% increased Block chance" }, } }, - ["JewelDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(10-20)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2821 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1852872083] = { "(10-20)% increased Damage with Hits against Rare and Unique Enemies" }, } }, - ["JewelBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(5-15)% increased Accuracy Rating with Bows", statOrder = { 1277 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [169946467] = { "(5-15)% increased Accuracy Rating with Bows" }, } }, - ["JewelBowDamage"] = { type = "Prefix", affix = "Perforating", "(6-16)% increased Damage with Bows", statOrder = { 1190 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4188894176] = { "(6-16)% increased Damage with Bows" }, } }, - ["JewelBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(2-4)% increased Attack Speed with Bows", statOrder = { 1260 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "(2-4)% increased Attack Speed with Bows" }, } }, - ["JewelCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-4)% increased Cast Speed" }, } }, - ["JewelChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (3-5)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 1, group = "ChainFromTerrain", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (3-5)% chance to Chain an additional time from terrain" }, } }, - ["JewelCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(5-15)% increased Charm Effect Duration", statOrder = { 878 }, level = 1, group = "CharmDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1389754388] = { "(5-15)% increased Charm Effect Duration" }, } }, - ["JewelCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(5-15)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "CharmChargesGained", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3585532255] = { "(5-15)% increased Charm Charges gained" }, } }, - ["JewelCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(10-20)% increased Damage while you have an active Charm", statOrder = { 5627 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [627767961] = { "(10-20)% increased Damage while you have an active Charm" }, } }, - ["JewelChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(6-12)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(6-12)% increased Chaos Damage" }, } }, - ["JewelChillDuration"] = { type = "Suffix", affix = "of Frost", "(15-25)% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(15-25)% increased Chill Duration on Enemies" }, } }, - ["JewelColdDamage"] = { type = "Prefix", affix = "Chilling", "(5-15)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(5-15)% increased Cold Damage" }, } }, - ["JewelColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (5-10)% Cold Resistance", statOrder = { 2614 }, level = 1, group = "ColdResistancePenetration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-10)% Cold Resistance" }, } }, - ["JewelCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(3-5)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(3-5)% increased Cooldown Recovery Rate" }, } }, - ["JewelCorpses"] = { type = "Prefix", affix = "Necromantic", "(10-20)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3802 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2118708619] = { "(10-20)% increased Damage if you have Consumed a Corpse Recently" }, } }, - ["JewelCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5424 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, - ["JewelCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(5-15)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(5-15)% increased Critical Hit Chance" }, } }, - ["JewelCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(10-20)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-20)% increased Critical Damage Bonus" }, } }, - ["JewelSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(10-20)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(10-20)% increased Critical Spell Damage Bonus" }, } }, - ["JewelCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(6-16)% increased Damage with Crossbows", statOrder = { 3849 }, level = 1, group = "CrossbowDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [427684353] = { "(6-16)% increased Damage with Crossbows" }, } }, - ["JewelCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(10-15)% increased Crossbow Reload Speed", statOrder = { 9149 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3192728503] = { "(10-15)% increased Crossbow Reload Speed" }, } }, - ["JewelCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(2-4)% increased Attack Speed with Crossbows", statOrder = { 3853 }, level = 1, group = "CrossbowSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1135928777] = { "(2-4)% increased Attack Speed with Crossbows" }, } }, - ["JewelCurseArea"] = { type = "Prefix", affix = "Expanding", "(8-12)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(8-12)% increased Area of Effect of Curses" }, } }, - ["JewelCurseDelay"] = { type = "Suffix", affix = "of Chanting", "(5-15)% faster Curse Activation", statOrder = { 5530 }, level = 1, group = "CurseDelay", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "curse" }, tradeHashes = { [1104825894] = { "(5-15)% faster Curse Activation" }, } }, - ["JewelCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(15-25)% increased Curse Duration", statOrder = { 1466 }, level = 1, group = "BaseCurseDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "curse" }, tradeHashes = { [3824372849] = { "(15-25)% increased Curse Duration" }, } }, - ["JewelCurseEffect"] = { type = "Prefix", affix = "Hexing", "(2-4)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(2-4)% increased Curse Magnitudes" }, } }, - ["JewelDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(6-16)% increased Critical Hit Chance with Daggers", statOrder = { 1299 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [4018186542] = { "(6-16)% increased Critical Hit Chance with Daggers" }, } }, - ["JewelDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(6-16)% increased Damage with Daggers", statOrder = { 1182 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3586984690] = { "(6-16)% increased Damage with Daggers" }, } }, - ["JewelDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(2-4)% increased Attack Speed with Daggers", statOrder = { 1258 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "(2-4)% increased Attack Speed with Daggers" }, } }, - ["JewelDamagefromMana"] = { type = "Suffix", affix = "of Mind", "(2-4)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(2-4)% of Damage is taken from Mana before Life" }, } }, - ["JewelDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(15-25)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5553 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2301718443] = { "(15-25)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["JewelDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(5-10)% increased Duration of Damaging Ailments on Enemies", statOrder = { 5668 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(5-10)% increased Duration of Damaging Ailments on Enemies" }, } }, - ["JewelDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "(5-10)% chance to Daze on Hit", statOrder = { 4530 }, level = 1, group = "DazeBuildup", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3146310524] = { "(5-10)% chance to Daze on Hit" }, } }, - ["JewelDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (5-10)% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (5-10)% faster" }, } }, - ["JewelElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 6818 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "ailment" }, tradeHashes = { [1062710370] = { "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, - ["JewelElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(5-15)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(5-15)% increased Elemental Damage" }, } }, - ["JewelEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (10-20)% increased Damage", statOrder = { 5912 }, level = 1, group = "ExertedAttackDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (10-20)% increased Damage" }, } }, - ["JewelEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (4-8)% increased Energy", statOrder = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (4-8)% increased Energy" }, } }, - ["JewelEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(10-20)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2482852589] = { "(10-20)% increased maximum Energy Shield" }, } }, - ["JewelEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(10-15)% faster start of Energy Shield Recharge" }, } }, - ["JewelEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(10-20)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2339757871] = { "(10-20)% increased Energy Shield Recharge Rate" }, } }, - ["JewelEvasion"] = { type = "Prefix", affix = "Evasive", "(10-20)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHashes = { [2106365538] = { "(10-20)% increased Evasion Rating" }, } }, - ["JewelFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (3-7)% faster", statOrder = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (3-7)% faster" }, } }, - ["JewelFireDamage"] = { type = "Prefix", affix = "Flaming", "(5-15)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(5-15)% increased Fire Damage" }, } }, - ["JewelFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (5-10)% Fire Resistance", statOrder = { 2613 }, level = 1, group = "FireResistancePenetration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (5-10)% Fire Resistance" }, } }, - ["JewelFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(6-16)% increased Critical Hit Chance with Flails", statOrder = { 3843 }, level = 1, group = "FlailCriticalChance", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1484710594] = { "(6-16)% increased Critical Hit Chance with Flails" }, } }, - ["JewelFlailDamage"] = { type = "Prefix", affix = "Flailing", "(6-16)% increased Damage with Flails", statOrder = { 3838 }, level = 1, group = "FlailDamage", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1731242173] = { "(6-16)% increased Damage with Flails" }, } }, - ["JewelFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(5-10)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, - ["JewelFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(5-10)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "FlaskDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(5-10)% increased Flask Effect Duration" }, } }, - ["JewelFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(30-50)% increased Energy Shield from Equipped Focus", statOrder = { 6002 }, level = 1, group = "FocusEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [3174700878] = { "(30-50)% increased Energy Shield from Equipped Focus" }, } }, - ["JewelForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (10-15)% chance for an additional Projectile when Forking", statOrder = { 5139 }, level = 1, group = "ForkingProjectiles", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (10-15)% chance for an additional Projectile when Forking" }, } }, - ["JewelFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(10-20)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(10-20)% increased Freeze Buildup" }, } }, - ["JewelFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(18-32)% increased Freeze Threshold", statOrder = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [3780644166] = { "(18-32)% increased Freeze Threshold" }, } }, - ["JewelHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (15-25)% increased Damage", statOrder = { 5632 }, level = 1, group = "HeraldDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [21071013] = { "Herald Skills deal (15-25)% increased Damage" }, } }, - ["JewelIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(10-20)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(10-20)% increased Flammability Magnitude" }, } }, - ["JewelIgniteEffect"] = { type = "Prefix", affix = "Burning", "(5-15)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3791899485] = { "(5-15)% increased Ignite Magnitude" }, } }, - ["JewelIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(5-10)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(5-10)% increased Skill Effect Duration" }, } }, - ["JewelKnockback"] = { type = "Suffix", affix = "of Fending", "(5-15)% increased Knockback Distance", statOrder = { 1669 }, level = 1, group = "KnockbackDistance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [565784293] = { "(5-15)% increased Knockback Distance" }, } }, - ["JewelLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(4-6)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "(4-6)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["JewelLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(5-15)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(5-15)% increased Life Recovery from Flasks" }, } }, - ["JewelLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(10-20)% increased Life Flask Charges gained", statOrder = { 6970 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4009879772] = { "(10-20)% increased Life Flask Charges gained" }, } }, - ["JewelLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(5-15)% increased amount of Life Leeched", statOrder = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2112395885] = { "(5-15)% increased amount of Life Leeched" }, } }, - ["JewelLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of maximum Life on Kill" }, } }, - ["JewelLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "(2-3)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, - ["JewelLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(5-10)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(5-10)% increased Life Regeneration rate" }, } }, - ["JewelLightningDamage"] = { type = "Prefix", affix = "Humming", "(5-15)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(5-15)% increased Lightning Damage" }, } }, - ["JewelLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (5-10)% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (5-10)% Lightning Resistance" }, } }, - ["JewelMaceDamage"] = { type = "Prefix", affix = "Beating", "(6-16)% increased Damage with Maces", statOrder = { 1186 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1181419800] = { "(6-16)% increased Damage with Maces" }, } }, - ["JewelMaceStun"] = { type = "Suffix", affix = "of Thumping", "(15-25)% increased Stun Buildup with Maces", statOrder = { 7459 }, level = 1, group = "MaceStun", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [872504239] = { "(15-25)% increased Stun Buildup with Maces" }, } }, - ["JewelManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(5-15)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(5-15)% increased Mana Recovery from Flasks" }, } }, - ["JewelManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(10-20)% increased Mana Flask Charges gained", statOrder = { 7491 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3590792340] = { "(10-20)% increased Mana Flask Charges gained" }, } }, - ["JewelManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(5-15)% increased amount of Mana Leeched", statOrder = { 1822 }, level = 1, group = "ManaLeechAmount", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2839066308] = { "(5-15)% increased amount of Mana Leeched" }, } }, - ["JewelManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1604736568] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, - ["JewelManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(5-15)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(5-15)% increased Mana Regeneration Rate" }, } }, - ["JewelMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (5-15)% increased Use Speed", statOrder = { 1871 }, level = 1, group = "MarkCastSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed", "curse" }, tradeHashes = { [1714971114] = { "Mark Skills have (5-15)% increased Use Speed" }, } }, - ["JewelMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (18-32)% increased Skill Effect Duration", statOrder = { 8276 }, level = 1, group = "MarkDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (18-32)% increased Skill Effect Duration" }, } }, - ["JewelMarkEffect"] = { type = "Prefix", affix = "Marking", "(4-8)% increased Effect of your Mark Skills", statOrder = { 2268 }, level = 1, group = "MarkEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [712554801] = { "(4-8)% increased Effect of your Mark Skills" }, } }, - ["JewelMaximumColdResistance"] = { type = "Suffix", affix = "of the Kraken", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["JewelMaximumFireResistance"] = { type = "Suffix", affix = "of the Phoenix", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, - ["JewelMaximumLightningResistance"] = { type = "Suffix", affix = "of the Leviathan", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, - ["JewelMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9032 }, level = 1, group = "MaximumRage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+1 to Maximum Rage" }, } }, - ["JewelMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(5-15)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(5-15)% increased Melee Damage" }, } }, - ["JewelMinionAccuracy"] = { type = "Prefix", affix = "Training", "(10-20)% increased Minion Accuracy Rating", statOrder = { 8446 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(10-20)% increased Minion Accuracy Rating" }, } }, - ["JewelMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (5-8)% increased Area of Effect", statOrder = { 2649 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (5-8)% increased Area of Effect" }, } }, - ["JewelMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (2-4)% increased Attack and Cast Speed", statOrder = { 8453 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-4)% increased Attack and Cast Speed" }, } }, - ["JewelMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-13)% to Chaos Resistance", statOrder = { 2559 }, level = 1, group = "MinionChaosResistance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(7-13)% to Chaos Resistance" }, } }, - ["JewelMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (10-20)% increased Critical Hit Chance", statOrder = { 8476 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (10-20)% increased Critical Hit Chance" }, } }, - ["JewelMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (15-25)% increased Critical Damage Bonus", statOrder = { 8478 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (15-25)% increased Critical Damage Bonus" }, } }, - ["JewelMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (5-15)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-15)% increased Damage" }, } }, - ["JewelMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (5-15)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (5-15)% increased maximum Life" }, } }, - ["JewelMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (6-16)% additional Physical Damage Reduction", statOrder = { 1946 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (6-16)% additional Physical Damage Reduction" }, } }, - ["JewelMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(5-10)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(5-10)% to all Elemental Resistances" }, } }, - ["JewelMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (5-15)% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-15)% faster" }, } }, - ["JewelMovementSpeed"] = { type = "Suffix", affix = "of Speed", "(1-2)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-2)% increased Movement Speed" }, } }, - ["JewelOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (15-25)% increased Duration", statOrder = { 8776 }, level = 1, group = "OfferingDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2957407601] = { "Offering Skills have (15-25)% increased Duration" }, } }, - ["JewelOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (15-25)% increased Maximum Life", statOrder = { 8777 }, level = 1, group = "OfferingLife", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3787460122] = { "Offerings have (15-25)% increased Maximum Life" }, } }, - ["JewelPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(5-15)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(5-15)% increased Global Physical Damage" }, } }, - ["JewelPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(10-20)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(10-20)% chance to Pierce an Enemy" }, } }, - ["JewelPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(10-20)% increased Pin Buildup", statOrder = { 6750 }, level = 1, group = "PinBuildup", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3473929743] = { "(10-20)% increased Pin Buildup" }, } }, - ["JewelPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "(5-10)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, - ["JewelPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(5-15)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(5-15)% increased Magnitude of Poison you inflict" }, } }, - ["JewelPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(5-10)% increased Poison Duration", statOrder = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(5-10)% increased Poison Duration" }, } }, - ["JewelProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(5-15)% increased Projectile Damage", statOrder = { 1663 }, level = 1, group = "ProjectileDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(5-15)% increased Projectile Damage" }, } }, - ["JewelProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(4-8)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(4-8)% increased Projectile Speed" }, } }, - ["JewelQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(6-16)% increased Damage with Quarterstaves", statOrder = { 1175 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4045894391] = { "(6-16)% increased Damage with Quarterstaves" }, } }, - ["JewelQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(10-20)% increased Freeze Buildup with Quarterstaves", statOrder = { 9020 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1697447343] = { "(10-20)% increased Freeze Buildup with Quarterstaves" }, } }, - ["JewelQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(2-4)% increased Attack Speed with Quarterstaves", statOrder = { 1256 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3283482523] = { "(2-4)% increased Attack Speed with Quarterstaves" }, } }, - ["JewelQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(4-6)% increased bonuses gained from Equipped Quiver", statOrder = { 9028 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1200678966] = { "(4-6)% increased bonuses gained from Equipped Quiver" }, } }, - ["JewelRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "RageOnHit", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["JewelRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-3) Rage when Hit by an Enemy", statOrder = { 6433 }, level = 1, group = "GainRageWhenHit", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (1-3) Rage when Hit by an Enemy" }, } }, - ["JewelShieldDefences"] = { type = "Prefix", affix = "Shielding", "(18-32)% increased Defences from Equipped Shield", statOrder = { 9241 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences" }, tradeHashes = { [145497481] = { "(18-32)% increased Defences from Equipped Shield" }, } }, - ["JewelShockChance"] = { type = "Suffix", affix = "of Shocking", "(10-20)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(10-20)% increased chance to Shock" }, } }, - ["JewelShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(15-25)% increased Shock Duration", statOrder = { 1540 }, level = 1, group = "ShockDuration", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(15-25)% increased Shock Duration" }, } }, - ["JewelShockEffect"] = { type = "Prefix", affix = "Jolting", "(10-15)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(10-15)% increased Magnitude of Shock you inflict" }, } }, - ["JewelSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, - ["JewelSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(2-4)% increased Attack Speed with Spears", statOrder = { 1263 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1165163804] = { "(2-4)% increased Attack Speed with Spears" }, } }, - ["JewelSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(10-20)% increased Critical Damage Bonus with Spears", statOrder = { 1328 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2456523742] = { "(10-20)% increased Critical Damage Bonus with Spears" }, } }, - ["JewelSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(6-16)% increased Damage with Spears", statOrder = { 1204 }, level = 1, group = "SpearDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2696027455] = { "(6-16)% increased Damage with Spears" }, } }, - ["JewelSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(5-15)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHashes = { [737908626] = { "(5-15)% increased Critical Hit Chance for Spells" }, } }, - ["JewelSpellDamage"] = { type = "Prefix", affix = "Mystic", "(5-15)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(5-15)% increased Spell Damage" }, } }, - ["JewelStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(10-20)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239367161] = { "(10-20)% increased Stun Buildup" }, } }, - ["JewelStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(6-16)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(6-16)% increased Stun Threshold" }, } }, - ["JewelStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 9531 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield" }, } }, - ["JewelAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 4146 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [3398301358] = { "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield" }, } }, - ["JewelStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(15-25)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 9533 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1405298142] = { "(15-25)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, - ["JewelBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(5-15)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(5-15)% increased Magnitude of Bleeding you inflict" }, } }, - ["JewelSwordDamage"] = { type = "Prefix", affix = "Vicious", "(6-16)% increased Damage with Swords", statOrder = { 1196 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [83050999] = { "(6-16)% increased Damage with Swords" }, } }, - ["JewelSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(2-4)% increased Attack Speed with Swords", statOrder = { 1261 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "(2-4)% increased Attack Speed with Swords" }, } }, - ["JewelThorns"] = { type = "Prefix", affix = "Retaliating", "(10-20)% increased Thorns damage", statOrder = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(10-20)% increased Thorns damage" }, } }, - ["JewelTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(10-18)% increased Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(10-18)% increased Totem Damage" }, } }, - ["JewelTotemLife"] = { type = "Prefix", affix = "Carved", "(10-20)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(10-20)% increased Totem Life" }, } }, - ["JewelTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(10-20)% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(10-20)% increased Totem Placement speed" }, } }, - ["JewelTrapDamage"] = { type = "Prefix", affix = "Trapping", "(6-16)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(6-16)% increased Trap Damage" }, } }, - ["JewelTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(4-8)% increased Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeed", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(4-8)% increased Trap Throwing Speed" }, } }, - ["JewelTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (10-18)% increased Spell Damage", statOrder = { 9712 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (10-18)% increased Spell Damage" }, } }, - ["JewelUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(6-16)% increased Damage with Unarmed Attacks", statOrder = { 3153 }, level = 1, group = "UnarmedDamage", weightKey = { "dexjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1870736574] = { "(6-16)% increased Damage with Unarmed Attacks" }, } }, - ["JewelWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(5-15)% increased Warcry Buff Effect", statOrder = { 9883 }, level = 1, group = "WarcryEffect", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(5-15)% increased Warcry Buff Effect" }, } }, - ["JewelWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(5-15)% increased Warcry Cooldown Recovery Rate", statOrder = { 2929 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(5-15)% increased Warcry Cooldown Recovery Rate" }, } }, - ["JewelWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(10-20)% increased Damage with Warcries", statOrder = { 9886 }, level = 1, group = "WarcryDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(10-20)% increased Damage with Warcries" }, } }, - ["JewelWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(10-20)% increased Warcry Speed", statOrder = { 2884 }, level = 1, group = "WarcrySpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(10-20)% increased Warcry Speed" }, } }, - ["JewelWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(15-25)% increased Weapon Swap Speed", statOrder = { 9897 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(15-25)% increased Weapon Swap Speed" }, } }, - ["JewelWitheredEffect"] = { type = "Prefix", affix = "Withering", "(5-10)% increased Withered Magnitude", statOrder = { 9915 }, level = 1, group = "WitheredEffect", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(5-10)% increased Withered Magnitude" }, } }, - ["JewelUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(2-4)% increased Unarmed Attack Speed", statOrder = { 9768 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [662579422] = { "(2-4)% increased Unarmed Attack Speed" }, } }, - ["JewelProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8973 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, - ["JewelMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8364 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["JewelParryDamage"] = { type = "Prefix", affix = "Parrying", "(15-25)% increased Parry Damage", statOrder = { 8799 }, level = 1, group = "ParryDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1569159338] = { "(15-25)% increased Parry Damage" }, } }, - ["JewelParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(10-15)% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [3401186585] = { "(10-15)% increased Parried Debuff Duration" }, } }, - ["JewelStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(15-25)% increased Stun Threshold while Parrying", statOrder = { 8809 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1911237468] = { "(15-25)% increased Stun Threshold while Parrying" }, } }, - ["JewelVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "(2-3)% chance to gain Volatility on Kill", statOrder = { 9860 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3749502527] = { "(2-3)% chance to gain Volatility on Kill" }, } }, - ["JewelCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (10-20)% increased Damage", statOrder = { 5339 }, level = 1, group = "CompanionDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, tradeHashes = { [234296660] = { "Companions deal (10-20)% increased Damage" }, } }, - ["JewelCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (10-20)% increased maximum Life", statOrder = { 5342 }, level = 1, group = "CompanionLife", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1805182458] = { "Companions have (10-20)% increased maximum Life" }, } }, - ["JewelHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(10-20)% increased Hazard Damage", statOrder = { 6536 }, level = 1, group = "HazardDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1697951953] = { "(10-20)% increased Hazard Damage" }, } }, - ["JewelIncisionChance"] = { type = "Prefix", affix = "Incise", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5175 }, level = 1, group = "IncisionChance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, - ["JewelBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(15-20)% increased Glory generation for Banner Skills", statOrder = { 6474 }, level = 1, group = "BannerValourGained", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1869147066] = { "(15-20)% increased Glory generation for Banner Skills" }, } }, - ["JewelBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (10-20)% increased Area of Effect", statOrder = { 4495 }, level = 1, group = "BannerArea", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [429143663] = { "Banner Skills have (10-20)% increased Area of Effect" }, } }, - ["JewelBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (15-25)% increased Duration", statOrder = { 4497 }, level = 1, group = "BannerDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2720982137] = { "Banner Skills have (15-25)% increased Duration" }, } }, - ["JewelPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(15-25)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, - ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7285 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Medium" }, } }, - ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7285 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Large" }, } }, - ["JewelRadiusSmallNodeEffect"] = { type = "Suffix", affix = "of Potency", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7308 }, 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 = { 7308 }, 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 = { 7304 }, 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 = { 1268 }, 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 = { 4136 }, 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 = { 4140 }, 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 = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 1557 }, 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 = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, 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 = { 4283 }, 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 = { 4285 }, 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 = { 934 }, 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 = { 938 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 1093 }, 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 = { 941 }, 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 = { 2472 }, 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 = { 1170 }, 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 = { 1255 }, 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 = { 4532 }, level = 1, group = "BaseChanceToBleed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 4522 }, 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 = { 4781 }, 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 = { 4453 }, 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 = { 1064 }, 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 = { 2821 }, 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 = { 1277 }, 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 = { 1190 }, 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 = { 1260 }, 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 = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 8970 }, 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 = { 878 }, level = 1, group = "CharmDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 5227 }, level = 1, group = "CharmChargesGained", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 5627 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 858 }, 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 = { 1539 }, 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 = { 856 }, 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 = { 2614 }, 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 = { 4539 }, 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 = { 3802 }, 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 = { 5424 }, 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 = { 933 }, 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 = { 937 }, 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 = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 3849 }, 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 = { 9149 }, 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 = { 3853 }, 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 = { 1875 }, 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 = { 1466 }, level = 1, group = "BaseCurseDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 2266 }, 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 = { 1299 }, 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 = { 1182 }, 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 = { 1258 }, 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 = { 2362 }, 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 = { 5553 }, 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 = { 5668 }, 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 = { 4530 }, 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 = { 5703 }, 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 = { 6818 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "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 = { 1651 }, 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" }, 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 = { 5912 }, 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 = { 5987 }, 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 = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, 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 = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, 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 = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, 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 = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, 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 = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "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 = { 855 }, 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 = { 2613 }, 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 = { 3843 }, 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 = { 3838 }, 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 = { 6216 }, 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 = { 879 }, 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 = { 6002 }, level = 1, group = "FocusEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, 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 = { 5139 }, 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 = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, 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 = { 5632 }, level = 1, group = "HeraldDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, 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 = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, 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 = { 1572 }, 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 = { 1669 }, 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 = { 4605 }, 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 = { 1719 }, 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 = { 6970 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 1437 }, 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 = { 970 }, 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 = { 969 }, 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 = { 857 }, 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 = { 2615 }, 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 = { 1186 }, 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 = { 7459 }, 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 = { 1720 }, 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 = { 7491 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 1822 }, 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 = { 1443 }, 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 = { 976 }, 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 = { 1871 }, level = 1, group = "MarkCastSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed", "curse" }, 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 = { 8276 }, 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 = { 2268 }, level = 1, group = "MarkEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, 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 = { 9032 }, 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 = { 1124 }, 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 = { 8446 }, 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 = { 2649 }, 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 = { 8453 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 2559 }, level = 1, group = "MinionChaosResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 8476 }, 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 = { 8478 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 1646 }, level = 1, group = "MinionDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 962 }, 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 = { 1946 }, 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 = { 2558 }, level = 1, group = "MinionElementalResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "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 = { 8529 }, 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 = { 827 }, 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 = { 8776 }, level = 1, group = "OfferingDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 8777 }, level = 1, group = "OfferingLife", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 1122 }, 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 = { 1001 }, 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 = { 6750 }, 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 = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 8925 }, 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 = { 2786 }, 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 = { 1663 }, 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 = { 875 }, 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 = { 1175 }, 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 = { 9020 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, 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 = { 1256 }, 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 = { 9028 }, 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 = { 6431 }, level = 1, group = "RageOnHit", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 6433 }, 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 Defences from Equipped Shield", statOrder = { 9241 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences" }, nodeType = 2, tradeHashes = { [713216632] = { "Notable Passive Skills in Radius also grant (8-15)% increased Defences from Equipped Shield" }, } }, - ["JewelRadiusShockChance"] = { type = "Suffix", affix = "of Shocking", "(2-3)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, 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 = { 1540 }, 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 = { 9248 }, 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 = { 4608 }, 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 = { 1263 }, 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 = { 1328 }, 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 = { 1204 }, 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 = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 853 }, 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 = { 984 }, 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 = { 2878 }, 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 = { 9531 }, 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 = { 4146 }, 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 = { 9533 }, 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 = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "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 = { 1196 }, 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 = { 1261 }, 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 = { 9646 }, 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 = { 1089 }, 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 = { 1459 }, 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 = { 2250 }, 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 = { 854 }, 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 = { 1597 }, 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 = { 9712 }, 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 = { 3153 }, level = 1, group = "UnarmedDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHashes = { [1970067060] = { "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 = { 9883 }, 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 = { 2929 }, 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 = { 9886 }, 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 = { 2884 }, 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 = { 9897 }, 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 = { 9915 }, 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 = { 9768 }, 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 = { 8973 }, 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 = { 8364 }, 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 = { 8799 }, level = 1, group = "ParryDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 8808 }, 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 = { 8809 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, 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 = { 9860 }, 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 = { 5339 }, level = 1, group = "CompanionDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "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 = { 5342 }, 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 = { 6536 }, 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 = { 5175 }, level = 1, group = "IncisionChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "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 = { 6474 }, 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 = { 4495 }, 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 = { 4497 }, 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 = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHashes = { [4032352472] = { "Notable Passive Skills in Radius also grant (8-12)% increased Presence Area of Effect" }, } }, - ["JewelRadiusShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(1-2)% increased Skill Speed while Shapeshifted", statOrder = { 9317 }, 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 = { 5567 }, 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 = { 8914 }, 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 = { 9317 }, 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 = { 5567 }, 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 = { 8914 }, 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" }, } }, + ["JewelAccuracy"] = { type = "Prefix", affix = "Accurate", "(5-10)% increased Accuracy Rating", statOrder = { 1331 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(5-10)% increased Accuracy Rating" }, } }, + ["JewelAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(5-15)% increased chance to inflict Ailments", statOrder = { 4245 }, level = 1, group = "AilmentChance", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1772247089] = { "(5-15)% increased chance to inflict Ailments" }, } }, + ["JewelAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(5-15)% increased Magnitude of Ailments you inflict", statOrder = { 4249 }, level = 1, group = "AilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [1303248024] = { "(5-15)% increased Magnitude of Ailments you inflict" }, } }, + ["JewelAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4256 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [3544800472] = { "(10-20)% increased Elemental Ailment Threshold" }, } }, + ["JewelAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(4-6)% increased Area of Effect", statOrder = { 1628 }, level = 1, group = "AreaOfEffect", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [280731498] = { "(4-6)% increased Area of Effect" }, } }, + ["JewelArmour"] = { type = "Prefix", affix = "Armoured", "(10-20)% increased Armour", statOrder = { 881 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "armour" }, tradeHashes = { [2866361420] = { "(10-20)% increased Armour" }, } }, + ["JewelArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (5-15)% increased Armour", statOrder = { 4397 }, level = 1, group = "ArmourBreak", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1776411443] = { "Break (5-15)% increased Armour" }, } }, + ["JewelArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(10-20)% increased Armour Break Duration", statOrder = { 4399 }, level = 1, group = "ArmourBreakDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2637470878] = { "(10-20)% increased Armour Break Duration" }, } }, + ["JewelAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(6-16)% increased Critical Hit Chance for Attacks", statOrder = { 976 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2194114101] = { "(6-16)% increased Critical Hit Chance for Attacks" }, } }, + ["JewelAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(10-20)% increased Critical Damage Bonus for Attack Damage", statOrder = { 980 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHashes = { [3714003708] = { "(10-20)% increased Critical Damage Bonus for Attack Damage" }, } }, + ["JewelAttackDamage"] = { type = "Prefix", affix = "Combat", "(5-15)% increased Attack Damage", statOrder = { 1155 }, level = 1, group = "AttackDamage", weightKey = { "strjewel", "dexjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2843214518] = { "(5-15)% increased Attack Damage" }, } }, + ["JewelAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(2-4)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(2-4)% increased Attack Speed" }, } }, + ["JewelAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (3-7)% increased Magnitudes", statOrder = { 2572 }, level = 1, group = "AuraEffectForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "aura" }, tradeHashes = { [315791320] = { "Aura Skills have (3-7)% increased Magnitudes" }, } }, + ["JewelAxeDamage"] = { type = "Prefix", affix = "Sinister", "(5-15)% increased Damage with Axes", statOrder = { 1232 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3314142259] = { "(5-15)% increased Damage with Axes" }, } }, + ["JewelAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(2-4)% increased Attack Speed with Axes", statOrder = { 1318 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3550868361] = { "(2-4)% increased Attack Speed with Axes" }, } }, + ["JewelBleedingChance"] = { type = "Prefix", affix = "Bleeding", "(3-7)% chance to inflict Bleeding on Hit", statOrder = { 4660 }, level = 1, group = "BaseChanceToBleed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [2174054121] = { "(3-7)% chance to inflict Bleeding on Hit" }, } }, + ["JewelBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(5-10)% increased Bleeding Duration", statOrder = { 4649 }, level = 1, group = "BleedDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(5-10)% increased Bleeding Duration" }, } }, + ["JewelBlindEffect"] = { type = "Prefix", affix = "Stifling", "(5-10)% increased Blind Effect", statOrder = { 4916 }, level = 1, group = "BlindEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1585769763] = { "(5-10)% increased Blind Effect" }, } }, + ["JewelBlindonHit"] = { type = "Suffix", affix = "of Blinding", "(3-7)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4578 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [318953428] = { "(3-7)% chance to Blind Enemies on Hit with Attacks" }, } }, + ["JewelBlock"] = { type = "Prefix", affix = "Protecting", "(3-7)% increased Block chance", statOrder = { 1132 }, level = 1, group = "IncreasedBlockChance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [4147897060] = { "(3-7)% increased Block chance" }, } }, + ["JewelDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(10-20)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2924 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1852872083] = { "(10-20)% increased Damage with Hits against Rare and Unique Enemies" }, } }, + ["JewelBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(5-15)% increased Accuracy Rating with Bows", statOrder = { 1340 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [169946467] = { "(5-15)% increased Accuracy Rating with Bows" }, } }, + ["JewelBowDamage"] = { type = "Prefix", affix = "Perforating", "(6-16)% increased Damage with Bows", statOrder = { 1252 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4188894176] = { "(6-16)% increased Damage with Bows" }, } }, + ["JewelBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(2-4)% increased Attack Speed with Bows", statOrder = { 1323 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3759735052] = { "(2-4)% increased Attack Speed with Bows" }, } }, + ["JewelCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-4)% increased Cast Speed" }, } }, + ["JewelChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (3-5)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 1, group = "ChainFromTerrain", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4081947835] = { "Projectiles have (3-5)% chance to Chain an additional time from terrain" }, } }, + ["JewelCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(5-15)% increased Charm Effect Duration", statOrder = { 899 }, level = 1, group = "CharmDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [1389754388] = { "(5-15)% increased Charm Effect Duration" }, } }, + ["JewelCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(5-15)% increased Charm Charges gained", statOrder = { 5591 }, level = 1, group = "CharmChargesGained", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "charm" }, tradeHashes = { [3585532255] = { "(5-15)% increased Charm Charges gained" }, } }, + ["JewelCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(10-20)% increased Damage while you have an active Charm", statOrder = { 6009 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "damage" }, tradeHashes = { [627767961] = { "(10-20)% increased Damage while you have an active Charm" }, } }, + ["JewelChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(7-13)% increased Chaos Damage", statOrder = { 875 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [736967255] = { "(7-13)% increased Chaos Damage" }, } }, + ["JewelChillDuration"] = { type = "Suffix", affix = "of Frost", "(15-25)% increased Chill Duration on Enemies", statOrder = { 1610 }, level = 1, group = "IncreasedChillDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(15-25)% increased Chill Duration on Enemies" }, } }, + ["JewelColdDamage"] = { type = "Prefix", affix = "Chilling", "(5-15)% increased Cold Damage", statOrder = { 873 }, level = 1, group = "ColdDamagePercentage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(5-15)% increased Cold Damage" }, } }, + ["JewelColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (5-10)% Cold Resistance", statOrder = { 2723 }, level = 1, group = "ColdResistancePenetration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [3417711605] = { "Damage Penetrates (5-10)% Cold Resistance" }, } }, + ["JewelCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(3-5)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1004011302] = { "(3-5)% increased Cooldown Recovery Rate" }, } }, + ["JewelCorpses"] = { type = "Prefix", affix = "Necromantic", "(10-20)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3899 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2118708619] = { "(10-20)% increased Damage if you have Consumed a Corpse Recently" }, } }, + ["JewelCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5804 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHashes = { [440490623] = { "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits" }, } }, + ["JewelCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(5-15)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CriticalStrikeChance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHashes = { [587431675] = { "(5-15)% increased Critical Hit Chance" }, } }, + ["JewelCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(10-20)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "(10-20)% increased Critical Damage Bonus" }, } }, + ["JewelSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(10-20)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster_damage", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(10-20)% increased Critical Spell Damage Bonus" }, } }, + ["JewelCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(6-16)% increased Damage with Crossbows", statOrder = { 3946 }, level = 1, group = "CrossbowDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [427684353] = { "(6-16)% increased Damage with Crossbows" }, } }, + ["JewelCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(10-15)% increased Crossbow Reload Speed", statOrder = { 9693 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3192728503] = { "(10-15)% increased Crossbow Reload Speed" }, } }, + ["JewelCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(2-4)% increased Attack Speed with Crossbows", statOrder = { 3950 }, level = 1, group = "CrossbowSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1135928777] = { "(2-4)% increased Attack Speed with Crossbows" }, } }, + ["JewelCurseArea"] = { type = "Prefix", affix = "Expanding", "(8-12)% increased Area of Effect of Curses", statOrder = { 1948 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [153777645] = { "(8-12)% increased Area of Effect of Curses" }, } }, + ["JewelCurseDelay"] = { type = "Suffix", affix = "of Chanting", "(5-15)% faster Curse Activation", statOrder = { 5910 }, level = 1, group = "CurseDelay", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [1104825894] = { "(5-15)% faster Curse Activation" }, } }, + ["JewelCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(15-25)% increased Curse Duration", statOrder = { 1538 }, level = 1, group = "BaseCurseDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [3824372849] = { "(15-25)% increased Curse Duration" }, } }, + ["JewelCurseEffect"] = { type = "Prefix", affix = "Hexing", "(2-4)% increased Curse Magnitudes", statOrder = { 2374 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHashes = { [2353576063] = { "(2-4)% increased Curse Magnitudes" }, } }, + ["JewelDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(6-16)% increased Critical Hit Chance with Daggers", statOrder = { 1362 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [4018186542] = { "(6-16)% increased Critical Hit Chance with Daggers" }, } }, + ["JewelDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(6-16)% increased Damage with Daggers", statOrder = { 1244 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3586984690] = { "(6-16)% increased Damage with Daggers" }, } }, + ["JewelDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(2-4)% increased Attack Speed with Daggers", statOrder = { 1321 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [2538566497] = { "(2-4)% increased Attack Speed with Daggers" }, } }, + ["JewelDamagefromMana"] = { type = "Suffix", affix = "of Mind", "(2-4)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(2-4)% of Damage is taken from Mana before Life" }, } }, + ["JewelDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(15-25)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5933 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [2301718443] = { "(15-25)% increased Damage against Enemies with Fully Broken Armour" }, } }, + ["JewelDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(5-10)% increased Duration of Damaging Ailments on Enemies", statOrder = { 6051 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHashes = { [1829102168] = { "(5-10)% increased Duration of Damaging Ailments on Enemies" }, } }, + ["JewelDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "(5-10)% chance to Daze on Hit", statOrder = { 4658 }, level = 1, group = "DazeBuildup", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3146310524] = { "(5-10)% chance to Daze on Hit" }, } }, + ["JewelDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (5-10)% faster", statOrder = { 6085 }, level = 1, group = "DebuffTimePassed", weightKey = { "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [1238227257] = { "Debuffs on you expire (5-10)% faster" }, } }, + ["JewelElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 7243 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1062710370] = { "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies" }, } }, + ["JewelElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(5-15)% increased Elemental Damage", statOrder = { 1724 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(5-15)% increased Elemental Damage" }, } }, + ["JewelEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (10-20)% increased Damage", statOrder = { 6306 }, level = 1, group = "ExertedAttackDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (10-20)% increased Damage" }, } }, + ["JewelEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (4-8)% increased Energy", statOrder = { 6387 }, level = 1, group = "EnergyGeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4236566306] = { "Meta Skills gain (4-8)% increased Energy" }, } }, + ["JewelEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(10-20)% increased maximum Energy Shield", statOrder = { 885 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2482852589] = { "(10-20)% increased maximum Energy Shield" }, } }, + ["JewelEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 1032 }, level = 1, group = "EnergyShieldDelay", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [1782086450] = { "(10-15)% faster start of Energy Shield Recharge" }, } }, + ["JewelEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(10-20)% increased Energy Shield Recharge Rate", statOrder = { 1031 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [2339757871] = { "(10-20)% increased Energy Shield Recharge Rate" }, } }, + ["JewelEvasion"] = { type = "Prefix", affix = "Evasive", "(10-20)% increased Evasion Rating", statOrder = { 883 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "evasion" }, tradeHashes = { [2106365538] = { "(10-20)% increased Evasion Rating" }, } }, + ["JewelFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (3-7)% faster", statOrder = { 6054 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (3-7)% faster" }, } }, + ["JewelFireDamage"] = { type = "Prefix", affix = "Flaming", "(5-15)% increased Fire Damage", statOrder = { 872 }, level = 1, group = "FireDamagePercentage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(5-15)% increased Fire Damage" }, } }, + ["JewelFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (5-10)% Fire Resistance", statOrder = { 2722 }, level = 1, group = "FireResistancePenetration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates (5-10)% Fire Resistance" }, } }, + ["JewelFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(6-16)% increased Critical Hit Chance with Flails", statOrder = { 3940 }, level = 1, group = "FlailCriticalChance", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [1484710594] = { "(6-16)% increased Critical Hit Chance with Flails" }, } }, + ["JewelFlailDamage"] = { type = "Prefix", affix = "Flailing", "(6-16)% increased Damage with Flails", statOrder = { 3935 }, level = 1, group = "FlailDamage", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1731242173] = { "(6-16)% increased Damage with Flails" }, } }, + ["JewelFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(5-10)% increased Flask Charges gained", statOrder = { 6617 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [1836676211] = { "(5-10)% increased Flask Charges gained" }, } }, + ["JewelFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(5-10)% increased Flask Effect Duration", statOrder = { 901 }, level = 1, group = "FlaskDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(5-10)% increased Flask Effect Duration" }, } }, + ["JewelFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(30-50)% increased Energy Shield from Equipped Focus", statOrder = { 6403 }, level = 1, group = "FocusEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, tradeHashes = { [3174700878] = { "(30-50)% increased Energy Shield from Equipped Focus" }, } }, + ["JewelForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (10-15)% chance for an additional Projectile when Forking", statOrder = { 5502 }, level = 1, group = "ForkingProjectiles", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3003542304] = { "Projectiles have (10-15)% chance for an additional Projectile when Forking" }, } }, + ["JewelFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(10-20)% increased Freeze Buildup", statOrder = { 1056 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [473429811] = { "(10-20)% increased Freeze Buildup" }, } }, + ["JewelFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(18-32)% increased Freeze Threshold", statOrder = { 2982 }, level = 1, group = "FreezeThreshold", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3780644166] = { "(18-32)% increased Freeze Threshold" }, } }, + ["JewelHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (15-25)% increased Damage", statOrder = { 6014 }, level = 1, group = "HeraldDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [21071013] = { "Herald Skills deal (15-25)% increased Damage" }, } }, + ["JewelIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(10-20)% increased Flammability Magnitude", statOrder = { 1054 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(10-20)% increased Flammability Magnitude" }, } }, + ["JewelIgniteEffect"] = { type = "Prefix", affix = "Burning", "(5-15)% increased Ignite Magnitude", statOrder = { 1076 }, level = 1, group = "IgniteEffect", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [3791899485] = { "(5-15)% increased Ignite Magnitude" }, } }, + ["JewelIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(5-10)% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [3377888098] = { "(5-10)% increased Skill Effect Duration" }, } }, + ["JewelKnockback"] = { type = "Suffix", affix = "of Fending", "(5-15)% increased Knockback Distance", statOrder = { 1742 }, level = 1, group = "KnockbackDistance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [565784293] = { "(5-15)% increased Knockback Distance" }, } }, + ["JewelLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(4-6)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4732 }, level = 1, group = "LifeCost", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2480498143] = { "(4-6)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["JewelLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(5-15)% increased Life Recovery from Flasks", statOrder = { 1792 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [821241191] = { "(5-15)% increased Life Recovery from Flasks" }, } }, + ["JewelLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(10-20)% increased Life Flask Charges gained", statOrder = { 7409 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [4009879772] = { "(10-20)% increased Life Flask Charges gained" }, } }, + ["JewelLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(5-15)% increased amount of Life Leeched", statOrder = { 1893 }, level = 1, group = "LifeLeechAmount", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2112395885] = { "(5-15)% increased amount of Life Leeched" }, } }, + ["JewelLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of maximum Life on Kill" }, } }, + ["JewelLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "(2-3)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, + ["JewelLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(5-10)% increased Life Regeneration rate", statOrder = { 1035 }, level = 1, group = "LifeRegenerationRate", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [44972811] = { "(5-10)% increased Life Regeneration rate" }, } }, + ["JewelLightningDamage"] = { type = "Prefix", affix = "Humming", "(5-15)% increased Lightning Damage", statOrder = { 874 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2231156303] = { "(5-15)% increased Lightning Damage" }, } }, + ["JewelLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (5-10)% Lightning Resistance", statOrder = { 2724 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (5-10)% Lightning Resistance" }, } }, + ["JewelMaceDamage"] = { type = "Prefix", affix = "Beating", "(6-16)% increased Damage with Maces", statOrder = { 1248 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1181419800] = { "(6-16)% increased Damage with Maces" }, } }, + ["JewelMaceStun"] = { type = "Suffix", affix = "of Thumping", "(15-25)% increased Stun Buildup with Maces", statOrder = { 7918 }, level = 1, group = "MaceStun", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [872504239] = { "(15-25)% increased Stun Buildup with Maces" }, } }, + ["JewelManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(5-15)% increased Mana Recovery from Flasks", statOrder = { 1793 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [2222186378] = { "(5-15)% increased Mana Recovery from Flasks" }, } }, + ["JewelManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(10-20)% increased Mana Flask Charges gained", statOrder = { 7951 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHashes = { [3590792340] = { "(10-20)% increased Mana Flask Charges gained" }, } }, + ["JewelManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(5-15)% increased amount of Mana Leeched", statOrder = { 1895 }, level = 1, group = "ManaLeechAmount", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [2839066308] = { "(5-15)% increased amount of Mana Leeched" }, } }, + ["JewelManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1515 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [1604736568] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, + ["JewelManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(5-15)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHashes = { [789117908] = { "(5-15)% increased Mana Regeneration Rate" }, } }, + ["JewelMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (5-15)% increased Use Speed", statOrder = { 1944 }, level = 1, group = "MarkCastSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1714971114] = { "Mark Skills have (5-15)% increased Use Speed" }, } }, + ["JewelMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (18-32)% increased Skill Effect Duration", statOrder = { 8787 }, level = 1, group = "MarkDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2594634307] = { "Mark Skills have (18-32)% increased Skill Effect Duration" }, } }, + ["JewelMarkEffect"] = { type = "Prefix", affix = "Marking", "(4-8)% increased Effect of your Mark Skills", statOrder = { 2376 }, level = 1, group = "MarkEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [712554801] = { "(4-8)% increased Effect of your Mark Skills" }, } }, + ["JewelMaximumColdResistance"] = { type = "Suffix", affix = "of the Kraken", "+1% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["JewelMaximumFireResistance"] = { type = "Suffix", affix = "of the Phoenix", "+1% to Maximum Fire Resistance", statOrder = { 1008 }, level = 1, group = "MaximumFireResist", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, + ["JewelMaximumLightningResistance"] = { type = "Suffix", affix = "of the Leviathan", "+1% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 1, group = "MaximumLightningResistance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, + ["JewelMaximumRage"] = { type = "Prefix", affix = "Angry", "+(1-2) to Maximum Rage", statOrder = { 9568 }, level = 1, group = "MaximumRage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1181501418] = { "+(1-2) to Maximum Rage" }, } }, + ["JewelMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(5-15)% increased Melee Damage", statOrder = { 1186 }, level = 1, group = "MeleeDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [1002362373] = { "(5-15)% increased Melee Damage" }, } }, + ["JewelMinionAccuracy"] = { type = "Prefix", affix = "Training", "(10-20)% increased Minion Accuracy Rating", statOrder = { 8961 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHashes = { [1718147982] = { "(10-20)% increased Minion Accuracy Rating" }, } }, + ["JewelMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (5-8)% increased Area of Effect", statOrder = { 2757 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have (5-8)% increased Area of Effect" }, } }, + ["JewelMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (2-4)% increased Attack and Cast Speed", statOrder = { 8968 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-4)% increased Attack and Cast Speed" }, } }, + ["JewelMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-13)% to Chaos Resistance", statOrder = { 2666 }, level = 1, group = "MinionChaosResistance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_resistance", "minion_resistance", "chaos", "resistance", "minion" }, tradeHashes = { [3837707023] = { "Minions have +(7-13)% to Chaos Resistance" }, } }, + ["JewelMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (10-20)% increased Critical Hit Chance", statOrder = { 8995 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (10-20)% increased Critical Hit Chance" }, } }, + ["JewelMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (15-25)% increased Critical Damage Bonus", statOrder = { 8997 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion", "critical" }, tradeHashes = { [1854213750] = { "Minions have (15-25)% increased Critical Damage Bonus" }, } }, + ["JewelMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (5-15)% increased Damage", statOrder = { 1718 }, level = 1, group = "MinionDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (5-15)% increased Damage" }, } }, + ["JewelMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (5-15)% increased maximum Life", statOrder = { 1025 }, level = 1, group = "MinionLife", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (5-15)% increased maximum Life" }, } }, + ["JewelMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (6-16)% additional Physical Damage Reduction", statOrder = { 2020 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (6-16)% additional Physical Damage Reduction" }, } }, + ["JewelMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(5-10)% to all Elemental Resistances", statOrder = { 2665 }, level = 1, group = "MinionElementalResistance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "minion_resistance", "elemental", "fire", "cold", "lightning", "resistance", "minion" }, tradeHashes = { [1423639565] = { "Minions have +(5-10)% to all Elemental Resistances" }, } }, + ["JewelMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (5-15)% faster", statOrder = { 9050 }, level = 1, group = "MinionReviveSpeed", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-15)% faster" }, } }, + ["JewelMovementSpeed"] = { type = "Suffix", affix = "of Speed", "(1-2)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [2250533757] = { "(1-2)% increased Movement Speed" }, } }, + ["JewelOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (15-25)% increased Duration", statOrder = { 9314 }, level = 1, group = "OfferingDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHashes = { [2957407601] = { "Offering Skills have (15-25)% increased Duration" }, } }, + ["JewelOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (15-25)% increased Maximum Life", statOrder = { 9315 }, level = 1, group = "OfferingLife", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [3787460122] = { "Offerings have (15-25)% increased Maximum Life" }, } }, + ["JewelPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(5-15)% increased Global Physical Damage", statOrder = { 1184 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(5-15)% increased Global Physical Damage" }, } }, + ["JewelPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(10-20)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 1, group = "ChanceToPierce", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2321178454] = { "(10-20)% chance to Pierce an Enemy" }, } }, + ["JewelPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(10-20)% increased Pin Buildup", statOrder = { 7172 }, level = 1, group = "PinBuildup", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3473929743] = { "(10-20)% increased Pin Buildup" }, } }, + ["JewelPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "(5-10)% chance to Poison on Hit", statOrder = { 2897 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, + ["JewelPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(5-15)% increased Magnitude of Poison you inflict", statOrder = { 9457 }, level = 1, group = "PoisonEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHashes = { [2487305362] = { "(5-15)% increased Magnitude of Poison you inflict" }, } }, + ["JewelPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(5-10)% increased Poison Duration", statOrder = { 2894 }, level = 1, group = "PoisonDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(5-10)% increased Poison Duration" }, } }, + ["JewelProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(5-15)% increased Projectile Damage", statOrder = { 1736 }, level = 1, group = "ProjectileDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1839076647] = { "(5-15)% increased Projectile Damage" }, } }, + ["JewelProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(4-8)% increased Projectile Speed", statOrder = { 896 }, level = 1, group = "ProjectileSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3759663284] = { "(4-8)% increased Projectile Speed" }, } }, + ["JewelQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(6-16)% increased Damage with Quarterstaves", statOrder = { 1237 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [4045894391] = { "(6-16)% increased Damage with Quarterstaves" }, } }, + ["JewelQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(10-20)% increased Freeze Buildup with Quarterstaves", statOrder = { 9556 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1697447343] = { "(10-20)% increased Freeze Buildup with Quarterstaves" }, } }, + ["JewelQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(2-4)% increased Attack Speed with Quarterstaves", statOrder = { 1319 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3283482523] = { "(2-4)% increased Attack Speed with Quarterstaves" }, } }, + ["JewelQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(4-6)% increased bonuses gained from Equipped Quiver", statOrder = { 9564 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1200678966] = { "(4-6)% increased bonuses gained from Equipped Quiver" }, } }, + ["JewelRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6850 }, level = 1, group = "RageOnHit", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, + ["JewelRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-3) Rage when Hit by an Enemy", statOrder = { 6852 }, level = 1, group = "GainRageWhenHit", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3292710273] = { "Gain (1-3) Rage when Hit by an Enemy" }, } }, + ["JewelShieldDefences"] = { type = "Prefix", affix = "Shielding", "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield", statOrder = { 9797 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences" }, tradeHashes = { [2523933828] = { "(18-32)% increased Armour, Evasion and Energy Shield from Equipped Shield" }, } }, + ["JewelShockChance"] = { type = "Suffix", affix = "of Shocking", "(10-20)% increased chance to Shock", statOrder = { 1058 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [293638271] = { "(10-20)% increased chance to Shock" }, } }, + ["JewelShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(15-25)% increased Shock Duration", statOrder = { 1611 }, level = 1, group = "ShockDuration", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(15-25)% increased Shock Duration" }, } }, + ["JewelShockEffect"] = { type = "Prefix", affix = "Jolting", "(10-15)% increased Magnitude of Shock you inflict", statOrder = { 9804 }, level = 1, group = "ShockEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(10-15)% increased Magnitude of Shock you inflict" }, } }, + ["JewelSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 1, group = "SlowPotency", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, + ["JewelSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(2-4)% increased Attack Speed with Spears", statOrder = { 1326 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [1165163804] = { "(2-4)% increased Attack Speed with Spears" }, } }, + ["JewelSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(10-20)% increased Critical Damage Bonus with Spears", statOrder = { 1392 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHashes = { [2456523742] = { "(10-20)% increased Critical Damage Bonus with Spears" }, } }, + ["JewelSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(6-16)% increased Damage with Spears", statOrder = { 1266 }, level = 1, group = "SpearDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2696027455] = { "(6-16)% increased Damage with Spears" }, } }, + ["JewelSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(5-15)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster", "critical" }, tradeHashes = { [737908626] = { "(5-15)% increased Critical Hit Chance for Spells" }, } }, + ["JewelSpellDamage"] = { type = "Prefix", affix = "Mystic", "(5-15)% increased Spell Damage", statOrder = { 870 }, level = 1, group = "WeaponSpellDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(5-15)% increased Spell Damage" }, } }, + ["JewelStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(10-20)% increased Stun Buildup", statOrder = { 1050 }, level = 1, group = "StunDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [239367161] = { "(10-20)% increased Stun Buildup" }, } }, + ["JewelStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(6-16)% increased Stun Threshold", statOrder = { 2981 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [680068163] = { "(6-16)% increased Stun Threshold" }, } }, + ["JewelStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 10097 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield" }, } }, + ["JewelAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 4255 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHashes = { [3398301358] = { "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield" }, } }, + ["JewelStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(15-25)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 10099 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1405298142] = { "(15-25)% increased Stun Threshold if you haven't been Stunned Recently" }, } }, + ["JewelBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(5-15)% increased Magnitude of Bleeding you inflict", statOrder = { 4797 }, level = 1, group = "BleedDotMultiplier", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical_damage", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(5-15)% increased Magnitude of Bleeding you inflict" }, } }, + ["JewelSwordDamage"] = { type = "Prefix", affix = "Vicious", "(6-16)% increased Damage with Swords", statOrder = { 1258 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [83050999] = { "(6-16)% increased Damage with Swords" }, } }, + ["JewelSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(2-4)% increased Attack Speed with Swords", statOrder = { 1324 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "(2-4)% increased Attack Speed with Swords" }, } }, + ["JewelThorns"] = { type = "Prefix", affix = "Retaliating", "(10-20)% increased Thorns damage", statOrder = { 10213 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1315743832] = { "(10-20)% increased Thorns damage" }, } }, + ["JewelTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(10-18)% increased Totem Damage", statOrder = { 1151 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "(10-18)% increased Totem Damage" }, } }, + ["JewelTotemLife"] = { type = "Prefix", affix = "Carved", "(10-20)% increased Totem Life", statOrder = { 1531 }, level = 1, group = "IncreasedTotemLife", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(10-20)% increased Totem Life" }, } }, + ["JewelTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(10-20)% increased Totem Placement speed", statOrder = { 2358 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(10-20)% increased Totem Placement speed" }, } }, + ["JewelTrapDamage"] = { type = "Prefix", affix = "Trapping", "(6-16)% increased Trap Damage", statOrder = { 871 }, level = 1, group = "TrapDamage", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHashes = { [2941585404] = { "(6-16)% increased Trap Damage" }, } }, + ["JewelTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(4-8)% increased Trap Throwing Speed", statOrder = { 1665 }, level = 1, group = "TrapThrowSpeed", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(4-8)% increased Trap Throwing Speed" }, } }, + ["JewelTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (10-18)% increased Spell Damage", statOrder = { 10282 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [3067892458] = { "Triggered Spells deal (10-18)% increased Spell Damage" }, } }, + ["JewelUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(6-16)% increased Damage with Unarmed Attacks", statOrder = { 3257 }, level = 1, group = "UnarmedDamage", weightKey = { "dexjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [2037855018] = { "(6-16)% increased Damage with Unarmed Attacks" }, } }, + ["JewelWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(5-15)% increased Warcry Buff Effect", statOrder = { 10464 }, level = 1, group = "WarcryEffect", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [3037553757] = { "(5-15)% increased Warcry Buff Effect" }, } }, + ["JewelWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(5-15)% increased Warcry Cooldown Recovery Rate", statOrder = { 3033 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4159248054] = { "(5-15)% increased Warcry Cooldown Recovery Rate" }, } }, + ["JewelWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(10-20)% increased Damage with Warcries", statOrder = { 10467 }, level = 1, group = "WarcryDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1594812856] = { "(10-20)% increased Damage with Warcries" }, } }, + ["JewelWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(10-20)% increased Warcry Speed", statOrder = { 2987 }, level = 1, group = "WarcrySpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHashes = { [1316278494] = { "(10-20)% increased Warcry Speed" }, } }, + ["JewelWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(15-25)% increased Weapon Swap Speed", statOrder = { 10493 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHashes = { [3233599707] = { "(15-25)% increased Weapon Swap Speed" }, } }, + ["JewelWitheredEffect"] = { type = "Prefix", affix = "Withering", "(5-10)% increased Withered Magnitude", statOrder = { 10514 }, level = 1, group = "WitheredEffect", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHashes = { [3973629633] = { "(5-10)% increased Withered Magnitude" }, } }, + ["JewelUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(2-4)% increased Unarmed Attack Speed", statOrder = { 10340 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHashes = { [662579422] = { "(2-4)% increased Unarmed Attack Speed" }, } }, + ["JewelProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 9506 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3596695232] = { "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds" }, } }, + ["JewelMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8879 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHashes = { [3028809864] = { "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, + ["JewelParryDamage"] = { type = "Prefix", affix = "Parrying", "(15-25)% increased Parry Damage", statOrder = { 9343 }, level = 1, group = "ParryDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block", "damage" }, tradeHashes = { [1569159338] = { "(15-25)% increased Parry Damage" }, } }, + ["JewelParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(10-15)% increased Parried Debuff Duration", statOrder = { 9351 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [3401186585] = { "(10-15)% increased Parried Debuff Duration" }, } }, + ["JewelStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(15-25)% increased Stun Threshold while Parrying", statOrder = { 9352 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHashes = { [1911237468] = { "(15-25)% increased Stun Threshold while Parrying" }, } }, + ["JewelVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "(2-3)% chance to gain Volatility on Kill", statOrder = { 10442 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [3749502527] = { "(2-3)% chance to gain Volatility on Kill" }, } }, + ["JewelCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (10-20)% increased Damage", statOrder = { 5708 }, level = 1, group = "CompanionDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [234296660] = { "Companions deal (10-20)% increased Damage" }, } }, + ["JewelCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (10-20)% increased maximum Life", statOrder = { 5712 }, level = 1, group = "CompanionLife", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHashes = { [1805182458] = { "Companions have (10-20)% increased maximum Life" }, } }, + ["JewelHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(10-20)% increased Hazard Damage", statOrder = { 6958 }, level = 1, group = "HazardDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1697951953] = { "(10-20)% increased Hazard Damage" }, } }, + ["JewelIncisionChance"] = { type = "Prefix", affix = "Incise", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5540 }, level = 1, group = "IncisionChance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, + ["JewelBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(15-20)% increased Glory generation for Banner Skills", statOrder = { 6892 }, level = 1, group = "BannerValourGained", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1869147066] = { "(15-20)% increased Glory generation for Banner Skills" }, } }, + ["JewelBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (6-16)% increased Area of Effect", statOrder = { 4619 }, level = 1, group = "BannerArea", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [429143663] = { "Banner Skills have (6-16)% increased Area of Effect" }, } }, + ["JewelBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (15-25)% increased Duration", statOrder = { 4621 }, level = 1, group = "BannerDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2720982137] = { "Banner Skills have (15-25)% increased Duration" }, } }, + ["JewelPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(15-25)% increased Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "PresenceRadius", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "aura" }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, + ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7733 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Medium" }, } }, + ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7733 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Large" }, } }, + ["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] = { "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] = { "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] = { "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" }, } }, } \ No newline at end of file diff --git a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua index 38f760b16..659d7f810 100644 --- a/src/Data/ModVeiled.lua +++ b/src/Data/ModVeiled.lua @@ -2,353 +2,390 @@ -- Item data (c) Grinding Gear Games return { - ["HistoricAbyssJewelAttributesGrantExtraTribute"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", statOrder = { 7247 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraTribute", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [1119086588] = { "Conquered Attribute Passive Skills also grant +(2-5) to Tribute" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraStrength"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Strength", statOrder = { 7246 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraStrength", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [3871530702] = { "Conquered Attribute Passive Skills also grant +(4-8) to Strength" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraDexterity"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity", statOrder = { 7244 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraDexterity", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [1938221597] = { "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraIntelligence"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence", statOrder = { 7245 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraIntelligence", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [3116427713] = { "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraAllAttributes"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes", statOrder = { 7243 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraAllAttributes", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [2552484522] = { "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes" }, } }, - ["HistoricAbyssJewelSmallGrantEvasionRatingIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating", statOrder = { 7254 }, level = 1, group = "HistoricAbyssJewelSmallGrantEvasionRatingIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [468694293] = { "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating" }, } }, - ["HistoricAbyssJewelSmallGrantArmourIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Armour", statOrder = { 7249 }, level = 1, group = "HistoricAbyssJewelSmallGrantArmourIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [970480050] = { "Conquered Small Passive Skills also grant (2-4)% increased Armour" }, } }, - ["HistoricAbyssJewelSmallGrantEnergyShieldIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield", statOrder = { 7253 }, level = 1, group = "HistoricAbyssJewelSmallGrantEnergyShieldIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [2780670304] = { "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield" }, } }, - ["HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate", statOrder = { 7256 }, level = 1, group = "HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [1818915622] = { "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate" }, } }, - ["HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate", statOrder = { 7255 }, level = 1, group = "HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [4264952559] = { "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate" }, } }, - ["HistoricAbyssJewelSmallGrantSpellDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Spell damage", statOrder = { 7259 }, level = 1, group = "HistoricAbyssJewelSmallGrantSpellDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [3038857426] = { "Conquered Small Passive Skills also grant (3-5)% increased Spell damage" }, } }, - ["HistoricAbyssJewelSmallGrantAttackDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Attack damage", statOrder = { 7250 }, level = 1, group = "HistoricAbyssJewelSmallGrantAttackDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [8816597] = { "Conquered Small Passive Skills also grant (3-5)% increased Attack damage" }, } }, - ["HistoricAbyssJewelSmallGrantElementalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage", statOrder = { 7252 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [4240116297] = { "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage" }, } }, - ["HistoricAbyssJewelSmallGrantPhysicalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Physical damage", statOrder = { 7258 }, level = 1, group = "HistoricAbyssJewelSmallGrantPhysicalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [1829333149] = { "Conquered Small Passive Skills also grant (3-5)% increased Physical damage" }, } }, - ["HistoricAbyssJewelSmallGrantChaosDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage", statOrder = { 7251 }, level = 1, group = "HistoricAbyssJewelSmallGrantChaosDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [2601021356] = { "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage" }, } }, - ["HistoricAbyssJewelSmallGrantMinionDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage", statOrder = { 7257 }, level = 1, group = "HistoricAbyssJewelSmallGrantMinionDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [3343033032] = { "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage" }, } }, - ["HistoricAbyssJewelSmallGrantStunThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold", statOrder = { 7260 }, level = 1, group = "HistoricAbyssJewelSmallGrantStunThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [2475870935] = { "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold" }, } }, - ["HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold", statOrder = { 7248 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [1283490138] = { "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold" }, } }, - ["UniqueHeartPrefixDamageGainedAsFire"] = { affix = "", "Gain (9-15)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (9-15)% of Damage as Extra Fire Damage" }, } }, - ["UniqueHeartPrefixDamageGainedAsCold"] = { affix = "", "Gain (7-13)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (7-13)% of Damage as Extra Chaos Damage" }, } }, - ["UniqueHeartPrefixDamageGainedAsLightning"] = { affix = "", "Gain (9-15)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (9-15)% of Damage as Extra Cold Damage" }, } }, - ["UniqueHeartPrefixDamageGainedAsChaos"] = { affix = "", "Gain (9-15)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (9-15)% of Damage as Extra Lightning Damage" }, } }, - ["UniqueHeartPrefixMinionReviveSpeed"] = { affix = "", "Minions Revive (5-10)% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-10)% faster" }, } }, - ["UniqueHeartPrefixIncreasedSkillSpeed"] = { affix = "", "(4-8)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "speed" }, tradeHashes = { [970213192] = { "(4-8)% increased Skill Speed" }, } }, - ["UniqueHeartPrefixManaCostEfficiency"] = { affix = "", "(8-16)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4101445926] = { "(8-16)% increased Mana Cost Efficiency" }, } }, - ["UniqueHeartPrefixGlobalCooldownRecovery"] = { affix = "", "(10-18)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1004011302] = { "(10-18)% increased Cooldown Recovery Rate" }, } }, - ["UniqueHeartPrefixChanceToPierce"] = { affix = "", "(30-50)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2321178454] = { "(30-50)% chance to Pierce an Enemy" }, } }, - ["UniqueHeartPrefixSkillEffectDuration"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, - ["UniqueHeartPrefixMinionLifeGainAsEnergyShield"] = { affix = "", "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 8510 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "heart_unique_jewel_prefix", "defences", "minion" }, tradeHashes = { [943702197] = { "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield" }, } }, - ["UniqueHeartPrefixMinionLifeRegeneration"] = { affix = "", "Minions Regenerate (1-3)% of maximum Life per second", statOrder = { 2557 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1-3)% of maximum Life per second" }, } }, - ["UniqueHeartPrefixDamageWhileInPresenceOfCompanion"] = { affix = "", "(15-25)% increased Damage while your Companion is in your Presence", statOrder = { 5566 }, level = 1, group = "DamageWhileInPresenceOfCompanion", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHashes = { [693180608] = { "(15-25)% increased Damage while your Companion is in your Presence" }, } }, - ["UniqueHeartPrefixAggravateBleedOnAttackHitChance"] = { affix = "", "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4121 }, level = 1, group = "AggravateBleedOnAttackHitChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2705185939] = { "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, - ["UniqueHeartPrefixLuckyLightningDamageChancePercent"] = { affix = "", "(15-25)% chance for Lightning Damage with Hits to be Lucky", statOrder = { 5029 }, level = 1, group = "LuckyLightningDamageChancePercent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "lightning" }, tradeHashes = { [2466011626] = { "(15-25)% chance for Lightning Damage with Hits to be Lucky" }, } }, - ["UniqueHeartPrefixRecoverLifeOnKillingPoisonedEnemy"] = { affix = "", "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9115 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemy", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [1781372024] = { "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy" }, } }, - ["UniqueHeartPrefixPercentOfLeechIsInstant"] = { affix = "", "(8-15)% of Leech is Instant", statOrder = { 6962 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, - ["UniqueHeartPrefixEvasionRatingFromBodyArmour"] = { affix = "", "(40-60)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4810 }, level = 1, group = "EvasionRatingFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHashes = { [3509362078] = { "(40-60)% increased Evasion Rating from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixBodyArmourFromBodyArmour"] = { affix = "", "(40-60)% increased Armour from Equipped Body Armour", statOrder = { 4809 }, level = 1, group = "BodyArmourFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHashes = { [1015576579] = { "(40-60)% increased Armour from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixMaximumEnergyShieldFromBodyArmour"] = { affix = "", "(40-60)% increased Energy Shield from Equipped Body Armour", statOrder = { 8313 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHashes = { [1195319608] = { "(40-60)% increased Energy Shield from Equipped Body Armour" }, } }, - ["UniqueHeartPrefixTriggersRefundEnergySpent"] = { affix = "", "(6-12)% chance for Trigger skills to refund half of Energy Spent", statOrder = { 9709 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [599320227] = { "(6-12)% chance for Trigger skills to refund half of Energy Spent" }, } }, - ["UniqueHeartPrefixManaRegenerationRateWhileMoving"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 7532 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, - ["UniqueHeartPrefixCullingStrikeThreshold"] = { affix = "", "(15-25)% increased Culling Strike Threshold", statOrder = { 5520 }, level = 1, group = "CullingStrikeThreshold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3563080185] = { "(15-25)% increased Culling Strike Threshold" }, } }, - ["UniqueHeartPrefixPhysicalDamagePreventedRecoup"] = { affix = "", "(5-10)% of Physical Damage prevented Recouped as Life", statOrder = { 8867 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "physical" }, tradeHashes = { [1374654984] = { "(5-10)% of Physical Damage prevented Recouped as Life" }, } }, - ["UniqueHeartPrefixMaximumElementalResistance"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, - ["UniqueHeartPrefixIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 6792 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, - ["UniqueHeartPrefixRecoupSpeed"] = { affix = "", "(8-14)% increased speed of Recoup Effects", statOrder = { 9084 }, level = 1, group = "RecoupSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2363593824] = { "(8-14)% increased speed of Recoup Effects" }, } }, - ["UniqueHeartPrefixFlaskLifeRegenForXSeconds"] = { affix = "", "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", statOrder = { 7049 }, level = 1, group = "FlaskLifeRegenForXSeconds", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [3161573445] = { "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds" }, } }, - ["UniqueHeartPrefixCharmRecoverManaOnUse"] = { affix = "", "Recover (5-10)% of maximum Mana when a Charm is used", statOrder = { 9117 }, level = 1, group = "CharmRecoverManaOnUse", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4121454694] = { "Recover (5-10)% of maximum Mana when a Charm is used" }, } }, - ["UniqueHeartPrefixCharmChanceToUseOtherCharm"] = { affix = "", "(10-15)% chance when a Charm is used to use another Charm without consuming Charges", statOrder = { 5255 }, level = 1, group = "CharmChanceToUseOtherCharm", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1949851472] = { "(10-15)% chance when a Charm is used to use another Charm without consuming Charges" }, } }, - ["UniqueHeartPrefixCharmEffect"] = { affix = "", "Charms applied to you have (15-25)% increased Effect", statOrder = { 5234 }, level = 1, group = "CharmEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3480095574] = { "Charms applied to you have (15-25)% increased Effect" }, } }, - ["UniqueHeartPrefixThornsCriticalStrikeChance"] = { affix = "", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4616 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, - ["UniqueHeartPrefixThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour", statOrder = { 4526 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHashes = { [1793740180] = { "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour" }, } }, - ["UniqueHeartPrefixAttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { affix = "", "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence", statOrder = { 4434 }, level = 1, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "attack", "speed" }, tradeHashes = { [314741699] = { "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence" }, } }, - ["UniqueHeartPrefixElementalExposureEffect"] = { affix = "", "(15-25)% increased Exposure Effect", statOrder = { 6106 }, level = 1, group = "ElementalExposureEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2074866941] = { "(15-25)% increased Exposure Effect" }, } }, - ["UniqueHeartSuffixMaximumFireResist"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, - ["UniqueHeartSuffixMaximumColdResist"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, - ["UniqueHeartSuffixMaximumLightningResist"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, - ["UniqueHeartSuffixSkillEffectDuration"] = { affix = "", "(3-8)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3377888098] = { "(3-8)% increased Skill Effect Duration" }, } }, - ["UniqueHeartSuffixLifeRegenerationRate"] = { affix = "", "(6-12)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [44972811] = { "(6-12)% increased Life Regeneration rate" }, } }, - ["UniqueHeartSuffixStunDamageIncrease"] = { affix = "", "(6-12)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [239367161] = { "(6-12)% increased Stun Buildup" }, } }, - ["UniqueHeartSuffixIncreasedStunThreshold"] = { affix = "", "(5-10)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [680068163] = { "(5-10)% increased Stun Threshold" }, } }, - ["UniqueHeartSuffixRageOnHit"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "RageOnHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, - ["UniqueHeartSuffixGainRageWhenHit"] = { affix = "", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6433 }, level = 1, group = "GainRageWhenHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3292710273] = { "Gain (1-2) Rage when Hit by an Enemy" }, } }, - ["UniqueHeartSuffixLifeCost"] = { affix = "", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2480498143] = { "(2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["UniqueHeartSuffixAilmentChance"] = { affix = "", "(4-8)% increased chance to inflict Ailments", statOrder = { 4136 }, level = 1, group = "AilmentChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [1772247089] = { "(4-8)% increased chance to inflict Ailments" }, } }, - ["UniqueHeartSuffixIncreasedAilmentThreshold"] = { affix = "", "(6-12)% increased Elemental Ailment Threshold", statOrder = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3544800472] = { "(6-12)% increased Elemental Ailment Threshold" }, } }, - ["UniqueHeartSuffixIncreasedAttackSpeed"] = { affix = "", "(2-3)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack", "speed" }, tradeHashes = { [681332047] = { "(2-3)% increased Attack Speed" }, } }, - ["UniqueHeartSuffixGlobalCooldownRecovery"] = { affix = "", "(2-3)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1004011302] = { "(2-3)% increased Cooldown Recovery Rate" }, } }, - ["UniqueHeartSuffixDebuffTimePassed"] = { affix = "", "Debuffs on you expire (4-8)% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1238227257] = { "Debuffs on you expire (4-8)% faster" }, } }, - ["UniqueHeartSuffixFasterAilmentDamageForJewel"] = { affix = "", "Damaging Ailments deal damage (2-4)% faster", statOrder = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (2-4)% faster" }, } }, - ["UniqueHeartSuffixMovementVelocity"] = { affix = "", "(1-2)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "speed" }, tradeHashes = { [2250533757] = { "(1-2)% increased Movement Speed" }, } }, - ["UniqueHeartSuffixSlowPotency"] = { affix = "", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, - ["UniqueHeartSuffixIncreasedFlaskChargesGained"] = { affix = "", "(4-8)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1836676211] = { "(4-8)% increased Flask Charges gained" }, } }, - ["UniqueHeartSuffixFlaskDuration"] = { affix = "", "(4-8)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "FlaskDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3741323227] = { "(4-8)% increased Flask Effect Duration" }, } }, - ["UniqueHeartSuffixBaseChanceToPoison"] = { affix = "", "(5-10)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, - ["UniqueHeartSuffixBaseChanceToBleed"] = { affix = "", "(5-10)% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "BaseChanceToBleed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [2174054121] = { "(5-10)% chance to inflict Bleeding on Hit" }, } }, - ["UniqueHeartSuffixIncreasedCastSpeedForJewel"] = { affix = "", "(2-3)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-3)% increased Cast Speed" }, } }, - ["UniqueHeartSuffixCritChanceForJewel"] = { affix = "", "(4-8)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CritChanceForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "critical" }, tradeHashes = { [587431675] = { "(4-8)% increased Critical Hit Chance" }, } }, - ["UniqueHeartSuffixCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "critical" }, tradeHashes = { [3556824919] = { "(6-12)% increased Critical Damage Bonus" }, } }, - ["UniqueHeartSuffixSpellCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "unveiled_mod", "heart_unique_jewel_suffix", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(6-12)% increased Critical Spell Damage Bonus" }, } }, - ["UniqueHeartSuffixSpellCriticalStrikeChance"] = { affix = "", "(4-8)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "caster", "critical" }, tradeHashes = { [737908626] = { "(4-8)% increased Critical Hit Chance for Spells" }, } }, - ["UniqueHeartSuffixDamageRemovedFromManaBeforeLife"] = { affix = "", "(2-3)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life", "mana" }, tradeHashes = { [458438597] = { "(2-3)% of Damage is taken from Mana before Life" }, } }, - ["UniqueHeartSuffixMaximumLifeOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of maximum Life on Kill" }, } }, - ["UniqueHeartSuffixManaGainedOnKillPercentage"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHashes = { [1604736568] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, - ["UniqueHeartSuffixLifeRecoupForJewel"] = { affix = "", "(2-3)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, - ["UniqueHeartSuffixManaRegeneration"] = { affix = "", "(4-8)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHashes = { [789117908] = { "(4-8)% increased Mana Regeneration Rate" }, } }, - ["UniqueHeartSuffixMinionPhysicalDamageReduction"] = { affix = "", "Minions have (3-12)% additional Physical Damage Reduction", statOrder = { 1946 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (3-12)% additional Physical Damage Reduction" }, } }, - ["UniqueHeartSuffixMinionAttackSpeedAndCastSpeed"] = { affix = "", "Minions have (2-3)% increased Attack and Cast Speed", statOrder = { 8453 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-3)% increased Attack and Cast Speed" }, } }, - ["UniqueHeartSuffixMinionCriticalStrikeChanceIncrease"] = { affix = "", "Minions have (6-12)% increased Critical Hit Chance", statOrder = { 8476 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (6-12)% increased Critical Hit Chance" }, } }, - ["UniqueHeartSuffixMinionElementalResistance"] = { affix = "", "Minions have +(3-4)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "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 = { 9531 }, 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 = { 4146 }, 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 = { 970 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, 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 = { 977 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, 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 = { 872 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, 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 = { 870 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [160888068] = { "Notable Passive Skills in Radius also grant 1% increased maximum Life" }, } }, - ["AbyssModRadiusJewelPrefixGlobalDefences"] = { type = "Prefix", affix = "Lightless", "(2-3)% increased Global Defences", statOrder = { 2486 }, level = 1, group = "HybridAbyssModRadiusJewelGlobalDefences", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHashes = { [3488475284] = { "Notable Passive Skills in Radius also grant (2-3)% increased Global Defences" }, } }, - ["AbyssModRadiusJewelPrefixDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenFromManaBeforeLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, 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 = { 1617 }, level = 1, group = "HybridAbyssModRadiusJewelRegeneratePercentLifePerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, 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 = { 4582 }, level = 1, group = "HybridAbyssModRadiusJewelManaCostEfficiency", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, 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 = { 2747 }, level = 1, group = "HybridAbyssModRadiusJewelReducedCriticalHitChanceAgainstYou", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, 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 = { 6452 }, level = 1, group = "HybridAbyssModRadiusJewelManaFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "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 = { 6451 }, level = 1, group = "HybridAbyssModRadiusJewelLifeFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "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 = { 6448 }, level = 1, group = "HybridAbyssModRadiusJewelCharmChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "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 = { 853, 864 }, level = 1, group = "HybridAbyssModJewelSpellDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "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 = { 853, 866 }, level = 1, group = "HybridAbyssModJewelSpellDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences", "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 = { 853, 868 }, level = 1, group = "HybridAbyssModJewelSpellDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences", "caster" }, tradeHashes = { [2974417149] = { "(4-8)% increased Spell Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixAttackDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Attack Damage", statOrder = { 864, 1093 }, level = 1, group = "HybridAbyssModJewelAttackDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixAttackDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Attack Damage", statOrder = { 866, 1093 }, level = 1, group = "HybridAbyssModJewelAttackDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences", "attack" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [2843214518] = { "(4-8)% increased Attack Damage" }, } }, - ["AbyssModJewelPrefixAttackDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Attack Damage", statOrder = { 868, 1093 }, level = 1, group = "HybridAbyssModJewelAttackDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixMinionDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "Minions deal (4-8)% increased Damage", statOrder = { 864, 1646 }, level = 1, group = "HybridAbyssModJewelMinionDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-8)% increased Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixMinionDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "Minions deal (4-8)% increased Damage", statOrder = { 866, 1646 }, level = 1, group = "HybridAbyssModJewelMinionDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences", "minion" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1589917703] = { "Minions deal (4-8)% increased Damage" }, } }, - ["AbyssModJewelPrefixMinionDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "Minions deal (4-8)% increased Damage", statOrder = { 868, 1646 }, level = 1, group = "HybridAbyssModJewelMinionDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-8)% increased Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixThornsDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Thorns damage", statOrder = { 864, 9646 }, level = 1, group = "HybridAbyssModJewelThornsDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixThornsDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Thorns damage", statOrder = { 866, 9646 }, level = 1, group = "HybridAbyssModJewelThornsDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1315743832] = { "(4-8)% increased Thorns damage" }, } }, - ["AbyssModJewelPrefixThornsDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Thorns damage", statOrder = { 868, 9646 }, level = 1, group = "HybridAbyssModJewelThornsDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixTotemDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Totem Damage", statOrder = { 864, 1089 }, level = 1, group = "HybridAbyssModJewelTotemDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences" }, tradeHashes = { [3851254963] = { "(4-8)% increased Totem Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, - ["AbyssModJewelPrefixTotemDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Totem Damage", statOrder = { 866, 1089 }, level = 1, group = "HybridAbyssModJewelTotemDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [3851254963] = { "(4-8)% increased Totem Damage" }, } }, - ["AbyssModJewelPrefixTotemDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Totem Damage", statOrder = { 868, 1089 }, level = 1, group = "HybridAbyssModJewelTotemDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences" }, tradeHashes = { [3851254963] = { "(4-8)% increased Totem Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, - ["AbyssModJewelPrefixFireDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Fire Damage", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 855, 2613 }, level = 1, group = "HybridAbyssModJewelFireDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(4-8)% increased Fire Damage" }, [2653955271] = { "Damage Penetrates (4-7)% Fire Resistance" }, } }, - ["AbyssModJewelPrefixLightningDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Lightning Damage", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 857, 2615 }, level = 1, group = "HybridAbyssModJewelLightningDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (4-7)% Lightning Resistance" }, [2231156303] = { "(4-8)% increased Lightning Damage" }, } }, - ["AbyssModJewelPrefixColdDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Cold Damage", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 856, 2614 }, level = 1, group = "HybridAbyssModJewelColdDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(4-8)% increased Cold Damage" }, [3417711605] = { "Damage Penetrates (4-7)% Cold Resistance" }, } }, - ["AbyssModJewelPrefixBleedChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to inflict Bleeding", "(5-10)% increased Magnitude of Bleeding you inflict", statOrder = { 4660, 4662 }, level = 1, group = "HybridAbyssModJewelBleedChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "bleed", "unveiled_mod", "ailment" }, tradeHashes = { [3166958180] = { "(5-10)% increased Magnitude of Bleeding you inflict" }, [242637938] = { "15% increased chance to inflict Bleeding" }, } }, - ["AbyssModJewelPrefixPoisonChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to Poison", "(5-10)% increased Magnitude of Poison you inflict", statOrder = { 8917, 8925 }, level = 1, group = "HybridAbyssModJewelPoisonChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "poison", "unveiled_mod", "ailment" }, tradeHashes = { [3481083201] = { "15% increased chance to Poison" }, [2487305362] = { "(5-10)% increased Magnitude of Poison you inflict" }, } }, - ["AbyssModJewelPrefixWarcryBuffEffectAndDamage"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Warcry Buff Effect", "(5-10)% increased Damage with Warcries", statOrder = { 9883, 9886 }, level = 1, group = "HybridAbyssModJewelWarcryBuffEffectAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [1594812856] = { "(5-10)% increased Damage with Warcries" }, [3037553757] = { "(4-8)% increased Warcry Buff Effect" }, } }, - ["AbyssModJewelPrefixCompanionLifeAndDamage"] = { type = "Prefix", affix = "Lightless", "Companions deal (5-10)% increased Damage", "Companions have (5-10)% increased maximum Life", statOrder = { 5339, 5342 }, level = 1, group = "HybridAbyssModJewelCompanionLifeAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [1805182458] = { "Companions have (5-10)% increased maximum Life" }, [234296660] = { "Companions deal (5-10)% increased Damage" }, } }, - ["AbyssModJewelPrefixGlobalPhysicalDamageArmourBreak"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Global Physical Damage", "Break (4-8)% increased Armour", statOrder = { 1122, 4283 }, level = 1, group = "HybridAbyssModJewelGlobalPhysicalDamageArmourBreak", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "physical" }, tradeHashes = { [1776411443] = { "Break (4-8)% increased Armour" }, [1310194496] = { "(4-8)% increased Global Physical Damage" }, } }, - ["AbyssModJewelPrefixElementalDamageAilmentMagnitude"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Elemental Damage", "(4-8)% increased Magnitude of Ailments you inflict", statOrder = { 1651, 4140 }, level = 1, group = "HybridAbyssModJewelElementalDamageAilmentMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "ailment" }, tradeHashes = { [1303248024] = { "(4-8)% increased Magnitude of Ailments you inflict" }, [3141070085] = { "(4-8)% increased Elemental Damage" }, } }, - ["AbyssModJewelPrefixChaosDamageWitherEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Chaos Damage", "(3-6)% increased Withered Magnitude", statOrder = { 858, 9915 }, level = 1, group = "HybridAbyssModJewelChaosDamageWitherEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "chaos" }, tradeHashes = { [736967255] = { "(4-8)% increased Chaos Damage" }, [3973629633] = { "(3-6)% increased Withered Magnitude" }, } }, - ["AbyssModJewelPrefixMinionAreaAndLife"] = { type = "Prefix", affix = "Lightless", "Minions have (4-8)% increased maximum Life", statOrder = { 962 }, level = 1, group = "HybridAbyssModJewelMinionAreaAndLife", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [770672621] = { "Minions have (4-8)% increased maximum Life" }, } }, - ["AbyssModJewelPrefixAuraSkillEffectPresenceAreaOfEffect"] = { type = "Prefix", affix = "Lightless", "(8-15)% increased Presence Area of Effect", "Aura Skills have (2-4)% increased Magnitudes", statOrder = { 1002, 2472 }, level = 1, group = "HybridAbyssModJewelAuraSkillEffectPresenceAreaOfEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "aura" }, tradeHashes = { [101878827] = { "(8-15)% increased Presence Area of Effect" }, [315791320] = { "Aura Skills have (2-4)% increased Magnitudes" }, } }, - ["AbyssModJewelPrefixElementalExposureEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Exposure Effect", statOrder = { 6106 }, level = 1, group = "HybridAbyssModJewelElementalExposureEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental" }, tradeHashes = { [2074866941] = { "(4-8)% increased Exposure Effect" }, } }, - ["AbyssModJewelPrefixAbyssalWastingEffect"] = { type = "Prefix", affix = "Lightless", "(10-20)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4004 }, level = 1, group = "HybridAbyssModJewelAbyssalWastingEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [4043376133] = { "(10-20)% increased Magnitude of Abyssal Wasting you inflict" }, } }, - ["AbyssModJewelSuffixIncreasedStrength"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Strength", statOrder = { 1080 }, level = 1, group = "HybridAbyssModJewelIncreasedStrength", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [734614379] = { "(1-2)% increased Strength" }, } }, - ["AbyssModJewelSuffixIncreasedDexterity"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "HybridAbyssModJewelIncreasedDexterity", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [4139681126] = { "(1-2)% increased Dexterity" }, } }, - ["AbyssModJewelSuffixIncreasedIntelligence"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "HybridAbyssModJewelIncreasedIntelligence", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [656461285] = { "(1-2)% increased Intelligence" }, } }, - ["AbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(13-17)% to Lightning and Chaos Resistances", statOrder = { 7070 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(13-17)% to Lightning and Chaos Resistances" }, } }, - ["AbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "+(9-15) to Strength and Dexterity", statOrder = { 1075 }, level = 65, group = "StrengthAndDexterity", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "attribute" }, tradeHashes = { [538848803] = { "+(9-15) to Strength and Dexterity" }, } }, - ["AbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(13-17)% to Fire and Chaos Resistances", statOrder = { 6127 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(13-17)% to Fire and Chaos Resistances" }, } }, - ["AbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "+(9-15) to Strength and Intelligence", statOrder = { 1076 }, level = 65, group = "StrengthAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attribute" }, tradeHashes = { [1535626285] = { "+(9-15) to Strength and Intelligence" }, } }, - ["AbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(13-17)% to Cold and Chaos Resistances", statOrder = { 5294 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(13-17)% to Cold and Chaos Resistances" }, } }, - ["AbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "+(9-15) to Dexterity and Intelligence", statOrder = { 1077 }, level = 65, group = "DexterityAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attribute" }, tradeHashes = { [2300185227] = { "+(9-15) to Dexterity and Intelligence" }, } }, - ["AbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 65, group = "ManaCostEfficiency", weightKey = { "helmet", "gloves", "focus", "quiver", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [4101445926] = { "(6-10)% increased Mana Cost Efficiency" }, } }, - ["AbyssModHelmUlamanSuffixMarkedEnemyTakeIncreasedDamage"] = { type = "Suffix", affix = "of Ulaman", "Enemies you Mark take (4-8)% increased Damage", statOrder = { 8281 }, level = 65, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2083058281] = { "Enemies you Mark take (4-8)% increased Damage" }, } }, - ["AbyssModHelmUlamanSuffixCriticalHitDamage"] = { type = "Suffix", affix = "of Ulaman", "(13-20)% increased Critical Damage Bonus", statOrder = { 937 }, level = 65, group = "CriticalStrikeMultiplier", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "(13-20)% increased Critical Damage Bonus" }, } }, - ["AbyssModHelmUlamanSuffixLifeCostEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Life Cost Efficiency", statOrder = { 4572 }, level = 65, group = "LifeCostEfficiency", weightKey = { "helmet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [310945763] = { "(8-12)% increased Life Cost Efficiency" }, } }, - ["AbyssModHelmAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(4-8)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(4-8)% increased Spirit Reservation Efficiency of Skills" }, } }, - ["AbyssModHelmAmanamuSuffixGloryGeneration"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Glory generation", statOrder = { 6473 }, level = 65, group = "GloryGeneration", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3143918757] = { "(10-20)% increased Glory generation" }, } }, - ["AbyssModHelmAmanamuSuffixPresenceAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Presence Area of Effect", statOrder = { 1002 }, level = 65, group = "PresenceRadius", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [101878827] = { "(25-35)% increased Presence Area of Effect" }, } }, - ["AbyssModHelmKurgalSuffixArcaneSurgeEffect"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% increased effect of Arcane Surge on you", statOrder = { 2891 }, level = 65, group = "ArcaneSurgeEffect", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "helmet", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2103650854] = { "(20-30)% increased effect of Arcane Surge on you" }, } }, - ["AbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Magnitude of Ailments you inflict", statOrder = { 4140 }, level = 65, group = "AilmentEffect", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "ailment" }, tradeHashes = { [1303248024] = { "(10-20)% increased Magnitude of Ailments you inflict" }, } }, - ["AbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to Poison", statOrder = { 8917 }, level = 65, group = "PoisonChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3481083201] = { "(20-30)% increased chance to Poison" }, } }, - ["AbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to inflict Bleeding", statOrder = { 4660 }, level = 65, group = "BleedChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [242637938] = { "(20-30)% increased chance to inflict Bleeding" }, } }, - ["AbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5175 }, level = 65, group = "IncisionChance", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "ulaman_mod", "damage", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, - ["AbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently", statOrder = { 9316 }, level = 65, group = "SkillSpeedIfConsumedFrenzyChargeRecently", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3313255158] = { "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently" }, } }, - ["AbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 65, group = "CurseAreaOfEffect", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [153777645] = { "(12-20)% increased Area of Effect of Curses" }, } }, - ["AbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% chance to Daze on Hit", statOrder = { 4530 }, level = 65, group = "DazeBuildup", weightKey = { "gloves", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3146310524] = { "(10-20)% chance to Daze on Hit" }, } }, - ["AbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "(8-15)% of Leech is Instant", statOrder = { 6962 }, level = 65, group = "PercentOfLeechIsInstant", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, - ["AbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Immobilisation buildup", statOrder = { 6748 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [330530785] = { "(10-20)% increased Immobilisation buildup" }, } }, - ["AbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit", statOrder = { 6320 }, level = 65, group = "GainArcaneSurgeOnCrit", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [446027070] = { "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit" }, } }, - ["AbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cast Speed when on Full Life", statOrder = { 1667 }, level = 65, group = "CastSpeedOnFullLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster", "speed" }, tradeHashes = { [656291658] = { "(8-15)% increased Cast Speed when on Full Life" }, } }, - ["AbyssModBootsAndBeltUlamanSuffixReducedPoisonDurationSelf"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% reduced Poison Duration on you", statOrder = { 1000 }, level = 65, group = "ReducedPoisonDuration", weightKey = { "boots", "belt", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "poison", "unveiled_mod", "ulaman_mod", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(20-30)% reduced Poison Duration on you" }, } }, - ["AbyssModBootsAndBeltAmanamuSuffixReducedIgniteDuration"] = { type = "Suffix", affix = "of Amanamu", "(20-30)% reduced Ignite Duration on you", statOrder = { 996 }, level = 65, group = "ReducedIgniteDurationOnSelf", weightKey = { "boots", "belt", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(20-30)% reduced Ignite Duration on you" }, } }, - ["AbyssModBootsAndBeltKurgalSuffixReducedBleedDurationSelf"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 65, group = "ReducedBleedDuration", weightKey = { "boots", "belt", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "kurgal_mod", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(20-30)% reduced Duration of Bleeding on You" }, } }, - ["AbyssModBootsUlamanSuffixCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Ulaman", "Corrupted Blood cannot be inflicted on you", statOrder = { 4906 }, level = 65, group = "CorruptedBloodImmunity", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, - ["AbyssModBootsUlamanSuffixReducedMovementPenaltyWhileSkilling"] = { type = "Suffix", affix = "of Ulaman", "(6-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 8594 }, level = 65, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [2590797182] = { "(6-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, - ["AbyssModBootsAmanamuSuffixReducedPotencyOfSlows"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 65, group = "SlowPotency", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [924253255] = { "(12-20)% reduced Slowing Potency of Debuffs on You" }, } }, - ["AbyssModBootsAmanamuSuffixDodgeRollDistance"] = { type = "Suffix", affix = "of Amanamu", "+(0.1-0.2) metres to Dodge Roll distance", statOrder = { 5801 }, level = 65, group = "DodgeRollDistance", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [258119672] = { "+(0.1-0.2) metres to Dodge Roll distance" }, } }, - ["AbyssModBootsKurgalSuffixManaCostEfficiencyDodgeRolledRecently"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently", statOrder = { 7482 }, level = 65, group = "ManaCostEfficiencyIfDodgeRolledRecently", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3396435291] = { "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently" }, } }, - ["AbyssModBootsKurgalSuffixManaRegenerationStationary"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Mana Regeneration Rate while stationary", statOrder = { 3883 }, level = 65, group = "ManaRegenerationWhileStationary", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3308030688] = { "(40-50)% increased Mana Regeneration Rate while stationary" }, } }, - ["AbyssModBeltUlamanPrefixLifeFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Ulaman's", "Life Flasks gain (0.1-0.2) charges per Second", statOrder = { 6451 }, level = 65, group = "LifeFlaskChargeGeneration", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.1-0.2) charges per Second" }, } }, - ["AbyssModBeltUlamanPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Ulaman's", "(10-18)% chance for Flasks you use to not consume Charges", statOrder = { 3782 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [311641062] = { "(10-18)% chance for Flasks you use to not consume Charges" }, } }, - ["AbyssModBeltUlamanPrefixLifeRegenRateDuringLifeFlaskEffect"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Life Regeneration rate during Effect of any Life Flask", statOrder = { 7039 }, level = 65, group = "LifeRegenerationRateDuringFlaskEffect", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "life_flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1261076060] = { "(20-30)% increased Life Regeneration rate during Effect of any Life Flask" }, } }, - ["AbyssModBeltUlamanSuffixReducedSlowPotencySelfIfCharmedRecently"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", statOrder = { 9337 }, level = 65, group = "SlowEffectIfCharmedRecently", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3839676903] = { "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently" }, } }, - ["AbyssModBeltAmanamuPrefixCharmsGainChargesPerSecond"] = { type = "Prefix", affix = "Amanamu's", "Charms gain (0.1-0.2) charges per Second", statOrder = { 6448 }, level = 65, group = "CharmChargeGeneration", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.1-0.2) charges per Second" }, } }, - ["AbyssModBeltAmanamuPrefixGainFireThornsPer100MaximumLife"] = { type = "Prefix", affix = "Amanamu's", "2 to 4 Fire Thorns damage per 100 maximum Life", statOrder = { 9648 }, level = 65, group = "ThornsFirePerOneHundredLife", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire" }, tradeHashes = { [287294012] = { "2 to 4 Fire Thorns damage per 100 maximum Life" }, } }, - ["AbyssModBeltAmanamuPrefixChanceToNotConsumeCharmCharges"] = { type = "Prefix", affix = "Amanamu's", "(10-18)% chance for Charms you use to not consume Charges", statOrder = { 5256 }, level = 65, group = "CharmChanceToNotConsumeCharges", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [501873429] = { "(10-18)% chance for Charms you use to not consume Charges" }, } }, - ["AbyssModBeltAmanamuSuffixThornsBaseCriticalStrikeChance"] = { type = "Suffix", affix = "of Amanamu", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4616 }, level = 65, group = "ThornsCriticalStrikeChance", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, - ["AbyssModBeltKurgalPrefixManaFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Kurgal's", "Mana Flasks gain (0.1-0.2) charges per Second", statOrder = { 6452 }, level = 65, group = "ManaFlaskChargeGeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.2) charges per Second" }, } }, - ["AbyssModBeltKurgalPrefixGainArmourPercentOfMana"] = { type = "Prefix", affix = "Kurgal's", "Gain (6-12)% of Maximum Mana as Armour", statOrder = { 7481 }, level = 65, group = "GainPercentManaAsArmour", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "armour", "resource", "unveiled_mod", "kurgal_mod", "mana", "defences" }, tradeHashes = { [514290151] = { "Gain (6-12)% of Maximum Mana as Armour" }, } }, - ["AbyssModBeltKurgalPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Kurgal's", "(10-15)% chance for Flasks you use to not consume Charges", statOrder = { 3782 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "kurgal_mod" }, tradeHashes = { [311641062] = { "(10-15)% chance for Flasks you use to not consume Charges" }, } }, - ["AbyssModBeltKurgalSuffixManaRegenerationRate"] = { type = "Suffix", affix = "of Kurgal", "(30-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 65, group = "ManaRegeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, - ["AbyssModBodyShieldUlamanSuffixHitsAgainstYouReducedCriticalDamage"] = { type = "Suffix", affix = "of Ulaman", "Hits have (17-25)% reduced Critical Hit Chance against you", statOrder = { 2747 }, level = 65, group = "ChanceToTakeCriticalStrikeUpdated", weightKey = { "body_armour", "shield", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "critical" }, tradeHashes = { [4270096386] = { "Hits have (17-25)% reduced Critical Hit Chance against you" }, } }, - ["AbyssModBodyShieldAmanamuSuffixLifeRecoup"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 65, group = "DamageTakenGainedAsLife", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, - ["AbyssModBodyShieldAmanamuSuffixReducedCursedEffectSelf"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% reduced effect of Curses on you", statOrder = { 1835 }, level = 65, group = "ReducedCurseEffect", weightKey = { "body_armour", "shield", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(25-35)% reduced effect of Curses on you" }, } }, - ["AbyssModBodyShieldKurgalSuffixManaRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 65, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "shield", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, - ["AbyssModBodyShieldKurgalSuffixElementalEnergyShieldRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Elemental Damage taken Recouped as Energy Shield", statOrder = { 9080 }, level = 65, group = "ElementalDamageTakenGoesToEnergyShield", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2896115339] = { "(10-20)% of Elemental Damage taken Recouped as Energy Shield" }, } }, - ["AbyssModBodyShieldKurgalSuffixArmourAppliesToChaosDamage"] = { type = "Suffix", affix = "of Kurgal", "+(23-31)% of Armour also applies to Chaos Damage", statOrder = { 4511 }, level = 65, group = "ArmourPercentAppliesToChaosDamage", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3972229254] = { "+(23-31)% of Armour also applies to Chaos Damage" }, } }, - ["AbyssModBodyArmourUlamanSuffixDeflectDamagePrevented"] = { type = "Suffix", affix = "of Ulaman", "Prevent +(3-5)% of Damage from Deflected Hits", statOrder = { 4541 }, level = 65, group = "DeflectDamageTaken", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3552135623] = { "Prevent +(3-5)% of Damage from Deflected Hits" }, } }, - ["AbyssModBodyArmourUlamanSuffixCompanionReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(12-18)% increased Reservation Efficiency of Companion Skills", statOrder = { 9178 }, level = 65, group = "CompanionReservationEfficiency", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3413635271] = { "(12-18)% increased Reservation Efficiency of Companion Skills" }, } }, - ["AbyssModBodyArmourAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(6-12)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "body_armour", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(6-12)% increased Spirit Reservation Efficiency of Skills" }, } }, - ["AbyssModBodyArmourKurgalSuffixDamageTakenFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "body_armour", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, - ["AbyssModShieldUlamanSuffixMaximumBlockChance"] = { type = "Suffix", affix = "of Ulaman", "+(1-2)% to maximum Block chance", statOrder = { 1659 }, level = 65, group = "MaximumBlockChance", weightKey = { "shield", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [480796730] = { "+(1-2)% to maximum Block chance" }, } }, - ["AbyssModShieldUlamanSuffixParryDebuffMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased Parried Debuff Magnitude", statOrder = { 8794 }, level = 65, group = "ParryDebuffMagnitude", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [818877178] = { "(20-30)% increased Parried Debuff Magnitude" }, } }, - ["AbyssModShieldUlamanSuffixParryDebuffDuration"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% increased Parried Debuff Duration", statOrder = { 8808 }, level = 65, group = "ParryDuration", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3401186585] = { "(25-35)% increased Parried Debuff Duration" }, } }, - ["AbyssModShieldUlamanSuffixLightningTakenAsPhysAndGlancingWhileActiveBlocking"] = { type = "Suffix", affix = "of Ulaman", "You take (8-15)% of damage from Blocked Hits with a raised Shield", "(30-40)% of Physical Damage taken as Lightning while your Shield is raised", statOrder = { 4795, 8898 }, level = 65, group = "PhysicalTakenAsLightningAndGlancingWhilActiveBlocking", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod", "physical", "elemental", "lightning" }, tradeHashes = { [321970274] = { "(30-40)% of Physical Damage taken as Lightning while your Shield is raised" }, [3694078435] = { "You take (8-15)% of damage from Blocked Hits with a raised Shield" }, } }, - ["AbyssModShieldAmanamuSuffixShieldSkillsFullyBreakArmourOnHeavyStun"] = { type = "Suffix", affix = "of Amanamu", "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", statOrder = { 6275 }, level = 65, group = "StunningHitsWithShieldSkillsFullyBreakArmour", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1689748350] = { "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour" }, } }, - ["AbyssModShieldAmanamuSuffixHeavyStunDecaySelf"] = { type = "Suffix", affix = "of Amanamu", "Your Heavy Stun buildup empties (30-40)% faster", statOrder = { 6543 }, level = 65, group = "HeavyStunDecayRate", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [886088880] = { "Your Heavy Stun buildup empties (30-40)% faster" }, } }, - ["AbyssModShieldAmanamuSuffixAllMaximumResistances"] = { type = "Suffix", affix = "of Amanamu", "+1% to all maximum Resistances", statOrder = { 1420 }, level = 65, group = "MaximumResistances", weightKey = { "shield", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, - ["AbyssModShieldKurgalSuffixFlatManaGainedOnBlock"] = { type = "Suffix", affix = "of Kurgal", "(6-12) Mana gained when you Block", statOrder = { 1446 }, level = 65, group = "GainManaOnBlock", weightKey = { "shield", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2122183138] = { "(6-12) Mana gained when you Block" }, } }, - ["AbyssModShieldKurgalSuffixEnergyShieldRechargeRateBlockedRecently"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently", statOrder = { 6020 }, level = 65, group = "EnergyShieldRechargeBlockedRecently", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "energy_shield", "block", "unveiled_mod", "kurgal_mod", "defences" }, tradeHashes = { [1079292660] = { "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently" }, } }, - ["AbyssModFocusUlamanPrefixMaximumSpellTotems"] = { type = "Prefix", affix = "Ulaman's", "Spell Skills have +1 to maximum number of Summoned Totems", statOrder = { 9427 }, level = 65, group = "AdditionalSpellTotem", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2474424958] = { "Spell Skills have +1 to maximum number of Summoned Totems" }, } }, - ["AbyssModFocusUlamanPrefixSpellDamageWhileWieldingMeleeWeapon"] = { type = "Prefix", affix = "Ulaman's", "(61-79)% increased Spell Damage while wielding a Melee Weapon", statOrder = { 9406 }, level = 65, group = "SpellDamageIfWieldingMeleeWeapon", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [4136346606] = { "(61-79)% increased Spell Damage while wielding a Melee Weapon" }, } }, - ["AbyssModFocusUlamanSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(10-20)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["AbyssModFocusUlamanSuffixChanceForTwoAdditionalSpellProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(10-16)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(10-16)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["AbyssModFocusAmanamuPrefixCurseMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(8-16)% increased Curse Magnitudes", statOrder = { 2266 }, level = 65, group = "CurseEffectiveness", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-16)% increased Curse Magnitudes" }, } }, - ["AbyssModFocusAmanamuPrefixOfferingBuffEffect"] = { type = "Prefix", affix = "Amanamu's", "Offering Skills have (12-20)% increased Buff effect", statOrder = { 3620 }, level = 65, group = "OfferingEffect", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3191479793] = { "Offering Skills have (12-20)% increased Buff effect" }, } }, - ["AbyssModFocusAmanamuSuffixGlobalMinionSkillLevels"] = { type = "Suffix", affix = "of Amanamu", "+(1-2) to Level of all Minion Skills", statOrder = { 931 }, level = 65, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, - ["AbyssModFocusAmanamuSuffixFasterCurseActivation"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% faster Curse Activation", statOrder = { 5530 }, level = 65, group = "CurseDelay", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, - ["AbyssModFocusKurgalPrefixInvocationSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (61-79)% increased Damage", statOrder = { 6927 }, level = 65, group = "InvocationSpellDamage", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (61-79)% increased Damage" }, } }, - ["AbyssModFocusKurgalPrefixSpellAreaOfEffect"] = { type = "Prefix", affix = "Kurgal's", "Spell Skills have (10-20)% increased Area of Effect", statOrder = { 9390 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-20)% increased Area of Effect" }, } }, - ["AbyssModFocusKurgalSuffixChanceForAdditionalInfusion"] = { type = "Suffix", affix = "of Kurgal", "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type", statOrder = { 4077, 4077.1 }, level = 65, group = "ChanceToGainAdditionalInfusion", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3927679277] = { "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type" }, } }, - ["AbyssModQuiverUlamanPrefixIncreasesToProjectileSpeedApplyToDamage"] = { type = "Prefix", affix = "Ulaman's", "Increases and Reductions to Projectile Speed also apply to Damage with Bows", statOrder = { 4312 }, level = 65, group = "IncreasesToProjectileDamageApplyToBowDamage", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [414821772] = { "Increases and Reductions to Projectile Speed also apply to Damage with Bows" }, } }, - ["AbyssModQuiverUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving", statOrder = { 8968 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving" }, } }, - ["AbyssModQuiverUlamanSuffixAttackCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-14)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 65, group = "LifeCost", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(10-14)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["AbyssModQuiverAmanamuPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Amanamu's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m", statOrder = { 8975 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m" }, } }, - ["AbyssModQuiverAmanamuSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Amanamu", "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5423 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m" }, } }, - ["AbyssModQuiverKurgalPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m", statOrder = { 8974 }, level = 65, group = "ProjectileDamageFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m" }, } }, - ["AbyssModQuiverKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5436 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m" }, } }, - ["AbyssModRingAmuletUlamanPrefixAttackDamageWhileLowLife"] = { type = "Prefix", affix = "Ulaman's", "(15-25)% increased Attack Damage while on Low Life", statOrder = { 4397 }, level = 65, group = "AttackDamageOnLowLife", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [4246007234] = { "(15-25)% increased Attack Damage while on Low Life" }, } }, - ["AbyssModRingAmuletUlamanSuffixSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(3-6)% increased Skill Speed", statOrder = { 828 }, level = 65, group = "IncreasedSkillSpeed", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [970213192] = { "(3-6)% increased Skill Speed" }, } }, - ["AbyssModRingAmuletUlamanSuffixRecoverPercentMaxLifeOnKill"] = { type = "Suffix", affix = "of Ulaman", "Recover (2-3)% of maximum Life on Kill", statOrder = { 1437 }, level = 65, group = "RecoverPercentMaxLifeOnKill", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (2-3)% of maximum Life on Kill" }, } }, - ["AbyssModRingAmuletAmanamuPrefixRemnantEffect"] = { type = "Prefix", affix = "Amanamu's", "Remnants have (8-15)% increased effect", statOrder = { 9151 }, level = 65, group = "RemnantEffect", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1999910726] = { "Remnants have (8-15)% increased effect" }, } }, - ["AbyssModRingAmuletAmanamuPrefixMinionDamageIfYou'veHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (15-25)% increased Damage if you've Hit Recently", statOrder = { 8484 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (15-25)% increased Damage if you've Hit Recently" }, } }, - ["AbyssModRingAmuletAmanamuSuffixSkillEffectDuration"] = { type = "Suffix", affix = "of Amanamu", "(8-12)% increased Skill Effect Duration", statOrder = { 1572 }, level = 65, group = "SkillEffectDuration", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3377888098] = { "(8-12)% increased Skill Effect Duration" }, } }, - ["AbyssModRingAmuletAmanamuSuffixRemnantCollectionRange"] = { type = "Suffix", affix = "of Amanamu", "Remnants can be collected from (20-30)% further away", statOrder = { 9153 }, level = 65, group = "RemnantPickupRadiusIncrease", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-30)% further away" }, } }, - ["AbyssModRingAmuletKurgalPrefixSpellDamageWhileEnergyShieldFull"] = { type = "Prefix", affix = "Kurgal's", "(15-25)% increased Spell Damage while on Full Energy Shield", statOrder = { 2700 }, level = 65, group = "IncreasedSpellDamageOnFullEnergyShield", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "caster_damage", "unveiled_mod", "kurgal_mod", "damage", "caster" }, tradeHashes = { [3176481473] = { "(15-25)% increased Spell Damage while on Full Energy Shield" }, } }, - ["AbyssModRingAmuletKurgalSuffixExposureEffect"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% increased Exposure Effect", statOrder = { 6106 }, level = 65, group = "ElementalExposureEffect", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2074866941] = { "(10-15)% increased Exposure Effect" }, } }, - ["AbyssModRingAmuletKurgalSuffixCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 65, group = "GlobalCooldownRecovery", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, - ["AbyssModRingAmuletKurgalSuffixRecoverPercentMaxManaOnKill"] = { type = "Suffix", affix = "of Kurgal", "Recover (2-3)% of maximum Mana on Kill", statOrder = { 1443 }, level = 65, group = "ManaGainedOnKillPercentage", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [1604736568] = { "Recover (2-3)% of maximum Mana on Kill" }, } }, - ["AbyssModRingUlamanPrefixShockMagnitudeIfConsumedFrenzyCharge"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", statOrder = { 9249 }, level = 65, group = "ShockMagnitudeIfConsumedFrenzyChargeRecently", weightKey = { "ring", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "frenzy_charge", "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [324210709] = { "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently" }, } }, - ["AbyssModRingAmanamuPrefixIgniteMagnitudeIfConsumedEnduranceCharge"] = { type = "Prefix", affix = "Amanamu's", "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", statOrder = { 6816 }, level = 65, group = "IgniteMagnitudeIfConsumedEnduranceChargeRecently", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "endurance_charge", "unveiled_mod", "amanamu_mod", "ailment" }, tradeHashes = { [916833363] = { "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently" }, } }, - ["AbyssModRingAmanamuSuffixLifeLeechAmount"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased amount of Life Leeched", statOrder = { 1820 }, level = 65, group = "LifeLeechAmount", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2112395885] = { "(12-20)% increased amount of Life Leeched" }, } }, - ["AbyssModRingKurgalPrefixFreezeBuildupIfConsumedPowerCharge"] = { type = "Prefix", affix = "Kurgal's", "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently", statOrder = { 6747 }, level = 65, group = "FreezeBuildupIfConsumedPowerChargeRecently", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "power_charge", "unveiled_mod", "kurgal_mod", "ailment" }, tradeHashes = { [232701452] = { "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently" }, } }, - ["AbyssModRingKurgalSuffixManaLeechAmount"] = { type = "Suffix", affix = "of Kurgal", "(12-20)% increased amount of Mana Leeched", statOrder = { 1822 }, level = 65, group = "ManaLeechAmount", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2839066308] = { "(12-20)% increased amount of Mana Leeched" }, } }, - ["AbyssModAmuletUlamanPrefixEvasionRatingFromEquippedBody"] = { type = "Prefix", affix = "Ulaman's", "(35-50)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4810 }, level = 65, group = "EvasionRatingFromBodyArmour", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "evasion", "unveiled_mod", "ulaman_mod", "defences" }, tradeHashes = { [3509362078] = { "(35-50)% increased Evasion Rating from Equipped Body Armour" }, } }, - ["AbyssModAmuletUlamanPrefixGlobalDeflectionRating"] = { type = "Prefix", affix = "Ulaman's", "(10-20)% increased Deflection Rating", statOrder = { 5721 }, level = 65, group = "GlobalDeflectionRating", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "evasion", "unveiled_mod", "ulaman_mod", "defences" }, tradeHashes = { [3040571529] = { "(10-20)% increased Deflection Rating" }, } }, - ["AbyssModAmuletUlamanPrefixChanceToNotConsumeGlory"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% chance for Skills to retain 40% of Glory on use", statOrder = { 5190 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2749595652] = { "(20-30)% chance for Skills to retain 40% of Glory on use" }, } }, - ["AbyssModAmuletUlamanSuffixHeraldReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Reservation Efficiency of Herald Skills", statOrder = { 9179 }, level = 65, group = "HeraldReservationEfficiency", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1697191405] = { "(10-20)% increased Reservation Efficiency of Herald Skills" }, } }, - ["AbyssModAmuletUlamanSuffixGlobalLevelOfSkillGems"] = { type = "Suffix", affix = "of Ulaman", "+1 to Level of all Skills", statOrder = { 4166 }, level = 65, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, - ["AbyssModAmuletAmanamuPrefixArmourFromEquippedBody"] = { type = "Prefix", affix = "Amanamu's", "(35-50)% increased Armour from Equipped Body Armour", statOrder = { 4809 }, level = 65, group = "BodyArmourFromBodyArmour", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "armour", "unveiled_mod", "amanamu_mod", "defences" }, tradeHashes = { [1015576579] = { "(35-50)% increased Armour from Equipped Body Armour" }, } }, - ["AbyssModAmuletAmanamuPrefixGlobalDefences"] = { type = "Prefix", affix = "Amanamu's", "(15-25)% increased Global Defences", statOrder = { 2486 }, level = 65, group = "AllDefences", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "defences" }, tradeHashes = { [1389153006] = { "(15-25)% increased Global Defences" }, } }, - ["AbyssModAmuletAmanamuSuffixReducedRequirementEquipmentAndSkill"] = { type = "Suffix", affix = "of Amanamu", "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements", statOrder = { 2224 }, level = 65, group = "GlobalItemAttributeRequirements", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements" }, } }, - ["AbyssModAmuletAmanamuSuffixAuraMagnitude"] = { type = "Suffix", affix = "of Amanamu", "Aura Skills have (8-16)% increased Magnitudes", statOrder = { 2472 }, level = 65, group = "AuraMagnitude", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [315791320] = { "Aura Skills have (8-16)% increased Magnitudes" }, } }, - ["AbyssModAmuletKurgalPrefixEnergyShieldFromEquippedBody"] = { type = "Prefix", affix = "Kurgal's", "(35-50)% increased Energy Shield from Equipped Body Armour", statOrder = { 8313 }, level = 65, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "energy_shield", "unveiled_mod", "kurgal_mod", "defences" }, tradeHashes = { [1195319608] = { "(35-50)% increased Energy Shield from Equipped Body Armour" }, } }, - ["AbyssModAmuletKurgalPrefixChanceInvocatedSpellsConsumeHalfEnergy"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells have (10-20)% chance to consume half as much Energy", statOrder = { 6924 }, level = 65, group = "InvocatedSpellHalfEnergyChance", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [3711973554] = { "Invocated Spells have (10-20)% chance to consume half as much Energy" }, } }, - ["AbyssModAmuletKurgalSuffixCooldownRecoveryRateCommandSkills"] = { type = "Suffix", affix = "of Kurgal", "Minions have (12-20)% increased Cooldown Recovery Rate", statOrder = { 8475 }, level = 65, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHashes = { [1691403182] = { "Minions have (12-20)% increased Cooldown Recovery Rate" }, } }, - ["AbyssModAmuletKurgalSuffixDamageFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(8-16)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(8-16)% of Damage is taken from Mana before Life" }, } }, - ["AbyssModAmuletKurgalSuffixQualityofAllSkills"] = { type = "Suffix", affix = "of Kurgal", "+(3-5)% to Quality of all Skills", statOrder = { 4167 }, level = 65, group = "GlobalSkillGemQuality", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "gem" }, tradeHashes = { [3655769732] = { "+(3-5)% to Quality of all Skills" }, } }, - ["AbyssModStaffUlamanPrefixSpellDamagePer100MaximumLife"] = { type = "Prefix", affix = "Ulaman's", "(4-5)% increased Spell Damage per 100 Maximum Life", statOrder = { 9411 }, level = 65, group = "SpellDamagePer100Life", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "ulaman_mod", "life", "damage", "caster" }, tradeHashes = { [3491815140] = { "(4-5)% increased Spell Damage per 100 Maximum Life" }, } }, - ["AbyssModStaffUlamanPrefixMagnitudeOfDamagingAilments"] = { type = "Prefix", affix = "Ulaman's", "(40-64)% increased Magnitude of Damaging Ailments you inflict", statOrder = { 5670 }, level = 65, group = "DamagingAilmentEffect", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [1381474422] = { "(40-64)% increased Magnitude of Damaging Ailments you inflict" }, } }, - ["AbyssModStaffUlamanSuffixCastSpeedWhileLowLife"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% increased Cast Speed when on Low Life", statOrder = { 1666 }, level = 65, group = "CastSpeedOnLowLife", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster", "speed" }, tradeHashes = { [1136768410] = { "(30-40)% increased Cast Speed when on Low Life" }, } }, - ["AbyssModStaffUlamanSuffixChanceForSpellsToFireTwoAdditionalProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["AbyssModStaffAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(148-178)% increased Spell Damage with Spells that cost Life", statOrder = { 9407 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(148-178)% increased Spell Damage with Spells that cost Life" }, } }, - ["AbyssModStaffAmanamuPrefixFlatSpirit"] = { type = "Prefix", affix = "Amanamu's", "+(35-50) to Spirit", statOrder = { 874 }, level = 65, group = "BaseSpirit", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3981240776] = { "+(35-50) to Spirit" }, } }, - ["AbyssModStaffAmanamuSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-35)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["AbyssModStaffAmanamuSuffixArchonDuration"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Archon Buff duration", statOrder = { 4222 }, level = 65, group = "ArchonDuration", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2158617060] = { "(25-35)% increased Archon Buff duration" }, } }, - ["AbyssModStaffAmanamuSuffixBlockChance"] = { type = "Suffix", affix = "of Amanamu", "+(12-16)% to Block chance", statOrder = { 2130 }, level = 65, group = "AdditionalBlock", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1702195217] = { "+(12-16)% to Block chance" }, } }, - ["AbyssModStaffKurgalPrefixSpellDamagePer100MaximumMana"] = { type = "Prefix", affix = "Kurgal's", "(4-5)% increased Spell Damage per 100 maximum Mana", statOrder = { 9413 }, level = 65, group = "SpellDamagePer100Mana", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "kurgal_mod", "mana", "damage", "caster" }, tradeHashes = { [1850249186] = { "(4-5)% increased Spell Damage per 100 maximum Mana" }, } }, - ["AbyssModStaffKurgalPrefixMaximumInfusions"] = { type = "Prefix", affix = "Kurgal's", "+(1-2) to maximum number of Elemental Infusions", statOrder = { 8324 }, level = 65, group = "MaximumElementalInfusion", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental" }, tradeHashes = { [4097212302] = { "+(1-2) to maximum number of Elemental Infusions" }, } }, - ["AbyssModStaffKurgalSuffixArchonCooldownRecovery"] = { type = "Suffix", affix = "of Kurgal", "Archon recovery period expires (25-35)% faster", statOrder = { 4221 }, level = 65, group = "ArchonDelayRecovery", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2586152168] = { "Archon recovery period expires (25-35)% faster" }, } }, - ["AbyssModStaffKurgalSuffixCastSpeedWhileFullMana"] = { type = "Suffix", affix = "of Kurgal", "(26-36)% increased Cast Speed while on Full Mana", statOrder = { 4976 }, level = 65, group = "CastSpeedOnFullMana", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana", "caster", "speed" }, tradeHashes = { [1914226331] = { "(26-36)% increased Cast Speed while on Full Mana" }, } }, - ["AbyssModWandUlamanPrefixDamageAsExtraPhysical"] = { type = "Prefix", affix = "Ulaman's", "Gain (21-25)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 65, group = "DamageasExtraPhysical", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (21-25)% of Damage as Extra Physical Damage" }, } }, - ["AbyssModWandUlamanPrefixBleedMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(27-38)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 65, group = "BleedDotMultiplier", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "ulaman_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(27-38)% increased Magnitude of Bleeding you inflict" }, } }, - ["AbyssModWandUlamanSuffixArmourBreakAmount"] = { type = "Suffix", affix = "of Ulaman", "Break (31-39)% increased Armour", statOrder = { 4283 }, level = 65, group = "ArmourBreak", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1776411443] = { "Break (31-39)% increased Armour" }, } }, - ["AbyssModWandUlamanSuffixBreakArmourSpellCrits"] = { type = "Suffix", affix = "of Ulaman", "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt", statOrder = { 4287 }, level = 65, group = "ArmourBreakPercentOnSpellCrit", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster", "critical" }, tradeHashes = { [1286199571] = { "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt" }, } }, - ["AbyssModWandUlamanSuffixHinderedEnemiesTakeIncreasedPhysical"] = { type = "Suffix", affix = "of Ulaman", "Enemies Hindered by you take (4-7)% increased Physical Damage", statOrder = { 6741 }, level = 65, group = "HinderedEnemiesTakeIncreasedPhysicalDamage", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [359357545] = { "Enemies Hindered by you take (4-7)% increased Physical Damage" }, } }, - ["AbyssModWandAmanamuPrefixIncreasedElementalDamage"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Elemental Damage", statOrder = { 1651 }, level = 65, group = "CasterElementalDamagePercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(74-89)% increased Elemental Damage" }, } }, - ["AbyssModWandAmanamuPrefixHybridSpellAndMinionDamage"] = { type = "Prefix", affix = "Amanamu's", "(55-64)% increased Spell Damage", "Minions deal (55-64)% increased Damage", statOrder = { 853, 1646 }, level = 65, group = "MinionAndSpellDamageHybrid", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "minion" }, tradeHashes = { [2974417149] = { "(55-64)% increased Spell Damage" }, [1589917703] = { "Minions deal (55-64)% increased Damage" }, } }, - ["AbyssModWandAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Spell Damage with Spells that cost Life", statOrder = { 9407 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(74-89)% increased Spell Damage with Spells that cost Life" }, } }, - ["AbyssModWandAmanamuSuffixSpellAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Spell Skills have (8-16)% increased Area of Effect", statOrder = { 9390 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1967040409] = { "Spell Skills have (8-16)% increased Area of Effect" }, } }, - ["AbyssModWandAmanamuSuffixSpellManaCostConvertedToLifeSkillEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Cost Efficiency", "(15-25)% of Spell Mana Cost Converted to Life Cost", statOrder = { 4604, 9436 }, level = 65, group = "SpellLifeCostPercentAndSkillCostEfficiency", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [263495202] = { "(5-10)% increased Cost Efficiency" }, [3544050945] = { "(15-25)% of Spell Mana Cost Converted to Life Cost" }, } }, - ["AbyssModWandAmanamuSuffixHinderedEnemiesTakeIncreasedElemental"] = { type = "Suffix", affix = "of Amanamu", "Enemies Hindered by you take (4-7)% increased Elemental Damage", statOrder = { 6740 }, level = 65, group = "HinderedEnemiesTakeIncreasedElementalDamage", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [212649958] = { "Enemies Hindered by you take (4-7)% increased Elemental Damage" }, } }, - ["AbyssModWandKurgalPrefixInvocatedSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (75-89)% increased Damage", statOrder = { 6927 }, level = 65, group = "InvocationSpellDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (75-89)% increased Damage" }, } }, - ["AbyssModWandKurgalSuffixCastSpeedPerDifferentSpellCastRecently"] = { type = "Suffix", affix = "of Kurgal", "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 4965 }, level = 65, group = "CastSpeedPerDifferentSpellCastRecently", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1518586897] = { "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" }, } }, - ["AbyssModWandKurgalSuffixHinderedEnemiesTakeIncreasedChaos"] = { type = "Suffix", affix = "of Kurgal", "Enemies Hindered by you take (4-7)% increased Chaos Damage", statOrder = { 6739 }, level = 65, group = "HinderedEnemiesTakeIncreasedChaosDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1746561819] = { "Enemies Hindered by you take (4-7)% increased Chaos Damage" }, } }, - ["AbyssModGenWeaponUlamanPrefixLightningPenetration"] = { type = "Prefix", affix = "Ulaman's", "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance", statOrder = { 3333 }, level = 65, group = "LocalLightningPenetration", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "ulaman_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance" }, } }, - ["AbyssModGenWeaponUlamanSuffixSkillCostConvertedToLife"] = { type = "Suffix", affix = "of Ulaman", "(15-20)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 65, group = "LifeCost", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(15-20)% of Skill Mana Costs Converted to Life Costs" }, } }, - ["AbyssModGenWeaponAmanamuPrefixFirePenetration"] = { type = "Prefix", affix = "Amanamu's", "Attacks with this Weapon Penetrate (15-25)% Fire Resistance", statOrder = { 3331 }, level = 65, group = "LocalFirePenetration", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (15-25)% Fire Resistance" }, } }, - ["AbyssModGenWeaponAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(5-10)% increased Spirit Reservation Efficiency of Skills" }, } }, - ["AbyssModGenWeaponKurgalPrefixColdPenetration"] = { type = "Prefix", affix = "Kurgal's", "Attacks with this Weapon Penetrate (15-25)% Cold Resistance", statOrder = { 3332 }, level = 65, group = "LocalColdPenetration", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "kurgal_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (15-25)% Cold Resistance" }, } }, - ["AbyssModGenWeaponKurgalSuffixAttackCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4519 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, - ["AbyssModAllMacesUlamanPrefixMaximumMeleeAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "Melee Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 8361 }, level = 65, group = "AdditionalMeleeTotem", weightKey = { "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2013356568] = { "Melee Attack Skills have +1 to maximum number of Summoned Totems" }, } }, - ["AbyssModAllMacesKurgalPrefixIncreasedPhysicalDamageReducedAttackSpeed"] = { type = "Prefix", affix = "Kurgal's", "(110-154)% increased Physical Damage", "15% reduced Attack Speed", statOrder = { 821, 919 }, level = 65, group = "LocalIncreasedPhysicalDamageAttackSpeedHybrid", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "physical", "attack", "speed" }, tradeHashes = { [210067635] = { "15% reduced Attack Speed" }, [1509134228] = { "(110-154)% increased Physical Damage" }, } }, - ["AbyssModAllMacesKurgalSuffixCostEfficiencyOfAttackSkills"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4519 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, - ["AbyssMod1HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(41-59)% increased Damage while you have a Totem", statOrder = { 2818 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHashes = { [2543331226] = { "(41-59)% increased Damage while you have a Totem" }, } }, - ["AbyssMod1HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% increased Totem Placement speed", statOrder = { 2250 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3374165039] = { "(17-25)% increased Totem Placement speed" }, } }, - ["AbyssMod1HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(41-59)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5553 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(41-59)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["AbyssMod1HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (2-4)% of Physical Damage dealt", statOrder = { 4290 }, level = 65, group = "ArmourPenetration", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (2-4)% of Physical Damage dealt" }, } }, - ["AbyssMod1HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (15-25)% chance to create an additional Fissure", statOrder = { 9296 }, level = 65, group = "AdditionalFissureChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (15-25)% chance to create an additional Fissure" }, } }, - ["AbyssMod1HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 9975 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, - ["AbyssMod1HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (41-59)% increased Damage", statOrder = { 5912 }, level = 65, group = "ExertedAttackDamage", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (41-59)% increased Damage" }, } }, - ["AbyssMod1HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 2929 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4159248054] = { "(17-25)% increased Warcry Cooldown Recovery Rate" }, } }, - ["AbyssMod2HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Damage while you have a Totem", statOrder = { 2818 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHashes = { [2543331226] = { "(86-99)% increased Damage while you have a Totem" }, } }, - ["AbyssMod2HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(25-31)% increased Totem Placement speed", statOrder = { 2250 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3374165039] = { "(25-31)% increased Totem Placement speed" }, } }, - ["AbyssMod2HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5553 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(86-99)% increased Damage against Enemies with Fully Broken Armour" }, } }, - ["AbyssMod2HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (4-7)% of Physical Damage dealt", statOrder = { 4290 }, level = 65, group = "ArmourPenetration", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (4-7)% of Physical Damage dealt" }, } }, - ["AbyssMod2HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (25-31)% chance to create an additional Fissure", statOrder = { 9296 }, level = 65, group = "AdditionalFissureChance", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (25-31)% chance to create an additional Fissure" }, } }, - ["AbyssMod2HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 9975 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, - ["AbyssMod2HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (86-99)% increased Damage", statOrder = { 5912 }, level = 65, group = "ExertedAttackDamage", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (86-99)% increased Damage" }, } }, - ["AbyssMod2HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(25-31)% increased Warcry Cooldown Recovery Rate", statOrder = { 2929 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4159248054] = { "(25-31)% increased Warcry Cooldown Recovery Rate" }, } }, - ["AbyssModQuarterstaffUlamanPrefixLightningDamageShockMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Lightning Damage", "(14-23)% increased Magnitude of Shock you inflict", statOrder = { 857, 9248 }, level = 65, group = "LightningDamageShockMagnitudeHybrid", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(14-23)% increased Magnitude of Shock you inflict" }, [2231156303] = { "(86-99)% increased Lightning Damage" }, } }, - ["AbyssModQuarterstaffUlamanSuffixRecoverLifeWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Ulaman", "Recover (6-12)% of Maximum Life when you expend at least 10 Combo", statOrder = { 9116 }, level = 65, group = "SkillUseRecoverPercentLifeOnExpendingTenCombo", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [4033618138] = { "Recover (6-12)% of Maximum Life when you expend at least 10 Combo" }, } }, - ["AbyssModQuarterstaffAmanamuPrefixFireDamageIgniteMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Fire Damage", "(14-23)% increased Ignite Magnitude", statOrder = { 855, 1009 }, level = 65, group = "FireDamageIgniteMagnitudeHybrid", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHashes = { [3962278098] = { "(86-99)% increased Fire Damage" }, [3791899485] = { "(14-23)% increased Ignite Magnitude" }, } }, - ["AbyssModQuarterstaffAmanamuSuffixChanceToGenerateAdditionalCombo"] = { type = "Suffix", affix = "of Amanamu", "(25-40)% chance to build an additional Combo on Hit", statOrder = { 4068 }, level = 65, group = "ChanceToGenerateAdditionalCombo", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [4258524206] = { "(25-40)% chance to build an additional Combo on Hit" }, } }, - ["AbyssModQuarterstaffKurgalPrefixColdDamageFreezeBuildup"] = { type = "Prefix", affix = "Kurgal's", "(86-99)% increased Cold Damage", "(14-23)% increased Freeze Buildup", statOrder = { 856, 990 }, level = 65, group = "ColdDamageFreezeBuildupHybrid", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3291658075] = { "(86-99)% increased Cold Damage" }, [473429811] = { "(14-23)% increased Freeze Buildup" }, } }, - ["AbyssModQuarterstaffKurgalSuffixRecoverManaWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Kurgal", "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo", statOrder = { 9119 }, level = 65, group = "SkillUseRecoverPercentManaOnExpendingTenCombo", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2991045011] = { "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo" }, } }, - ["AbyssModCrossbowUlamanPrefixMaximumRangedAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4058 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1823942939] = { "+1 to maximum number of Summoned Ballista Totems" }, } }, - ["AbyssModCrossbowUlamanSuffixAttacksChainAdditionalTime"] = { type = "Suffix", affix = "of Ulaman", "Attacks Chain an additional time", statOrder = { 3684 }, level = 65, group = "AttacksChainAdditionalTimes", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3868118796] = { "Attacks Chain an additional time" }, } }, - ["AbyssModCrossbowUlamanSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Ulaman", "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5423 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m" }, } }, - ["AbyssModCrossbowAmanamuPrefixGrenadeAdditionalCooldown"] = { type = "Prefix", affix = "Amanamu's", "Grenade Skills have +1 Cooldown Use", statOrder = { 6497 }, level = 65, group = "GrenadeCooldownUse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, - ["AbyssModCrossbowAmanamuPrefixGrenadeDamageAndDuration"] = { type = "Prefix", affix = "Amanamu's", "(101-121)% increased Grenade Damage", "(20-30)% increased Grenade Duration", statOrder = { 6499, 6500 }, level = 65, group = "GrenadeDamageLongFuse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [1365232741] = { "(20-30)% increased Grenade Duration" }, [3131442032] = { "(101-121)% increased Grenade Damage" }, } }, - ["AbyssModCrossbowAmanamuSuffixAdditionalGrenadeTriggerChance"] = { type = "Suffix", affix = "of Amanamu", "Grenades have (15-25)% chance to activate a second time", statOrder = { 6495 }, level = 65, group = "GrenadeAdditionalTriggerChance", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [538981065] = { "Grenades have (15-25)% chance to activate a second time" }, } }, - ["AbyssModCrossbowKurgalPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m", statOrder = { 8975 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m" }, } }, - ["AbyssModCrossbowKurgalSuffixReloadSpeed"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Reload Speed", statOrder = { 920 }, level = 65, group = "LocalReloadSpeed", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack", "speed" }, tradeHashes = { [710476746] = { "(17-25)% increased Reload Speed" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraTribute"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", statOrder = { 7687 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraTribute", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHashes = { [1119086588] = { "Conquered Attribute Passive Skills also grant +(2-5) to Tribute" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraStrength"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Strength", statOrder = { 7686 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraStrength", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [3871530702] = { "Conquered Attribute Passive Skills also grant +(4-8) to Strength" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraDexterity"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity", statOrder = { 7684 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraDexterity", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [1938221597] = { "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraIntelligence"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence", statOrder = { 7685 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraIntelligence", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [3116427713] = { "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraAllAttributes"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes", statOrder = { 7683 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraAllAttributes", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1", "attribute" }, tradeHashes = { [2552484522] = { "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes" }, } }, + ["HistoricAbyssJewelSmallGrantEvasionRatingIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating", statOrder = { 7694 }, level = 1, group = "HistoricAbyssJewelSmallGrantEvasionRatingIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "evasion" }, tradeHashes = { [468694293] = { "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating" }, } }, + ["HistoricAbyssJewelSmallGrantArmourIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Armour", statOrder = { 7689 }, level = 1, group = "HistoricAbyssJewelSmallGrantArmourIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "armour" }, tradeHashes = { [970480050] = { "Conquered Small Passive Skills also grant (2-4)% increased Armour" }, } }, + ["HistoricAbyssJewelSmallGrantEnergyShieldIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield", statOrder = { 7693 }, level = 1, group = "HistoricAbyssJewelSmallGrantEnergyShieldIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "historic_abyss_jewel_2", "energy_shield" }, tradeHashes = { [2780670304] = { "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield" }, } }, + ["HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate", statOrder = { 7696 }, level = 1, group = "HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "historic_abyss_jewel_2", "mana" }, tradeHashes = { [1818915622] = { "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate" }, } }, + ["HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate", statOrder = { 7695 }, level = 1, group = "HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "historic_abyss_jewel_2", "life" }, tradeHashes = { [4264952559] = { "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate" }, } }, + ["HistoricAbyssJewelSmallGrantSpellDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Spell damage", statOrder = { 7699 }, level = 1, group = "HistoricAbyssJewelSmallGrantSpellDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "caster" }, tradeHashes = { [3038857426] = { "Conquered Small Passive Skills also grant (3-5)% increased Spell damage" }, } }, + ["HistoricAbyssJewelSmallGrantAttackDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Attack damage", statOrder = { 7690 }, level = 1, group = "HistoricAbyssJewelSmallGrantAttackDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2", "damage", "attack" }, tradeHashes = { [8816597] = { "Conquered Small Passive Skills also grant (3-5)% increased Attack damage" }, } }, + ["HistoricAbyssJewelSmallGrantElementalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage", statOrder = { 7692 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [4240116297] = { "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage" }, } }, + ["HistoricAbyssJewelSmallGrantPhysicalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Physical damage", statOrder = { 7698 }, level = 1, group = "HistoricAbyssJewelSmallGrantPhysicalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "physical" }, tradeHashes = { [1829333149] = { "Conquered Small Passive Skills also grant (3-5)% increased Physical damage" }, } }, + ["HistoricAbyssJewelSmallGrantChaosDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage", statOrder = { 7691 }, level = 1, group = "HistoricAbyssJewelSmallGrantChaosDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "chaos" }, tradeHashes = { [2601021356] = { "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage" }, } }, + ["HistoricAbyssJewelSmallGrantMinionDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage", statOrder = { 7697 }, level = 1, group = "HistoricAbyssJewelSmallGrantMinionDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "unveiled_mod", "historic_abyss_jewel_2", "damage", "minion" }, tradeHashes = { [3343033032] = { "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage" }, } }, + ["HistoricAbyssJewelSmallGrantStunThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold", statOrder = { 7700 }, level = 1, group = "HistoricAbyssJewelSmallGrantStunThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHashes = { [2475870935] = { "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold" }, } }, + ["HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold", statOrder = { 7688 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1283490138] = { "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold" }, } }, + ["UniqueHeartPrefixDamageGainedAsFire"] = { affix = "", "Gain (9-15)% of Damage as Extra Fire Damage", statOrder = { 862 }, level = 1, group = "DamageGainedAsFire", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "fire" }, tradeHashes = { [3015669065] = { "Gain (9-15)% of Damage as Extra Fire Damage" }, } }, + ["UniqueHeartPrefixDamageGainedAsCold"] = { affix = "", "Gain (7-13)% of Damage as Extra Chaos Damage", statOrder = { 1670 }, level = 1, group = "DamageGainedAsChaos", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "chaos" }, tradeHashes = { [3398787959] = { "Gain (7-13)% of Damage as Extra Chaos Damage" }, } }, + ["UniqueHeartPrefixDamageGainedAsLightning"] = { affix = "", "Gain (9-15)% of Damage as Extra Cold Damage", statOrder = { 865 }, level = 1, group = "DamageGainedAsCold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "cold" }, tradeHashes = { [2505884597] = { "Gain (9-15)% of Damage as Extra Cold Damage" }, } }, + ["UniqueHeartPrefixDamageGainedAsChaos"] = { affix = "", "Gain (9-15)% of Damage as Extra Lightning Damage", statOrder = { 868 }, level = 1, group = "DamageGainedAsLightning", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHashes = { [3278136794] = { "Gain (9-15)% of Damage as Extra Lightning Damage" }, } }, + ["UniqueHeartPrefixMinionReviveSpeed"] = { affix = "", "Minions Revive (5-10)% faster", statOrder = { 9050 }, level = 1, group = "MinionReviveSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "minion" }, tradeHashes = { [2639966148] = { "Minions Revive (5-10)% faster" }, } }, + ["UniqueHeartPrefixIncreasedSkillSpeed"] = { affix = "", "(4-8)% increased Skill Speed", statOrder = { 836 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "speed" }, tradeHashes = { [970213192] = { "(4-8)% increased Skill Speed" }, } }, + ["UniqueHeartPrefixManaCostEfficiency"] = { affix = "", "(8-16)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 1, group = "ManaCostEfficiency", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4101445926] = { "(8-16)% increased Mana Cost Efficiency" }, } }, + ["UniqueHeartPrefixGlobalCooldownRecovery"] = { affix = "", "(10-18)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1004011302] = { "(10-18)% increased Cooldown Recovery Rate" }, } }, + ["UniqueHeartPrefixChanceToPierce"] = { affix = "", "(30-50)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 1, group = "ChanceToPierce", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2321178454] = { "(30-50)% chance to Pierce an Enemy" }, } }, + ["UniqueHeartPrefixSkillEffectDuration"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, + ["UniqueHeartPrefixMinionLifeGainAsEnergyShield"] = { affix = "", "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 1436 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "energy_shield", "minion" }, tradeHashes = { [943702197] = { "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield" }, } }, + ["UniqueHeartPrefixMinionLifeRegeneration"] = { affix = "", "Minions Regenerate (1-3)% of maximum Life per second", statOrder = { 2664 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "minion" }, tradeHashes = { [2479683456] = { "Minions Regenerate (1-3)% of maximum Life per second" }, } }, + ["UniqueHeartPrefixDamageWhileInPresenceOfCompanion"] = { affix = "", "(15-25)% increased Damage while your Companion is in your Presence", statOrder = { 5947 }, level = 1, group = "DamageWhileInPresenceOfCompanion", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "minion_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "minion" }, tradeHashes = { [693180608] = { "(15-25)% increased Damage while your Companion is in your Presence" }, } }, + ["UniqueHeartPrefixAggravateBleedOnAttackHitChance"] = { affix = "", "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4230 }, level = 1, group = "AggravateBleedOnAttackHitChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_prefix", "physical", "ailment" }, tradeHashes = { [2705185939] = { "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks" }, } }, + ["UniqueHeartPrefixLuckyLightningDamageChancePercent"] = { affix = "", "(15-25)% chance for Lightning Damage with Hits to be Lucky", statOrder = { 5392 }, level = 1, group = "LuckyLightningDamageChancePercent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHashes = { [2466011626] = { "(15-25)% chance for Lightning Damage with Hits to be Lucky" }, } }, + ["UniqueHeartPrefixRecoverLifeOnKillingPoisonedEnemy"] = { affix = "", "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9656 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemy", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [1781372024] = { "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy" }, } }, + ["UniqueHeartPrefixPercentOfLeechIsInstant"] = { affix = "", "(8-15)% of Leech is Instant", statOrder = { 7401 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, + ["UniqueHeartPrefixEvasionRatingFromBodyArmour"] = { affix = "", "(40-60)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4946 }, level = 1, group = "EvasionRatingFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "evasion" }, tradeHashes = { [3509362078] = { "(40-60)% increased Evasion Rating from Equipped Body Armour" }, } }, + ["UniqueHeartPrefixBodyArmourFromBodyArmour"] = { affix = "", "(40-60)% increased Armour from Equipped Body Armour", statOrder = { 4945 }, level = 1, group = "BodyArmourFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "armour" }, tradeHashes = { [1015576579] = { "(40-60)% increased Armour from Equipped Body Armour" }, } }, + ["UniqueHeartPrefixMaximumEnergyShieldFromBodyArmour"] = { affix = "", "(40-60)% increased Energy Shield from Equipped Body Armour", statOrder = { 8828 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "unveiled_mod", "heart_unique_jewel_prefix", "energy_shield" }, tradeHashes = { [1195319608] = { "(40-60)% increased Energy Shield from Equipped Body Armour" }, } }, + ["UniqueHeartPrefixTriggersRefundEnergySpent"] = { affix = "", "(6-12)% chance for Trigger skills to refund half of Energy Spent", statOrder = { 10279 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [599320227] = { "(6-12)% chance for Trigger skills to refund half of Energy Spent" }, } }, + ["UniqueHeartPrefixManaRegenerationRateWhileMoving"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 7994 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [1327522346] = { "(20-30)% increased Mana Regeneration Rate while moving" }, } }, + ["UniqueHeartPrefixCullingStrikeThreshold"] = { affix = "", "(15-25)% increased Culling Strike Threshold", statOrder = { 5900 }, level = 1, group = "CullingStrikeThreshold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3563080185] = { "(15-25)% increased Culling Strike Threshold" }, } }, + ["UniqueHeartPrefixPhysicalDamagePreventedRecoup"] = { affix = "", "(5-10)% of Physical Damage prevented Recouped as Life", statOrder = { 9410 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "physical" }, tradeHashes = { [1374654984] = { "(5-10)% of Physical Damage prevented Recouped as Life" }, } }, + ["UniqueHeartPrefixMaximumElementalResistance"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 1006 }, level = 1, group = "MaximumElementalResistance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "fire_resistance", "lightning_resistance", "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [1978899297] = { "+1% to all Maximum Elemental Resistances" }, } }, + ["UniqueHeartPrefixIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 7215 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3274422940] = { "(40-60)% increased Ice Crystal Life" }, } }, + ["UniqueHeartPrefixRecoupSpeed"] = { affix = "", "(8-14)% increased speed of Recoup Effects", statOrder = { 9622 }, level = 1, group = "RecoupSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [2363593824] = { "(8-14)% increased speed of Recoup Effects" }, } }, + ["UniqueHeartPrefixFlaskLifeRegenForXSeconds"] = { affix = "", "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", statOrder = { 7491 }, level = 1, group = "FlaskLifeRegenForXSeconds", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHashes = { [3161573445] = { "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds" }, } }, + ["UniqueHeartPrefixCharmRecoverManaOnUse"] = { affix = "", "Recover (5-10)% of maximum Mana when a Charm is used", statOrder = { 9658 }, level = 1, group = "CharmRecoverManaOnUse", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHashes = { [4121454694] = { "Recover (5-10)% of maximum Mana when a Charm is used" }, } }, + ["UniqueHeartPrefixCharmChanceToUseOtherCharm"] = { affix = "", "(10-15)% chance when a Charm is used to use another Charm without consuming Charges", statOrder = { 5619 }, level = 1, group = "CharmChanceToUseOtherCharm", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [1949851472] = { "(10-15)% chance when a Charm is used to use another Charm without consuming Charges" }, } }, + ["UniqueHeartPrefixCharmEffect"] = { affix = "", "Charms applied to you have (15-25)% increased Effect", statOrder = { 5598 }, level = 1, group = "CharmEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHashes = { [3480095574] = { "Charms applied to you have (15-25)% increased Effect" }, } }, + ["UniqueHeartPrefixThornsCriticalStrikeChance"] = { affix = "", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4746 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, + ["UniqueHeartPrefixThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour", statOrder = { 4653 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHashes = { [1793740180] = { "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour" }, } }, + ["UniqueHeartPrefixAttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { affix = "", "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence", statOrder = { 4558 }, level = 1, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "attack", "speed" }, tradeHashes = { [314741699] = { "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence" }, } }, + ["UniqueHeartPrefixElementalExposureEffect"] = { affix = "", "(15-25)% increased Exposure Effect", statOrder = { 6510 }, level = 1, group = "ElementalExposureEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(15-25)% increased Exposure Effect" }, } }, + ["UniqueHeartSuffixMaximumFireResist"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 1008 }, level = 1, group = "MaximumFireResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "fire_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "fire", "resistance" }, tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, } }, + ["UniqueHeartSuffixMaximumColdResist"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 1009 }, level = 1, group = "MaximumColdResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "cold_resistance", "elemental_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "cold", "resistance" }, tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, } }, + ["UniqueHeartSuffixMaximumLightningResist"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 1010 }, level = 1, group = "MaximumLightningResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "lightning_resistance", "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "lightning", "resistance" }, tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, } }, + ["UniqueHeartSuffixSkillEffectDuration"] = { affix = "", "(3-8)% increased Skill Effect Duration", statOrder = { 1643 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3377888098] = { "(3-8)% increased Skill Effect Duration" }, } }, + ["UniqueHeartSuffixLifeRegenerationRate"] = { affix = "", "(6-12)% increased Life Regeneration rate", statOrder = { 1035 }, level = 1, group = "LifeRegenerationRate", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [44972811] = { "(6-12)% increased Life Regeneration rate" }, } }, + ["UniqueHeartSuffixStunDamageIncrease"] = { affix = "", "(6-12)% increased Stun Buildup", statOrder = { 1050 }, level = 1, group = "StunDamageIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [239367161] = { "(6-12)% increased Stun Buildup" }, } }, + ["UniqueHeartSuffixIncreasedStunThreshold"] = { affix = "", "(5-10)% increased Stun Threshold", statOrder = { 2981 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [680068163] = { "(5-10)% increased Stun Threshold" }, } }, + ["UniqueHeartSuffixRageOnHit"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6850 }, level = 1, group = "RageOnHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack" }, tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, } }, + ["UniqueHeartSuffixGainRageWhenHit"] = { affix = "", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6852 }, level = 1, group = "GainRageWhenHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3292710273] = { "Gain (1-2) Rage when Hit by an Enemy" }, } }, + ["UniqueHeartSuffixLifeCost"] = { affix = "", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4732 }, level = 1, group = "LifeCost", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2480498143] = { "(2-3)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["UniqueHeartSuffixAilmentChance"] = { affix = "", "(4-8)% increased chance to inflict Ailments", statOrder = { 4245 }, level = 1, group = "AilmentChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [1772247089] = { "(4-8)% increased chance to inflict Ailments" }, } }, + ["UniqueHeartSuffixIncreasedAilmentThreshold"] = { affix = "", "(6-12)% increased Elemental Ailment Threshold", statOrder = { 4256 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [3544800472] = { "(6-12)% increased Elemental Ailment Threshold" }, } }, + ["UniqueHeartSuffixIncreasedAttackSpeed"] = { affix = "", "(2-3)% increased Attack Speed", statOrder = { 984 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack", "speed" }, tradeHashes = { [681332047] = { "(2-3)% increased Attack Speed" }, } }, + ["UniqueHeartSuffixGlobalCooldownRecovery"] = { affix = "", "(2-3)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1004011302] = { "(2-3)% increased Cooldown Recovery Rate" }, } }, + ["UniqueHeartSuffixDebuffTimePassed"] = { affix = "", "Debuffs on you expire (4-8)% faster", statOrder = { 6085 }, level = 1, group = "DebuffTimePassed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1238227257] = { "Debuffs on you expire (4-8)% faster" }, } }, + ["UniqueHeartSuffixFasterAilmentDamageForJewel"] = { affix = "", "Damaging Ailments deal damage (2-4)% faster", statOrder = { 6054 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "ailment" }, tradeHashes = { [538241406] = { "Damaging Ailments deal damage (2-4)% faster" }, } }, + ["UniqueHeartSuffixMovementVelocity"] = { affix = "", "(1-2)% increased Movement Speed", statOrder = { 835 }, level = 1, group = "MovementVelocity", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "speed" }, tradeHashes = { [2250533757] = { "(1-2)% increased Movement Speed" }, } }, + ["UniqueHeartSuffixSlowPotency"] = { affix = "", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 1, group = "SlowPotency", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [924253255] = { "(5-10)% reduced Slowing Potency of Debuffs on You" }, } }, + ["UniqueHeartSuffixIncreasedFlaskChargesGained"] = { affix = "", "(4-8)% increased Flask Charges gained", statOrder = { 6617 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [1836676211] = { "(4-8)% increased Flask Charges gained" }, } }, + ["UniqueHeartSuffixFlaskDuration"] = { affix = "", "(4-8)% increased Flask Effect Duration", statOrder = { 901 }, level = 1, group = "FlaskDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHashes = { [3741323227] = { "(4-8)% increased Flask Effect Duration" }, } }, + ["UniqueHeartSuffixBaseChanceToPoison"] = { affix = "", "(5-10)% chance to Poison on Hit", statOrder = { 2897 }, level = 1, group = "BaseChanceToPoison", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHashes = { [795138349] = { "(5-10)% chance to Poison on Hit" }, } }, + ["UniqueHeartSuffixBaseChanceToBleed"] = { affix = "", "(5-10)% chance to inflict Bleeding on Hit", statOrder = { 4660 }, level = 1, group = "BaseChanceToBleed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_suffix", "physical", "ailment" }, tradeHashes = { [2174054121] = { "(5-10)% chance to inflict Bleeding on Hit" }, } }, + ["UniqueHeartSuffixIncreasedCastSpeedForJewel"] = { affix = "", "(2-3)% increased Cast Speed", statOrder = { 986 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "unveiled_mod", "heart_unique_jewel_suffix", "caster", "speed" }, tradeHashes = { [2891184298] = { "(2-3)% increased Cast Speed" }, } }, + ["UniqueHeartSuffixCritChanceForJewel"] = { affix = "", "(4-8)% increased Critical Hit Chance", statOrder = { 975 }, level = 1, group = "CritChanceForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "critical" }, tradeHashes = { [587431675] = { "(4-8)% increased Critical Hit Chance" }, } }, + ["UniqueHeartSuffixCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Damage Bonus", statOrder = { 979 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "critical" }, tradeHashes = { [3556824919] = { "(6-12)% increased Critical Damage Bonus" }, } }, + ["UniqueHeartSuffixSpellCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Spell Damage Bonus", statOrder = { 981 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "caster_damage", "unveiled_mod", "heart_unique_jewel_suffix", "damage", "caster", "critical" }, tradeHashes = { [274716455] = { "(6-12)% increased Critical Spell Damage Bonus" }, } }, + ["UniqueHeartSuffixSpellCriticalStrikeChance"] = { affix = "", "(4-8)% increased Critical Hit Chance for Spells", statOrder = { 977 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_critical", "unveiled_mod", "heart_unique_jewel_suffix", "caster", "critical" }, tradeHashes = { [737908626] = { "(4-8)% increased Critical Hit Chance for Spells" }, } }, + ["UniqueHeartSuffixDamageRemovedFromManaBeforeLife"] = { affix = "", "(2-3)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life", "mana" }, tradeHashes = { [458438597] = { "(2-3)% of Damage is taken from Mana before Life" }, } }, + ["UniqueHeartSuffixMaximumLifeOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1509 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [2023107756] = { "Recover (1-2)% of maximum Life on Kill" }, } }, + ["UniqueHeartSuffixManaGainedOnKillPercentage"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1515 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHashes = { [1604736568] = { "Recover (1-2)% of maximum Mana on Kill" }, } }, + ["UniqueHeartSuffixLifeRecoupForJewel"] = { affix = "", "(2-3)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHashes = { [1444556985] = { "(2-3)% of Damage taken Recouped as Life" }, } }, + ["UniqueHeartSuffixManaRegeneration"] = { affix = "", "(4-8)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "ManaRegeneration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHashes = { [789117908] = { "(4-8)% increased Mana Regeneration Rate" }, } }, + ["UniqueHeartSuffixMinionPhysicalDamageReduction"] = { affix = "", "Minions have (3-12)% additional Physical Damage Reduction", statOrder = { 2020 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "physical", "minion" }, tradeHashes = { [3119612865] = { "Minions have (3-12)% additional Physical Damage Reduction" }, } }, + ["UniqueHeartSuffixMinionAttackSpeedAndCastSpeed"] = { affix = "", "Minions have (2-3)% increased Attack and Cast Speed", statOrder = { 8968 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_speed", "minion_speed", "unveiled_mod", "heart_unique_jewel_suffix", "attack", "caster", "speed", "minion" }, tradeHashes = { [3091578504] = { "Minions have (2-3)% increased Attack and Cast Speed" }, } }, + ["UniqueHeartSuffixMinionCriticalStrikeChanceIncrease"] = { affix = "", "Minions have (6-12)% increased Critical Hit Chance", statOrder = { 8995 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "minion", "critical" }, tradeHashes = { [491450213] = { "Minions have (6-12)% increased Critical Hit Chance" }, } }, + ["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] = { "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" }, } }, + ["AbyssModJewelPrefixAttackDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Attack Damage", statOrder = { 881, 1155 }, level = 1, group = "HybridAbyssModJewelAttackDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, + ["AbyssModJewelPrefixAttackDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Attack Damage", statOrder = { 883, 1155 }, level = 1, group = "HybridAbyssModJewelAttackDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage", "attack" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [2843214518] = { "(4-8)% increased Attack Damage" }, } }, + ["AbyssModJewelPrefixAttackDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Attack Damage", statOrder = { 885, 1155 }, level = 1, group = "HybridAbyssModJewelAttackDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage", "attack" }, tradeHashes = { [2843214518] = { "(4-8)% increased Attack Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, + ["AbyssModJewelPrefixMinionDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "Minions deal (4-8)% increased Damage", statOrder = { 881, 1718 }, level = 1, group = "HybridAbyssModJewelMinionDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "minion_damage", "unveiled_mod", "armour", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-8)% increased Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, + ["AbyssModJewelPrefixMinionDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "Minions deal (4-8)% increased Damage", statOrder = { 883, 1718 }, level = 1, group = "HybridAbyssModJewelMinionDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "minion_damage", "unveiled_mod", "evasion", "damage", "minion" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1589917703] = { "Minions deal (4-8)% increased Damage" }, } }, + ["AbyssModJewelPrefixMinionDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "Minions deal (4-8)% increased Damage", statOrder = { 885, 1718 }, level = 1, group = "HybridAbyssModJewelMinionDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "minion_damage", "unveiled_mod", "energy_shield", "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (4-8)% increased Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, + ["AbyssModJewelPrefixThornsDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Thorns damage", statOrder = { 881, 10213 }, level = 1, group = "HybridAbyssModJewelThornsDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, + ["AbyssModJewelPrefixThornsDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Thorns damage", statOrder = { 883, 10213 }, level = 1, group = "HybridAbyssModJewelThornsDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [1315743832] = { "(4-8)% increased Thorns damage" }, } }, + ["AbyssModJewelPrefixThornsDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Thorns damage", statOrder = { 885, 10213 }, level = 1, group = "HybridAbyssModJewelThornsDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage" }, tradeHashes = { [1315743832] = { "(4-8)% increased Thorns damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, + ["AbyssModJewelPrefixTotemDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Totem Damage", statOrder = { 881, 1151 }, level = 1, group = "HybridAbyssModJewelTotemDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "armour", "damage" }, tradeHashes = { [3851254963] = { "(4-8)% increased Totem Damage" }, [2866361420] = { "(5-10)% increased Armour" }, } }, + ["AbyssModJewelPrefixTotemDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Totem Damage", statOrder = { 883, 1151 }, level = 1, group = "HybridAbyssModJewelTotemDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "evasion", "damage" }, tradeHashes = { [2106365538] = { "(5-10)% increased Evasion Rating" }, [3851254963] = { "(4-8)% increased Totem Damage" }, } }, + ["AbyssModJewelPrefixTotemDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Totem Damage", statOrder = { 885, 1151 }, level = 1, group = "HybridAbyssModJewelTotemDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "unveiled_mod", "energy_shield", "damage" }, tradeHashes = { [3851254963] = { "(4-8)% increased Totem Damage" }, [2482852589] = { "(5-10)% increased maximum Energy Shield" }, } }, + ["AbyssModJewelPrefixFireDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Fire Damage", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 872, 2722 }, level = 1, group = "HybridAbyssModJewelFireDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, tradeHashes = { [3962278098] = { "(4-8)% increased Fire Damage" }, [2653955271] = { "Damage Penetrates (4-7)% Fire Resistance" }, } }, + ["AbyssModJewelPrefixLightningDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Lightning Damage", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 874, 2724 }, level = 1, group = "HybridAbyssModJewelLightningDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning" }, tradeHashes = { [818778753] = { "Damage Penetrates (4-7)% Lightning Resistance" }, [2231156303] = { "(4-8)% increased Lightning Damage" }, } }, + ["AbyssModJewelPrefixColdDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Cold Damage", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 873, 2723 }, level = 1, group = "HybridAbyssModJewelColdDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, tradeHashes = { [3291658075] = { "(4-8)% increased Cold Damage" }, [3417711605] = { "Damage Penetrates (4-7)% Cold Resistance" }, } }, + ["AbyssModJewelPrefixBleedChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to inflict Bleeding", "(5-10)% increased Magnitude of Bleeding you inflict", statOrder = { 4794, 4797 }, level = 1, group = "HybridAbyssModJewelBleedChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "bleed", "physical_damage", "unveiled_mod", "damage", "physical", "ailment" }, tradeHashes = { [3166958180] = { "(5-10)% increased Magnitude of Bleeding you inflict" }, [242637938] = { "15% increased chance to inflict Bleeding" }, } }, + ["AbyssModJewelPrefixPoisonChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to Poison", "(5-10)% increased Magnitude of Poison you inflict", statOrder = { 9449, 9457 }, level = 1, group = "HybridAbyssModJewelPoisonChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "poison", "unveiled_mod", "damage", "ailment" }, tradeHashes = { [3481083201] = { "15% increased chance to Poison" }, [2487305362] = { "(5-10)% increased Magnitude of Poison you inflict" }, } }, + ["AbyssModJewelPrefixWarcryBuffEffectAndDamage"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Warcry Buff Effect", "(5-10)% increased Damage with Warcries", statOrder = { 10464, 10467 }, level = 1, group = "HybridAbyssModJewelWarcryBuffEffectAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "damage" }, tradeHashes = { [1594812856] = { "(5-10)% increased Damage with Warcries" }, [3037553757] = { "(4-8)% increased Warcry Buff Effect" }, } }, + ["AbyssModJewelPrefixCompanionLifeAndDamage"] = { type = "Prefix", affix = "Lightless", "Companions deal (5-10)% increased Damage", "Companions have (5-10)% increased maximum Life", statOrder = { 5708, 5712 }, level = 1, group = "HybridAbyssModJewelCompanionLifeAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "minion_damage", "resource", "unveiled_mod", "life", "damage", "minion" }, tradeHashes = { [1805182458] = { "Companions have (5-10)% increased maximum Life" }, [234296660] = { "Companions deal (5-10)% increased Damage" }, } }, + ["AbyssModJewelPrefixGlobalPhysicalDamageArmourBreak"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Global Physical Damage", "Break (4-8)% increased Armour", statOrder = { 1184, 4397 }, level = 1, group = "HybridAbyssModJewelGlobalPhysicalDamageArmourBreak", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "defences", "physical_damage", "unveiled_mod", "armour", "damage", "physical" }, tradeHashes = { [1776411443] = { "Break (4-8)% increased Armour" }, [1310194496] = { "(4-8)% increased Global Physical Damage" }, } }, + ["AbyssModJewelPrefixElementalDamageAilmentMagnitude"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Elemental Damage", "(4-8)% increased Magnitude of Ailments you inflict", statOrder = { 1724, 4249 }, level = 1, group = "HybridAbyssModJewelElementalDamageAilmentMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold", "lightning", "ailment" }, tradeHashes = { [1303248024] = { "(4-8)% increased Magnitude of Ailments you inflict" }, [3141070085] = { "(4-8)% increased Elemental Damage" }, } }, + ["AbyssModJewelPrefixChaosDamageWitherEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Chaos Damage", "(3-6)% increased Withered Magnitude", statOrder = { 875, 10514 }, level = 1, group = "HybridAbyssModJewelChaosDamageWitherEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, tradeHashes = { [736967255] = { "(4-8)% increased Chaos Damage" }, [3973629633] = { "(3-6)% increased Withered Magnitude" }, } }, + ["AbyssModJewelPrefixMinionAreaAndLife"] = { type = "Prefix", affix = "Lightless", "Minions have (4-8)% increased maximum Life", statOrder = { 1025 }, level = 1, group = "HybridAbyssModJewelMinionAreaAndLife", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "unveiled_mod", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (4-8)% increased maximum Life" }, } }, + ["AbyssModJewelPrefixAuraSkillEffectPresenceAreaOfEffect"] = { type = "Prefix", affix = "Lightless", "(8-15)% increased Presence Area of Effect", "Aura Skills have (2-4)% increased Magnitudes", statOrder = { 1068, 2572 }, level = 1, group = "HybridAbyssModJewelAuraSkillEffectPresenceAreaOfEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "aura" }, tradeHashes = { [101878827] = { "(8-15)% increased Presence Area of Effect" }, [315791320] = { "Aura Skills have (2-4)% increased Magnitudes" }, } }, + ["AbyssModJewelPrefixElementalExposureEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Exposure Effect", statOrder = { 6510 }, level = 1, group = "HybridAbyssModJewelElementalExposureEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(4-8)% increased Exposure Effect" }, } }, + ["AbyssModJewelPrefixAbyssalWastingEffect"] = { type = "Prefix", affix = "Lightless", "(10-20)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4111 }, level = 1, group = "HybridAbyssModJewelAbyssalWastingEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [4043376133] = { "(10-20)% increased Magnitude of Abyssal Wasting you inflict" }, } }, + ["AbyssModJewelSuffixIncreasedStrength"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Strength", statOrder = { 998 }, level = 1, group = "HybridAbyssModJewelIncreasedStrength", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [734614379] = { "(1-2)% increased Strength" }, } }, + ["AbyssModJewelSuffixIncreasedDexterity"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Dexterity", statOrder = { 999 }, level = 1, group = "HybridAbyssModJewelIncreasedDexterity", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [4139681126] = { "(1-2)% increased Dexterity" }, } }, + ["AbyssModJewelSuffixIncreasedIntelligence"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Intelligence", statOrder = { 1000 }, level = 1, group = "HybridAbyssModJewelIncreasedIntelligence", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHashes = { [656461285] = { "(1-2)% increased Intelligence" }, } }, + ["AbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(13-17)% to Lightning and Chaos Resistances", statOrder = { 7512 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "elemental_resistance", "lightning_resistance", "unveiled_mod", "ulaman_mod", "elemental", "lightning", "chaos", "resistance" }, tradeHashes = { [3465022881] = { "+(13-17)% to Lightning and Chaos Resistances" }, } }, + ["AbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "+(9-15) to Strength and Dexterity", statOrder = { 994 }, level = 65, group = "StrengthAndDexterity", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "attribute" }, tradeHashes = { [538848803] = { "+(9-15) to Strength and Dexterity" }, } }, + ["AbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(13-17)% to Fire and Chaos Resistances", statOrder = { 6530 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "elemental_resistance", "fire_resistance", "unveiled_mod", "amanamu_mod", "elemental", "fire", "chaos", "resistance" }, tradeHashes = { [378817135] = { "+(13-17)% to Fire and Chaos Resistances" }, } }, + ["AbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "+(9-15) to Strength and Intelligence", statOrder = { 995 }, level = 65, group = "StrengthAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attribute" }, tradeHashes = { [1535626285] = { "+(9-15) to Strength and Intelligence" }, } }, + ["AbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(13-17)% to Cold and Chaos Resistances", statOrder = { 5660 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "chaos_resistance", "cold_resistance", "elemental_resistance", "unveiled_mod", "kurgal_mod", "elemental", "cold", "chaos", "resistance" }, tradeHashes = { [3393628375] = { "+(13-17)% to Cold and Chaos Resistances" }, } }, + ["AbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "+(9-15) to Dexterity and Intelligence", statOrder = { 996 }, level = 65, group = "DexterityAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attribute" }, tradeHashes = { [2300185227] = { "+(9-15) to Dexterity and Intelligence" }, } }, + ["AbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 65, group = "ManaCostEfficiency", weightKey = { "helmet", "gloves", "focus", "quiver", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [4101445926] = { "(6-10)% increased Mana Cost Efficiency" }, } }, + ["AbyssModHelmUlamanSuffixMarkedEnemyTakeIncreasedDamage"] = { type = "Suffix", affix = "of Ulaman", "Enemies you Mark take (4-8)% increased Damage", statOrder = { 8793 }, level = 65, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2083058281] = { "Enemies you Mark take (4-8)% increased Damage" }, } }, + ["AbyssModHelmUlamanSuffixCriticalHitDamage"] = { type = "Suffix", affix = "of Ulaman", "(13-20)% increased Critical Damage Bonus", statOrder = { 979 }, level = 65, group = "CriticalStrikeMultiplier", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "critical" }, tradeHashes = { [3556824919] = { "(13-20)% increased Critical Damage Bonus" }, } }, + ["AbyssModHelmUlamanSuffixLifeCostEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Life Cost Efficiency", statOrder = { 4696 }, level = 65, group = "LifeCostEfficiency", weightKey = { "helmet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [310945763] = { "(8-12)% increased Life Cost Efficiency" }, } }, + ["AbyssModHelmAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(4-8)% increased Spirit Reservation Efficiency", statOrder = { 4743 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(4-8)% increased Spirit Reservation Efficiency" }, } }, + ["AbyssModHelmAmanamuSuffixGloryGeneration"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Glory generation", statOrder = { 6891 }, level = 65, group = "GloryGeneration", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3143918757] = { "(10-20)% increased Glory generation" }, } }, + ["AbyssModHelmAmanamuSuffixPresenceAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Presence Area of Effect", statOrder = { 1068 }, level = 65, group = "PresenceRadius", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "aura" }, tradeHashes = { [101878827] = { "(25-35)% increased Presence Area of Effect" }, } }, + ["AbyssModHelmKurgalSuffixArcaneSurgeEffect"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% increased effect of Arcane Surge on you", statOrder = { 2994 }, level = 65, group = "ArcaneSurgeEffect", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "helmet", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana", "caster" }, tradeHashes = { [2103650854] = { "(20-30)% increased effect of Arcane Surge on you" }, } }, + ["AbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Magnitude of Ailments you inflict", statOrder = { 4249 }, level = 65, group = "AilmentEffect", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "ailment" }, tradeHashes = { [1303248024] = { "(10-20)% increased Magnitude of Ailments you inflict" }, } }, + ["AbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to Poison", statOrder = { 9449 }, level = 65, group = "PoisonChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3481083201] = { "(20-30)% increased chance to Poison" }, } }, + ["AbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to inflict Bleeding", statOrder = { 4794 }, level = 65, group = "BleedChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [242637938] = { "(20-30)% increased chance to inflict Bleeding" }, } }, + ["AbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5540 }, level = 65, group = "IncisionChance", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [300723956] = { "(15-25)% chance for Attack Hits to apply Incision" }, } }, + ["AbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently", statOrder = { 9873 }, level = 65, group = "SkillSpeedIfConsumedFrenzyChargeRecently", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3313255158] = { "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently" }, } }, + ["AbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased Area of Effect of Curses", statOrder = { 1948 }, level = 65, group = "CurseAreaOfEffect", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [153777645] = { "(12-20)% increased Area of Effect of Curses" }, } }, + ["AbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% chance to Daze on Hit", statOrder = { 4658 }, level = 65, group = "DazeBuildup", weightKey = { "gloves", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3146310524] = { "(10-20)% chance to Daze on Hit" }, } }, + ["AbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "(8-15)% of Leech is Instant", statOrder = { 7401 }, level = 65, group = "PercentOfLeechIsInstant", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3561837752] = { "(8-15)% of Leech is Instant" }, } }, + ["AbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Immobilisation buildup", statOrder = { 7170 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [330530785] = { "(10-20)% increased Immobilisation buildup" }, } }, + ["AbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit", statOrder = { 6724 }, level = 65, group = "GainArcaneSurgeOnCrit", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [446027070] = { "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit" }, } }, + ["AbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cast Speed when on Full Life", statOrder = { 1740 }, level = 65, group = "CastSpeedOnFullLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "caster_speed", "unveiled_mod", "kurgal_mod", "caster", "speed" }, tradeHashes = { [656291658] = { "(8-15)% increased Cast Speed when on Full Life" }, } }, + ["AbyssModBootsAndBeltUlamanSuffixReducedPoisonDurationSelf"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% reduced Poison Duration on you", statOrder = { 1066 }, level = 65, group = "ReducedPoisonDuration", weightKey = { "boots", "belt", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "poison", "unveiled_mod", "ulaman_mod", "chaos", "ailment" }, tradeHashes = { [3301100256] = { "(20-30)% reduced Poison Duration on you" }, } }, + ["AbyssModBootsAndBeltAmanamuSuffixReducedIgniteDuration"] = { type = "Suffix", affix = "of Amanamu", "(20-30)% reduced Ignite Duration on you", statOrder = { 1062 }, level = 65, group = "ReducedIgniteDurationOnSelf", weightKey = { "boots", "belt", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHashes = { [986397080] = { "(20-30)% reduced Ignite Duration on you" }, } }, + ["AbyssModBootsAndBeltKurgalSuffixReducedBleedDurationSelf"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% reduced Duration of Bleeding on You", statOrder = { 9763 }, level = 65, group = "ReducedBleedDuration", weightKey = { "boots", "belt", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "kurgal_mod", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(20-30)% reduced Duration of Bleeding on You" }, } }, + ["AbyssModBootsUlamanSuffixCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Ulaman", "Corrupted Blood cannot be inflicted on you", statOrder = { 5260 }, level = 65, group = "CorruptedBloodImmunity", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHashes = { [1658498488] = { "Corrupted Blood cannot be inflicted on you" }, } }, + ["AbyssModBootsUlamanSuffixReducedMovementPenaltyWhileSkilling"] = { type = "Suffix", affix = "of Ulaman", "(6-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 9119 }, level = 65, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [2590797182] = { "(6-10)% reduced Movement Speed Penalty from using Skills while moving" }, } }, + ["AbyssModBootsAmanamuSuffixReducedPotencyOfSlows"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4735 }, level = 65, group = "SlowPotency", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [924253255] = { "(12-20)% reduced Slowing Potency of Debuffs on You" }, } }, + ["AbyssModBootsAmanamuSuffixDodgeRollDistance"] = { type = "Suffix", affix = "of Amanamu", "+(0.1-0.2) metres to Dodge Roll distance", statOrder = { 6186 }, level = 65, group = "DodgeRollDistance", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [258119672] = { "+(0.1-0.2) metres to Dodge Roll distance" }, } }, + ["AbyssModBootsKurgalSuffixManaCostEfficiencyDodgeRolledRecently"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently", statOrder = { 7942 }, level = 65, group = "ManaCostEfficiencyIfDodgeRolledRecently", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3396435291] = { "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently" }, } }, + ["AbyssModBootsKurgalSuffixManaRegenerationStationary"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Mana Regeneration Rate while stationary", statOrder = { 3984 }, level = 65, group = "ManaRegenerationWhileStationary", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [3308030688] = { "(40-50)% increased Mana Regeneration Rate while stationary" }, } }, + ["AbyssModBeltUlamanPrefixLifeFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Ulaman's", "Life Flasks gain (0.1-0.2) charges per Second", statOrder = { 6869 }, level = 65, group = "LifeFlaskChargeGeneration", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.1-0.2) charges per Second" }, } }, + ["AbyssModBeltUlamanPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Ulaman's", "(10-18)% chance for Flasks you use to not consume Charges", statOrder = { 3879 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [311641062] = { "(10-18)% chance for Flasks you use to not consume Charges" }, } }, + ["AbyssModBeltUlamanPrefixLifeRegenRateDuringLifeFlaskEffect"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Life Regeneration rate during Effect of any Life Flask", statOrder = { 7481 }, level = 65, group = "LifeRegenerationRateDuringFlaskEffect", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "life_flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1261076060] = { "(20-30)% increased Life Regeneration rate during Effect of any Life Flask" }, } }, + ["AbyssModBeltUlamanSuffixReducedSlowPotencySelfIfCharmedRecently"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", statOrder = { 9895 }, level = 65, group = "SlowEffectIfCharmedRecently", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3839676903] = { "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently" }, } }, + ["AbyssModBeltAmanamuPrefixCharmsGainChargesPerSecond"] = { type = "Prefix", affix = "Amanamu's", "Charms gain (0.1-0.2) charges per Second", statOrder = { 6866 }, level = 65, group = "CharmChargeGeneration", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.1-0.2) charges per Second" }, } }, + ["AbyssModBeltAmanamuPrefixGainFireThornsPer100MaximumLife"] = { type = "Prefix", affix = "Amanamu's", "2 to 4 Fire Thorns damage per 100 maximum Life", statOrder = { 10215 }, level = 65, group = "ThornsFirePerOneHundredLife", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire" }, tradeHashes = { [287294012] = { "2 to 4 Fire Thorns damage per 100 maximum Life" }, } }, + ["AbyssModBeltAmanamuPrefixChanceToNotConsumeCharmCharges"] = { type = "Prefix", affix = "Amanamu's", "(10-18)% chance for Charms you use to not consume Charges", statOrder = { 5620 }, level = 65, group = "CharmChanceToNotConsumeCharges", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [501873429] = { "(10-18)% chance for Charms you use to not consume Charges" }, } }, + ["AbyssModBeltAmanamuSuffixThornsBaseCriticalStrikeChance"] = { type = "Suffix", affix = "of Amanamu", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4746 }, level = 65, group = "ThornsCriticalStrikeChance", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "critical" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, + ["AbyssModBeltKurgalPrefixManaFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Kurgal's", "Mana Flasks gain (0.1-0.2) charges per Second", statOrder = { 6870 }, level = 65, group = "ManaFlaskChargeGeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.2) charges per Second" }, } }, + ["AbyssModBeltKurgalPrefixGainArmourPercentOfMana"] = { type = "Prefix", affix = "Kurgal's", "Gain (6-12)% of Maximum Mana as Armour", statOrder = { 7941 }, level = 65, group = "GainPercentManaAsArmour", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "resource", "unveiled_mod", "kurgal_mod", "mana", "armour" }, tradeHashes = { [514290151] = { "Gain (6-12)% of Maximum Mana as Armour" }, } }, + ["AbyssModBeltKurgalPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Kurgal's", "(10-15)% chance for Flasks you use to not consume Charges", statOrder = { 3879 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "kurgal_mod" }, tradeHashes = { [311641062] = { "(10-15)% chance for Flasks you use to not consume Charges" }, } }, + ["AbyssModBeltKurgalSuffixManaRegenerationRate"] = { type = "Suffix", affix = "of Kurgal", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 65, group = "ManaRegeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [789117908] = { "(30-40)% increased Mana Regeneration Rate" }, } }, + ["AbyssModBodyShieldUlamanSuffixHitsAgainstYouReducedCriticalDamage"] = { type = "Suffix", affix = "of Ulaman", "Hits have (17-25)% reduced Critical Hit Chance against you", statOrder = { 2855 }, level = 65, group = "ChanceToTakeCriticalStrikeUpdated", weightKey = { "body_armour", "shield", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "critical" }, tradeHashes = { [4270096386] = { "Hits have (17-25)% reduced Critical Hit Chance against you" }, } }, + ["AbyssModBodyShieldAmanamuSuffixLifeRecoup"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% of Damage taken Recouped as Life", statOrder = { 1036 }, level = 65, group = "DamageTakenGainedAsLife", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life" }, tradeHashes = { [1444556985] = { "(10-20)% of Damage taken Recouped as Life" }, } }, + ["AbyssModBodyShieldAmanamuSuffixReducedCursedEffectSelf"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% reduced effect of Curses on you", statOrder = { 1909 }, level = 65, group = "ReducedCurseEffect", weightKey = { "body_armour", "shield", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [3407849389] = { "(25-35)% reduced effect of Curses on you" }, } }, + ["AbyssModBodyShieldKurgalSuffixManaRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 1043 }, level = 65, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "shield", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [472520716] = { "(10-20)% of Damage taken Recouped as Mana" }, } }, + ["AbyssModBodyShieldKurgalSuffixElementalEnergyShieldRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Elemental Damage taken Recouped as Energy Shield", statOrder = { 9617 }, level = 65, group = "ElementalDamageTakenGoesToEnergyShield", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2896115339] = { "(10-20)% of Elemental Damage taken Recouped as Energy Shield" }, } }, + ["AbyssModBodyShieldKurgalSuffixArmourAppliesToChaosDamage"] = { type = "Suffix", affix = "of Kurgal", "+(23-31)% of Armour also applies to Chaos Damage", statOrder = { 4634 }, level = 65, group = "ArmourPercentAppliesToChaosDamage", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3972229254] = { "+(23-31)% of Armour also applies to Chaos Damage" }, } }, + ["AbyssModBodyArmourUlamanSuffixDeflectDamagePrevented"] = { type = "Suffix", affix = "of Ulaman", "Prevent +(3-5)% of Damage from Deflected Hits", statOrder = { 4667 }, level = 65, group = "DeflectDamageTaken", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3552135623] = { "Prevent +(3-5)% of Damage from Deflected Hits" }, } }, + ["AbyssModBodyArmourUlamanSuffixCompanionReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(12-18)% increased Reservation Efficiency of Companion Skills", statOrder = { 9723 }, level = 65, group = "CompanionReservationEfficiency", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3413635271] = { "(12-18)% increased Reservation Efficiency of Companion Skills" }, } }, + ["AbyssModBodyArmourAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(6-12)% increased Spirit Reservation Efficiency", statOrder = { 4743 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "body_armour", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(6-12)% increased Spirit Reservation Efficiency" }, } }, + ["AbyssModBodyArmourKurgalSuffixDamageTakenFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "body_armour", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(10-20)% of Damage is taken from Mana before Life" }, } }, + ["AbyssModShieldUlamanSuffixMaximumBlockChance"] = { type = "Suffix", affix = "of Ulaman", "+(1-2)% to maximum Block chance", statOrder = { 1732 }, level = 65, group = "MaximumBlockChance", weightKey = { "shield", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [480796730] = { "+(1-2)% to maximum Block chance" }, } }, + ["AbyssModShieldUlamanSuffixParryDebuffMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased Parried Debuff Magnitude", statOrder = { 9338 }, level = 65, group = "ParryDebuffMagnitude", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [818877178] = { "(20-30)% increased Parried Debuff Magnitude" }, } }, + ["AbyssModShieldUlamanSuffixParryDebuffDuration"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% increased Parried Debuff Duration", statOrder = { 9351 }, level = 65, group = "ParryDuration", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3401186585] = { "(25-35)% increased Parried Debuff Duration" }, } }, + ["AbyssModShieldUlamanSuffixLightningTakenAsPhysAndGlancingWhileActiveBlocking"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% of Physical Damage taken as Lightning while your Shield is raised", "You take (8-15)% of damage from Blocked Hits with a raised Shield", statOrder = { 2203, 4931 }, level = 65, group = "PhysicalTakenAsLightningAndGlancingWhilActiveBlocking", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod", "physical", "elemental", "lightning" }, tradeHashes = { [321970274] = { "(30-40)% of Physical Damage taken as Lightning while your Shield is raised" }, [3694078435] = { "You take (8-15)% of damage from Blocked Hits with a raised Shield" }, } }, + ["AbyssModShieldAmanamuSuffixShieldSkillsFullyBreakArmourOnHeavyStun"] = { type = "Suffix", affix = "of Amanamu", "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", statOrder = { 6676 }, level = 65, group = "StunningHitsWithShieldSkillsFullyBreakArmour", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1689748350] = { "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour" }, } }, + ["AbyssModShieldAmanamuSuffixHeavyStunDecaySelf"] = { type = "Suffix", affix = "of Amanamu", "Your Heavy Stun buildup empties (30-40)% faster", statOrder = { 6964 }, level = 65, group = "HeavyStunDecayRate", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [886088880] = { "Your Heavy Stun buildup empties (30-40)% faster" }, } }, + ["AbyssModShieldAmanamuSuffixAllMaximumResistances"] = { type = "Suffix", affix = "of Amanamu", "+1% to all maximum Resistances", statOrder = { 1492 }, level = 65, group = "MaximumResistances", weightKey = { "shield", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "resistance" }, tradeHashes = { [569299859] = { "+1% to all maximum Resistances" }, } }, + ["AbyssModShieldKurgalSuffixFlatManaGainedOnBlock"] = { type = "Suffix", affix = "of Kurgal", "(6-12) Mana gained when you Block", statOrder = { 1518 }, level = 65, group = "GainManaOnBlock", weightKey = { "shield", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2122183138] = { "(6-12) Mana gained when you Block" }, } }, + ["AbyssModShieldKurgalSuffixEnergyShieldRechargeRateBlockedRecently"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently", statOrder = { 6422 }, level = 65, group = "EnergyShieldRechargeBlockedRecently", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "block", "defences", "unveiled_mod", "kurgal_mod", "energy_shield" }, tradeHashes = { [1079292660] = { "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently" }, } }, + ["AbyssModFocusUlamanPrefixMaximumSpellTotems"] = { type = "Prefix", affix = "Ulaman's", "Spell Skills have +1 to maximum number of Summoned Totems", statOrder = { 9991 }, level = 65, group = "AdditionalSpellTotem", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2474424958] = { "Spell Skills have +1 to maximum number of Summoned Totems" }, } }, + ["AbyssModFocusUlamanPrefixSpellDamageWhileWieldingMeleeWeapon"] = { type = "Prefix", affix = "Ulaman's", "(61-79)% increased Spell Damage while wielding a Melee Weapon", statOrder = { 9969 }, level = 65, group = "SpellDamageIfWieldingMeleeWeapon", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [4136346606] = { "(61-79)% increased Spell Damage while wielding a Melee Weapon" }, } }, + ["AbyssModFocusUlamanSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9997 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(10-20)% of Spell Mana Cost Converted to Life Cost" }, } }, + ["AbyssModFocusUlamanSuffixChanceForTwoAdditionalSpellProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(10-16)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9993 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(10-16)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["AbyssModFocusAmanamuPrefixCurseMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(8-16)% increased Curse Magnitudes", statOrder = { 2374 }, level = 65, group = "CurseEffectiveness", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [2353576063] = { "(8-16)% increased Curse Magnitudes" }, } }, + ["AbyssModFocusAmanamuPrefixOfferingBuffEffect"] = { type = "Prefix", affix = "Amanamu's", "Offering Skills have (12-20)% increased Buff effect", statOrder = { 3717 }, level = 65, group = "OfferingEffect", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3191479793] = { "Offering Skills have (12-20)% increased Buff effect" }, } }, + ["AbyssModFocusAmanamuSuffixGlobalMinionSkillLevels"] = { type = "Suffix", affix = "of Amanamu", "+(1-2) to Level of all Minion Skills", statOrder = { 971 }, level = 65, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "minion", "gem" }, tradeHashes = { [2162097452] = { "+(1-2) to Level of all Minion Skills" }, } }, + ["AbyssModFocusAmanamuSuffixFasterCurseActivation"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% faster Curse Activation", statOrder = { 5910 }, level = 65, group = "CurseDelay", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHashes = { [1104825894] = { "(10-20)% faster Curse Activation" }, } }, + ["AbyssModFocusKurgalPrefixInvocationSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (61-79)% increased Damage", statOrder = { 7365 }, level = 65, group = "InvocationSpellDamage", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (61-79)% increased Damage" }, } }, + ["AbyssModFocusKurgalPrefixSpellAreaOfEffect"] = { type = "Prefix", affix = "Kurgal's", "Spell Skills have (10-20)% increased Area of Effect", statOrder = { 9950 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (10-20)% increased Area of Effect" }, } }, + ["AbyssModFocusKurgalSuffixChanceForAdditionalInfusion"] = { type = "Suffix", affix = "of Kurgal", "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type", statOrder = { 4183, 4183.1 }, level = 65, group = "ChanceToGainAdditionalInfusion", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3927679277] = { "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type" }, } }, + ["AbyssModQuiverUlamanPrefixIncreasesToProjectileSpeedApplyToDamage"] = { type = "Prefix", affix = "Ulaman's", "Increases and Reductions to Projectile Speed also apply to Damage with Bows", statOrder = { 4428 }, level = 65, group = "IncreasesToProjectileDamageApplyToBowDamage", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [414821772] = { "Increases and Reductions to Projectile Speed also apply to Damage with Bows" }, } }, + ["AbyssModQuiverUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving", statOrder = { 9500 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving" }, } }, + ["AbyssModQuiverUlamanSuffixAttackCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-14)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4732 }, level = 65, group = "LifeCost", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(10-14)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["AbyssModQuiverAmanamuPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Amanamu's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m", statOrder = { 9508 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m" }, } }, + ["AbyssModQuiverAmanamuSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Amanamu", "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5803 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m" }, } }, + ["AbyssModQuiverKurgalPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m", statOrder = { 9507 }, level = 65, group = "ProjectileDamageFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m" }, } }, + ["AbyssModQuiverKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5817 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m" }, } }, + ["AbyssModRingAmuletUlamanPrefixAttackDamageWhileLowLife"] = { type = "Prefix", affix = "Ulaman's", "(15-25)% increased Attack Damage while on Low Life", statOrder = { 4520 }, level = 65, group = "AttackDamageOnLowLife", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [4246007234] = { "(15-25)% increased Attack Damage while on Low Life" }, } }, + ["AbyssModRingAmuletUlamanSuffixSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(3-6)% increased Skill Speed", statOrder = { 836 }, level = 65, group = "IncreasedSkillSpeed", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [970213192] = { "(3-6)% increased Skill Speed" }, } }, + ["AbyssModRingAmuletUlamanSuffixRecoverPercentMaxLifeOnKill"] = { type = "Suffix", affix = "of Ulaman", "Recover (2-3)% of maximum Life on Kill", statOrder = { 1509 }, level = 65, group = "RecoverPercentMaxLifeOnKill", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2023107756] = { "Recover (2-3)% of maximum Life on Kill" }, } }, + ["AbyssModRingAmuletAmanamuPrefixRemnantEffect"] = { type = "Prefix", affix = "Amanamu's", "Remnants you create have (8-15)% increased effect", statOrder = { 9695 }, level = 65, group = "RemnantEffect", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1999910726] = { "Remnants you create have (8-15)% increased effect" }, } }, + ["AbyssModRingAmuletAmanamuPrefixMinionDamageIfYou'veHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (15-25)% increased Damage if you've Hit Recently", statOrder = { 9004 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "minion_damage", "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (15-25)% increased Damage if you've Hit Recently" }, } }, + ["AbyssModRingAmuletAmanamuSuffixSkillEffectDuration"] = { type = "Suffix", affix = "of Amanamu", "(8-12)% increased Skill Effect Duration", statOrder = { 1643 }, level = 65, group = "SkillEffectDuration", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3377888098] = { "(8-12)% increased Skill Effect Duration" }, } }, + ["AbyssModRingAmuletAmanamuSuffixRemnantCollectionRange"] = { type = "Suffix", affix = "of Amanamu", "Remnants can be collected from (20-30)% further away", statOrder = { 9697 }, level = 65, group = "RemnantPickupRadiusIncrease", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3482326075] = { "Remnants can be collected from (20-30)% further away" }, } }, + ["AbyssModRingAmuletKurgalPrefixSpellDamageWhileEnergyShieldFull"] = { type = "Prefix", affix = "Kurgal's", "(15-25)% increased Spell Damage while on Full Energy Shield", statOrder = { 2808 }, level = 65, group = "IncreasedSpellDamageOnFullEnergyShield", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "caster_damage", "unveiled_mod", "kurgal_mod", "damage", "caster" }, tradeHashes = { [3176481473] = { "(15-25)% increased Spell Damage while on Full Energy Shield" }, } }, + ["AbyssModRingAmuletKurgalSuffixExposureEffect"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% increased Exposure Effect", statOrder = { 6510 }, level = 65, group = "ElementalExposureEffect", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(10-15)% increased Exposure Effect" }, } }, + ["AbyssModRingAmuletKurgalSuffixCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4666 }, level = 65, group = "GlobalCooldownRecovery", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1004011302] = { "(8-12)% increased Cooldown Recovery Rate" }, } }, + ["AbyssModRingAmuletKurgalSuffixRecoverPercentMaxManaOnKill"] = { type = "Suffix", affix = "of Kurgal", "Recover (2-3)% of maximum Mana on Kill", statOrder = { 1515 }, level = 65, group = "ManaGainedOnKillPercentage", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [1604736568] = { "Recover (2-3)% of maximum Mana on Kill" }, } }, + ["AbyssModRingUlamanPrefixShockMagnitudeIfConsumedFrenzyCharge"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", statOrder = { 9805 }, level = 65, group = "ShockMagnitudeIfConsumedFrenzyChargeRecently", weightKey = { "ring", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "frenzy_charge", "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [324210709] = { "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently" }, } }, + ["AbyssModRingAmanamuPrefixIgniteMagnitudeIfConsumedEnduranceCharge"] = { type = "Prefix", affix = "Amanamu's", "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", statOrder = { 7240 }, level = 65, group = "IgniteMagnitudeIfConsumedEnduranceChargeRecently", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "endurance_charge", "unveiled_mod", "amanamu_mod", "ailment" }, tradeHashes = { [916833363] = { "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently" }, } }, + ["AbyssModRingAmanamuSuffixLifeLeechAmount"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased amount of Life Leeched", statOrder = { 1893 }, level = 65, group = "LifeLeechAmount", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life" }, tradeHashes = { [2112395885] = { "(12-20)% increased amount of Life Leeched" }, } }, + ["AbyssModRingKurgalPrefixFreezeBuildupIfConsumedPowerCharge"] = { type = "Prefix", affix = "Kurgal's", "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently", statOrder = { 7169 }, level = 65, group = "FreezeBuildupIfConsumedPowerChargeRecently", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "power_charge", "unveiled_mod", "kurgal_mod", "ailment" }, tradeHashes = { [232701452] = { "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently" }, } }, + ["AbyssModRingKurgalSuffixManaLeechAmount"] = { type = "Suffix", affix = "of Kurgal", "(12-20)% increased amount of Mana Leeched", statOrder = { 1895 }, level = 65, group = "ManaLeechAmount", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2839066308] = { "(12-20)% increased amount of Mana Leeched" }, } }, + ["AbyssModAmuletUlamanPrefixEvasionRatingFromEquippedBody"] = { type = "Prefix", affix = "Ulaman's", "(35-50)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4946 }, level = 65, group = "EvasionRatingFromBodyArmour", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "ulaman_mod", "evasion" }, tradeHashes = { [3509362078] = { "(35-50)% increased Evasion Rating from Equipped Body Armour" }, } }, + ["AbyssModAmuletUlamanPrefixGlobalDeflectionRating"] = { type = "Prefix", affix = "Ulaman's", "(10-20)% increased Deflection Rating", statOrder = { 6105 }, level = 65, group = "GlobalDeflectionRating", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "ulaman_mod", "evasion" }, tradeHashes = { [3040571529] = { "(10-20)% increased Deflection Rating" }, } }, + ["AbyssModAmuletUlamanPrefixChanceToNotConsumeGlory"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% chance for Skills to retain 40% of Glory on use", statOrder = { 5556 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2749595652] = { "(20-30)% chance for Skills to retain 40% of Glory on use" }, } }, + ["AbyssModAmuletUlamanSuffixHeraldReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Reservation Efficiency of Herald Skills", statOrder = { 9724 }, level = 65, group = "HeraldReservationEfficiency", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1697191405] = { "(10-20)% increased Reservation Efficiency of Herald Skills" }, } }, + ["AbyssModAmuletUlamanSuffixGlobalLevelOfSkillGems"] = { type = "Suffix", affix = "of Ulaman", "+1 to Level of all Skills", statOrder = { 948 }, level = 65, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "gem" }, tradeHashes = { [4283407333] = { "+1 to Level of all Skills" }, } }, + ["AbyssModAmuletAmanamuPrefixArmourFromEquippedBody"] = { type = "Prefix", affix = "Amanamu's", "(35-50)% increased Armour from Equipped Body Armour", statOrder = { 4945 }, level = 65, group = "BodyArmourFromBodyArmour", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "amanamu_mod", "armour" }, tradeHashes = { [1015576579] = { "(35-50)% increased Armour from Equipped Body Armour" }, } }, + ["AbyssModAmuletAmanamuPrefixGlobalDefences"] = { type = "Prefix", affix = "Amanamu's", "(15-25)% increased Global Armour, Evasion and Energy Shield", statOrder = { 2586 }, level = 65, group = "AllDefences", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1177404658] = { "(15-25)% increased Global Armour, Evasion and Energy Shield" }, } }, + ["AbyssModAmuletAmanamuSuffixReducedRequirementEquipmentAndSkill"] = { type = "Suffix", affix = "of Amanamu", "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements", statOrder = { 2333 }, level = 65, group = "GlobalItemAttributeRequirements", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [752930724] = { "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements" }, } }, + ["AbyssModAmuletAmanamuSuffixAuraMagnitude"] = { type = "Suffix", affix = "of Amanamu", "Aura Skills have (8-16)% increased Magnitudes", statOrder = { 2572 }, level = 65, group = "AuraMagnitude", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [315791320] = { "Aura Skills have (8-16)% increased Magnitudes" }, } }, + ["AbyssModAmuletKurgalPrefixEnergyShieldFromEquippedBody"] = { type = "Prefix", affix = "Kurgal's", "(35-50)% increased Energy Shield from Equipped Body Armour", statOrder = { 8828 }, level = 65, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "defences", "unveiled_mod", "kurgal_mod", "energy_shield" }, tradeHashes = { [1195319608] = { "(35-50)% increased Energy Shield from Equipped Body Armour" }, } }, + ["AbyssModAmuletKurgalPrefixChanceInvocatedSpellsConsumeHalfEnergy"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells have (10-20)% chance to consume half as much Energy", statOrder = { 7362 }, level = 65, group = "InvocatedSpellHalfEnergyChance", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [3711973554] = { "Invocated Spells have (10-20)% chance to consume half as much Energy" }, } }, + ["AbyssModAmuletKurgalSuffixCooldownRecoveryRateCommandSkills"] = { type = "Suffix", affix = "of Kurgal", "Minions have (12-20)% increased Cooldown Recovery Rate", statOrder = { 8994 }, level = 65, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHashes = { [1691403182] = { "Minions have (12-20)% increased Cooldown Recovery Rate" }, } }, + ["AbyssModAmuletKurgalSuffixDamageFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(8-16)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHashes = { [458438597] = { "(8-16)% of Damage is taken from Mana before Life" }, } }, + ["AbyssModAmuletKurgalSuffixQualityofAllSkills"] = { type = "Suffix", affix = "of Kurgal", "+(3-5)% to Quality of all Skills", statOrder = { 974 }, level = 65, group = "GlobalSkillGemQuality", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "gem" }, tradeHashes = { [3655769732] = { "+(3-5)% to Quality of all Skills" }, } }, + ["AbyssModStaffUlamanPrefixSpellDamagePer100MaximumLife"] = { type = "Prefix", affix = "Ulaman's", "(4-5)% increased Spell Damage per 100 Maximum Life", statOrder = { 9974 }, level = 65, group = "SpellDamagePer100Life", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "ulaman_mod", "life", "damage", "caster" }, tradeHashes = { [3491815140] = { "(4-5)% increased Spell Damage per 100 Maximum Life" }, } }, + ["AbyssModStaffUlamanPrefixMagnitudeOfDamagingAilments"] = { type = "Prefix", affix = "Ulaman's", "(40-64)% increased Magnitude of Damaging Ailments you inflict", statOrder = { 6053 }, level = 65, group = "DamagingAilmentEffect", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "ailment" }, tradeHashes = { [1381474422] = { "(40-64)% increased Magnitude of Damaging Ailments you inflict" }, } }, + ["AbyssModStaffUlamanSuffixCastSpeedWhileLowLife"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% increased Cast Speed when on Low Life", statOrder = { 1739 }, level = 65, group = "CastSpeedOnLowLife", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_speed", "unveiled_mod", "ulaman_mod", "caster", "speed" }, tradeHashes = { [1136768410] = { "(30-40)% increased Cast Speed when on Low Life" }, } }, + ["AbyssModStaffUlamanSuffixChanceForSpellsToFireTwoAdditionalProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9993 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHashes = { [2910761524] = { "(25-35)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, + ["AbyssModStaffAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(148-178)% increased Spell Damage with Spells that cost Life", statOrder = { 9970 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(148-178)% increased Spell Damage with Spells that cost Life" }, } }, + ["AbyssModStaffAmanamuPrefixFlatSpirit"] = { type = "Prefix", affix = "Amanamu's", "+(35-50) to Spirit", statOrder = { 895 }, level = 65, group = "BaseSpirit", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [3981240776] = { "+(35-50) to Spirit" }, } }, + ["AbyssModStaffAmanamuSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9997 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [3544050945] = { "(25-35)% of Spell Mana Cost Converted to Life Cost" }, } }, + ["AbyssModStaffAmanamuSuffixArchonDuration"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Archon Buff duration", statOrder = { 4334 }, level = 65, group = "ArchonDuration", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2158617060] = { "(25-35)% increased Archon Buff duration" }, } }, + ["AbyssModStaffAmanamuSuffixBlockChance"] = { type = "Suffix", affix = "of Amanamu", "+(12-16)% to Block chance", statOrder = { 1122 }, level = 65, group = "AdditionalBlock", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1702195217] = { "+(12-16)% to Block chance" }, } }, + ["AbyssModStaffKurgalPrefixSpellDamagePer100MaximumMana"] = { type = "Prefix", affix = "Kurgal's", "(4-5)% increased Spell Damage per 100 maximum Mana", statOrder = { 9976 }, level = 65, group = "SpellDamagePer100Mana", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "kurgal_mod", "mana", "damage", "caster" }, tradeHashes = { [1850249186] = { "(4-5)% increased Spell Damage per 100 maximum Mana" }, } }, + ["AbyssModStaffKurgalPrefixMaximumInfusions"] = { type = "Prefix", affix = "Kurgal's", "+(1-2) to maximum number of Elemental Infusions", statOrder = { 8840 }, level = 65, group = "MaximumElementalInfusion", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental" }, tradeHashes = { [4097212302] = { "+(1-2) to maximum number of Elemental Infusions" }, } }, + ["AbyssModStaffKurgalSuffixArchonCooldownRecovery"] = { type = "Suffix", affix = "of Kurgal", "Archon recovery period expires (25-35)% faster", statOrder = { 4333 }, level = 65, group = "ArchonDelayRecovery", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2586152168] = { "Archon recovery period expires (25-35)% faster" }, } }, + ["AbyssModStaffKurgalSuffixCastSpeedWhileFullMana"] = { type = "Suffix", affix = "of Kurgal", "(26-36)% increased Cast Speed while on Full Mana", statOrder = { 5334 }, level = 65, group = "CastSpeedOnFullMana", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_speed", "resource", "unveiled_mod", "kurgal_mod", "mana", "caster", "speed" }, tradeHashes = { [1914226331] = { "(26-36)% increased Cast Speed while on Full Mana" }, } }, + ["AbyssModWandUlamanPrefixDamageAsExtraPhysical"] = { type = "Prefix", affix = "Ulaman's", "Gain (21-25)% of Damage as Extra Physical Damage", statOrder = { 1669 }, level = 65, group = "DamageasExtraPhysical", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical" }, tradeHashes = { [4019237939] = { "Gain (21-25)% of Damage as Extra Physical Damage" }, } }, + ["AbyssModWandUlamanPrefixBleedMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(27-38)% increased Magnitude of Bleeding you inflict", statOrder = { 4797 }, level = 65, group = "BleedDotMultiplier", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical", "attack", "ailment" }, tradeHashes = { [3166958180] = { "(27-38)% increased Magnitude of Bleeding you inflict" }, } }, + ["AbyssModWandUlamanSuffixArmourBreakAmount"] = { type = "Suffix", affix = "of Ulaman", "Break (31-39)% increased Armour", statOrder = { 4397 }, level = 65, group = "ArmourBreak", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1776411443] = { "Break (31-39)% increased Armour" }, } }, + ["AbyssModWandUlamanSuffixBreakArmourSpellCrits"] = { type = "Suffix", affix = "of Ulaman", "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt", statOrder = { 4401 }, level = 65, group = "ArmourBreakPercentOnSpellCrit", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_critical", "unveiled_mod", "ulaman_mod", "caster", "critical" }, tradeHashes = { [1286199571] = { "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt" }, } }, + ["AbyssModWandUlamanSuffixHinderedEnemiesTakeIncreasedPhysical"] = { type = "Suffix", affix = "of Ulaman", "Enemies Hindered by you take (4-7)% increased Physical Damage", statOrder = { 7162 }, level = 65, group = "HinderedEnemiesTakeIncreasedPhysicalDamage", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [359357545] = { "Enemies Hindered by you take (4-7)% increased Physical Damage" }, } }, + ["AbyssModWandAmanamuPrefixIncreasedElementalDamage"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Elemental Damage", statOrder = { 1724 }, level = 65, group = "CasterElementalDamagePercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental", "fire", "cold", "lightning" }, tradeHashes = { [3141070085] = { "(74-89)% increased Elemental Damage" }, } }, + ["AbyssModWandAmanamuPrefixHybridSpellAndMinionDamage"] = { type = "Prefix", affix = "Amanamu's", "(55-64)% increased Spell Damage", "Minions deal (55-64)% increased Damage", statOrder = { 870, 1718 }, level = 65, group = "MinionAndSpellDamageHybrid", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "minion" }, tradeHashes = { [2974417149] = { "(55-64)% increased Spell Damage" }, [1589917703] = { "Minions deal (55-64)% increased Damage" }, } }, + ["AbyssModWandAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Spell Damage with Spells that cost Life", statOrder = { 9970 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [1373860425] = { "(74-89)% increased Spell Damage with Spells that cost Life" }, } }, + ["AbyssModWandAmanamuSuffixSpellAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Spell Skills have (8-16)% increased Area of Effect", statOrder = { 9950 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster" }, tradeHashes = { [1967040409] = { "Spell Skills have (8-16)% increased Area of Effect" }, } }, + ["AbyssModWandAmanamuSuffixSpellManaCostConvertedToLifeSkillEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Cost Efficiency", "(15-25)% of Spell Mana Cost Converted to Life Cost", statOrder = { 4731, 9997 }, level = 65, group = "SpellLifeCostPercentAndSkillCostEfficiency", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHashes = { [263495202] = { "(5-10)% increased Cost Efficiency" }, [3544050945] = { "(15-25)% of Spell Mana Cost Converted to Life Cost" }, } }, + ["AbyssModWandAmanamuSuffixHinderedEnemiesTakeIncreasedElemental"] = { type = "Suffix", affix = "of Amanamu", "Enemies Hindered by you take (4-7)% increased Elemental Damage", statOrder = { 7161 }, level = 65, group = "HinderedEnemiesTakeIncreasedElementalDamage", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [212649958] = { "Enemies Hindered by you take (4-7)% increased Elemental Damage" }, } }, + ["AbyssModWandKurgalPrefixInvocatedSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (75-89)% increased Damage", statOrder = { 7365 }, level = 65, group = "InvocationSpellDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHashes = { [1078309513] = { "Invocated Spells deal (75-89)% increased Damage" }, } }, + ["AbyssModWandKurgalSuffixCastSpeedPerDifferentSpellCastRecently"] = { type = "Suffix", affix = "of Kurgal", "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 5323 }, level = 65, group = "CastSpeedPerDifferentSpellCastRecently", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1518586897] = { "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently" }, } }, + ["AbyssModWandKurgalSuffixHinderedEnemiesTakeIncreasedChaos"] = { type = "Suffix", affix = "of Kurgal", "Enemies Hindered by you take (4-7)% increased Chaos Damage", statOrder = { 7160 }, level = 65, group = "HinderedEnemiesTakeIncreasedChaosDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1746561819] = { "Enemies Hindered by you take (4-7)% increased Chaos Damage" }, } }, + ["AbyssModGenWeaponUlamanPrefixLightningPenetration"] = { type = "Prefix", affix = "Ulaman's", "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance", statOrder = { 3437 }, level = 65, group = "LocalLightningPenetration", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "ulaman_mod", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2387539034] = { "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance" }, } }, + ["AbyssModGenWeaponUlamanSuffixSkillCostConvertedToLife"] = { type = "Suffix", affix = "of Ulaman", "(15-20)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4732 }, level = 65, group = "LifeCost", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2480498143] = { "(15-20)% of Skill Mana Costs Converted to Life Costs" }, } }, + ["AbyssModGenWeaponAmanamuPrefixFirePenetration"] = { type = "Prefix", affix = "Amanamu's", "Attacks with this Weapon Penetrate (15-25)% Fire Resistance", statOrder = { 3435 }, level = 65, group = "LocalFirePenetration", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental", "fire", "attack" }, tradeHashes = { [3398283493] = { "Attacks with this Weapon Penetrate (15-25)% Fire Resistance" }, } }, + ["AbyssModGenWeaponAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Spirit Reservation Efficiency", statOrder = { 4743 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [53386210] = { "(5-10)% increased Spirit Reservation Efficiency" }, } }, + ["AbyssModGenWeaponKurgalPrefixColdPenetration"] = { type = "Prefix", affix = "Kurgal's", "Attacks with this Weapon Penetrate (15-25)% Cold Resistance", statOrder = { 3436 }, level = 65, group = "LocalColdPenetration", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "kurgal_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (15-25)% Cold Resistance" }, } }, + ["AbyssModGenWeaponKurgalSuffixAttackCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4642 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, + ["AbyssModAllMacesUlamanPrefixMaximumMeleeAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "Melee Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 8876 }, level = 65, group = "AdditionalMeleeTotem", weightKey = { "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2013356568] = { "Melee Attack Skills have +1 to maximum number of Summoned Totems" }, } }, + ["AbyssModAllMacesKurgalPrefixIncreasedPhysicalDamageReducedAttackSpeed"] = { type = "Prefix", affix = "Kurgal's", "(110-154)% increased Physical Damage", "15% reduced Attack Speed", statOrder = { 829, 945 }, level = 65, group = "LocalIncreasedPhysicalDamageAttackSpeedHybrid", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "physical", "attack", "speed" }, tradeHashes = { [210067635] = { "15% reduced Attack Speed" }, [1509134228] = { "(110-154)% increased Physical Damage" }, } }, + ["AbyssModAllMacesKurgalSuffixCostEfficiencyOfAttackSkills"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4642 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, + ["AbyssMod1HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(41-59)% increased Damage while you have a Totem", statOrder = { 2921 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHashes = { [2543331226] = { "(41-59)% increased Damage while you have a Totem" }, } }, + ["AbyssMod1HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% increased Totem Placement speed", statOrder = { 2358 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3374165039] = { "(17-25)% increased Totem Placement speed" }, } }, + ["AbyssMod1HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(41-59)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5933 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(41-59)% increased Damage against Enemies with Fully Broken Armour" }, } }, + ["AbyssMod1HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (2-4)% of Physical Damage dealt", statOrder = { 4404 }, level = 65, group = "ArmourPenetration", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (2-4)% of Physical Damage dealt" }, } }, + ["AbyssMod1HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (15-25)% chance to create an additional Fissure", statOrder = { 9853 }, level = 65, group = "AdditionalFissureChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (15-25)% chance to create an additional Fissure" }, } }, + ["AbyssMod1HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10578 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, + ["AbyssMod1HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (41-59)% increased Damage", statOrder = { 6306 }, level = 65, group = "ExertedAttackDamage", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (41-59)% increased Damage" }, } }, + ["AbyssMod1HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 3033 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4159248054] = { "(17-25)% increased Warcry Cooldown Recovery Rate" }, } }, + ["AbyssMod2HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Damage while you have a Totem", statOrder = { 2921 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHashes = { [2543331226] = { "(86-99)% increased Damage while you have a Totem" }, } }, + ["AbyssMod2HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(25-31)% increased Totem Placement speed", statOrder = { 2358 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3374165039] = { "(25-31)% increased Totem Placement speed" }, } }, + ["AbyssMod2HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5933 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [2301718443] = { "(86-99)% increased Damage against Enemies with Fully Broken Armour" }, } }, + ["AbyssMod2HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (4-7)% of Physical Damage dealt", statOrder = { 4404 }, level = 65, group = "ArmourPenetration", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHashes = { [1103616075] = { "Break Armour equal to (4-7)% of Physical Damage dealt" }, } }, + ["AbyssMod2HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (25-31)% chance to create an additional Fissure", statOrder = { 9853 }, level = 65, group = "AdditionalFissureChance", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (25-31)% chance to create an additional Fissure" }, } }, + ["AbyssMod2HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 10578 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [3950000557] = { "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock" }, } }, + ["AbyssMod2HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (86-99)% increased Damage", statOrder = { 6306 }, level = 65, group = "ExertedAttackDamage", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHashes = { [1569101201] = { "Empowered Attacks deal (86-99)% increased Damage" }, } }, + ["AbyssMod2HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(25-31)% increased Warcry Cooldown Recovery Rate", statOrder = { 3033 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4159248054] = { "(25-31)% increased Warcry Cooldown Recovery Rate" }, } }, + ["AbyssModQuarterstaffUlamanPrefixLightningDamageShockMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Lightning Damage", "(14-23)% increased Magnitude of Shock you inflict", statOrder = { 874, 9804 }, level = 65, group = "LightningDamageShockMagnitudeHybrid", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(14-23)% increased Magnitude of Shock you inflict" }, [2231156303] = { "(86-99)% increased Lightning Damage" }, } }, + ["AbyssModQuarterstaffUlamanSuffixRecoverLifeWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Ulaman", "Recover (6-12)% of Maximum Life when you expend at least 10 Combo", statOrder = { 9657 }, level = 65, group = "SkillUseRecoverPercentLifeOnExpendingTenCombo", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [4033618138] = { "Recover (6-12)% of Maximum Life when you expend at least 10 Combo" }, } }, + ["AbyssModQuarterstaffAmanamuPrefixFireDamageIgniteMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Fire Damage", "(14-23)% increased Ignite Magnitude", statOrder = { 872, 1076 }, level = 65, group = "FireDamageIgniteMagnitudeHybrid", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHashes = { [3962278098] = { "(86-99)% increased Fire Damage" }, [3791899485] = { "(14-23)% increased Ignite Magnitude" }, } }, + ["AbyssModQuarterstaffAmanamuSuffixChanceToGenerateAdditionalCombo"] = { type = "Suffix", affix = "of Amanamu", "(25-40)% chance to build an additional Combo on Hit", statOrder = { 4175 }, level = 65, group = "ChanceToGenerateAdditionalCombo", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [4258524206] = { "(25-40)% chance to build an additional Combo on Hit" }, } }, + ["AbyssModQuarterstaffKurgalPrefixColdDamageFreezeBuildup"] = { type = "Prefix", affix = "Kurgal's", "(86-99)% increased Cold Damage", "(14-23)% increased Freeze Buildup", statOrder = { 873, 1056 }, level = 65, group = "ColdDamageFreezeBuildupHybrid", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "cold", "ailment" }, tradeHashes = { [3291658075] = { "(86-99)% increased Cold Damage" }, [473429811] = { "(14-23)% increased Freeze Buildup" }, } }, + ["AbyssModQuarterstaffKurgalSuffixRecoverManaWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Kurgal", "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo", statOrder = { 9660 }, level = 65, group = "SkillUseRecoverPercentManaOnExpendingTenCombo", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHashes = { [2991045011] = { "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo" }, } }, + ["AbyssModCrossbowUlamanPrefixMaximumRangedAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4165 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1823942939] = { "+1 to maximum number of Summoned Ballista Totems" }, } }, + ["AbyssModCrossbowUlamanSuffixAttacksChainAdditionalTime"] = { type = "Suffix", affix = "of Ulaman", "Attacks Chain an additional time", statOrder = { 3781 }, level = 65, group = "AttacksChainAdditionalTimes", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3868118796] = { "Attacks Chain an additional time" }, } }, + ["AbyssModCrossbowUlamanSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Ulaman", "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5803 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2573406169] = { "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m" }, } }, + ["AbyssModCrossbowAmanamuPrefixGrenadeAdditionalCooldown"] = { type = "Prefix", affix = "Amanamu's", "Grenade Skills have +1 Cooldown Use", statOrder = { 6918 }, level = 65, group = "GrenadeCooldownUse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2250681686] = { "Grenade Skills have +1 Cooldown Use" }, } }, + ["AbyssModCrossbowAmanamuPrefixGrenadeDamageAndDuration"] = { type = "Prefix", affix = "Amanamu's", "(101-121)% increased Grenade Damage", "(20-30)% increased Grenade Duration", statOrder = { 6920, 6921 }, level = 65, group = "GrenadeDamageLongFuse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHashes = { [1365232741] = { "(20-30)% increased Grenade Duration" }, [3131442032] = { "(101-121)% increased Grenade Damage" }, } }, + ["AbyssModCrossbowAmanamuSuffixAdditionalGrenadeTriggerChance"] = { type = "Suffix", affix = "of Amanamu", "Grenades have (15-25)% chance to activate a second time", statOrder = { 6916 }, level = 65, group = "GrenadeAdditionalTriggerChance", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [538981065] = { "Grenades have (15-25)% chance to activate a second time" }, } }, + ["AbyssModCrossbowKurgalPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m", statOrder = { 9508 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage" }, tradeHashes = { [2468595624] = { "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m" }, } }, + ["AbyssModCrossbowKurgalSuffixReloadSpeed"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Reload Speed", statOrder = { 946 }, level = 65, group = "LocalReloadSpeed", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack", "speed" }, tradeHashes = { [710476746] = { "(17-25)% increased Reload Speed" }, } }, ["AbyssModCrossbowKurgalSuffixChanceForInstantReload"] = { type = "Suffix", affix = "of Kurgal", "(15-20)% chance when you Reload a Crossbow to be immediate", statOrder = { 2 }, level = 65, group = "ChanceForInstantReload", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2760344900] = { "(15-20)% chance when you Reload a Crossbow to be immediate" }, } }, - ["AbyssModBowSpearUlamanPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Ulaman's", "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m", statOrder = { 8974 }, level = 65, group = "ProjectileDamageFar", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m" }, } }, - ["AbyssModBowSpearUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving", statOrder = { 8968 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving" }, } }, - ["AbyssModBowSpearUlamanSuffixAttackSpeedLocalAndWithCompanion"] = { type = "Suffix", affix = "of Ulaman", "(8-13)% increased Attack Speed", "(8-13)% increased Attack Speed while your Companion is in your Presence", statOrder = { 919, 4422 }, level = 65, group = "LocalAttackSpeedAndAttackSpeedWithCompanion", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [210067635] = { "(8-13)% increased Attack Speed" }, [299996] = { "(8-13)% increased Attack Speed while your Companion is in your Presence" }, } }, - ["AbyssModBowSpearAmanamuPrefixCompanionDamageAndDamageWithCompanion"] = { type = "Prefix", affix = "Amanamu's", "Companions deal (40-59)% increased Damage", "(40-59)% increased Damage while your Companion is in your Presence", statOrder = { 5339, 5566 }, level = 65, group = "CompanionDamageAndDamageWithCompanion", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [693180608] = { "(40-59)% increased Damage while your Companion is in your Presence" }, [234296660] = { "Companions deal (40-59)% increased Damage" }, } }, - ["AbyssModBowSpearAmanamuPrefixAttackSkillAreaOfEffect"] = { type = "Prefix", affix = "Amanamu's", "(12-23)% increased Area of Effect for Attacks", statOrder = { 4363 }, level = 65, group = "IncreasedAttackAreaOfEffect", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [1840985759] = { "(12-23)% increased Area of Effect for Attacks" }, } }, - ["AbyssModBowSpearAmanamuSuffixCompanionAndLocalAttackSpeed"] = { type = "Suffix", affix = "of Amanamu", "(12-18)% increased Attack Speed", "Companions have (12-18)% increased Attack Speed", statOrder = { 919, 5335 }, level = 65, group = "CompanionAndLocalAttackSpeed", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [210067635] = { "(12-18)% increased Attack Speed" }, [666077204] = { "Companions have (12-18)% increased Attack Speed" }, } }, - ["AbyssModBowSpearAmanamuSuffixChancePierceAdditionalTime"] = { type = "Suffix", affix = "of Amanamu", "(40-60)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 65, group = "ChanceToPierce", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2321178454] = { "(40-60)% chance to Pierce an Enemy" }, } }, - ["AbyssModBowSpearKurgalPrefixChanceChainFromTerrain"] = { type = "Prefix", affix = "Kurgal's", "Projectiles have (25-35)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 65, group = "ChainFromTerrain", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-35)% chance to Chain an additional time from terrain" }, } }, - ["AbyssModBowSpearKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5436 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m" }, } }, - ["AbyssModBowSpearKurgalSuffixImmobilisationBuildup"] = { type = "Suffix", affix = "of Kurgal", "(25-34)% increased Immobilisation buildup", statOrder = { 6748 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [330530785] = { "(25-34)% increased Immobilisation buildup" }, } }, - ["AbyssModBowKurgalPrefixIncreasedQuiverStats"] = { type = "Prefix", affix = "Kurgal's", "(30-40)% increased bonuses gained from Equipped Quiver", statOrder = { 9028 }, level = 65, group = "QuiverModifierEffect", weightKey = { "bow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1200678966] = { "(30-40)% increased bonuses gained from Equipped Quiver" }, } }, - ["AbyssModSpearKurgalPrefixMeleeDamageIfProjectileAttackHitEightSeconds"] = { type = "Prefix", affix = "Kurgal's", "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8364 }, level = 65, group = "MeleeDamageIfProjectileAttackHitRecently", weightKey = { "spear", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3028809864] = { "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, - ["AbyssModTalismanUlamanSuffixGainXRageOnMeleeHit"] = { type = "Suffix", affix = "of Ulaman", "Gain (3-6) Rage on Melee Hit", statOrder = { 6431 }, level = 65, group = "RageOnHit", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2709367754] = { "Gain (3-6) Rage on Melee Hit" }, } }, - ["AbyssModTalismanAmanamuPrefixMinionsDealIncreasedDamageIfYouHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (60-79)% increased Damage if you've Hit Recently", statOrder = { 8484 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (60-79)% increased Damage if you've Hit Recently" }, } }, - ["AbyssModTalismanKurgalPrefixWarcriesEmpowerXAdditionalAttacks"] = { type = "Prefix", affix = "Kurgal's", "Warcries Empower an additional Attack", statOrder = { 9887 }, level = 65, group = "WarcriesExertAnAdditionalAttack", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, - ["AbyssModTalismanKurgalSuffixCriticalHitChanceAgainstMarkedTargets"] = { type = "Suffix", affix = "of Kurgal", "(39-51)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5439 }, level = 65, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [1045789614] = { "(39-51)% increased Critical Hit Chance against Marked Enemies" }, } }, - ["UniqueWatcherVeiledSpiritReservationEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 1, group = "UniqueSpiritReservationEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix" }, tradeHashes = { [53386210] = { "(12-16)% increased Spirit Reservation Efficiency of Skills" }, } }, - ["UniqueWatcherVeiledManaCostEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "UniqueManaCostEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [4101445926] = { "(12-16)% increased Mana Cost Efficiency" }, } }, - ["UniqueWatcherVeiledCurseAreaOfEffect"] = { type = "Suffix", affix = "", "(11-21)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "UniqueCurseAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHashes = { [153777645] = { "(11-21)% increased Area of Effect of Curses" }, } }, - ["UniqueWatcherVeiledEffectOfCurses"] = { type = "Suffix", affix = "", "(11-18)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "UniqueEffectOfCurses", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHashes = { [2353576063] = { "(11-18)% increased Curse Magnitudes" }, } }, - ["UniqueWatcherVeiledMinionLife"] = { type = "Suffix", affix = "", "Minions have (41-50)% increased maximum Life", statOrder = { 962 }, level = 1, group = "UniqueMinionLife", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (41-50)% increased maximum Life" }, } }, - ["UniqueWatcherVeiledPresenceAreaOfEffect"] = { type = "Suffix", affix = "", "(46-55)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "UniquePresenceAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "aura" }, tradeHashes = { [101878827] = { "(46-55)% increased Presence Area of Effect" }, } }, - ["UniqueWatcherVeiledManaRegeneration"] = { type = "Suffix", affix = "", "(68-91)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "UniqueManaRegeneration", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [789117908] = { "(68-91)% increased Mana Regeneration Rate" }, } }, - ["UniqueWatcherVeiledAlliesInPresenceCastSpeed"] = { type = "Suffix", affix = "", "Allies in your Presence have (8-15)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "UniqueAlliesInPresenceCastSpeed", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "caster", "aura" }, tradeHashes = { [289128254] = { "Allies in your Presence have (8-15)% increased Cast Speed" }, } }, - ["UniqueWatcherVeiledAlliesInPresenceAllElementalResistance"] = { type = "Suffix", affix = "", "Allies in your Presence have +(11-18)% to all Elemental Resistances", statOrder = { 895 }, level = 1, group = "UniqueAlliesInPresenceAllElementalResistance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "elemental", "resistance", "aura" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(11-18)% to all Elemental Resistances" }, } }, - ["UniqueWatcherVeiledAlliesInPresenceFlatLifeRegen"] = { type = "Suffix", affix = "", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 896 }, level = 1, group = "UniqueAlliesInPresenceFlatLifeRegen", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "aura" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (29.1-33) Life per second" }, } }, - ["UniqueWatcherVeiledAlliesInPresenceCriticalHitChance"] = { type = "Suffix", affix = "", "Allies in your Presence have (26-41)% increased Critical Hit Chance", statOrder = { 891 }, level = 1, group = "UniqueAlliesInPresenceCriticalHitChance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "critical", "aura" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (26-41)% increased Critical Hit Chance" }, } }, - ["UniqueKulemakUnholyMightAndMagnitude_1"] = { type = "Prefix", affix = "", "(28-56)% increased Magnitude of Unholy Might buffs you grant", "You have Unholy Might", statOrder = { 4620, 6533 }, level = 1, group = "UniqueUnholyMightAndMagnitude", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2725205297] = { "(28-56)% increased Magnitude of Unholy Might buffs you grant" }, [3007552094] = { "You have Unholy Might" }, } }, - ["UniqueKulemakChaosDamageAndExplosion_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 858, 2906 }, level = 1, group = "UniqueChaosDamageAndExplosion", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-160)% increased Chaos Damage" }, [1776945532] = { "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, - ["UniqueKulemakSpellPhysicalDamageBleedChance_1"] = { type = "Prefix", affix = "", "(100-160)% increased Spell Physical Damage", "(20-30)% chance to inflict Bleeding on Hit", statOrder = { 860, 4532 }, level = 1, group = "UniqueSpellPhysicalAndBleedChance", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "physical" }, tradeHashes = { [2174054121] = { "(20-30)% chance to inflict Bleeding on Hit" }, [2768835289] = { "(100-160)% increased Spell Physical Damage" }, } }, - ["UniqueKulemakChaosDamageCurseLowersChaosRes_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you Curse have -(8-5)% to Chaos Resistance", statOrder = { 858, 3617 }, level = 1, group = "UniqueChaosDamageAndCurseLowersChaosRes", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-160)% increased Chaos Damage" }, [1772929282] = { "Enemies you Curse have -(8-5)% to Chaos Resistance" }, } }, - ["UniqueKulemakSpiritAndSpiritReservationEfficiency_1"] = { type = "Prefix", affix = "", "+(40-60) to Spirit", "(6-10)% increased Spirit Reservation Efficiency of Skills", statOrder = { 873, 4613 }, level = 1, group = "UniqueSpiritAndSpiritReservationEfficiency", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2704225257] = { "+(40-60) to Spirit" }, [53386210] = { "(6-10)% increased Spirit Reservation Efficiency of Skills" }, } }, - ["UniqueKulemakElementalDamageEleAilmentDuration_1"] = { type = "Prefix", affix = "", "(10-20)% increased Duration of Elemental Ailments on Enemies", "(100-160)% increased Elemental Damage", statOrder = { 1544, 1651 }, level = 1, group = "UniqueElementalDamageAndDurationOfEleAilments", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "elemental" }, tradeHashes = { [2604619892] = { "(10-20)% increased Duration of Elemental Ailments on Enemies" }, [3141070085] = { "(100-160)% increased Elemental Damage" }, } }, - ["AbyssModBootsUlamanSuffixLifeRegenMoving"] = { type = "Suffix", affix = "of Ulaman", "(40-50)% increased Life Regeneration Rate while moving", statOrder = { 7061 }, level = 65, group = "LifeRegenerationPlusPercentWhileMoving", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2116424886] = { "(40-50)% increased Life Regeneration Rate while moving" }, } }, + ["AbyssModBowSpearUlamanPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Ulaman's", "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m", statOrder = { 9507 }, level = 65, group = "ProjectileDamageFar", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2825946427] = { "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m" }, } }, + ["AbyssModBowSpearUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving", statOrder = { 9500 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3932115504] = { "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving" }, } }, + ["AbyssModBowSpearUlamanSuffixAttackSpeedLocalAndWithCompanion"] = { type = "Suffix", affix = "of Ulaman", "(8-13)% increased Attack Speed", "(8-13)% increased Attack Speed while your Companion is in your Presence", statOrder = { 945, 4546 }, level = 65, group = "LocalAttackSpeedAndAttackSpeedWithCompanion", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [210067635] = { "(8-13)% increased Attack Speed" }, [299996] = { "(8-13)% increased Attack Speed while your Companion is in your Presence" }, } }, + ["AbyssModBowSpearAmanamuPrefixCompanionDamageAndDamageWithCompanion"] = { type = "Prefix", affix = "Amanamu's", "Companions deal (40-59)% increased Damage", "(40-59)% increased Damage while your Companion is in your Presence", statOrder = { 5708, 5947 }, level = 65, group = "CompanionDamageAndDamageWithCompanion", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [693180608] = { "(40-59)% increased Damage while your Companion is in your Presence" }, [234296660] = { "Companions deal (40-59)% increased Damage" }, } }, + ["AbyssModBowSpearAmanamuPrefixAttackSkillAreaOfEffect"] = { type = "Prefix", affix = "Amanamu's", "(12-23)% increased Area of Effect for Attacks", statOrder = { 4483 }, level = 65, group = "IncreasedAttackAreaOfEffect", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHashes = { [1840985759] = { "(12-23)% increased Area of Effect for Attacks" }, } }, + ["AbyssModBowSpearAmanamuSuffixCompanionAndLocalAttackSpeed"] = { type = "Suffix", affix = "of Amanamu", "(12-18)% increased Attack Speed", "Companions have (12-18)% increased Attack Speed", statOrder = { 945, 5702 }, level = 65, group = "CompanionAndLocalAttackSpeed", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [210067635] = { "(12-18)% increased Attack Speed" }, [666077204] = { "Companions have (12-18)% increased Attack Speed" }, } }, + ["AbyssModBowSpearAmanamuSuffixChancePierceAdditionalTime"] = { type = "Suffix", affix = "of Amanamu", "(40-60)% chance to Pierce an Enemy", statOrder = { 1067 }, level = 65, group = "ChanceToPierce", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2321178454] = { "(40-60)% chance to Pierce an Enemy" }, } }, + ["AbyssModBowSpearKurgalPrefixChanceChainFromTerrain"] = { type = "Prefix", affix = "Kurgal's", "Projectiles have (25-35)% chance to Chain an additional time from terrain", statOrder = { 9502 }, level = 65, group = "ChainFromTerrain", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [4081947835] = { "Projectiles have (25-35)% chance to Chain an additional time from terrain" }, } }, + ["AbyssModBowSpearKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5817 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2706625504] = { "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m" }, } }, + ["AbyssModBowSpearKurgalSuffixImmobilisationBuildup"] = { type = "Suffix", affix = "of Kurgal", "(25-34)% increased Immobilisation buildup", statOrder = { 7170 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [330530785] = { "(25-34)% increased Immobilisation buildup" }, } }, + ["AbyssModBowKurgalPrefixIncreasedQuiverStats"] = { type = "Prefix", affix = "Kurgal's", "(30-40)% increased bonuses gained from Equipped Quiver", statOrder = { 9564 }, level = 65, group = "QuiverModifierEffect", weightKey = { "bow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [1200678966] = { "(30-40)% increased bonuses gained from Equipped Quiver" }, } }, + ["AbyssModSpearKurgalPrefixMeleeDamageIfProjectileAttackHitEightSeconds"] = { type = "Prefix", affix = "Kurgal's", "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8879 }, level = 65, group = "MeleeDamageIfProjectileAttackHitRecently", weightKey = { "spear", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [3028809864] = { "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds" }, } }, + ["AbyssModTalismanUlamanSuffixGainXRageOnMeleeHit"] = { type = "Suffix", affix = "of Ulaman", "Gain (3-6) Rage on Melee Hit", statOrder = { 6850 }, level = 65, group = "RageOnHit", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [2709367754] = { "Gain (3-6) Rage on Melee Hit" }, } }, + ["AbyssModTalismanAmanamuPrefixMinionsDealIncreasedDamageIfYouHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (60-79)% increased Damage if you've Hit Recently", statOrder = { 9004 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "minion_damage", "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHashes = { [2337295272] = { "Minions deal (60-79)% increased Damage if you've Hit Recently" }, } }, + ["AbyssModTalismanKurgalPrefixWarcriesEmpowerXAdditionalAttacks"] = { type = "Prefix", affix = "Kurgal's", "Warcries Empower an additional Attack", statOrder = { 10468 }, level = 65, group = "WarcriesExertAnAdditionalAttack", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, + ["AbyssModTalismanKurgalSuffixCriticalHitChanceAgainstMarkedTargets"] = { type = "Suffix", affix = "of Kurgal", "(39-51)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5820 }, level = 65, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHashes = { [1045789614] = { "(39-51)% increased Critical Hit Chance against Marked Enemies" }, } }, + ["UniqueWatcherVeiledSpiritReservationEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Spirit Reservation Efficiency", statOrder = { 4743 }, level = 1, group = "UniqueSpiritReservationEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix" }, tradeHashes = { [53386210] = { "(12-16)% increased Spirit Reservation Efficiency" }, } }, + ["UniqueWatcherVeiledManaCostEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Mana Cost Efficiency", statOrder = { 4706 }, level = 1, group = "UniqueManaCostEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [4101445926] = { "(12-16)% increased Mana Cost Efficiency" }, } }, + ["UniqueWatcherVeiledCurseAreaOfEffect"] = { type = "Suffix", affix = "", "(11-21)% increased Area of Effect of Curses", statOrder = { 1948 }, level = 1, group = "UniqueCurseAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHashes = { [153777645] = { "(11-21)% increased Area of Effect of Curses" }, } }, + ["UniqueWatcherVeiledEffectOfCurses"] = { type = "Suffix", affix = "", "(11-18)% increased Curse Magnitudes", statOrder = { 2374 }, level = 1, group = "UniqueEffectOfCurses", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHashes = { [2353576063] = { "(11-18)% increased Curse Magnitudes" }, } }, + ["UniqueWatcherVeiledMinionLife"] = { type = "Suffix", affix = "", "Minions have (41-50)% increased maximum Life", statOrder = { 1025 }, level = 1, group = "UniqueMinionLife", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "minion" }, tradeHashes = { [770672621] = { "Minions have (41-50)% increased maximum Life" }, } }, + ["UniqueWatcherVeiledPresenceAreaOfEffect"] = { type = "Suffix", affix = "", "(46-55)% increased Presence Area of Effect", statOrder = { 1068 }, level = 1, group = "UniquePresenceAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "aura" }, tradeHashes = { [101878827] = { "(46-55)% increased Presence Area of Effect" }, } }, + ["UniqueWatcherVeiledManaRegeneration"] = { type = "Suffix", affix = "", "(68-91)% increased Mana Regeneration Rate", statOrder = { 1042 }, level = 1, group = "UniqueManaRegeneration", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHashes = { [789117908] = { "(68-91)% increased Mana Regeneration Rate" }, } }, + ["UniqueWatcherVeiledAlliesInPresenceCastSpeed"] = { type = "Suffix", affix = "", "Allies in your Presence have (8-15)% increased Cast Speed", statOrder = { 918 }, level = 1, group = "UniqueAlliesInPresenceCastSpeed", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "caster", "aura" }, tradeHashes = { [289128254] = { "Allies in your Presence have (8-15)% increased Cast Speed" }, } }, + ["UniqueWatcherVeiledAlliesInPresenceAllElementalResistance"] = { type = "Suffix", affix = "", "Allies in your Presence have +(11-18)% to all Elemental Resistances", statOrder = { 919 }, level = 1, group = "UniqueAlliesInPresenceAllElementalResistance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_resistance", "unveiled_mod", "watcher_abyss_suffix", "elemental", "resistance", "aura" }, tradeHashes = { [3850614073] = { "Allies in your Presence have +(11-18)% to all Elemental Resistances" }, } }, + ["UniqueWatcherVeiledAlliesInPresenceFlatLifeRegen"] = { type = "Suffix", affix = "", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 920 }, level = 1, group = "UniqueAlliesInPresenceFlatLifeRegen", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "aura" }, tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate (29.1-33) Life per second" }, } }, + ["UniqueWatcherVeiledAlliesInPresenceCriticalHitChance"] = { type = "Suffix", affix = "", "Allies in your Presence have (26-41)% increased Critical Hit Chance", statOrder = { 915 }, level = 1, group = "UniqueAlliesInPresenceCriticalHitChance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "critical", "aura" }, tradeHashes = { [1250712710] = { "Allies in your Presence have (26-41)% increased Critical Hit Chance" }, } }, + ["UniqueKulemakUnholyMightAndMagnitude_1"] = { type = "Prefix", affix = "", "(28-56)% increased Magnitude of Unholy Might buffs you grant", "You have Unholy Might", statOrder = { 4750, 6955 }, level = 1, group = "UniqueUnholyMightAndMagnitude", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2725205297] = { "(28-56)% increased Magnitude of Unholy Might buffs you grant" }, [3007552094] = { "You have Unholy Might" }, } }, + ["UniqueKulemakChaosDamageAndExplosion_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 875, 3010 }, level = 1, group = "UniqueChaosDamageAndExplosion", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-160)% increased Chaos Damage" }, [1776945532] = { "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage" }, } }, + ["UniqueKulemakSpellPhysicalDamageBleedChance_1"] = { type = "Prefix", affix = "", "(100-160)% increased Spell Physical Damage", "(20-30)% chance to inflict Bleeding on Hit", statOrder = { 877, 4660 }, level = 1, group = "UniqueSpellPhysicalAndBleedChance", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "physical" }, tradeHashes = { [2174054121] = { "(20-30)% chance to inflict Bleeding on Hit" }, [2768835289] = { "(100-160)% increased Spell Physical Damage" }, } }, + ["UniqueKulemakChaosDamageCurseLowersChaosRes_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you Curse have -(8-5)% to Chaos Resistance", statOrder = { 875, 3714 }, level = 1, group = "UniqueChaosDamageAndCurseLowersChaosRes", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHashes = { [736967255] = { "(100-160)% increased Chaos Damage" }, [1772929282] = { "Enemies you Curse have -(8-5)% to Chaos Resistance" }, } }, + ["UniqueKulemakSpiritAndSpiritReservationEfficiency_1"] = { type = "Prefix", affix = "", "+(40-60) to Spirit", "(6-10)% increased Spirit Reservation Efficiency", statOrder = { 894, 4743 }, level = 1, group = "UniqueSpiritAndSpiritReservationEfficiency", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2704225257] = { "+(40-60) to Spirit" }, [53386210] = { "(6-10)% increased Spirit Reservation Efficiency" }, } }, + ["UniqueKulemakElementalDamageEleAilmentDuration_1"] = { type = "Prefix", affix = "", "(10-20)% increased Duration of Elemental Ailments on Enemies", "(100-160)% increased Elemental Damage", statOrder = { 1615, 1724 }, level = 1, group = "UniqueElementalDamageAndDurationOfEleAilments", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "elemental" }, tradeHashes = { [2604619892] = { "(10-20)% increased Duration of Elemental Ailments on Enemies" }, [3141070085] = { "(100-160)% increased Elemental Damage" }, } }, + ["AbyssModBootsUlamanSuffixLifeRegenMoving"] = { type = "Suffix", affix = "of Ulaman", "(40-50)% increased Life Regeneration Rate while moving", statOrder = { 7503 }, level = 65, group = "LifeRegenerationPlusPercentWhileMoving", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2116424886] = { "(40-50)% increased Life Regeneration Rate while moving" }, } }, + ["GenesisTreeAmuletColdDamageAsPortionOfDamage"] = { type = "Prefix", affix = "Tul's", "Gain (10-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1673 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "physical_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [758893621] = { "Gain (10-20)% of Physical Damage as Extra Cold Damage" }, } }, + ["GenesisTreeAmuletAnaemiaOnHit"] = { type = "Prefix", affix = "Uul-Netol's", "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies", statOrder = { 4314, 4314.1 }, level = 1, group = "AnaemiaOnHit", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical" }, tradeHashes = { [971590056] = { "Inflict Anaemia on Hit", "Anaemia allows +(2-3) Corrupted Blood debuffs to be inflicted on enemies" }, } }, + ["GenesisTreeFireSpellBaseCriticalChance"] = { type = "Suffix", affix = "of Xoph", "+(4-5)% to Fire Spell Critical Hit Chance", statOrder = { 6567 }, level = 1, group = "FireSpellBaseCriticalChance", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "caster_critical", "elemental", "fire", "caster", "critical" }, tradeHashes = { [3399401168] = { "+(4-5)% to Fire Spell Critical Hit Chance" }, } }, + ["GenesisTreeAdditionalMaximumSeals"] = { type = "Suffix", affix = "of Esh", "Sealed Skills have +1 to maximum Seals", statOrder = { 4715 }, level = 1, group = "AdditionalMaximumSeals", weightKey = { "ring", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [4147510958] = { "Sealed Skills have +1 to maximum Seals" }, } }, + ["GenesisTreeBeltMinionAdditionalProjectileChance"] = { type = "Suffix", affix = "of Scattering", "Minions have +(50-100)% Surpassing chance to fire an additional Projectile", statOrder = { 8984 }, level = 1, group = "MinionAdditionalProjectileChance", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1797815732] = { "Minions have +(50-100)% Surpassing chance to fire an additional Projectile" }, } }, + ["GenesisTreeRingMaximumElementalInfusion"] = { type = "Suffix", affix = "of Amplification", "+1 to maximum number of Elemental Infusions", statOrder = { 8840 }, level = 1, group = "MaximumElementalInfusion", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental" }, tradeHashes = { [4097212302] = { "+1 to maximum number of Elemental Infusions" }, } }, + ["GenesisTreeBeltSealGainFrequency"] = { type = "Suffix", affix = "of Expectation", "Sealed Skills have (21-35)% increased Seal gain frequency", statOrder = { 9759 }, level = 1, group = "SealGainFrequency", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3384867265] = { "Sealed Skills have (21-35)% increased Seal gain frequency" }, } }, + ["GenesisTreeRingOfferingEffect"] = { type = "Prefix", affix = "Dedicated", "Offering Skills have (23-30)% increased Buff effect", statOrder = { 3717 }, level = 1, group = "OfferingEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3191479793] = { "Offering Skills have (23-30)% increased Buff effect" }, } }, + ["GenesisTreeRingTemporaryMinionLimit"] = { type = "Suffix", affix = "of Multitudes", "Temporary Minion Skills have +1 to Limit of Minions summoned", statOrder = { 10206 }, level = 1, group = "TemporaryMinionLimit", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1058934731] = { "Temporary Minion Skills have +1 to Limit of Minions summoned" }, } }, + ["GenesisTreeRingMinionArmourBreak"] = { type = "Prefix", affix = "Scratching", "Minions Break Armour equal to (2-4)% of Physical damage dealt", statOrder = { 8965 }, level = 1, group = "MinionArmourBreak", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical", "minion" }, tradeHashes = { [195270549] = { "Minions Break Armour equal to (2-4)% of Physical damage dealt" }, } }, + ["GenesisTreeRingMinionAilmentMagnitude"] = { type = "Prefix", affix = "Contaminating", "Minions have (35-45)% increased Magnitude of Damaging Ailments", statOrder = { 8977 }, level = 1, group = "MinionDamagingAilments", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [953593695] = { "Minions have (35-45)% increased Magnitude of Damaging Ailments" }, } }, + ["GenesisTreeRingCommandSkillSpeed"] = { type = "Suffix", affix = "of Punctuality", "Minions have (20-30)% increased Skill Speed with Command Skills", statOrder = { 8990 }, level = 1, group = "MinionCommandSkillSpeed", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion_speed", "speed", "minion" }, tradeHashes = { [73032170] = { "Minions have (20-30)% increased Skill Speed with Command Skills" }, } }, + ["GenesisTreeRingMinionCooldownRecovery"] = { type = "Suffix", affix = "of Invigoration", "Minions have (21-29)% increased Cooldown Recovery Rate", statOrder = { 8994 }, level = 1, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1691403182] = { "Minions have (21-29)% increased Cooldown Recovery Rate" }, } }, + ["GenesisTreeRingMinionPuppetMaster"] = { type = "Suffix", affix = "of the Cabal", "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill", statOrder = { 10161 }, level = 1, group = "MinionGainPuppetMasterOnCommand", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [2840930496] = { "(40-50)% Surpassing Chance to gain a Puppet Master stack whenever you use a Command Skill" }, } }, + ["GenesisTreeRingSpellDamageAsExtraLightning"] = { type = "Prefix", affix = "Storm Chaser's", "Gain (8-12)% of Damage as Extra Lightning Damage with Spells", statOrder = { 869 }, level = 1, group = "SpellDamageGainedAsLightning", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [323800555] = { "Gain (8-12)% of Damage as Extra Lightning Damage with Spells" }, } }, + ["GenesisTreeRingSpellDamageAsExtraFire"] = { type = "Prefix", affix = "Fire Breather's", "Gain (8-12)% of Damage as Extra Fire Damage with Spells", statOrder = { 863 }, level = 1, group = "SpellDamageGainedAsFire", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [1321054058] = { "Gain (8-12)% of Damage as Extra Fire Damage with Spells" }, } }, + ["GenesisTreeRingSpellDamageAsExtraCold"] = { type = "Prefix", affix = "Tempest Rider's", "Gain (8-12)% of Damage as Extra Cold Damage with Spells", statOrder = { 867 }, level = 1, group = "SpellDamageGainedAsCold", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [825116955] = { "Gain (8-12)% of Damage as Extra Cold Damage with Spells" }, } }, + ["GenesisTreeRingSpellDamageAsExtraChaos"] = { type = "Prefix", affix = "Soul Stealer's", "Spells Gain (8-12)% of Damage as extra Chaos Damage", statOrder = { 9201 }, level = 1, group = "SpellDamageGainedAsChaos", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "chaos_warband", "damage" }, tradeHashes = { [555706343] = { "Spells Gain (8-12)% of Damage as extra Chaos Damage" }, } }, + ["GenesisTreeRingDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Burdensome", "(8-12)% of Damage is taken from Mana before Life", statOrder = { 2470 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHashes = { [458438597] = { "(8-12)% of Damage is taken from Mana before Life" }, } }, + ["GenesisTreeRingExposureEffect"] = { type = "Suffix", affix = "of Drenching", "(25-35)% increased Exposure Effect", statOrder = { 6510 }, level = 1, group = "ElementalExposureEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2074866941] = { "(25-35)% increased Exposure Effect" }, } }, + ["GenesisTreeRingMaximumInvocationEnergy"] = { type = "Suffix", affix = "of Vastness", "Invocated skills have (25-35)% increased Maximum Energy", statOrder = { 7361 }, level = 1, group = "InvocationMaximumEnergy", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1615901249] = { "Invocated skills have (25-35)% increased Maximum Energy" }, } }, + ["GenesisTreeRingSpellImpaleEffect"] = { type = "Suffix", affix = "of Lancing", "(20-30)% increased Magnitude of Impales inflicted with Spells", statOrder = { 9986 }, level = 1, group = "SpellImpaleEffect", weightKey = { "amulet", "belt", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "physical", "caster" }, tradeHashes = { [4259875040] = { "(20-30)% increased Magnitude of Impales inflicted with Spells" }, } }, + ["GenesisTreeBeltFireDamageIfFireInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Erupting", "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", statOrder = { 6538 }, level = 1, group = "FireDamageIfFireInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire" }, tradeHashes = { [3858572996] = { "(41-59)% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltLightningDamageIfLightningInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Energising", "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", statOrder = { 7518 }, level = 1, group = "LightningDamageIfLightningInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "lightning" }, tradeHashes = { [797289402] = { "(41-59)% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltColdDamageIfColdInfusionCollectedLast8Seconds"] = { type = "Prefix", affix = "Glacial", "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds", statOrder = { 5661 }, level = 1, group = "ColdDamageIfColdInfusionCollectedLast8Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "cold" }, tradeHashes = { [1002535626] = { "(41-59)% increased Cold Damage if you've collected a Cold Infusion in the last 8 seconds" }, } }, + ["GenesisTreeBeltArchonEffect"] = { type = "Prefix", affix = "Unshackling", "(20-39)% increased effect of Archon Buffs on you", statOrder = { 4335 }, level = 1, group = "ArchonEffect", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1180552088] = { "(20-39)% increased effect of Archon Buffs on you" }, } }, + ["GenesisTreeBeltChanceToNotConsumeInfusionIfLostArchonPast6Seconds"] = { type = "Suffix", affix = "of Reverberation", "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds", statOrder = { 5551 }, level = 1, group = "ChanceToNotConsumeInfusionIfLostArchonPast6Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHashes = { [2150661403] = { "Skills have (40-50)% chance to not remove Elemental Infusions but still count as consuming them if you've lost an Archon Buff in the past 6 seconds" }, } }, + ["GenesisTreeBeltSpellElementalAilmentMagnitude"] = { type = "Suffix", affix = "of Imbuing", "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells", statOrder = { 9984 }, level = 1, group = "SpellElementalAilmentMagnitude", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "caster" }, tradeHashes = { [3621874554] = { "(30-40)% increased Magnitude of Elemental Ailments you inflict with Spells" }, } }, + ["GenesisTreeBeltArchonDuration"] = { type = "Suffix", affix = "of Exertion", "(40-50)% increased Archon Buff duration", statOrder = { 4334 }, level = 1, group = "ArchonDuration", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [2158617060] = { "(40-50)% increased Archon Buff duration" }, } }, + ["GenesisTreeBeltArchonUndeathOnOfferingUse"] = { type = "Suffix", affix = "of Unending", "(35-50)% to gain Archon of Undeath when you create an Offering", statOrder = { 5388 }, level = 1, group = "ArchonUndeathOnOfferingUse", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [933355817] = { "(35-50)% to gain Archon of Undeath when you create an Offering" }, } }, + ["GenesisTreeBeltMinionDamagePerDifferentCommandSkillUsedLast15Seconds"] = { type = "Prefix", affix = "Instructor's", "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds", statOrder = { 8999 }, level = 1, group = "MinionDamagePerDifferentCommandSkillUsedLast15Seconds", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion_damage", "damage", "minion" }, tradeHashes = { [3526763442] = { "(7-12)% increased Minion Damage per different Command Skill used in the past 15 seconds" }, } }, + ["GenesisTreeBeltMinionsGiganticRevivedRecently"] = { type = "Prefix", affix = "Monstrous", "Your Minions are Gigantic if they have Revived Recently", statOrder = { 9061 }, level = 1, group = "MinionsGiganticRevivedRecently", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [1265767008] = { "Your Minions are Gigantic if they have Revived Recently" }, } }, + ["GenesisTreeBeltDamageRemovedFromSpectres"] = { type = "Prefix", affix = "Underling's", "5% of Damage from Hits is taken from your Spectres' Life before you", statOrder = { 6022 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [54812069] = { "5% of Damage from Hits is taken from your Spectres' Life before you" }, } }, + ["GenesisTreeBeltMinionReservationEfficiency"] = { type = "Suffix", affix = "of Coherence", "(7-10)% increased Reservation Efficiency of Minion Skills", statOrder = { 9726 }, level = 1, group = "MinionReservationEfficiency", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [1805633363] = { "(7-10)% increased Reservation Efficiency of Minion Skills" }, } }, + ["GenesisTreeBeltMinionMeleeSplash"] = { type = "Suffix", affix = "of Ravaging", "Supported Minions' Strikes have Melee Splash", statOrder = { 9032 }, level = 1, group = "MinionMeleeSplash", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { }, tradeHashes = { [3249412463] = { "Supported Minions' Strikes have Melee Splash" }, } }, + ["GenesisTreeBeltMinionDuration"] = { type = "Suffix", affix = "of Binding", "(35-49)% increased Minion Duration", statOrder = { 4716 }, level = 1, group = "MinionDuration", weightKey = { "amulet", "ring", "breach_desecration", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "minion" }, tradeHashes = { [999511066] = { "(35-49)% increased Minion Duration" }, } }, + ["ConvertedAbyssModQuarterstaffChaosAndAilment1"] = { type = "Prefix", affix = "Lich's", "(86-99)% increased Chaos Damage", "(14-23)% increased Magnitude of Ailments you inflict", statOrder = { 875, 4249 }, level = 65, group = "ChaosDamageAndAilmentMagnitude", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [736967255] = { "(86-99)% increased Chaos Damage" }, [1303248024] = { "(14-23)% increased Magnitude of Ailments you inflict" }, } }, } \ No newline at end of file diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index 9e3e0333b..22656102c 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -8269,10 +8269,6 @@ return { }, }, ["1782086450"] = { - ["Focus"] = { - ["max"] = 30, - ["min"] = 20, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10114,6 +10110,15 @@ return { ["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", + }, + }, ["1004011302"] = { ["AnyJewel"] = { ["max"] = 5, @@ -10170,6 +10175,15 @@ return { }, ["usePositiveSign"] = true, }, + ["1014398896"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1014398896", + ["text"] = "#% increased Spell Damage during any Flask Effect", + ["type"] = "explicit", + }, + }, ["101878827"] = { ["1HWeapon"] = { ["max"] = 80, @@ -10212,6 +10226,24 @@ return { ["type"] = "explicit", }, }, + ["1028592286"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, ["1037193709"] = { ["1HMace"] = { ["max"] = 102, @@ -10278,6 +10310,24 @@ return { ["type"] = "explicit", }, }, + ["1045789614"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, ["1050105434"] = { ["1HWeapon"] = { ["max"] = 164, @@ -10336,6 +10386,16 @@ return { }, ["usePositiveSign"] = true, }, + ["1058934731"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1058934731", + ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1060572482"] = { ["AnyJewel"] = { ["max"] = 25, @@ -10433,6 +10493,15 @@ return { ["type"] = "explicit", }, }, + ["1102738251"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", + ["type"] = "explicit", + }, + }, ["1104825894"] = { ["AnyJewel"] = { ["max"] = 15, @@ -10540,6 +10609,15 @@ return { ["type"] = "explicit", }, }, + ["1158842087"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1158842087", + ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + }, ["1160637284"] = { ["AnyJewel"] = { ["max"] = 3, @@ -10591,6 +10669,28 @@ return { ["type"] = "explicit", }, }, + ["1177404658"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, ["1181419800"] = { ["AnyJewel"] = { ["max"] = 16, @@ -10610,11 +10710,11 @@ return { }, ["1181501418"] = { ["AnyJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { @@ -10662,11 +10762,11 @@ return { }, ["1202301673"] = { ["1HWeapon"] = { - ["max"] = 5, + ["max"] = 4, ["min"] = 1, }, ["2HWeapon"] = { - ["max"] = 7, + ["max"] = 5, ["min"] = 1, }, ["Amulet"] = { @@ -10674,19 +10774,19 @@ return { ["min"] = 1, }, ["Bow"] = { - ["max"] = 5, + ["max"] = 4, ["min"] = 1, }, ["Crossbow"] = { - ["max"] = 7, + ["max"] = 5, ["min"] = 2, }, ["Quiver"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["Spear"] = { - ["max"] = 5, + ["max"] = 4, ["min"] = 1, }, ["specialCaseData"] = { @@ -10890,6 +10990,15 @@ return { ["type"] = "explicit", }, }, + ["1265767008"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1265767008", + ["text"] = "Your Minions are Gigantic if they have Revived Recently", + ["type"] = "explicit", + }, + }, ["1266413530"] = { ["AnyJewel"] = { ["max"] = 2, @@ -11057,6 +11166,15 @@ return { ["type"] = "explicit", }, }, + ["1321054058"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1321054058", + ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", + ["type"] = "explicit", + }, + }, ["1321104829"] = { ["AnyJewel"] = { ["max"] = 7, @@ -11091,6 +11209,15 @@ return { ["type"] = "explicit", }, }, + ["1335369947"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1335369947", + ["text"] = "#% increased Explicit Physical Modifier magnitudes", + ["type"] = "explicit", + }, + }, ["1337740333"] = { ["AnyJewel"] = { ["max"] = 2, @@ -11108,6 +11235,16 @@ return { ["type"] = "explicit", }, }, + ["1347539079"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1347539079", + ["text"] = "#% Surpassing chance to fire an additional Projectile", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1352561456"] = { ["AnyJewel"] = { ["max"] = 10, @@ -11306,6 +11443,15 @@ return { ["type"] = "explicit", }, }, + ["1416406066"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1416406066", + ["text"] = "#% increased Spirit", + ["type"] = "explicit", + }, + }, ["1417267954"] = { ["AnyJewel"] = { ["max"] = 2, @@ -11375,6 +11521,15 @@ return { ["type"] = "explicit", }, }, + ["1443502073"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1443502073", + ["text"] = "#% increased Effect of Prefixes", + ["type"] = "explicit", + }, + }, ["1444556985"] = { ["Amulet"] = { ["max"] = 24, @@ -11396,6 +11551,15 @@ return { ["type"] = "explicit", }, }, + ["145581225"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_145581225", + ["text"] = "#% increased Cast Speed during any Flask Effect", + ["type"] = "explicit", + }, + }, ["1459321413"] = { ["AnyJewel"] = { ["max"] = 10, @@ -11430,6 +11594,53 @@ return { ["type"] = "explicit", }, }, + ["1484026495"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["1485480327"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, + ["1493485657"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1493485657", + ["text"] = "Spells have #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, ["1494950893"] = { ["AnyJewel"] = { ["max"] = 3, @@ -11530,6 +11741,15 @@ return { ["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", + }, + }, ["1514844108"] = { ["AnyJewel"] = { ["max"] = 10, @@ -11581,6 +11801,23 @@ return { ["type"] = "explicit", }, }, + ["1544773869"] = { + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 4, + }, + ["Crossbow"] = { + ["max"] = 40, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1544773869", + ["text"] = "#% increased Cooldown Recovery Rate for Grenade Skills", + ["type"] = "explicit", + }, + }, ["1545858329"] = { ["1HWeapon"] = { ["max"] = 5, @@ -11608,14 +11845,6 @@ return { ["usePositiveSign"] = true, }, ["1552666713"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11624,6 +11853,15 @@ return { ["type"] = "explicit", }, }, + ["1568848828"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1568848828", + ["text"] = "Recover # Runic Ward when you Block", + ["type"] = "explicit", + }, + }, ["1569101201"] = { ["AnyJewel"] = { ["max"] = 20, @@ -11846,6 +12084,24 @@ return { ["type"] = "explicit", }, }, + ["1615901249"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, ["1653682082"] = { ["AnyJewel"] = { ["max"] = 2, @@ -11909,6 +12165,25 @@ return { }, ["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", + }, + }, ["1692879867"] = { ["Chest"] = { ["max"] = -36, @@ -12030,6 +12305,15 @@ return { ["type"] = "explicit", }, }, + ["174664100"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_174664100", + ["text"] = "Minions have #% increased Movement Speed", + ["type"] = "explicit", + }, + }, ["1754445556"] = { ["Gloves"] = { ["max"] = 37.5, @@ -12120,6 +12404,15 @@ return { ["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", + }, + }, ["1777421941"] = { ["AnyJewel"] = { ["max"] = 3, @@ -12146,14 +12439,6 @@ return { ["max"] = 15, ["min"] = 10, }, - ["Chest"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["Focus"] = { - ["max"] = 55, - ["min"] = 26, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12179,6 +12464,16 @@ return { ["type"] = "explicit", }, }, + ["1797815732"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1797815732", + ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1798257884"] = { ["1HWeapon"] = { ["max"] = 119, @@ -12230,7 +12525,16 @@ return { ["type"] = "explicit", }, }, - ["1811130680"] = { + ["1805633363"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["type"] = "explicit", + }, + }, + ["1811130680"] = { ["ManaFlask"] = { ["max"] = 100, ["min"] = 61, @@ -12243,6 +12547,16 @@ return { ["type"] = "explicit", }, }, + ["1823942939"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1823942939", + ["text"] = "# to maximum number of Summoned Ballista Totems", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1829102168"] = { ["AnyJewel"] = { ["max"] = 10, @@ -12315,6 +12629,15 @@ return { ["type"] = "explicit", }, }, + ["1840985759"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", + ["type"] = "explicit", + }, + }, ["1846980580"] = { ["AnyJewel"] = { ["max"] = 1, @@ -12384,6 +12707,15 @@ return { ["type"] = "explicit", }, }, + ["185580205"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_185580205", + ["text"] = "Charms gain # charge per Second", + ["type"] = "explicit", + }, + }, ["1869147066"] = { ["AnyJewel"] = { ["max"] = 20, @@ -12601,6 +12933,24 @@ return { ["type"] = "explicit", }, }, + ["195270549"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, ["1967051901"] = { ["2HWeapon"] = { ["max"] = 1, @@ -12618,6 +12968,15 @@ return { ["type"] = "explicit", }, }, + ["1972391381"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1972391381", + ["text"] = "#% increased Explicit Resistance Modifier magnitudes", + ["type"] = "explicit", + }, + }, ["1978899297"] = { ["Shield"] = { ["max"] = 2, @@ -12632,6 +12991,33 @@ return { }, ["usePositiveSign"] = true, }, + ["1980802737"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, ["1994296038"] = { ["AnyJewel"] = { ["max"] = 3, @@ -12729,6 +13115,16 @@ return { ["type"] = "explicit", }, }, + ["2039822488"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2039822488", + ["text"] = "#% to Maximum Quality", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2056107438"] = { ["AnyJewel"] = { ["max"] = 7, @@ -12763,6 +13159,15 @@ return { ["type"] = "explicit", }, }, + ["2074866941"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2074866941", + ["text"] = "#% increased Exposure Effect", + ["type"] = "explicit", + }, + }, ["2077117738"] = { ["AnyJewel"] = { ["max"] = 7, @@ -12789,6 +13194,15 @@ return { ["type"] = "explicit", }, }, + ["2083058281"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2083058281", + ["text"] = "Enemies you Mark take #% increased Damage", + ["type"] = "explicit", + }, + }, ["210067635"] = { ["1HMace"] = { ["max"] = 28, @@ -12838,6 +13252,24 @@ return { ["type"] = "explicit", }, }, + ["2101383955"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, ["2106365538"] = { ["Amulet"] = { ["max"] = 50, @@ -12972,7 +13404,7 @@ return { }, ["2144192055"] = { ["Ring"] = { - ["max"] = 203, + ["max"] = 233, ["min"] = 8, }, ["specialCaseData"] = { @@ -13001,6 +13433,24 @@ return { ["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", + }, + }, + ["2158617060"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2158617060", + ["text"] = "#% increased Archon Buff duration", + ["type"] = "explicit", + }, + }, ["2160282525"] = { ["Boots"] = { ["max"] = 60, @@ -13057,6 +13507,15 @@ return { ["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", + }, + }, ["2194114101"] = { ["AnyJewel"] = { ["max"] = 16, @@ -13078,6 +13537,15 @@ return { ["type"] = "explicit", }, }, + ["2200293569"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", + ["type"] = "explicit", + }, + }, ["2202308025"] = { ["AnyJewel"] = { ["max"] = 3, @@ -13200,6 +13668,24 @@ return { ["type"] = "explicit", }, }, + ["2250681686"] = { + ["2HWeapon"] = { + ["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, + }, ["2254480358"] = { ["1HWeapon"] = { ["max"] = 5, @@ -13277,6 +13763,24 @@ return { ["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", + }, + }, ["2320654813"] = { ["AnyJewel"] = { ["max"] = 7, @@ -13333,33 +13837,29 @@ return { }, }, ["2339757871"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, ["Boots"] = { - ["max"] = 45, - ["min"] = 26, + ["max"] = 19, + ["min"] = 16, + }, + ["Chest"] = { + ["max"] = 27, + ["min"] = 16, }, ["Focus"] = { - ["max"] = 55, - ["min"] = 26, + ["max"] = 27, + ["min"] = 16, }, ["Gloves"] = { - ["max"] = 45, - ["min"] = 26, + ["max"] = 19, + ["min"] = 16, }, ["Helmet"] = { - ["max"] = 45, - ["min"] = 26, + ["max"] = 19, + ["min"] = 16, }, ["Shield"] = { - ["max"] = 55, - ["min"] = 26, + ["max"] = 27, + ["min"] = 16, }, ["specialCaseData"] = { }, @@ -13467,6 +13967,15 @@ return { ["type"] = "explicit", }, }, + ["2392260628"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", + ["type"] = "explicit", + }, + }, ["2392824305"] = { ["AnyJewel"] = { ["max"] = 12, @@ -13501,6 +14010,15 @@ return { ["type"] = "explicit", }, }, + ["2416650879"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2416650879", + ["text"] = "#% increased Rage Cost Efficiency", + ["type"] = "explicit", + }, + }, ["2416869319"] = { ["LifeFlask"] = { ["max"] = 80, @@ -13594,6 +14112,15 @@ return { ["type"] = "explicit", }, }, + ["2456226238"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2456226238", + ["text"] = "Recover #% of your maximum Mana when an Enemy dies in your Presence", + ["type"] = "explicit", + }, + }, ["2456523742"] = { ["AnyJewel"] = { ["max"] = 20, @@ -13620,6 +14147,10 @@ return { ["max"] = 200, ["min"] = 25, }, + ["Quiver"] = { + ["max"] = 60, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13646,6 +14177,15 @@ return { ["type"] = "explicit", }, }, + ["2475221757"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2475221757", + ["text"] = "#% increased Effect of Suffixes", + ["type"] = "explicit", + }, + }, ["2480498143"] = { ["AnyJewel"] = { ["max"] = 6, @@ -13825,6 +14365,23 @@ return { ["type"] = "explicit", }, }, + ["2523933828"] = { + ["AnyJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2523933828", + ["text"] = "#% increased Armour, Evasion and Energy Shield from Equipped Shield", + ["type"] = "explicit", + }, + }, ["2527686725"] = { ["AnyJewel"] = { ["max"] = 15, @@ -13892,11 +14449,11 @@ return { ["2557965901"] = { ["Gloves"] = { ["max"] = 9.9, - ["min"] = 5, + ["min"] = 6, }, ["Ring"] = { ["max"] = 7.9, - ["min"] = 5, + ["min"] = 6, }, ["specialCaseData"] = { }, @@ -13923,6 +14480,15 @@ return { ["type"] = "explicit", }, }, + ["2567751411"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2567751411", + ["text"] = "Warcry Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["2580617872"] = { ["AnyJewel"] = { ["max"] = -2, @@ -13941,6 +14507,16 @@ return { ["type"] = "explicit", }, }, + ["258119672"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_258119672", + ["text"] = "# metre to Dodge Roll distance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2582079000"] = { ["specialCaseData"] = { ["overrideModLinePlural"] = "+# Charm Slots", @@ -13986,10 +14562,19 @@ return { ["type"] = "explicit", }, }, - ["2637470878"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["262946222"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_262946222", + ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", + ["type"] = "explicit", + }, + }, + ["2637470878"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, @@ -14029,6 +14614,15 @@ return { ["type"] = "explicit", }, }, + ["2653231923"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2653231923", + ["text"] = "#% increased Mana Cost Efficiency of Spells", + ["type"] = "explicit", + }, + }, ["2653955271"] = { ["AnyJewel"] = { ["max"] = 10, @@ -14178,6 +14772,16 @@ return { ["type"] = "explicit", }, }, + ["2704225257"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2704225257", + ["text"] = "# to Spirit", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2704905000"] = { ["AnyJewel"] = { ["max"] = 7, @@ -14229,6 +14833,15 @@ return { ["type"] = "explicit", }, }, + ["2714890129"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2714890129", + ["text"] = "Life Leech can Overflow Maximum Life", + ["type"] = "explicit", + }, + }, ["2720982137"] = { ["AnyJewel"] = { ["max"] = 25, @@ -14246,6 +14859,15 @@ return { ["type"] = "explicit", }, }, + ["2723294374"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2723294374", + ["text"] = "Attacks have added Physical damage equal to #% of maximum Life", + ["type"] = "explicit", + }, + }, ["2726713579"] = { ["AnyJewel"] = { ["max"] = 1, @@ -14317,6 +14939,15 @@ return { ["type"] = "explicit", }, }, + ["2749595652"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2749595652", + ["text"] = "#% chance for Skills to retain 40% of Glory on use", + ["type"] = "explicit", + }, + }, ["2768835289"] = { ["1HWeapon"] = { ["max"] = 119, @@ -14650,6 +15281,16 @@ return { ["type"] = "explicit", }, }, + ["2897413282"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2897413282", + ["text"] = "# to all Attributes", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["2901986750"] = { ["Amulet"] = { ["max"] = 18, @@ -14785,6 +15426,24 @@ return { ["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", + }, + }, + ["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", + }, + }, ["2954360902"] = { ["AnyJewel"] = { ["max"] = 2, @@ -15120,56 +15779,56 @@ return { }, ["3035140377"] = { ["Bow"] = { - ["max"] = 3, - ["min"] = 3, + ["max"] = 2, + ["min"] = 2, }, ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Dagger"] = { ["max"] = 3, ["min"] = 3, }, + ["Dagger"] = { + ["max"] = 2, + ["min"] = 2, + }, ["Flail"] = { - ["max"] = 3, - ["min"] = 3, + ["max"] = 2, + ["min"] = 2, }, ["One Hand Axe"] = { - ["max"] = 3, - ["min"] = 3, + ["max"] = 2, + ["min"] = 2, }, ["One Hand Mace"] = { - ["max"] = 3, - ["min"] = 3, + ["max"] = 2, + ["min"] = 2, }, ["One Hand Sword"] = { - ["max"] = 3, - ["min"] = 3, + ["max"] = 2, + ["min"] = 2, }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Spear"] = { ["max"] = 3, ["min"] = 3, }, + ["Spear"] = { + ["max"] = 2, + ["min"] = 2, + }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 3, + ["min"] = 3, }, ["Two Hand Axe"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 3, + ["min"] = 3, }, ["Two Hand Mace"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 3, + ["min"] = 3, }, ["Two Hand Sword"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 3, + ["min"] = 3, }, ["specialCaseData"] = { }, @@ -15223,6 +15882,16 @@ return { ["type"] = "explicit", }, }, + ["30642521"] = { + ["specialCaseData"] = { + ["overrideModLineSingular"] = "You can apply an additional Curse", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_30642521", + ["text"] = "You can apply # additional Curses", + ["type"] = "explicit", + }, + }, ["3065378291"] = { ["AnyJewel"] = { ["max"] = 4, @@ -15291,6 +15960,15 @@ return { ["type"] = "explicit", }, }, + ["310246444"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_310246444", + ["text"] = "#% increased Damage while Leeching", + ["type"] = "explicit", + }, + }, ["3106718406"] = { ["AnyJewel"] = { ["max"] = 2, @@ -15308,6 +15986,15 @@ return { ["type"] = "explicit", }, }, + ["3107707789"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", + ["type"] = "explicit", + }, + }, ["3113764475"] = { ["AnyJewel"] = { ["max"] = 5, @@ -15342,6 +16029,24 @@ return { ["type"] = "explicit", }, }, + ["3120508478"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, ["3141070085"] = { ["AnyJewel"] = { ["max"] = 15, @@ -15359,6 +16064,15 @@ return { ["type"] = "explicit", }, }, + ["3143918757"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3143918757", + ["text"] = "#% increased Glory generation", + ["type"] = "explicit", + }, + }, ["3146310524"] = { ["AnyJewel"] = { ["max"] = 1, @@ -15514,6 +16228,15 @@ return { ["type"] = "explicit", }, }, + ["3191479793"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3191479793", + ["text"] = "Offering Skills have #% increased Buff effect", + ["type"] = "explicit", + }, + }, ["3192728503"] = { ["AnyJewel"] = { ["max"] = 15, @@ -15584,6 +16307,15 @@ return { ["type"] = "explicit", }, }, + ["323800555"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_323800555", + ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", + ["type"] = "explicit", + }, + }, ["3243034867"] = { ["specialCaseData"] = { }, @@ -15593,6 +16325,24 @@ return { ["type"] = "explicit", }, }, + ["3249412463"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, ["3256879910"] = { ["AnyJewel"] = { ["max"] = 2, @@ -16033,6 +16783,16 @@ return { ["type"] = "explicit", }, }, + ["3336230913"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3336230913", + ["text"] = "# to maximum Runic Ward", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3336890334"] = { ["1HMace"] = { ["max"] = 123, @@ -16201,6 +16961,15 @@ return { ["type"] = "explicit", }, }, + ["3384867265"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3384867265", + ["text"] = "Sealed Skills have #% increased Seal gain frequency", + ["type"] = "explicit", + }, + }, ["3386297724"] = { ["AnyJewel"] = { ["max"] = 3, @@ -16235,6 +17004,16 @@ return { ["type"] = "explicit", }, }, + ["3393628375"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3393628375", + ["text"] = "#% to Cold and Chaos Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3394832998"] = { ["AnyJewel"] = { ["max"] = 7, @@ -16286,6 +17065,25 @@ return { ["type"] = "explicit", }, }, + ["3398787959"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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, + }, ["3401186585"] = { ["AnyJewel"] = { ["max"] = 15, @@ -16303,6 +17101,15 @@ return { ["type"] = "explicit", }, }, + ["3407849389"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", + ["type"] = "explicit", + }, + }, ["3409275777"] = { ["AnyJewel"] = { ["max"] = 3, @@ -16354,52 +17161,106 @@ return { ["type"] = "explicit", }, }, - ["3473929743"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["3422093970"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3473929743", - ["text"] = "#% increased Pin Buildup", + ["id"] = "explicit.stat_3422093970", + ["text"] = "#% chance for Remnants you pick up to count as picking up an additional Remnant", ["type"] = "explicit", }, }, - ["3484657501"] = { - ["Boots"] = { - ["max"] = 160, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 276, - ["min"] = 4, - }, - ["Gloves"] = { - ["max"] = 160, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 202, + ["3429148113"] = { + ["AnyJewel"] = { + ["max"] = 15, ["min"] = 8, }, - ["Shield"] = { - ["max"] = 256, + ["RadiusJewel"] = { + ["max"] = 15, ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3484657501", - ["text"] = "# to Armour (Local)", + ["id"] = "explicit.stat_3429148113", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "explicit", }, - ["usePositiveSign"] = true, + }, + ["3465022881"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3473929743"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["3484657501"] = { + ["Boots"] = { + ["max"] = 190, + ["min"] = 9, + }, + ["Chest"] = { + ["max"] = 310, + ["min"] = 3, + }, + ["Gloves"] = { + ["max"] = 190, + ["min"] = 9, + }, + ["Helmet"] = { + ["max"] = 221, + ["min"] = 9, + }, + ["Shield"] = { + ["max"] = 277, + ["min"] = 9, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, }, ["3485067555"] = { ["AnyJewel"] = { @@ -16449,6 +17310,15 @@ return { ["type"] = "explicit", }, }, + ["3518449420"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3518449420", + ["text"] = "#% chance to gain Nature's Archon when your Plants Overgrow", + ["type"] = "explicit", + }, + }, ["3523867985"] = { ["Boots"] = { ["max"] = 110, @@ -16474,6 +17344,15 @@ return { ["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", + }, + }, ["3544800472"] = { ["AnyJewel"] = { ["max"] = 20, @@ -16491,6 +17370,16 @@ return { ["type"] = "explicit", }, }, + ["3552135623"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3556824919"] = { ["Amulet"] = { ["max"] = 39, @@ -16516,6 +17405,15 @@ return { ["type"] = "explicit", }, }, + ["3574578302"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3574578302", + ["text"] = "#% increased Explicit Fire Modifier magnitudes", + ["type"] = "explicit", + }, + }, ["3579898587"] = { ["AnyJewel"] = { ["max"] = 2, @@ -16554,6 +17452,15 @@ return { ["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", + }, + }, ["3590792340"] = { ["AnyJewel"] = { ["max"] = 20, @@ -16588,6 +17495,24 @@ return { ["type"] = "explicit", }, }, + ["3621874554"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, ["3628935286"] = { ["AnyJewel"] = { ["max"] = 10, @@ -16708,6 +17633,16 @@ return { ["type"] = "explicit", }, }, + ["3655769732"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3655769732", + ["text"] = "#% to Quality of all Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3665922113"] = { ["AnyJewel"] = { ["max"] = 3, @@ -16935,6 +17870,15 @@ return { ["type"] = "explicit", }, }, + ["3742865955"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3742865955", + ["text"] = "Minions deal #% increased Damage with Command Skills", + ["type"] = "explicit", + }, + }, ["3749502527"] = { ["specialCaseData"] = { }, @@ -17080,6 +18024,16 @@ return { ["type"] = "explicit", }, }, + ["378817135"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_378817135", + ["text"] = "#% to Fire and Chaos Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["3791899485"] = { ["AnyJewel"] = { ["max"] = 15, @@ -17114,6 +18068,15 @@ return { ["type"] = "explicit", }, }, + ["3814876985"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3814876985", + ["text"] = "#% chance to gain a Power Charge on Critical Hit", + ["type"] = "explicit", + }, + }, ["3821543413"] = { ["AnyJewel"] = { ["max"] = 3, @@ -17261,6 +18224,15 @@ return { ["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", + }, + }, ["3859848445"] = { ["AnyJewel"] = { ["max"] = 6, @@ -17295,6 +18267,15 @@ return { ["type"] = "explicit", }, }, + ["3868118796"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3868118796", + ["text"] = "Attacks Chain an additional time", + ["type"] = "explicit", + }, + }, ["387439868"] = { ["1HMace"] = { ["max"] = 100, @@ -17537,6 +18518,15 @@ return { }, ["usePositiveSign"] = true, }, + ["3984146263"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3984146263", + ["text"] = "Tempest Bells are destroyed after an additional # Hits", + ["type"] = "explicit", + }, + }, ["3984865854"] = { ["1HWeapon"] = { ["max"] = 65, @@ -17922,6 +18912,16 @@ return { }, ["usePositiveSign"] = true, }, + ["4097212302"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4097212302", + ["text"] = "# to maximum number of Elemental Infusions", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["4101445926"] = { ["Focus"] = { ["max"] = 20, @@ -18003,6 +19003,16 @@ return { ["type"] = "explicit", }, }, + ["4147510958"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4147510958", + ["text"] = "Sealed Skills have # to maximum Seals", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["4147897060"] = { ["AnyJewel"] = { ["max"] = 7, @@ -18246,6 +19256,15 @@ return { ["type"] = "explicit", }, }, + ["4246007234"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4246007234", + ["text"] = "#% increased Attack Damage while on Low Life", + ["type"] = "explicit", + }, + }, ["4258000627"] = { ["AnyJewel"] = { ["max"] = 1, @@ -18263,6 +19282,15 @@ return { ["type"] = "explicit", }, }, + ["4258524206"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4258524206", + ["text"] = "#% chance to build an additional Combo on Hit", + ["type"] = "explicit", + }, + }, ["4258720395"] = { ["AnyJewel"] = { ["max"] = 7, @@ -18280,6 +19308,24 @@ return { ["type"] = "explicit", }, }, + ["4259875040"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, ["427684353"] = { ["AnyJewel"] = { ["max"] = 16, @@ -18299,12 +19345,12 @@ return { }, ["429143663"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, @@ -18314,6 +19360,15 @@ return { ["type"] = "explicit", }, }, + ["434750362"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_434750362", + ["text"] = "#% increased Area of Effect for Attacks per 10 Intelligence", + ["type"] = "explicit", + }, + }, ["440490623"] = { ["AnyJewel"] = { ["max"] = 20, @@ -18629,23 +19684,23 @@ return { }, ["53045048"] = { ["Boots"] = { - ["max"] = 142, + ["max"] = 176, ["min"] = 6, }, ["Chest"] = { - ["max"] = 251, - ["min"] = 3, + ["max"] = 300, + ["min"] = 2, }, ["Gloves"] = { - ["max"] = 142, + ["max"] = 176, ["min"] = 6, }, ["Helmet"] = { - ["max"] = 181, + ["max"] = 207, ["min"] = 6, }, ["Shield"] = { - ["max"] = 232, + ["max"] = 261, ["min"] = 6, }, ["specialCaseData"] = { @@ -18691,46 +19746,82 @@ return { ["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", + }, + }, + ["54812069"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, + ["555706343"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_555706343", + ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", + ["type"] = "explicit", + }, + }, ["55876295"] = { ["1HMace"] = { ["max"] = 9.9, - ["min"] = 5, + ["min"] = 6, }, ["1HWeapon"] = { ["max"] = 9.9, - ["min"] = 5, + ["min"] = 6, }, ["2HMace"] = { ["max"] = 9.9, - ["min"] = 5, + ["min"] = 6, }, ["2HWeapon"] = { ["max"] = 9.9, - ["min"] = 5, + ["min"] = 6, }, ["Bow"] = { - ["max"] = 8.9, - ["min"] = 5, + ["max"] = 9.9, + ["min"] = 6, }, ["Crossbow"] = { - ["max"] = 8.9, - ["min"] = 5, + ["max"] = 9.9, + ["min"] = 6, }, ["Flail"] = { ["max"] = 9.9, - ["min"] = 5, + ["min"] = 6, }, ["Quarterstaff"] = { ["max"] = 9.9, - ["min"] = 5, + ["min"] = 6, }, ["Spear"] = { ["max"] = 9.9, - ["min"] = 5, + ["min"] = 6, }, ["Talisman"] = { ["max"] = 9.9, - ["min"] = 5, + ["min"] = 6, }, ["specialCaseData"] = { }, @@ -18782,6 +19873,15 @@ return { ["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", + }, + }, ["591105508"] = { ["1HWeapon"] = { ["max"] = 5, @@ -18876,6 +19976,15 @@ return { ["type"] = "explicit", }, }, + ["62849030"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_62849030", + ["text"] = "Critical Hits Poison the enemy", + ["type"] = "explicit", + }, + }, ["644456512"] = { ["Belt"] = { ["max"] = 25, @@ -18935,43 +20044,43 @@ return { ["669069897"] = { ["1HMace"] = { ["max"] = 8.9, - ["min"] = 4, + ["min"] = 5, }, ["1HWeapon"] = { ["max"] = 8.9, - ["min"] = 4, + ["min"] = 5, }, ["2HMace"] = { ["max"] = 8.9, - ["min"] = 4, + ["min"] = 5, }, ["2HWeapon"] = { ["max"] = 8.9, - ["min"] = 4, + ["min"] = 5, }, ["Bow"] = { - ["max"] = 7.9, - ["min"] = 4, + ["max"] = 8.9, + ["min"] = 5, }, ["Crossbow"] = { - ["max"] = 7.9, - ["min"] = 4, + ["max"] = 8.9, + ["min"] = 5, }, ["Flail"] = { ["max"] = 8.9, - ["min"] = 4, + ["min"] = 5, }, ["Quarterstaff"] = { ["max"] = 8.9, - ["min"] = 4, + ["min"] = 5, }, ["Spear"] = { ["max"] = 8.9, - ["min"] = 4, + ["min"] = 5, }, ["Talisman"] = { ["max"] = 8.9, - ["min"] = 4, + ["min"] = 5, }, ["specialCaseData"] = { }, @@ -19137,11 +20246,11 @@ return { ["707457662"] = { ["Gloves"] = { ["max"] = 8.9, - ["min"] = 4, + ["min"] = 5, }, ["Ring"] = { ["max"] = 6.9, - ["min"] = 4, + ["min"] = 5, }, ["specialCaseData"] = { }, @@ -19234,6 +20343,25 @@ return { ["type"] = "explicit", }, }, + ["718638445"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["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", + }, + }, ["734614379"] = { ["Amulet"] = { ["max"] = 10, @@ -19257,12 +20385,12 @@ return { ["min"] = 50, }, ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 13, + ["min"] = 7, }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 13, + ["min"] = 7, }, ["Focus"] = { ["max"] = 89, @@ -19366,6 +20494,15 @@ return { ["type"] = "explicit", }, }, + ["758893621"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_758893621", + ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + }, ["770672621"] = { ["1HWeapon"] = { ["max"] = 50, @@ -19507,6 +20644,15 @@ return { ["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", + }, + }, ["803737631"] = { ["Amulet"] = { ["max"] = 450, @@ -19539,7 +20685,7 @@ return { }, ["809229260"] = { ["Belt"] = { - ["max"] = 255, + ["max"] = 351, ["min"] = 12, }, ["specialCaseData"] = { @@ -19651,6 +20797,15 @@ return { ["type"] = "explicit", }, }, + ["825116955"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_825116955", + ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", + ["type"] = "explicit", + }, + }, ["828533480"] = { ["specialCaseData"] = { }, @@ -19660,6 +20815,15 @@ return { ["type"] = "explicit", }, }, + ["830161081"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_830161081", + ["text"] = "#% increased Runic Ward", + ["type"] = "explicit", + }, + }, ["830345042"] = { ["AnyJewel"] = { ["max"] = 4, @@ -19803,19 +20967,19 @@ return { }, ["9187492"] = { ["1HMace"] = { - ["max"] = 5, + ["max"] = 4, ["min"] = 1, }, ["1HWeapon"] = { - ["max"] = 5, + ["max"] = 4, ["min"] = 1, }, ["2HMace"] = { - ["max"] = 7, + ["max"] = 5, ["min"] = 2, }, ["2HWeapon"] = { - ["max"] = 7, + ["max"] = 5, ["min"] = 2, }, ["Amulet"] = { @@ -19823,7 +20987,7 @@ return { ["min"] = 1, }, ["Flail"] = { - ["max"] = 5, + ["max"] = 4, ["min"] = 1, }, ["Gloves"] = { @@ -19831,15 +20995,15 @@ return { ["min"] = 1, }, ["Quarterstaff"] = { - ["max"] = 7, + ["max"] = 5, ["min"] = 2, }, ["Spear"] = { - ["max"] = 5, + ["max"] = 4, ["min"] = 1, }, ["Talisman"] = { - ["max"] = 7, + ["max"] = 5, ["min"] = 2, }, ["specialCaseData"] = { @@ -19869,6 +21033,15 @@ return { ["type"] = "explicit", }, }, + ["933355817"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_933355817", + ["text"] = "#% to gain Archon of Undeath when you create an Offering", + ["type"] = "explicit", + }, + }, ["942519401"] = { ["AnyJewel"] = { ["max"] = 10, @@ -19920,6 +21093,15 @@ return { ["type"] = "explicit", }, }, + ["953593695"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_953593695", + ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", + ["type"] = "explicit", + }, + }, ["959641748"] = { ["ManaFlask"] = { ["max"] = 15, @@ -19933,6 +21115,16 @@ return { ["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, + }, ["980177976"] = { ["AnyJewel"] = { ["max"] = 3, @@ -19995,6 +21187,23 @@ return { }, }, ["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, @@ -20026,6 +21235,24 @@ return { ["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, @@ -20087,19 +21314,6 @@ return { ["type"] = "implicit", }, }, - ["1416292992"] = { - ["Belt"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1416292992", - ["text"] = "Has # Charm Slot", - ["type"] = "implicit", - }, - }, ["1434716233"] = { ["2HMace"] = { ["max"] = 1, @@ -20160,6 +21374,23 @@ return { ["type"] = "implicit", }, }, + ["1459321413"] = { + ["2HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", + ["type"] = "implicit", + }, + }, ["1503146834"] = { ["2HMace"] = { ["max"] = 1, @@ -20222,11 +21453,11 @@ return { }, ["1589917703"] = { ["2HWeapon"] = { - ["max"] = 50, + ["max"] = 100, ["min"] = 30, }, ["Talisman"] = { - ["max"] = 50, + ["max"] = 100, ["min"] = 30, }, ["specialCaseData"] = { @@ -20277,6 +21508,10 @@ return { ["max"] = 18, ["min"] = 12, }, + ["Talisman"] = { + ["max"] = 18, + ["min"] = 14, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -20299,6 +21534,19 @@ return { ["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, @@ -20342,6 +21590,23 @@ return { ["type"] = "implicit", }, }, + ["1840985759"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1840985759", + ["text"] = "#% increased Area of Effect for Attacks", + ["type"] = "implicit", + }, + }, ["1856590738"] = { ["Ring"] = { ["max"] = 1, @@ -20355,6 +21620,23 @@ return { ["type"] = "implicit", }, }, + ["1879206848"] = { + ["1HMace"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1879206848", + ["text"] = "#% increased effect of Fully Broken Armour", + ["type"] = "implicit", + }, + }, ["1967051901"] = { ["2HWeapon"] = { ["max"] = 1, @@ -20416,6 +21698,20 @@ return { ["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, @@ -20507,6 +21803,32 @@ return { ["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_2392260628", + ["text"] = "#% increased Runic Ward Regeneration Rate", + ["type"] = "implicit", + }, + }, ["239367161"] = { ["Quiver"] = { ["max"] = 40, @@ -20555,6 +21877,19 @@ return { ["type"] = "implicit", }, }, + ["254952842"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_254952842", + ["text"] = "Catalysts can be applied to this item", + ["type"] = "implicit", + }, + }, ["2646093132"] = { ["Ring"] = { ["max"] = 1, @@ -20599,6 +21934,19 @@ return { ["type"] = "implicit", }, }, + ["2748665614"] = { + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "implicit", + }, + }, ["2778646494"] = { ["Charm"] = { ["max"] = 1, @@ -20626,6 +21974,10 @@ return { }, }, ["2891184298"] = { + ["Belt"] = { + ["max"] = 12, + ["min"] = 8, + }, ["Ring"] = { ["max"] = 10, ["min"] = 7, @@ -20751,7 +22103,7 @@ return { ["min"] = 2, }, ["Ring"] = { - ["max"] = 2.5, + ["max"] = 12, ["min"] = 2.5, }, ["specialCaseData"] = { @@ -20852,6 +22204,32 @@ return { ["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, @@ -20924,6 +22302,23 @@ return { ["type"] = "implicit", }, }, + ["3663551379"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3663551379", + ["text"] = "Cannot load or fire Ammunition", + ["type"] = "implicit", + }, + }, ["3675300253"] = { ["2HMace"] = { ["max"] = 1, @@ -20967,6 +22362,19 @@ return { ["type"] = "implicit", }, }, + ["3791899485"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "implicit", + }, + }, ["3854901951"] = { ["Charm"] = { ["max"] = 1, @@ -21124,6 +22532,33 @@ return { }, ["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, @@ -21167,6 +22602,20 @@ return { ["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, @@ -21256,7 +22705,7 @@ return { }, ["731781020"] = { ["Belt"] = { - ["max"] = 0.17, + ["max"] = 1, ["min"] = 0.17, }, ["specialCaseData"] = { @@ -21267,6 +22716,33 @@ return { ["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, @@ -21315,6 +22791,20 @@ return { }, ["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, @@ -21368,6 +22858,19 @@ return { ["type"] = "implicit", }, }, + ["983749596"] = { + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "implicit", + }, + }, }, ["Rune"] = { ["1004011302"] = { diff --git a/src/Data/TradeSiteStats.lua b/src/Data/TradeSiteStats.lua index 7e7e8a6a8..7d03f4613 100644 --- a/src/Data/TradeSiteStats.lua +++ b/src/Data/TradeSiteStats.lua @@ -512,12 +512,12 @@ return { ["type"] = "explicit", }, [65] = { - ["id"] = "explicit.stat_2704225257", + ["id"] = "explicit.stat_3981240776", ["text"] = "# to Spirit", ["type"] = "explicit", }, [66] = { - ["id"] = "explicit.stat_3981240776", + ["id"] = "explicit.stat_2704225257", ["text"] = "# to Spirit", ["type"] = "explicit", }, @@ -1737,12 +1737,12 @@ return { ["type"] = "explicit", }, [310] = { - ["id"] = "explicit.stat_57434274", + ["id"] = "explicit.stat_3666934677", ["text"] = "#% increased Experience gain", ["type"] = "explicit", }, [311] = { - ["id"] = "explicit.stat_3666934677", + ["id"] = "explicit.stat_57434274", ["text"] = "#% increased Experience gain", ["type"] = "explicit", }, @@ -2547,12 +2547,12 @@ return { ["type"] = "explicit", }, [472] = { - ["id"] = "explicit.stat_1416406066", + ["id"] = "explicit.stat_3984865854", ["text"] = "#% increased Spirit", ["type"] = "explicit", }, [473] = { - ["id"] = "explicit.stat_3984865854", + ["id"] = "explicit.stat_1416406066", ["text"] = "#% increased Spirit", ["type"] = "explicit", }, @@ -2827,12197 +2827,12212 @@ return { ["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", }, - [529] = { + [530] = { ["id"] = "explicit.stat_4065505214", ["text"] = "#% increased effect of Socketed Soul Cores", ["type"] = "explicit", }, - [530] = { + [531] = { ["id"] = "explicit.stat_878697053", ["text"] = "#% increased maximum Divinity", ["type"] = "explicit", }, - [531] = { + [532] = { ["id"] = "explicit.stat_2189090852", ["text"] = "#% increased maximum Divinity per Corrupted Item Equipped", ["type"] = "explicit", }, - [532] = { + [533] = { ["id"] = "explicit.stat_2482852589", ["text"] = "#% increased maximum Energy Shield", ["type"] = "explicit", }, - [533] = { + [534] = { ["id"] = "explicit.stat_983749596", ["text"] = "#% increased maximum Life", ["type"] = "explicit", }, - [534] = { + [535] = { ["id"] = "explicit.stat_2748665614", ["text"] = "#% increased maximum Mana", ["type"] = "explicit", }, - [535] = { + [536] = { ["id"] = "explicit.stat_4273473110", ["text"] = "#% increased maximum Runic Ward", ["type"] = "explicit", }, - [536] = { + [537] = { ["id"] = "explicit.stat_2624927319", ["text"] = "#% increased number of Monster Packs", ["type"] = "explicit", }, - [537] = { + [538] = { ["id"] = "explicit.stat_2624927319", ["text"] = "#% increased number of Monster Packs in your Maps", ["type"] = "explicit", }, - [538] = { + [539] = { ["id"] = "explicit.stat_2694800111", ["text"] = "#% increased number of Rare Expedition Monsters", ["type"] = "explicit", }, - [539] = { + [540] = { ["id"] = "explicit.stat_2694800111", ["text"] = "#% increased number of Rare Expedition Monsters in Area", ["type"] = "explicit", }, - [540] = { + [541] = { ["id"] = "explicit.stat_1640965354", ["text"] = "#% increased number of Runic Monster Markers", ["type"] = "explicit", }, - [541] = { + [542] = { ["id"] = "explicit.stat_4219583418", ["text"] = "#% increased quantity of Artifacts dropped by Monsters", ["type"] = "explicit", }, - [542] = { + [543] = { ["id"] = "explicit.stat_4219583418", ["text"] = "#% increased quantity of Artifacts dropped by Monsters in your Maps", ["type"] = "explicit", }, - [543] = { + [544] = { ["id"] = "explicit.stat_2363593824", ["text"] = "#% increased speed of Recoup Effects", ["type"] = "explicit", }, - [544] = { + [545] = { ["id"] = "explicit.stat_1803659985", ["text"] = "#% less Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [545] = { + [546] = { ["id"] = "explicit.stat_1274947822", ["text"] = "#% less Damage", ["type"] = "explicit", }, - [546] = { + [547] = { ["id"] = "explicit.stat_67637087", ["text"] = "#% less Damage taken if you have not been Hit Recently", ["type"] = "explicit", }, - [547] = { + [548] = { ["id"] = "explicit.stat_3749630567", ["text"] = "#% less Flask Charges used", ["type"] = "explicit", }, - [548] = { + [549] = { ["id"] = "explicit.stat_2146799605", ["text"] = "#% less Movement Speed", ["type"] = "explicit", }, - [549] = { + [550] = { ["id"] = "explicit.stat_3156445245", ["text"] = "#% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", ["type"] = "explicit", }, - [550] = { + [551] = { ["id"] = "explicit.stat_537850431", ["text"] = "#% less Spirit", ["type"] = "explicit", }, - [551] = { + [552] = { ["id"] = "explicit.stat_3796523155", ["text"] = "#% less effect of Curses on Monsters", ["type"] = "explicit", }, - [552] = { + [553] = { ["id"] = "explicit.stat_1633735772", ["text"] = "#% less maximum Life", ["type"] = "explicit", }, - [553] = { + [554] = { ["id"] = "explicit.stat_3045154261", ["text"] = "#% less maximum Mana", ["type"] = "explicit", }, - [554] = { + [555] = { ["id"] = "explicit.stat_2423248184", ["text"] = "#% less minimum Physical Attack Damage", ["type"] = "explicit", }, - [555] = { + [556] = { ["id"] = "explicit.stat_3376488707", ["text"] = "#% maximum Player Resistances", ["type"] = "explicit", }, - [556] = { + [557] = { ["id"] = "explicit.stat_412462523", ["text"] = "#% more Attack Damage", ["type"] = "explicit", }, - [557] = { + [558] = { ["id"] = "explicit.stat_2939415499", ["text"] = "#% more Curse Magnitudes", ["type"] = "explicit", }, - [558] = { + [559] = { ["id"] = "explicit.stat_1972661424", ["text"] = "#% more Life Flask Recovery", ["type"] = "explicit", }, - [559] = { + [560] = { ["id"] = "explicit.stat_1726753705", ["text"] = "#% more Life Recovered", ["type"] = "explicit", }, - [560] = { + [561] = { ["id"] = "explicit.stat_95249895", ["text"] = "#% more Monster Life", ["type"] = "explicit", }, - [561] = { + [562] = { ["id"] = "explicit.stat_886931978", ["text"] = "#% more Recovery if used while on Low Life", ["type"] = "explicit", }, - [562] = { + [563] = { ["id"] = "explicit.stat_3276224428", ["text"] = "#% more Recovery if used while on Low Mana", ["type"] = "explicit", }, - [563] = { + [564] = { ["id"] = "explicit.stat_3735888493", ["text"] = "#% more maximum Physical Attack Damage", ["type"] = "explicit", }, - [564] = { + [565] = { ["id"] = "explicit.stat_3972229254", ["text"] = "#% of Armour also applies to Chaos Damage", ["type"] = "explicit", }, - [565] = { + [566] = { ["id"] = "explicit.stat_3362812763", ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "explicit", }, - [566] = { + [567] = { ["id"] = "explicit.stat_2678930256", ["text"] = "#% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", ["type"] = "explicit", }, - [567] = { + [568] = { ["id"] = "explicit.stat_2369960685", ["text"] = "#% of Charges consumed by used Charms are granted to your Life Flasks", ["type"] = "explicit", }, - [568] = { + [569] = { ["id"] = "explicit.stat_2020463573", ["text"] = "#% of Charges consumed by used Life Flasks are granted to your Charms", ["type"] = "explicit", }, - [569] = { + [570] = { ["id"] = "explicit.stat_1686824704", ["text"] = "#% of Cold Damage Converted to Lightning Damage", ["type"] = "explicit", }, - [570] = { + [571] = { ["id"] = "explicit.stat_3679418014", ["text"] = "#% of Cold Damage taken Recouped as Life", ["type"] = "explicit", }, - [571] = { + [572] = { ["id"] = "explicit.stat_2342939473", ["text"] = "#% of Current Energy Shield also grants Elemental Damage reduction", ["type"] = "explicit", }, - [572] = { + [573] = { ["id"] = "explicit.stat_2319832234", ["text"] = "#% of Damage Taken Recouped as Life, Mana and Energy Shield", ["type"] = "explicit", }, - [573] = { + [574] = { ["id"] = "explicit.stat_3918757604", ["text"] = "#% of Damage from Deflected Hits is taken from Damageable Companion's Life before you", ["type"] = "explicit", }, - [574] = { + [575] = { ["id"] = "explicit.stat_1150343007", ["text"] = "#% of Damage from Hits is taken from your Damageable Companion's Life before you", ["type"] = "explicit", }, - [575] = { + [576] = { ["id"] = "explicit.stat_54812069", ["text"] = "#% of Damage from Hits is taken from your Spectres' Life before you", ["type"] = "explicit", }, - [576] = { + [577] = { ["id"] = "explicit.stat_458438597", ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "explicit", }, - [577] = { + [578] = { ["id"] = "explicit.stat_679019978", ["text"] = "#% of Damage is taken from Mana before Life while not on Low Mana", ["type"] = "explicit", }, - [578] = { + [579] = { ["id"] = "explicit.stat_1444556985", ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "explicit", }, - [579] = { + [580] = { ["id"] = "explicit.stat_472520716", ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "explicit", }, - [580] = { + [581] = { ["id"] = "explicit.stat_2448633171", ["text"] = "#% of Damage taken bypasses Energy Shield", ["type"] = "explicit", }, - [581] = { + [582] = { ["id"] = "explicit.stat_3598623697", ["text"] = "#% of Damage taken during effect Recouped as Life", ["type"] = "explicit", }, - [582] = { + [583] = { ["id"] = "explicit.stat_3471443885", ["text"] = "#% of Damage taken from Deflected Hits Recouped as Life", ["type"] = "explicit", }, - [583] = { + [584] = { ["id"] = "explicit.stat_1311130924", ["text"] = "#% of Damage taken from Hits bypasses Energy Shield if Energy Shield is below half", ["type"] = "explicit", }, - [584] = { + [585] = { ["id"] = "explicit.stat_2295988214", ["text"] = "#% of Elemental Damage Converted to Chaos Damage", ["type"] = "explicit", }, - [585] = { + [586] = { ["id"] = "explicit.stat_210092264", ["text"] = "#% of Elemental Damage Converted to Cold Damage", ["type"] = "explicit", }, - [586] = { + [587] = { ["id"] = "explicit.stat_40154188", ["text"] = "#% of Elemental Damage Converted to Fire Damage", ["type"] = "explicit", }, - [587] = { + [588] = { ["id"] = "explicit.stat_289540902", ["text"] = "#% of Elemental Damage Converted to Lightning Damage", ["type"] = "explicit", }, - [588] = { + [589] = { ["id"] = "explicit.stat_2896115339", ["text"] = "#% of Elemental Damage taken Recouped as Energy Shield", ["type"] = "explicit", }, - [589] = { + [590] = { ["id"] = "explicit.stat_1175213674", ["text"] = "#% of Elemental damage from Hits taken as Chaos damage", ["type"] = "explicit", }, - [590] = { + [591] = { ["id"] = "explicit.stat_3503160529", ["text"] = "#% of Fire Damage Converted to Cold Damage", ["type"] = "explicit", }, - [591] = { + [592] = { ["id"] = "explicit.stat_3205239847", ["text"] = "#% of Fire Damage from Hits taken as Physical Damage", ["type"] = "explicit", }, - [592] = { + [593] = { ["id"] = "explicit.stat_1742651309", ["text"] = "#% of Fire Damage taken Recouped as Life", ["type"] = "explicit", }, - [593] = { + [594] = { ["id"] = "explicit.stat_2772033465", ["text"] = "#% of Fire damage Converted to Lightning damage", ["type"] = "explicit", }, - [594] = { + [595] = { ["id"] = "explicit.stat_4108426433", ["text"] = "#% of Fire damage taken as Cold damage", ["type"] = "explicit", }, - [595] = { + [596] = { ["id"] = "explicit.stat_3561837752", ["text"] = "#% of Leech is Instant", ["type"] = "explicit", }, - [596] = { + [597] = { ["id"] = "explicit.stat_3658708511", ["text"] = "#% of Life Leeched from targets affected by Abyssal Wasting is Instant", ["type"] = "explicit", }, - [597] = { + [598] = { ["id"] = "explicit.stat_2109189637", ["text"] = "#% of Lightning Damage Converted to Chaos Damage", ["type"] = "explicit", }, - [598] = { + [599] = { ["id"] = "explicit.stat_3627052716", ["text"] = "#% of Lightning Damage Converted to Cold Damage", ["type"] = "explicit", }, - [599] = { + [600] = { ["id"] = "explicit.stat_2970621759", ["text"] = "#% of Lightning Damage taken Recouped as Life", ["type"] = "explicit", }, - [600] = { + [601] = { ["id"] = "explicit.stat_3198708642", ["text"] = "#% of Lightning damage taken as Cold damage", ["type"] = "explicit", }, - [601] = { + [602] = { ["id"] = "explicit.stat_546201303", ["text"] = "#% of Mana Leeched from targets affected by Abyssal Wasting is Instant", ["type"] = "explicit", }, - [602] = { + [603] = { ["id"] = "explicit.stat_2458962764", ["text"] = "#% of Maximum Life Converted to Energy Shield", ["type"] = "explicit", }, - [603] = { + [604] = { ["id"] = "explicit.stat_1092987622", ["text"] = "#% of Melee Physical Damage taken reflected to Attacker", ["type"] = "explicit", }, - [604] = { + [605] = { ["id"] = "explicit.stat_2089152298", ["text"] = "#% of Parry Physical Damage Converted to Cold Damage", ["type"] = "explicit", }, - [605] = { + [606] = { ["id"] = "explicit.stat_4129825612", ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", ["type"] = "explicit", }, - [606] = { + [607] = { ["id"] = "explicit.stat_1374654984", ["text"] = "#% of Physical Damage prevented Recouped as Life", ["type"] = "explicit", }, - [607] = { + [608] = { ["id"] = "explicit.stat_1004468512", ["text"] = "#% of Physical Damage taken as Fire Damage", ["type"] = "explicit", }, - [608] = { + [609] = { ["id"] = "explicit.stat_321970274", ["text"] = "#% of Physical Damage taken as Lightning while your Shield is raised", ["type"] = "explicit", }, - [609] = { + [610] = { ["id"] = "explicit.stat_70760090", ["text"] = "#% of Physical damage dealt by your Hits causes Blood Loss", ["type"] = "explicit", }, - [610] = { + [611] = { ["id"] = "explicit.stat_425242359", ["text"] = "#% of Physical damage from Hits taken as Lightning damage", ["type"] = "explicit", }, - [611] = { + [612] = { ["id"] = "explicit.stat_2503377690", ["text"] = "#% of Recovery applied Instantly", ["type"] = "explicit", }, - [612] = { + [613] = { ["id"] = "explicit.stat_2480498143", ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "explicit", }, - [613] = { + [614] = { ["id"] = "explicit.stat_782941180", ["text"] = "#% of Spell Damage Leeched as Life", ["type"] = "explicit", }, - [614] = { + [615] = { ["id"] = "explicit.stat_3544050945", ["text"] = "#% of Spell Mana Cost Converted to Life Cost", ["type"] = "explicit", }, - [615] = { + [616] = { ["id"] = "explicit.stat_1753977518", ["text"] = "#% of Thorns Damage Leeched as Life", ["type"] = "explicit", }, - [616] = { + [617] = { ["id"] = "explicit.stat_3190121041", ["text"] = "#% of Volatility Physical Damage Taken as Cold Damage", ["type"] = "explicit", }, - [617] = { + [618] = { ["id"] = "explicit.stat_3175722882", ["text"] = "#% of maximum Life Regenerated per second per Fragile Regrowth", ["type"] = "explicit", }, - [618] = { + [619] = { ["id"] = "explicit.stat_4287671144", ["text"] = "#% of your Base Life Regeneration is granted to Allies in your Presence", ["type"] = "explicit", }, - [619] = { + [620] = { ["id"] = "explicit.stat_1570770415", ["text"] = "#% reduced Charm Charges used", ["type"] = "explicit", }, - [620] = { + [621] = { ["id"] = "explicit.stat_1874553720", ["text"] = "#% reduced Chill Duration on you", ["type"] = "explicit", }, - [621] = { + [622] = { ["id"] = "explicit.stat_1478653032", ["text"] = "#% reduced Effect of Chill on you", ["type"] = "explicit", }, - [622] = { + [623] = { ["id"] = "explicit.stat_644456512", ["text"] = "#% reduced Flask Charges used", ["type"] = "explicit", }, - [623] = { + [624] = { ["id"] = "explicit.stat_2160282525", ["text"] = "#% reduced Freeze Duration on you", ["type"] = "explicit", }, - [624] = { + [625] = { ["id"] = "explicit.stat_986397080", ["text"] = "#% reduced Ignite Duration on you", ["type"] = "explicit", }, - [625] = { + [626] = { ["id"] = "explicit.stat_1269971728", ["text"] = "#% reduced Magnitude of Ignite on you", ["type"] = "explicit", }, - [626] = { + [627] = { ["id"] = "explicit.stat_474294393", ["text"] = "#% reduced Mana Cost of Skills", ["type"] = "explicit", }, - [627] = { + [628] = { ["id"] = "explicit.stat_99927264", ["text"] = "#% reduced Shock duration on you", ["type"] = "explicit", }, - [628] = { + [629] = { ["id"] = "explicit.stat_3839676903", ["text"] = "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", ["type"] = "explicit", }, - [629] = { + [630] = { ["id"] = "explicit.stat_3407849389", ["text"] = "#% reduced effect of Curses on you", ["type"] = "explicit", }, - [630] = { + [631] = { ["id"] = "explicit.stat_3801067695", ["text"] = "#% reduced effect of Shock on you", ["type"] = "explicit", }, - [631] = { + [632] = { ["id"] = "explicit.stat_3122852693", ["text"] = "#% to Block Chance while holding a Focus", ["type"] = "explicit", }, - [632] = { + [633] = { ["id"] = "explicit.stat_1702195217", ["text"] = "#% to Block chance", ["type"] = "explicit", }, - [633] = { + [634] = { ["id"] = "explicit.stat_2923486259", ["text"] = "#% to Chaos Resistance", ["type"] = "explicit", }, - [634] = { + [635] = { ["id"] = "explicit.stat_1123023256", ["text"] = "#% to Chaos Resistance per Socket filled", ["type"] = "explicit", }, - [635] = { + [636] = { ["id"] = "explicit.stat_4220027924", ["text"] = "#% to Cold Resistance", ["type"] = "explicit", }, - [636] = { + [637] = { ["id"] = "explicit.stat_3393628375", ["text"] = "#% to Cold and Chaos Resistances", ["type"] = "explicit", }, - [637] = { + [638] = { ["id"] = "explicit.stat_4277795662", ["text"] = "#% to Cold and Lightning Resistances", ["type"] = "explicit", }, - [638] = { + [639] = { ["id"] = "explicit.stat_2381897042", ["text"] = "#% to Cold and Lightning Resistances per Equipped Item with a Fire Resistance Modifier", ["type"] = "explicit", }, - [639] = { + [640] = { ["id"] = "explicit.stat_2694482655", ["text"] = "#% to Critical Damage Bonus", ["type"] = "explicit", }, - [640] = { + [641] = { ["id"] = "explicit.stat_518292764", ["text"] = "#% to Critical Hit Chance", ["type"] = "explicit", }, - [641] = { + [642] = { ["id"] = "explicit.stat_3372524247", ["text"] = "#% to Fire Resistance", ["type"] = "explicit", }, - [642] = { + [643] = { ["id"] = "explicit.stat_38301299", ["text"] = "#% to Fire Resistance while on Low Life", ["type"] = "explicit", }, - [643] = { + [644] = { ["id"] = "explicit.stat_3399401168", ["text"] = "#% to Fire Spell Critical Hit Chance", ["type"] = "explicit", }, - [644] = { + [645] = { ["id"] = "explicit.stat_378817135", ["text"] = "#% to Fire and Chaos Resistances", ["type"] = "explicit", }, - [645] = { + [646] = { ["id"] = "explicit.stat_2915988346", ["text"] = "#% to Fire and Cold Resistances", ["type"] = "explicit", }, - [646] = { + [647] = { ["id"] = "explicit.stat_4032948616", ["text"] = "#% to Fire and Cold Resistances per Equipped Item with a Lightning Resistance Modifier", ["type"] = "explicit", }, - [647] = { + [648] = { ["id"] = "explicit.stat_3441501978", ["text"] = "#% to Fire and Lightning Resistances", ["type"] = "explicit", }, - [648] = { + [649] = { ["id"] = "explicit.stat_3753008264", ["text"] = "#% to Fire and Lightning Resistances per Equipped Item with a Cold Resistance Modifier", ["type"] = "explicit", }, - [649] = { + [650] = { ["id"] = "explicit.stat_1671376347", ["text"] = "#% to Lightning Resistance", ["type"] = "explicit", }, - [650] = { + [651] = { ["id"] = "explicit.stat_3465022881", ["text"] = "#% to Lightning and Chaos Resistances", ["type"] = "explicit", }, - [651] = { + [652] = { ["id"] = "explicit.stat_1301765461", ["text"] = "#% to Maximum Chaos Resistance", ["type"] = "explicit", }, - [652] = { + [653] = { ["id"] = "explicit.stat_3676141501", ["text"] = "#% to Maximum Cold Resistance", ["type"] = "explicit", }, - [653] = { + [654] = { ["id"] = "explicit.stat_4095671657", ["text"] = "#% to Maximum Fire Resistance", ["type"] = "explicit", }, - [654] = { + [655] = { ["id"] = "explicit.stat_1011760251", ["text"] = "#% to Maximum Lightning Resistance", ["type"] = "explicit", }, - [655] = { + [656] = { ["id"] = "explicit.stat_2039822488", ["text"] = "#% to Maximum Quality", ["type"] = "explicit", }, - [656] = { + [657] = { ["id"] = "explicit.stat_3655769732", ["text"] = "#% to Quality of all Skills", ["type"] = "explicit", }, - [657] = { + [658] = { ["id"] = "explicit.stat_2715190555", ["text"] = "#% to Thorns Critical Hit Chance", ["type"] = "explicit", }, - [658] = { + [659] = { ["id"] = "explicit.stat_3613173483", ["text"] = "#% to Unarmed Melee Attack Critical Hit Chance", ["type"] = "explicit", }, - [659] = { + [660] = { ["id"] = "explicit.stat_2901986750", ["text"] = "#% to all Elemental Resistances", ["type"] = "explicit", }, - [660] = { + [661] = { ["id"] = "explicit.stat_2593644209", ["text"] = "#% to all Elemental Resistances per Power Charge", ["type"] = "explicit", }, - [661] = { + [662] = { ["id"] = "explicit.stat_242161915", ["text"] = "#% to all Elemental Resistances per socketed Grand Spectrum", ["type"] = "explicit", }, - [662] = { + [663] = { ["id"] = "explicit.stat_1978899297", ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "explicit", }, - [663] = { + [664] = { ["id"] = "explicit.stat_569299859", ["text"] = "#% to all maximum Resistances", ["type"] = "explicit", }, - [664] = { + [665] = { ["id"] = "explicit.stat_933355817", ["text"] = "#% to gain Archon of Undeath when you create an Offering", ["type"] = "explicit", }, - [665] = { + [666] = { ["id"] = "explicit.stat_480796730", ["text"] = "#% to maximum Block chance", ["type"] = "explicit", }, - [666] = { + [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", }, - [667] = { + [668] = { ["id"] = "explicit.stat_3302775221", ["text"] = "+# maximum Rage if you've used a Skill that Requires Glory in the past 20 seconds", ["type"] = "explicit", }, - [668] = { + [669] = { ["id"] = "explicit.stat_1484026495", ["text"] = "+# maximum stacks of Puppet Master", ["type"] = "explicit", }, - [669] = { + [670] = { ["id"] = "explicit.stat_448592698|8", ["text"] = "+# to Level of all Alchemist's Boon Skills", ["type"] = "explicit", }, - [670] = { + [671] = { ["id"] = "explicit.stat_448592698|208", ["text"] = "+# to Level of all Ancestral Cry Skills", ["type"] = "explicit", }, - [671] = { + [672] = { ["id"] = "explicit.stat_448592698|21", ["text"] = "+# to Level of all Ancestral Warrior Totem Skills", ["type"] = "explicit", }, - [672] = { + [673] = { ["id"] = "explicit.stat_448592698|98", ["text"] = "+# to Level of all Arc Skills", ["type"] = "explicit", }, - [673] = { + [674] = { ["id"] = "explicit.stat_448592698|11", ["text"] = "+# to Level of all Archmage Skills", ["type"] = "explicit", }, - [674] = { + [675] = { ["id"] = "explicit.stat_448592698|119", ["text"] = "+# to Level of all Arctic Armour Skills", ["type"] = "explicit", }, - [675] = { + [676] = { ["id"] = "explicit.stat_448592698|237", ["text"] = "+# to Level of all Arctic Howl Skills", ["type"] = "explicit", }, - [676] = { + [677] = { ["id"] = "explicit.stat_448592698|135", ["text"] = "+# to Level of all Armour Breaker Skills", ["type"] = "explicit", }, - [677] = { + [678] = { ["id"] = "explicit.stat_448592698|174", ["text"] = "+# to Level of all Armour Piercing Rounds Skills", ["type"] = "explicit", }, - [678] = { + [679] = { ["id"] = "explicit.stat_448592698|86", ["text"] = "+# to Level of all Artillery Ballista Skills", ["type"] = "explicit", }, - [679] = { + [680] = { ["id"] = "explicit.stat_448592698|5", ["text"] = "+# to Level of all Attrition Skills", ["type"] = "explicit", }, - [680] = { + [681] = { ["id"] = "explicit.stat_448592698|30", ["text"] = "+# to Level of all Ball Lightning Skills", ["type"] = "explicit", }, - [681] = { + [682] = { ["id"] = "explicit.stat_448592698|242", ["text"] = "+# to Level of all Barkskin Skills", ["type"] = "explicit", }, - [682] = { + [683] = { ["id"] = "explicit.stat_448592698|100", ["text"] = "+# to Level of all Barrage Skills", ["type"] = "explicit", }, - [683] = { + [684] = { ["id"] = "explicit.stat_448592698|67", ["text"] = "+# to Level of all Barrier Invocation Skills", ["type"] = "explicit", }, - [684] = { + [685] = { ["id"] = "explicit.stat_448592698|12", ["text"] = "+# to Level of all Berserk Skills", ["type"] = "explicit", }, - [685] = { + [686] = { ["id"] = "explicit.stat_448592698|63", ["text"] = "+# to Level of all Blasphemy Skills", ["type"] = "explicit", }, - [686] = { + [687] = { ["id"] = "explicit.stat_448592698|3", ["text"] = "+# to Level of all Blink Skills", ["type"] = "explicit", }, - [687] = { + [688] = { ["id"] = "explicit.stat_448592698|178", ["text"] = "+# to Level of all Blood Hunt Skills", ["type"] = "explicit", }, - [688] = { + [689] = { ["id"] = "explicit.stat_448592698|192", ["text"] = "+# to Level of all Bloodhound's Mark Skills", ["type"] = "explicit", }, - [689] = { + [690] = { ["id"] = "explicit.stat_448592698|145", ["text"] = "+# to Level of all Bone Cage Skills", ["type"] = "explicit", }, - [690] = { + [691] = { ["id"] = "explicit.stat_448592698|31", ["text"] = "+# to Level of all Bone Offering Skills", ["type"] = "explicit", }, - [691] = { + [692] = { ["id"] = "explicit.stat_448592698|163", ["text"] = "+# to Level of all Boneshatter Skills", ["type"] = "explicit", }, - [692] = { + [693] = { ["id"] = "explicit.stat_448592698|107", ["text"] = "+# to Level of all Bonestorm Skills", ["type"] = "explicit", }, - [693] = { + [694] = { ["id"] = "explicit.stat_448592698|238", ["text"] = "+# to Level of all Briarpatch Skills", ["type"] = "explicit", }, - [694] = { + [695] = { ["id"] = "explicit.stat_448592698|1", ["text"] = "+# to Level of all Cast on Critical Skills", ["type"] = "explicit", }, - [695] = { + [696] = { ["id"] = "explicit.stat_448592698|2", ["text"] = "+# to Level of all Cast on Dodge Skills", ["type"] = "explicit", }, - [696] = { + [697] = { ["id"] = "explicit.stat_448592698|215", ["text"] = "+# to Level of all Cast on Elemental Ailment Skills", ["type"] = "explicit", }, - [697] = { + [698] = { ["id"] = "explicit.stat_448592698|65", ["text"] = "+# to Level of all Cast on Freeze Skills", ["type"] = "explicit", }, - [698] = { + [699] = { ["id"] = "explicit.stat_448592698|66", ["text"] = "+# to Level of all Cast on Ignite Skills", ["type"] = "explicit", }, - [699] = { + [700] = { ["id"] = "explicit.stat_448592698|69", ["text"] = "+# to Level of all Cast on Minion Death Skills", ["type"] = "explicit", }, - [700] = { + [701] = { ["id"] = "explicit.stat_448592698|64", ["text"] = "+# to Level of all Cast on Shock Skills", ["type"] = "explicit", }, - [701] = { + [702] = { ["id"] = "explicit.stat_448592698|7", ["text"] = "+# to Level of all Charge Regulation Skills", ["type"] = "explicit", }, - [702] = { + [703] = { ["id"] = "explicit.stat_448592698|55", ["text"] = "+# to Level of all Charged Staff Skills", ["type"] = "explicit", }, - [703] = { + [704] = { ["id"] = "explicit.stat_448592698|26", ["text"] = "+# to Level of all Cluster Grenade Skills", ["type"] = "explicit", }, - [704] = { + [705] = { ["id"] = "explicit.stat_448592698|76", ["text"] = "+# to Level of all Combat Frenzy Skills", ["type"] = "explicit", }, - [705] = { + [706] = { ["id"] = "explicit.stat_448592698|37", ["text"] = "+# to Level of all Comet Skills", ["type"] = "explicit", }, - [706] = { + [707] = { ["id"] = "explicit.stat_448592698|82", ["text"] = "+# to Level of all Conductivity Skills", ["type"] = "explicit", }, - [707] = { + [708] = { ["id"] = "explicit.stat_448592698|159", ["text"] = "+# to Level of all Contagion Skills", ["type"] = "explicit", }, - [708] = { + [709] = { ["id"] = "explicit.stat_448592698|202", ["text"] = "+# to Level of all Convalescence Skills", ["type"] = "explicit", }, - [709] = { + [710] = { ["id"] = "explicit.stat_448592698|232", ["text"] = "+# to Level of all Cross Slash Skills", ["type"] = "explicit", }, - [710] = { + [711] = { ["id"] = "explicit.stat_448592698|203", ["text"] = "+# to Level of all Cull The Weak Skills", ["type"] = "explicit", }, - [711] = { + [712] = { ["id"] = "explicit.stat_448592698|58", ["text"] = "+# to Level of all Dark Effigy Skills", ["type"] = "explicit", }, - [712] = { + [713] = { ["id"] = "explicit.stat_448592698|70", ["text"] = "+# to Level of all Defiance Banner Skills", ["type"] = "explicit", }, - [713] = { + [714] = { ["id"] = "explicit.stat_448592698|46", ["text"] = "+# to Level of all Despair Skills", ["type"] = "explicit", }, - [714] = { + [715] = { ["id"] = "explicit.stat_448592698|78", ["text"] = "+# to Level of all Detonate Dead Skills", ["type"] = "explicit", }, - [715] = { + [716] = { ["id"] = "explicit.stat_448592698|56", ["text"] = "+# to Level of all Detonating Arrow Skills", ["type"] = "explicit", }, - [716] = { + [717] = { ["id"] = "explicit.stat_448592698|234", ["text"] = "+# to Level of all Devour Skills", ["type"] = "explicit", }, - [717] = { + [718] = { ["id"] = "explicit.stat_448592698|177", ["text"] = "+# to Level of all Disengage Skills", ["type"] = "explicit", }, - [718] = { + [719] = { ["id"] = "explicit.stat_448592698|4", ["text"] = "+# to Level of all Dread Banner Skills", ["type"] = "explicit", }, - [719] = { + [720] = { ["id"] = "explicit.stat_448592698|158", ["text"] = "+# to Level of all Earthquake Skills", ["type"] = "explicit", }, - [720] = { + [721] = { ["id"] = "explicit.stat_448592698|84", ["text"] = "+# to Level of all Earthshatter Skills", ["type"] = "explicit", }, - [721] = { + [722] = { ["id"] = "explicit.stat_448592698|110", ["text"] = "+# to Level of all Electrocuting Arrow Skills", ["type"] = "explicit", }, - [722] = { + [723] = { ["id"] = "explicit.stat_448592698|6", ["text"] = "+# to Level of all Elemental Conflux Skills", ["type"] = "explicit", }, - [723] = { + [724] = { ["id"] = "explicit.stat_448592698|72", ["text"] = "+# to Level of all Elemental Invocation Skills", ["type"] = "explicit", }, - [724] = { + [725] = { ["id"] = "explicit.stat_448592698|196", ["text"] = "+# to Level of all Elemental Sundering Skills", ["type"] = "explicit", }, - [725] = { + [726] = { ["id"] = "explicit.stat_448592698|216", ["text"] = "+# to Level of all Elemental Weakness Skills", ["type"] = "explicit", }, - [726] = { + [727] = { ["id"] = "explicit.stat_448592698|149", ["text"] = "+# to Level of all Ember Fusillade Skills", ["type"] = "explicit", }, - [727] = { + [728] = { ["id"] = "explicit.stat_448592698|43", ["text"] = "+# to Level of all Emergency Reload Skills", ["type"] = "explicit", }, - [728] = { + [729] = { ["id"] = "explicit.stat_448592698|134", ["text"] = "+# to Level of all Enfeeble Skills", ["type"] = "explicit", }, - [729] = { + [730] = { ["id"] = "explicit.stat_448592698|230", ["text"] = "+# to Level of all Entangle Skills", ["type"] = "explicit", }, - [730] = { + [731] = { ["id"] = "explicit.stat_448592698|165", ["text"] = "+# to Level of all Escape Shot Skills", ["type"] = "explicit", }, - [731] = { + [732] = { ["id"] = "explicit.stat_448592698|139", ["text"] = "+# to Level of all Essence Drain Skills", ["type"] = "explicit", }, - [732] = { + [733] = { ["id"] = "explicit.stat_448592698|239", ["text"] = "+# to Level of all Eternal Rage Skills", ["type"] = "explicit", }, - [733] = { + [734] = { ["id"] = "explicit.stat_448592698|168", ["text"] = "+# to Level of all Explosive Grenade Skills", ["type"] = "explicit", }, - [734] = { + [735] = { ["id"] = "explicit.stat_448592698|92", ["text"] = "+# to Level of all Explosive Shot Skills", ["type"] = "explicit", }, - [735] = { + [736] = { ["id"] = "explicit.stat_448592698|184", ["text"] = "+# to Level of all Explosive Spear Skills", ["type"] = "explicit", }, - [736] = { + [737] = { ["id"] = "explicit.stat_448592698|18", ["text"] = "+# to Level of all Eye of Winter Skills", ["type"] = "explicit", }, - [737] = { + [738] = { ["id"] = "explicit.stat_448592698|155", ["text"] = "+# to Level of all Falling Thunder Skills", ["type"] = "explicit", }, - [738] = { + [739] = { ["id"] = "explicit.stat_448592698|189", ["text"] = "+# to Level of all Fangs of Frost Skills", ["type"] = "explicit", }, - [739] = { + [740] = { ["id"] = "explicit.stat_448592698|243", ["text"] = "+# to Level of all Feral Invocation Skills", ["type"] = "explicit", }, - [740] = { + [741] = { ["id"] = "explicit.stat_448592698|225", ["text"] = "+# to Level of all Ferocious Roar Skills", ["type"] = "explicit", }, - [741] = { + [742] = { ["id"] = "explicit.stat_448592698|57", ["text"] = "+# to Level of all Fireball Skills", ["type"] = "explicit", }, - [742] = { + [743] = { ["id"] = "explicit.stat_448592698|29", ["text"] = "+# to Level of all Firestorm Skills", ["type"] = "explicit", }, - [743] = { + [744] = { ["id"] = "explicit.stat_448592698|229", ["text"] = "+# to Level of all Flame Breath Skills", ["type"] = "explicit", }, - [744] = { + [745] = { ["id"] = "explicit.stat_448592698|162", ["text"] = "+# to Level of all Flame Wall Skills", ["type"] = "explicit", }, - [745] = { + [746] = { ["id"] = "explicit.stat_448592698|15", ["text"] = "+# to Level of all Flameblast Skills", ["type"] = "explicit", }, - [746] = { + [747] = { ["id"] = "explicit.stat_448592698|80", ["text"] = "+# to Level of all Flammability Skills", ["type"] = "explicit", }, - [747] = { + [748] = { ["id"] = "explicit.stat_448592698|142", ["text"] = "+# to Level of all Flash Grenade Skills", ["type"] = "explicit", }, - [748] = { + [749] = { ["id"] = "explicit.stat_448592698|13", ["text"] = "+# to Level of all Flicker Strike Skills", ["type"] = "explicit", }, - [749] = { + [750] = { ["id"] = "explicit.stat_448592698|207", ["text"] = "+# to Level of all Forge Hammer Skills", ["type"] = "explicit", }, - [750] = { + [751] = { ["id"] = "explicit.stat_448592698|206", ["text"] = "+# to Level of all Fortifying Cry Skills", ["type"] = "explicit", }, - [751] = { + [752] = { ["id"] = "explicit.stat_448592698|173", ["text"] = "+# to Level of all Fragmentation Rounds Skills", ["type"] = "explicit", }, - [752] = { + [753] = { ["id"] = "explicit.stat_448592698|95", ["text"] = "+# to Level of all Freezing Mark Skills", ["type"] = "explicit", }, - [753] = { + [754] = { ["id"] = "explicit.stat_448592698|118", ["text"] = "+# to Level of all Freezing Salvo Skills", ["type"] = "explicit", }, - [754] = { + [755] = { ["id"] = "explicit.stat_448592698|157", ["text"] = "+# to Level of all Frost Bomb Skills", ["type"] = "explicit", }, - [755] = { + [756] = { ["id"] = "explicit.stat_448592698|211", ["text"] = "+# to Level of all Frost Darts Skills", ["type"] = "explicit", }, - [756] = { + [757] = { ["id"] = "explicit.stat_448592698|45", ["text"] = "+# to Level of all Frost Wall Skills", ["type"] = "explicit", }, - [757] = { + [758] = { ["id"] = "explicit.stat_448592698|140", ["text"] = "+# to Level of all Frostbolt Skills", ["type"] = "explicit", }, - [758] = { + [759] = { ["id"] = "explicit.stat_448592698|169", ["text"] = "+# to Level of all Frozen Locus Skills", ["type"] = "explicit", }, - [759] = { + [760] = { ["id"] = "explicit.stat_448592698|224", ["text"] = "+# to Level of all Furious Slam Skills", ["type"] = "explicit", }, - [760] = { + [761] = { ["id"] = "explicit.stat_448592698|231", ["text"] = "+# to Level of all Fury of the Mountain Skills", ["type"] = "explicit", }, - [761] = { + [762] = { ["id"] = "explicit.stat_448592698|117", ["text"] = "+# to Level of all Galvanic Shards Skills", ["type"] = "explicit", }, - [762] = { + [763] = { ["id"] = "explicit.stat_448592698|89", ["text"] = "+# to Level of all Gas Arrow Skills", ["type"] = "explicit", }, - [763] = { + [764] = { ["id"] = "explicit.stat_448592698|104", ["text"] = "+# to Level of all Gas Grenade Skills", ["type"] = "explicit", }, - [764] = { + [765] = { ["id"] = "explicit.stat_448592698|28", ["text"] = "+# to Level of all Gathering Storm Skills", ["type"] = "explicit", }, - [765] = { + [766] = { ["id"] = "explicit.stat_448592698|124", ["text"] = "+# to Level of all Ghost Dance Skills", ["type"] = "explicit", }, - [766] = { + [767] = { ["id"] = "explicit.stat_448592698|93", ["text"] = "+# to Level of all Glacial Bolt Skills", ["type"] = "explicit", }, - [767] = { + [768] = { ["id"] = "explicit.stat_448592698|166", ["text"] = "+# to Level of all Glacial Cascade Skills", ["type"] = "explicit", }, - [768] = { + [769] = { ["id"] = "explicit.stat_448592698|182", ["text"] = "+# to Level of all Glacial Lance Skills", ["type"] = "explicit", }, - [769] = { + [770] = { ["id"] = "explicit.stat_448592698|129", ["text"] = "+# to Level of all Grim Feast Skills", ["type"] = "explicit", }, - [770] = { + [771] = { ["id"] = "explicit.stat_448592698|40", ["text"] = "+# to Level of all Hailstorm Rounds Skills", ["type"] = "explicit", }, - [771] = { + [772] = { ["id"] = "explicit.stat_448592698|23", ["text"] = "+# to Level of all Hammer of the Gods Skills", ["type"] = "explicit", }, - [772] = { + [773] = { ["id"] = "explicit.stat_448592698|62", ["text"] = "+# to Level of all Hand of Chayula Skills", ["type"] = "explicit", }, - [773] = { + [774] = { ["id"] = "explicit.stat_448592698|120", ["text"] = "+# to Level of all Herald of Ash Skills", ["type"] = "explicit", }, - [774] = { - ["id"] = "explicit.stat_448592698|186", - ["text"] = "+# to Level of all Herald of Blood 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|121", - ["text"] = "+# to Level of all Herald of Ice Skills", + ["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", }, - [778] = { + [779] = { ["id"] = "explicit.stat_448592698|122", ["text"] = "+# to Level of all Herald of Thunder Skills", ["type"] = "explicit", }, - [779] = { + [780] = { ["id"] = "explicit.stat_448592698|34", ["text"] = "+# to Level of all Hexblast Skills", ["type"] = "explicit", }, - [780] = { + [781] = { ["id"] = "explicit.stat_448592698|150", ["text"] = "+# to Level of all High Velocity Rounds Skills", ["type"] = "explicit", }, - [781] = { + [782] = { ["id"] = "explicit.stat_448592698|81", ["text"] = "+# to Level of all Hypothermia Skills", ["type"] = "explicit", }, - [782] = { + [783] = { ["id"] = "explicit.stat_448592698|153", ["text"] = "+# to Level of all Ice Nova Skills", ["type"] = "explicit", }, - [783] = { + [784] = { ["id"] = "explicit.stat_448592698|116", ["text"] = "+# to Level of all Ice Shards Skills", ["type"] = "explicit", }, - [784] = { + [785] = { ["id"] = "explicit.stat_448592698|61", ["text"] = "+# to Level of all Ice Shot Skills", ["type"] = "explicit", }, - [785] = { + [786] = { ["id"] = "explicit.stat_448592698|103", ["text"] = "+# to Level of all Ice Strike Skills", ["type"] = "explicit", }, - [786] = { + [787] = { ["id"] = "explicit.stat_448592698|210", ["text"] = "+# to Level of all Ice-Tipped Arrows Skills", ["type"] = "explicit", }, - [787] = { + [788] = { ["id"] = "explicit.stat_448592698|151", ["text"] = "+# to Level of all Incendiary Shot Skills", ["type"] = "explicit", }, - [788] = { + [789] = { ["id"] = "explicit.stat_448592698|99", ["text"] = "+# to Level of all Incinerate Skills", ["type"] = "explicit", }, - [789] = { + [790] = { ["id"] = "explicit.stat_448592698|137", ["text"] = "+# to Level of all Infernal Cry Skills", ["type"] = "explicit", }, - [790] = { + [791] = { ["id"] = "explicit.stat_448592698|205", ["text"] = "+# to Level of all Iron Ward Skills", ["type"] = "explicit", }, - [791] = { + [792] = { ["id"] = "explicit.stat_448592698|167", ["text"] = "+# to Level of all Killing Palm Skills", ["type"] = "explicit", }, - [792] = { + [793] = { ["id"] = "explicit.stat_448592698|77", ["text"] = "+# to Level of all Leap Slam Skills", ["type"] = "explicit", }, - [793] = { + [794] = { ["id"] = "explicit.stat_448592698|156", ["text"] = "+# to Level of all Lightning Arrow Skills", ["type"] = "explicit", }, - [794] = { + [795] = { ["id"] = "explicit.stat_448592698|19", ["text"] = "+# to Level of all Lightning Conduit Skills", ["type"] = "explicit", }, - [795] = { + [796] = { ["id"] = "explicit.stat_448592698|172", ["text"] = "+# to Level of all Lightning Rod Skills", ["type"] = "explicit", }, - [796] = { + [797] = { ["id"] = "explicit.stat_448592698|181", ["text"] = "+# to Level of all Lightning Spear Skills", ["type"] = "explicit", }, - [797] = { + [798] = { ["id"] = "explicit.stat_448592698|47", ["text"] = "+# to Level of all Lightning Warp Skills", ["type"] = "explicit", }, - [798] = { + [799] = { ["id"] = "explicit.stat_448592698|68", ["text"] = "+# to Level of all Lingering Illusion Skills", ["type"] = "explicit", }, - [799] = { + [800] = { ["id"] = "explicit.stat_448592698|244", ["text"] = "+# to Level of all Living Bomb Skills", ["type"] = "explicit", }, - [800] = { + [801] = { ["id"] = "explicit.stat_448592698|233", ["text"] = "+# to Level of all Lunar Assault Skills", ["type"] = "explicit", }, - [801] = { + [802] = { ["id"] = "explicit.stat_448592698|236", ["text"] = "+# to Level of all Lunar Blessing Skills", ["type"] = "explicit", }, - [802] = { + [803] = { ["id"] = "explicit.stat_448592698|126", ["text"] = "+# to Level of all Magma Barrier Skills", ["type"] = "explicit", }, - [803] = { + [804] = { ["id"] = "explicit.stat_448592698|27", ["text"] = "+# to Level of all Magnetic Salvo Skills", ["type"] = "explicit", }, - [804] = { + [805] = { ["id"] = "explicit.stat_448592698|125", ["text"] = "+# to Level of all Mana Remnants Skills", ["type"] = "explicit", }, - [805] = { + [806] = { ["id"] = "explicit.stat_448592698|53", ["text"] = "+# to Level of all Mana Tempest Skills", ["type"] = "explicit", }, - [806] = { + [807] = { ["id"] = "explicit.stat_448592698|60", ["text"] = "+# to Level of all Mantra of Destruction Skills", ["type"] = "explicit", }, - [807] = { + [808] = { ["id"] = "explicit.stat_448592698|213", ["text"] = "+# to Level of all Mirage Archer Skills", ["type"] = "explicit", }, - [808] = { + [809] = { ["id"] = "explicit.stat_448592698|114", ["text"] = "+# to Level of all Molten Blast Skills", ["type"] = "explicit", }, - [809] = { + [810] = { ["id"] = "explicit.stat_448592698|212", ["text"] = "+# to Level of all Mortar Cannon Skills", ["type"] = "explicit", }, - [810] = { + [811] = { ["id"] = "explicit.stat_448592698|228", ["text"] = "+# to Level of all Oil Barrage Skills", ["type"] = "explicit", }, - [811] = { + [812] = { ["id"] = "explicit.stat_448592698|54", ["text"] = "+# to Level of all Oil Grenade Skills", ["type"] = "explicit", }, - [812] = { + [813] = { ["id"] = "explicit.stat_448592698|138", ["text"] = "+# to Level of all Orb of Storms Skills", ["type"] = "explicit", }, - [813] = { + [814] = { ["id"] = "explicit.stat_448592698|74", ["text"] = "+# to Level of all Overwhelming Presence Skills", ["type"] = "explicit", }, - [814] = { + [815] = { ["id"] = "explicit.stat_448592698|105", ["text"] = "+# to Level of all Pain Offering Skills", ["type"] = "explicit", }, - [815] = { + [816] = { ["id"] = "explicit.stat_448592698|112", ["text"] = "+# to Level of all Perfect Strike Skills", ["type"] = "explicit", }, - [816] = { + [817] = { ["id"] = "explicit.stat_448592698|175", ["text"] = "+# to Level of all Permafrost Bolts Skills", ["type"] = "explicit", }, - [817] = { + [818] = { ["id"] = "explicit.stat_448592698|123", ["text"] = "+# to Level of all Plague Bearer Skills", ["type"] = "explicit", }, - [818] = { + [819] = { ["id"] = "explicit.stat_448592698|25", ["text"] = "+# to Level of all Plasma Blast Skills", ["type"] = "explicit", }, - [819] = { + [820] = { ["id"] = "explicit.stat_448592698|171", ["text"] = "+# to Level of all Poisonburst Arrow Skills", ["type"] = "explicit", }, - [820] = { + [821] = { ["id"] = "explicit.stat_448592698|221", ["text"] = "+# to Level of all Pounce Skills", ["type"] = "explicit", }, - [821] = { + [822] = { ["id"] = "explicit.stat_448592698|188", ["text"] = "+# to Level of all Primal Strikes Skills", ["type"] = "explicit", }, - [822] = { + [823] = { ["id"] = "explicit.stat_448592698|90", ["text"] = "+# to Level of all Profane Ritual Skills", ["type"] = "explicit", }, - [823] = { + [824] = { ["id"] = "explicit.stat_448592698|127", ["text"] = "+# to Level of all Raging Spirits Skills", ["type"] = "explicit", }, - [824] = { + [825] = { ["id"] = "explicit.stat_448592698|48", ["text"] = "+# to Level of all Rain of Arrows Skills", ["type"] = "explicit", }, - [825] = { + [826] = { ["id"] = "explicit.stat_448592698|97", ["text"] = "+# to Level of all Raise Zombie Skills", ["type"] = "explicit", }, - [826] = { + [827] = { ["id"] = "explicit.stat_448592698|191", ["text"] = "+# to Level of all Rake Skills", ["type"] = "explicit", }, - [827] = { + [828] = { ["id"] = "explicit.stat_448592698|222", ["text"] = "+# to Level of all Rampage Skills", ["type"] = "explicit", }, - [828] = { + [829] = { ["id"] = "explicit.stat_448592698|176", ["text"] = "+# to Level of all Rapid Assault Skills", ["type"] = "explicit", }, - [829] = { + [830] = { ["id"] = "explicit.stat_448592698|115", ["text"] = "+# to Level of all Rapid Shot Skills", ["type"] = "explicit", }, - [830] = { + [831] = { ["id"] = "explicit.stat_448592698|204", ["text"] = "+# to Level of all Ravenous Swarm Skills", ["type"] = "explicit", }, - [831] = { + [832] = { ["id"] = "explicit.stat_448592698|9", ["text"] = "+# to Level of all Reaper's Invocation Skills", ["type"] = "explicit", }, - [832] = { + [833] = { ["id"] = "explicit.stat_448592698|113", ["text"] = "+# to Level of all Resonating Shield Skills", ["type"] = "explicit", }, - [833] = { + [834] = { ["id"] = "explicit.stat_448592698|217", ["text"] = "+# to Level of all Rolling Magma Skills", ["type"] = "explicit", }, - [834] = { + [835] = { ["id"] = "explicit.stat_448592698|164", ["text"] = "+# to Level of all Rolling Slam Skills", ["type"] = "explicit", }, - [835] = { + [836] = { ["id"] = "explicit.stat_448592698|10", ["text"] = "+# to Level of all Sacrifice Skills", ["type"] = "explicit", }, - [836] = { + [837] = { ["id"] = "explicit.stat_448592698|240", ["text"] = "+# to Level of all Savage Fury Skills", ["type"] = "explicit", }, - [837] = { + [838] = { ["id"] = "explicit.stat_448592698|130", ["text"] = "+# to Level of all Scavenged Plating Skills", ["type"] = "explicit", }, - [838] = { + [839] = { ["id"] = "explicit.stat_448592698|33", ["text"] = "+# to Level of all Seismic Cry Skills", ["type"] = "explicit", }, - [839] = { + [840] = { ["id"] = "explicit.stat_448592698|73", ["text"] = "+# to Level of all Shard Scavenger Skills", ["type"] = "explicit", }, - [840] = { + [841] = { ["id"] = "explicit.stat_448592698|38", ["text"] = "+# to Level of all Shattering Palm Skills", ["type"] = "explicit", }, - [841] = { + [842] = { ["id"] = "explicit.stat_448592698|133", ["text"] = "+# to Level of all Shield Charge Skills", ["type"] = "explicit", }, - [842] = { + [843] = { ["id"] = "explicit.stat_448592698|91", ["text"] = "+# to Level of all Shield Wall Skills", ["type"] = "explicit", }, - [843] = { + [844] = { ["id"] = "explicit.stat_448592698|41", ["text"] = "+# to Level of all Shockburst Rounds Skills", ["type"] = "explicit", }, - [844] = { + [845] = { ["id"] = "explicit.stat_448592698|42", ["text"] = "+# to Level of all Shockchain Arrow Skills", ["type"] = "explicit", }, - [845] = { + [846] = { ["id"] = "explicit.stat_448592698|136", ["text"] = "+# to Level of all Shockwave Totem Skills", ["type"] = "explicit", }, - [846] = { + [847] = { ["id"] = "explicit.stat_448592698|51", ["text"] = "+# to Level of all Siege Ballista Skills", ["type"] = "explicit", }, - [847] = { + [848] = { ["id"] = "explicit.stat_448592698|24", ["text"] = "+# to Level of all Siege Cascade Skills", ["type"] = "explicit", }, - [848] = { + [849] = { ["id"] = "explicit.stat_448592698|214", ["text"] = "+# to Level of all Siphon Elements Skills", ["type"] = "explicit", }, - [849] = { + [850] = { ["id"] = "explicit.stat_448592698|88", ["text"] = "+# to Level of all Siphoning Strike Skills", ["type"] = "explicit", }, - [850] = { + [851] = { ["id"] = "explicit.stat_448592698|141", ["text"] = "+# to Level of all Skeletal Arsonist Skills", ["type"] = "explicit", }, - [851] = { + [852] = { ["id"] = "explicit.stat_448592698|16", ["text"] = "+# to Level of all Skeletal Brute Skills", ["type"] = "explicit", }, - [852] = { + [853] = { ["id"] = "explicit.stat_448592698|17", ["text"] = "+# to Level of all Skeletal Cleric Skills", ["type"] = "explicit", }, - [853] = { + [854] = { ["id"] = "explicit.stat_448592698|101", ["text"] = "+# to Level of all Skeletal Frost Mage Skills", ["type"] = "explicit", }, - [854] = { + [855] = { ["id"] = "explicit.stat_448592698|50", ["text"] = "+# to Level of all Skeletal Reaver Skills", ["type"] = "explicit", }, - [855] = { - ["id"] = "explicit.stat_448592698|161", - ["text"] = "+# to Level of all Skeletal Sniper 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", }, - [858] = { + [859] = { ["id"] = "explicit.stat_448592698|111", ["text"] = "+# to Level of all Snap Skills", ["type"] = "explicit", }, - [859] = { + [860] = { ["id"] = "explicit.stat_448592698|147", ["text"] = "+# to Level of all Snipe Skills", ["type"] = "explicit", }, - [860] = { + [861] = { ["id"] = "explicit.stat_448592698|79", ["text"] = "+# to Level of all Sniper's Mark Skills", ["type"] = "explicit", }, - [861] = { + [862] = { ["id"] = "explicit.stat_448592698|109", ["text"] = "+# to Level of all Solar Orb Skills", ["type"] = "explicit", }, - [862] = { + [863] = { ["id"] = "explicit.stat_448592698|22", ["text"] = "+# to Level of all Soul Offering Skills", ["type"] = "explicit", }, - [863] = { + [864] = { ["id"] = "explicit.stat_448592698|154", ["text"] = "+# to Level of all Spark Skills", ["type"] = "explicit", }, - [864] = { + [865] = { ["id"] = "explicit.stat_448592698|194", ["text"] = "+# to Level of all Spear of Solaris Skills", ["type"] = "explicit", }, - [865] = { + [866] = { ["id"] = "explicit.stat_448592698|180", ["text"] = "+# to Level of all Spearfield Skills", ["type"] = "explicit", }, - [866] = { + [867] = { ["id"] = "explicit.stat_448592698|226", ["text"] = "+# to Level of all Spell Totem Skills", ["type"] = "explicit", }, - [867] = { + [868] = { ["id"] = "explicit.stat_448592698|20", ["text"] = "+# to Level of all Spiral Volley Skills", ["type"] = "explicit", }, - [868] = { + [869] = { ["id"] = "explicit.stat_448592698|143", ["text"] = "+# to Level of all Staggering Palm Skills", ["type"] = "explicit", }, - [869] = { + [870] = { ["id"] = "explicit.stat_448592698|39", ["text"] = "+# to Level of all Stampede Skills", ["type"] = "explicit", }, - [870] = { + [871] = { ["id"] = "explicit.stat_448592698|195", ["text"] = "+# to Level of all Storm Lance Skills", ["type"] = "explicit", }, - [871] = { + [872] = { ["id"] = "explicit.stat_448592698|94", ["text"] = "+# to Level of all Storm Wave Skills", ["type"] = "explicit", }, - [872] = { + [873] = { ["id"] = "explicit.stat_448592698|59", ["text"] = "+# to Level of all Stormblast Bolts Skills", ["type"] = "explicit", }, - [873] = { + [874] = { ["id"] = "explicit.stat_448592698|146", ["text"] = "+# to Level of all Stormcaller Arrow Skills", ["type"] = "explicit", }, - [874] = { + [875] = { ["id"] = "explicit.stat_448592698|200", ["text"] = "+# to Level of all Summon Spectre Skills", ["type"] = "explicit", }, - [875] = { + [876] = { ["id"] = "explicit.stat_448592698|49", ["text"] = "+# to Level of all Sunder Skills", ["type"] = "explicit", }, - [876] = { + [877] = { ["id"] = "explicit.stat_448592698|36", ["text"] = "+# to Level of all Supercharged Slam Skills", ["type"] = "explicit", }, - [877] = { - ["id"] = "explicit.stat_448592698|201", - ["text"] = "+# to Level of all Tamed Companion 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", }, - [880] = { + [881] = { ["id"] = "explicit.stat_448592698|106", ["text"] = "+# to Level of all Tempest Flurry Skills", ["type"] = "explicit", }, - [881] = { + [882] = { ["id"] = "explicit.stat_448592698|14", ["text"] = "+# to Level of all Temporal Chains Skills", ["type"] = "explicit", }, - [882] = { + [883] = { ["id"] = "explicit.stat_448592698|235", ["text"] = "+# to Level of all Thrashing Vines Skills", ["type"] = "explicit", }, - [883] = { + [884] = { ["id"] = "explicit.stat_448592698|185", ["text"] = "+# to Level of all Thunderous Leap Skills", ["type"] = "explicit", }, - [884] = { + [885] = { ["id"] = "explicit.stat_448592698|223", ["text"] = "+# to Level of all Thunderstorm Skills", ["type"] = "explicit", }, - [885] = { + [886] = { ["id"] = "explicit.stat_448592698|71", ["text"] = "+# to Level of all Time of Need Skills", ["type"] = "explicit", }, - [886] = { + [887] = { ["id"] = "explicit.stat_448592698|44", ["text"] = "+# to Level of all Tornado Shot Skills", ["type"] = "explicit", }, - [887] = { + [888] = { ["id"] = "explicit.stat_448592698|218", ["text"] = "+# to Level of all Tornado Skills", ["type"] = "explicit", }, - [888] = { + [889] = { ["id"] = "explicit.stat_448592698|209", ["text"] = "+# to Level of all Toxic Domain Skills", ["type"] = "explicit", }, - [889] = { + [890] = { ["id"] = "explicit.stat_448592698|108", ["text"] = "+# to Level of all Toxic Growth Skills", ["type"] = "explicit", }, - [890] = { + [891] = { ["id"] = "explicit.stat_448592698|198", ["text"] = "+# to Level of all Trail of Caltrops Skills", ["type"] = "explicit", }, - [891] = { + [892] = { ["id"] = "explicit.stat_448592698|197", ["text"] = "+# to Level of all Trinity Skills", ["type"] = "explicit", }, - [892] = { + [893] = { ["id"] = "explicit.stat_448592698|183", ["text"] = "+# to Level of all Twister Skills", ["type"] = "explicit", }, - [893] = { + [894] = { ["id"] = "explicit.stat_448592698|170", ["text"] = "+# to Level of all Unearth Skills", ["type"] = "explicit", }, - [894] = { + [895] = { ["id"] = "explicit.stat_448592698|152", ["text"] = "+# to Level of all Vaulting Impact Skills", ["type"] = "explicit", }, - [895] = { + [896] = { ["id"] = "explicit.stat_448592698|148", ["text"] = "+# to Level of all Vine Arrow Skills", ["type"] = "explicit", }, - [896] = { + [897] = { ["id"] = "explicit.stat_448592698|52", ["text"] = "+# to Level of all Volcanic Fissure Skills", ["type"] = "explicit", }, - [897] = { + [898] = { ["id"] = "explicit.stat_448592698|219", ["text"] = "+# to Level of all Volcano Skills", ["type"] = "explicit", }, - [898] = { + [899] = { ["id"] = "explicit.stat_448592698|87", ["text"] = "+# to Level of all Voltaic Grenade Skills", ["type"] = "explicit", }, - [899] = { + [900] = { ["id"] = "explicit.stat_448592698|96", ["text"] = "+# to Level of all Voltaic Mark Skills", ["type"] = "explicit", }, - [900] = { + [901] = { ["id"] = "explicit.stat_448592698|83", ["text"] = "+# to Level of all Vulnerability Skills", ["type"] = "explicit", }, - [901] = { + [902] = { ["id"] = "explicit.stat_448592698|241", ["text"] = "+# to Level of all Walking Calamity Skills", ["type"] = "explicit", }, - [902] = { + [903] = { ["id"] = "explicit.stat_448592698|131", ["text"] = "+# to Level of all War Banner Skills", ["type"] = "explicit", }, - [903] = { + [904] = { ["id"] = "explicit.stat_448592698|85", ["text"] = "+# to Level of all Wave of Frost Skills", ["type"] = "explicit", }, - [904] = { + [905] = { ["id"] = "explicit.stat_448592698|35", ["text"] = "+# to Level of all Whirling Assault Skills", ["type"] = "explicit", }, - [905] = { + [906] = { ["id"] = "explicit.stat_448592698|179", ["text"] = "+# to Level of all Whirling Slash Skills", ["type"] = "explicit", }, - [906] = { + [907] = { ["id"] = "explicit.stat_448592698|187", ["text"] = "+# to Level of all Whirlwind Lance Skills", ["type"] = "explicit", }, - [907] = { + [908] = { ["id"] = "explicit.stat_448592698|102", ["text"] = "+# to Level of all Wind Blast Skills", ["type"] = "explicit", }, - [908] = { + [909] = { ["id"] = "explicit.stat_448592698|128", ["text"] = "+# to Level of all Wind Dancer Skills", ["type"] = "explicit", }, - [909] = { + [910] = { ["id"] = "explicit.stat_448592698|190", ["text"] = "+# to Level of all Wind Serpent's Fury Skills", ["type"] = "explicit", }, - [910] = { + [911] = { ["id"] = "explicit.stat_448592698|227", ["text"] = "+# to Level of all Wing Blast Skills", ["type"] = "explicit", }, - [911] = { + [912] = { ["id"] = "explicit.stat_448592698|132", ["text"] = "+# to Level of all Withering Presence Skills", ["type"] = "explicit", }, - [912] = { + [913] = { ["id"] = "explicit.stat_448592698|220", ["text"] = "+# to Level of all Wolf Pack Skills", ["type"] = "explicit", }, - [913] = { + [914] = { ["id"] = "explicit.stat_4163415912", ["text"] = "+# to Spirit per Socket filled", ["type"] = "explicit", }, - [914] = { + [915] = { ["id"] = "explicit.stat_1054098949", ["text"] = "+#% Monster Elemental Resistances", ["type"] = "explicit", }, - [915] = { + [916] = { ["id"] = "explicit.stat_2593651571", ["text"] = "+#% to all Elemental Resistances per Socket filled", ["type"] = "explicit", }, - [916] = { + [917] = { ["id"] = "explicit.stat_1291132817", ["text"] = "+1 to Armour per Strength", ["type"] = "explicit", }, - [917] = { + [918] = { ["id"] = "explicit.stat_1345486764", ["text"] = "+1 to Maximum Spirit per # Maximum Life", ["type"] = "explicit", }, - [918] = { + [919] = { ["id"] = "explicit.stat_2134207902", ["text"] = "+100% of Armour also applies to Lightning Damage", ["type"] = "explicit", }, - [919] = { + [920] = { ["id"] = "explicit.stat_3452816629", ["text"] = "1% more Unarmed Damage per # Strength", ["type"] = "explicit", }, - [920] = { + [921] = { ["id"] = "explicit.stat_1388221282", ["text"] = "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", ["type"] = "explicit", }, - [921] = { + [922] = { ["id"] = "explicit.stat_2975078312", ["text"] = "Abyss Monsters in your Maps grant #% increased Experience", ["type"] = "explicit", }, - [922] = { + [923] = { ["id"] = "explicit.stat_4157613372", ["text"] = "Abyss Pits have #% chance to spawn all Monsters as at least Magic", ["type"] = "explicit", }, - [923] = { + [924] = { ["id"] = "explicit.stat_4256531808", ["text"] = "Abyss Pits in Area are twice as likely to have Rewards", ["type"] = "explicit", }, - [924] = { + [925] = { ["id"] = "explicit.stat_2975078312", ["text"] = "Abyssal Monsters grant #% increased Experience", ["type"] = "explicit", }, - [925] = { + [926] = { ["id"] = "explicit.stat_664606484", ["text"] = "Abyssal Monsters have #% increased Effectiveness for each closed Pit, up to 100%", ["type"] = "explicit", }, - [926] = { + [927] = { ["id"] = "explicit.stat_360553763", ["text"] = "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", ["type"] = "explicit", }, - [927] = { + [928] = { ["id"] = "explicit.stat_3979226081", ["text"] = "Abyssal Wasting also applies #% to Cold Resistance", ["type"] = "explicit", }, - [928] = { + [929] = { ["id"] = "explicit.stat_2991563371", ["text"] = "Abyssal Wasting also applies #% to Fire Resistance", ["type"] = "explicit", }, - [929] = { + [930] = { ["id"] = "explicit.stat_1726353460", ["text"] = "Abyssal Wasting also applies #% to Lightning Resistance", ["type"] = "explicit", }, - [930] = { + [931] = { ["id"] = "explicit.stat_1679776108", ["text"] = "Abyssal Wasting you inflict has Infinite Duration", ["type"] = "explicit", }, - [931] = { + [932] = { ["id"] = "explicit.stat_2722831300", ["text"] = "Abysses have #% increased chance to lead to an Abyssal Depths", ["type"] = "explicit", }, - [932] = { + [933] = { ["id"] = "explicit.stat_2890355696", ["text"] = "Abysses have a #% chance to contain 4 additional Pits", ["type"] = "explicit", }, - [933] = { + [934] = { ["id"] = "explicit.stat_2722831300", ["text"] = "Abysses in Area have #% increased chance to lead to an Abyssal Depths", ["type"] = "explicit", }, - [934] = { + [935] = { ["id"] = "explicit.stat_2399592398", ["text"] = "Abysses lead to an Abyssal Boss", ["type"] = "explicit", }, - [935] = { + [936] = { ["id"] = "explicit.stat_2278777540", ["text"] = "Abysses lead to an Abyssal Depths", ["type"] = "explicit", }, - [936] = { + [937] = { ["id"] = "explicit.stat_944630113", ["text"] = "Abysses spawn #% increased Monsters", ["type"] = "explicit", }, - [937] = { + [938] = { ["id"] = "explicit.stat_2161347476", ["text"] = "Accuracy Rating is Doubled", ["type"] = "explicit", }, - [938] = { + [939] = { ["id"] = "explicit.stat_674553446", ["text"] = "Adds # to # Chaos Damage to Attacks", ["type"] = "explicit", }, - [939] = { + [940] = { ["id"] = "explicit.stat_2223678961", ["text"] = "Adds # to # Chaos damage", ["type"] = "explicit", }, - [940] = { + [941] = { ["id"] = "explicit.stat_1037193709", ["text"] = "Adds # to # Cold Damage", ["type"] = "explicit", }, - [941] = { + [942] = { ["id"] = "explicit.stat_4067062424", ["text"] = "Adds # to # Cold damage to Attacks", ["type"] = "explicit", }, - [942] = { + [943] = { ["id"] = "explicit.stat_709508406", ["text"] = "Adds # to # Fire Damage", ["type"] = "explicit", }, - [943] = { + [944] = { ["id"] = "explicit.stat_1573130764", ["text"] = "Adds # to # Fire damage to Attacks", ["type"] = "explicit", }, - [944] = { + [945] = { ["id"] = "explicit.stat_3336890334", ["text"] = "Adds # to # Lightning Damage", ["type"] = "explicit", }, - [945] = { + [946] = { ["id"] = "explicit.stat_3111921451", ["text"] = "Adds # to # Lightning Damage to Attacks per 20 Intelligence", ["type"] = "explicit", }, - [946] = { + [947] = { ["id"] = "explicit.stat_3835522656", ["text"] = "Adds # to # Lightning Damage to Unarmed Melee Hits", ["type"] = "explicit", }, - [947] = { + [948] = { ["id"] = "explicit.stat_1754445556", ["text"] = "Adds # to # Lightning damage to Attacks", ["type"] = "explicit", }, - [948] = { + [949] = { ["id"] = "explicit.stat_1940865751", ["text"] = "Adds # to # Physical Damage", ["type"] = "explicit", }, - [949] = { + [950] = { ["id"] = "explicit.stat_3032590688", ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "explicit", }, - [950] = { + [951] = { ["id"] = "explicit.stat_874646180", ["text"] = "Aggravate Bleeding on Enemies when they Enter your Presence", ["type"] = "explicit", }, - [951] = { + [952] = { ["id"] = "explicit.stat_2312741059", ["text"] = "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", ["type"] = "explicit", }, - [952] = { + [953] = { ["id"] = "explicit.stat_1952324525", ["text"] = "All Attacks count as Empowered Attacks", ["type"] = "explicit", }, - [953] = { + [954] = { ["id"] = "explicit.stat_4012215578", ["text"] = "All Damage from Hits Contributes to Poison Magnitude", ["type"] = "explicit", }, - [954] = { + [955] = { ["id"] = "explicit.stat_1717295693", ["text"] = "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", ["type"] = "explicit", }, - [955] = { + [956] = { ["id"] = "explicit.stat_1375667591", ["text"] = "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", ["type"] = "explicit", }, - [956] = { + [957] = { ["id"] = "explicit.stat_2156230257", ["text"] = "All Damage from Hits with this Weapon Contributes to Chill Magnitude", ["type"] = "explicit", }, - [957] = { + [958] = { ["id"] = "explicit.stat_3761294489", ["text"] = "All Damage from Hits with this Weapon Contributes to Freeze Buildup", ["type"] = "explicit", }, - [958] = { + [959] = { ["id"] = "explicit.stat_4142786792", ["text"] = "All Damage from Hits with this Weapon Contributes to Pin Buildup", ["type"] = "explicit", }, - [959] = { + [960] = { ["id"] = "explicit.stat_1705072014", ["text"] = "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", ["type"] = "explicit", }, - [960] = { + [961] = { ["id"] = "explicit.stat_2420248029", ["text"] = "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", ["type"] = "explicit", }, - [961] = { + [962] = { ["id"] = "explicit.stat_1291285202", ["text"] = "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", ["type"] = "explicit", }, - [962] = { + [963] = { ["id"] = "explicit.stat_3874491706", ["text"] = "All Mage's Legacies have #% increased effect per duplicate Mage's Legacy you have", ["type"] = "explicit", }, - [963] = { + [964] = { ["id"] = "explicit.stat_1910743684", ["text"] = "All damage with this Weapon causes Electrocution buildup", ["type"] = "explicit", }, - [964] = { + [965] = { ["id"] = "explicit.stat_4258251165", ["text"] = "Allies in your Presence Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, - [965] = { + [966] = { ["id"] = "explicit.stat_2173791158", ["text"] = "Allies in your Presence Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, - [966] = { + [967] = { ["id"] = "explicit.stat_4010677958", ["text"] = "Allies in your Presence Regenerate # Life per second", ["type"] = "explicit", }, - [967] = { + [968] = { ["id"] = "explicit.stat_3081479811", ["text"] = "Allies in your Presence Regenerate #% of their Maximum Life per second", ["type"] = "explicit", }, - [968] = { + [969] = { ["id"] = "explicit.stat_262946222", ["text"] = "Allies in your Presence deal # to # added Attack Chaos Damage", ["type"] = "explicit", }, - [969] = { + [970] = { ["id"] = "explicit.stat_2347036682", ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", ["type"] = "explicit", }, - [970] = { + [971] = { ["id"] = "explicit.stat_849987426", ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", ["type"] = "explicit", }, - [971] = { + [972] = { ["id"] = "explicit.stat_2854751904", ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", ["type"] = "explicit", }, - [972] = { + [973] = { ["id"] = "explicit.stat_1574590649", ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "explicit", }, - [973] = { + [974] = { ["id"] = "explicit.stat_1798257884", ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "explicit", }, - [974] = { + [975] = { ["id"] = "explicit.stat_3169585282", ["text"] = "Allies in your Presence have # to Accuracy Rating", ["type"] = "explicit", }, - [975] = { + [976] = { ["id"] = "explicit.stat_1998951374", ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "explicit", }, - [976] = { + [977] = { ["id"] = "explicit.stat_289128254", ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "explicit", }, - [977] = { + [978] = { ["id"] = "explicit.stat_3057012405", ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "explicit", }, - [978] = { + [979] = { ["id"] = "explicit.stat_1250712710", ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", ["type"] = "explicit", }, - [979] = { + [980] = { ["id"] = "explicit.stat_3850614073", ["text"] = "Allies in your Presence have #% to all Elemental Resistances", ["type"] = "explicit", }, - [980] = { + [981] = { ["id"] = "explicit.stat_1361645249", ["text"] = "Allies in your Presence have Block Chance equal to yours", ["type"] = "explicit", }, - [981] = { + [982] = { ["id"] = "explicit.stat_3929993388", ["text"] = "Allocates # Sinister Jewel sockets", ["type"] = "explicit", }, - [982] = { + [983] = { ["id"] = "explicit.stat_2954116742|7338", ["text"] = "Allocates Abasement", ["type"] = "explicit", }, - [983] = { + [984] = { ["id"] = "explicit.stat_2954116742|43082", ["text"] = "Allocates Acceleration", ["type"] = "explicit", }, - [984] = { + [985] = { ["id"] = "explicit.stat_2954116742|12822", ["text"] = "Allocates Adaptable Assault", ["type"] = "explicit", }, - [985] = { + [986] = { ["id"] = "explicit.stat_2954116742|43250", ["text"] = "Allocates Adaptive Skin", ["type"] = "explicit", }, - [986] = { + [987] = { ["id"] = "explicit.stat_2954116742|35876", ["text"] = "Allocates Admonisher", ["type"] = "explicit", }, - [987] = { + [988] = { ["id"] = "explicit.stat_2954116742|17340", ["text"] = "Allocates Adrenaline Rush", ["type"] = "explicit", }, - [988] = { + [989] = { ["id"] = "explicit.stat_2954116742|43829", ["text"] = "Allocates Advanced Munitions", ["type"] = "explicit", }, - [989] = { + [990] = { ["id"] = "explicit.stat_2954116742|4295", ["text"] = "Allocates Adverse Growth", ["type"] = "explicit", }, - [990] = { + [991] = { ["id"] = "explicit.stat_2954116742|4716", ["text"] = "Allocates Afterimage", ["type"] = "explicit", }, - [991] = { + [992] = { ["id"] = "explicit.stat_2954116742|50253", ["text"] = "Allocates Aftershocks", ["type"] = "explicit", }, - [992] = { + [993] = { ["id"] = "explicit.stat_2954116742|59938", ["text"] = "Allocates Against the Elements", ["type"] = "explicit", }, - [993] = { + [994] = { ["id"] = "explicit.stat_2954116742|6655", ["text"] = "Allocates Aggravation", ["type"] = "explicit", }, - [994] = { + [995] = { ["id"] = "explicit.stat_2954116742|8896", ["text"] = "Allocates Agile Sprinter", ["type"] = "explicit", }, - [995] = { + [996] = { ["id"] = "explicit.stat_2954116742|56493", ["text"] = "Allocates Agile Succession", ["type"] = "explicit", }, - [996] = { + [997] = { ["id"] = "explicit.stat_2954116742|43088", ["text"] = "Allocates Agonising Calamity", ["type"] = "explicit", }, - [997] = { + [998] = { ["id"] = "explicit.stat_2954116742|55817", ["text"] = "Allocates Alchemical Oil", ["type"] = "explicit", }, - [998] = { + [999] = { ["id"] = "explicit.stat_2954116742|43854", ["text"] = "Allocates All For One", ["type"] = "explicit", }, - [999] = { + [1000] = { ["id"] = "explicit.stat_2954116742|58016", ["text"] = "Allocates All Natural", ["type"] = "explicit", }, - [1000] = { + [1001] = { ["id"] = "explicit.stat_2954116742|48974", ["text"] = "Allocates Altered Brain Chemistry", ["type"] = "explicit", }, - [1001] = { + [1002] = { ["id"] = "explicit.stat_2954116742|23764", ["text"] = "Allocates Alternating Current", ["type"] = "explicit", }, - [1002] = { + [1003] = { ["id"] = "explicit.stat_2954116742|20558", ["text"] = "Allocates Among the Hordes", ["type"] = "explicit", }, - [1003] = { + [1004] = { ["id"] = "explicit.stat_2954116742|2575", ["text"] = "Allocates Ancestral Alacrity", ["type"] = "explicit", }, - [1004] = { + [1005] = { ["id"] = "explicit.stat_2954116742|26339", ["text"] = "Allocates Ancestral Artifice", ["type"] = "explicit", }, - [1005] = { + [1006] = { ["id"] = "explicit.stat_2954116742|51820", ["text"] = "Allocates Ancestral Conduits", ["type"] = "explicit", }, - [1006] = { + [1007] = { ["id"] = "explicit.stat_2954116742|18419", ["text"] = "Allocates Ancestral Mending", ["type"] = "explicit", }, - [1007] = { + [1008] = { ["id"] = "explicit.stat_2954116742|43396", ["text"] = "Allocates Ancestral Reach", ["type"] = "explicit", }, - [1008] = { + [1009] = { ["id"] = "explicit.stat_2954116742|62609", ["text"] = "Allocates Ancestral Unity", ["type"] = "explicit", }, - [1009] = { + [1010] = { ["id"] = "explicit.stat_2954116742|5728", ["text"] = "Allocates Ancient Aegis", ["type"] = "explicit", }, - [1010] = { + [1011] = { ["id"] = "explicit.stat_2954116742|38398", ["text"] = "Allocates Apocalypse", ["type"] = "explicit", }, - [1011] = { + [1012] = { ["id"] = "explicit.stat_2954116742|46224", ["text"] = "Allocates Arcane Alchemy", ["type"] = "explicit", }, - [1012] = { + [1013] = { ["id"] = "explicit.stat_2954116742|14324", ["text"] = "Allocates Arcane Blossom", ["type"] = "explicit", }, - [1013] = { + [1014] = { ["id"] = "explicit.stat_2954116742|19044", ["text"] = "Allocates Arcane Intensity", ["type"] = "explicit", }, - [1014] = { + [1015] = { ["id"] = "explicit.stat_2954116742|46972", ["text"] = "Allocates Arcane Mixtures", ["type"] = "explicit", }, - [1015] = { + [1016] = { ["id"] = "explicit.stat_2954116742|16940", ["text"] = "Allocates Arcane Nature", ["type"] = "explicit", }, - [1016] = { + [1017] = { ["id"] = "explicit.stat_2954116742|46124", ["text"] = "Allocates Arcane Remnants", ["type"] = "explicit", }, - [1017] = { + [1018] = { ["id"] = "explicit.stat_2954116742|42045", ["text"] = "Allocates Archon of the Blizzard", ["type"] = "explicit", }, - [1018] = { + [1019] = { ["id"] = "explicit.stat_2954116742|27434", ["text"] = "Allocates Archon of the Storm", ["type"] = "explicit", }, - [1019] = { + [1020] = { ["id"] = "explicit.stat_2954116742|12245", ["text"] = "Allocates Arsonist", ["type"] = "explicit", }, - [1020] = { + [1021] = { ["id"] = "explicit.stat_2954116742|58817", ["text"] = "Allocates Artillery Strike", ["type"] = "explicit", }, - [1021] = { + [1022] = { ["id"] = "explicit.stat_2954116742|12661", ["text"] = "Allocates Asceticism", ["type"] = "explicit", }, - [1022] = { + [1023] = { ["id"] = "explicit.stat_2954116742|27388", ["text"] = "Allocates Aspiring Genius", ["type"] = "explicit", }, - [1023] = { + [1024] = { ["id"] = "explicit.stat_2954116742|35560", ["text"] = "Allocates At your Command", ["type"] = "explicit", }, - [1024] = { + [1025] = { ["id"] = "explicit.stat_2954116742|20397", ["text"] = "Allocates Authority", ["type"] = "explicit", }, - [1025] = { + [1026] = { ["id"] = "explicit.stat_2954116742|50673", ["text"] = "Allocates Avoiding Deflection", ["type"] = "explicit", }, - [1026] = { + [1027] = { ["id"] = "explicit.stat_2954116742|33059", ["text"] = "Allocates Back in Action", ["type"] = "explicit", }, - [1027] = { + [1028] = { ["id"] = "explicit.stat_2954116742|53853", ["text"] = "Allocates Backup Plan", ["type"] = "explicit", }, - [1028] = { + [1029] = { ["id"] = "explicit.stat_2954116742|62455", ["text"] = "Allocates Bannerman", ["type"] = "explicit", }, - [1029] = { + [1030] = { ["id"] = "explicit.stat_2954116742|50562", ["text"] = "Allocates Barbaric Strength", ["type"] = "explicit", }, - [1030] = { + [1031] = { ["id"] = "explicit.stat_2954116742|50062", ["text"] = "Allocates Barrier of Venarius", ["type"] = "explicit", }, - [1031] = { + [1032] = { ["id"] = "explicit.stat_2954116742|8916", ["text"] = "Allocates Bashing Beast", ["type"] = "explicit", }, - [1032] = { + [1033] = { ["id"] = "explicit.stat_2954116742|64240", ["text"] = "Allocates Battle Fever", ["type"] = "explicit", }, - [1033] = { + [1034] = { ["id"] = "explicit.stat_2954116742|37276", ["text"] = "Allocates Battle Trance", ["type"] = "explicit", }, - [1034] = { + [1035] = { ["id"] = "explicit.stat_2954116742|41620", ["text"] = "Allocates Bear's Roar", ["type"] = "explicit", }, - [1035] = { + [1036] = { ["id"] = "explicit.stat_2954116742|59720", ["text"] = "Allocates Beastial Skin", ["type"] = "explicit", }, - [1036] = { + [1037] = { ["id"] = "explicit.stat_2954116742|25482", ["text"] = "Allocates Beef", ["type"] = "explicit", }, - [1037] = { + [1038] = { ["id"] = "explicit.stat_2954116742|5642", ["text"] = "Allocates Behemoth", ["type"] = "explicit", }, - [1038] = { + [1039] = { ["id"] = "explicit.stat_2954116742|10873", ["text"] = "Allocates Bestial Rage", ["type"] = "explicit", }, - [1039] = { + [1040] = { ["id"] = "explicit.stat_2954116742|38329", ["text"] = "Allocates Biting Frost", ["type"] = "explicit", }, - [1040] = { + [1041] = { ["id"] = "explicit.stat_2954116742|17029", ["text"] = "Allocates Blade Catcher", ["type"] = "explicit", }, - [1041] = { + [1042] = { ["id"] = "explicit.stat_2954116742|2394", ["text"] = "Allocates Blade Flurry", ["type"] = "explicit", }, - [1042] = { + [1043] = { ["id"] = "explicit.stat_2954116742|25753", ["text"] = "Allocates Blazing Arms", ["type"] = "explicit", }, - [1043] = { + [1044] = { ["id"] = "explicit.stat_2954116742|18308", ["text"] = "Allocates Bleeding Out", ["type"] = "explicit", }, - [1044] = { + [1045] = { ["id"] = "explicit.stat_2954116742|48925", ["text"] = "Allocates Blessing of the Moon", ["type"] = "explicit", }, - [1045] = { + [1046] = { ["id"] = "explicit.stat_2954116742|42354", ["text"] = "Allocates Blinding Flash", ["type"] = "explicit", }, - [1046] = { + [1047] = { ["id"] = "explicit.stat_2954116742|20916", ["text"] = "Allocates Blinding Strike", ["type"] = "explicit", }, - [1047] = { + [1048] = { ["id"] = "explicit.stat_2954116742|39083", ["text"] = "Allocates Blood Rush", ["type"] = "explicit", }, - [1048] = { + [1049] = { ["id"] = "explicit.stat_2954116742|58183", ["text"] = "Allocates Blood Tearing", ["type"] = "explicit", }, - [1049] = { + [1050] = { ["id"] = "explicit.stat_2954116742|48524", ["text"] = "Allocates Blood Transfusion", ["type"] = "explicit", }, - [1050] = { + [1051] = { ["id"] = "explicit.stat_2954116742|35792", ["text"] = "Allocates Blood of Rage", ["type"] = "explicit", }, - [1051] = { + [1052] = { ["id"] = "explicit.stat_2954116742|49214", ["text"] = "Allocates Blood of the Wolf", ["type"] = "explicit", }, - [1052] = { + [1053] = { ["id"] = "explicit.stat_2954116742|54990", ["text"] = "Allocates Bloodletting", ["type"] = "explicit", }, - [1053] = { + [1054] = { ["id"] = "explicit.stat_2954116742|10772", ["text"] = "Allocates Bloodthirsty", ["type"] = "explicit", }, - [1054] = { + [1055] = { ["id"] = "explicit.stat_2954116742|42177", ["text"] = "Allocates Blurred Motion", ["type"] = "explicit", }, - [1055] = { + [1056] = { ["id"] = "explicit.stat_2954116742|26070", ["text"] = "Allocates Bolstering Yell", ["type"] = "explicit", }, - [1056] = { + [1057] = { ["id"] = "explicit.stat_2954116742|17725", ["text"] = "Allocates Bonded Precision", ["type"] = "explicit", }, - [1057] = { + [1058] = { ["id"] = "explicit.stat_2954116742|26563", ["text"] = "Allocates Bone Chains", ["type"] = "explicit", }, - [1058] = { + [1059] = { ["id"] = "explicit.stat_2954116742|52618", ["text"] = "Allocates Boon of the Beast", ["type"] = "explicit", }, - [1059] = { + [1060] = { ["id"] = "explicit.stat_2954116742|15114", ["text"] = "Allocates Boundless Growth", ["type"] = "explicit", }, - [1060] = { + [1061] = { ["id"] = "explicit.stat_2954116742|23244", ["text"] = "Allocates Bounty Hunter", ["type"] = "explicit", }, - [1061] = { + [1062] = { ["id"] = "explicit.stat_2954116742|37806", ["text"] = "Allocates Branching Bolts", ["type"] = "explicit", }, - [1062] = { + [1063] = { ["id"] = "explicit.stat_2954116742|14777", ["text"] = "Allocates Bravado", ["type"] = "explicit", }, - [1063] = { + [1064] = { ["id"] = "explicit.stat_2954116742|21453", ["text"] = "Allocates Breakage", ["type"] = "explicit", }, - [1064] = { + [1065] = { ["id"] = "explicit.stat_2954116742|39347", ["text"] = "Allocates Breaking Blows", ["type"] = "explicit", }, - [1065] = { + [1066] = { ["id"] = "explicit.stat_2954116742|7777", ["text"] = "Allocates Breaking Point", ["type"] = "explicit", }, - [1066] = { + [1067] = { ["id"] = "explicit.stat_2954116742|24655", ["text"] = "Allocates Breath of Fire", ["type"] = "explicit", }, - [1067] = { + [1068] = { ["id"] = "explicit.stat_2954116742|18086", ["text"] = "Allocates Breath of Ice", ["type"] = "explicit", }, - [1068] = { + [1069] = { ["id"] = "explicit.stat_2954116742|61338", ["text"] = "Allocates Breath of Lightning", ["type"] = "explicit", }, - [1069] = { + [1070] = { ["id"] = "explicit.stat_2954116742|9535", ["text"] = "Allocates Brinerot Ferocity", ["type"] = "explicit", }, - [1070] = { + [1071] = { ["id"] = "explicit.stat_2954116742|48565", ["text"] = "Allocates Bringer of Order", ["type"] = "explicit", }, - [1071] = { + [1072] = { ["id"] = "explicit.stat_2954116742|53935", ["text"] = "Allocates Briny Carapace", ["type"] = "explicit", }, - [1072] = { + [1073] = { ["id"] = "explicit.stat_2954116742|63541", ["text"] = "Allocates Brush Off", ["type"] = "explicit", }, - [1073] = { + [1074] = { ["id"] = "explicit.stat_2954116742|50392", ["text"] = "Allocates Brute Strength", ["type"] = "explicit", }, - [1074] = { + [1075] = { ["id"] = "explicit.stat_2954116742|15986", ["text"] = "Allocates Building Toxins", ["type"] = "explicit", }, - [1075] = { + [1076] = { ["id"] = "explicit.stat_2954116742|53294", ["text"] = "Allocates Burn Away", ["type"] = "explicit", }, - [1076] = { + [1077] = { ["id"] = "explicit.stat_2954116742|8554", ["text"] = "Allocates Burning Nature", ["type"] = "explicit", }, - [1077] = { + [1078] = { ["id"] = "explicit.stat_2954116742|6544", ["text"] = "Allocates Burning Strikes", ["type"] = "explicit", }, - [1078] = { + [1079] = { ["id"] = "explicit.stat_2954116742|35324", ["text"] = "Allocates Burnout", ["type"] = "explicit", }, - [1079] = { + [1080] = { ["id"] = "explicit.stat_2954116742|6514", ["text"] = "Allocates Cacophony", ["type"] = "explicit", }, - [1080] = { + [1081] = { ["id"] = "explicit.stat_2954116742|32799", ["text"] = "Allocates Captivating Companionship", ["type"] = "explicit", }, - [1081] = { + [1082] = { ["id"] = "explicit.stat_2954116742|50795", ["text"] = "Allocates Careful Aim", ["type"] = "explicit", }, - [1082] = { + [1083] = { ["id"] = "explicit.stat_2954116742|46197", ["text"] = "Allocates Careful Assassin", ["type"] = "explicit", }, - [1083] = { + [1084] = { ["id"] = "explicit.stat_2954116742|17955", ["text"] = "Allocates Careful Consideration", ["type"] = "explicit", }, - [1084] = { + [1085] = { ["id"] = "explicit.stat_2954116742|52348", ["text"] = "Allocates Carved Earth", ["type"] = "explicit", }, - [1085] = { + [1086] = { ["id"] = "explicit.stat_2954116742|44005", ["text"] = "Allocates Casting Cascade", ["type"] = "explicit", }, - [1086] = { + [1087] = { ["id"] = "explicit.stat_2954116742|31433", ["text"] = "Allocates Catalysis", ["type"] = "explicit", }, - [1087] = { + [1088] = { ["id"] = "explicit.stat_2954116742|9472", ["text"] = "Allocates Catapult", ["type"] = "explicit", }, - [1088] = { + [1089] = { ["id"] = "explicit.stat_2954116742|32664", ["text"] = "Allocates Chakra of Breathing", ["type"] = "explicit", }, - [1089] = { + [1090] = { ["id"] = "explicit.stat_2954116742|63400", ["text"] = "Allocates Chakra of Elements", ["type"] = "explicit", }, - [1090] = { + [1091] = { ["id"] = "explicit.stat_2954116742|25362", ["text"] = "Allocates Chakra of Impact", ["type"] = "explicit", }, - [1091] = { + [1092] = { ["id"] = "explicit.stat_2954116742|35031", ["text"] = "Allocates Chakra of Life", ["type"] = "explicit", }, - [1092] = { + [1093] = { ["id"] = "explicit.stat_2954116742|28963", ["text"] = "Allocates Chakra of Rhythm", ["type"] = "explicit", }, - [1093] = { + [1094] = { ["id"] = "explicit.stat_2954116742|42347", ["text"] = "Allocates Chakra of Sight", ["type"] = "explicit", }, - [1094] = { + [1095] = { ["id"] = "explicit.stat_2954116742|42760", ["text"] = "Allocates Chakra of Stability", ["type"] = "explicit", }, - [1095] = { + [1096] = { ["id"] = "explicit.stat_2954116742|29306", ["text"] = "Allocates Chakra of Thought", ["type"] = "explicit", }, - [1096] = { + [1097] = { ["id"] = "explicit.stat_2954116742|5410", ["text"] = "Allocates Channelled Heritage", ["type"] = "explicit", }, - [1097] = { + [1098] = { ["id"] = "explicit.stat_2954116742|23427", ["text"] = "Allocates Chilled to the Bone", ["type"] = "explicit", }, - [1098] = { + [1099] = { ["id"] = "explicit.stat_2954116742|5686", ["text"] = "Allocates Chillproof", ["type"] = "explicit", }, - [1099] = { + [1100] = { ["id"] = "explicit.stat_2954116742|39990", ["text"] = "Allocates Chronomancy", ["type"] = "explicit", }, - [1100] = { + [1101] = { ["id"] = "explicit.stat_2954116742|57805", ["text"] = "Allocates Clear Space", ["type"] = "explicit", }, - [1101] = { + [1102] = { ["id"] = "explicit.stat_2954116742|4627", ["text"] = "Allocates Climate Change", ["type"] = "explicit", }, - [1102] = { + [1103] = { ["id"] = "explicit.stat_2954116742|38479", ["text"] = "Allocates Close Confines", ["type"] = "explicit", }, - [1103] = { + [1104] = { ["id"] = "explicit.stat_2954116742|29514", ["text"] = "Allocates Cluster Bombs", ["type"] = "explicit", }, - [1104] = { + [1105] = { ["id"] = "explicit.stat_2954116742|44330", ["text"] = "Allocates Coated Arms", ["type"] = "explicit", }, - [1105] = { + [1106] = { ["id"] = "explicit.stat_2954116742|35618", ["text"] = "Allocates Cold Coat", ["type"] = "explicit", }, - [1106] = { + [1107] = { ["id"] = "explicit.stat_2954116742|26518", ["text"] = "Allocates Cold Nature", ["type"] = "explicit", }, - [1107] = { + [1108] = { ["id"] = "explicit.stat_2954116742|47363", ["text"] = "Allocates Colossal Weapon", ["type"] = "explicit", }, - [1108] = { + [1109] = { ["id"] = "explicit.stat_2954116742|28044", ["text"] = "Allocates Coming Calamity", ["type"] = "explicit", }, - [1109] = { + [1110] = { ["id"] = "explicit.stat_2954116742|42660", ["text"] = "Allocates Commanding Rage", ["type"] = "explicit", }, - [1110] = { + [1111] = { ["id"] = "explicit.stat_2954116742|36931", ["text"] = "Allocates Concussive Attack", ["type"] = "explicit", }, - [1111] = { + [1112] = { ["id"] = "explicit.stat_2954116742|52257", ["text"] = "Allocates Conductive Embrace", ["type"] = "explicit", }, - [1112] = { + [1113] = { ["id"] = "explicit.stat_2954116742|34300", ["text"] = "Allocates Conservative Casting", ["type"] = "explicit", }, - [1113] = { + [1114] = { ["id"] = "explicit.stat_2954116742|15030", ["text"] = "Allocates Consistent Intake", ["type"] = "explicit", }, - [1114] = { + [1115] = { ["id"] = "explicit.stat_2954116742|54640", ["text"] = "Allocates Constricting", ["type"] = "explicit", }, - [1115] = { + [1116] = { ["id"] = "explicit.stat_2954116742|30748", ["text"] = "Allocates Controlled Chaos", ["type"] = "explicit", }, - [1116] = { + [1117] = { ["id"] = "explicit.stat_2954116742|13823", ["text"] = "Allocates Controlling Magic", ["type"] = "explicit", }, - [1117] = { + [1118] = { ["id"] = "explicit.stat_2954116742|36623", ["text"] = "Allocates Convalescence", ["type"] = "explicit", }, - [1118] = { + [1119] = { ["id"] = "explicit.stat_2954116742|56776", ["text"] = "Allocates Cooked", ["type"] = "explicit", }, - [1119] = { + [1120] = { ["id"] = "explicit.stat_2954116742|6133", ["text"] = "Allocates Core of the Guardian", ["type"] = "explicit", }, - [1120] = { + [1121] = { ["id"] = "explicit.stat_2954116742|27761", ["text"] = "Allocates Counterstancing", ["type"] = "explicit", }, - [1121] = { + [1122] = { ["id"] = "explicit.stat_2954116742|50687", ["text"] = "Allocates Coursing Energy", ["type"] = "explicit", }, - [1122] = { + [1123] = { ["id"] = "explicit.stat_2954116742|63451", ["text"] = "Allocates Cranial Impact", ["type"] = "explicit", }, - [1123] = { + [1124] = { ["id"] = "explicit.stat_2954116742|9323", ["text"] = "Allocates Craving Slaughter", ["type"] = "explicit", }, - [1124] = { + [1125] = { ["id"] = "explicit.stat_2954116742|20511", ["text"] = "Allocates Cremating Cries", ["type"] = "explicit", }, - [1125] = { + [1126] = { ["id"] = "explicit.stat_2954116742|19715", ["text"] = "Allocates Cremation", ["type"] = "explicit", }, - [1126] = { + [1127] = { ["id"] = "explicit.stat_2954116742|43677", ["text"] = "Allocates Crippling Toxins", ["type"] = "explicit", }, - [1127] = { + [1128] = { ["id"] = "explicit.stat_2954116742|57204", ["text"] = "Allocates Critical Exploit", ["type"] = "explicit", }, - [1128] = { + [1129] = { ["id"] = "explicit.stat_2954116742|45488", ["text"] = "Allocates Cross Strike", ["type"] = "explicit", }, - [1129] = { + [1130] = { ["id"] = "explicit.stat_2954116742|42981", ["text"] = "Allocates Cruel Methods", ["type"] = "explicit", }, - [1130] = { + [1131] = { ["id"] = "explicit.stat_2954116742|35739", ["text"] = "Allocates Crushing Judgement", ["type"] = "explicit", }, - [1131] = { + [1132] = { ["id"] = "explicit.stat_2954116742|18505", ["text"] = "Allocates Crushing Verdict", ["type"] = "explicit", }, - [1132] = { + [1133] = { ["id"] = "explicit.stat_2954116742|38895", ["text"] = "Allocates Crystal Elixir", ["type"] = "explicit", }, - [1133] = { + [1134] = { ["id"] = "explicit.stat_2954116742|61026", ["text"] = "Allocates Crystalline Flesh", ["type"] = "explicit", }, - [1134] = { + [1135] = { ["id"] = "explicit.stat_2954116742|32151", ["text"] = "Allocates Crystalline Resistance", ["type"] = "explicit", }, - [1135] = { + [1136] = { ["id"] = "explicit.stat_2954116742|5332", ["text"] = "Allocates Crystallised Immunities", ["type"] = "explicit", }, - [1136] = { + [1137] = { ["id"] = "explicit.stat_2954116742|36341", ["text"] = "Allocates Cull the Hordes", ["type"] = "explicit", }, - [1137] = { + [1138] = { ["id"] = "explicit.stat_2954116742|13708", ["text"] = "Allocates Curved Weapon", ["type"] = "explicit", }, - [1138] = { + [1139] = { ["id"] = "explicit.stat_2954116742|32507", ["text"] = "Allocates Cut to the Bone", ["type"] = "explicit", }, - [1139] = { + [1140] = { ["id"] = "explicit.stat_2954116742|7128", ["text"] = "Allocates Dangerous Blossom", ["type"] = "explicit", }, - [1140] = { + [1141] = { ["id"] = "explicit.stat_2954116742|63074", ["text"] = "Allocates Dark Entries", ["type"] = "explicit", }, - [1141] = { + [1142] = { ["id"] = "explicit.stat_2954116742|20495", ["text"] = "Allocates Dark Entropy", ["type"] = "explicit", }, - [1142] = { + [1143] = { ["id"] = "explicit.stat_2954116742|10500", ["text"] = "Allocates Dazing Blocks", ["type"] = "explicit", }, - [1143] = { + [1144] = { ["id"] = "explicit.stat_2954116742|30523", ["text"] = "Allocates Dead can Dance", ["type"] = "explicit", }, - [1144] = { + [1145] = { ["id"] = "explicit.stat_2954116742|49618", ["text"] = "Allocates Deadly Flourish", ["type"] = "explicit", }, - [1145] = { + [1146] = { ["id"] = "explicit.stat_2954116742|13724", ["text"] = "Allocates Deadly Force", ["type"] = "explicit", }, - [1146] = { + [1147] = { ["id"] = "explicit.stat_2954116742|29288", ["text"] = "Allocates Deadly Invocations", ["type"] = "explicit", }, - [1147] = { + [1148] = { ["id"] = "explicit.stat_2954116742|38053", ["text"] = "Allocates Deafening Cries", ["type"] = "explicit", }, - [1148] = { + [1149] = { ["id"] = "explicit.stat_2954116742|8904", ["text"] = "Allocates Death from Afar", ["type"] = "explicit", }, - [1149] = { + [1150] = { ["id"] = "explicit.stat_2954116742|17664", ["text"] = "Allocates Decisive Retreat", ["type"] = "explicit", }, - [1150] = { + [1151] = { ["id"] = "explicit.stat_2954116742|5594", ["text"] = "Allocates Decrepifying Curse", ["type"] = "explicit", }, - [1151] = { + [1152] = { ["id"] = "explicit.stat_2954116742|16142", ["text"] = "Allocates Deep Freeze", ["type"] = "explicit", }, - [1152] = { + [1153] = { ["id"] = "explicit.stat_2954116742|40166", ["text"] = "Allocates Deep Trance", ["type"] = "explicit", }, - [1153] = { + [1154] = { ["id"] = "explicit.stat_2954116742|33216", ["text"] = "Allocates Deep Wounds", ["type"] = "explicit", }, - [1154] = { + [1155] = { ["id"] = "explicit.stat_2954116742|45612", ["text"] = "Allocates Defensive Reflexes", ["type"] = "explicit", }, - [1155] = { + [1156] = { ["id"] = "explicit.stat_2954116742|10681", ["text"] = "Allocates Defensive Stance", ["type"] = "explicit", }, - [1156] = { + [1157] = { ["id"] = "explicit.stat_2954116742|32354", ["text"] = "Allocates Defiance", ["type"] = "explicit", }, - [1157] = { + [1158] = { ["id"] = "explicit.stat_2954116742|45329", ["text"] = "Allocates Delayed Danger", ["type"] = "explicit", }, - [1158] = { + [1159] = { ["id"] = "explicit.stat_2954116742|38570", ["text"] = "Allocates Demolitionist", ["type"] = "explicit", }, - [1159] = { + [1160] = { ["id"] = "explicit.stat_2954116742|4931", ["text"] = "Allocates Dependable Ward", ["type"] = "explicit", }, - [1160] = { + [1161] = { ["id"] = "explicit.stat_2954116742|28267", ["text"] = "Allocates Desensitisation", ["type"] = "explicit", }, - [1161] = { + [1162] = { ["id"] = "explicit.stat_2954116742|56616", ["text"] = "Allocates Desperate Times", ["type"] = "explicit", }, - [1162] = { + [1163] = { ["id"] = "explicit.stat_2954116742|14343", ["text"] = "Allocates Deterioration", ["type"] = "explicit", }, - [1163] = { + [1164] = { ["id"] = "explicit.stat_2954116742|24753", ["text"] = "Allocates Determined Precision", ["type"] = "explicit", }, - [1164] = { + [1165] = { ["id"] = "explicit.stat_2954116742|48006", ["text"] = "Allocates Devastation", ["type"] = "explicit", }, - [1165] = { + [1166] = { ["id"] = "explicit.stat_2954116742|2344", ["text"] = "Allocates Dimensional Weakspot", ["type"] = "explicit", }, - [1166] = { + [1167] = { ["id"] = "explicit.stat_2954116742|24483", ["text"] = "Allocates Direct Approach", ["type"] = "explicit", }, - [1167] = { + [1168] = { ["id"] = "explicit.stat_2954116742|38459", ["text"] = "Allocates Disorientation", ["type"] = "explicit", }, - [1168] = { + [1169] = { ["id"] = "explicit.stat_2954116742|58939", ["text"] = "Allocates Dispatch Foes", ["type"] = "explicit", }, - [1169] = { + [1170] = { ["id"] = "explicit.stat_2954116742|52245", ["text"] = "Allocates Distant Dreamer", ["type"] = "explicit", }, - [1170] = { + [1171] = { ["id"] = "explicit.stat_2954116742|32721", ["text"] = "Allocates Distracted Target", ["type"] = "explicit", }, - [1171] = { + [1172] = { ["id"] = "explicit.stat_2954116742|44765", ["text"] = "Allocates Distracting Presence", ["type"] = "explicit", }, - [1172] = { + [1173] = { ["id"] = "explicit.stat_2954116742|47514", ["text"] = "Allocates Dizzying Hits", ["type"] = "explicit", }, - [1173] = { + [1174] = { ["id"] = "explicit.stat_2954116742|1420", ["text"] = "Allocates Dizzying Sweep", ["type"] = "explicit", }, - [1174] = { + [1175] = { ["id"] = "explicit.stat_2954116742|26214", ["text"] = "Allocates Dominion", ["type"] = "explicit", }, - [1175] = { + [1176] = { ["id"] = "explicit.stat_2954116742|57190", ["text"] = "Allocates Doomsayer", ["type"] = "explicit", }, - [1176] = { + [1177] = { ["id"] = "explicit.stat_2954116742|1502", ["text"] = "Allocates Draiocht Cleansing", ["type"] = "explicit", }, - [1177] = { + [1178] = { ["id"] = "explicit.stat_2954116742|32858", ["text"] = "Allocates Dread Engineer's Concoction", ["type"] = "explicit", }, - [1178] = { + [1179] = { ["id"] = "explicit.stat_2954116742|11838", ["text"] = "Allocates Dreamcatcher", ["type"] = "explicit", }, - [1179] = { + [1180] = { ["id"] = "explicit.stat_2954116742|40073", ["text"] = "Allocates Drenched", ["type"] = "explicit", }, - [1180] = { + [1181] = { ["id"] = "explicit.stat_2954116742|3688", ["text"] = "Allocates Dynamism", ["type"] = "explicit", }, - [1181] = { + [1182] = { ["id"] = "explicit.stat_2954116742|10315", ["text"] = "Allocates Easy Going", ["type"] = "explicit", }, - [1182] = { + [1183] = { ["id"] = "explicit.stat_2954116742|64525", ["text"] = "Allocates Easy Target", ["type"] = "explicit", }, - [1183] = { + [1184] = { ["id"] = "explicit.stat_2954116742|60692", ["text"] = "Allocates Echoing Flames", ["type"] = "explicit", }, - [1184] = { + [1185] = { ["id"] = "explicit.stat_2954116742|5257", ["text"] = "Allocates Echoing Frost", ["type"] = "explicit", }, - [1185] = { + [1186] = { ["id"] = "explicit.stat_2954116742|7302", ["text"] = "Allocates Echoing Pulse", ["type"] = "explicit", }, - [1186] = { + [1187] = { ["id"] = "explicit.stat_2954116742|5703", ["text"] = "Allocates Echoing Thunder", ["type"] = "explicit", }, - [1187] = { + [1188] = { ["id"] = "explicit.stat_2954116742|33093", ["text"] = "Allocates Effervescent", ["type"] = "explicit", }, - [1188] = { + [1189] = { ["id"] = "explicit.stat_2954116742|46692", ["text"] = "Allocates Efficient Alchemy", ["type"] = "explicit", }, - [1189] = { + [1190] = { ["id"] = "explicit.stat_2954116742|16790", ["text"] = "Allocates Efficient Casting", ["type"] = "explicit", }, - [1190] = { + [1191] = { ["id"] = "explicit.stat_2954116742|30408", ["text"] = "Allocates Efficient Contraptions", ["type"] = "explicit", }, - [1191] = { + [1192] = { ["id"] = "explicit.stat_2954116742|42245", ["text"] = "Allocates Efficient Inscriptions", ["type"] = "explicit", }, - [1192] = { + [1193] = { ["id"] = "explicit.stat_2954116742|94", ["text"] = "Allocates Efficient Killing", ["type"] = "explicit", }, - [1193] = { + [1194] = { ["id"] = "explicit.stat_2954116742|53683", ["text"] = "Allocates Efficient Loading", ["type"] = "explicit", }, - [1194] = { + [1195] = { ["id"] = "explicit.stat_2954116742|3894", ["text"] = "Allocates Eldritch Will", ["type"] = "explicit", }, - [1195] = { + [1196] = { ["id"] = "explicit.stat_2954116742|55708", ["text"] = "Allocates Electric Amplification", ["type"] = "explicit", }, - [1196] = { + [1197] = { ["id"] = "explicit.stat_2954116742|56988", ["text"] = "Allocates Electric Blood", ["type"] = "explicit", }, - [1197] = { + [1198] = { ["id"] = "explicit.stat_2954116742|30546", ["text"] = "Allocates Electrified Claw", ["type"] = "explicit", }, - [1198] = { + [1199] = { ["id"] = "explicit.stat_2954116742|56767", ["text"] = "Allocates Electrifying Daze", ["type"] = "explicit", }, - [1199] = { + [1200] = { ["id"] = "explicit.stat_2954116742|26291", ["text"] = "Allocates Electrifying Nature", ["type"] = "explicit", }, - [1200] = { + [1201] = { ["id"] = "explicit.stat_2954116742|7275", ["text"] = "Allocates Electrocuting Exposure", ["type"] = "explicit", }, - [1201] = { + [1202] = { ["id"] = "explicit.stat_2954116742|36364", ["text"] = "Allocates Electrocution", ["type"] = "explicit", }, - [1202] = { + [1203] = { ["id"] = "explicit.stat_2954116742|43090", ["text"] = "Allocates Electrotherapy", ["type"] = "explicit", }, - [1203] = { + [1204] = { ["id"] = "explicit.stat_2954116742|10612", ["text"] = "Allocates Embodiment of Frost", ["type"] = "explicit", }, - [1204] = { + [1205] = { ["id"] = "explicit.stat_2954116742|15991", ["text"] = "Allocates Embodiment of Lightning", ["type"] = "explicit", }, - [1205] = { + [1206] = { ["id"] = "explicit.stat_2954116742|43423", ["text"] = "Allocates Emboldened Avatar", ["type"] = "explicit", }, - [1206] = { + [1207] = { ["id"] = "explicit.stat_2954116742|10727", ["text"] = "Allocates Emboldening Casts", ["type"] = "explicit", }, - [1207] = { + [1208] = { ["id"] = "explicit.stat_2954116742|34553", ["text"] = "Allocates Emboldening Lead", ["type"] = "explicit", }, - [1208] = { + [1209] = { ["id"] = "explicit.stat_2954116742|9928", ["text"] = "Allocates Embracing Frost", ["type"] = "explicit", }, - [1209] = { + [1210] = { ["id"] = "explicit.stat_2954116742|8782", ["text"] = "Allocates Empowering Infusions", ["type"] = "explicit", }, - [1210] = { + [1211] = { ["id"] = "explicit.stat_2954116742|8397", ["text"] = "Allocates Empowering Remains", ["type"] = "explicit", }, - [1211] = { + [1212] = { ["id"] = "explicit.stat_2954116742|40985", ["text"] = "Allocates Empowering Remnants", ["type"] = "explicit", }, - [1212] = { + [1213] = { ["id"] = "explicit.stat_2954116742|7542", ["text"] = "Allocates Encompassing Domain", ["type"] = "explicit", }, - [1213] = { + [1214] = { ["id"] = "explicit.stat_2954116742|19955", ["text"] = "Allocates Endless Blizzard", ["type"] = "explicit", }, - [1214] = { + [1215] = { ["id"] = "explicit.stat_2954116742|8273", ["text"] = "Allocates Endless Circuit", ["type"] = "explicit", }, - [1215] = { + [1216] = { ["id"] = "explicit.stat_2954116742|5663", ["text"] = "Allocates Endurance", ["type"] = "explicit", }, - [1216] = { + [1217] = { ["id"] = "explicit.stat_2954116742|15443", ["text"] = "Allocates Endured Suffering", ["type"] = "explicit", }, - [1217] = { + [1218] = { ["id"] = "explicit.stat_2954116742|59070", ["text"] = "Allocates Enduring Archon", ["type"] = "explicit", }, - [1218] = { + [1219] = { ["id"] = "explicit.stat_2954116742|42103", ["text"] = "Allocates Enduring Deflection", ["type"] = "explicit", }, - [1219] = { + [1220] = { ["id"] = "explicit.stat_2954116742|40399", ["text"] = "Allocates Energise", ["type"] = "explicit", }, - [1220] = { + [1221] = { ["id"] = "explicit.stat_2954116742|43633", ["text"] = "Allocates Energising Archon", ["type"] = "explicit", }, - [1221] = { + [1222] = { ["id"] = "explicit.stat_2954116742|34541", ["text"] = "Allocates Energising Deflection", ["type"] = "explicit", }, - [1222] = { + [1223] = { ["id"] = "explicit.stat_2954116742|2814", ["text"] = "Allocates Engineered Blaze", ["type"] = "explicit", }, - [1223] = { + [1224] = { ["id"] = "explicit.stat_2954116742|44299", ["text"] = "Allocates Enhanced Barrier", ["type"] = "explicit", }, - [1224] = { + [1225] = { ["id"] = "explicit.stat_2954116742|51707", ["text"] = "Allocates Enhanced Reflexes", ["type"] = "explicit", }, - [1225] = { + [1226] = { ["id"] = "explicit.stat_2954116742|56237", ["text"] = "Allocates Enhancing Attacks", ["type"] = "explicit", }, - [1226] = { + [1227] = { ["id"] = "explicit.stat_2954116742|30720", ["text"] = "Allocates Entropic Incarnation", ["type"] = "explicit", }, - [1227] = { + [1228] = { ["id"] = "explicit.stat_2954116742|65243", ["text"] = "Allocates Enveloping Presence", ["type"] = "explicit", }, - [1228] = { + [1229] = { ["id"] = "explicit.stat_2954116742|61404", ["text"] = "Allocates Equilibrium", ["type"] = "explicit", }, - [1229] = { + [1230] = { ["id"] = "explicit.stat_2954116742|52684", ["text"] = "Allocates Eroding Chains", ["type"] = "explicit", }, - [1230] = { + [1231] = { ["id"] = "explicit.stat_2954116742|20032", ["text"] = "Allocates Erraticism", ["type"] = "explicit", }, - [1231] = { + [1232] = { ["id"] = "explicit.stat_2954116742|42032", ["text"] = "Allocates Escalating Mayhem", ["type"] = "explicit", }, - [1232] = { + [1233] = { ["id"] = "explicit.stat_2954116742|38628", ["text"] = "Allocates Escalating Toxins", ["type"] = "explicit", }, - [1233] = { + [1234] = { ["id"] = "explicit.stat_2954116742|9187", ["text"] = "Allocates Escalation", ["type"] = "explicit", }, - [1234] = { + [1235] = { ["id"] = "explicit.stat_2954116742|5227", ["text"] = "Allocates Escape Strategy", ["type"] = "explicit", }, - [1235] = { + [1236] = { ["id"] = "explicit.stat_2954116742|17854", ["text"] = "Allocates Escape Velocity", ["type"] = "explicit", }, - [1236] = { + [1237] = { ["id"] = "explicit.stat_2954116742|42077", ["text"] = "Allocates Essence Infusion", ["type"] = "explicit", }, - [1237] = { + [1238] = { ["id"] = "explicit.stat_2954116742|16256", ["text"] = "Allocates Ether Flow", ["type"] = "explicit", }, - [1238] = { + [1239] = { ["id"] = "explicit.stat_2954116742|52191", ["text"] = "Allocates Event Horizon", ["type"] = "explicit", }, - [1239] = { + [1240] = { ["id"] = "explicit.stat_2954116742|13524", ["text"] = "Allocates Everlasting Glory", ["type"] = "explicit", }, - [1240] = { + [1241] = { ["id"] = "explicit.stat_2954116742|24087", ["text"] = "Allocates Everlasting Infusions", ["type"] = "explicit", }, - [1241] = { + [1242] = { ["id"] = "explicit.stat_2954116742|41753", ["text"] = "Allocates Evocational Practitioner", ["type"] = "explicit", }, - [1242] = { + [1243] = { ["id"] = "explicit.stat_2954116742|47420", ["text"] = "Allocates Expendable Army", ["type"] = "explicit", }, - [1243] = { + [1244] = { ["id"] = "explicit.stat_2954116742|39050", ["text"] = "Allocates Exploit", ["type"] = "explicit", }, - [1244] = { + [1245] = { ["id"] = "explicit.stat_2954116742|48581", ["text"] = "Allocates Exploit the Elements", ["type"] = "explicit", }, - [1245] = { + [1246] = { ["id"] = "explicit.stat_2954116742|36333", ["text"] = "Allocates Explosive Empowerment", ["type"] = "explicit", }, - [1246] = { + [1247] = { ["id"] = "explicit.stat_2954116742|21206", ["text"] = "Allocates Explosive Impact", ["type"] = "explicit", }, - [1247] = { + [1248] = { ["id"] = "explicit.stat_2954116742|55835", ["text"] = "Allocates Exposed to the Cosmos", ["type"] = "explicit", }, - [1248] = { + [1249] = { ["id"] = "explicit.stat_2954116742|10423", ["text"] = "Allocates Exposed to the Inferno", ["type"] = "explicit", }, - [1249] = { + [1250] = { ["id"] = "explicit.stat_2954116742|40990", ["text"] = "Allocates Exposed to the Storm", ["type"] = "explicit", }, - [1250] = { + [1251] = { ["id"] = "explicit.stat_2954116742|56112", ["text"] = "Allocates Extinguishing Exhalation", ["type"] = "explicit", }, - [1251] = { + [1252] = { ["id"] = "explicit.stat_2954116742|60034", ["text"] = "Allocates Falcon Dive", ["type"] = "explicit", }, - [1252] = { + [1253] = { ["id"] = "explicit.stat_2954116742|31172", ["text"] = "Allocates Falcon Technique", ["type"] = "explicit", }, - [1253] = { + [1254] = { ["id"] = "explicit.stat_2954116742|60464", ["text"] = "Allocates Fan the Flames", ["type"] = "explicit", }, - [1254] = { + [1255] = { ["id"] = "explicit.stat_2954116742|35477", ["text"] = "Allocates Far Sighted", ["type"] = "explicit", }, - [1255] = { + [1256] = { ["id"] = "explicit.stat_2954116742|55", ["text"] = "Allocates Fast Acting Toxins", ["type"] = "explicit", }, - [1256] = { + [1257] = { ["id"] = "explicit.stat_2954116742|8827", ["text"] = "Allocates Fast Metabolism", ["type"] = "explicit", }, - [1257] = { + [1258] = { ["id"] = "explicit.stat_2954116742|3921", ["text"] = "Allocates Fate Finding", ["type"] = "explicit", }, - [1258] = { + [1259] = { ["id"] = "explicit.stat_2954116742|59214", ["text"] = "Allocates Fated End", ["type"] = "explicit", }, - [1259] = { + [1260] = { ["id"] = "explicit.stat_2954116742|19546", ["text"] = "Allocates Favourable Odds", ["type"] = "explicit", }, - [1260] = { + [1261] = { ["id"] = "explicit.stat_2954116742|22532", ["text"] = "Allocates Fearful Paralysis", ["type"] = "explicit", }, - [1261] = { + [1262] = { ["id"] = "explicit.stat_2954116742|60764", ["text"] = "Allocates Feathered Fletching", ["type"] = "explicit", }, - [1262] = { + [1263] = { ["id"] = "explicit.stat_2954116742|9968", ["text"] = "Allocates Feel the Earth", ["type"] = "explicit", }, - [1263] = { + [1264] = { ["id"] = "explicit.stat_2954116742|21537", ["text"] = "Allocates Fervour", ["type"] = "explicit", }, - [1264] = { + [1265] = { ["id"] = "explicit.stat_2954116742|2999", ["text"] = "Allocates Final Barrage", ["type"] = "explicit", }, - [1265] = { + [1266] = { ["id"] = "explicit.stat_2954116742|51867", ["text"] = "Allocates Finality", ["type"] = "explicit", }, - [1266] = { + [1267] = { ["id"] = "explicit.stat_2954116742|38969", ["text"] = "Allocates Finesse", ["type"] = "explicit", }, - [1267] = { + [1268] = { ["id"] = "explicit.stat_2954116742|29899", ["text"] = "Allocates Finish Them", ["type"] = "explicit", }, - [1268] = { + [1269] = { ["id"] = "explicit.stat_2954116742|45013", ["text"] = "Allocates Finishing Blows", ["type"] = "explicit", }, - [1269] = { + [1270] = { ["id"] = "explicit.stat_2954116742|54911", ["text"] = "Allocates Firestarter", ["type"] = "explicit", }, - [1270] = { + [1271] = { ["id"] = "explicit.stat_2954116742|29527", ["text"] = "Allocates First Approach", ["type"] = "explicit", }, - [1271] = { + [1272] = { ["id"] = "explicit.stat_2954116742|62963", ["text"] = "Allocates Flamewalker", ["type"] = "explicit", }, - [1272] = { + [1273] = { ["id"] = "explicit.stat_2954116742|43584", ["text"] = "Allocates Flare", ["type"] = "explicit", }, - [1273] = { + [1274] = { ["id"] = "explicit.stat_2954116742|12337", ["text"] = "Allocates Flash Storm", ["type"] = "explicit", }, - [1274] = { + [1275] = { ["id"] = "explicit.stat_2954116742|64851", ["text"] = "Allocates Flashy Parrying", ["type"] = "explicit", }, - [1275] = { + [1276] = { ["id"] = "explicit.stat_2954116742|21164", ["text"] = "Allocates Fleshcrafting", ["type"] = "explicit", }, - [1276] = { + [1277] = { ["id"] = "explicit.stat_2954116742|4985", ["text"] = "Allocates Flip the Script", ["type"] = "explicit", }, - [1277] = { + [1278] = { ["id"] = "explicit.stat_2954116742|32128", ["text"] = "Allocates Flow of Time", ["type"] = "explicit", }, - [1278] = { + [1279] = { ["id"] = "explicit.stat_2954116742|33730", ["text"] = "Allocates Focused Channel", ["type"] = "explicit", }, - [1279] = { + [1280] = { ["id"] = "explicit.stat_2954116742|9227", ["text"] = "Allocates Focused Thrust", ["type"] = "explicit", }, - [1280] = { + [1281] = { ["id"] = "explicit.stat_2954116742|20677", ["text"] = "Allocates For the Jugular", ["type"] = "explicit", }, - [1281] = { + [1282] = { ["id"] = "explicit.stat_2954116742|3985", ["text"] = "Allocates Forces of Nature", ["type"] = "explicit", }, - [1282] = { + [1283] = { ["id"] = "explicit.stat_2954116742|48103", ["text"] = "Allocates Forcewave", ["type"] = "explicit", }, - [1283] = { + [1284] = { ["id"] = "explicit.stat_2954116742|55568", ["text"] = "Allocates Forthcoming", ["type"] = "explicit", }, - [1284] = { + [1285] = { ["id"] = "explicit.stat_2954116742|23940", ["text"] = "Allocates Fortified Aegis", ["type"] = "explicit", }, - [1285] = { + [1286] = { ["id"] = "explicit.stat_2954116742|53607", ["text"] = "Allocates Fortified Location", ["type"] = "explicit", }, - [1286] = { + [1287] = { ["id"] = "explicit.stat_2954116742|35855", ["text"] = "Allocates Fortifying Blood", ["type"] = "explicit", }, - [1287] = { + [1288] = { ["id"] = "explicit.stat_2954116742|59208", ["text"] = "Allocates Frantic Fighter", ["type"] = "explicit", }, - [1288] = { + [1289] = { ["id"] = "explicit.stat_2954116742|28441", ["text"] = "Allocates Frantic Swings", ["type"] = "explicit", }, - [1289] = { + [1290] = { ["id"] = "explicit.stat_2954116742|32301", ["text"] = "Allocates Frazzled", ["type"] = "explicit", }, - [1290] = { + [1291] = { ["id"] = "explicit.stat_2954116742|51606", ["text"] = "Allocates Freedom of Movement", ["type"] = "explicit", }, - [1291] = { + [1292] = { ["id"] = "explicit.stat_2954116742|40270", ["text"] = "Allocates Frenetic", ["type"] = "explicit", }, - [1292] = { + [1293] = { ["id"] = "explicit.stat_2954116742|45751", ["text"] = "Allocates Frightening Shield", ["type"] = "explicit", }, - [1293] = { + [1294] = { ["id"] = "explicit.stat_2954116742|48699", ["text"] = "Allocates Frostwalker", ["type"] = "explicit", }, - [1294] = { + [1295] = { ["id"] = "explicit.stat_2954116742|20289", ["text"] = "Allocates Frozen Claw", ["type"] = "explicit", }, - [1295] = { + [1296] = { ["id"] = "explicit.stat_2954116742|50715", ["text"] = "Allocates Frozen Limit", ["type"] = "explicit", }, - [1296] = { + [1297] = { ["id"] = "explicit.stat_2954116742|37543", ["text"] = "Allocates Full Recovery", ["type"] = "explicit", }, - [1297] = { + [1298] = { ["id"] = "explicit.stat_2954116742|33887", ["text"] = "Allocates Full Salvo", ["type"] = "explicit", }, - [1298] = { + [1299] = { ["id"] = "explicit.stat_2954116742|24630", ["text"] = "Allocates Fulmination", ["type"] = "explicit", }, - [1299] = { + [1300] = { ["id"] = "explicit.stat_2954116742|32976", ["text"] = "Allocates Gem Enthusiast", ["type"] = "explicit", }, - [1300] = { + [1301] = { ["id"] = "explicit.stat_2954116742|27875", ["text"] = "Allocates General Electric", ["type"] = "explicit", }, - [1301] = { + [1302] = { ["id"] = "explicit.stat_2954116742|17150", ["text"] = "Allocates General's Bindings", ["type"] = "explicit", }, - [1302] = { + [1303] = { ["id"] = "explicit.stat_2954116742|9020", ["text"] = "Allocates Giantslayer", ["type"] = "explicit", }, - [1303] = { + [1304] = { ["id"] = "explicit.stat_2954116742|46365", ["text"] = "Allocates Gigantic Following", ["type"] = "explicit", }, - [1304] = { + [1305] = { ["id"] = "explicit.stat_2954116742|41972", ["text"] = "Allocates Glaciation", ["type"] = "explicit", }, - [1305] = { + [1306] = { ["id"] = "explicit.stat_2954116742|56488", ["text"] = "Allocates Glancing Deflection", ["type"] = "explicit", }, - [1306] = { + [1307] = { ["id"] = "explicit.stat_2954116742|23939", ["text"] = "Allocates Glazed Flesh", ["type"] = "explicit", }, - [1307] = { + [1308] = { ["id"] = "explicit.stat_2954116742|63031", ["text"] = "Allocates Glorious Anticipation", ["type"] = "explicit", }, - [1308] = { + [1309] = { ["id"] = "explicit.stat_2954116742|47316", ["text"] = "Allocates Goring", ["type"] = "explicit", }, - [1309] = { + [1310] = { ["id"] = "explicit.stat_2954116742|41905", ["text"] = "Allocates Gravedigger", ["type"] = "explicit", }, - [1310] = { + [1311] = { ["id"] = "explicit.stat_2954116742|27687", ["text"] = "Allocates Greatest Defence", ["type"] = "explicit", }, - [1311] = { + [1312] = { ["id"] = "explicit.stat_2954116742|58714", ["text"] = "Allocates Grenadier", ["type"] = "explicit", }, - [1312] = { + [1313] = { ["id"] = "explicit.stat_2954116742|31175", ["text"] = "Allocates Grip of Evil", ["type"] = "explicit", }, - [1313] = { + [1314] = { ["id"] = "explicit.stat_2954116742|20416", ["text"] = "Allocates Grit", ["type"] = "explicit", }, - [1314] = { + [1315] = { ["id"] = "explicit.stat_2954116742|13844", ["text"] = "Allocates Growing Peril", ["type"] = "explicit", }, - [1315] = { + [1316] = { ["id"] = "explicit.stat_2954116742|14945", ["text"] = "Allocates Growing Swarm", ["type"] = "explicit", }, - [1316] = { + [1317] = { ["id"] = "explicit.stat_2954116742|4331", ["text"] = "Allocates Guided Hand", ["type"] = "explicit", }, - [1317] = { + [1318] = { ["id"] = "explicit.stat_2954116742|46499", ["text"] = "Allocates Guts", ["type"] = "explicit", }, - [1318] = { + [1319] = { ["id"] = "explicit.stat_2954116742|29762", ["text"] = "Allocates Guttural Roar", ["type"] = "explicit", }, - [1319] = { + [1320] = { ["id"] = "explicit.stat_2954116742|33229", ["text"] = "Allocates Haemorrhaging Cuts", ["type"] = "explicit", }, - [1320] = { + [1321] = { ["id"] = "explicit.stat_2954116742|44974", ["text"] = "Allocates Hail", ["type"] = "explicit", }, - [1321] = { + [1322] = { ["id"] = "explicit.stat_2954116742|15374", ["text"] = "Allocates Hale Heart", ["type"] = "explicit", }, - [1322] = { + [1323] = { ["id"] = "explicit.stat_2954116742|52803", ["text"] = "Allocates Hale Traveller", ["type"] = "explicit", }, - [1323] = { + [1324] = { ["id"] = "explicit.stat_2954116742|34531", ["text"] = "Allocates Hallowed", ["type"] = "explicit", }, - [1324] = { + [1325] = { ["id"] = "explicit.stat_2954116742|24438", ["text"] = "Allocates Hardened Wood", ["type"] = "explicit", }, - [1325] = { + [1326] = { ["id"] = "explicit.stat_2954116742|40480", ["text"] = "Allocates Harmonic Generator", ["type"] = "explicit", }, - [1326] = { + [1327] = { ["id"] = "explicit.stat_2954116742|12611", ["text"] = "Allocates Harness the Elements", ["type"] = "explicit", }, - [1327] = { + [1328] = { ["id"] = "explicit.stat_2954116742|26331", ["text"] = "Allocates Harsh Winter", ["type"] = "explicit", }, - [1328] = { + [1329] = { ["id"] = "explicit.stat_2954116742|44293", ["text"] = "Allocates Hastening Barrier", ["type"] = "explicit", }, - [1329] = { + [1330] = { ["id"] = "explicit.stat_2954116742|48215", ["text"] = "Allocates Headshot", ["type"] = "explicit", }, - [1330] = { + [1331] = { ["id"] = "explicit.stat_2954116742|35966", ["text"] = "Allocates Heart Tissue", ["type"] = "explicit", }, - [1331] = { + [1332] = { ["id"] = "explicit.stat_2954116742|13407", ["text"] = "Allocates Heartbreaking", ["type"] = "explicit", }, - [1332] = { + [1333] = { ["id"] = "explicit.stat_2954116742|38537", ["text"] = "Allocates Heartstopping", ["type"] = "explicit", }, - [1333] = { + [1334] = { ["id"] = "explicit.stat_2954116742|9896", ["text"] = "Allocates Heartstopping Presence", ["type"] = "explicit", }, - [1334] = { + [1335] = { ["id"] = "explicit.stat_2954116742|372", ["text"] = "Allocates Heatproof", ["type"] = "explicit", }, - [1335] = { + [1336] = { ["id"] = "explicit.stat_2954116742|11826", ["text"] = "Allocates Heavy Ammunition", ["type"] = "explicit", }, - [1336] = { + [1337] = { ["id"] = "explicit.stat_2954116742|59589", ["text"] = "Allocates Heavy Armour", ["type"] = "explicit", }, - [1337] = { + [1338] = { ["id"] = "explicit.stat_2954116742|27491", ["text"] = "Allocates Heavy Buffer", ["type"] = "explicit", }, - [1338] = { + [1339] = { ["id"] = "explicit.stat_2954116742|56997", ["text"] = "Allocates Heavy Contact", ["type"] = "explicit", }, - [1339] = { + [1340] = { ["id"] = "explicit.stat_2954116742|15617", ["text"] = "Allocates Heavy Drinker", ["type"] = "explicit", }, - [1340] = { + [1341] = { ["id"] = "explicit.stat_2954116742|4959", ["text"] = "Allocates Heavy Frost", ["type"] = "explicit", }, - [1341] = { + [1342] = { ["id"] = "explicit.stat_2954116742|41512", ["text"] = "Allocates Heavy Weaponry", ["type"] = "explicit", }, - [1342] = { + [1343] = { ["id"] = "explicit.stat_2954116742|48418", ["text"] = "Allocates Hefty Unit", ["type"] = "explicit", }, - [1343] = { + [1344] = { ["id"] = "explicit.stat_2954116742|45777", ["text"] = "Allocates Hidden Barb", ["type"] = "explicit", }, - [1344] = { + [1345] = { ["id"] = "explicit.stat_2954116742|41935", ["text"] = "Allocates Hide of the Bear", ["type"] = "explicit", }, - [1345] = { + [1346] = { ["id"] = "explicit.stat_2954116742|30456", ["text"] = "Allocates High Alert", ["type"] = "explicit", }, - [1346] = { + [1347] = { ["id"] = "explicit.stat_2954116742|54805", ["text"] = "Allocates Hindered Capabilities", ["type"] = "explicit", }, - [1347] = { + [1348] = { ["id"] = "explicit.stat_2954116742|60273", ["text"] = "Allocates Hindering Obstacles", ["type"] = "explicit", }, - [1348] = { + [1349] = { ["id"] = "explicit.stat_2954116742|23078", ["text"] = "Allocates Holy Protector", ["type"] = "explicit", }, - [1349] = { + [1350] = { ["id"] = "explicit.stat_2954116742|48014", ["text"] = "Allocates Honourless", ["type"] = "explicit", }, - [1350] = { + [1351] = { ["id"] = "explicit.stat_2954116742|30395", ["text"] = "Allocates Howling Beast", ["type"] = "explicit", }, - [1351] = { + [1352] = { ["id"] = "explicit.stat_2954116742|4673", ["text"] = "Allocates Hulking Smash", ["type"] = "explicit", }, - [1352] = { + [1353] = { ["id"] = "explicit.stat_2954116742|57471", ["text"] = "Allocates Hunker Down", ["type"] = "explicit", }, - [1353] = { + [1354] = { ["id"] = "explicit.stat_2954116742|48617", ["text"] = "Allocates Hunter", ["type"] = "explicit", }, - [1354] = { + [1355] = { ["id"] = "explicit.stat_2954116742|33099", ["text"] = "Allocates Hunter's Talisman", ["type"] = "explicit", }, - [1355] = { + [1356] = { ["id"] = "explicit.stat_2954116742|32655", ["text"] = "Allocates Hunting Companion", ["type"] = "explicit", }, - [1356] = { + [1357] = { ["id"] = "explicit.stat_2954116742|55847", ["text"] = "Allocates Ice Walls", ["type"] = "explicit", }, - [1357] = { + [1358] = { ["id"] = "explicit.stat_2954116742|4031", ["text"] = "Allocates Icebreaker", ["type"] = "explicit", }, - [1358] = { + [1359] = { ["id"] = "explicit.stat_2954116742|32932", ["text"] = "Allocates Ichlotl's Inferno", ["type"] = "explicit", }, - [1359] = { + [1360] = { ["id"] = "explicit.stat_2954116742|7341", ["text"] = "Allocates Ignore Pain", ["type"] = "explicit", }, - [1360] = { + [1361] = { ["id"] = "explicit.stat_2954116742|1823", ["text"] = "Allocates Illuminated Crown", ["type"] = "explicit", }, - [1361] = { + [1362] = { ["id"] = "explicit.stat_2954116742|50912", ["text"] = "Allocates Imbibed Power", ["type"] = "explicit", }, - [1362] = { + [1363] = { ["id"] = "explicit.stat_2954116742|19156", ["text"] = "Allocates Immaterial", ["type"] = "explicit", }, - [1363] = { + [1364] = { ["id"] = "explicit.stat_2954116742|53030", ["text"] = "Allocates Immolation", ["type"] = "explicit", }, - [1364] = { + [1365] = { ["id"] = "explicit.stat_2954116742|24062", ["text"] = "Allocates Immortal Infamy", ["type"] = "explicit", }, - [1365] = { + [1366] = { ["id"] = "explicit.stat_2954116742|51871", ["text"] = "Allocates Immortal Thirst", ["type"] = "explicit", }, - [1366] = { + [1367] = { ["id"] = "explicit.stat_2954116742|16626", ["text"] = "Allocates Impact Area", ["type"] = "explicit", }, - [1367] = { + [1368] = { ["id"] = "explicit.stat_2954116742|64443", ["text"] = "Allocates Impact Force", ["type"] = "explicit", }, - [1368] = { + [1369] = { ["id"] = "explicit.stat_2954116742|46696", ["text"] = "Allocates Impair", ["type"] = "explicit", }, - [1369] = { + [1370] = { ["id"] = "explicit.stat_2954116742|21748", ["text"] = "Allocates Impending Doom", ["type"] = "explicit", }, - [1370] = { + [1371] = { ["id"] = "explicit.stat_2954116742|65023", ["text"] = "Allocates Impenetrable Shell", ["type"] = "explicit", }, - [1371] = { + [1372] = { ["id"] = "explicit.stat_2954116742|57379", ["text"] = "Allocates In Your Face", ["type"] = "explicit", }, - [1372] = { + [1373] = { ["id"] = "explicit.stat_2954116742|35028", ["text"] = "Allocates In the Thick of It", ["type"] = "explicit", }, - [1373] = { + [1374] = { ["id"] = "explicit.stat_2954116742|62310", ["text"] = "Allocates Incendiary", ["type"] = "explicit", }, - [1374] = { + [1375] = { ["id"] = "explicit.stat_2954116742|36630", ["text"] = "Allocates Incision", ["type"] = "explicit", }, - [1375] = { + [1376] = { ["id"] = "explicit.stat_2954116742|47270", ["text"] = "Allocates Inescapable Cold", ["type"] = "explicit", }, - [1376] = { + [1377] = { ["id"] = "explicit.stat_2954116742|22817", ["text"] = "Allocates Inevitable Rupture", ["type"] = "explicit", }, - [1377] = { + [1378] = { ["id"] = "explicit.stat_2954116742|61354", ["text"] = "Allocates Infernal Limit", ["type"] = "explicit", }, - [1378] = { + [1379] = { ["id"] = "explicit.stat_2954116742|57110", ["text"] = "Allocates Infused Flesh", ["type"] = "explicit", }, - [1379] = { + [1380] = { ["id"] = "explicit.stat_2954116742|38965", ["text"] = "Allocates Infused Limits", ["type"] = "explicit", }, - [1380] = { + [1381] = { ["id"] = "explicit.stat_2954116742|24764", ["text"] = "Allocates Infusing Power", ["type"] = "explicit", }, - [1381] = { + [1382] = { ["id"] = "explicit.stat_2954116742|59387", ["text"] = "Allocates Infusion of Power", ["type"] = "explicit", }, - [1382] = { + [1383] = { ["id"] = "explicit.stat_2954116742|39567", ["text"] = "Allocates Ingenuity", ["type"] = "explicit", }, - [1383] = { + [1384] = { ["id"] = "explicit.stat_2954116742|46683", ["text"] = "Allocates Inherited Strength ", ["type"] = "explicit", }, - [1384] = { + [1385] = { ["id"] = "explicit.stat_2954116742|23227", ["text"] = "Allocates Initiative", ["type"] = "explicit", }, - [1385] = { + [1386] = { ["id"] = "explicit.stat_2954116742|30562", ["text"] = "Allocates Inner Faith", ["type"] = "explicit", }, - [1386] = { + [1387] = { ["id"] = "explicit.stat_2954116742|116", ["text"] = "Allocates Insightfulness", ["type"] = "explicit", }, - [1387] = { + [1388] = { ["id"] = "explicit.stat_2954116742|16150", ["text"] = "Allocates Inspiring Ally", ["type"] = "explicit", }, - [1388] = { + [1389] = { ["id"] = "explicit.stat_2954116742|4661", ["text"] = "Allocates Inspiring Leader", ["type"] = "explicit", }, - [1389] = { + [1390] = { ["id"] = "explicit.stat_2954116742|43944", ["text"] = "Allocates Instability", ["type"] = "explicit", }, - [1390] = { + [1391] = { ["id"] = "explicit.stat_2954116742|9736", ["text"] = "Allocates Insulated Treads", ["type"] = "explicit", }, - [1391] = { + [1392] = { ["id"] = "explicit.stat_2954116742|48649", ["text"] = "Allocates Insulating Hide", ["type"] = "explicit", }, - [1392] = { + [1393] = { ["id"] = "explicit.stat_2954116742|46182", ["text"] = "Allocates Intense Dose", ["type"] = "explicit", }, - [1393] = { + [1394] = { ["id"] = "explicit.stat_2954116742|65016", ["text"] = "Allocates Intense Flames", ["type"] = "explicit", }, - [1394] = { + [1395] = { ["id"] = "explicit.stat_2954116742|7668", ["text"] = "Allocates Internal Bleeding", ["type"] = "explicit", }, - [1395] = { + [1396] = { ["id"] = "explicit.stat_2954116742|35369", ["text"] = "Allocates Investing Energies", ["type"] = "explicit", }, - [1396] = { + [1397] = { ["id"] = "explicit.stat_2954116742|41394", ["text"] = "Allocates Invigorating Archon", ["type"] = "explicit", }, - [1397] = { + [1398] = { ["id"] = "explicit.stat_2954116742|50023", ["text"] = "Allocates Invigorating Grandeur", ["type"] = "explicit", }, - [1398] = { + [1399] = { ["id"] = "explicit.stat_2954116742|28408", ["text"] = "Allocates Invigorating Hate", ["type"] = "explicit", }, - [1399] = { + [1400] = { ["id"] = "explicit.stat_2954116742|24491", ["text"] = "Allocates Invocated Echoes", ["type"] = "explicit", }, - [1400] = { + [1401] = { ["id"] = "explicit.stat_2954116742|51934", ["text"] = "Allocates Invocated Efficiency", ["type"] = "explicit", }, - [1401] = { + [1402] = { ["id"] = "explicit.stat_2954116742|338", ["text"] = "Allocates Invocated Limit", ["type"] = "explicit", }, - [1402] = { + [1403] = { ["id"] = "explicit.stat_2954116742|31724", ["text"] = "Allocates Iron Slippers", ["type"] = "explicit", }, - [1403] = { + [1404] = { ["id"] = "explicit.stat_2954116742|22626", ["text"] = "Allocates Irreparable", ["type"] = "explicit", }, - [1404] = { + [1405] = { ["id"] = "explicit.stat_2954116742|16618", ["text"] = "Allocates Jack of all Trades", ["type"] = "explicit", }, - [1405] = { + [1406] = { ["id"] = "explicit.stat_2954116742|10265", ["text"] = "Allocates Javelin", ["type"] = "explicit", }, - [1406] = { + [1407] = { ["id"] = "explicit.stat_2954116742|37302", ["text"] = "Allocates Kept at Bay", ["type"] = "explicit", }, - [1407] = { + [1408] = { ["id"] = "explicit.stat_2954116742|56453", ["text"] = "Allocates Killer Instinct", ["type"] = "explicit", }, - [1408] = { + [1409] = { ["id"] = "explicit.stat_2954116742|26107", ["text"] = "Allocates Kite Runner", ["type"] = "explicit", }, - [1409] = { + [1410] = { ["id"] = "explicit.stat_2954116742|2397", ["text"] = "Allocates Last Stand", ["type"] = "explicit", }, - [1410] = { + [1411] = { ["id"] = "explicit.stat_2954116742|64659", ["text"] = "Allocates Lasting Boons", ["type"] = "explicit", }, - [1411] = { + [1412] = { ["id"] = "explicit.stat_2954116742|58096", ["text"] = "Allocates Lasting Incantations", ["type"] = "explicit", }, - [1412] = { + [1413] = { ["id"] = "explicit.stat_2954116742|61741", ["text"] = "Allocates Lasting Toxins", ["type"] = "explicit", }, - [1413] = { + [1414] = { ["id"] = "explicit.stat_2954116742|18496", ["text"] = "Allocates Lasting Trauma", ["type"] = "explicit", }, - [1414] = { + [1415] = { ["id"] = "explicit.stat_2954116742|8607", ["text"] = "Allocates Lavianga's Brew", ["type"] = "explicit", }, - [1415] = { + [1416] = { ["id"] = "explicit.stat_2954116742|45599", ["text"] = "Allocates Lay Siege", ["type"] = "explicit", }, - [1416] = { + [1417] = { ["id"] = "explicit.stat_2954116742|40687", ["text"] = "Allocates Lead by Example", ["type"] = "explicit", }, - [1417] = { + [1418] = { ["id"] = "explicit.stat_2954116742|8531", ["text"] = "Allocates Leaping Ambush", ["type"] = "explicit", }, - [1418] = { + [1419] = { ["id"] = "explicit.stat_2954116742|51446", ["text"] = "Allocates Leather Bound Gauntlets", ["type"] = "explicit", }, - [1419] = { + [1420] = { ["id"] = "explicit.stat_2954116742|63431", ["text"] = "Allocates Leeching Toxins", ["type"] = "explicit", }, - [1420] = { + [1421] = { ["id"] = "explicit.stat_2954116742|19644", ["text"] = "Allocates Left Hand of Darkness", ["type"] = "explicit", }, - [1421] = { + [1422] = { ["id"] = "explicit.stat_2954116742|55375", ["text"] = "Allocates Licking Wounds", ["type"] = "explicit", }, - [1422] = { + [1423] = { ["id"] = "explicit.stat_2954116742|31129", ["text"] = "Allocates Lifelong Friend", ["type"] = "explicit", }, - [1423] = { + [1424] = { ["id"] = "explicit.stat_2954116742|55131", ["text"] = "Allocates Light on your Feet", ["type"] = "explicit", }, - [1424] = { + [1425] = { ["id"] = "explicit.stat_2954116742|13738", ["text"] = "Allocates Lightning Quick", ["type"] = "explicit", }, - [1425] = { + [1426] = { ["id"] = "explicit.stat_2954116742|44566", ["text"] = "Allocates Lightning Rod", ["type"] = "explicit", }, - [1426] = { + [1427] = { ["id"] = "explicit.stat_2954116742|56063", ["text"] = "Allocates Lingering Horror", ["type"] = "explicit", }, - [1427] = { + [1428] = { ["id"] = "explicit.stat_2954116742|16499", ["text"] = "Allocates Lingering Whispers", ["type"] = "explicit", }, - [1428] = { + [1429] = { ["id"] = "explicit.stat_2954116742|62887", ["text"] = "Allocates Living Death", ["type"] = "explicit", }, - [1429] = { + [1430] = { ["id"] = "explicit.stat_2954116742|31745", ["text"] = "Allocates Lockdown", ["type"] = "explicit", }, - [1430] = { + [1431] = { ["id"] = "explicit.stat_2954116742|56999", ["text"] = "Allocates Locked On", ["type"] = "explicit", }, - [1431] = { + [1432] = { ["id"] = "explicit.stat_2954116742|12964", ["text"] = "Allocates Lone Warrior", ["type"] = "explicit", }, - [1432] = { + [1433] = { ["id"] = "explicit.stat_2954116742|31826", ["text"] = "Allocates Long Distance Relationship", ["type"] = "explicit", }, - [1433] = { + [1434] = { ["id"] = "explicit.stat_2954116742|13542", ["text"] = "Allocates Loose Flesh", ["type"] = "explicit", }, - [1434] = { + [1435] = { ["id"] = "explicit.stat_2954116742|33240", ["text"] = "Allocates Lord of Horrors", ["type"] = "explicit", }, - [1435] = { + [1436] = { ["id"] = "explicit.stat_2954116742|42959", ["text"] = "Allocates Low Tolerance", ["type"] = "explicit", }, - [1436] = { + [1437] = { ["id"] = "explicit.stat_2954116742|51891", ["text"] = "Allocates Lucidity", ["type"] = "explicit", }, - [1437] = { + [1438] = { ["id"] = "explicit.stat_2954116742|59303", ["text"] = "Allocates Lucky Rabbit Foot", ["type"] = "explicit", }, - [1438] = { + [1439] = { ["id"] = "explicit.stat_2954116742|1104", ["text"] = "Allocates Lust for Power", ["type"] = "explicit", }, - [1439] = { + [1440] = { ["id"] = "explicit.stat_2954116742|27009", ["text"] = "Allocates Lust for Sacrifice", ["type"] = "explicit", }, - [1440] = { + [1441] = { ["id"] = "explicit.stat_2954116742|44952", ["text"] = "Allocates Made to Last", ["type"] = "explicit", }, - [1441] = { + [1442] = { ["id"] = "explicit.stat_2954116742|23738", ["text"] = "Allocates Madness in the Bones", ["type"] = "explicit", }, - [1442] = { + [1443] = { + ["id"] = "explicit.stat_2954116742|39568", + ["text"] = "Allocates Magnum Opus", + ["type"] = "explicit", + }, + [1444] = { ["id"] = "explicit.stat_2954116742|41580", ["text"] = "Allocates Maiming Strike", ["type"] = "explicit", }, - [1443] = { + [1445] = { ["id"] = "explicit.stat_2954116742|37742", ["text"] = "Allocates Manifold Method", ["type"] = "explicit", }, - [1444] = { + [1446] = { ["id"] = "explicit.stat_2954116742|64050", ["text"] = "Allocates Marathon Runner", ["type"] = "explicit", }, - [1445] = { + [1447] = { ["id"] = "explicit.stat_2954116742|44756", ["text"] = "Allocates Marked Agility", ["type"] = "explicit", }, - [1446] = { + [1448] = { ["id"] = "explicit.stat_2954116742|36976", ["text"] = "Allocates Marked for Death", ["type"] = "explicit", }, - [1447] = { + [1449] = { ["id"] = "explicit.stat_2954116742|63830", ["text"] = "Allocates Marked for Sickness", ["type"] = "explicit", }, - [1448] = { + [1450] = { ["id"] = "explicit.stat_2954116742|2113", ["text"] = "Allocates Martial Artistry", ["type"] = "explicit", }, - [1449] = { + [1451] = { ["id"] = "explicit.stat_2954116742|27108", ["text"] = "Allocates Mass Hysteria", ["type"] = "explicit", }, - [1450] = { + [1452] = { ["id"] = "explicit.stat_2954116742|34340", ["text"] = "Allocates Mass Rejuvenation", ["type"] = "explicit", }, - [1451] = { + [1453] = { ["id"] = "explicit.stat_2954116742|30341", ["text"] = "Allocates Master Fletching", ["type"] = "explicit", }, - [1452] = { + [1454] = { ["id"] = "explicit.stat_2954116742|40345", ["text"] = "Allocates Master of Hexes", ["type"] = "explicit", }, - [1453] = { + [1455] = { ["id"] = "explicit.stat_2954116742|27513", ["text"] = "Allocates Material Solidification", ["type"] = "explicit", }, - [1454] = { + [1456] = { ["id"] = "explicit.stat_2954116742|11886", ["text"] = "Allocates Mauling Stuns", ["type"] = "explicit", }, - [1455] = { + [1457] = { ["id"] = "explicit.stat_2954116742|25620", ["text"] = "Allocates Meat Recycling", ["type"] = "explicit", }, - [1456] = { + [1458] = { ["id"] = "explicit.stat_2954116742|3215", ["text"] = "Allocates Melding", ["type"] = "explicit", }, - [1457] = { + [1459] = { ["id"] = "explicit.stat_2954116742|43939", ["text"] = "Allocates Melting Flames", ["type"] = "explicit", }, - [1458] = { + [1460] = { ["id"] = "explicit.stat_2954116742|9652", ["text"] = "Allocates Mending Deflection", ["type"] = "explicit", }, - [1459] = { + [1461] = { ["id"] = "explicit.stat_2954116742|16466", ["text"] = "Allocates Mental Alacrity", ["type"] = "explicit", }, - [1460] = { + [1462] = { ["id"] = "explicit.stat_2954116742|9226", ["text"] = "Allocates Mental Perseverance", ["type"] = "explicit", }, - [1461] = { + [1463] = { ["id"] = "explicit.stat_2954116742|24120", ["text"] = "Allocates Mental Toughness", ["type"] = "explicit", }, - [1462] = { + [1464] = { ["id"] = "explicit.stat_2954116742|45632", ["text"] = "Allocates Mind Eraser", ["type"] = "explicit", }, - [1463] = { + [1465] = { ["id"] = "explicit.stat_2954116742|11392", ["text"] = "Allocates Molten Being", ["type"] = "explicit", }, - [1464] = { + [1466] = { ["id"] = "explicit.stat_2954116742|51868", ["text"] = "Allocates Molten Carapace", ["type"] = "explicit", }, - [1465] = { + [1467] = { ["id"] = "explicit.stat_2954116742|36100", ["text"] = "Allocates Molten Claw", ["type"] = "explicit", }, - [1466] = { + [1468] = { ["id"] = "explicit.stat_2954116742|17548", ["text"] = "Allocates Moment of Truth", ["type"] = "explicit", }, - [1467] = { + [1469] = { ["id"] = "explicit.stat_2954116742|63579", ["text"] = "Allocates Momentum", ["type"] = "explicit", }, - [1468] = { + [1470] = { ["id"] = "explicit.stat_2954116742|47560", ["text"] = "Allocates Multi Shot", ["type"] = "explicit", }, - [1469] = { + [1471] = { ["id"] = "explicit.stat_2954116742|8810", ["text"] = "Allocates Multitasking", ["type"] = "explicit", }, - [1470] = { + [1472] = { ["id"] = "explicit.stat_2954116742|52764", ["text"] = "Allocates Mystical Rage", ["type"] = "explicit", }, - [1471] = { + [1473] = { ["id"] = "explicit.stat_2954116742|934", ["text"] = "Allocates Natural Immunity", ["type"] = "explicit", }, - [1472] = { + [1474] = { ["id"] = "explicit.stat_2954116742|53265", ["text"] = "Allocates Nature's Bite", ["type"] = "explicit", }, - [1473] = { + [1475] = { ["id"] = "explicit.stat_2954116742|4709", ["text"] = "Allocates Near Sighted", ["type"] = "explicit", }, - [1474] = { + [1476] = { ["id"] = "explicit.stat_2954116742|35581", ["text"] = "Allocates Near at Hand", ["type"] = "explicit", }, - [1475] = { + [1477] = { ["id"] = "explicit.stat_2954116742|10499", ["text"] = "Allocates Necromantic Ward", ["type"] = "explicit", }, - [1476] = { + [1478] = { ["id"] = "explicit.stat_2954116742|11376", ["text"] = "Allocates Necrotic Touch", ["type"] = "explicit", }, - [1477] = { + [1479] = { ["id"] = "explicit.stat_2954116742|59541", ["text"] = "Allocates Necrotised Flesh", ["type"] = "explicit", }, - [1478] = { + [1480] = { ["id"] = "explicit.stat_2954116742|40292", ["text"] = "Allocates Nimble Strength", ["type"] = "explicit", }, - [1479] = { + [1481] = { ["id"] = "explicit.stat_2954116742|37266", ["text"] = "Allocates Nourishing Ally", ["type"] = "explicit", }, - [1480] = { + [1482] = { ["id"] = "explicit.stat_2954116742|60992", ["text"] = "Allocates Nurturing Guardian", ["type"] = "explicit", }, - [1481] = { + [1483] = { ["id"] = "explicit.stat_2954116742|42036", ["text"] = "Allocates Off-Balancing Retort", ["type"] = "explicit", }, - [1482] = { + [1484] = { ["id"] = "explicit.stat_2954116742|35918", ["text"] = "Allocates One For All", ["type"] = "explicit", }, - [1483] = { + [1485] = { ["id"] = "explicit.stat_2954116742|44753", ["text"] = "Allocates One With Flame", ["type"] = "explicit", }, - [1484] = { + [1486] = { ["id"] = "explicit.stat_2954116742|34316", ["text"] = "Allocates One with the River", ["type"] = "explicit", }, - [1485] = { + [1487] = { ["id"] = "explicit.stat_2954116742|9444", ["text"] = "Allocates One with the Storm", ["type"] = "explicit", }, - [1486] = { + [1488] = { ["id"] = "explicit.stat_2954116742|52199", ["text"] = "Allocates Overexposure", ["type"] = "explicit", }, - [1487] = { + [1489] = { ["id"] = "explicit.stat_2954116742|65204", ["text"] = "Allocates Overflowing Power", ["type"] = "explicit", }, - [1488] = { + [1490] = { ["id"] = "explicit.stat_2954116742|42390", ["text"] = "Allocates Overheating Blow", ["type"] = "explicit", }, - [1489] = { + [1491] = { ["id"] = "explicit.stat_2954116742|47635", ["text"] = "Allocates Overload", ["type"] = "explicit", }, - [1490] = { + [1492] = { ["id"] = "explicit.stat_2954116742|25513", ["text"] = "Allocates Overwhelm", ["type"] = "explicit", }, - [1491] = { + [1493] = { ["id"] = "explicit.stat_2954116742|57388", ["text"] = "Allocates Overwhelming Strike", ["type"] = "explicit", }, - [1492] = { + [1494] = { ["id"] = "explicit.stat_2954116742|10295", ["text"] = "Allocates Overzealous", ["type"] = "explicit", }, - [1493] = { + [1495] = { ["id"] = "explicit.stat_2954116742|21784", ["text"] = "Allocates Pack Encouragement", ["type"] = "explicit", }, - [1494] = { + [1496] = { ["id"] = "explicit.stat_2954116742|20686", ["text"] = "Allocates Paragon", ["type"] = "explicit", }, - [1495] = { + [1497] = { ["id"] = "explicit.stat_2954116742|24766", ["text"] = "Allocates Paranoia", ["type"] = "explicit", }, - [1496] = { + [1498] = { ["id"] = "explicit.stat_2954116742|56016", ["text"] = "Allocates Passthrough Rounds", ["type"] = "explicit", }, - [1497] = { + [1499] = { ["id"] = "explicit.stat_2954116742|62230", ["text"] = "Allocates Patient Barrier", ["type"] = "explicit", }, - [1498] = { + [1500] = { ["id"] = "explicit.stat_2954116742|60404", ["text"] = "Allocates Perfect Opportunity", ["type"] = "explicit", }, - [1499] = { + [1501] = { ["id"] = "explicit.stat_2954116742|49661", ["text"] = "Allocates Perfectly Placed Knife", ["type"] = "explicit", }, - [1500] = { + [1502] = { ["id"] = "explicit.stat_2954116742|17330", ["text"] = "Allocates Perforation", ["type"] = "explicit", }, - [1501] = { + [1503] = { ["id"] = "explicit.stat_2954116742|2863", ["text"] = "Allocates Perpetual Freeze", ["type"] = "explicit", }, - [1502] = { + [1504] = { ["id"] = "explicit.stat_2954116742|34308", ["text"] = "Allocates Personal Touch", ["type"] = "explicit", }, - [1503] = { + [1505] = { ["id"] = "explicit.stat_2954116742|7651", ["text"] = "Allocates Pierce the Heart", ["type"] = "explicit", }, - [1504] = { + [1506] = { ["id"] = "explicit.stat_2954116742|17260", ["text"] = "Allocates Piercing Claw", ["type"] = "explicit", }, - [1505] = { + [1507] = { ["id"] = "explicit.stat_2954116742|4534", ["text"] = "Allocates Piercing Shot", ["type"] = "explicit", }, - [1506] = { + [1508] = { ["id"] = "explicit.stat_2954116742|51129", ["text"] = "Allocates Pile On", ["type"] = "explicit", }, - [1507] = { + [1509] = { ["id"] = "explicit.stat_2954116742|60083", ["text"] = "Allocates Pin and Run", ["type"] = "explicit", }, - [1508] = { + [1510] = { ["id"] = "explicit.stat_2954116742|4447", ["text"] = "Allocates Pin their Motivation", ["type"] = "explicit", }, - [1509] = { + [1511] = { ["id"] = "explicit.stat_2954116742|16816", ["text"] = "Allocates Pinpoint Shot", ["type"] = "explicit", }, - [1510] = { + [1512] = { ["id"] = "explicit.stat_2954116742|38111", ["text"] = "Allocates Pliable Flesh", ["type"] = "explicit", }, - [1511] = { + [1513] = { ["id"] = "explicit.stat_2954116742|58426", ["text"] = "Allocates Pocket Sand", ["type"] = "explicit", }, - [1512] = { + [1514] = { ["id"] = "explicit.stat_2954116742|27950", ["text"] = "Allocates Polished Iron", ["type"] = "explicit", }, - [1513] = { + [1515] = { ["id"] = "explicit.stat_2954116742|57047", ["text"] = "Allocates Polymathy", ["type"] = "explicit", }, - [1514] = { + [1516] = { ["id"] = "explicit.stat_2954116742|19125", ["text"] = "Allocates Potent Incantation", ["type"] = "explicit", }, - [1515] = { + [1517] = { ["id"] = "explicit.stat_2954116742|15083", ["text"] = "Allocates Power Conduction", ["type"] = "explicit", }, - [1516] = { + [1518] = { ["id"] = "explicit.stat_2954116742|6178", ["text"] = "Allocates Power Shots", ["type"] = "explicit", }, - [1517] = { + [1519] = { ["id"] = "explicit.stat_2954116742|49150", ["text"] = "Allocates Precise Invocations", ["type"] = "explicit", }, - [1518] = { + [1520] = { ["id"] = "explicit.stat_2954116742|13895", ["text"] = "Allocates Precise Point", ["type"] = "explicit", }, - [1519] = { + [1521] = { ["id"] = "explicit.stat_2954116742|34425", ["text"] = "Allocates Precise Volatility", ["type"] = "explicit", }, - [1520] = { + [1522] = { ["id"] = "explicit.stat_2954116742|19337", ["text"] = "Allocates Precision Salvo", ["type"] = "explicit", }, - [1521] = { + [1523] = { ["id"] = "explicit.stat_2954116742|21380", ["text"] = "Allocates Preemptive Strike", ["type"] = "explicit", }, - [1522] = { + [1524] = { ["id"] = "explicit.stat_2954116742|37872", ["text"] = "Allocates Presence Present", ["type"] = "explicit", }, - [1523] = { + [1525] = { ["id"] = "explicit.stat_2954116742|32951", ["text"] = "Allocates Preservation", ["type"] = "explicit", }, - [1524] = { + [1526] = { ["id"] = "explicit.stat_2954116742|28329", ["text"] = "Allocates Pressure Points", ["type"] = "explicit", }, - [1525] = { + [1527] = { ["id"] = "explicit.stat_2954116742|9908", ["text"] = "Allocates Price of Freedom", ["type"] = "explicit", }, - [1526] = { + [1528] = { ["id"] = "explicit.stat_2954116742|32071", ["text"] = "Allocates Primal Growth", ["type"] = "explicit", }, - [1527] = { + [1529] = { ["id"] = "explicit.stat_2954116742|31364", ["text"] = "Allocates Primal Protection", ["type"] = "explicit", }, - [1528] = { + [1530] = { ["id"] = "explicit.stat_2954116742|28892", ["text"] = "Allocates Primal Rage", ["type"] = "explicit", }, - [1529] = { + [1531] = { ["id"] = "explicit.stat_2954116742|50884", ["text"] = "Allocates Primal Sundering", ["type"] = "explicit", }, - [1530] = { + [1532] = { ["id"] = "explicit.stat_2954116742|26356", ["text"] = "Allocates Primed to Explode", ["type"] = "explicit", }, - [1531] = { + [1533] = { ["id"] = "explicit.stat_2954116742|62034", ["text"] = "Allocates Prism Guard", ["type"] = "explicit", }, - [1532] = { + [1534] = { ["id"] = "explicit.stat_2954116742|54814", ["text"] = "Allocates Profane Commander", ["type"] = "explicit", }, - [1533] = { + [1535] = { ["id"] = "explicit.stat_2954116742|58397", ["text"] = "Allocates Proficiency", ["type"] = "explicit", }, - [1534] = { + [1536] = { ["id"] = "explicit.stat_2954116742|19236", ["text"] = "Allocates Projectile Bulwark", ["type"] = "explicit", }, - [1535] = { + [1537] = { ["id"] = "explicit.stat_2954116742|45874", ["text"] = "Allocates Proliferating Weeds", ["type"] = "explicit", }, - [1536] = { + [1538] = { ["id"] = "explicit.stat_2954116742|19442", ["text"] = "Allocates Prolonged Assault", ["type"] = "explicit", }, - [1537] = { + [1539] = { ["id"] = "explicit.stat_2954116742|49550", ["text"] = "Allocates Prolonged Fury", ["type"] = "explicit", }, - [1538] = { + [1540] = { ["id"] = "explicit.stat_2954116742|54998", ["text"] = "Allocates Protraction", ["type"] = "explicit", }, - [1539] = { + [1541] = { ["id"] = "explicit.stat_2954116742|38614", ["text"] = "Allocates Psychic Fragmentation", ["type"] = "explicit", }, - [1540] = { + [1542] = { ["id"] = "explicit.stat_2954116742|13482", ["text"] = "Allocates Punctured Lung", ["type"] = "explicit", }, - [1541] = { + [1543] = { ["id"] = "explicit.stat_2954116742|55149", ["text"] = "Allocates Pure Chaos", ["type"] = "explicit", }, - [1542] = { + [1544] = { ["id"] = "explicit.stat_2954116742|28975", ["text"] = "Allocates Pure Power", ["type"] = "explicit", }, - [1543] = { + [1545] = { ["id"] = "explicit.stat_2954116742|6229", ["text"] = "Allocates Push the Advantage", ["type"] = "explicit", }, - [1544] = { + [1546] = { ["id"] = "explicit.stat_2954116742|33542", ["text"] = "Allocates Quick Fingers", ["type"] = "explicit", }, - [1545] = { + [1547] = { ["id"] = "explicit.stat_2954116742|48240", ["text"] = "Allocates Quick Recovery", ["type"] = "explicit", }, - [1546] = { + [1548] = { ["id"] = "explicit.stat_2954116742|55450", ["text"] = "Allocates Rallying Form", ["type"] = "explicit", }, - [1547] = { + [1549] = { ["id"] = "explicit.stat_2954116742|43791", ["text"] = "Allocates Rallying Icon", ["type"] = "explicit", }, - [1548] = { + [1550] = { ["id"] = "explicit.stat_2954116742|64119", ["text"] = "Allocates Rapid Reload", ["type"] = "explicit", }, - [1549] = { + [1551] = { ["id"] = "explicit.stat_2954116742|7604", ["text"] = "Allocates Rapid Strike", ["type"] = "explicit", }, - [1550] = { + [1552] = { ["id"] = "explicit.stat_2954116742|62185", ["text"] = "Allocates Rattled", ["type"] = "explicit", }, - [1551] = { + [1553] = { ["id"] = "explicit.stat_2954116742|3567", ["text"] = "Allocates Raw Mana", ["type"] = "explicit", }, - [1552] = { + [1554] = { ["id"] = "explicit.stat_2954116742|17372", ["text"] = "Allocates Reaching Strike", ["type"] = "explicit", }, - [1553] = { + [1555] = { ["id"] = "explicit.stat_2954116742|10602", ["text"] = "Allocates Reaving", ["type"] = "explicit", }, - [1554] = { + [1556] = { ["id"] = "explicit.stat_2954116742|45244", ["text"] = "Allocates Refills", ["type"] = "explicit", }, - [1555] = { + [1557] = { ["id"] = "explicit.stat_2954116742|26447", ["text"] = "Allocates Refocus", ["type"] = "explicit", }, - [1556] = { + [1558] = { ["id"] = "explicit.stat_2954116742|20388", ["text"] = "Allocates Regenerative Flesh", ["type"] = "explicit", }, - [1557] = { + [1559] = { ["id"] = "explicit.stat_2954116742|56388", ["text"] = "Allocates Reinforced Rallying", ["type"] = "explicit", }, - [1558] = { + [1560] = { ["id"] = "explicit.stat_2954116742|35809", ["text"] = "Allocates Reinvigoration", ["type"] = "explicit", }, - [1559] = { + [1561] = { ["id"] = "explicit.stat_2954116742|55180", ["text"] = "Allocates Relentless Fallen", ["type"] = "explicit", }, - [1560] = { + [1562] = { ["id"] = "explicit.stat_2954116742|1506", ["text"] = "Allocates Remnant Attraction", ["type"] = "explicit", }, - [1561] = { + [1563] = { ["id"] = "explicit.stat_2954116742|65468", ["text"] = "Allocates Repeating Explosives", ["type"] = "explicit", }, - [1562] = { + [1564] = { ["id"] = "explicit.stat_2954116742|20414", ["text"] = "Allocates Reprisal", ["type"] = "explicit", }, - [1563] = { + [1565] = { ["id"] = "explicit.stat_2954116742|10029", ["text"] = "Allocates Repulsion", ["type"] = "explicit", }, - [1564] = { + [1566] = { ["id"] = "explicit.stat_2954116742|56860", ["text"] = "Allocates Resolute Reprisal", ["type"] = "explicit", }, - [1565] = { + [1567] = { ["id"] = "explicit.stat_2954116742|40325", ["text"] = "Allocates Resolution", ["type"] = "explicit", }, - [1566] = { + [1568] = { ["id"] = "explicit.stat_2954116742|38972", ["text"] = "Allocates Restless Dead", ["type"] = "explicit", }, - [1567] = { + [1569] = { ["id"] = "explicit.stat_2954116742|31773", ["text"] = "Allocates Resurging Archon", ["type"] = "explicit", }, - [1568] = { + [1570] = { ["id"] = "explicit.stat_2954116742|7395", ["text"] = "Allocates Retaliation", ["type"] = "explicit", }, - [1569] = { + [1571] = { ["id"] = "explicit.stat_2954116742|9009", ["text"] = "Allocates Return to Nature", ["type"] = "explicit", }, - [1570] = { + [1572] = { ["id"] = "explicit.stat_2954116742|7062", ["text"] = "Allocates Reusable Ammunition", ["type"] = "explicit", }, - [1571] = { + [1573] = { ["id"] = "explicit.stat_2954116742|3188", ["text"] = "Allocates Revenge", ["type"] = "explicit", }, - [1572] = { + [1574] = { ["id"] = "explicit.stat_2954116742|8660", ["text"] = "Allocates Reverberation", ["type"] = "explicit", }, - [1573] = { + [1575] = { ["id"] = "explicit.stat_2954116742|8957", ["text"] = "Allocates Right Hand of Darkness", ["type"] = "explicit", }, - [1574] = { + [1576] = { ["id"] = "explicit.stat_2954116742|28613", ["text"] = "Allocates Roaring Cries", ["type"] = "explicit", }, - [1575] = { + [1577] = { ["id"] = "explicit.stat_2954116742|60269", ["text"] = "Allocates Roil", ["type"] = "explicit", }, - [1576] = { + [1578] = { ["id"] = "explicit.stat_2954116742|61112", ["text"] = "Allocates Roll and Strike", ["type"] = "explicit", }, - [1577] = { + [1579] = { ["id"] = "explicit.stat_2954116742|8483", ["text"] = "Allocates Ruin", ["type"] = "explicit", }, - [1578] = { + [1580] = { ["id"] = "explicit.stat_2954116742|18959", ["text"] = "Allocates Ruinic Helm", ["type"] = "explicit", }, - [1579] = { + [1581] = { ["id"] = "explicit.stat_2954116742|53566", ["text"] = "Allocates Run and Gun", ["type"] = "explicit", }, - [1580] = { + [1582] = { ["id"] = "explicit.stat_2954116742|7782", ["text"] = "Allocates Rupturing Pins", ["type"] = "explicit", }, - [1581] = { + [1583] = { ["id"] = "explicit.stat_2954116742|9290", ["text"] = "Allocates Rusted Pins", ["type"] = "explicit", }, - [1582] = { + [1584] = { ["id"] = "explicit.stat_2954116742|14294", ["text"] = "Allocates Sacrificial Blood", ["type"] = "explicit", }, - [1583] = { + [1585] = { ["id"] = "explicit.stat_2954116742|25619", ["text"] = "Allocates Sand in the Eyes", ["type"] = "explicit", }, - [1584] = { + [1586] = { ["id"] = "explicit.stat_2954116742|58215", ["text"] = "Allocates Sanguimantic Rituals", ["type"] = "explicit", }, - [1585] = { + [1587] = { ["id"] = "explicit.stat_2954116742|4810", ["text"] = "Allocates Sanguine Tolerance", ["type"] = "explicit", }, - [1586] = { + [1588] = { ["id"] = "explicit.stat_2954116742|42070", ["text"] = "Allocates Saqawal's Guidance", ["type"] = "explicit", }, - [1587] = { + [1589] = { ["id"] = "explicit.stat_2954116742|63255", ["text"] = "Allocates Savagery", ["type"] = "explicit", }, - [1588] = { + [1590] = { ["id"] = "explicit.stat_2954116742|18397", ["text"] = "Allocates Savoured Blood", ["type"] = "explicit", }, - [1589] = { + [1591] = { ["id"] = "explicit.stat_2954116742|45713", ["text"] = "Allocates Savouring", ["type"] = "explicit", }, - [1590] = { + [1592] = { ["id"] = "explicit.stat_2954116742|60619", ["text"] = "Allocates Scales of the Wyvern", ["type"] = "explicit", }, - [1591] = { + [1593] = { ["id"] = "explicit.stat_2954116742|39884", ["text"] = "Allocates Searing Heat", ["type"] = "explicit", }, - [1592] = { + [1594] = { ["id"] = "explicit.stat_2954116742|52229", ["text"] = "Allocates Secrets of the Orb", ["type"] = "explicit", }, - [1593] = { + [1595] = { ["id"] = "explicit.stat_2954116742|5009", ["text"] = "Allocates Seeing Stars", ["type"] = "explicit", }, - [1594] = { + [1596] = { ["id"] = "explicit.stat_2954116742|23630", ["text"] = "Allocates Self Immolation", ["type"] = "explicit", }, - [1595] = { + [1597] = { ["id"] = "explicit.stat_2954116742|44917", ["text"] = "Allocates Self Mortification", ["type"] = "explicit", }, - [1596] = { + [1598] = { ["id"] = "explicit.stat_2954116742|36085", ["text"] = "Allocates Serrated Edges", ["type"] = "explicit", }, - [1597] = { + [1599] = { ["id"] = "explicit.stat_2954116742|13457", ["text"] = "Allocates Shadow Dancing", ["type"] = "explicit", }, - [1598] = { + [1600] = { ["id"] = "explicit.stat_2954116742|53150", ["text"] = "Allocates Sharp Sight", ["type"] = "explicit", }, - [1599] = { + [1601] = { ["id"] = "explicit.stat_2954116742|61703", ["text"] = "Allocates Sharpened Claw", ["type"] = "explicit", }, - [1600] = { + [1602] = { ["id"] = "explicit.stat_2954116742|41811", ["text"] = "Allocates Shatter Palm", ["type"] = "explicit", }, - [1601] = { + [1603] = { ["id"] = "explicit.stat_2954116742|49740", ["text"] = "Allocates Shattered Crystal", ["type"] = "explicit", }, - [1602] = { + [1604] = { ["id"] = "explicit.stat_2954116742|48658", ["text"] = "Allocates Shattering", ["type"] = "explicit", }, - [1603] = { + [1605] = { ["id"] = "explicit.stat_2954116742|53527", ["text"] = "Allocates Shattering Blow", ["type"] = "explicit", }, - [1604] = { + [1606] = { ["id"] = "explicit.stat_2954116742|64415", ["text"] = "Allocates Shattering Daze", ["type"] = "explicit", }, - [1605] = { + [1607] = { ["id"] = "explicit.stat_2954116742|15644", ["text"] = "Allocates Shedding Skin", ["type"] = "explicit", }, - [1606] = { + [1608] = { ["id"] = "explicit.stat_2954116742|37244", ["text"] = "Allocates Shield Expertise", ["type"] = "explicit", }, - [1607] = { + [1609] = { ["id"] = "explicit.stat_2954116742|57617", ["text"] = "Allocates Shifted Strikes", ["type"] = "explicit", }, - [1608] = { + [1610] = { ["id"] = "explicit.stat_2954116742|53941", ["text"] = "Allocates Shimmering", ["type"] = "explicit", }, - [1609] = { + [1611] = { ["id"] = "explicit.stat_2954116742|5335", ["text"] = "Allocates Shimmering Mirage", ["type"] = "explicit", }, - [1610] = { + [1612] = { ["id"] = "explicit.stat_2954116742|29800", ["text"] = "Allocates Shocking Limit", ["type"] = "explicit", }, - [1611] = { + [1613] = { ["id"] = "explicit.stat_2954116742|32448", ["text"] = "Allocates Shockproof", ["type"] = "explicit", }, - [1612] = { + [1614] = { ["id"] = "explicit.stat_2954116742|1087", ["text"] = "Allocates Shockwaves", ["type"] = "explicit", }, - [1613] = { + [1615] = { ["id"] = "explicit.stat_2954116742|46296", ["text"] = "Allocates Short Shot", ["type"] = "explicit", }, - [1614] = { + [1616] = { ["id"] = "explicit.stat_2954116742|55060", ["text"] = "Allocates Shrapnel", ["type"] = "explicit", }, - [1615] = { + [1617] = { ["id"] = "explicit.stat_2954116742|14211", ["text"] = "Allocates Shredding Contraptions", ["type"] = "explicit", }, - [1616] = { + [1618] = { ["id"] = "explicit.stat_2954116742|5284", ["text"] = "Allocates Shredding Force", ["type"] = "explicit", }, - [1617] = { + [1619] = { ["id"] = "explicit.stat_2954116742|47088", ["text"] = "Allocates Sic 'Em", ["type"] = "explicit", }, - [1618] = { + [1620] = { ["id"] = "explicit.stat_2954116742|63037", ["text"] = "Allocates Sigil of Fire", ["type"] = "explicit", }, - [1619] = { + [1621] = { ["id"] = "explicit.stat_2954116742|40803", ["text"] = "Allocates Sigil of Ice", ["type"] = "explicit", }, - [1620] = { + [1622] = { ["id"] = "explicit.stat_2954116742|46024", ["text"] = "Allocates Sigil of Lightning", ["type"] = "explicit", }, - [1621] = { + [1623] = { ["id"] = "explicit.stat_2954116742|17229", ["text"] = "Allocates Silent Guardian", ["type"] = "explicit", }, - [1622] = { + [1624] = { ["id"] = "explicit.stat_2954116742|52392", ["text"] = "Allocates Singular Purpose", ["type"] = "explicit", }, - [1623] = { + [1625] = { ["id"] = "explicit.stat_2954116742|15829", ["text"] = "Allocates Siphon", ["type"] = "explicit", }, - [1624] = { + [1626] = { ["id"] = "explicit.stat_2954116742|12906", ["text"] = "Allocates Sitting Duck", ["type"] = "explicit", }, - [1625] = { + [1627] = { ["id"] = "explicit.stat_2954116742|2645", ["text"] = "Allocates Skullcrusher", ["type"] = "explicit", }, - [1626] = { + [1628] = { ["id"] = "explicit.stat_2954116742|55308", ["text"] = "Allocates Sling Shots", ["type"] = "explicit", }, - [1627] = { + [1629] = { ["id"] = "explicit.stat_2954116742|23362", ["text"] = "Allocates Slippery Ice", ["type"] = "explicit", }, - [1628] = { + [1630] = { ["id"] = "explicit.stat_2954116742|31326", ["text"] = "Allocates Slow Burn", ["type"] = "explicit", }, - [1629] = { + [1631] = { ["id"] = "explicit.stat_2954116742|54148", ["text"] = "Allocates Smoke Inhalation", ["type"] = "explicit", }, - [1630] = { + [1632] = { ["id"] = "explicit.stat_2954116742|11526", ["text"] = "Allocates Sniper", ["type"] = "explicit", }, - [1631] = { + [1633] = { ["id"] = "explicit.stat_2954116742|9421", ["text"] = "Allocates Snowpiercer", ["type"] = "explicit", }, - [1632] = { + [1634] = { ["id"] = "explicit.stat_2954116742|51169", ["text"] = "Allocates Soul Bloom", ["type"] = "explicit", }, - [1633] = { + [1635] = { ["id"] = "explicit.stat_2954116742|34473", ["text"] = "Allocates Spaghettification", ["type"] = "explicit", }, - [1634] = { + [1636] = { ["id"] = "explicit.stat_2954116742|14602", ["text"] = "Allocates Specialised Shots", ["type"] = "explicit", }, - [1635] = { + [1637] = { ["id"] = "explicit.stat_2954116742|34324", ["text"] = "Allocates Spectral Ward", ["type"] = "explicit", }, - [1636] = { + [1638] = { ["id"] = "explicit.stat_2954116742|17254", ["text"] = "Allocates Spell Haste", ["type"] = "explicit", }, - [1637] = { + [1639] = { ["id"] = "explicit.stat_2954116742|49984", ["text"] = "Allocates Spellblade", ["type"] = "explicit", }, - [1638] = { + [1640] = { ["id"] = "explicit.stat_2954116742|3698", ["text"] = "Allocates Spike Pit", ["type"] = "explicit", }, - [1639] = { + [1641] = { ["id"] = "explicit.stat_2954116742|40117", ["text"] = "Allocates Spiked Armour", ["type"] = "explicit", }, - [1640] = { + [1642] = { ["id"] = "explicit.stat_2954116742|36808", ["text"] = "Allocates Spiked Shield", ["type"] = "explicit", }, - [1641] = { + [1643] = { ["id"] = "explicit.stat_2954116742|1546", ["text"] = "Allocates Spiral into Depression", ["type"] = "explicit", }, - [1642] = { + [1644] = { ["id"] = "explicit.stat_2954116742|2138", ["text"] = "Allocates Spiral into Insanity", ["type"] = "explicit", }, - [1643] = { + [1645] = { ["id"] = "explicit.stat_2954116742|14934", ["text"] = "Allocates Spiral into Mania", ["type"] = "explicit", }, - [1644] = { + [1646] = { ["id"] = "explicit.stat_2954116742|51105", ["text"] = "Allocates Spirit Bond", ["type"] = "explicit", }, - [1645] = { + [1647] = { ["id"] = "explicit.stat_2954116742|9328", ["text"] = "Allocates Spirit of the Bear", ["type"] = "explicit", }, - [1646] = { + [1648] = { ["id"] = "explicit.stat_2954116742|3348", ["text"] = "Allocates Spirit of the Wolf", ["type"] = "explicit", }, - [1647] = { + [1649] = { ["id"] = "explicit.stat_2954116742|26104", ["text"] = "Allocates Spirit of the Wyvern", ["type"] = "explicit", }, - [1648] = { + [1650] = { ["id"] = "explicit.stat_2954116742|49088", ["text"] = "Allocates Splintering Force", ["type"] = "explicit", }, - [1649] = { + [1651] = { ["id"] = "explicit.stat_2954116742|7449", ["text"] = "Allocates Splinters", ["type"] = "explicit", }, - [1650] = { + [1652] = { ["id"] = "explicit.stat_2954116742|42302", ["text"] = "Allocates Split Shot", ["type"] = "explicit", }, - [1651] = { + [1653] = { ["id"] = "explicit.stat_2954116742|13980", ["text"] = "Allocates Split the Earth", ["type"] = "explicit", }, - [1652] = { + [1654] = { ["id"] = "explicit.stat_2954116742|20251", ["text"] = "Allocates Splitting Ground", ["type"] = "explicit", }, - [1653] = { + [1655] = { ["id"] = "explicit.stat_2954116742|23736", ["text"] = "Allocates Spray and Pray", ["type"] = "explicit", }, - [1654] = { + [1656] = { ["id"] = "explicit.stat_2954116742|11578", ["text"] = "Allocates Spreading Shocks", ["type"] = "explicit", }, - [1655] = { + [1657] = { ["id"] = "explicit.stat_2954116742|63759", ["text"] = "Allocates Stacking Toxins", ["type"] = "explicit", }, - [1656] = { + [1658] = { ["id"] = "explicit.stat_2954116742|39881", ["text"] = "Allocates Staggering Palm", ["type"] = "explicit", }, - [1657] = { + [1659] = { ["id"] = "explicit.stat_2954116742|61104", ["text"] = "Allocates Staggering Wounds", ["type"] = "explicit", }, - [1658] = { + [1660] = { ["id"] = "explicit.stat_2954116742|6304", ["text"] = "Allocates Stand Ground", ["type"] = "explicit", }, - [1659] = { + [1661] = { ["id"] = "explicit.stat_2954116742|5802", ["text"] = "Allocates Stand and Deliver", ["type"] = "explicit", }, - [1660] = { + [1662] = { ["id"] = "explicit.stat_2954116742|2486", ["text"] = "Allocates Stars Aligned", ["type"] = "explicit", }, - [1661] = { + [1663] = { ["id"] = "explicit.stat_2954116742|34908", ["text"] = "Allocates Staunch Deflection", ["type"] = "explicit", }, - [1662] = { + [1664] = { ["id"] = "explicit.stat_2954116742|37408", ["text"] = "Allocates Staunching", ["type"] = "explicit", }, - [1663] = { + [1665] = { ["id"] = "explicit.stat_2954116742|26479", ["text"] = "Allocates Steadfast Resolve", ["type"] = "explicit", }, - [1664] = { + [1666] = { ["id"] = "explicit.stat_2954116742|47782", ["text"] = "Allocates Steady Footing", ["type"] = "explicit", }, - [1665] = { + [1667] = { ["id"] = "explicit.stat_2954116742|47441", ["text"] = "Allocates Stigmata", ["type"] = "explicit", }, - [1666] = { + [1668] = { ["id"] = "explicit.stat_2954116742|7163", ["text"] = "Allocates Stimulants", ["type"] = "explicit", }, - [1667] = { + [1669] = { ["id"] = "explicit.stat_2954116742|1603", ["text"] = "Allocates Storm Driven", ["type"] = "explicit", }, - [1668] = { + [1670] = { ["id"] = "explicit.stat_2954116742|61921", ["text"] = "Allocates Storm Surge", ["type"] = "explicit", }, - [1669] = { + [1671] = { ["id"] = "explicit.stat_2954116742|336", ["text"] = "Allocates Storm Swell", ["type"] = "explicit", }, - [1670] = { + [1672] = { ["id"] = "explicit.stat_2954116742|43139", ["text"] = "Allocates Stormbreaker", ["type"] = "explicit", }, - [1671] = { + [1673] = { ["id"] = "explicit.stat_2954116742|38535", ["text"] = "Allocates Stormcharged", ["type"] = "explicit", }, - [1672] = { + [1674] = { ["id"] = "explicit.stat_2954116742|13515", ["text"] = "Allocates Stormwalker", ["type"] = "explicit", }, - [1673] = { + [1675] = { ["id"] = "explicit.stat_2954116742|45177", ["text"] = "Allocates Strike True", ["type"] = "explicit", }, - [1674] = { + [1676] = { ["id"] = "explicit.stat_2954116742|33922", ["text"] = "Allocates Stripped Defences", ["type"] = "explicit", }, - [1675] = { + [1677] = { ["id"] = "explicit.stat_2954116742|10998", ["text"] = "Allocates Strong Chin", ["type"] = "explicit", }, - [1676] = { + [1678] = { ["id"] = "explicit.stat_2954116742|39369", ["text"] = "Allocates Struck Through", ["type"] = "explicit", }, - [1677] = { + [1679] = { ["id"] = "explicit.stat_2954116742|38342", ["text"] = "Allocates Stupefy", ["type"] = "explicit", }, - [1678] = { + [1680] = { ["id"] = "explicit.stat_2954116742|8791", ["text"] = "Allocates Sturdy Ally", ["type"] = "explicit", }, - [1679] = { + [1681] = { ["id"] = "explicit.stat_2954116742|60138", ["text"] = "Allocates Stylebender", ["type"] = "explicit", }, - [1680] = { + [1682] = { ["id"] = "explicit.stat_2954116742|55193", ["text"] = "Allocates Subterfuge Mask", ["type"] = "explicit", }, - [1681] = { + [1683] = { ["id"] = "explicit.stat_2954116742|30392", ["text"] = "Allocates Succour", ["type"] = "explicit", }, - [1682] = { + [1684] = { ["id"] = "explicit.stat_2954116742|10398", ["text"] = "Allocates Sudden Escalation", ["type"] = "explicit", }, - [1683] = { + [1685] = { ["id"] = "explicit.stat_2954116742|29372", ["text"] = "Allocates Sudden Infuriation", ["type"] = "explicit", }, - [1684] = { + [1686] = { ["id"] = "explicit.stat_2954116742|14383", ["text"] = "Allocates Suffusion", ["type"] = "explicit", }, - [1685] = { + [1687] = { ["id"] = "explicit.stat_2954116742|2511", ["text"] = "Allocates Sundering", ["type"] = "explicit", }, - [1686] = { + [1688] = { ["id"] = "explicit.stat_2954116742|19249", ["text"] = "Allocates Supportive Ancestors", ["type"] = "explicit", }, - [1687] = { + [1689] = { ["id"] = "explicit.stat_2954116742|29881", ["text"] = "Allocates Surging Beast", ["type"] = "explicit", }, - [1688] = { + [1690] = { ["id"] = "explicit.stat_2954116742|42065", ["text"] = "Allocates Surging Currents", ["type"] = "explicit", }, - [1689] = { + [1691] = { ["id"] = "explicit.stat_2954116742|56806", ["text"] = "Allocates Swift Blocking", ["type"] = "explicit", }, - [1690] = { + [1692] = { ["id"] = "explicit.stat_2954116742|32353", ["text"] = "Allocates Swift Claw", ["type"] = "explicit", }, - [1691] = { + [1693] = { ["id"] = "explicit.stat_2954116742|56714", ["text"] = "Allocates Swift Flight", ["type"] = "explicit", }, - [1692] = { + [1694] = { ["id"] = "explicit.stat_2954116742|65265", ["text"] = "Allocates Swift Interruption", ["type"] = "explicit", }, - [1693] = { + [1695] = { ["id"] = "explicit.stat_2954116742|53367", ["text"] = "Allocates Symbol of Defiance", ["type"] = "explicit", }, - [1694] = { + [1696] = { ["id"] = "explicit.stat_2954116742|17825", ["text"] = "Allocates Tactical Retreat", ["type"] = "explicit", }, - [1695] = { + [1697] = { ["id"] = "explicit.stat_2954116742|22864", ["text"] = "Allocates Tainted Strike", ["type"] = "explicit", }, - [1696] = { + [1698] = { ["id"] = "explicit.stat_2954116742|40213", ["text"] = "Allocates Taste for Blood", ["type"] = "explicit", }, - [1697] = { + [1699] = { ["id"] = "explicit.stat_2954116742|48774", ["text"] = "Allocates Taut Flesh", ["type"] = "explicit", }, - [1698] = { + [1700] = { ["id"] = "explicit.stat_2954116742|18157", ["text"] = "Allocates Tempered Defences", ["type"] = "explicit", }, - [1699] = { + [1701] = { ["id"] = "explicit.stat_2954116742|8831", ["text"] = "Allocates Tempered Mind", ["type"] = "explicit", }, - [1700] = { + [1702] = { ["id"] = "explicit.stat_2954116742|12412", ["text"] = "Allocates Temporal Mastery", ["type"] = "explicit", }, - [1701] = { + [1703] = { ["id"] = "explicit.stat_2954116742|25971", ["text"] = "Allocates Tenfold Attacks", ["type"] = "explicit", }, - [1702] = { + [1704] = { ["id"] = "explicit.stat_2954116742|4544", ["text"] = "Allocates The Ancient Serpent", ["type"] = "explicit", }, - [1703] = { + [1705] = { ["id"] = "explicit.stat_2954116742|7847", ["text"] = "Allocates The Fabled Stag", ["type"] = "explicit", }, - [1704] = { + [1706] = { ["id"] = "explicit.stat_2954116742|34543", ["text"] = "Allocates The Frenzied Bear", ["type"] = "explicit", }, - [1705] = { + [1707] = { ["id"] = "explicit.stat_2954116742|54031", ["text"] = "Allocates The Great Boar", ["type"] = "explicit", }, - [1706] = { + [1708] = { ["id"] = "explicit.stat_2954116742|48734", ["text"] = "Allocates The Howling Primate", ["type"] = "explicit", }, - [1707] = { + [1709] = { ["id"] = "explicit.stat_2954116742|28542", ["text"] = "Allocates The Molten One's Gift", ["type"] = "explicit", }, - [1708] = { + [1710] = { ["id"] = "explicit.stat_2954116742|2745", ["text"] = "Allocates The Noble Wolf", ["type"] = "explicit", }, - [1709] = { + [1711] = { ["id"] = "explicit.stat_2954116742|27176", ["text"] = "Allocates The Power Within", ["type"] = "explicit", }, - [1710] = { + [1712] = { ["id"] = "explicit.stat_2954116742|21349", ["text"] = "Allocates The Quick Fox", ["type"] = "explicit", }, - [1711] = { + [1713] = { ["id"] = "explicit.stat_2954116742|45370", ["text"] = "Allocates The Raging Ox", ["type"] = "explicit", }, - [1712] = { + [1714] = { ["id"] = "explicit.stat_2954116742|52971", ["text"] = "Allocates The Soul Meridian", ["type"] = "explicit", }, - [1713] = { + [1715] = { ["id"] = "explicit.stat_2954116742|11774", ["text"] = "Allocates The Spring Hare", ["type"] = "explicit", }, - [1714] = { + [1716] = { ["id"] = "explicit.stat_2954116742|22811", ["text"] = "Allocates The Wild Cat", ["type"] = "explicit", }, - [1715] = { + [1717] = { ["id"] = "explicit.stat_2954116742|53185", ["text"] = "Allocates The Winter Owl", ["type"] = "explicit", }, - [1716] = { + [1718] = { ["id"] = "explicit.stat_2954116742|35849", ["text"] = "Allocates Thickened Arteries", ["type"] = "explicit", }, - [1717] = { + [1719] = { ["id"] = "explicit.stat_2954116742|56893", ["text"] = "Allocates Thicket Warding", ["type"] = "explicit", }, - [1718] = { + [1720] = { ["id"] = "explicit.stat_2954116742|19722", ["text"] = "Allocates Thin Ice", ["type"] = "explicit", }, - [1719] = { + [1721] = { ["id"] = "explicit.stat_2954116742|59433", ["text"] = "Allocates Thirst for Endurance", ["type"] = "explicit", }, - [1720] = { + [1722] = { ["id"] = "explicit.stat_2954116742|38532", ["text"] = "Allocates Thirst for Power", ["type"] = "explicit", }, - [1721] = { + [1723] = { ["id"] = "explicit.stat_2954116742|17600", ["text"] = "Allocates Thirsting Ally", ["type"] = "explicit", }, - [1722] = { + [1724] = { ["id"] = "explicit.stat_2954116742|43711", ["text"] = "Allocates Thornhide", ["type"] = "explicit", }, - [1723] = { + [1725] = { ["id"] = "explicit.stat_2954116742|42714", ["text"] = "Allocates Thousand Cuts", ["type"] = "explicit", }, - [1724] = { + [1726] = { ["id"] = "explicit.stat_2954116742|25711", ["text"] = "Allocates Thrill of Battle", ["type"] = "explicit", }, - [1725] = { + [1727] = { ["id"] = "explicit.stat_2954116742|15606", ["text"] = "Allocates Thrill of the Fight", ["type"] = "explicit", }, - [1726] = { + [1728] = { ["id"] = "explicit.stat_2954116742|56265", ["text"] = "Allocates Throatseeker", ["type"] = "explicit", }, - [1727] = { + [1729] = { ["id"] = "explicit.stat_2954116742|63585", ["text"] = "Allocates Thunderstruck", ["type"] = "explicit", }, - [1728] = { + [1730] = { ["id"] = "explicit.stat_2954116742|42813", ["text"] = "Allocates Tides of Change", ["type"] = "explicit", }, - [1729] = { + [1731] = { ["id"] = "explicit.stat_2954116742|24240", ["text"] = "Allocates Time Manipulation", ["type"] = "explicit", }, - [1730] = { + [1732] = { ["id"] = "explicit.stat_2954116742|65160", ["text"] = "Allocates Titanic", ["type"] = "explicit", }, - [1731] = { + [1733] = { ["id"] = "explicit.stat_2954116742|2843", ["text"] = "Allocates Tolerant Equipment", ["type"] = "explicit", }, - [1732] = { + [1734] = { ["id"] = "explicit.stat_2954116742|28482", ["text"] = "Allocates Total Incineration", ["type"] = "explicit", }, - [1733] = { + [1735] = { ["id"] = "explicit.stat_2954116742|27626", ["text"] = "Allocates Touch the Arcane", ["type"] = "explicit", }, - [1734] = { + [1736] = { ["id"] = "explicit.stat_2954116742|53823", ["text"] = "Allocates Towering Shield", ["type"] = "explicit", }, - [1735] = { + [1737] = { ["id"] = "explicit.stat_2954116742|261", ["text"] = "Allocates Toxic Sludge", ["type"] = "explicit", }, - [1736] = { + [1738] = { ["id"] = "explicit.stat_2954116742|2134", ["text"] = "Allocates Toxic Tolerance", ["type"] = "explicit", }, - [1737] = { + [1739] = { ["id"] = "explicit.stat_2954116742|52180", ["text"] = "Allocates Trained Deflection", ["type"] = "explicit", }, - [1738] = { + [1740] = { ["id"] = "explicit.stat_2954116742|57785", ["text"] = "Allocates Trained Turrets", ["type"] = "explicit", }, - [1739] = { + [1741] = { ["id"] = "explicit.stat_2954116742|750", ["text"] = "Allocates Tribal Fury", ["type"] = "explicit", }, - [1740] = { + [1742] = { ["id"] = "explicit.stat_2954116742|23221", ["text"] = "Allocates Trick Shot", ["type"] = "explicit", }, - [1741] = { + [1743] = { ["id"] = "explicit.stat_2954116742|61601", ["text"] = "Allocates True Strike", ["type"] = "explicit", }, - [1742] = { + [1744] = { ["id"] = "explicit.stat_2954116742|53131", ["text"] = "Allocates Tukohama's Brew", ["type"] = "explicit", }, - [1743] = { + [1745] = { ["id"] = "explicit.stat_2954116742|35564", ["text"] = "Allocates Turn the Clock Back", ["type"] = "explicit", }, - [1744] = { + [1746] = { ["id"] = "explicit.stat_2954116742|2335", ["text"] = "Allocates Turn the Clock Forward", ["type"] = "explicit", }, - [1745] = { + [1747] = { ["id"] = "explicit.stat_2954116742|1352", ["text"] = "Allocates Unbending", ["type"] = "explicit", }, - [1746] = { + [1748] = { ["id"] = "explicit.stat_2954116742|4579", ["text"] = "Allocates Unbothering Cold", ["type"] = "explicit", }, - [1747] = { + [1749] = { ["id"] = "explicit.stat_2954116742|64543", ["text"] = "Allocates Unbound Forces", ["type"] = "explicit", }, - [1748] = { + [1750] = { ["id"] = "explicit.stat_2954116742|53921", ["text"] = "Allocates Unbreaking", ["type"] = "explicit", }, - [1749] = { + [1751] = { ["id"] = "explicit.stat_2954116742|38888", ["text"] = "Allocates Unerring Impact", ["type"] = "explicit", }, - [1750] = { + [1752] = { ["id"] = "explicit.stat_2954116742|31189", ["text"] = "Allocates Unexpected Finesse", ["type"] = "explicit", }, - [1751] = { + [1753] = { ["id"] = "explicit.stat_2954116742|8881", ["text"] = "Allocates Unforgiving", ["type"] = "explicit", }, - [1752] = { + [1754] = { ["id"] = "explicit.stat_2954116742|32543", ["text"] = "Allocates Unhindered", ["type"] = "explicit", }, - [1753] = { + [1755] = { ["id"] = "explicit.stat_2954116742|51394", ["text"] = "Allocates Unimpeded", ["type"] = "explicit", }, - [1754] = { + [1756] = { ["id"] = "explicit.stat_2954116742|20008", ["text"] = "Allocates Unleash Fire", ["type"] = "explicit", }, - [1755] = { + [1757] = { ["id"] = "explicit.stat_2954116742|4547", ["text"] = "Allocates Unnatural Resilience", ["type"] = "explicit", }, - [1756] = { + [1758] = { ["id"] = "explicit.stat_2954116742|51602", ["text"] = "Allocates Unsight", ["type"] = "explicit", }, - [1757] = { + [1759] = { ["id"] = "explicit.stat_2954116742|33585", ["text"] = "Allocates Unspoken Bond", ["type"] = "explicit", }, - [1758] = { + [1760] = { ["id"] = "explicit.stat_2954116742|18485", ["text"] = "Allocates Unstable Bond", ["type"] = "explicit", }, - [1759] = { + [1761] = { ["id"] = "explicit.stat_2954116742|33978", ["text"] = "Allocates Unstoppable Barrier", ["type"] = "explicit", }, - [1760] = { + [1762] = { ["id"] = "explicit.stat_2954116742|10774", ["text"] = "Allocates Unyielding", ["type"] = "explicit", }, - [1761] = { + [1763] = { ["id"] = "explicit.stat_2954116742|1169", ["text"] = "Allocates Urgent Call", ["type"] = "explicit", }, - [1762] = { + [1764] = { ["id"] = "explicit.stat_2954116742|17303", ["text"] = "Allocates Utility Ordnance", ["type"] = "explicit", }, - [1763] = { + [1765] = { ["id"] = "explicit.stat_2954116742|41033", ["text"] = "Allocates Utmost Offering", ["type"] = "explicit", }, - [1764] = { + [1766] = { ["id"] = "explicit.stat_2954116742|12750", ["text"] = "Allocates Vale Shelter", ["type"] = "explicit", }, - [1765] = { + [1767] = { ["id"] = "explicit.stat_2954116742|17762", ["text"] = "Allocates Vengeance", ["type"] = "explicit", }, - [1766] = { + [1768] = { ["id"] = "explicit.stat_2954116742|54937", ["text"] = "Allocates Vengeful Fury", ["type"] = "explicit", }, - [1767] = { + [1769] = { ["id"] = "explicit.stat_2954116742|4238", ["text"] = "Allocates Versatile Arms", ["type"] = "explicit", }, - [1768] = { + [1770] = { ["id"] = "explicit.stat_2954116742|65193", ["text"] = "Allocates Viciousness", ["type"] = "explicit", }, - [1769] = { + [1771] = { ["id"] = "explicit.stat_2954116742|22967", ["text"] = "Allocates Vigilance", ["type"] = "explicit", }, - [1770] = { + [1772] = { ["id"] = "explicit.stat_2954116742|63739", ["text"] = "Allocates Vigorous Remnants", ["type"] = "explicit", }, - [1771] = { + [1773] = { ["id"] = "explicit.stat_2954116742|36507", ["text"] = "Allocates Vile Mending", ["type"] = "explicit", }, - [1772] = { + [1774] = { ["id"] = "explicit.stat_2954116742|31373", ["text"] = "Allocates Vocal Empowerment", ["type"] = "explicit", }, - [1773] = { + [1775] = { ["id"] = "explicit.stat_2954116742|3492", ["text"] = "Allocates Void", ["type"] = "explicit", }, - [1774] = { + [1776] = { ["id"] = "explicit.stat_2954116742|17882", ["text"] = "Allocates Volatile Grenades", ["type"] = "explicit", }, - [1775] = { + [1777] = { ["id"] = "explicit.stat_2954116742|11366", ["text"] = "Allocates Volcanic Skin", ["type"] = "explicit", }, - [1776] = { + [1778] = { ["id"] = "explicit.stat_2954116742|46060", ["text"] = "Allocates Voracious", ["type"] = "explicit", }, - [1777] = { + [1779] = { ["id"] = "explicit.stat_2954116742|27303", ["text"] = "Allocates Vulgar Methods", ["type"] = "explicit", }, - [1778] = { + [1780] = { ["id"] = "explicit.stat_2954116742|25211", ["text"] = "Allocates Waning Hindrances", ["type"] = "explicit", }, - [1779] = { + [1781] = { ["id"] = "explicit.stat_2954116742|31925", ["text"] = "Allocates Warding Fetish", ["type"] = "explicit", }, - [1780] = { + [1782] = { ["id"] = "explicit.stat_2954116742|47418", ["text"] = "Allocates Warding Potions", ["type"] = "explicit", }, - [1781] = { + [1783] = { ["id"] = "explicit.stat_2954116742|53187", ["text"] = "Allocates Warlord Berserker", ["type"] = "explicit", }, - [1782] = { + [1784] = { ["id"] = "explicit.stat_2954116742|14761", ["text"] = "Allocates Warlord Leader", ["type"] = "explicit", }, - [1783] = { + [1785] = { ["id"] = "explicit.stat_2954116742|12998", ["text"] = "Allocates Warm the Heart", ["type"] = "explicit", }, - [1784] = { + [1786] = { ["id"] = "explicit.stat_2954116742|64650", ["text"] = "Allocates Wary Dodging", ["type"] = "explicit", }, - [1785] = { + [1787] = { ["id"] = "explicit.stat_2954116742|51213", ["text"] = "Allocates Wasting", ["type"] = "explicit", }, - [1786] = { + [1788] = { ["id"] = "explicit.stat_2954116742|61444", ["text"] = "Allocates Wasting Casts", ["type"] = "explicit", }, - [1787] = { + [1789] = { ["id"] = "explicit.stat_2954116742|5580", ["text"] = "Allocates Watchtowers", ["type"] = "explicit", }, - [1788] = { + [1790] = { ["id"] = "explicit.stat_2954116742|51509", ["text"] = "Allocates Waters of Life", ["type"] = "explicit", }, - [1789] = { + [1791] = { ["id"] = "explicit.stat_2954116742|58198", ["text"] = "Allocates Well of Power", ["type"] = "explicit", }, - [1790] = { + [1792] = { ["id"] = "explicit.stat_2954116742|2021", ["text"] = "Allocates Wellspring", ["type"] = "explicit", }, - [1791] = { + [1793] = { ["id"] = "explicit.stat_2954116742|37514", ["text"] = "Allocates Whirling Assault", ["type"] = "explicit", }, - [1792] = { + [1794] = { ["id"] = "explicit.stat_2954116742|46384", ["text"] = "Allocates Wide Barrier", ["type"] = "explicit", }, - [1793] = { + [1795] = { ["id"] = "explicit.stat_2954116742|65256", ["text"] = "Allocates Widespread Coverage", ["type"] = "explicit", }, - [1794] = { + [1796] = { ["id"] = "explicit.stat_2954116742|7809", ["text"] = "Allocates Wild Storm", ["type"] = "explicit", }, - [1795] = { + [1797] = { ["id"] = "explicit.stat_2954116742|44373", ["text"] = "Allocates Wither Away", ["type"] = "explicit", }, - [1796] = { + [1798] = { ["id"] = "explicit.stat_2954116742|57921", ["text"] = "Allocates Wolf's Howl", ["type"] = "explicit", }, - [1797] = { + [1799] = { ["id"] = "explicit.stat_2954116742|62803", ["text"] = "Allocates Woodland Aspect", ["type"] = "explicit", }, - [1798] = { + [1800] = { ["id"] = "explicit.stat_2954116742|30132", ["text"] = "Allocates Wrapped Quiver", ["type"] = "explicit", }, - [1799] = { + [1801] = { ["id"] = "explicit.stat_2954116742|35417", ["text"] = "Allocates Wyvern's Breath", ["type"] = "explicit", }, - [1800] = { + [1802] = { ["id"] = "explicit.stat_2954116742|50485", ["text"] = "Allocates Zone of Control", ["type"] = "explicit", }, - [1801] = { + [1803] = { ["id"] = "explicit.stat_2676834156", ["text"] = "Also grants # Guard", ["type"] = "explicit", }, - [1802] = { + [1804] = { ["id"] = "explicit.stat_258955603", ["text"] = "Alternating every 5 seconds:Take #% more Damage from HitsTake #% more Damage over time", ["type"] = "explicit", }, - [1803] = { + [1805] = { ["id"] = "explicit.stat_4126210832", ["text"] = "Always Hits", ["type"] = "explicit", }, - [1804] = { + [1806] = { ["id"] = "explicit.stat_2214130968", ["text"] = "Always deals Critical Hits against Heavy Stunned Enemies", ["type"] = "explicit", }, - [1805] = { + [1807] = { ["id"] = "explicit.stat_3831171903|1", ["text"] = "Ancestral Bond", ["type"] = "explicit", }, - [1806] = { + [1808] = { ["id"] = "explicit.stat_4021234281", ["text"] = "Any number of Poisons from this Weapon can affect a target at the same time", ["type"] = "explicit", }, - [1807] = { + [1809] = { ["id"] = "explicit.stat_2586152168", ["text"] = "Archon recovery period expires #% faster", ["type"] = "explicit", }, - [1808] = { + [1810] = { ["id"] = "explicit.stat_3490187949", ["text"] = "Area contains # additional Abysses", ["type"] = "explicit", }, - [1809] = { + [1811] = { ["id"] = "explicit.stat_358129101", ["text"] = "Area contains # additional Azmeri Spirit", ["type"] = "explicit", }, - [1810] = { + [1812] = { ["id"] = "explicit.stat_3757259819", ["text"] = "Area contains # additional packs of Beasts", ["type"] = "explicit", }, - [1811] = { + [1813] = { ["id"] = "explicit.stat_3309089125", ["text"] = "Area contains # additional packs of Bramble Monsters", ["type"] = "explicit", }, - [1812] = { + [1814] = { ["id"] = "explicit.stat_1436812886", ["text"] = "Area contains # additional packs of Ezomyte Monsters", ["type"] = "explicit", }, - [1813] = { + [1815] = { ["id"] = "explicit.stat_4130878258", ["text"] = "Area contains # additional packs of Faridun Monsters", ["type"] = "explicit", }, - [1814] = { + [1816] = { ["id"] = "explicit.stat_2949706590", ["text"] = "Area contains # additional packs of Iron Guards", ["type"] = "explicit", }, - [1815] = { + [1817] = { ["id"] = "explicit.stat_3592067990", ["text"] = "Area contains # additional packs of Plagued Monsters", ["type"] = "explicit", }, - [1816] = { + [1818] = { ["id"] = "explicit.stat_1689473577", ["text"] = "Area contains # additional packs of Transcended Monsters", ["type"] = "explicit", }, - [1817] = { + [1819] = { ["id"] = "explicit.stat_240445958", ["text"] = "Area contains # additional packs of Undead", ["type"] = "explicit", }, - [1818] = { + [1820] = { ["id"] = "explicit.stat_4181857719", ["text"] = "Area contains # additional packs of Vaal Monsters", ["type"] = "explicit", }, - [1819] = { + [1821] = { ["id"] = "explicit.stat_1640965354", ["text"] = "Area contains #% increased number of Runic Monster Markers", ["type"] = "explicit", }, - [1820] = { + [1822] = { ["id"] = "explicit.stat_1070816711", ["text"] = "Area contains an additional Abyss", ["type"] = "explicit", }, - [1821] = { + [1823] = { ["id"] = "explicit.stat_395808938", ["text"] = "Area contains an additional Essence", ["type"] = "explicit", }, - [1822] = { + [1824] = { ["id"] = "explicit.stat_1827854662", ["text"] = "Area contains an additional Incubator Queen", ["type"] = "explicit", }, - [1823] = { + [1825] = { ["id"] = "explicit.stat_2396719220", ["text"] = "Area contains an additional Magic Chest", ["type"] = "explicit", }, - [1824] = { + [1826] = { ["id"] = "explicit.stat_231864447", ["text"] = "Area contains an additional Rare Chest", ["type"] = "explicit", }, - [1825] = { + [1827] = { ["id"] = "explicit.stat_1468737867", ["text"] = "Area contains an additional Shrine", ["type"] = "explicit", }, - [1826] = { + [1828] = { ["id"] = "explicit.stat_3240183538", ["text"] = "Area contains an additional Strongbox", ["type"] = "explicit", }, - [1827] = { + [1829] = { ["id"] = "explicit.stat_2839545956", ["text"] = "Area contains an additional Summoning Circle", ["type"] = "explicit", }, - [1828] = { + [1830] = { ["id"] = "explicit.stat_2571125745", ["text"] = "Area has #% chance to contain a Shrine", ["type"] = "explicit", }, - [1829] = { + [1831] = { ["id"] = "explicit.stat_2388936716", ["text"] = "Area has #% chance to contain a Strongbox", ["type"] = "explicit", }, - [1830] = { + [1832] = { ["id"] = "explicit.stat_4098286334", ["text"] = "Area has #% chance to contain an Essence", ["type"] = "explicit", }, - [1831] = { + [1833] = { ["id"] = "explicit.stat_2890355696", ["text"] = "Area has #% chance to contain four additional Abysses", ["type"] = "explicit", }, - [1832] = { + [1834] = { ["id"] = "explicit.stat_3815617979", ["text"] = "Area has #% increased chance to contain Azmeri Spirits", ["type"] = "explicit", }, - [1833] = { + [1835] = { ["id"] = "explicit.stat_1825943485", ["text"] = "Area has #% increased chance to contain Essences", ["type"] = "explicit", }, - [1834] = { + [1836] = { ["id"] = "explicit.stat_1352729973", ["text"] = "Area has #% increased chance to contain Rogue Exiles", ["type"] = "explicit", }, - [1835] = { + [1837] = { ["id"] = "explicit.stat_689816330", ["text"] = "Area has #% increased chance to contain Shrines", ["type"] = "explicit", }, - [1836] = { + [1838] = { ["id"] = "explicit.stat_4279535856", ["text"] = "Area has #% increased chance to contain Strongboxes", ["type"] = "explicit", }, - [1837] = { + [1839] = { ["id"] = "explicit.stat_267210597", ["text"] = "Area has #% increased chance to contain a Summoning Circle", ["type"] = "explicit", }, - [1838] = { + [1840] = { ["id"] = "explicit.stat_349586058", ["text"] = "Area has patches of Chilled Ground", ["type"] = "explicit", }, - [1839] = { + [1841] = { ["id"] = "explicit.stat_133340941", ["text"] = "Area has patches of Ignited Ground", ["type"] = "explicit", }, - [1840] = { + [1842] = { ["id"] = "explicit.stat_3190283174", ["text"] = "Area has patches of Mana Siphoning Ground", ["type"] = "explicit", }, - [1841] = { + [1843] = { ["id"] = "explicit.stat_3477720557", ["text"] = "Area has patches of Shocked Ground", ["type"] = "explicit", }, - [1842] = { + [1844] = { ["id"] = "explicit.stat_3550168289", ["text"] = "Area is inhabited by # additional Rogue Exile", ["type"] = "explicit", }, - [1843] = { + [1845] = { ["id"] = "explicit.stat_2741291867", ["text"] = "Area is overrun by the Abyssal", ["type"] = "explicit", }, - [1844] = { + [1846] = { ["id"] = "explicit.stat_3049505189", ["text"] = "Areas which contain Breaches have #% chance to contain an additional Breach", ["type"] = "explicit", }, - [1845] = { + [1847] = { ["id"] = "explicit.stat_2440265466", ["text"] = "Areas which contain Breaches have #% chance to contain three additional Breaches", ["type"] = "explicit", }, - [1846] = { + [1848] = { ["id"] = "explicit.stat_3042527515", ["text"] = "Areas with Map Powerful Map Bosses contain an additional Shrine", ["type"] = "explicit", }, - [1847] = { + [1849] = { ["id"] = "explicit.stat_775597083", ["text"] = "Areas with Powerful Map Bosses contain an additional Azmeri Spirit", ["type"] = "explicit", }, - [1848] = { + [1850] = { ["id"] = "explicit.stat_2162684861", ["text"] = "Areas with Powerful Map Bosses contain an additional Essence", ["type"] = "explicit", }, - [1849] = { + [1851] = { ["id"] = "explicit.stat_3042527515", ["text"] = "Areas with Powerful Map Bosses contain an additional Shrine", ["type"] = "explicit", }, - [1850] = { + [1852] = { ["id"] = "explicit.stat_3040603554", ["text"] = "Areas with Powerful Map Bosses contain an additional Strongbox", ["type"] = "explicit", }, - [1851] = { + [1853] = { ["id"] = "explicit.stat_713266390", ["text"] = "Armour is increased by Uncapped Fire Resistance", ["type"] = "explicit", }, - [1852] = { + [1854] = { ["id"] = "explicit.stat_2421436896", ["text"] = "Arrows Fork", ["type"] = "explicit", }, - [1853] = { + [1855] = { ["id"] = "explicit.stat_2138799639", ["text"] = "Arrows Pierce all targets after Forking", ["type"] = "explicit", }, - [1854] = { + [1856] = { ["id"] = "explicit.stat_3423006863", ["text"] = "Arrows Pierce an additional Target", ["type"] = "explicit", }, - [1855] = { + [1857] = { ["id"] = "explicit.stat_1243721142", ["text"] = "Arrows Return if they have Pierced a target which had Fully Broken Armour", ["type"] = "explicit", }, - [1856] = { + [1858] = { ["id"] = "explicit.stat_300723956", ["text"] = "Attack Hits apply Incision", ["type"] = "explicit", }, - [1857] = { + [1859] = { ["id"] = "explicit.stat_33298888", ["text"] = "Attack Hits inflict Spectral Fire for # seconds", ["type"] = "explicit", }, - [1858] = { + [1860] = { ["id"] = "explicit.stat_2720781168", ["text"] = "Attack Projectiles Return if they Pierced at least # times", ["type"] = "explicit", }, - [1859] = { + [1861] = { ["id"] = "explicit.stat_3868118796", ["text"] = "Attacks Chain an additional time", ["type"] = "explicit", }, - [1860] = { + [1862] = { ["id"] = "explicit.stat_1484500028", ["text"] = "Attacks Gain #% of Damage as Extra Cold Damage", ["type"] = "explicit", }, - [1861] = { + [1863] = { ["id"] = "explicit.stat_1049080093", ["text"] = "Attacks Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, - [1862] = { + [1864] = { ["id"] = "explicit.stat_261503687", ["text"] = "Attacks Gain #% of Physical Damage as extra Chaos Damage", ["type"] = "explicit", }, - [1863] = { + [1865] = { ["id"] = "explicit.stat_3550545679", ["text"] = "Attacks consume an Endurance Charge to Critically Hit", ["type"] = "explicit", }, - [1864] = { + [1866] = { ["id"] = "explicit.stat_2157692677", ["text"] = "Attacks cost an additional #% of your maximum Mana", ["type"] = "explicit", }, - [1865] = { + [1867] = { ["id"] = "explicit.stat_3258071686", ["text"] = "Attacks have Added maximum Lightning Damage equal to #% of maximum Mana", ["type"] = "explicit", }, - [1866] = { + [1868] = { ["id"] = "explicit.stat_2723294374", ["text"] = "Attacks have added Physical damage equal to #% of maximum Life", ["type"] = "explicit", }, - [1867] = { + [1869] = { ["id"] = "explicit.stat_1740229525", ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", ["type"] = "explicit", }, - [1868] = { + [1870] = { ["id"] = "explicit.stat_3398283493", ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", ["type"] = "explicit", }, - [1869] = { + [1871] = { ["id"] = "explicit.stat_2387539034", ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", ["type"] = "explicit", }, - [1870] = { + [1872] = { ["id"] = "explicit.stat_3620731914", ["text"] = "Attacks with this Weapon gain #% of Physical damage as Extra damage of each Element", ["type"] = "explicit", }, - [1871] = { + [1873] = { ["id"] = "explicit.stat_566086661", ["text"] = "Attacks with this Weapon have Added Cold Damage equal to #% to #% of maximum Mana", ["type"] = "explicit", }, - [1872] = { + [1874] = { ["id"] = "explicit.stat_315791320", ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "explicit", }, - [1873] = { + [1875] = { ["id"] = "explicit.stat_3831171903|4", ["text"] = "Avatar of Fire", ["type"] = "explicit", }, - [1874] = { + [1876] = { ["id"] = "explicit.stat_429143663", ["text"] = "Banner Skills have #% increased Area of Effect", ["type"] = "explicit", }, - [1875] = { + [1877] = { ["id"] = "explicit.stat_2720982137", ["text"] = "Banner Skills have #% increased Duration", ["type"] = "explicit", }, - [1876] = { + [1878] = { ["id"] = "explicit.stat_1761741119", ["text"] = "Banners always have maximum Valour", ["type"] = "explicit", }, - [1877] = { + [1879] = { ["id"] = "explicit.stat_2635559734", ["text"] = "Base Critical Hit Chance for Attacks with Weapons is #%", ["type"] = "explicit", }, - [1878] = { + [1880] = { ["id"] = "explicit.stat_4287372938", ["text"] = "Bear Skills Convert #% of Physical Damage to Fire Damage", ["type"] = "explicit", }, - [1879] = { + [1881] = { ["id"] = "explicit.stat_335885735", ["text"] = "Bears the Mark of the Abyssal Lord", ["type"] = "explicit", }, - [1880] = { + [1882] = { ["id"] = "explicit.stat_1451444093", ["text"] = "Bifurcates Critical Hits", ["type"] = "explicit", }, - [1881] = { + [1883] = { ["id"] = "explicit.stat_3831171903|28", ["text"] = "Blackflame Covenant", ["type"] = "explicit", }, - [1882] = { + [1884] = { ["id"] = "explicit.stat_1016759424", ["text"] = "Bleeding you inflict deals Fire Damage instead of Physical Damage", ["type"] = "explicit", }, - [1883] = { + [1885] = { ["id"] = "explicit.stat_841429130", ["text"] = "Bleeding you inflict is Aggravated", ["type"] = "explicit", }, - [1884] = { + [1886] = { ["id"] = "explicit.stat_3450276548", ["text"] = "Blind Chilled enemies on Hit", ["type"] = "explicit", }, - [1885] = { + [1887] = { ["id"] = "explicit.stat_3587953142", ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", ["type"] = "explicit", }, - [1886] = { + [1888] = { ["id"] = "explicit.stat_60826109", ["text"] = "Blind Targets when you Poison them", ["type"] = "explicit", }, - [1887] = { + [1889] = { ["id"] = "explicit.stat_4195198267", ["text"] = "Blocking Damage Poisons the Enemy as though dealing # Base Chaos Damage", ["type"] = "explicit", }, - [1888] = { + [1890] = { ["id"] = "explicit.stat_3831171903|5", ["text"] = "Blood Magic", ["type"] = "explicit", }, - [1889] = { + [1891] = { ["id"] = "explicit.stat_2801937280", ["text"] = "Blood Magic", ["type"] = "explicit", }, - [1890] = { + [1892] = { ["id"] = "explicit.stat_842299438", ["text"] = "Bolts fired by Crossbow Attacks have #% chance to notexpend Ammunition if you've Reloaded Recently", ["type"] = "explicit", }, - [1891] = { + [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", }, - [1892] = { + [1894] = { ["id"] = "explicit.stat_3885405204", ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "explicit", }, - [1893] = { + [1895] = { ["id"] = "explicit.stat_2734787892", ["text"] = "Breach Hives have an additional wave of Hiveborn Monsters", ["type"] = "explicit", }, - [1894] = { + [1896] = { ["id"] = "explicit.stat_1217651243", ["text"] = "Breaches expand to at least # metre in radiusBreaches remain open while there are alive Breach Monsters", ["type"] = "explicit", }, - [1895] = { + [1897] = { ["id"] = "explicit.stat_1210760818", ["text"] = "Breaches have #% increased Monster density", ["type"] = "explicit", }, - [1896] = { + [1898] = { ["id"] = "explicit.stat_2224050171", ["text"] = "Breaches in Area contain # additional Clasped Hand", ["type"] = "explicit", }, - [1897] = { + [1899] = { ["id"] = "explicit.stat_1090596078", ["text"] = "Breaches in Area spawn #% increased Magic Monsters", ["type"] = "explicit", }, - [1898] = { + [1900] = { ["id"] = "explicit.stat_1653625239", ["text"] = "Breaches in Area spawn an additional Rare Monster", ["type"] = "explicit", }, - [1899] = { + [1901] = { ["id"] = "explicit.stat_2224050171", ["text"] = "Breaches in your Maps contain # additional Clasped Hand", ["type"] = "explicit", }, - [1900] = { + [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", }, - [1901] = { + [1903] = { ["id"] = "explicit.stat_2504358770", ["text"] = "Breaches in your Maps open and close #% faster", ["type"] = "explicit", }, - [1902] = { + [1904] = { ["id"] = "explicit.stat_1090596078", ["text"] = "Breaches in your Maps spawn #% increased Magic Monsters", ["type"] = "explicit", }, - [1903] = { + [1905] = { ["id"] = "explicit.stat_1653625239", ["text"] = "Breaches in your Maps spawn an additional Rare Monster", ["type"] = "explicit", }, - [1904] = { + [1906] = { ["id"] = "explicit.stat_2504358770", ["text"] = "Breaches open and close #% faster", ["type"] = "explicit", }, - [1905] = { + [1907] = { ["id"] = "explicit.stat_1776411443", ["text"] = "Break #% increased Armour", ["type"] = "explicit", }, - [1906] = { + [1908] = { ["id"] = "explicit.stat_1103616075", ["text"] = "Break Armour equal to #% of Physical Damage dealt", ["type"] = "explicit", }, - [1907] = { + [1909] = { ["id"] = "explicit.stat_1286199571", ["text"] = "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", ["type"] = "explicit", }, - [1908] = { + [1910] = { ["id"] = "explicit.stat_949573361", ["text"] = "Breaks Armour equal to #% of damage from Hits with this weapon", ["type"] = "explicit", }, - [1909] = { + [1911] = { ["id"] = "explicit.stat_3831171903|24", ["text"] = "Bulwark", ["type"] = "explicit", }, - [1910] = { + [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", }, - [1911] = { + [1913] = { ["id"] = "explicit.stat_738592688", ["text"] = "Can Allocate Passive Skills from the Mercenary's starting point", ["type"] = "explicit", }, - [1912] = { + [1914] = { ["id"] = "explicit.stat_3116298775", ["text"] = "Can Allocate Passive Skills from the Ranger's starting point", ["type"] = "explicit", }, - [1913] = { + [1915] = { ["id"] = "explicit.stat_2218479786", ["text"] = "Can Allocate Passive Skills from the Shadow's starting point", ["type"] = "explicit", }, - [1914] = { + [1916] = { ["id"] = "explicit.stat_3359496001", ["text"] = "Can Allocate Passive Skills from the Sorceress's starting point", ["type"] = "explicit", }, - [1915] = { + [1917] = { ["id"] = "explicit.stat_1688294122", ["text"] = "Can Allocate Passive Skills from the Templar's starting point", ["type"] = "explicit", }, - [1916] = { + [1918] = { ["id"] = "explicit.stat_1359862146", ["text"] = "Can Allocate Passive Skills from the Warrior's starting point", ["type"] = "explicit", }, - [1917] = { + [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", }, - [1918] = { + [1920] = { ["id"] = "explicit.stat_2500154144", ["text"] = "Can Reroll Favours at Ritual Altars in your Maps twice as many times", ["type"] = "explicit", }, - [1919] = { + [1921] = { ["id"] = "explicit.stat_1161337167", ["text"] = "Can be modified while Corrupted", ["type"] = "explicit", }, - [1920] = { + [1922] = { ["id"] = "explicit.stat_1135194732", ["text"] = "Can have # additional Instilled Modifiers", ["type"] = "explicit", }, - [1921] = { + [1923] = { ["id"] = "explicit.stat_3418590244", ["text"] = "Can only be applied to Precursor Tower MapsCompleting the Tower makes all nearby Maps accessible", ["type"] = "explicit", }, - [1922] = { + [1924] = { ["id"] = "explicit.stat_4007482102", ["text"] = "Can't use Body Armour", ["type"] = "explicit", }, - [1923] = { + [1925] = { ["id"] = "explicit.stat_64726306", ["text"] = "Can't use other Rings", ["type"] = "explicit", }, - [1924] = { + [1926] = { ["id"] = "explicit.stat_1465760952", ["text"] = "Cannot Block", ["type"] = "explicit", }, - [1925] = { + [1927] = { ["id"] = "explicit.stat_474452755", ["text"] = "Cannot Evade Enemy Attacks", ["type"] = "explicit", }, - [1926] = { + [1928] = { ["id"] = "explicit.stat_4062529591", ["text"] = "Cannot Immobilise enemies", ["type"] = "explicit", }, - [1927] = { + [1929] = { ["id"] = "explicit.stat_1458880585", ["text"] = "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", ["type"] = "explicit", }, - [1928] = { + [1930] = { ["id"] = "explicit.stat_1436284579", ["text"] = "Cannot be Blinded", ["type"] = "explicit", }, - [1929] = { + [1931] = { ["id"] = "explicit.stat_331731406", ["text"] = "Cannot be Ignited", ["type"] = "explicit", }, - [1930] = { + [1932] = { ["id"] = "explicit.stat_1000739259", ["text"] = "Cannot be Light Stunned", ["type"] = "explicit", }, - [1931] = { + [1933] = { ["id"] = "explicit.stat_2252419505", ["text"] = "Cannot be Light Stunned by Deflected Hits", ["type"] = "explicit", }, - [1932] = { + [1934] = { ["id"] = "explicit.stat_3835551335", ["text"] = "Cannot be Poisoned", ["type"] = "explicit", }, - [1933] = { + [1935] = { ["id"] = "explicit.stat_491899612", ["text"] = "Cannot be Shocked", ["type"] = "explicit", }, - [1934] = { + [1936] = { ["id"] = "explicit.stat_1237409891", ["text"] = "Cannot be Used manually", ["type"] = "explicit", }, - [1935] = { + [1937] = { ["id"] = "explicit.stat_398335579", ["text"] = "Cannot be used while Manifested", ["type"] = "explicit", }, - [1936] = { + [1938] = { ["id"] = "explicit.stat_410952253", ["text"] = "Cannot have Energy Shield", ["type"] = "explicit", }, - [1937] = { + [1939] = { ["id"] = "explicit.stat_4056809290", ["text"] = "Cannot inflict Elemental Ailments", ["type"] = "explicit", }, - [1938] = { + [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", }, - [1939] = { + [1941] = { ["id"] = "explicit.stat_1961849903", ["text"] = "Cannot use Projectile Attacks", ["type"] = "explicit", }, - [1940] = { + [1942] = { ["id"] = "explicit.stat_65135897", ["text"] = "Cannot use Shield Skills", ["type"] = "explicit", }, - [1941] = { + [1943] = { ["id"] = "explicit.stat_2598171606", ["text"] = "Cannot use Warcries", ["type"] = "explicit", }, - [1942] = { + [1944] = { ["id"] = "explicit.stat_791928121", ["text"] = "Causes #% increased Stun Buildup", ["type"] = "explicit", }, - [1943] = { + [1945] = { ["id"] = "explicit.stat_2091621414", ["text"] = "Causes Bleeding on Hit", ["type"] = "explicit", }, - [1944] = { + [1946] = { ["id"] = "explicit.stat_1559935218", ["text"] = "Causes Daze buildup equal to #% of Damage dealt", ["type"] = "explicit", }, - [1945] = { + [1947] = { ["id"] = "explicit.stat_769129523", ["text"] = "Causes Double Stun Buildup", ["type"] = "explicit", }, - [1946] = { + [1948] = { ["id"] = "explicit.stat_2957287092", ["text"] = "Chance to Block Damage is Lucky", ["type"] = "explicit", }, - [1947] = { + [1949] = { ["id"] = "explicit.stat_1675120891", ["text"] = "Chance to Deflect is Lucky while on Low Life", ["type"] = "explicit", }, - [1948] = { + [1950] = { ["id"] = "explicit.stat_2315177528", ["text"] = "Chaos Damage from Hits also Contributes to Electrocute Buildup", ["type"] = "explicit", }, - [1949] = { + [1951] = { ["id"] = "explicit.stat_2973498992", ["text"] = "Chaos Damage from Hits also Contributes to Freeze Buildup", ["type"] = "explicit", }, - [1950] = { + [1952] = { ["id"] = "explicit.stat_2418601510", ["text"] = "Chaos Damage from Hits also Contributes to Shock Chance", ["type"] = "explicit", }, - [1951] = { + [1953] = { ["id"] = "explicit.stat_3831171903|8", ["text"] = "Chaos Inoculation", ["type"] = "explicit", }, - [1952] = { + [1954] = { ["id"] = "explicit.stat_2439129490", ["text"] = "Chaos Resistance is zero", ["type"] = "explicit", }, - [1953] = { + [1955] = { ["id"] = "explicit.stat_3480095574", ["text"] = "Charms applied to you have #% increased Effect", ["type"] = "explicit", }, - [1954] = { + [1956] = { ["id"] = "explicit.stat_185580205", ["text"] = "Charms gain # charge per Second", ["type"] = "explicit", }, - [1955] = { + [1957] = { ["id"] = "explicit.stat_2620375641", ["text"] = "Charms use no Charges", ["type"] = "explicit", }, - [1956] = { + [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", }, - [1957] = { + [1959] = { ["id"] = "explicit.stat_4207433208", ["text"] = "Cold Resistance is unaffected by Area Penalties", ["type"] = "explicit", }, - [1958] = { + [1960] = { ["id"] = "explicit.stat_234296660", ["text"] = "Companions deal #% increased Damage", ["type"] = "explicit", }, - [1959] = { + [1961] = { ["id"] = "explicit.stat_1067622524", ["text"] = "Companions deal #% increased damage to your Marked targets", ["type"] = "explicit", }, - [1960] = { + [1962] = { ["id"] = "explicit.stat_666077204", ["text"] = "Companions have #% increased Attack Speed", ["type"] = "explicit", }, - [1961] = { + [1963] = { ["id"] = "explicit.stat_1805182458", ["text"] = "Companions have #% increased maximum Life", ["type"] = "explicit", }, - [1962] = { + [1964] = { ["id"] = "explicit.stat_3831171903|13", ["text"] = "Conduit", ["type"] = "explicit", }, - [1963] = { + [1965] = { ["id"] = "explicit.stat_1938221597", ["text"] = "Conquered Attribute Passive Skills also grant # to Dexterity", ["type"] = "explicit", }, - [1964] = { + [1966] = { ["id"] = "explicit.stat_3116427713", ["text"] = "Conquered Attribute Passive Skills also grant # to Intelligence", ["type"] = "explicit", }, - [1965] = { + [1967] = { ["id"] = "explicit.stat_3871530702", ["text"] = "Conquered Attribute Passive Skills also grant # to Strength", ["type"] = "explicit", }, - [1966] = { + [1968] = { ["id"] = "explicit.stat_1119086588", ["text"] = "Conquered Attribute Passive Skills also grant # to Tribute", ["type"] = "explicit", }, - [1967] = { + [1969] = { ["id"] = "explicit.stat_2552484522", ["text"] = "Conquered Attribute Passive Skills also grant # to all Attributes", ["type"] = "explicit", }, - [1968] = { + [1970] = { ["id"] = "explicit.stat_970480050", ["text"] = "Conquered Small Passive Skills also grant #% increased Armour", ["type"] = "explicit", }, - [1969] = { + [1971] = { ["id"] = "explicit.stat_8816597", ["text"] = "Conquered Small Passive Skills also grant #% increased Attack damage", ["type"] = "explicit", }, - [1970] = { + [1972] = { ["id"] = "explicit.stat_2601021356", ["text"] = "Conquered Small Passive Skills also grant #% increased Chaos damage", ["type"] = "explicit", }, - [1971] = { + [1973] = { ["id"] = "explicit.stat_1283490138", ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", ["type"] = "explicit", }, - [1972] = { + [1974] = { ["id"] = "explicit.stat_4240116297", ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Damage", ["type"] = "explicit", }, - [1973] = { + [1975] = { ["id"] = "explicit.stat_2780670304", ["text"] = "Conquered Small Passive Skills also grant #% increased Energy Shield", ["type"] = "explicit", }, - [1974] = { + [1976] = { ["id"] = "explicit.stat_468694293", ["text"] = "Conquered Small Passive Skills also grant #% increased Evasion Rating", ["type"] = "explicit", }, - [1975] = { + [1977] = { ["id"] = "explicit.stat_4264952559", ["text"] = "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", ["type"] = "explicit", }, - [1976] = { + [1978] = { ["id"] = "explicit.stat_1818915622", ["text"] = "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", ["type"] = "explicit", }, - [1977] = { + [1979] = { ["id"] = "explicit.stat_1829333149", ["text"] = "Conquered Small Passive Skills also grant #% increased Physical damage", ["type"] = "explicit", }, - [1978] = { + [1980] = { ["id"] = "explicit.stat_3038857426", ["text"] = "Conquered Small Passive Skills also grant #% increased Spell damage", ["type"] = "explicit", }, - [1979] = { + [1981] = { ["id"] = "explicit.stat_2475870935", ["text"] = "Conquered Small Passive Skills also grant #% increased Stun Threshold", ["type"] = "explicit", }, - [1980] = { + [1982] = { ["id"] = "explicit.stat_3343033032", ["text"] = "Conquered Small Passive Skills also grant Minions deal #% increased damage", ["type"] = "explicit", }, - [1981] = { + [1983] = { ["id"] = "explicit.stat_1683568809", ["text"] = "Convert #% of Fire Damage with Mace Skills to Cold Damage", ["type"] = "explicit", }, - [1982] = { + [1984] = { ["id"] = "explicit.stat_4274637468", ["text"] = "Convert #% of maximum Life to twice as much Armour per 1% Chaos Resistance above 0%", ["type"] = "explicit", }, - [1983] = { + [1985] = { ["id"] = "explicit.stat_2896801635", ["text"] = "Convert 100% of maximum Energy Shield to maximum Divinity", ["type"] = "explicit", }, - [1984] = { + [1986] = { ["id"] = "explicit.stat_3351912431", ["text"] = "Convert All Armour to Evasion Rating", ["type"] = "explicit", }, - [1985] = { + [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", }, - [1986] = { + [1988] = { ["id"] = "explicit.stat_1658498488", ["text"] = "Corrupted Blood cannot be inflicted on you", ["type"] = "explicit", }, - [1987] = { + [1989] = { ["id"] = "explicit.stat_891466814", ["text"] = "Create a Fragment of Divinity in your Presence every 4 seconds", ["type"] = "explicit", }, - [1988] = { + [1990] = { ["id"] = "explicit.stat_3849649145", ["text"] = "Creates Consecrated Ground on use", ["type"] = "explicit", }, - [1989] = { + [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", }, - [1990] = { + [1992] = { ["id"] = "explicit.stat_3831171903|26", ["text"] = "Crimson Assault", ["type"] = "explicit", }, - [1991] = { + [1993] = { ["id"] = "explicit.stat_1289045485", ["text"] = "Critical Hits Ignore Enemy Monster Lightning Resistance", ["type"] = "explicit", }, - [1992] = { + [1994] = { ["id"] = "explicit.stat_62849030", ["text"] = "Critical Hits Poison the enemy", ["type"] = "explicit", }, - [1993] = { + [1995] = { ["id"] = "explicit.stat_3414998042", ["text"] = "Critical Hits cannot Extract Impale", ["type"] = "explicit", }, - [1994] = { + [1996] = { ["id"] = "explicit.stat_1094937621", ["text"] = "Critical Hits ignore Enemy Monster Elemental Resistances", ["type"] = "explicit", }, - [1995] = { + [1997] = { ["id"] = "explicit.stat_3058238353", ["text"] = "Critical Hits inflict Impale", ["type"] = "explicit", }, - [1996] = { + [1998] = { ["id"] = "explicit.stat_1550131834", ["text"] = "Critical Hits with Spells apply # Stack of Critical Weakness", ["type"] = "explicit", }, - [1997] = { + [1999] = { ["id"] = "explicit.stat_2524254339", ["text"] = "Culling Strike", ["type"] = "explicit", }, - [1998] = { + [2000] = { ["id"] = "explicit.stat_1158324489", ["text"] = "Culling Strike against Frozen Enemies", ["type"] = "explicit", }, - [1999] = { + [2001] = { ["id"] = "explicit.stat_2378065031", ["text"] = "Curse Skills have #% increased Cast Speed", ["type"] = "explicit", }, - [2000] = { + [2002] = { ["id"] = "explicit.stat_3751072557", ["text"] = "Curses have no Activation Delay", ["type"] = "explicit", }, - [2001] = { + [2003] = { ["id"] = "explicit.stat_4275855121", ["text"] = "Curses you inflict are reflected back to you", ["type"] = "explicit", }, - [2002] = { + [2004] = { ["id"] = "explicit.stat_1367119630", ["text"] = "Curses you inflict can affect Hexproof Enemies", ["type"] = "explicit", }, - [2003] = { + [2005] = { ["id"] = "explicit.stat_2609822974", ["text"] = "Curses you inflict have infinite Duration", ["type"] = "explicit", }, - [2004] = { + [2006] = { ["id"] = "explicit.stat_1793470535", ["text"] = "Curses you inflict ignore Curse limit", ["type"] = "explicit", }, - [2005] = { + [2007] = { ["id"] = "explicit.stat_986616727", ["text"] = "Curses you inflict spread to enemies within 3 metres when Cursed enemy dies", ["type"] = "explicit", }, - [2006] = { + [2008] = { ["id"] = "explicit.stat_2875218423", ["text"] = "Damage Blocked is Recouped as Mana", ["type"] = "explicit", }, - [2007] = { + [2009] = { ["id"] = "explicit.stat_3417711605", ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "explicit", }, - [2008] = { + [2010] = { ["id"] = "explicit.stat_2101383955", ["text"] = "Damage Penetrates #% Elemental Resistances", ["type"] = "explicit", }, - [2009] = { + [2011] = { ["id"] = "explicit.stat_2653955271", ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "explicit", }, - [2010] = { + [2012] = { ["id"] = "explicit.stat_818778753", ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "explicit", }, - [2011] = { + [2013] = { ["id"] = "explicit.stat_3753748365", ["text"] = "Damage of Enemies Hitting you is Unlucky while you are on Low Life", ["type"] = "explicit", }, - [2012] = { + [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", }, - [2013] = { + [2015] = { ["id"] = "explicit.stat_2886108529", ["text"] = "Damage over Time cannot bypass your Energy Shield", ["type"] = "explicit", }, - [2014] = { + [2016] = { ["id"] = "explicit.stat_2432200638", ["text"] = "Damage taken Recouped as Life is also Recouped as Energy Shield", ["type"] = "explicit", }, - [2015] = { + [2017] = { ["id"] = "explicit.stat_538241406", ["text"] = "Damaging Ailments deal damage #% faster", ["type"] = "explicit", }, - [2016] = { + [2018] = { ["id"] = "explicit.stat_3831171903|17", ["text"] = "Dance With Death", ["type"] = "explicit", }, - [2017] = { + [2019] = { ["id"] = "explicit.stat_3146310524", ["text"] = "Dazes on Hit", ["type"] = "explicit", }, - [2018] = { + [2020] = { ["id"] = "explicit.stat_2933846633", ["text"] = "Dazes on Hit", ["type"] = "explicit", }, - [2019] = { + [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", }, - [2020] = { + [2022] = { ["id"] = "explicit.stat_2301852600", ["text"] = "Deal #% of Overkill damage to enemies within 2 metres of the enemy killed", ["type"] = "explicit", }, - [2021] = { + [2023] = { ["id"] = "explicit.stat_2998305364", ["text"] = "Deal no Elemental Damage", ["type"] = "explicit", }, - [2022] = { + [2024] = { ["id"] = "explicit.stat_2107791433", ["text"] = "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", ["type"] = "explicit", }, - [2023] = { + [2025] = { ["id"] = "explicit.stat_3311259821", ["text"] = "Deals #% of current Mana as Chaos Damage to you when Effect ends", ["type"] = "explicit", }, - [2024] = { + [2026] = { ["id"] = "explicit.stat_541021467", ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", ["type"] = "explicit", }, - [2025] = { + [2027] = { ["id"] = "explicit.stat_1238227257", ["text"] = "Debuffs on you expire #% faster", ["type"] = "explicit", }, - [2026] = { + [2028] = { ["id"] = "explicit.stat_3650992555", ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", ["type"] = "explicit", }, - [2027] = { + [2029] = { ["id"] = "explicit.stat_3872034802", ["text"] = "Decimating Strike", ["type"] = "explicit", }, - [2028] = { + [2030] = { ["id"] = "explicit.stat_679087890", ["text"] = "Defend against Hits as though you had #% more Armour per 1% current Energy Shield", ["type"] = "explicit", }, - [2029] = { + [2031] = { ["id"] = "explicit.stat_1539671749", ["text"] = "Defend with #% of Armour while you have Energy Shield", ["type"] = "explicit", }, - [2030] = { + [2032] = { ["id"] = "explicit.stat_3387008487", ["text"] = "Defend with 200% of Armour", ["type"] = "explicit", }, - [2031] = { + [2033] = { ["id"] = "explicit.stat_3138344128", ["text"] = "Defend with 200% of Armour during effect", ["type"] = "explicit", }, - [2032] = { + [2034] = { ["id"] = "explicit.stat_1345835998", ["text"] = "Deferring Favours at Ritual Altars in Area costs #% increased Tribute", ["type"] = "explicit", }, - [2033] = { + [2035] = { ["id"] = "explicit.stat_1345835998", ["text"] = "Deferring Favours at Ritual Altars in your Maps costs #% increased Tribute", ["type"] = "explicit", }, - [2034] = { + [2036] = { ["id"] = "explicit.stat_3428124128", ["text"] = "Delirious Monsters Killed in Area provide #% increased Reward Progress", ["type"] = "explicit", }, - [2035] = { + [2037] = { ["id"] = "explicit.stat_3428124128", ["text"] = "Delirious Monsters killed in your Maps provide #% increased Reward Progress", ["type"] = "explicit", }, - [2036] = { + [2038] = { ["id"] = "explicit.stat_3962960008", ["text"] = "Delirium Encounters in Area are #% more likely to spawn Unique Bosses", ["type"] = "explicit", }, - [2037] = { + [2039] = { ["id"] = "explicit.stat_1770833858", ["text"] = "Delirium Encounters in Area have #% chance to generate an additional Reward", ["type"] = "explicit", }, - [2038] = { + [2040] = { ["id"] = "explicit.stat_1770833858", ["text"] = "Delirium Encounters in your Maps have #% chance to generate an additional Reward", ["type"] = "explicit", }, - [2039] = { + [2041] = { ["id"] = "explicit.stat_3350944114", ["text"] = "Delirium Fog dissipates #% faster", ["type"] = "explicit", }, - [2040] = { + [2042] = { ["id"] = "explicit.stat_3350944114", ["text"] = "Delirium Fog in Area dissipates #% faster", ["type"] = "explicit", }, - [2041] = { - ["id"] = "explicit.stat_1174954559", + [2043] = { + ["id"] = "explicit.stat_3226351972", ["text"] = "Delirium Fog in Area lasts # additional seconds before dissipating", ["type"] = "explicit", }, - [2042] = { - ["id"] = "explicit.stat_3226351972", + [2044] = { + ["id"] = "explicit.stat_1174954559", ["text"] = "Delirium Fog in Area lasts # additional seconds before dissipating", ["type"] = "explicit", }, - [2043] = { + [2045] = { ["id"] = "explicit.stat_551040294", ["text"] = "Delirium Fog in Area spawns #% increased Fracturing Mirrors", ["type"] = "explicit", }, - [2044] = { - ["id"] = "explicit.stat_1174954559", + [2046] = { + ["id"] = "explicit.stat_3226351972", ["text"] = "Delirium Fog in your Maps lasts # additional seconds before dissipating", ["type"] = "explicit", }, - [2045] = { - ["id"] = "explicit.stat_3226351972", + [2047] = { + ["id"] = "explicit.stat_1174954559", ["text"] = "Delirium Fog in your Maps lasts # additional seconds before dissipating", ["type"] = "explicit", }, - [2046] = { + [2048] = { ["id"] = "explicit.stat_1084853859", ["text"] = "Delirium Fog in your Maps never dissipates", ["type"] = "explicit", }, - [2047] = { + [2049] = { ["id"] = "explicit.stat_3465791711", ["text"] = "Delirium Monsters in Area have #% increased Pack Size", ["type"] = "explicit", }, - [2048] = { + [2050] = { ["id"] = "explicit.stat_3465791711", ["text"] = "Delirium Monsters in your Maps have #% increased Pack Size", ["type"] = "explicit", }, - [2049] = { + [2051] = { ["id"] = "explicit.stat_1769611692", ["text"] = "Delirium in Area increases #% faster with distance from the mirror", ["type"] = "explicit", }, - [2050] = { + [2052] = { ["id"] = "explicit.stat_1769611692", ["text"] = "Delirium in your Maps increases #% faster with distance from the mirror", ["type"] = "explicit", }, - [2051] = { + [2053] = { ["id"] = "explicit.stat_2971398565", ["text"] = "Divine Flight", ["type"] = "explicit", }, - [2052] = { + [2054] = { ["id"] = "explicit.stat_3518087336", ["text"] = "Dodge Roll avoids all Hits", ["type"] = "explicit", }, - [2053] = { + [2055] = { ["id"] = "explicit.stat_1298316550", ["text"] = "Dodge Roll passes through Enemies", ["type"] = "explicit", }, - [2054] = { + [2056] = { ["id"] = "explicit.stat_3686997387", ["text"] = "Double Stun Threshold while Shield is Raised", ["type"] = "explicit", }, - [2055] = { + [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", }, - [2056] = { + [2058] = { ["id"] = "explicit.stat_65133983", ["text"] = "Drop Shocked Ground while moving, lasting 8 seconds", ["type"] = "explicit", }, - [2057] = { + [2059] = { ["id"] = "explicit.stat_3891922348", ["text"] = "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", ["type"] = "explicit", }, - [2058] = { + [2060] = { ["id"] = "explicit.stat_2103621252", ["text"] = "Eat a Soul when you Hit a Unique Enemy, no more than once every second", ["type"] = "explicit", }, - [2059] = { + [2061] = { ["id"] = "explicit.stat_2932359713", ["text"] = "Effect is not removed when Unreserved Life is Filled", ["type"] = "explicit", }, - [2060] = { + [2062] = { ["id"] = "explicit.stat_3969608626", ["text"] = "Effect is not removed when Unreserved Mana is Filled", ["type"] = "explicit", }, - [2061] = { + [2063] = { ["id"] = "explicit.stat_3831171903|9", ["text"] = "Eldritch Battery", ["type"] = "explicit", }, - [2062] = { + [2064] = { ["id"] = "explicit.stat_2262736444", ["text"] = "Eldritch Battery", ["type"] = "explicit", }, - [2063] = { + [2065] = { ["id"] = "explicit.stat_1000566389", ["text"] = "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", ["type"] = "explicit", }, - [2064] = { + [2066] = { ["id"] = "explicit.stat_1370804479", ["text"] = "Elemental Ailments other than Freeze you inflict are Reflected to you", ["type"] = "explicit", }, - [2065] = { + [2067] = { ["id"] = "explicit.stat_2678924815", ["text"] = "Elemental Damage from Hits Contributes to Flammability, Ignite, and Chill Magnitudes, Freeze Buildup, and Shock Chance", ["type"] = "explicit", }, - [2066] = { + [2068] = { ["id"] = "explicit.stat_3831171903|23", ["text"] = "Elemental Equilibrium", ["type"] = "explicit", }, - [2067] = { + [2069] = { ["id"] = "explicit.stat_1569101201", ["text"] = "Empowered Attacks deal #% increased Damage", ["type"] = "explicit", }, - [2068] = { + [2070] = { ["id"] = "explicit.stat_3119292058", ["text"] = "Enemies Chilled by your Hits can be Shattered as though Frozen", ["type"] = "explicit", }, - [2069] = { + [2071] = { ["id"] = "explicit.stat_1816894864", ["text"] = "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", ["type"] = "explicit", }, - [2070] = { + [2072] = { ["id"] = "explicit.stat_849085925", ["text"] = "Enemies Frozen by you take #% increased Damage", ["type"] = "explicit", }, - [2071] = { + [2073] = { ["id"] = "explicit.stat_1746561819", ["text"] = "Enemies Hindered by you take #% increased Chaos Damage", ["type"] = "explicit", }, - [2072] = { + [2074] = { ["id"] = "explicit.stat_212649958", ["text"] = "Enemies Hindered by you take #% increased Elemental Damage", ["type"] = "explicit", }, - [2073] = { + [2075] = { ["id"] = "explicit.stat_359357545", ["text"] = "Enemies Hindered by you take #% increased Physical Damage", ["type"] = "explicit", }, - [2074] = { + [2076] = { ["id"] = "explicit.stat_1613322341", ["text"] = "Enemies Immobilised by you take #% less Damage", ["type"] = "explicit", }, - [2075] = { + [2077] = { ["id"] = "explicit.stat_381470861", ["text"] = "Enemies are Culled on Block", ["type"] = "explicit", }, - [2076] = { + [2078] = { ["id"] = "explicit.stat_3868746097", ["text"] = "Enemies have an Accuracy Penalty against you based on Distance", ["type"] = "explicit", }, - [2077] = { + [2079] = { ["id"] = "explicit.stat_1224838456", ["text"] = "Enemies in your Presence Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, - [2078] = { + [2080] = { ["id"] = "explicit.stat_2786852525", ["text"] = "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", ["type"] = "explicit", }, - [2079] = { + [2081] = { ["id"] = "explicit.stat_2080373320", ["text"] = "Enemies in your Presence are Blinded", ["type"] = "explicit", }, - [2080] = { + [2082] = { ["id"] = "explicit.stat_1464727508", ["text"] = "Enemies in your Presence are Blinded", ["type"] = "explicit", }, - [2081] = { + [2083] = { ["id"] = "explicit.stat_2890401248", ["text"] = "Enemies in your Presence are Hindered", ["type"] = "explicit", }, - [2082] = { + [2084] = { ["id"] = "explicit.stat_1433051415", ["text"] = "Enemies in your Presence are Ignited as though dealt # Base Fire Damage", ["type"] = "explicit", }, - [2083] = { + [2085] = { ["id"] = "explicit.stat_3491722585", ["text"] = "Enemies in your Presence are Intimidated", ["type"] = "explicit", }, - [2084] = { + [2086] = { ["id"] = "explicit.stat_1285684287", ["text"] = "Enemies in your Presence count as being on Low Life", ["type"] = "explicit", }, - [2085] = { + [2087] = { ["id"] = "explicit.stat_2836928993", ["text"] = "Enemies in your Presence count as having double Power", ["type"] = "explicit", }, - [2086] = { + [2088] = { ["id"] = "explicit.stat_3628041050", ["text"] = "Enemies in your Presence gain 1 Gruelling Madness each second", ["type"] = "explicit", }, - [2087] = { + [2089] = { ["id"] = "explicit.stat_990363519", ["text"] = "Enemies in your Presence have #% to Fire Resistance", ["type"] = "explicit", }, - [2088] = { + [2090] = { ["id"] = "explicit.stat_724806967", ["text"] = "Enemies in your Presence have Exposure", ["type"] = "explicit", }, - [2089] = { + [2091] = { ["id"] = "explicit.stat_1546580830", ["text"] = "Enemies in your Presence have Lightning Resistance equal to yours", ["type"] = "explicit", }, - [2090] = { + [2092] = { ["id"] = "explicit.stat_1827379101", ["text"] = "Enemies in your Presence have additional Power equal to their Gruelling Madness", ["type"] = "explicit", }, - [2091] = { + [2093] = { ["id"] = "explicit.stat_1953536251", ["text"] = "Enemies in your Presence have at least #% of Life Reserved", ["type"] = "explicit", }, - [2092] = { + [2094] = { ["id"] = "explicit.stat_83011992", ["text"] = "Enemies in your Presence have no Elemental Resistances", ["type"] = "explicit", }, - [2093] = { + [2095] = { ["id"] = "explicit.stat_1576794517", ["text"] = "Enemies in your Presence killed by anyone count as being killed by you instead", ["type"] = "explicit", }, - [2094] = { + [2096] = { ["id"] = "explicit.stat_1509533589", ["text"] = "Enemies take #% increased Damage for each Elemental Ailment type amongyour Ailments on them", ["type"] = "explicit", }, - [2095] = { + [2097] = { ["id"] = "explicit.stat_1772929282", ["text"] = "Enemies you Curse have #% to Chaos Resistance", ["type"] = "explicit", }, - [2096] = { + [2098] = { ["id"] = "explicit.stat_2083058281", ["text"] = "Enemies you Mark take #% increased Damage", ["type"] = "explicit", }, - [2097] = { + [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", }, - [2098] = { + [2100] = { ["id"] = "explicit.stat_793801176", ["text"] = "Energy Generation is doubled", ["type"] = "explicit", }, - [2099] = { + [2101] = { ["id"] = "explicit.stat_1419390131", ["text"] = "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", ["type"] = "explicit", }, - [2100] = { + [2102] = { ["id"] = "explicit.stat_1056492907", ["text"] = "Energy Shield Recharge starts on use", ["type"] = "explicit", }, - [2101] = { + [2103] = { ["id"] = "explicit.stat_2402413437", ["text"] = "Energy Shield Recharge starts when you use a Mana Flask", ["type"] = "explicit", }, - [2102] = { + [2104] = { ["id"] = "explicit.stat_2147773348", ["text"] = "Energy Shield is increased by Uncapped Cold Resistance", ["type"] = "explicit", }, - [2103] = { + [2105] = { ["id"] = "explicit.stat_752930724", ["text"] = "Equipment and Skill Gems have #% increased Attribute Requirements", ["type"] = "explicit", }, - [2104] = { + [2106] = { ["id"] = "explicit.stat_2480151124", ["text"] = "Equipment has no Attribute Requirements", ["type"] = "explicit", }, - [2105] = { + [2107] = { ["id"] = "explicit.stat_3831171903|15", ["text"] = "Eternal Youth", ["type"] = "explicit", }, - [2106] = { + [2108] = { ["id"] = "explicit.stat_1272938854", ["text"] = "Evasion Rating is doubled if you have not been Hit Recently", ["type"] = "explicit", }, - [2107] = { + [2109] = { ["id"] = "explicit.stat_419098854", ["text"] = "Evasion Rating is increased by Uncapped Lightning Resistance", ["type"] = "explicit", }, - [2108] = { + [2110] = { ["id"] = "explicit.stat_145598447", ["text"] = "Everlasting Sacrifice", ["type"] = "explicit", }, - [2109] = { - ["id"] = "explicit.stat_2625554454", + [2111] = { + ["id"] = "explicit.stat_2879778895", ["text"] = "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", ["type"] = "explicit", }, - [2110] = { - ["id"] = "explicit.stat_2879778895", + [2112] = { + ["id"] = "explicit.stat_2625554454", ["text"] = "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", ["type"] = "explicit", }, - [2111] = { + [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", }, - [2112] = { + [2114] = { ["id"] = "explicit.stat_3764198549", ["text"] = "Every 3 seconds, Consume a nearby Corpse to Recover #% of maximum Life", ["type"] = "explicit", }, - [2113] = { + [2115] = { ["id"] = "explicit.stat_1457411584", ["text"] = "Every 4 seconds, Recover 1 Life for every # Life Recovery per second from Regeneration", ["type"] = "explicit", }, - [2114] = { + [2116] = { ["id"] = "explicit.stat_1895552497", ["text"] = "Every 5 Rage also grants #% of Damage taken Recouped as Life", ["type"] = "explicit", }, - [2115] = { + [2117] = { ["id"] = "explicit.stat_2995914769", ["text"] = "Every Rage also grants #% increased Armour", ["type"] = "explicit", }, - [2116] = { + [2118] = { ["id"] = "explicit.stat_352044736", ["text"] = "Every Rage also grants #% increased Stun Threshold", ["type"] = "explicit", }, - [2117] = { + [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", }, - [2118] = { + [2120] = { ["id"] = "explicit.stat_1052498387", ["text"] = "Every second, inflicts Critical Weakness on enemies in your Presence for # second", ["type"] = "explicit", }, - [2119] = { + [2121] = { ["id"] = "explicit.stat_636464211", ["text"] = "Excess Life Recovery added as Guard for # seconds", ["type"] = "explicit", }, - [2120] = { + [2122] = { ["id"] = "explicit.stat_999436592", ["text"] = "Excess Life Recovery from Leech is applied to Energy Shield", ["type"] = "explicit", }, - [2121] = { + [2123] = { ["id"] = "explicit.stat_144770454", ["text"] = "Expedition Monsters in your Maps spawn with half of their Life missing", ["type"] = "explicit", }, - [2122] = { + [2124] = { ["id"] = "explicit.stat_3753446846", ["text"] = "Expeditions in Area have # Remnants", ["type"] = "explicit", }, - [2123] = { + [2125] = { ["id"] = "explicit.stat_3753446846", ["text"] = "Expeditions in your Maps have # Remnant", ["type"] = "explicit", }, - [2124] = { + [2126] = { ["id"] = "explicit.stat_28208665", ["text"] = "Favours Deferred at Ritual Altars in Area reappear #% sooner", ["type"] = "explicit", }, - [2125] = { + [2127] = { ["id"] = "explicit.stat_28208665", ["text"] = "Favours Deferred at Ritual Altars in your Maps reappear #% sooner", ["type"] = "explicit", }, - [2126] = { + [2128] = { ["id"] = "explicit.stat_937291386", ["text"] = "Favours Rerolled at Ritual Altars in Area have #% chance to cost no Tribute", ["type"] = "explicit", }, - [2127] = { + [2129] = { ["id"] = "explicit.stat_937291386", ["text"] = "Favours Rerolled at Ritual Altars in your Maps have #% chance to cost no Tribute", ["type"] = "explicit", }, - [2128] = { + [2130] = { ["id"] = "explicit.stat_1228222525", ["text"] = "Favours at Ritual Altars in Area costs #% increased Tribute", ["type"] = "explicit", }, - [2129] = { + [2131] = { ["id"] = "explicit.stat_1221641885", ["text"] = "Fire Damage also Contributes to Bleeding Magnitude", ["type"] = "explicit", }, - [2130] = { + [2132] = { ["id"] = "explicit.stat_2949096603", ["text"] = "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", ["type"] = "explicit", }, - [2131] = { + [2133] = { ["id"] = "explicit.stat_3247805335", ["text"] = "Fire Resistance is unaffected by Area Penalties", ["type"] = "explicit", }, - [2132] = { + [2134] = { ["id"] = "explicit.stat_1540254896", ["text"] = "Flammability Magnitude is doubled", ["type"] = "explicit", }, - [2133] = { + [2135] = { ["id"] = "explicit.stat_265717301", ["text"] = "Flasks do not recover Life", ["type"] = "explicit", }, - [2134] = { + [2136] = { ["id"] = "explicit.stat_2260055669", ["text"] = "Freezes Enemies that are on Full Life", ["type"] = "explicit", }, - [2135] = { + [2137] = { ["id"] = "explicit.stat_3278008231", ["text"] = "Fully Armour Broken enemies you kill with Hits Shatter", ["type"] = "explicit", }, - [2136] = { + [2138] = { ["id"] = "explicit.stat_3841984913", ["text"] = "Gain # Fragile Regrowth each second", ["type"] = "explicit", }, - [2137] = { + [2139] = { ["id"] = "explicit.stat_2443032293", ["text"] = "Gain # Guard for 0.5 seconds per Combo expended when using Skills", ["type"] = "explicit", }, - [2138] = { + [2140] = { ["id"] = "explicit.stat_2797971005", ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "explicit", }, - [2139] = { + [2141] = { ["id"] = "explicit.stat_3695891184", ["text"] = "Gain # Life per enemy killed", ["type"] = "explicit", }, - [2140] = { + [2142] = { ["id"] = "explicit.stat_820939409", ["text"] = "Gain # Mana per Enemy Hit with Attacks", ["type"] = "explicit", }, - [2141] = { + [2143] = { ["id"] = "explicit.stat_1368271171", ["text"] = "Gain # Mana per enemy killed", ["type"] = "explicit", }, - [2142] = { + [2144] = { ["id"] = "explicit.stat_2258007247", ["text"] = "Gain # Rage on Hit", ["type"] = "explicit", }, - [2143] = { + [2145] = { ["id"] = "explicit.stat_2709367754", ["text"] = "Gain # Rage on Melee Hit", ["type"] = "explicit", }, - [2144] = { + [2146] = { ["id"] = "explicit.stat_1466716929", ["text"] = "Gain # Rage when Critically Hit by an Enemy", ["type"] = "explicit", }, - [2145] = { + [2147] = { ["id"] = "explicit.stat_3292710273", ["text"] = "Gain # Rage when Hit by an Enemy", ["type"] = "explicit", }, - [2146] = { + [2148] = { ["id"] = "explicit.stat_555311715", ["text"] = "Gain # Rage when Hit by an Enemy during effect", ["type"] = "explicit", }, - [2147] = { + [2149] = { ["id"] = "explicit.stat_2469544361", ["text"] = "Gain #% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", ["type"] = "explicit", }, - [2148] = { + [2150] = { ["id"] = "explicit.stat_997343726", ["text"] = "Gain #% of Damage as Chaos Damage per Undead Minion", ["type"] = "explicit", }, - [2149] = { + [2151] = { ["id"] = "explicit.stat_3398787959", ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, - [2150] = { + [2152] = { ["id"] = "explicit.stat_2505884597", ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "explicit", }, - [2151] = { + [2153] = { ["id"] = "explicit.stat_825116955", ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", ["type"] = "explicit", }, - [2152] = { + [2154] = { ["id"] = "explicit.stat_3015669065", ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, - [2153] = { + [2155] = { ["id"] = "explicit.stat_589361270", ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", ["type"] = "explicit", }, - [2154] = { + [2156] = { ["id"] = "explicit.stat_1321054058", ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", ["type"] = "explicit", }, - [2155] = { + [2157] = { ["id"] = "explicit.stat_3278136794", ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "explicit", }, - [2156] = { + [2158] = { ["id"] = "explicit.stat_323800555", ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", ["type"] = "explicit", }, - [2157] = { + [2159] = { ["id"] = "explicit.stat_4019237939", ["text"] = "Gain #% of Damage as Extra Physical Damage", ["type"] = "explicit", }, - [2158] = { + [2160] = { ["id"] = "explicit.stat_1158842087", ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", ["type"] = "explicit", }, - [2159] = { + [2161] = { ["id"] = "explicit.stat_701564564", ["text"] = "Gain #% of Elemental Damage as Extra Fire Damage", ["type"] = "explicit", }, - [2160] = { + [2162] = { ["id"] = "explicit.stat_3550887155", ["text"] = "Gain #% of Elemental Damage as Extra Lightning Damage", ["type"] = "explicit", }, - [2161] = { + [2163] = { ["id"] = "explicit.stat_1546604934", ["text"] = "Gain #% of Evasion Rating as extra Armour", ["type"] = "explicit", }, - [2162] = { + [2164] = { ["id"] = "explicit.stat_514290151", ["text"] = "Gain #% of Maximum Mana as Armour", ["type"] = "explicit", }, - [2163] = { + [2165] = { ["id"] = "explicit.stat_758893621", ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", ["type"] = "explicit", }, - [2164] = { + [2166] = { ["id"] = "explicit.stat_915546383", ["text"] = "Gain #% of Physical Damage as Extra Damage of a random Element", ["type"] = "explicit", }, - [2165] = { + [2167] = { ["id"] = "explicit.stat_1228337241", ["text"] = "Gain #% of maximum Life as Extra maximum Energy Shield", ["type"] = "explicit", }, - [2166] = { + [2168] = { ["id"] = "explicit.stat_3027830452", ["text"] = "Gain #% of maximum Mana as Extra maximum Energy Shield", ["type"] = "explicit", }, - [2167] = { + [2169] = { ["id"] = "explicit.stat_796381300", ["text"] = "Gain 0% to #% increased Movement Speed at random when Hit, until Hit again", ["type"] = "explicit", }, - [2168] = { + [2170] = { ["id"] = "explicit.stat_2482970488", ["text"] = "Gain 1 Dark Whisper every second there is a Cursed Enemy in your Presence", ["type"] = "explicit", }, - [2169] = { + [2171] = { ["id"] = "explicit.stat_1273508088", ["text"] = "Gain 1 Druidic Prowess for every 20 total Rage spent", ["type"] = "explicit", }, - [2170] = { + [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", }, - [2171] = { + [2173] = { ["id"] = "explicit.stat_3775736880", ["text"] = "Gain 1 Fear Incarnate when you Cull a target", ["type"] = "explicit", }, - [2172] = { + [2174] = { ["id"] = "explicit.stat_343703314", ["text"] = "Gain 1 Runefather's Boast per Power of targets affected by Runefather's Challenge you kill", ["type"] = "explicit", }, - [2173] = { + [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", }, - [2174] = { + [2176] = { ["id"] = "explicit.stat_3170380905", ["text"] = "Gain 1% of damage as Fire damage per #% Chance to Block", ["type"] = "explicit", }, - [2175] = { + [2177] = { ["id"] = "explicit.stat_3625518318", ["text"] = "Gain Arcane Surge when a Minion Dies", ["type"] = "explicit", }, - [2176] = { + [2178] = { ["id"] = "explicit.stat_1435496528", ["text"] = "Gain Cold Thorns Damage equal to #% of your maximum Mana", ["type"] = "explicit", }, - [2177] = { + [2179] = { ["id"] = "explicit.stat_1752419596", ["text"] = "Gain Deflection Rating equal to #% of Armour", ["type"] = "explicit", }, - [2178] = { + [2180] = { ["id"] = "explicit.stat_3033371881", ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", ["type"] = "explicit", }, - [2179] = { + [2181] = { ["id"] = "explicit.stat_4010198893", ["text"] = "Gain Finality for # seconds per Combo expended when using Skills", ["type"] = "explicit", }, - [2180] = { + [2182] = { ["id"] = "explicit.stat_469006068", ["text"] = "Gain Guard equal to #% of missing Energy Shield for 4 seconds when you Dodge Roll", ["type"] = "explicit", }, - [2181] = { + [2183] = { ["id"] = "explicit.stat_3605616594", ["text"] = "Gain Onslaught for 4 seconds when a Minion Dies", ["type"] = "explicit", }, - [2182] = { + [2184] = { ["id"] = "explicit.stat_2148576938", ["text"] = "Gain Overencumbrance for 4 seconds when you Dodge Roll", ["type"] = "explicit", }, - [2183] = { + [2185] = { ["id"] = "explicit.stat_2163764037", ["text"] = "Gain Physical Thorns damage equal to #% - #% of maximum Life", ["type"] = "explicit", }, - [2184] = { + [2186] = { ["id"] = "explicit.stat_1793740180", ["text"] = "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", ["type"] = "explicit", }, - [2185] = { + [2187] = { ["id"] = "explicit.stat_2459662130", ["text"] = "Gain Tailwind on Critical Hit, no more than once per second", ["type"] = "explicit", }, - [2186] = { + [2188] = { ["id"] = "explicit.stat_2931872063", ["text"] = "Gain Volatility on Critical Hit", ["type"] = "explicit", }, - [2187] = { + [2189] = { ["id"] = "explicit.stat_1099200124", ["text"] = "Gain a Power Charge every Second if you haven't lost Power Charges Recently", ["type"] = "explicit", }, - [2188] = { + [2190] = { ["id"] = "explicit.stat_2284588585", ["text"] = "Gain a random Charge on reaching Maximum Rage, no more than once every # seconds", ["type"] = "explicit", }, - [2189] = { + [2191] = { ["id"] = "explicit.stat_3398301358", ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, - [2190] = { + [2192] = { ["id"] = "explicit.stat_416040624", ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, - [2191] = { + [2193] = { ["id"] = "explicit.stat_4187571952", ["text"] = "Gain no inherent bonus from Intelligence", ["type"] = "explicit", }, - [2192] = { + [2194] = { ["id"] = "explicit.stat_1873752457", ["text"] = "Gains # Charges per Second", ["type"] = "explicit", }, - [2193] = { + [2195] = { ["id"] = "explicit.stat_1875158664", ["text"] = "Giant's Blood", ["type"] = "explicit", }, - [2194] = { + [2196] = { ["id"] = "explicit.stat_3831171903|2", ["text"] = "Giant's Blood", ["type"] = "explicit", }, - [2195] = { - ["id"] = "explicit.stat_3831171903|22", + [2197] = { + ["id"] = "explicit.stat_4266776872", ["text"] = "Glancing Blows", ["type"] = "explicit", }, - [2196] = { - ["id"] = "explicit.stat_4266776872", + [2198] = { + ["id"] = "explicit.stat_3831171903|22", ["text"] = "Glancing Blows", ["type"] = "explicit", }, - [2197] = { + [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", }, - [2198] = { + [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", }, - [2199] = { + [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", }, - [2200] = { + [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", }, - [2201] = { + [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", }, - [2202] = { + [2204] = { ["id"] = "explicit.stat_821021828", ["text"] = "Grants # Life per Enemy Hit", ["type"] = "explicit", }, - [2203] = { + [2205] = { ["id"] = "explicit.stat_2416869319", ["text"] = "Grants #% of Life Recovery to Minions", ["type"] = "explicit", }, - [2204] = { + [2206] = { ["id"] = "explicit.stat_618665892", ["text"] = "Grants Onslaught during effect", ["type"] = "explicit", }, - [2205] = { + [2207] = { ["id"] = "explicit.stat_280890192", ["text"] = "Grants a Frenzy Charge on use", ["type"] = "explicit", }, - [2206] = { + [2208] = { ["id"] = "explicit.stat_2566921799", ["text"] = "Grants a Power Charge on use", ["type"] = "explicit", }, - [2207] = { + [2209] = { ["id"] = "explicit.stat_3742268652", ["text"] = "Grants effect of Dreaming Gloom Shrine", ["type"] = "explicit", }, - [2208] = { + [2210] = { ["id"] = "explicit.stat_234657505", ["text"] = "Grants effect of Guided Freezing Shrine", ["type"] = "explicit", }, - [2209] = { + [2211] = { ["id"] = "explicit.stat_3917429943", ["text"] = "Grants effect of Guided Meteoric Shrine", ["type"] = "explicit", }, - [2210] = { + [2212] = { ["id"] = "explicit.stat_2800412928", ["text"] = "Grants effect of Guided Tempest Shrine", ["type"] = "explicit", }, - [2211] = { + [2213] = { ["id"] = "explicit.stat_1509210032", ["text"] = "Grants up to your maximum Rage on use", ["type"] = "explicit", }, - [2212] = { + [2214] = { ["id"] = "explicit.stat_1980802737", ["text"] = "Grenade Skills Fire an additional Projectile", ["type"] = "explicit", }, - [2213] = { + [2215] = { ["id"] = "explicit.stat_2250681686", ["text"] = "Grenade Skills have +# Cooldown Use", ["type"] = "explicit", }, - [2214] = { + [2216] = { ["id"] = "explicit.stat_538981065", ["text"] = "Grenades have #% chance to activate a second time", ["type"] = "explicit", }, - [2215] = { + [2217] = { ["id"] = "explicit.stat_1416292992", ["text"] = "Has # Charm Slot", ["type"] = "explicit", }, - [2216] = { + [2218] = { ["id"] = "explicit.stat_1955786041", ["text"] = "Has # to # Physical damage, # to # per Boss's Face Broken", ["type"] = "explicit", }, - [2217] = { + [2219] = { ["id"] = "explicit.stat_2739148464", ["text"] = "Has no Attribute Requirements", ["type"] = "explicit", }, - [2218] = { + [2220] = { ["id"] = "explicit.stat_3831171903|18", ["text"] = "Heartstopper", ["type"] = "explicit", }, - [2219] = { + [2221] = { ["id"] = "explicit.stat_668076381", ["text"] = "Heavy Stuns Enemies that are on Full Life", ["type"] = "explicit", }, - [2220] = { + [2222] = { ["id"] = "explicit.stat_21071013", ["text"] = "Herald Skills deal #% increased Damage", ["type"] = "explicit", }, - [2221] = { + [2223] = { ["id"] = "explicit.stat_3787436548", ["text"] = "Historic", ["type"] = "explicit", }, - [2222] = { + [2224] = { ["id"] = "explicit.stat_289086688", ["text"] = "Hits Break # Armour", ["type"] = "explicit", }, - [2223] = { + [2225] = { ["id"] = "explicit.stat_3923947492", ["text"] = "Hits against you have #% increased Critical Hit Chance while you are Chilled", ["type"] = "explicit", }, - [2224] = { + [2226] = { ["id"] = "explicit.stat_3855016469", ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "explicit", }, - [2225] = { + [2227] = { ["id"] = "explicit.stat_701923421", ["text"] = "Hits against you have #% reduced Critical Damage Bonus per Socket filled", ["type"] = "explicit", }, - [2226] = { + [2228] = { ["id"] = "explicit.stat_3593401321", ["text"] = "Hits have #% chance to treat Enemy Monster Elemental Resistance values as inverted", ["type"] = "explicit", }, - [2227] = { + [2229] = { ["id"] = "explicit.stat_4270096386", ["text"] = "Hits have #% increased Critical Hit Chance against you", ["type"] = "explicit", }, - [2228] = { + [2230] = { ["id"] = "explicit.stat_1689748350", ["text"] = "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", ["type"] = "explicit", }, - [2229] = { + [2231] = { ["id"] = "explicit.stat_1867725690", ["text"] = "Hits with this Weapon have #% chance to Trigger Molten Shower per 25 Strength", ["type"] = "explicit", }, - [2230] = { + [2232] = { ["id"] = "explicit.stat_2558253923", ["text"] = "Hits with this Weapon have Culling Strike against Bleeding Enemies", ["type"] = "explicit", }, - [2231] = { + [2233] = { ["id"] = "explicit.stat_1508661598", ["text"] = "Hits with this Weapon have no Critical Damage Bonus", ["type"] = "explicit", }, - [2232] = { + [2234] = { ["id"] = "explicit.stat_2526112819", ["text"] = "Hits with this Weapon inflict # Gruelling Madness", ["type"] = "explicit", }, - [2233] = { + [2235] = { ["id"] = "explicit.stat_2036307261", ["text"] = "Hits with this weapon have # to # Added Physical Damage per 1% Block Chance", ["type"] = "explicit", }, - [2234] = { + [2236] = { ["id"] = "explicit.stat_3831171903|27", ["text"] = "Hollow Palm Technique", ["type"] = "explicit", }, - [2235] = { + [2237] = { ["id"] = "explicit.stat_740421489", ["text"] = "Ice Crystals have #% increased maximum Life per 5% Cold Resistance you have", ["type"] = "explicit", }, - [2236] = { + [2238] = { ["id"] = "explicit.stat_2371108370", ["text"] = "If Map was not previously Irradiated, completing Map adds Irradiation instead", ["type"] = "explicit", }, - [2237] = { + [2239] = { ["id"] = "explicit.stat_983582600", ["text"] = "Ignite you inflict deals Chaos Damage instead of Fire Damage", ["type"] = "explicit", }, - [2238] = { + [2240] = { ["id"] = "explicit.stat_3314057862", ["text"] = "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", ["type"] = "explicit", }, - [2239] = { + [2241] = { ["id"] = "explicit.stat_4238331303", ["text"] = "Immobilise enemies at #% buildup instead of 100%", ["type"] = "explicit", }, - [2240] = { + [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", }, - [2241] = { + [2243] = { ["id"] = "explicit.stat_1138742368", ["text"] = "Increases and Reductions to Light Radius also apply to Area of Effect at #% of their value", ["type"] = "explicit", }, - [2242] = { + [2244] = { ["id"] = "explicit.stat_3407300125", ["text"] = "Increases and Reductions to Mana Regeneration Rate alsoapply to Energy Shield Recharge Rate", ["type"] = "explicit", }, - [2243] = { + [2245] = { ["id"] = "explicit.stat_2293111154", ["text"] = "Increases and Reductions to Minion Attack Speed also affect you", ["type"] = "explicit", }, - [2244] = { + [2246] = { ["id"] = "explicit.stat_1631928082", ["text"] = "Increases and Reductions to Minion Damage also affect you", ["type"] = "explicit", }, - [2245] = { + [2247] = { ["id"] = "explicit.stat_414821772", ["text"] = "Increases and Reductions to Projectile Speed also apply to Damage with Bows", ["type"] = "explicit", }, - [2246] = { + [2248] = { ["id"] = "explicit.stat_3811649872", ["text"] = "Increases and Reductions to Spell damage also apply to Attacks", ["type"] = "explicit", }, - [2247] = { + [2249] = { ["id"] = "explicit.stat_1076031760", ["text"] = "Infinite Parry Range", ["type"] = "explicit", }, - [2248] = { + [2250] = { ["id"] = "explicit.stat_971590056", ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", ["type"] = "explicit", }, - [2249] = { + [2251] = { ["id"] = "explicit.stat_3005701891", ["text"] = "Inflict Cold Exposure on Hit", ["type"] = "explicit", }, - [2250] = { + [2252] = { ["id"] = "explicit.stat_3314536008", ["text"] = "Inflict Cold Exposure on Igniting an Enemy", ["type"] = "explicit", }, - [2251] = { + [2253] = { ["id"] = "explicit.stat_1695767482", ["text"] = "Inflict Corrupted Blood for # second on Block, dealing #% ofyour maximum Life as Physical damage per second", ["type"] = "explicit", }, - [2252] = { + [2254] = { ["id"] = "explicit.stat_533542952", ["text"] = "Inflict Elemental Exposure on Hit", ["type"] = "explicit", }, - [2253] = { + [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", }, - [2254] = { + [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", }, - [2255] = { + [2257] = { ["id"] = "explicit.stat_1538879632", ["text"] = "Inflict Fire Exposure on Shocking an Enemy", ["type"] = "explicit", }, - [2256] = { + [2258] = { ["id"] = "explicit.stat_2665488635", ["text"] = "Inflict Lightning Exposure on Critical Hit", ["type"] = "explicit", }, - [2257] = { + [2259] = { ["id"] = "explicit.stat_359380213", ["text"] = "Inflicts Elemental Exposure when this Weapon Fully Breaks Armour", ["type"] = "explicit", }, - [2258] = { + [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", }, - [2259] = { + [2261] = { ["id"] = "explicit.stat_2918129907", ["text"] = "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", ["type"] = "explicit", }, - [2260] = { + [2262] = { ["id"] = "explicit.stat_1526933524", ["text"] = "Instant Recovery", ["type"] = "explicit", }, - [2261] = { + [2263] = { ["id"] = "explicit.stat_3703496511", ["text"] = "Intimidate Enemies on Block for # second", ["type"] = "explicit", }, - [2262] = { + [2264] = { ["id"] = "explicit.stat_1078309513", ["text"] = "Invocated Spells deal #% increased Damage", ["type"] = "explicit", }, - [2263] = { + [2265] = { ["id"] = "explicit.stat_3711973554", ["text"] = "Invocated Spells have #% chance to consume half as much Energy", ["type"] = "explicit", }, - [2264] = { + [2266] = { ["id"] = "explicit.stat_1615901249", ["text"] = "Invocated skills have #% increased Maximum Energy", ["type"] = "explicit", }, - [2265] = { + [2267] = { ["id"] = "explicit.stat_3528245713", ["text"] = "Iron Grip", ["type"] = "explicit", }, - [2266] = { - ["id"] = "explicit.stat_3831171903|21", + [2268] = { + ["id"] = "explicit.stat_326965591", ["text"] = "Iron Reflexes", ["type"] = "explicit", }, - [2267] = { - ["id"] = "explicit.stat_326965591", + [2269] = { + ["id"] = "explicit.stat_3831171903|21", ["text"] = "Iron Reflexes", ["type"] = "explicit", }, - [2268] = { + [2270] = { ["id"] = "explicit.stat_281311123", ["text"] = "Iron Will", ["type"] = "explicit", }, - [2269] = { + [2271] = { ["id"] = "explicit.stat_281201999", ["text"] = "Knockback direction is reversed", ["type"] = "explicit", }, - [2270] = { + [2272] = { ["id"] = "explicit.stat_3739186583", ["text"] = "Knocks Back Enemies on Hit", ["type"] = "explicit", }, - [2271] = { + [2273] = { ["id"] = "explicit.stat_2557965901", ["text"] = "Leech #% of Physical Attack Damage as Life", ["type"] = "explicit", }, - [2272] = { + [2274] = { ["id"] = "explicit.stat_707457662", ["text"] = "Leech #% of Physical Attack Damage as Mana", ["type"] = "explicit", }, - [2273] = { + [2275] = { ["id"] = "explicit.stat_1570501432", ["text"] = "Leech Life #% faster", ["type"] = "explicit", }, - [2274] = { + [2276] = { ["id"] = "explicit.stat_3389184522", ["text"] = "Leech from Critical Hits is instant", ["type"] = "explicit", }, - [2275] = { + [2277] = { ["id"] = "explicit.stat_55876295", ["text"] = "Leeches #% of Physical Damage as Life", ["type"] = "explicit", }, - [2276] = { + [2278] = { ["id"] = "explicit.stat_669069897", ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "explicit", }, - [2277] = { + [2279] = { ["id"] = "explicit.stat_335699483", ["text"] = "Leeches #% of maximum Life when you Cast a Spell", ["type"] = "explicit", }, - [2278] = { + [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", }, - [2279] = { + [2281] = { ["id"] = "explicit.stat_2437476305", ["text"] = "Left ring slot: Projectiles from Spells Fork", ["type"] = "explicit", }, - [2280] = { + [2282] = { ["id"] = "explicit.stat_3647242059", ["text"] = "Left ring slot: Projectiles from Spells cannot Chain", ["type"] = "explicit", }, - [2281] = { + [2283] = { ["id"] = "explicit.stat_264262054|1", ["text"] = "Legacy of Amethyst", ["type"] = "explicit", }, - [2282] = { + [2284] = { ["id"] = "explicit.stat_264262054|2", ["text"] = "Legacy of Basalt", ["type"] = "explicit", }, - [2283] = { + [2285] = { ["id"] = "explicit.stat_264262054|3", ["text"] = "Legacy of Bismuth", ["type"] = "explicit", }, - [2284] = { + [2286] = { ["id"] = "explicit.stat_264262054|4", ["text"] = "Legacy of Diamond", ["type"] = "explicit", }, - [2285] = { + [2287] = { ["id"] = "explicit.stat_264262054|5", ["text"] = "Legacy of Gold", ["type"] = "explicit", }, - [2286] = { + [2288] = { ["id"] = "explicit.stat_264262054|6", ["text"] = "Legacy of Granite", ["type"] = "explicit", }, - [2287] = { + [2289] = { ["id"] = "explicit.stat_264262054|7", ["text"] = "Legacy of Jade", ["type"] = "explicit", }, - [2288] = { + [2290] = { ["id"] = "explicit.stat_264262054|8", ["text"] = "Legacy of Quicksilver", ["type"] = "explicit", }, - [2289] = { + [2291] = { ["id"] = "explicit.stat_264262054|9", ["text"] = "Legacy of Ruby", ["type"] = "explicit", }, - [2290] = { + [2292] = { ["id"] = "explicit.stat_264262054|10", ["text"] = "Legacy of Sapphire", ["type"] = "explicit", }, - [2291] = { + [2293] = { ["id"] = "explicit.stat_264262054|11", ["text"] = "Legacy of Silver", ["type"] = "explicit", }, - [2292] = { + [2294] = { ["id"] = "explicit.stat_264262054|12", ["text"] = "Legacy of Stibnite", ["type"] = "explicit", }, - [2293] = { + [2295] = { ["id"] = "explicit.stat_264262054|13", ["text"] = "Legacy of Sulphur", ["type"] = "explicit", }, - [2294] = { + [2296] = { ["id"] = "explicit.stat_264262054|14", ["text"] = "Legacy of Topaz", ["type"] = "explicit", }, - [2295] = { + [2297] = { ["id"] = "explicit.stat_1102738251", ["text"] = "Life Flasks gain # charges per Second", ["type"] = "explicit", }, - [2296] = { + [2298] = { ["id"] = "explicit.stat_1200347828", ["text"] = "Life Flasks used while on Low Life apply Recovery Instantly", ["type"] = "explicit", }, - [2297] = { + [2299] = { ["id"] = "explicit.stat_2714890129", ["text"] = "Life Leech can Overflow Maximum Life", ["type"] = "explicit", }, - [2298] = { + [2300] = { ["id"] = "explicit.stat_3314050176", ["text"] = "Life Leech is Converted to Energy Shield Leech", ["type"] = "explicit", }, - [2299] = { + [2301] = { ["id"] = "explicit.stat_825825364", ["text"] = "Life Leech recovers based on your Chaos damage instead of Physical damage", ["type"] = "explicit", }, - [2300] = { + [2302] = { ["id"] = "explicit.stat_1092555766", ["text"] = "Life Leech recovers based on your Lightning damage as well as Physical damage", ["type"] = "explicit", }, - [2301] = { + [2303] = { ["id"] = "explicit.stat_3971919056", ["text"] = "Life Recharges", ["type"] = "explicit", }, - [2302] = { + [2304] = { ["id"] = "explicit.stat_2812872407", ["text"] = "Life Recovery from Flasks also applies to Energy Shield", ["type"] = "explicit", }, - [2303] = { + [2305] = { ["id"] = "explicit.stat_1245896889", ["text"] = "Life Recovery from Flasks can Overflow Maximum Life", ["type"] = "explicit", }, - [2304] = { + [2306] = { ["id"] = "explicit.stat_720388959", ["text"] = "Life Recovery from Flasks is instant", ["type"] = "explicit", }, - [2305] = { + [2307] = { ["id"] = "explicit.stat_3947672598", ["text"] = "Life Recovery from Regeneration is not applied", ["type"] = "explicit", }, - [2306] = { + [2308] = { ["id"] = "explicit.stat_451403019", ["text"] = "Life Recovery other than Flasks cannot Recover Life to above Low Life", ["type"] = "explicit", }, - [2307] = { + [2309] = { ["id"] = "explicit.stat_632761194", ["text"] = "Life Regeneration is applied to Energy Shield instead", ["type"] = "explicit", }, - [2308] = { + [2310] = { ["id"] = "explicit.stat_932866937", ["text"] = "Life and Mana Flasks can be equipped in either slot", ["type"] = "explicit", }, - [2309] = { + [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", }, - [2310] = { + [2312] = { ["id"] = "explicit.stat_1011772129", ["text"] = "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", ["type"] = "explicit", }, - [2311] = { + [2313] = { ["id"] = "explicit.stat_3121133045", ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", ["type"] = "explicit", }, - [2312] = { + [2314] = { ["id"] = "explicit.stat_4224965099", ["text"] = "Lightning Damage of Enemies Hitting you is Lucky", ["type"] = "explicit", }, - [2313] = { + [2315] = { ["id"] = "explicit.stat_3246948616", ["text"] = "Lightning Damage of Enemies Hitting you is Lucky during effect", ["type"] = "explicit", }, - [2314] = { + [2316] = { ["id"] = "explicit.stat_3999959974", ["text"] = "Lightning Resistance does not affect Lightning damage taken", ["type"] = "explicit", }, - [2315] = { + [2317] = { ["id"] = "explicit.stat_3631920880", ["text"] = "Lightning Resistance is unaffected by Area Penalties", ["type"] = "explicit", }, - [2316] = { + [2318] = { ["id"] = "explicit.stat_4123841473", ["text"] = "Lightning Skills Chain # times", ["type"] = "explicit", }, - [2317] = { + [2319] = { ["id"] = "explicit.stat_1017648537", ["text"] = "Lightning damage from Hits Contributes to Electrocution Buildup", ["type"] = "explicit", }, - [2318] = { + [2320] = { ["id"] = "explicit.stat_1967051901", ["text"] = "Loads an additional bolt", ["type"] = "explicit", }, - [2319] = { + [2321] = { ["id"] = "explicit.stat_3831171903|31", ["text"] = "Lord of the Wilds", ["type"] = "explicit", }, - [2320] = { + [2322] = { ["id"] = "explicit.stat_1902409192", ["text"] = "Lose # Life when you use a Skill", ["type"] = "explicit", }, - [2321] = { + [2323] = { ["id"] = "explicit.stat_1147913864", ["text"] = "Lose #% Life per second while you have no Runic Ward during Effect", ["type"] = "explicit", }, - [2322] = { + [2324] = { ["id"] = "explicit.stat_1661347488", ["text"] = "Lose #% of maximum Life per second", ["type"] = "explicit", }, - [2323] = { + [2325] = { ["id"] = "explicit.stat_1306791873", ["text"] = "Lose all Fragile Regrowth when Hit", ["type"] = "explicit", }, - [2324] = { + [2326] = { ["id"] = "explicit.stat_2135899247", ["text"] = "Lose all Power Charges on reaching maximum Power Charges", ["type"] = "explicit", }, - [2325] = { + [2327] = { ["id"] = "explicit.stat_3851480592", ["text"] = "Lose all Rage on reaching Maximum Rage", ["type"] = "explicit", }, - [2326] = { + [2328] = { ["id"] = "explicit.stat_367897259", ["text"] = "Lose all Tailwind when Hit", ["type"] = "explicit", }, - [2327] = { + [2329] = { ["id"] = "explicit.stat_2895144208", ["text"] = "Maim on Critical Hit", ["type"] = "explicit", }, - [2328] = { + [2330] = { ["id"] = "explicit.stat_2200293569", ["text"] = "Mana Flasks gain # charges per Second", ["type"] = "explicit", }, - [2329] = { + [2331] = { ["id"] = "explicit.stat_1839832419", ["text"] = "Mana Flasks used while on Low Mana apply Recovery Instantly", ["type"] = "explicit", }, - [2330] = { + [2332] = { ["id"] = "explicit.stat_4100842845", ["text"] = "Mana Recovery from Flasks can Overflow maximum Mana during Effect", ["type"] = "explicit", }, - [2331] = { + [2333] = { ["id"] = "explicit.stat_3593063598", ["text"] = "Mana Recovery other than Regeneration cannot Recover Mana", ["type"] = "explicit", }, - [2332] = { + [2334] = { ["id"] = "explicit.stat_1414945937", ["text"] = "Manifested Dancing Dervishes die when Rampage ends", ["type"] = "explicit", }, - [2333] = { + [2335] = { ["id"] = "explicit.stat_1314787770", ["text"] = "Map Boss has +#% chance to drop a Waystone of the current tier or higher", ["type"] = "explicit", }, - [2334] = { + [2336] = { ["id"] = "explicit.stat_2588474575", ["text"] = "Map Bosses are Hunted by Azmeri Spirits", ["type"] = "explicit", }, - [2335] = { + [2337] = { ["id"] = "explicit.stat_3860150265", ["text"] = "Map Bosses grant #% increased Experience", ["type"] = "explicit", }, - [2336] = { + [2338] = { ["id"] = "explicit.stat_1458461453", ["text"] = "Map Bosses have # additional Modifier", ["type"] = "explicit", }, - [2337] = { + [2339] = { ["id"] = "explicit.stat_588512487", ["text"] = "Map has # additional random Modifier", ["type"] = "explicit", }, - [2338] = { + [2340] = { ["id"] = "explicit.stat_2594634307", ["text"] = "Mark Skills have #% increased Skill Effect Duration", ["type"] = "explicit", }, - [2339] = { + [2341] = { ["id"] = "explicit.stat_1714971114", ["text"] = "Mark Skills have #% increased Use Speed", ["type"] = "explicit", }, - [2340] = { + [2342] = { ["id"] = "explicit.stat_1173537953", ["text"] = "Maximum # Fragile Regrowth", ["type"] = "explicit", }, - [2341] = { + [2343] = { ["id"] = "explicit.stat_1500744699", ["text"] = "Maximum Chance to Evade is 50%", ["type"] = "explicit", }, - [2342] = { + [2344] = { ["id"] = "explicit.stat_2104359366", ["text"] = "Maximum Energy Shield cannot be Converted", ["type"] = "explicit", }, - [2343] = { + [2345] = { ["id"] = "explicit.stat_3960211755", ["text"] = "Maximum Physical Damage Reduction is 50%", ["type"] = "explicit", }, - [2344] = { + [2346] = { ["id"] = "explicit.stat_275498888", ["text"] = "Maximum Quality is #%", ["type"] = "explicit", }, - [2345] = { + [2347] = { ["id"] = "explicit.stat_1338406168", ["text"] = "Maximum amount of Guard is based on maximum Energy Shield instead", ["type"] = "explicit", }, - [2346] = { + [2348] = { ["id"] = "explicit.stat_2013356568", ["text"] = "Melee Attack Skills have # to maximum number of Summoned Totems", ["type"] = "explicit", }, - [2347] = { + [2349] = { ["id"] = "explicit.stat_2889807051", ["text"] = "Melee Hits count as Rampage KillsRampage", ["type"] = "explicit", }, - [2348] = { + [2350] = { ["id"] = "explicit.stat_4236566306", ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "explicit", }, - [2349] = { + [2351] = { ["id"] = "explicit.stat_173471035", ["text"] = "Meta Skills gain #% increased Energy while on Full Mana", ["type"] = "explicit", }, - [2350] = { + [2352] = { ["id"] = "explicit.stat_3831171903|10", ["text"] = "Mind Over Matter", ["type"] = "explicit", }, - [2351] = { + [2353] = { ["id"] = "explicit.stat_195270549", ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", ["type"] = "explicit", }, - [2352] = { + [2354] = { ["id"] = "explicit.stat_2479683456", ["text"] = "Minions Regenerate #% of maximum Life per second", ["type"] = "explicit", }, - [2353] = { + [2355] = { ["id"] = "explicit.stat_2639966148", ["text"] = "Minions Revive #% faster", ["type"] = "explicit", }, - [2354] = { + [2356] = { ["id"] = "explicit.stat_4046380260", ["text"] = "Minions cannot Die while affected by a Life Flask", ["type"] = "explicit", }, - [2355] = { + [2357] = { ["id"] = "explicit.stat_1589917703", ["text"] = "Minions deal #% increased Damage", ["type"] = "explicit", }, - [2356] = { + [2358] = { ["id"] = "explicit.stat_2337295272", ["text"] = "Minions deal #% increased Damage if you've Hit Recently", ["type"] = "explicit", }, - [2357] = { + [2359] = { ["id"] = "explicit.stat_3742865955", ["text"] = "Minions deal #% increased Damage with Command Skills", ["type"] = "explicit", }, - [2358] = { + [2360] = { ["id"] = "explicit.stat_943702197", ["text"] = "Minions gain #% of their maximum Life as Extra maximum Energy Shield", ["type"] = "explicit", }, - [2359] = { + [2361] = { ["id"] = "explicit.stat_1797815732", ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", ["type"] = "explicit", }, - [2360] = { + [2362] = { ["id"] = "explicit.stat_3119612865", ["text"] = "Minions have #% additional Physical Damage Reduction", ["type"] = "explicit", }, - [2361] = { + [2363] = { ["id"] = "explicit.stat_1486714289", ["text"] = "Minions have #% chance to inflict Gruelling Madness on Hit", ["type"] = "explicit", }, - [2362] = { + [2364] = { ["id"] = "explicit.stat_3811191316", ["text"] = "Minions have #% increased Area of Effect", ["type"] = "explicit", }, - [2363] = { + [2365] = { ["id"] = "explicit.stat_3091578504", ["text"] = "Minions have #% increased Attack and Cast Speed", ["type"] = "explicit", }, - [2364] = { + [2366] = { ["id"] = "explicit.stat_1691403182", ["text"] = "Minions have #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, - [2365] = { + [2367] = { ["id"] = "explicit.stat_1854213750", ["text"] = "Minions have #% increased Critical Damage Bonus", ["type"] = "explicit", }, - [2366] = { + [2368] = { ["id"] = "explicit.stat_491450213", ["text"] = "Minions have #% increased Critical Hit Chance", ["type"] = "explicit", }, - [2367] = { + [2369] = { ["id"] = "explicit.stat_1485480327", ["text"] = "Minions have #% increased Immobilisation buildup", ["type"] = "explicit", }, - [2368] = { + [2370] = { ["id"] = "explicit.stat_953593695", ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", ["type"] = "explicit", }, - [2369] = { + [2371] = { ["id"] = "explicit.stat_174664100", ["text"] = "Minions have #% increased Movement Speed", ["type"] = "explicit", }, - [2370] = { + [2372] = { ["id"] = "explicit.stat_73032170", ["text"] = "Minions have #% increased Skill Speed with Command Skills", ["type"] = "explicit", }, - [2371] = { + [2373] = { ["id"] = "explicit.stat_770672621", ["text"] = "Minions have #% increased maximum Life", ["type"] = "explicit", }, - [2372] = { + [2374] = { ["id"] = "explicit.stat_3837707023", ["text"] = "Minions have #% to Chaos Resistance", ["type"] = "explicit", }, - [2373] = { + [2375] = { ["id"] = "explicit.stat_1423639565", ["text"] = "Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, - [2374] = { + [2376] = { ["id"] = "explicit.stat_3893509584", ["text"] = "Minions have Unholy Might", ["type"] = "explicit", }, - [2375] = { + [2377] = { ["id"] = "explicit.stat_3045072899", ["text"] = "Minions' Resistances are equal to yours", ["type"] = "explicit", }, - [2376] = { + [2378] = { ["id"] = "explicit.stat_3679696791", ["text"] = "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", ["type"] = "explicit", }, - [2377] = { + [2379] = { ["id"] = "explicit.stat_3201111383", ["text"] = "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", ["type"] = "explicit", }, - [2378] = { + [2380] = { ["id"] = "explicit.stat_1898978455", ["text"] = "Monster Damage Penetrates #% Elemental Resistances", ["type"] = "explicit", }, - [2379] = { + [2381] = { ["id"] = "explicit.stat_1138708335", ["text"] = "Monster Damage penetrates #% of Cold Resistance", ["type"] = "explicit", }, - [2380] = { + [2382] = { ["id"] = "explicit.stat_3588388638", ["text"] = "Monster Damage penetrates #% of Fire Resistance", ["type"] = "explicit", }, - [2381] = { + [2383] = { ["id"] = "explicit.stat_3093465148", ["text"] = "Monster Damage penetrates #% of Lightning Resistance", ["type"] = "explicit", }, - [2382] = { + [2384] = { ["id"] = "explicit.stat_3877264671", ["text"] = "Monster have #% increased Elemental Ailment Application", ["type"] = "explicit", }, - [2383] = { + [2385] = { ["id"] = "explicit.stat_1879340377", ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", ["type"] = "explicit", }, - [2384] = { + [2386] = { ["id"] = "explicit.stat_159726667", ["text"] = "Monsters Sacrificed at Ritual Altars grant #% increased Tribute", ["type"] = "explicit", }, - [2385] = { + [2387] = { ["id"] = "explicit.stat_159726667", ["text"] = "Monsters Sacrificed at Ritual Altars in Area grant #% increased Tribute", ["type"] = "explicit", }, - [2386] = { + [2388] = { ["id"] = "explicit.stat_2539290279", ["text"] = "Monsters are Armoured", ["type"] = "explicit", }, - [2387] = { + [2389] = { ["id"] = "explicit.stat_2570249991", ["text"] = "Monsters are Evasive", ["type"] = "explicit", }, - [2388] = { + [2390] = { ["id"] = "explicit.stat_2200661314", ["text"] = "Monsters deal #% of Damage as Extra Chaos", ["type"] = "explicit", }, - [2389] = { + [2391] = { ["id"] = "explicit.stat_211727", ["text"] = "Monsters deal #% of Damage as Extra Cold", ["type"] = "explicit", }, - [2390] = { + [2392] = { ["id"] = "explicit.stat_92381065", ["text"] = "Monsters deal #% of Damage as Extra Fire", ["type"] = "explicit", }, - [2391] = { + [2393] = { ["id"] = "explicit.stat_512071314", ["text"] = "Monsters deal #% of Damage as Extra Lightning", ["type"] = "explicit", }, - [2392] = { + [2394] = { ["id"] = "explicit.stat_1309819744", ["text"] = "Monsters fire # additional Projectiles", ["type"] = "explicit", }, - [2393] = { + [2395] = { ["id"] = "explicit.stat_2887760183", ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", ["type"] = "explicit", }, - [2394] = { + [2396] = { ["id"] = "explicit.stat_57326096", ["text"] = "Monsters have #% Critical Damage Bonus", ["type"] = "explicit", }, - [2395] = { + [2397] = { ["id"] = "explicit.stat_95221307", ["text"] = "Monsters have #% chance to Poison on Hit", ["type"] = "explicit", }, - [2396] = { + [2398] = { ["id"] = "explicit.stat_2506820610", ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, - [2397] = { + [2399] = { ["id"] = "explicit.stat_3222482040", ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", ["type"] = "explicit", }, - [2398] = { + [2400] = { ["id"] = "explicit.stat_1588049749", ["text"] = "Monsters have #% increased Accuracy Rating", ["type"] = "explicit", }, - [2399] = { + [2401] = { ["id"] = "explicit.stat_1994551050", ["text"] = "Monsters have #% increased Ailment Threshold", ["type"] = "explicit", }, - [2400] = { + [2402] = { ["id"] = "explicit.stat_1708461270", ["text"] = "Monsters have #% increased Area of Effect", ["type"] = "explicit", }, - [2401] = { + [2403] = { ["id"] = "explicit.stat_3906866585", ["text"] = "Monsters have #% increased Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [2402] = { + [2404] = { ["id"] = "explicit.stat_3909654181", ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", ["type"] = "explicit", }, - [2403] = { + [2405] = { ["id"] = "explicit.stat_2753083623", ["text"] = "Monsters have #% increased Critical Hit Chance", ["type"] = "explicit", }, - [2404] = { + [2406] = { ["id"] = "explicit.stat_3998863698", ["text"] = "Monsters have #% increased Freeze Buildup", ["type"] = "explicit", }, - [2405] = { + [2407] = { ["id"] = "explicit.stat_1984618452", ["text"] = "Monsters have #% increased Shock Chance", ["type"] = "explicit", }, - [2406] = { + [2408] = { ["id"] = "explicit.stat_115425161", ["text"] = "Monsters have #% increased Stun Buildup", ["type"] = "explicit", }, - [2407] = { + [2409] = { ["id"] = "explicit.stat_4101943684", ["text"] = "Monsters have #% increased Stun Threshold", ["type"] = "explicit", }, - [2408] = { + [2410] = { ["id"] = "explicit.stat_1751584857", ["text"] = "Monsters inflict # Grasping Vine on Hit", ["type"] = "explicit", }, - [2409] = { + [2411] = { ["id"] = "explicit.stat_2508044078", ["text"] = "Monsters inflict #% increased Flammability Magnitude", ["type"] = "explicit", }, - [2410] = { + [2412] = { ["id"] = "explicit.stat_337935900", ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", ["type"] = "explicit", }, - [2411] = { + [2413] = { ["id"] = "explicit.stat_4112450013", ["text"] = "Moving while Bleeding doesn't cause you to take extra damage", ["type"] = "explicit", }, - [2412] = { + [2414] = { ["id"] = "explicit.stat_1266185101", ["text"] = "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", ["type"] = "explicit", }, - [2413] = { + [2415] = { ["id"] = "explicit.stat_1168851547", ["text"] = "Natural Rare Monsters in Area have # extra Abyssal Modifier", ["type"] = "explicit", }, - [2414] = { + [2416] = { ["id"] = "explicit.stat_3831171903|12", ["text"] = "Necromantic Talisman", ["type"] = "explicit", }, - [2415] = { + [2417] = { ["id"] = "explicit.stat_4163076972", ["text"] = "No Inherent loss of Rage", ["type"] = "explicit", }, - [2416] = { + [2418] = { ["id"] = "explicit.stat_3464644319", ["text"] = "No Inherent loss of Rage during effect", ["type"] = "explicit", }, - [2417] = { + [2419] = { ["id"] = "explicit.stat_585231074", ["text"] = "No Movement Speed Penalty while Shield is Raised", ["type"] = "explicit", }, - [2418] = { + [2420] = { ["id"] = "explicit.stat_1920747151", ["text"] = "Non-Channelling Spells cost an additional #% of your maximum Life", ["type"] = "explicit", }, - [2419] = { + [2421] = { ["id"] = "explicit.stat_1027889455", ["text"] = "Non-Channelling Spells deal #% increased Damage per 100 maximum Life", ["type"] = "explicit", }, - [2420] = { + [2422] = { ["id"] = "explicit.stat_3843734793", ["text"] = "Non-Channelling Spells deal #% increased Damage per 100 maximum Mana", ["type"] = "explicit", }, - [2421] = { + [2423] = { ["id"] = "explicit.stat_170426423", ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Life", ["type"] = "explicit", }, - [2422] = { + [2424] = { ["id"] = "explicit.stat_1367999357", ["text"] = "Non-Channelling Spells have #% increased Critical Hit Chance per 100 maximum Mana", ["type"] = "explicit", }, - [2423] = { + [2425] = { ["id"] = "explicit.stat_4245905059", ["text"] = "Non-Channelling Spells have #% increased Magnitude of Ailments per 100 maximum Life", ["type"] = "explicit", }, - [2424] = { + [2426] = { ["id"] = "explicit.stat_1846980580", ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "explicit", }, - [2425] = { + [2427] = { ["id"] = "explicit.stat_3991877392", ["text"] = "Notable Passive Skills in Radius also grant # to Spirit", ["type"] = "explicit", }, - [2426] = { + [2428] = { ["id"] = "explicit.stat_1800303440", ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", ["type"] = "explicit", }, - [2427] = { + [2429] = { ["id"] = "explicit.stat_4225700219", ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", ["type"] = "explicit", }, - [2428] = { + [2430] = { ["id"] = "explicit.stat_3394832998", ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", ["type"] = "explicit", }, - [2429] = { + [2431] = { ["id"] = "explicit.stat_3391917254", ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", ["type"] = "explicit", }, - [2430] = { + [2432] = { ["id"] = "explicit.stat_3859848445", ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", ["type"] = "explicit", }, - [2431] = { + [2433] = { ["id"] = "explicit.stat_504915064", ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", ["type"] = "explicit", }, - [2432] = { + [2434] = { ["id"] = "explicit.stat_3429148113", ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "explicit", }, - [2433] = { + [2435] = { ["id"] = "explicit.stat_2822644689", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", ["type"] = "explicit", }, - [2434] = { + [2436] = { ["id"] = "explicit.stat_3641543553", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", ["type"] = "explicit", }, - [2435] = { + [2437] = { ["id"] = "explicit.stat_715957346", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", ["type"] = "explicit", }, - [2436] = { + [2438] = { ["id"] = "explicit.stat_111835965", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", ["type"] = "explicit", }, - [2437] = { + [2439] = { ["id"] = "explicit.stat_1266413530", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", ["type"] = "explicit", }, - [2438] = { + [2440] = { ["id"] = "explicit.stat_1505023559", ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", ["type"] = "explicit", }, - [2439] = { + [2441] = { ["id"] = "explicit.stat_2912416697", ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", ["type"] = "explicit", }, - [2440] = { + [2442] = { ["id"] = "explicit.stat_3821543413", ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", ["type"] = "explicit", }, - [2441] = { + [2443] = { ["id"] = "explicit.stat_1022759479", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", ["type"] = "explicit", }, - [2442] = { + [2444] = { ["id"] = "explicit.stat_2320654813", ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", ["type"] = "explicit", }, - [2443] = { + [2445] = { ["id"] = "explicit.stat_61644361", ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", ["type"] = "explicit", }, - [2444] = { + [2446] = { ["id"] = "explicit.stat_2149603090", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, - [2445] = { + [2447] = { ["id"] = "explicit.stat_2359002191", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", ["type"] = "explicit", }, - [2446] = { + [2448] = { ["id"] = "explicit.stat_1352561456", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "explicit", }, - [2447] = { + [2449] = { ["id"] = "explicit.stat_138421180", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", ["type"] = "explicit", }, - [2448] = { + [2450] = { ["id"] = "explicit.stat_2077117738", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", ["type"] = "explicit", }, - [2449] = { + [2451] = { ["id"] = "explicit.stat_3865605585", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "explicit", }, - [2450] = { + [2452] = { ["id"] = "explicit.stat_2704905000", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", ["type"] = "explicit", }, - [2451] = { + [2453] = { ["id"] = "explicit.stat_2466785537", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", ["type"] = "explicit", }, - [2452] = { + [2454] = { ["id"] = "explicit.stat_3856744003", ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", ["type"] = "explicit", }, - [2453] = { + [2455] = { ["id"] = "explicit.stat_2770044702", ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", ["type"] = "explicit", }, - [2454] = { + [2456] = { ["id"] = "explicit.stat_2717786748", ["text"] = "Notable Passive Skills in Radius also grant #% increased Dexterity", ["type"] = "explicit", }, - [2455] = { + [2457] = { ["id"] = "explicit.stat_2272980012", ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", ["type"] = "explicit", }, - [2456] = { + [2458] = { ["id"] = "explicit.stat_1323216174", ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "explicit", }, - [2457] = { + [2459] = { ["id"] = "explicit.stat_179541474", ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", ["type"] = "explicit", }, - [2458] = { + [2460] = { ["id"] = "explicit.stat_3419203492", ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", ["type"] = "explicit", }, - [2459] = { + [2461] = { ["id"] = "explicit.stat_2066964205", ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", ["type"] = "explicit", }, - [2460] = { + [2462] = { ["id"] = "explicit.stat_1087531620", ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", ["type"] = "explicit", }, - [2461] = { + [2463] = { ["id"] = "explicit.stat_127081978", ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", ["type"] = "explicit", }, - [2462] = { + [2464] = { ["id"] = "explicit.stat_2783157569", ["text"] = "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [2463] = { + [2465] = { ["id"] = "explicit.stat_2907381231", ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", ["type"] = "explicit", }, - [2464] = { + [2466] = { ["id"] = "explicit.stat_253641217", ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", ["type"] = "explicit", }, - [2465] = { + [2467] = { ["id"] = "explicit.stat_40618390", ["text"] = "Notable Passive Skills in Radius also grant #% increased Intelligence", ["type"] = "explicit", }, - [2466] = { + [2468] = { ["id"] = "explicit.stat_2976476845", ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", ["type"] = "explicit", }, - [2467] = { + [2469] = { ["id"] = "explicit.stat_942519401", ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", ["type"] = "explicit", }, - [2468] = { + [2470] = { ["id"] = "explicit.stat_1185341308", ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", ["type"] = "explicit", }, - [2469] = { + [2471] = { ["id"] = "explicit.stat_1321104829", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", ["type"] = "explicit", }, - [2470] = { + [2472] = { ["id"] = "explicit.stat_391602279", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", ["type"] = "explicit", }, - [2471] = { + [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", }, - [2472] = { + [2474] = { ["id"] = "explicit.stat_462424929", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", ["type"] = "explicit", }, - [2473] = { + [2475] = { ["id"] = "explicit.stat_1166140625", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", ["type"] = "explicit", }, - [2474] = { + [2476] = { ["id"] = "explicit.stat_4257790560", ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", ["type"] = "explicit", }, - [2475] = { + [2477] = { ["id"] = "explicit.stat_3171212276", ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", ["type"] = "explicit", }, - [2476] = { + [2478] = { ["id"] = "explicit.stat_844449513", ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "explicit", }, - [2477] = { + [2479] = { ["id"] = "explicit.stat_1514844108", ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", ["type"] = "explicit", }, - [2478] = { + [2480] = { ["id"] = "explicit.stat_1944020877", ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", ["type"] = "explicit", }, - [2479] = { + [2481] = { ["id"] = "explicit.stat_221701169", ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", ["type"] = "explicit", }, - [2480] = { + [2482] = { ["id"] = "explicit.stat_4032352472", ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", ["type"] = "explicit", }, - [2481] = { + [2483] = { ["id"] = "explicit.stat_1777421941", ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", ["type"] = "explicit", }, - [2482] = { + [2484] = { ["id"] = "explicit.stat_3113764475", ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", ["type"] = "explicit", }, - [2483] = { + [2485] = { ["id"] = "explicit.stat_3579898587", ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", ["type"] = "explicit", }, - [2484] = { + [2486] = { ["id"] = "explicit.stat_2580617872", ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", ["type"] = "explicit", }, - [2485] = { + [2487] = { ["id"] = "explicit.stat_1842384813", ["text"] = "Notable Passive Skills in Radius also grant #% increased Strength", ["type"] = "explicit", }, - [2486] = { + [2488] = { ["id"] = "explicit.stat_4173554949", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", ["type"] = "explicit", }, - [2487] = { + [2489] = { ["id"] = "explicit.stat_2392824305", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", ["type"] = "explicit", }, - [2488] = { + [2490] = { ["id"] = "explicit.stat_1495814176", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", ["type"] = "explicit", }, - [2489] = { + [2491] = { ["id"] = "explicit.stat_2675129731", ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", ["type"] = "explicit", }, - [2490] = { + [2492] = { ["id"] = "explicit.stat_2056107438", ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", ["type"] = "explicit", }, - [2491] = { + [2493] = { ["id"] = "explicit.stat_3936121440", ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", ["type"] = "explicit", }, - [2492] = { + [2494] = { ["id"] = "explicit.stat_4180952808", ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", ["type"] = "explicit", }, - [2493] = { + [2495] = { ["id"] = "explicit.stat_412709880", ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", ["type"] = "explicit", }, - [2494] = { + [2496] = { ["id"] = "explicit.stat_160888068", ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Life", ["type"] = "explicit", }, - [2495] = { + [2497] = { ["id"] = "explicit.stat_2589572664", ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Mana", ["type"] = "explicit", }, - [2496] = { + [2498] = { ["id"] = "explicit.stat_2709646369", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", ["type"] = "explicit", }, - [2497] = { + [2499] = { ["id"] = "explicit.stat_3669820740", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", ["type"] = "explicit", }, - [2498] = { + [2500] = { ["id"] = "explicit.stat_85367160", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", ["type"] = "explicit", }, - [2499] = { + [2501] = { ["id"] = "explicit.stat_3386297724", ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", ["type"] = "explicit", }, - [2500] = { + [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", }, - [2501] = { + [2504] = { ["id"] = "explicit.stat_1731760476", ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Chaos Resistance", ["type"] = "explicit", }, - [2502] = { + [2505] = { ["id"] = "explicit.stat_1862508014", ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Cold Resistance", ["type"] = "explicit", }, - [2503] = { + [2506] = { ["id"] = "explicit.stat_4151994709", ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Fire Resistance", ["type"] = "explicit", }, - [2504] = { + [2507] = { ["id"] = "explicit.stat_2217513089", ["text"] = "Notable Passive Skills in Radius also grant #% to Maximum Lightning Resistance", ["type"] = "explicit", }, - [2505] = { + [2508] = { ["id"] = "explicit.stat_3243034867", ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", ["type"] = "explicit", }, - [2506] = { + [2509] = { ["id"] = "explicit.stat_1034611536", ["text"] = "Notable Passive Skills in Radius also grant Charms gain # charge per Second", ["type"] = "explicit", }, - [2507] = { + [2510] = { ["id"] = "explicit.stat_3173882956", ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", ["type"] = "explicit", }, - [2508] = { + [2511] = { ["id"] = "explicit.stat_2256120736", ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", ["type"] = "explicit", }, - [2509] = { + [2512] = { ["id"] = "explicit.stat_2969557004", ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", ["type"] = "explicit", }, - [2510] = { + [2513] = { ["id"] = "explicit.stat_2131720304", ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", ["type"] = "explicit", }, - [2511] = { + [2514] = { ["id"] = "explicit.stat_2603051299", ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Chaos Damage", ["type"] = "explicit", }, - [2512] = { + [2515] = { ["id"] = "explicit.stat_833138896", ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Cold Damage", ["type"] = "explicit", }, - [2513] = { + [2516] = { ["id"] = "explicit.stat_338620903", ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, - [2514] = { + [2517] = { ["id"] = "explicit.stat_852470634", ["text"] = "Notable Passive Skills in Radius also grant Gain #% of Damage as Extra Lightning Damage", ["type"] = "explicit", }, - [2515] = { + [2518] = { ["id"] = "explicit.stat_2135541924", ["text"] = "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", ["type"] = "explicit", }, - [2516] = { + [2519] = { ["id"] = "explicit.stat_1148433552", ["text"] = "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", ["type"] = "explicit", }, - [2517] = { + [2520] = { ["id"] = "explicit.stat_3939216292", ["text"] = "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", ["type"] = "explicit", }, - [2518] = { + [2521] = { ["id"] = "explicit.stat_2849546516", ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", ["type"] = "explicit", }, - [2519] = { + [2522] = { ["id"] = "explicit.stat_2534359663", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", ["type"] = "explicit", }, - [2520] = { + [2523] = { ["id"] = "explicit.stat_3106718406", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", ["type"] = "explicit", }, - [2521] = { + [2524] = { ["id"] = "explicit.stat_593241812", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", ["type"] = "explicit", }, - [2522] = { + [2525] = { ["id"] = "explicit.stat_3628935286", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", ["type"] = "explicit", }, - [2523] = { + [2526] = { ["id"] = "explicit.stat_2374711847", ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", ["type"] = "explicit", }, - [2524] = { + [2527] = { ["id"] = "explicit.stat_4258720395", ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "explicit", }, - [2525] = { + [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", }, - [2526] = { + [2529] = { ["id"] = "explicit.stat_2726713579", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", ["type"] = "explicit", }, - [2527] = { + [2530] = { ["id"] = "explicit.stat_525523040", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "explicit", }, - [2528] = { + [2531] = { ["id"] = "explicit.stat_3566150527", ["text"] = "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", ["type"] = "explicit", }, - [2529] = { + [2532] = { ["id"] = "explicit.stat_3831171903|19", ["text"] = "Oasis", ["type"] = "explicit", }, - [2530] = { + [2533] = { ["id"] = "explicit.stat_3430033313", ["text"] = "Off-hand Hits inflict Runefather's Challenge", ["type"] = "explicit", }, - [2531] = { + [2534] = { ["id"] = "explicit.stat_3191479793", ["text"] = "Offering Skills have #% increased Buff effect", ["type"] = "explicit", }, - [2532] = { + [2535] = { ["id"] = "explicit.stat_2957407601", ["text"] = "Offering Skills have #% increased Duration", ["type"] = "explicit", }, - [2533] = { + [2536] = { ["id"] = "explicit.stat_3787460122", ["text"] = "Offerings have #% increased Maximum Life", ["type"] = "explicit", }, - [2534] = { + [2537] = { ["id"] = "explicit.stat_4215035940", ["text"] = "On Corruption, Item gains two Enchantments", ["type"] = "explicit", }, - [2535] = { + [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", }, - [2536] = { + [2539] = { ["id"] = "explicit.stat_259470957", ["text"] = "On-Kill Effects happen twice", ["type"] = "explicit", }, - [2537] = { + [2540] = { ["id"] = "explicit.stat_250458861", ["text"] = "Only Soul Cores can be Socketed in this item", ["type"] = "explicit", }, - [2538] = { + [2541] = { ["id"] = "explicit.stat_3642528642|6", ["text"] = "Only affects Passives in Large Ring", ["type"] = "explicit", }, - [2539] = { + [2542] = { ["id"] = "explicit.stat_3642528642|8", ["text"] = "Only affects Passives in Massive Ring", ["type"] = "explicit", }, - [2540] = { + [2543] = { ["id"] = "explicit.stat_3642528642|4", ["text"] = "Only affects Passives in Medium Ring", ["type"] = "explicit", }, - [2541] = { + [2544] = { ["id"] = "explicit.stat_3642528642|5", ["text"] = "Only affects Passives in Medium-Large Ring", ["type"] = "explicit", }, - [2542] = { + [2545] = { ["id"] = "explicit.stat_3642528642|3", ["text"] = "Only affects Passives in Medium-Small Ring", ["type"] = "explicit", }, - [2543] = { + [2546] = { ["id"] = "explicit.stat_3642528642|2", ["text"] = "Only affects Passives in Small Ring", ["type"] = "explicit", }, - [2544] = { + [2547] = { ["id"] = "explicit.stat_3642528642|7", ["text"] = "Only affects Passives in Very Large Ring", ["type"] = "explicit", }, - [2545] = { + [2548] = { ["id"] = "explicit.stat_3642528642|1", ["text"] = "Only affects Passives in Very Small Ring", ["type"] = "explicit", }, - [2546] = { + [2549] = { ["id"] = "explicit.stat_1520059289", ["text"] = "Onslaught", ["type"] = "explicit", }, - [2547] = { - ["id"] = "explicit.stat_98977150", + [2550] = { + ["id"] = "explicit.stat_3831171903|7", ["text"] = "Pain Attunement", ["type"] = "explicit", }, - [2548] = { - ["id"] = "explicit.stat_3831171903|7", + [2551] = { + ["id"] = "explicit.stat_98977150", ["text"] = "Pain Attunement", ["type"] = "explicit", }, - [2549] = { + [2552] = { ["id"] = "explicit.stat_3488640354", ["text"] = "Parried enemies take more Spell Damage instead of more Attack Damage", ["type"] = "explicit", }, - [2550] = { + [2553] = { ["id"] = "explicit.stat_2104138899", ["text"] = "Parrying applies # Stack of Critical Weakness", ["type"] = "explicit", }, - [2551] = { + [2554] = { ["id"] = "explicit.stat_4077035099", ["text"] = "Passives in Radius can be Allocated without being connected to your tree", ["type"] = "explicit", }, - [2552] = { + [2555] = { ["id"] = "explicit.stat_2422708892|45202", ["text"] = "Passives in Radius of Ancestral Bond can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2553] = { + [2556] = { ["id"] = "explicit.stat_2422708892|18684", ["text"] = "Passives in Radius of Avatar of Fire can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2554] = { + [2557] = { ["id"] = "explicit.stat_2422708892|42680", ["text"] = "Passives in Radius of Blackflame Covenant can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2555] = { + [2558] = { ["id"] = "explicit.stat_2422708892|51749", ["text"] = "Passives in Radius of Blood Magic can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2556] = { + [2559] = { ["id"] = "explicit.stat_2422708892|56605", ["text"] = "Passives in Radius of Bulwark can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2557] = { + [2560] = { ["id"] = "explicit.stat_2422708892|56349", ["text"] = "Passives in Radius of Chaos Inoculation can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2558] = { + [2561] = { ["id"] = "explicit.stat_2422708892|33979", ["text"] = "Passives in Radius of Conduit can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2559] = { + [2562] = { ["id"] = "explicit.stat_2422708892|9085", ["text"] = "Passives in Radius of Crimson Assault can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2560] = { + [2563] = { ["id"] = "explicit.stat_2422708892|14226", ["text"] = "Passives in Radius of Dance with Death can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2561] = { + [2564] = { ["id"] = "explicit.stat_2422708892|57513", ["text"] = "Passives in Radius of Eldritch Battery can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2562] = { + [2565] = { ["id"] = "explicit.stat_2422708892|46742", ["text"] = "Passives in Radius of Elemental Equilibrium can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2563] = { + [2566] = { ["id"] = "explicit.stat_2422708892|33404", ["text"] = "Passives in Radius of Eternal Youth can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2564] = { + [2567] = { ["id"] = "explicit.stat_2422708892|32349", ["text"] = "Passives in Radius of Giant's Blood can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2565] = { + [2568] = { ["id"] = "explicit.stat_2422708892|19288", ["text"] = "Passives in Radius of Glancing Blows can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2566] = { + [2569] = { ["id"] = "explicit.stat_2422708892|34497", ["text"] = "Passives in Radius of Heartstopper can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2567] = { + [2570] = { ["id"] = "explicit.stat_2422708892|64601", ["text"] = "Passives in Radius of Hollow Palm Technique can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2568] = { + [2571] = { ["id"] = "explicit.stat_2422708892|28492", ["text"] = "Passives in Radius of Iron Reflexes can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2569] = { + [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", }, - [2570] = { + [2573] = { ["id"] = "explicit.stat_2422708892|45918", ["text"] = "Passives in Radius of Mind Over Matter can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2571] = { + [2574] = { ["id"] = "explicit.stat_2422708892|39935", ["text"] = "Passives in Radius of Necromantic Talisman can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2572] = { + [2575] = { ["id"] = "explicit.stat_2422708892|25100", ["text"] = "Passives in Radius of Oasis can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2573] = { + [2576] = { ["id"] = "explicit.stat_2422708892|55048", ["text"] = "Passives in Radius of Pain Attunement can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2574] = { + [2577] = { ["id"] = "explicit.stat_2422708892|37484", ["text"] = "Passives in Radius of Primal Hunger can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2575] = { + [2578] = { ["id"] = "explicit.stat_2422708892|44017", ["text"] = "Passives in Radius of Resolute Technique can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2576] = { + [2579] = { ["id"] = "explicit.stat_2422708892|25520", ["text"] = "Passives in Radius of Resonance can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2577] = { + [2580] = { ["id"] = "explicit.stat_2422708892|11230", ["text"] = "Passives in Radius of Ritual Cadence can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2578] = { + [2581] = { ["id"] = "explicit.stat_2422708892|49547", ["text"] = "Passives in Radius of Scarred Faith can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2579] = { + [2582] = { ["id"] = "explicit.stat_2422708892|41861", ["text"] = "Passives in Radius of Trusted Kinship can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2580] = { + [2583] = { ["id"] = "explicit.stat_2422708892|14540", ["text"] = "Passives in Radius of Unwavering Stance can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2581] = { + [2584] = { ["id"] = "explicit.stat_2422708892|33369", ["text"] = "Passives in Radius of Vaal Pact can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2582] = { + [2585] = { ["id"] = "explicit.stat_2422708892|47759", ["text"] = "Passives in Radius of Whispers of Doom can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2583] = { + [2586] = { ["id"] = "explicit.stat_2422708892|49363", ["text"] = "Passives in Radius of Wildsurge Incantation can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2584] = { + [2587] = { ["id"] = "explicit.stat_2422708892|52", ["text"] = "Passives in Radius of Zealot's Oath can be Allocatedwithout being connected to your tree", ["type"] = "explicit", }, - [2585] = { + [2588] = { ["id"] = "explicit.stat_2930706364", ["text"] = "Permanently Intimidate enemies on Block", ["type"] = "explicit", }, - [2586] = { + [2589] = { ["id"] = "explicit.stat_2041668411", ["text"] = "Physical Damage is Pinning", ["type"] = "explicit", }, - [2587] = { + [2590] = { ["id"] = "explicit.stat_2424163939", ["text"] = "Physical Damage of Enemies Hitting you is Lucky", ["type"] = "explicit", }, - [2588] = { + [2591] = { ["id"] = "explicit.stat_905072977", ["text"] = "Physical damage from Hits Contributes to Chill Magnitude and Freeze Buildup", ["type"] = "explicit", }, - [2589] = { + [2592] = { ["id"] = "explicit.stat_3063814459", ["text"] = "Pin Enemies which are Primed for Pinning", ["type"] = "explicit", }, - [2590] = { + [2593] = { ["id"] = "explicit.stat_2408625104", ["text"] = "Players and their Minions deal no damage for 3 out of every 10 seconds", ["type"] = "explicit", }, - [2591] = { + [2594] = { ["id"] = "explicit.stat_558910024", ["text"] = "Players are Cursed with Elemental Weakness", ["type"] = "explicit", }, - [2592] = { + [2595] = { ["id"] = "explicit.stat_4103440490", ["text"] = "Players are Cursed with Enfeeble", ["type"] = "explicit", }, - [2593] = { + [2596] = { ["id"] = "explicit.stat_2326202293", ["text"] = "Players are Cursed with Temporal Chains", ["type"] = "explicit", }, - [2594] = { + [2597] = { ["id"] = "explicit.stat_436406826", ["text"] = "Players are Marked for Death for # secondsafter killing a Rare or Unique monster", ["type"] = "explicit", }, - [2595] = { + [2598] = { ["id"] = "explicit.stat_554690751", ["text"] = "Players are periodically Cursed with Elemental Weakness", ["type"] = "explicit", }, - [2596] = { + [2599] = { ["id"] = "explicit.stat_2029171424", ["text"] = "Players are periodically Cursed with Enfeeble", ["type"] = "explicit", }, - [2597] = { + [2600] = { ["id"] = "explicit.stat_1629357380", ["text"] = "Players are periodically Cursed with Temporal Chains", ["type"] = "explicit", }, - [2598] = { + [2601] = { ["id"] = "explicit.stat_2549889921", ["text"] = "Players gain #% reduced Flask Charges", ["type"] = "explicit", }, - [2599] = { + [2602] = { ["id"] = "explicit.stat_4181072906", ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", ["type"] = "explicit", }, - [2600] = { + [2603] = { ["id"] = "explicit.stat_3510648768", ["text"] = "Players have #% more Armour, Evasion and Energy Shield", ["type"] = "explicit", }, - [2601] = { + [2604] = { ["id"] = "explicit.stat_941368244", ["text"] = "Players have #% more Cooldown Recovery Rate", ["type"] = "explicit", }, - [2602] = { + [2605] = { ["id"] = "explicit.stat_4274247770", ["text"] = "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", ["type"] = "explicit", }, - [2603] = { + [2606] = { ["id"] = "explicit.stat_1310597900", ["text"] = "Players have #% more Recovery Rate of Life, Mana and Energy Shield", ["type"] = "explicit", }, - [2604] = { + [2607] = { ["id"] = "explicit.stat_3119282240", ["text"] = "Players have #% more maximum Life and Energy Shield", ["type"] = "explicit", }, - [2605] = { + [2608] = { ["id"] = "explicit.stat_1365079333", ["text"] = "Players steal the Eaten Souls of Slain Rare Monsters in Area", ["type"] = "explicit", }, - [2606] = { + [2609] = { ["id"] = "explicit.stat_3403424702", ["text"] = "Possessed by Spirit Of The Bear for # seconds on use", ["type"] = "explicit", }, - [2607] = { + [2610] = { ["id"] = "explicit.stat_1685559578", ["text"] = "Possessed by Spirit Of The Boar for # seconds on use", ["type"] = "explicit", }, - [2608] = { + [2611] = { ["id"] = "explicit.stat_2839557359", ["text"] = "Possessed by Spirit Of The Cat for # seconds on use", ["type"] = "explicit", }, - [2609] = { + [2612] = { ["id"] = "explicit.stat_300107724", ["text"] = "Possessed by Spirit Of The Owl for # seconds on use", ["type"] = "explicit", }, - [2610] = { + [2613] = { ["id"] = "explicit.stat_3463873033", ["text"] = "Possessed by Spirit Of The Ox for # seconds on use", ["type"] = "explicit", }, - [2611] = { + [2614] = { ["id"] = "explicit.stat_3763491818", ["text"] = "Possessed by Spirit Of The Primate for # seconds on use", ["type"] = "explicit", }, - [2612] = { + [2615] = { ["id"] = "explicit.stat_3181677174", ["text"] = "Possessed by Spirit Of The Serpent for # seconds on use", ["type"] = "explicit", }, - [2613] = { + [2616] = { ["id"] = "explicit.stat_3685424517", ["text"] = "Possessed by Spirit Of The Stag for # seconds on use", ["type"] = "explicit", }, - [2614] = { + [2617] = { ["id"] = "explicit.stat_3504441212", ["text"] = "Possessed by Spirit Of The Wolf for # seconds on use", ["type"] = "explicit", }, - [2615] = { + [2618] = { ["id"] = "explicit.stat_1810907437", ["text"] = "Presence Radius is doubled", ["type"] = "explicit", }, - [2616] = { + [2619] = { ["id"] = "explicit.stat_3552135623", ["text"] = "Prevent #% of Damage from Deflected Hits", ["type"] = "explicit", }, - [2617] = { + [2620] = { ["id"] = "explicit.stat_3831171903|16", ["text"] = "Primal Hunger", ["type"] = "explicit", }, - [2618] = { + [2621] = { ["id"] = "explicit.stat_3932115504", ["text"] = "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", ["type"] = "explicit", }, - [2619] = { + [2622] = { ["id"] = "explicit.stat_2214228141", ["text"] = "Projectiles Pierce all Ignited enemies", ["type"] = "explicit", }, - [2620] = { + [2623] = { ["id"] = "explicit.stat_3464380325", ["text"] = "Projectiles Split towards # targets", ["type"] = "explicit", }, - [2621] = { + [2624] = { ["id"] = "explicit.stat_2825946427", ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", ["type"] = "explicit", }, - [2622] = { + [2625] = { ["id"] = "explicit.stat_2468595624", ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies within 2m", ["type"] = "explicit", }, - [2623] = { + [2626] = { ["id"] = "explicit.stat_883169830", ["text"] = "Projectiles deal #% increased Damage with Hits for each time they have Pierced", ["type"] = "explicit", }, - [2624] = { + [2627] = { ["id"] = "explicit.stat_3826125995", ["text"] = "Projectiles from Spells cannot Pierce", ["type"] = "explicit", }, - [2625] = { + [2628] = { ["id"] = "explicit.stat_3003542304", ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "explicit", }, - [2626] = { + [2629] = { ["id"] = "explicit.stat_4081947835", ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "explicit", }, - [2627] = { + [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", }, - [2628] = { + [2631] = { ["id"] = "explicit.stat_2573406169", ["text"] = "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", ["type"] = "explicit", }, - [2629] = { + [2632] = { ["id"] = "explicit.stat_2706625504", ["text"] = "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", ["type"] = "explicit", }, - [2630] = { + [2633] = { ["id"] = "explicit.stat_1163615092", ["text"] = "Projectiles have #% increased Critical Hit chance for each time they have Pierced", ["type"] = "explicit", }, - [2631] = { + [2634] = { ["id"] = "explicit.stat_2550456553", ["text"] = "Rare Monsters have # additional Modifier", ["type"] = "explicit", }, - [2632] = { + [2635] = { ["id"] = "explicit.stat_3732878551", ["text"] = "Rare Monsters have a #% Surpassing chance to have an additional Modifier", ["type"] = "explicit", }, - [2633] = { + [2636] = { ["id"] = "explicit.stat_2550456553", ["text"] = "Rare Monsters in your Maps have # additional Modifier", ["type"] = "explicit", }, - [2634] = { + [2637] = { ["id"] = "explicit.stat_3732878551", ["text"] = "Rare Monsters in your Maps have a #% Surpassing chance to have an additional Modifier", ["type"] = "explicit", }, - [2635] = { + [2638] = { ["id"] = "explicit.stat_3198163869", ["text"] = "Raven-Touched", ["type"] = "explicit", }, - [2636] = { + [2639] = { ["id"] = "explicit.stat_2365392475", ["text"] = "Recover # Life when Used", ["type"] = "explicit", }, - [2637] = { + [2640] = { ["id"] = "explicit.stat_1120862500", ["text"] = "Recover # Mana when Used", ["type"] = "explicit", }, - [2638] = { + [2641] = { ["id"] = "explicit.stat_554145967", ["text"] = "Recover # Runic Ward when a Charm is used", ["type"] = "explicit", }, - [2639] = { + [2642] = { ["id"] = "explicit.stat_1568848828", ["text"] = "Recover # Runic Ward when you Block", ["type"] = "explicit", }, - [2640] = { + [2643] = { ["id"] = "explicit.stat_4033618138", ["text"] = "Recover #% of Maximum Life when you expend at least 10 Combo", ["type"] = "explicit", }, - [2641] = { + [2644] = { ["id"] = "explicit.stat_2991045011", ["text"] = "Recover #% of Maximum Mana when you expend at least 10 Combo", ["type"] = "explicit", }, - [2642] = { + [2645] = { ["id"] = "explicit.stat_1990472846", ["text"] = "Recover #% of Missing Life before being Hit by an Enemy", ["type"] = "explicit", }, - [2643] = { + [2646] = { ["id"] = "explicit.stat_939832726", ["text"] = "Recover #% of maximum Life for each Endurance Charge consumed", ["type"] = "explicit", }, - [2644] = { + [2647] = { ["id"] = "explicit.stat_2023107756", ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "explicit", }, - [2645] = { + [2648] = { ["id"] = "explicit.stat_1781372024", ["text"] = "Recover #% of maximum Life on Killing a Poisoned Enemy", ["type"] = "explicit", }, - [2646] = { + [2649] = { ["id"] = "explicit.stat_2535713562", ["text"] = "Recover #% of maximum Life per Poison affecting Enemies you Kill", ["type"] = "explicit", }, - [2647] = { + [2650] = { ["id"] = "explicit.stat_2442647190", ["text"] = "Recover #% of maximum Life when you Block", ["type"] = "explicit", }, - [2648] = { + [2651] = { ["id"] = "explicit.stat_1030153674", ["text"] = "Recover #% of maximum Mana on Kill", ["type"] = "explicit", }, - [2649] = { + [2652] = { ["id"] = "explicit.stat_1604736568", ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "explicit", }, - [2650] = { + [2653] = { ["id"] = "explicit.stat_4121454694", ["text"] = "Recover #% of maximum Mana when a Charm is used", ["type"] = "explicit", }, - [2651] = { + [2654] = { ["id"] = "explicit.stat_346374719", ["text"] = "Recover #% of maximum Mana when you consume a Power Charge", ["type"] = "explicit", }, - [2652] = { + [2655] = { ["id"] = "explicit.stat_3503117295", ["text"] = "Recover #% of your maximum Life when an Enemy dies in your Presence", ["type"] = "explicit", }, - [2653] = { + [2656] = { ["id"] = "explicit.stat_2456226238", ["text"] = "Recover #% of your maximum Mana when an Enemy dies in your Presence", ["type"] = "explicit", }, - [2654] = { + [2657] = { ["id"] = "explicit.stat_2716923832", ["text"] = "Recover Life equal to #% of Mana Flask's Recovery Amount when used", ["type"] = "explicit", }, - [2655] = { + [2658] = { ["id"] = "explicit.stat_3891350097", ["text"] = "Recover Mana equal to #% of Life Flask's Recovery Amount when used", ["type"] = "explicit", }, - [2656] = { + [2659] = { ["id"] = "explicit.stat_1002973905", ["text"] = "Recover all Mana when Used", ["type"] = "explicit", }, - [2657] = { + [2660] = { ["id"] = "explicit.stat_746505085", ["text"] = "Reflects opposite Ring", ["type"] = "explicit", }, - [2658] = { + [2661] = { ["id"] = "explicit.stat_1312381104", ["text"] = "Regenerate # Life per second for every 10 Intelligence", ["type"] = "explicit", }, - [2659] = { + [2662] = { ["id"] = "explicit.stat_3276271783", ["text"] = "Regenerate # Life per second per Maximum Energy Shield", ["type"] = "explicit", }, - [2660] = { + [2663] = { ["id"] = "explicit.stat_2853314994", ["text"] = "Regenerate # Rage per second", ["type"] = "explicit", }, - [2661] = { + [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", }, - [2662] = { + [2665] = { ["id"] = "explicit.stat_836936635", ["text"] = "Regenerate #% of maximum Life per second", ["type"] = "explicit", }, - [2663] = { + [2666] = { ["id"] = "explicit.stat_2201614328", ["text"] = "Regenerate #% of maximum Life per second if you have been Hit Recently", ["type"] = "explicit", }, - [2664] = { + [2667] = { ["id"] = "explicit.stat_302024054", ["text"] = "Regenerate #% of maximum Life per second while Ignited", ["type"] = "explicit", }, - [2665] = { + [2668] = { ["id"] = "explicit.stat_2002533190", ["text"] = "Regenerate #% of maximum Life per second while Surrounded", ["type"] = "explicit", }, - [2666] = { + [2669] = { ["id"] = "explicit.stat_3942946753", ["text"] = "Regenerate #% of maximum Life per second while on Low Life", ["type"] = "explicit", }, - [2667] = { + [2670] = { ["id"] = "explicit.stat_3418580811|22", ["text"] = "Remembrancing # songworthy deeds by the line of MedvedPassives in radius are Conquered by the Kalguur", ["type"] = "explicit", }, - [2668] = { + [2671] = { ["id"] = "explicit.stat_3418580811|23", ["text"] = "Remembrancing # songworthy deeds by the line of OlrothPassives in radius are Conquered by the Kalguur", ["type"] = "explicit", }, - [2669] = { + [2672] = { ["id"] = "explicit.stat_3418580811|21", ["text"] = "Remembrancing # songworthy deeds by the line of VoranaPassives in radius are Conquered by the Kalguur", ["type"] = "explicit", }, - [2670] = { + [2673] = { ["id"] = "explicit.stat_3482326075", ["text"] = "Remnants can be collected from #% further away", ["type"] = "explicit", }, - [2671] = { + [2674] = { ["id"] = "explicit.stat_315717203", ["text"] = "Remnants you create affect Allies in your Presence as well as you when collected", ["type"] = "explicit", }, - [2672] = { + [2675] = { ["id"] = "explicit.stat_1999910726", ["text"] = "Remnants you create have #% increased effect", ["type"] = "explicit", }, - [2673] = { + [2676] = { ["id"] = "explicit.stat_1394184789", ["text"] = "Remove Bleeding when you use a Life Flask", ["type"] = "explicit", }, - [2674] = { + [2677] = { ["id"] = "explicit.stat_648019518", ["text"] = "Removes #% of Life Recovered from Mana when used", ["type"] = "explicit", }, - [2675] = { + [2678] = { ["id"] = "explicit.stat_959641748", ["text"] = "Removes #% of Mana Recovered from Life when used", ["type"] = "explicit", }, - [2676] = { + [2679] = { ["id"] = "explicit.stat_2306588612", ["text"] = "Repeatable Attacks with this Bow Repeat # time if no enemies are in your Presence", ["type"] = "explicit", }, - [2677] = { + [2680] = { ["id"] = "explicit.stat_2267564181", ["text"] = "Require # additional enemies to be Surrounded", ["type"] = "explicit", }, - [2678] = { + [2681] = { ["id"] = "explicit.stat_2282052746", ["text"] = "Rerolling Favours at Ritual Altars costs #% increased Tribute", ["type"] = "explicit", }, - [2679] = { + [2682] = { ["id"] = "explicit.stat_2282052746", ["text"] = "Rerolling Favours at Ritual Altars in Area costs #% increased Tribute", ["type"] = "explicit", }, - [2680] = { + [2683] = { ["id"] = "explicit.stat_3831171903|6", ["text"] = "Resolute Technique", ["type"] = "explicit", }, - [2681] = { + [2684] = { ["id"] = "explicit.stat_3831171903|14", ["text"] = "Resonance", ["type"] = "explicit", }, - [2682] = { + [2685] = { ["id"] = "explicit.stat_1031644647", ["text"] = "Revived Monsters from Ritual Altars have #% increased chance to be Magic", ["type"] = "explicit", }, - [2683] = { + [2686] = { ["id"] = "explicit.stat_3979184174", ["text"] = "Revived Monsters from Ritual Altars have #% increased chance to be Rare", ["type"] = "explicit", }, - [2684] = { + [2687] = { ["id"] = "explicit.stat_1031644647", ["text"] = "Revived Monsters from Ritual Altars in Area have #% increased chance to be Magic", ["type"] = "explicit", }, - [2685] = { + [2688] = { ["id"] = "explicit.stat_3979184174", ["text"] = "Revived Monsters from Ritual Altars in Area have #% increased chance to be Rare", ["type"] = "explicit", }, - [2686] = { + [2689] = { ["id"] = "explicit.stat_1555918911", ["text"] = "Right ring slot: Projectiles from Spells Chain +# times", ["type"] = "explicit", }, - [2687] = { + [2690] = { ["id"] = "explicit.stat_2933024469", ["text"] = "Right ring slot: Projectiles from Spells cannot Fork", ["type"] = "explicit", }, - [2688] = { + [2691] = { ["id"] = "explicit.stat_120737942", ["text"] = "Ritual Altars allow rerolling Favours an additional time", ["type"] = "explicit", }, - [2689] = { + [2692] = { ["id"] = "explicit.stat_120737942", ["text"] = "Ritual Altars in Area allow rerolling Favours an additional time", ["type"] = "explicit", }, - [2690] = { + [2693] = { ["id"] = "explicit.stat_3831171903|29", ["text"] = "Ritual Cadence", ["type"] = "explicit", }, - [2691] = { + [2694] = { ["id"] = "explicit.stat_4219853180", ["text"] = "Ritual Favours in Area have #% increased chance to be Omens", ["type"] = "explicit", }, - [2692] = { + [2695] = { ["id"] = "explicit.stat_4219853180", ["text"] = "Ritual Favours in your Maps have #% increased chance to be Omens", ["type"] = "explicit", }, - [2693] = { + [2696] = { ["id"] = "explicit.stat_3108672983", ["text"] = "Rolls only the minimum or maximum Damage value for each Damage Type", ["type"] = "explicit", }, - [2694] = { + [2697] = { ["id"] = "explicit.stat_2816104578", ["text"] = "Runic Monsters in your Maps are Duplicated", ["type"] = "explicit", }, - [2695] = { + [2698] = { ["id"] = "explicit.stat_76982026", ["text"] = "Sacrifice # Life to not consume the last bolt when firing", ["type"] = "explicit", }, - [2696] = { + [2699] = { ["id"] = "explicit.stat_613752285", ["text"] = "Sacrifice #% of maximum Life to gain that much Energy Shield when you Cast a Spell", ["type"] = "explicit", }, - [2697] = { + [2700] = { ["id"] = "explicit.stat_3076483222|49977", ["text"] = "Sacrifice up to 10 Chaos Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2698] = { + [2701] = { ["id"] = "explicit.stat_3076483222|53954", ["text"] = "Sacrifice up to 10 Gemcutter's Prisms to receive double on Trial completion", ["type"] = "explicit", }, - [2699] = { + [2702] = { ["id"] = "explicit.stat_3076483222|8084", ["text"] = "Sacrifice up to 10 Greater Exalted Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2700] = { + [2703] = { ["id"] = "explicit.stat_3076483222|30874", ["text"] = "Sacrifice up to 10 Greater Regal Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2701] = { + [2704] = { ["id"] = "explicit.stat_3076483222|20358", ["text"] = "Sacrifice up to 10 Orbs of Alchemy to receive double on Trial completion", ["type"] = "explicit", }, - [2702] = { + [2705] = { ["id"] = "explicit.stat_3076483222|64921", ["text"] = "Sacrifice up to 10 Vaal Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2703] = { + [2706] = { ["id"] = "explicit.stat_3076483222|38303", ["text"] = "Sacrifice up to 20 Arcanist's Etchers to receive double on Trial completion", ["type"] = "explicit", }, - [2704] = { + [2707] = { ["id"] = "explicit.stat_3076483222|4897", ["text"] = "Sacrifice up to 20 Armourer's Scraps to receive double on Trial completion", ["type"] = "explicit", }, - [2705] = { + [2708] = { ["id"] = "explicit.stat_3076483222|19846", ["text"] = "Sacrifice up to 20 Artificer's Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2706] = { + [2709] = { ["id"] = "explicit.stat_3076483222|32821", ["text"] = "Sacrifice up to 20 Blacksmith's Whetstones to receive double on Trial completion", ["type"] = "explicit", }, - [2707] = { + [2710] = { ["id"] = "explicit.stat_3076483222|62634", ["text"] = "Sacrifice up to 20 Exalted Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2708] = { + [2711] = { ["id"] = "explicit.stat_3076483222|136", ["text"] = "Sacrifice up to 20 Glassblower's Baubles to receive double on Trial completion", ["type"] = "explicit", }, - [2709] = { + [2712] = { ["id"] = "explicit.stat_3076483222|54496", ["text"] = "Sacrifice up to 20 Regal Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2710] = { + [2713] = { ["id"] = "explicit.stat_3076483222|61382", ["text"] = "Sacrifice up to 3 Divine Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2711] = { + [2714] = { ["id"] = "explicit.stat_3076483222|19854", ["text"] = "Sacrifice up to 3 Orb of Annulments to receive double on Trial completion", ["type"] = "explicit", }, - [2712] = { + [2715] = { ["id"] = "explicit.stat_3076483222|45026", ["text"] = "Sacrifice up to 3 Orbs of Chance to receive double on Trial completion", ["type"] = "explicit", }, - [2713] = { + [2716] = { ["id"] = "explicit.stat_3076483222|56025", ["text"] = "Sacrifice up to 3 Perfect Chaos Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2714] = { + [2717] = { ["id"] = "explicit.stat_3076483222|6774", ["text"] = "Sacrifice up to 3 Perfect Exalted Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2715] = { + [2718] = { ["id"] = "explicit.stat_3076483222|51981", ["text"] = "Sacrifice up to 3 Perfect Regal Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2716] = { + [2719] = { ["id"] = "explicit.stat_3076483222|42106", ["text"] = "Sacrifice up to 5 Greater Chaos Orbs to receive double on Trial completion", ["type"] = "explicit", }, - [2717] = { + [2720] = { ["id"] = "explicit.stat_3831171903|30", ["text"] = "Scarred Faith", ["type"] = "explicit", }, - [2718] = { + [2721] = { ["id"] = "explicit.stat_4147510958", ["text"] = "Sealed Skills have # to maximum Seals", ["type"] = "explicit", }, - [2719] = { + [2722] = { ["id"] = "explicit.stat_3384867265", ["text"] = "Sealed Skills have #% increased Seal gain frequency", ["type"] = "explicit", }, - [2720] = { + [2723] = { ["id"] = "explicit.stat_2535267021", ["text"] = "Share Charges with Allies in your Presence", ["type"] = "explicit", }, - [2721] = { + [2724] = { ["id"] = "explicit.stat_4256314560", ["text"] = "Shocks you when you reach maximum Power Charges", ["type"] = "explicit", }, - [2722] = { + [2725] = { ["id"] = "explicit.stat_4245256219", ["text"] = "Skill Gems have no Attribute Requirements", ["type"] = "explicit", }, - [2723] = { + [2726] = { ["id"] = "explicit.stat_467146530", ["text"] = "Skills Cost Divinity instead of Mana or Life", ["type"] = "explicit", }, - [2724] = { + [2727] = { ["id"] = "explicit.stat_3605834869", ["text"] = "Skills Gain #% of Mana Cost as Extra Life Cost", ["type"] = "explicit", }, - [2725] = { + [2728] = { ["id"] = "explicit.stat_2638381947", ["text"] = "Skills from Corrupted Gems have #% increased Cost Efficiency during any Flask Effect", ["type"] = "explicit", }, - [2726] = { + [2729] = { ["id"] = "explicit.stat_2035336006", ["text"] = "Skills from Corrupted Gems have #% of Mana Costs Converted to Life Costs", ["type"] = "explicit", }, - [2727] = { + [2730] = { ["id"] = "explicit.stat_4117005593", ["text"] = "Skills gain #% of Damage as Chaos Damage per 3 Life Cost", ["type"] = "explicit", }, - [2728] = { + [2731] = { ["id"] = "explicit.stat_396200591", ["text"] = "Skills have # seconds to Cooldown", ["type"] = "explicit", }, - [2729] = { + [2732] = { ["id"] = "explicit.stat_2942439603", ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", ["type"] = "explicit", }, - [2730] = { + [2733] = { ["id"] = "explicit.stat_3024873336", ["text"] = "Skills have #% chance to not remove Elemental Infusions but still count as consuming them", ["type"] = "explicit", }, - [2731] = { + [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", }, - [2732] = { + [2735] = { ["id"] = "explicit.stat_3982604001", ["text"] = "Skills have #% longer Perfect Timing window during effect", ["type"] = "explicit", }, - [2733] = { + [2736] = { ["id"] = "explicit.stat_2942704390", ["text"] = "Skills have +# to Limit", ["type"] = "explicit", }, - [2734] = { + [2737] = { ["id"] = "explicit.stat_3200877707", ["text"] = "Skills have a #% chance to not consume Glory", ["type"] = "explicit", }, - [2735] = { + [2738] = { ["id"] = "explicit.stat_1373370443", ["text"] = "Skills have a #% longer Perfect Timing window", ["type"] = "explicit", }, - [2736] = { + [2739] = { ["id"] = "explicit.stat_2838161567", ["text"] = "Skills reserve 50% less Spirit", ["type"] = "explicit", }, - [2737] = { + [2740] = { ["id"] = "explicit.stat_2538411280", ["text"] = "Skills which Empower an Attack have #% chance to not count that Attack", ["type"] = "explicit", }, - [2738] = { + [2741] = { ["id"] = "explicit.stat_2544540062", ["text"] = "Skills which create Fissures have a #% chance to create an additional Fissure", ["type"] = "explicit", }, - [2739] = { + [2742] = { ["id"] = "explicit.stat_2480962043", ["text"] = "Skills which require Glory generate # Glory every 2 seconds", ["type"] = "explicit", }, - [2740] = { + [2743] = { ["id"] = "explicit.stat_2323782229", ["text"] = "Slaying Rare Monsters in Area pauses the Delirium Mirror Timer for 1 second", ["type"] = "explicit", }, - [2741] = { + [2744] = { ["id"] = "explicit.stat_2323782229", ["text"] = "Slaying Rare Monsters in your Maps pauses the Delirium Mirror Timer for 1 second", ["type"] = "explicit", }, - [2742] = { + [2745] = { ["id"] = "explicit.stat_1316656343", ["text"] = "Small Passive Skills in Radius also grant # to maximum Life", ["type"] = "explicit", }, - [2743] = { + [2746] = { ["id"] = "explicit.stat_1294464552", ["text"] = "Small Passive Skills in Radius also grant # to maximum Mana", ["type"] = "explicit", }, - [2744] = { + [2747] = { ["id"] = "explicit.stat_2610562860", ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", ["type"] = "explicit", }, - [2745] = { + [2748] = { ["id"] = "explicit.stat_2840989393", ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", ["type"] = "explicit", }, - [2746] = { + [2749] = { ["id"] = "explicit.stat_944643028", ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, - [2747] = { + [2750] = { ["id"] = "explicit.stat_533892981", ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", ["type"] = "explicit", }, - [2748] = { + [2751] = { ["id"] = "explicit.stat_1285594161", ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", ["type"] = "explicit", }, - [2749] = { + [2752] = { ["id"] = "explicit.stat_3858398337", ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", ["type"] = "explicit", }, - [2750] = { + [2753] = { ["id"] = "explicit.stat_1426522529", ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", ["type"] = "explicit", }, - [2751] = { + [2754] = { ["id"] = "explicit.stat_1309799717", ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "explicit", }, - [2752] = { + [2755] = { ["id"] = "explicit.stat_3088348485", ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", ["type"] = "explicit", }, - [2753] = { + [2756] = { ["id"] = "explicit.stat_2442527254", ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "explicit", }, - [2754] = { + [2757] = { ["id"] = "explicit.stat_1087108135", ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", ["type"] = "explicit", }, - [2755] = { + [2758] = { ["id"] = "explicit.stat_1834658952", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", ["type"] = "explicit", }, - [2756] = { + [2759] = { ["id"] = "explicit.stat_1892122971", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", ["type"] = "explicit", }, - [2757] = { + [2760] = { ["id"] = "explicit.stat_266564538", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", ["type"] = "explicit", }, - [2758] = { + [2761] = { ["id"] = "explicit.stat_3752589831", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", ["type"] = "explicit", }, - [2759] = { + [2762] = { ["id"] = "explicit.stat_945774314", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", ["type"] = "explicit", }, - [2760] = { + [2763] = { ["id"] = "explicit.stat_517664839", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", ["type"] = "explicit", }, - [2761] = { + [2764] = { ["id"] = "explicit.stat_147764878", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "explicit", }, - [2762] = { + [2765] = { ["id"] = "explicit.stat_1852184471", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", ["type"] = "explicit", }, - [2763] = { + [2766] = { ["id"] = "explicit.stat_1590846356", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", ["type"] = "explicit", }, - [2764] = { + [2767] = { ["id"] = "explicit.stat_821948283", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", ["type"] = "explicit", }, - [2765] = { + [2768] = { ["id"] = "explicit.stat_2809428780", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", ["type"] = "explicit", }, - [2766] = { + [2769] = { ["id"] = "explicit.stat_1160637284", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", ["type"] = "explicit", }, - [2767] = { + [2770] = { ["id"] = "explicit.stat_3409275777", ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", ["type"] = "explicit", }, - [2768] = { + [2771] = { ["id"] = "explicit.stat_3222402650", ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", ["type"] = "explicit", }, - [2769] = { + [2772] = { ["id"] = "explicit.stat_1552666713", ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", ["type"] = "explicit", }, - [2770] = { + [2773] = { ["id"] = "explicit.stat_1994296038", ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "explicit", }, - [2771] = { + [2774] = { ["id"] = "explicit.stat_139889694", ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "explicit", }, - [2772] = { + [2775] = { ["id"] = "explicit.stat_394473632", ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", ["type"] = "explicit", }, - [2773] = { + [2776] = { ["id"] = "explicit.stat_1773308808", ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", ["type"] = "explicit", }, - [2774] = { + [2777] = { ["id"] = "explicit.stat_830345042", ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", ["type"] = "explicit", }, - [2775] = { + [2778] = { ["id"] = "explicit.stat_1417267954", ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "explicit", }, - [2776] = { + [2779] = { ["id"] = "explicit.stat_255840549", ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", ["type"] = "explicit", }, - [2777] = { + [2780] = { ["id"] = "explicit.stat_980177976", ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", ["type"] = "explicit", }, - [2778] = { + [2781] = { ["id"] = "explicit.stat_2768899959", ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", ["type"] = "explicit", }, - [2779] = { + [2782] = { ["id"] = "explicit.stat_3774951878", ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", ["type"] = "explicit", }, - [2780] = { + [2783] = { ["id"] = "explicit.stat_3256879910", ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", ["type"] = "explicit", }, - [2781] = { + [2784] = { ["id"] = "explicit.stat_1337740333", ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", ["type"] = "explicit", }, - [2782] = { + [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", }, - [2783] = { + [2786] = { ["id"] = "explicit.stat_793875384", ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", ["type"] = "explicit", }, - [2784] = { + [2787] = { ["id"] = "explicit.stat_1007380041", ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", ["type"] = "explicit", }, - [2785] = { + [2788] = { ["id"] = "explicit.stat_455816363", ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", ["type"] = "explicit", }, - [2786] = { + [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", }, - [2787] = { + [2790] = { ["id"] = "explicit.stat_3513818125", ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", ["type"] = "explicit", }, - [2788] = { + [2791] = { ["id"] = "explicit.stat_1137305356", ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", ["type"] = "explicit", }, - [2789] = { + [2792] = { ["id"] = "explicit.stat_484792219", ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", ["type"] = "explicit", }, - [2790] = { + [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", }, - [2791] = { + [2794] = { ["id"] = "explicit.stat_1320662475", ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", ["type"] = "explicit", }, - [2792] = { + [2795] = { ["id"] = "explicit.stat_2108821127", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", ["type"] = "explicit", }, - [2793] = { + [2796] = { ["id"] = "explicit.stat_442393998", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", ["type"] = "explicit", }, - [2794] = { + [2797] = { ["id"] = "explicit.stat_1145481685", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", ["type"] = "explicit", }, - [2795] = { + [2798] = { ["id"] = "explicit.stat_1602294220", ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", ["type"] = "explicit", }, - [2796] = { + [2799] = { ["id"] = "explicit.stat_1129429646", ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", ["type"] = "explicit", }, - [2797] = { + [2800] = { ["id"] = "explicit.stat_3666476747", ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", ["type"] = "explicit", }, - [2798] = { + [2801] = { ["id"] = "explicit.stat_3700202631", ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", ["type"] = "explicit", }, - [2799] = { + [2802] = { ["id"] = "explicit.stat_1039268420", ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", ["type"] = "explicit", }, - [2800] = { + [2803] = { ["id"] = "explicit.stat_3665922113", ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", ["type"] = "explicit", }, - [2801] = { + [2804] = { ["id"] = "explicit.stat_1809641701", ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Life", ["type"] = "explicit", }, - [2802] = { + [2805] = { ["id"] = "explicit.stat_1247628870", ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Mana", ["type"] = "explicit", }, - [2803] = { + [2806] = { ["id"] = "explicit.stat_860443350", ["text"] = "Small Passive Skills in Radius also grant #% reduced Freeze Duration on you", ["type"] = "explicit", }, - [2804] = { + [2807] = { ["id"] = "explicit.stat_3474941090", ["text"] = "Small Passive Skills in Radius also grant #% reduced Ignite Duration on you", ["type"] = "explicit", }, - [2805] = { + [2808] = { ["id"] = "explicit.stat_1627878766", ["text"] = "Small Passive Skills in Radius also grant #% reduced Shock duration on you", ["type"] = "explicit", }, - [2806] = { + [2809] = { ["id"] = "explicit.stat_2264240911", ["text"] = "Small Passive Skills in Radius also grant #% to Chaos Resistance", ["type"] = "explicit", }, - [2807] = { + [2810] = { ["id"] = "explicit.stat_2884937919", ["text"] = "Small Passive Skills in Radius also grant #% to Cold Resistance", ["type"] = "explicit", }, - [2808] = { + [2811] = { ["id"] = "explicit.stat_2948688907", ["text"] = "Small Passive Skills in Radius also grant #% to Fire Resistance", ["type"] = "explicit", }, - [2809] = { + [2812] = { ["id"] = "explicit.stat_3994876825", ["text"] = "Small Passive Skills in Radius also grant #% to Lightning Resistance", ["type"] = "explicit", }, - [2810] = { + [2813] = { ["id"] = "explicit.stat_318092306", ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", ["type"] = "explicit", }, - [2811] = { + [2814] = { ["id"] = "explicit.stat_4142814612", ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", ["type"] = "explicit", }, - [2812] = { + [2815] = { ["id"] = "explicit.stat_2690740379", ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", ["type"] = "explicit", }, - [2813] = { + [2816] = { ["id"] = "explicit.stat_4089835882", ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", ["type"] = "explicit", }, - [2814] = { + [2817] = { ["id"] = "explicit.stat_1494950893", ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", ["type"] = "explicit", }, - [2815] = { + [2818] = { ["id"] = "explicit.stat_2638756573", ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", ["type"] = "explicit", }, - [2816] = { + [2819] = { ["id"] = "explicit.stat_1896066427", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", ["type"] = "explicit", }, - [2817] = { + [2820] = { ["id"] = "explicit.stat_1432756708", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", ["type"] = "explicit", }, - [2818] = { + [2821] = { ["id"] = "explicit.stat_868556494", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", ["type"] = "explicit", }, - [2819] = { + [2822] = { ["id"] = "explicit.stat_4258000627", ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", ["type"] = "explicit", }, - [2820] = { + [2823] = { ["id"] = "explicit.stat_3395186672", ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", ["type"] = "explicit", }, - [2821] = { + [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", }, - [2822] = { + [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", }, - [2823] = { + [2826] = { ["id"] = "explicit.stat_3065378291", ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", ["type"] = "explicit", }, - [2824] = { + [2827] = { ["id"] = "explicit.stat_4162678661", ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", ["type"] = "explicit", }, - [2825] = { + [2828] = { ["id"] = "explicit.stat_2202308025", ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", ["type"] = "explicit", }, - [2826] = { + [2829] = { ["id"] = "explicit.stat_2954360902", ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", ["type"] = "explicit", }, - [2827] = { + [2830] = { ["id"] = "explicit.stat_30438393", ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", ["type"] = "explicit", }, - [2828] = { + [2831] = { ["id"] = "explicit.stat_378796798", ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", ["type"] = "explicit", }, - [2829] = { + [2832] = { ["id"] = "explicit.stat_1756380435", ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", ["type"] = "explicit", }, - [2830] = { + [2833] = { ["id"] = "explicit.stat_3225608889", ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, - [2831] = { + [2834] = { ["id"] = "explicit.stat_2107703111", ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", ["type"] = "explicit", }, - [2832] = { + [2835] = { ["id"] = "explicit.stat_473917671", ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", ["type"] = "explicit", }, - [2833] = { + [2836] = { ["id"] = "explicit.stat_1404607671", ["text"] = "Soul Eater", ["type"] = "explicit", }, - [2834] = { + [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", }, - [2835] = { + [2838] = { ["id"] = "explicit.stat_2653175601", ["text"] = "Spell Hits Gain #% of Damage as Extra Chaos Damage per Curse on target", ["type"] = "explicit", }, - [2836] = { + [2839] = { ["id"] = "explicit.stat_1548338404", ["text"] = "Spell Hits Gain #% of Damage as Extra Physical Damage per Curse on target", ["type"] = "explicit", }, - [2837] = { + [2840] = { ["id"] = "explicit.stat_2474424958", ["text"] = "Spell Skills have # to maximum number of Summoned Totems", ["type"] = "explicit", }, - [2838] = { + [2841] = { ["id"] = "explicit.stat_1967040409", ["text"] = "Spell Skills have #% increased Area of Effect", ["type"] = "explicit", }, - [2839] = { + [2842] = { ["id"] = "explicit.stat_555706343", ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", ["type"] = "explicit", }, - [2840] = { + [2843] = { ["id"] = "explicit.stat_1013492127", ["text"] = "Spells fire # additional ProjectilesSpells fire Projectiles in a circle", ["type"] = "explicit", }, - [2841] = { + [2844] = { ["id"] = "explicit.stat_1493485657", ["text"] = "Spells have #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, - [2842] = { + [2845] = { ["id"] = "explicit.stat_2348696937", ["text"] = "Spells have a #% chance to inflict Withered for 4 seconds on Hit", ["type"] = "explicit", }, - [2843] = { + [2846] = { ["id"] = "explicit.stat_1088082880", ["text"] = "Spells which cost Life Gain #% of Damage as Extra Physical Damage", ["type"] = "explicit", }, - [2844] = { + [2847] = { ["id"] = "explicit.stat_2230687504", ["text"] = "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", ["type"] = "explicit", }, - [2845] = { + [2848] = { ["id"] = "explicit.stat_3675300253", ["text"] = "Strikes deal Splash Damage", ["type"] = "explicit", }, - [2846] = { + [2849] = { ["id"] = "explicit.stat_3249412463", ["text"] = "Supported Minions' Strikes have Melee Splash", ["type"] = "explicit", }, - [2847] = { + [2850] = { ["id"] = "explicit.stat_3164544692", ["text"] = "Take # Chaos damage per second per Endurance Charge", ["type"] = "explicit", }, - [2848] = { + [2851] = { ["id"] = "explicit.stat_2518598473", ["text"] = "Take # Fire Damage when you Ignite an Enemy", ["type"] = "explicit", }, - [2849] = { + [2852] = { ["id"] = "explicit.stat_3181887481", ["text"] = "Take #% of Mana Costs you pay for Skills as Physical Damage", ["type"] = "explicit", }, - [2850] = { + [2853] = { ["id"] = "explicit.stat_4294267596", ["text"] = "Take no Extra Damage from Critical Hits", ["type"] = "explicit", }, - [2851] = { + [2854] = { ["id"] = "explicit.stat_1755296234", ["text"] = "Targets can be affected by # of your Poisons at the same time", ["type"] = "explicit", }, - [2852] = { + [2855] = { ["id"] = "explicit.stat_3984146263", ["text"] = "Tempest Bells are destroyed after an additional # Hits", ["type"] = "explicit", }, - [2853] = { + [2856] = { ["id"] = "explicit.stat_1058934731", ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", ["type"] = "explicit", }, - [2854] = { + [2857] = { ["id"] = "explicit.stat_3783473032", ["text"] = "The Bodach haunts your Presence", ["type"] = "explicit", }, - [2855] = { + [2858] = { ["id"] = "explicit.stat_1010703902", ["text"] = "The Effect of Blind on you is reversed", ["type"] = "explicit", }, - [2856] = { + [2859] = { ["id"] = "explicit.stat_2955966707", ["text"] = "The Effect of Chill on you is reversed", ["type"] = "explicit", }, - [2857] = { + [2860] = { ["id"] = "explicit.stat_2980117882", ["text"] = "This Flask cannot be Used but applies its Effect constantly", ["type"] = "explicit", }, - [2858] = { + [2861] = { ["id"] = "explicit.stat_3384885789", ["text"] = "This Weapon's Critical Hit Chance is #%", ["type"] = "explicit", }, - [2859] = { + [2862] = { ["id"] = "explicit.stat_2733960806", ["text"] = "This item gains bonuses from Socketed Items as though it was Boots", ["type"] = "explicit", }, - [2860] = { + [2863] = { ["id"] = "explicit.stat_1856590738", ["text"] = "This item gains bonuses from Socketed Items as though it was Gloves", ["type"] = "explicit", }, - [2861] = { + [2864] = { ["id"] = "explicit.stat_1087787187", ["text"] = "This item gains bonuses from Socketed Items as though it was a Body Armour", ["type"] = "explicit", }, - [2862] = { + [2865] = { ["id"] = "explicit.stat_1458343515", ["text"] = "This item gains bonuses from Socketed Items as though it was a Helmet", ["type"] = "explicit", }, - [2863] = { + [2866] = { ["id"] = "explicit.stat_2044810874", ["text"] = "This item gains bonuses from Socketed Items as though it was a Shield", ["type"] = "explicit", }, - [2864] = { + [2867] = { ["id"] = "explicit.stat_150590298", ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also Boots", ["type"] = "explicit", }, - [2865] = { + [2868] = { ["id"] = "explicit.stat_3915618954", ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", ["type"] = "explicit", }, - [2866] = { + [2869] = { ["id"] = "explicit.stat_3773763721", ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", ["type"] = "explicit", }, - [2867] = { + [2870] = { ["id"] = "explicit.stat_231726304", ["text"] = "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", ["type"] = "explicit", }, - [2868] = { + [2871] = { ["id"] = "explicit.stat_3414243317", ["text"] = "Thorns can Retaliate against all Hits", ["type"] = "explicit", }, - [2869] = { + [2872] = { ["id"] = "explicit.stat_3371943724", ["text"] = "Trigger Decompose every 1.2 metres travelled", ["type"] = "explicit", }, - [2870] = { + [2873] = { ["id"] = "explicit.stat_826162720", ["text"] = "Trigger Ember Fusillade Skill on casting a Spell", ["type"] = "explicit", }, - [2871] = { + [2874] = { ["id"] = "explicit.stat_704919631", ["text"] = "Trigger Lightning Bolt Skill on Critical Hit", ["type"] = "explicit", }, - [2872] = { + [2875] = { ["id"] = "explicit.stat_811217923", ["text"] = "Trigger Spark Skill on killing a Shocked Enemy", ["type"] = "explicit", }, - [2873] = { + [2876] = { ["id"] = "explicit.stat_3067892458", ["text"] = "Triggered Spells deal #% increased Spell Damage", ["type"] = "explicit", }, - [2874] = { + [2877] = { ["id"] = "explicit.stat_4007938693", ["text"] = "Triggers Level # Manifest Dancing Dervishes on Rampage", ["type"] = "explicit", }, - [2875] = { + [2878] = { ["id"] = "explicit.stat_3831171903|25", ["text"] = "Trusted Kinship", ["type"] = "explicit", }, - [2876] = { + [2879] = { ["id"] = "explicit.stat_1176947534", ["text"] = "Undead Minions have #% reduced Reservation", ["type"] = "explicit", }, - [2877] = { + [2880] = { ["id"] = "explicit.stat_3371085671", ["text"] = "Unique Monsters have # additional Rare Modifier", ["type"] = "explicit", }, - [2878] = { + [2881] = { ["id"] = "explicit.stat_3371085671", ["text"] = "Unique Monsters in your Maps have # additional Rare Modifier", ["type"] = "explicit", }, - [2879] = { + [2882] = { ["id"] = "explicit.stat_2433436306", ["text"] = "Unstable Breaches have #% increased chance to contain Vruun, Marshal of Xesht", ["type"] = "explicit", }, - [2880] = { + [2883] = { ["id"] = "explicit.stat_3762913035", ["text"] = "Unstable Breaches spawn an additional Rare Monster when Stabilised", ["type"] = "explicit", }, - [2881] = { + [2884] = { ["id"] = "explicit.stat_4104094246", ["text"] = "Unstable Breaches take an additional second to collapse after timer is filled", ["type"] = "explicit", }, - [2882] = { + [2885] = { ["id"] = "explicit.stat_3831171903|3", ["text"] = "Unwavering Stance", ["type"] = "explicit", }, - [2883] = { + [2886] = { ["id"] = "explicit.stat_1683578560", ["text"] = "Unwavering Stance", ["type"] = "explicit", }, - [2884] = { + [2887] = { ["id"] = "explicit.stat_3891355829|2", ["text"] = "Upgrades Radius to Large", ["type"] = "explicit", }, - [2885] = { + [2888] = { ["id"] = "explicit.stat_3891355829|1", ["text"] = "Upgrades Radius to Medium", ["type"] = "explicit", }, - [2886] = { + [2889] = { ["id"] = "explicit.stat_3891355829|3", ["text"] = "Upgrades Radius to Very Large", ["type"] = "explicit", }, - [2887] = { + [2890] = { ["id"] = "explicit.stat_3832076641", ["text"] = "Used when you release a skill with Perfect Timing", ["type"] = "explicit", }, - [2888] = { + [2891] = { ["id"] = "explicit.stat_2777675751", ["text"] = "Using a Mana Flask grants Guard equal to #% of Flask's recovery amount for 4 seconds", ["type"] = "explicit", }, - [2889] = { + [2892] = { ["id"] = "explicit.stat_3831171903|20", ["text"] = "Vaal Pact", ["type"] = "explicit", }, - [2890] = { + [2893] = { ["id"] = "explicit.stat_2257118425", ["text"] = "Vaal Pact", ["type"] = "explicit", }, - [2891] = { + [2894] = { ["id"] = "explicit.stat_1132041585", ["text"] = "Virtuous", ["type"] = "explicit", }, - [2892] = { + [2895] = { ["id"] = "explicit.stat_1434716233", ["text"] = "Warcries Empower an additional Attack", ["type"] = "explicit", }, - [2893] = { + [2896] = { ["id"] = "explicit.stat_11014011", ["text"] = "Warcries Explode Corpses dealing #% of their Life as Physical Damage", ["type"] = "explicit", }, - [2894] = { + [2897] = { ["id"] = "explicit.stat_2567751411", ["text"] = "Warcry Skills have #% increased Area of Effect", ["type"] = "explicit", }, - [2895] = { + [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", }, - [2896] = { + [2899] = { ["id"] = "explicit.stat_447757144", ["text"] = "When you Consume a Charge Trigger Chaotic Surge to gain # Chaos Surge", ["type"] = "explicit", }, - [2897] = { + [2900] = { ["id"] = "explicit.stat_2913235441", ["text"] = "When you kill a Rare monster, you gain its Modifiers for 60 seconds", ["type"] = "explicit", }, - [2898] = { + [2901] = { ["id"] = "explicit.stat_331648983", ["text"] = "When you reload, triggers Gemini Surge to alternatelygain # Cold Surge or # Fire Surge", ["type"] = "explicit", }, - [2899] = { + [2902] = { ["id"] = "explicit.stat_3831171903|11", ["text"] = "Whispers of Doom", ["type"] = "explicit", }, - [2900] = { + [2903] = { ["id"] = "explicit.stat_3831171903|32", ["text"] = "Wildsurge Incantation", ["type"] = "explicit", }, - [2901] = { + [2904] = { ["id"] = "explicit.stat_2626360934", ["text"] = "Wind Skills which can be boosted by Elemental Ground Surfaces countas being boosted by Chilled Ground", ["type"] = "explicit", }, - [2902] = { + [2905] = { ["id"] = "explicit.stat_279110104", ["text"] = "Withered does not expire on Enemies Ignited by you", ["type"] = "explicit", }, - [2903] = { + [2906] = { ["id"] = "explicit.stat_1910297038", ["text"] = "Withered you inflict also increases Fire Damage taken", ["type"] = "explicit", }, - [2904] = { + [2907] = { ["id"] = "explicit.stat_1354656031", ["text"] = "Withered you inflict has infinite Duration", ["type"] = "explicit", }, - [2905] = { + [2908] = { ["id"] = "explicit.stat_2889272422", ["text"] = "Wombgifts have #% chance to drop one Level higher", ["type"] = "explicit", }, - [2906] = { + [2909] = { ["id"] = "explicit.stat_3429986699", ["text"] = "You and Allies in your Presence have #% increased Accuracy Rating", ["type"] = "explicit", }, - [2907] = { + [2910] = { ["id"] = "explicit.stat_3408222535", ["text"] = "You and Allies in your Presence have #% increased Attack Speed", ["type"] = "explicit", }, - [2908] = { + [2911] = { ["id"] = "explicit.stat_281990982", ["text"] = "You and Allies in your Presence have #% increased Cast Speed", ["type"] = "explicit", }, - [2909] = { + [2912] = { ["id"] = "explicit.stat_36954843", ["text"] = "You and Allies in your Presence have #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, - [2910] = { + [2913] = { ["id"] = "explicit.stat_1404134612", ["text"] = "You and Allies in your Presence have #% to Chaos Resistance", ["type"] = "explicit", }, - [2911] = { + [2914] = { ["id"] = "explicit.stat_3774577097", ["text"] = "You are Blind", ["type"] = "explicit", }, - [2912] = { + [2915] = { ["id"] = "explicit.stat_356835700", ["text"] = "You are considered on Low Life while at #% of maximum Life or below instead", ["type"] = "explicit", }, - [2913] = { + [2916] = { ["id"] = "explicit.stat_664024640", ["text"] = "You can Socket an additional copy of each Lineage Support Gem, in different Skills", ["type"] = "explicit", }, - [2914] = { + [2917] = { ["id"] = "explicit.stat_30642521", ["text"] = "You can apply # additional Curses", ["type"] = "explicit", }, - [2915] = { + [2918] = { ["id"] = "explicit.stat_603573028", ["text"] = "You can have any number of Companions of different types", ["type"] = "explicit", }, - [2916] = { + [2919] = { ["id"] = "explicit.stat_1888024332", ["text"] = "You can have two Companions of different types", ["type"] = "explicit", }, - [2917] = { + [2920] = { ["id"] = "explicit.stat_3598729471", ["text"] = "You can only Socket Emerald Jewels in this item", ["type"] = "explicit", }, - [2918] = { + [2921] = { ["id"] = "explicit.stat_4031148736", ["text"] = "You can only Socket Ruby Jewels in this item", ["type"] = "explicit", }, - [2919] = { + [2922] = { ["id"] = "explicit.stat_21302430", ["text"] = "You can only Socket Sapphire Jewels in this item", ["type"] = "explicit", }, - [2920] = { + [2923] = { ["id"] = "explicit.stat_3635316831", ["text"] = "You can wield Two-Handed Axes, Maces and Swords in one hand", ["type"] = "explicit", }, - [2921] = { + [2924] = { ["id"] = "explicit.stat_1536107934", ["text"] = "You cannot Sprint", ["type"] = "explicit", }, - [2922] = { + [2925] = { ["id"] = "explicit.stat_2306924373", ["text"] = "You cannot be Chilled for # second after being Chilled", ["type"] = "explicit", }, - [2923] = { + [2926] = { ["id"] = "explicit.stat_2996245527", ["text"] = "You cannot be Chilled or Frozen", ["type"] = "explicit", }, - [2924] = { + [2927] = { ["id"] = "explicit.stat_3612464552", ["text"] = "You cannot be Frozen for # second after being Frozen", ["type"] = "explicit", }, - [2925] = { + [2928] = { ["id"] = "explicit.stat_947072590", ["text"] = "You cannot be Ignited for # second after being Ignited", ["type"] = "explicit", }, - [2926] = { + [2929] = { ["id"] = "explicit.stat_215346464", ["text"] = "You cannot be Shocked for # second after being Shocked", ["type"] = "explicit", }, - [2927] = { + [2930] = { ["id"] = "explicit.stat_423304126", ["text"] = "You count as on Full Mana while at #% of maximum Mana or above", ["type"] = "explicit", }, - [2928] = { + [2931] = { ["id"] = "explicit.stat_3154256486", ["text"] = "You count as on Low Life while at #% of maximum Mana or below", ["type"] = "explicit", }, - [2929] = { + [2932] = { ["id"] = "explicit.stat_1143240184", ["text"] = "You count as on Low Mana while at #% of maximum Life or below", ["type"] = "explicit", }, - [2930] = { + [2933] = { ["id"] = "explicit.stat_1195849808", ["text"] = "You gain Onslaught for # seconds on Kill", ["type"] = "explicit", }, - [2931] = { + [2934] = { ["id"] = "explicit.stat_1736538865", ["text"] = "You have Consecrated Ground around you while stationary", ["type"] = "explicit", }, - [2932] = { + [2935] = { ["id"] = "explicit.stat_3007552094", ["text"] = "You have Unholy Might", ["type"] = "explicit", }, - [2933] = { + [2936] = { ["id"] = "explicit.stat_2592455368", ["text"] = "You have a Smoke Cloud around you while stationary", ["type"] = "explicit", }, - [2934] = { + [2937] = { ["id"] = "explicit.stat_3070990531", ["text"] = "You have no Accuracy Penalty at Distance", ["type"] = "explicit", }, - [2935] = { + [2938] = { ["id"] = "explicit.stat_4058681894", ["text"] = "You have no Critical Damage Bonus", ["type"] = "explicit", }, - [2936] = { + [2939] = { ["id"] = "explicit.stat_1776968075", ["text"] = "You have no Elemental Resistances", ["type"] = "explicit", }, - [2937] = { + [2940] = { ["id"] = "explicit.stat_854225133", ["text"] = "You have no Life Regeneration", ["type"] = "explicit", }, - [2938] = { + [2941] = { ["id"] = "explicit.stat_3148264775", ["text"] = "You have no Spirit", ["type"] = "explicit", }, - [2939] = { + [2942] = { ["id"] = "explicit.stat_2350411833", ["text"] = "You lose #% of maximum Energy Shield per second", ["type"] = "explicit", }, - [2940] = { + [2943] = { ["id"] = "explicit.stat_2905515354", ["text"] = "You take #% of damage from Blocked Hits", ["type"] = "explicit", }, - [2941] = { + [2944] = { ["id"] = "explicit.stat_3694078435", ["text"] = "You take #% of damage from Blocked Hits with a raised Shield", ["type"] = "explicit", }, - [2942] = { + [2945] = { ["id"] = "explicit.stat_2022332470", ["text"] = "You take Fire Damage instead of Physical Damage from Bleeding", ["type"] = "explicit", }, - [2943] = { + [2946] = { ["id"] = "explicit.stat_2516303866", ["text"] = "Your Critical Damage Bonus is 250%", ["type"] = "explicit", }, - [2944] = { + [2947] = { ["id"] = "explicit.stat_4159551976", ["text"] = "Your Critical Hit Chance cannot be Rerolled", ["type"] = "explicit", }, - [2945] = { + [2948] = { ["id"] = "explicit.stat_886088880", ["text"] = "Your Heavy Stun buildup empties #% faster", ["type"] = "explicit", }, - [2946] = { + [2949] = { ["id"] = "explicit.stat_2890792988", ["text"] = "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", ["type"] = "explicit", }, - [2947] = { + [2950] = { ["id"] = "explicit.stat_2397460217", ["text"] = "Your Life Flask also applies to your Minions", ["type"] = "explicit", }, - [2948] = { + [2951] = { ["id"] = "explicit.stat_3550168289", ["text"] = "Your Maps are inhabited by # additional Rogue Exile", ["type"] = "explicit", }, - [2949] = { + [2952] = { ["id"] = "explicit.stat_3240183538", ["text"] = "Your Maps contain # additional Strongboxes", ["type"] = "explicit", }, - [2950] = { + [2953] = { ["id"] = "explicit.stat_1070816711", ["text"] = "Your Maps contain an additional Abyss", ["type"] = "explicit", }, - [2951] = { + [2954] = { ["id"] = "explicit.stat_395808938", ["text"] = "Your Maps contain an additional Essence", ["type"] = "explicit", }, - [2952] = { + [2955] = { ["id"] = "explicit.stat_231864447", ["text"] = "Your Maps contain an additional Rare Chest", ["type"] = "explicit", }, - [2953] = { + [2956] = { ["id"] = "explicit.stat_1468737867", ["text"] = "Your Maps contain an additional Shrine", ["type"] = "explicit", }, - [2954] = { + [2957] = { ["id"] = "explicit.stat_588512487", ["text"] = "Your Maps have # additional random Modifier", ["type"] = "explicit", }, - [2955] = { + [2958] = { ["id"] = "explicit.stat_2571125745", ["text"] = "Your Maps have #% chance to contain a Shrine", ["type"] = "explicit", }, - [2956] = { + [2959] = { ["id"] = "explicit.stat_2388936716", ["text"] = "Your Maps have #% chance to contain a Strongbox", ["type"] = "explicit", }, - [2957] = { + [2960] = { ["id"] = "explicit.stat_4098286334", ["text"] = "Your Maps have #% chance to contain an Essence", ["type"] = "explicit", }, - [2958] = { + [2961] = { ["id"] = "explicit.stat_3049505189", ["text"] = "Your Maps which contain Breaches have #% chance to contain an additional Breach", ["type"] = "explicit", }, - [2959] = { + [2962] = { ["id"] = "explicit.stat_2440265466", ["text"] = "Your Maps which contain Breaches have #% chance to contain three additional Breaches", ["type"] = "explicit", }, - [2960] = { + [2963] = { ["id"] = "explicit.stat_1265767008", ["text"] = "Your Minions are Gigantic if they have Revived Recently", ["type"] = "explicit", }, - [2961] = { + [2964] = { ["id"] = "explicit.stat_3091132047", ["text"] = "Your base Energy Shield Recharge Delay is # second", ["type"] = "explicit", }, - [2962] = { + [2965] = { ["id"] = "explicit.stat_758226825", ["text"] = "Your maximum Energy Shield is equal to #% of your Strength", ["type"] = "explicit", }, - [2963] = { + [2966] = { ["id"] = "explicit.stat_3128773415", ["text"] = "Your speed is Unaffected by Slows while Sprinting", ["type"] = "explicit", }, - [2964] = { + [2967] = { ["id"] = "explicit.stat_50721145", ["text"] = "Your speed is unaffected by Slows", ["type"] = "explicit", }, - [2965] = { - ["id"] = "explicit.stat_3831171903|33", + [2968] = { + ["id"] = "explicit.stat_1315418254", ["text"] = "Zealot's Oath", ["type"] = "explicit", }, - [2966] = { - ["id"] = "explicit.stat_1315418254", + [2969] = { + ["id"] = "explicit.stat_3831171903|33", ["text"] = "Zealot's Oath", ["type"] = "explicit", }, @@ -21790,996 +21805,1056 @@ return { ["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", }, - [92] = { + [93] = { ["id"] = "crafted.stat_1742651309", ["text"] = "#% of Fire Damage taken Recouped as Life", ["type"] = "crafted", }, - [93] = { + [94] = { ["id"] = "crafted.stat_2970621759", ["text"] = "#% of Lightning Damage taken Recouped as Life", ["type"] = "crafted", }, - [94] = { + [95] = { ["id"] = "crafted.stat_4129825612", ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", ["type"] = "crafted", }, - [95] = { + [96] = { ["id"] = "crafted.stat_2480498143", ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "crafted", }, - [96] = { + [97] = { ["id"] = "crafted.stat_2923486259", ["text"] = "#% to Chaos Resistance", ["type"] = "crafted", }, - [97] = { + [98] = { ["id"] = "crafted.stat_4220027924", ["text"] = "#% to Cold Resistance", ["type"] = "crafted", }, - [98] = { + [99] = { ["id"] = "crafted.stat_518292764", ["text"] = "#% to Critical Hit Chance", ["type"] = "crafted", }, - [99] = { + [100] = { ["id"] = "crafted.stat_3372524247", ["text"] = "#% to Fire Resistance", ["type"] = "crafted", }, - [100] = { + [101] = { ["id"] = "crafted.stat_3399401168", ["text"] = "#% to Fire Spell Critical Hit Chance", ["type"] = "crafted", }, - [101] = { + [102] = { ["id"] = "crafted.stat_1671376347", ["text"] = "#% to Lightning Resistance", ["type"] = "crafted", }, - [102] = { + [103] = { ["id"] = "crafted.stat_4095671657", ["text"] = "#% to Maximum Fire Resistance", ["type"] = "crafted", }, - [103] = { + [104] = { ["id"] = "crafted.stat_2039822488", ["text"] = "#% to Maximum Quality", ["type"] = "crafted", }, - [104] = { + [105] = { ["id"] = "crafted.stat_933355817", ["text"] = "#% to gain Archon of Undeath when you create an Offering", ["type"] = "crafted", }, - [105] = { + [106] = { ["id"] = "crafted.stat_1484026495", ["text"] = "+# maximum stacks of Puppet Master", ["type"] = "crafted", }, - [106] = { + [107] = { ["id"] = "crafted.stat_2223678961", ["text"] = "Adds # to # Chaos damage", ["type"] = "crafted", }, - [107] = { + [108] = { ["id"] = "crafted.stat_1037193709", ["text"] = "Adds # to # Cold Damage", ["type"] = "crafted", }, - [108] = { + [109] = { ["id"] = "crafted.stat_709508406", ["text"] = "Adds # to # Fire Damage", ["type"] = "crafted", }, - [109] = { + [110] = { ["id"] = "crafted.stat_3336890334", ["text"] = "Adds # to # Lightning Damage", ["type"] = "crafted", }, - [110] = { + [111] = { ["id"] = "crafted.stat_1940865751", ["text"] = "Adds # to # Physical Damage", ["type"] = "crafted", }, - [111] = { + [112] = { ["id"] = "crafted.stat_1798257884", ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "crafted", }, - [112] = { + [113] = { ["id"] = "crafted.stat_2954116742|43829", ["text"] = "Allocates Advanced Munitions", ["type"] = "crafted", }, - [113] = { + [114] = { ["id"] = "crafted.stat_2954116742|56493", ["text"] = "Allocates Agile Succession", ["type"] = "crafted", }, - [114] = { + [115] = { ["id"] = "crafted.stat_2954116742|26339", ["text"] = "Allocates Ancestral Artifice", ["type"] = "crafted", }, - [115] = { + [116] = { ["id"] = "crafted.stat_2954116742|5728", ["text"] = "Allocates Ancient Aegis", ["type"] = "crafted", }, - [116] = { + [117] = { ["id"] = "crafted.stat_2954116742|16940", ["text"] = "Allocates Arcane Nature", ["type"] = "crafted", }, - [117] = { + [118] = { ["id"] = "crafted.stat_2954116742|41620", ["text"] = "Allocates Bear's Roar", ["type"] = "crafted", }, - [118] = { + [119] = { ["id"] = "crafted.stat_2954116742|42177", ["text"] = "Allocates Blurred Motion", ["type"] = "crafted", }, - [119] = { + [120] = { ["id"] = "crafted.stat_2954116742|52618", ["text"] = "Allocates Boon of the Beast", ["type"] = "crafted", }, - [120] = { + [121] = { ["id"] = "crafted.stat_2954116742|9535", ["text"] = "Allocates Brinerot Ferocity", ["type"] = "crafted", }, - [121] = { + [122] = { ["id"] = "crafted.stat_2954116742|44005", ["text"] = "Allocates Casting Cascade", ["type"] = "crafted", }, - [122] = { + [123] = { ["id"] = "crafted.stat_2954116742|35031", ["text"] = "Allocates Chakra of Life", ["type"] = "crafted", }, - [123] = { + [124] = { ["id"] = "crafted.stat_2954116742|23427", ["text"] = "Allocates Chilled to the Bone", ["type"] = "crafted", }, - [124] = { + [125] = { ["id"] = "crafted.stat_2954116742|47363", ["text"] = "Allocates Colossal Weapon", ["type"] = "crafted", }, - [125] = { + [126] = { ["id"] = "crafted.stat_2954116742|42660", ["text"] = "Allocates Commanding Rage", ["type"] = "crafted", }, - [126] = { + [127] = { ["id"] = "crafted.stat_2954116742|27761", ["text"] = "Allocates Counterstancing", ["type"] = "crafted", }, - [127] = { + [128] = { ["id"] = "crafted.stat_2954116742|50687", ["text"] = "Allocates Coursing Energy", ["type"] = "crafted", }, - [128] = { + [129] = { ["id"] = "crafted.stat_2954116742|19715", ["text"] = "Allocates Cremation", ["type"] = "crafted", }, - [129] = { + [130] = { ["id"] = "crafted.stat_2954116742|18505", ["text"] = "Allocates Crushing Verdict", ["type"] = "crafted", }, - [130] = { + [131] = { ["id"] = "crafted.stat_2954116742|20495", ["text"] = "Allocates Dark Entropy", ["type"] = "crafted", }, - [131] = { + [132] = { ["id"] = "crafted.stat_2954116742|45612", ["text"] = "Allocates Defensive Reflexes", ["type"] = "crafted", }, - [132] = { + [133] = { ["id"] = "crafted.stat_2954116742|56616", ["text"] = "Allocates Desperate Times", ["type"] = "crafted", }, - [133] = { + [134] = { ["id"] = "crafted.stat_2954116742|1420", ["text"] = "Allocates Dizzying Sweep", ["type"] = "crafted", }, - [134] = { + [135] = { ["id"] = "crafted.stat_2954116742|26214", ["text"] = "Allocates Dominion", ["type"] = "crafted", }, - [135] = { + [136] = { ["id"] = "crafted.stat_2954116742|42245", ["text"] = "Allocates Efficient Inscriptions", ["type"] = "crafted", }, - [136] = { + [137] = { ["id"] = "crafted.stat_2954116742|3894", ["text"] = "Allocates Eldritch Will", ["type"] = "crafted", }, - [137] = { + [138] = { ["id"] = "crafted.stat_2954116742|43633", ["text"] = "Allocates Energising Archon", ["type"] = "crafted", }, - [138] = { + [139] = { ["id"] = "crafted.stat_2954116742|17854", ["text"] = "Allocates Escape Velocity", ["type"] = "crafted", }, - [139] = { + [140] = { ["id"] = "crafted.stat_2954116742|60034", ["text"] = "Allocates Falcon Dive", ["type"] = "crafted", }, - [140] = { + [141] = { ["id"] = "crafted.stat_2954116742|60464", ["text"] = "Allocates Fan the Flames", ["type"] = "crafted", }, - [141] = { + [142] = { ["id"] = "crafted.stat_2954116742|3921", ["text"] = "Allocates Fate Finding", ["type"] = "crafted", }, - [142] = { + [143] = { + ["id"] = "crafted.stat_2954116742|43584", + ["text"] = "Allocates Flare", + ["type"] = "crafted", + }, + [144] = { ["id"] = "crafted.stat_2954116742|32128", ["text"] = "Allocates Flow of Time", ["type"] = "crafted", }, - [143] = { + [145] = { ["id"] = "crafted.stat_2954116742|48699", ["text"] = "Allocates Frostwalker", ["type"] = "crafted", }, - [144] = { + [146] = { ["id"] = "crafted.stat_2954116742|37543", ["text"] = "Allocates Full Recovery", ["type"] = "crafted", }, - [145] = { + [147] = { + ["id"] = "crafted.stat_2954116742|56488", + ["text"] = "Allocates Glancing Deflection", + ["type"] = "crafted", + }, + [148] = { ["id"] = "crafted.stat_2954116742|58714", ["text"] = "Allocates Grenadier", ["type"] = "crafted", }, - [146] = { + [149] = { ["id"] = "crafted.stat_2954116742|13844", ["text"] = "Allocates Growing Peril", ["type"] = "crafted", }, - [147] = { + [150] = { ["id"] = "crafted.stat_2954116742|52803", ["text"] = "Allocates Hale Traveller", ["type"] = "crafted", }, - [148] = { + [151] = { ["id"] = "crafted.stat_2954116742|34531", ["text"] = "Allocates Hallowed", ["type"] = "crafted", }, - [149] = { + [152] = { ["id"] = "crafted.stat_2954116742|40480", ["text"] = "Allocates Harmonic Generator", ["type"] = "crafted", }, - [150] = { + [153] = { ["id"] = "crafted.stat_2954116742|44293", ["text"] = "Allocates Hastening Barrier", ["type"] = "crafted", }, - [151] = { + [154] = { + ["id"] = "crafted.stat_2954116742|35966", + ["text"] = "Allocates Heart Tissue", + ["type"] = "crafted", + }, + [155] = { ["id"] = "crafted.stat_2954116742|13407", ["text"] = "Allocates Heartbreaking", ["type"] = "crafted", }, - [152] = { + [156] = { ["id"] = "crafted.stat_2954116742|38537", ["text"] = "Allocates Heartstopping", ["type"] = "crafted", }, - [153] = { + [157] = { ["id"] = "crafted.stat_2954116742|11826", ["text"] = "Allocates Heavy Ammunition", ["type"] = "crafted", }, - [154] = { + [158] = { + ["id"] = "crafted.stat_2954116742|27491", + ["text"] = "Allocates Heavy Buffer", + ["type"] = "crafted", + }, + [159] = { ["id"] = "crafted.stat_2954116742|30395", ["text"] = "Allocates Howling Beast", ["type"] = "crafted", }, - [155] = { + [160] = { ["id"] = "crafted.stat_2954116742|48617", ["text"] = "Allocates Hunter", ["type"] = "crafted", }, - [156] = { + [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", }, - [157] = { + [163] = { ["id"] = "crafted.stat_2954116742|30562", ["text"] = "Allocates Inner Faith", ["type"] = "crafted", }, - [158] = { + [164] = { ["id"] = "crafted.stat_2954116742|4661", ["text"] = "Allocates Inspiring Leader", ["type"] = "crafted", }, - [159] = { + [165] = { ["id"] = "crafted.stat_2954116742|41394", ["text"] = "Allocates Invigorating Archon", ["type"] = "crafted", }, - [160] = { + [166] = { ["id"] = "crafted.stat_2954116742|18496", ["text"] = "Allocates Lasting Trauma", ["type"] = "crafted", }, - [161] = { + [167] = { ["id"] = "crafted.stat_2954116742|31745", ["text"] = "Allocates Lockdown", ["type"] = "crafted", }, - [162] = { + [168] = { ["id"] = "crafted.stat_2954116742|23738", ["text"] = "Allocates Madness in the Bones", ["type"] = "crafted", }, - [163] = { + [169] = { + ["id"] = "crafted.stat_2954116742|39568", + ["text"] = "Allocates Magnum Opus", + ["type"] = "crafted", + }, + [170] = { ["id"] = "crafted.stat_2954116742|37742", ["text"] = "Allocates Manifold Method", ["type"] = "crafted", }, - [164] = { + [171] = { ["id"] = "crafted.stat_2954116742|64050", ["text"] = "Allocates Marathon Runner", ["type"] = "crafted", }, - [165] = { + [172] = { ["id"] = "crafted.stat_2954116742|9226", ["text"] = "Allocates Mental Perseverance", ["type"] = "crafted", }, - [166] = { + [173] = { ["id"] = "crafted.stat_2954116742|24120", ["text"] = "Allocates Mental Toughness", ["type"] = "crafted", }, - [167] = { + [174] = { ["id"] = "crafted.stat_2954116742|51868", ["text"] = "Allocates Molten Carapace", ["type"] = "crafted", }, - [168] = { + [175] = { ["id"] = "crafted.stat_2954116742|52764", ["text"] = "Allocates Mystical Rage", ["type"] = "crafted", }, - [169] = { + [176] = { ["id"] = "crafted.stat_2954116742|11376", ["text"] = "Allocates Necrotic Touch", ["type"] = "crafted", }, - [170] = { + [177] = { ["id"] = "crafted.stat_2954116742|60992", ["text"] = "Allocates Nurturing Guardian", ["type"] = "crafted", }, - [171] = { + [178] = { ["id"] = "crafted.stat_2954116742|52199", ["text"] = "Allocates Overexposure", ["type"] = "crafted", }, - [172] = { + [179] = { ["id"] = "crafted.stat_2954116742|65204", ["text"] = "Allocates Overflowing Power", ["type"] = "crafted", }, - [173] = { + [180] = { ["id"] = "crafted.stat_2954116742|20686", ["text"] = "Allocates Paragon", ["type"] = "crafted", }, - [174] = { + [181] = { ["id"] = "crafted.stat_2954116742|17260", ["text"] = "Allocates Piercing Claw", ["type"] = "crafted", }, - [175] = { + [182] = { ["id"] = "crafted.stat_2954116742|19125", ["text"] = "Allocates Potent Incantation", ["type"] = "crafted", }, - [176] = { + [183] = { ["id"] = "crafted.stat_2954116742|6178", ["text"] = "Allocates Power Shots", ["type"] = "crafted", }, - [177] = { + [184] = { ["id"] = "crafted.stat_2954116742|49550", ["text"] = "Allocates Prolonged Fury", ["type"] = "crafted", }, - [178] = { + [185] = { ["id"] = "crafted.stat_2954116742|13482", ["text"] = "Allocates Punctured Lung", ["type"] = "crafted", }, - [179] = { + [186] = { ["id"] = "crafted.stat_2954116742|62185", ["text"] = "Allocates Rattled", ["type"] = "crafted", }, - [180] = { + [187] = { ["id"] = "crafted.stat_2954116742|35809", ["text"] = "Allocates Reinvigoration", ["type"] = "crafted", }, - [181] = { + [188] = { ["id"] = "crafted.stat_2954116742|20414", ["text"] = "Allocates Reprisal", ["type"] = "crafted", }, - [182] = { + [189] = { ["id"] = "crafted.stat_2954116742|56860", ["text"] = "Allocates Resolute Reprisal", ["type"] = "crafted", }, - [183] = { + [190] = { ["id"] = "crafted.stat_2954116742|38972", ["text"] = "Allocates Restless Dead", ["type"] = "crafted", }, - [184] = { + [191] = { ["id"] = "crafted.stat_2954116742|61112", ["text"] = "Allocates Roll and Strike", ["type"] = "crafted", }, - [185] = { + [192] = { ["id"] = "crafted.stat_2954116742|9290", ["text"] = "Allocates Rusted Pins", ["type"] = "crafted", }, - [186] = { + [193] = { ["id"] = "crafted.stat_2954116742|14294", ["text"] = "Allocates Sacrificial Blood", ["type"] = "crafted", }, - [187] = { + [194] = { ["id"] = "crafted.stat_2954116742|4810", ["text"] = "Allocates Sanguine Tolerance", ["type"] = "crafted", }, - [188] = { + [195] = { ["id"] = "crafted.stat_2954116742|36085", ["text"] = "Allocates Serrated Edges", ["type"] = "crafted", }, - [189] = { + [196] = { ["id"] = "crafted.stat_2954116742|57617", ["text"] = "Allocates Shifted Strikes", ["type"] = "crafted", }, - [190] = { + [197] = { + ["id"] = "crafted.stat_2954116742|29800", + ["text"] = "Allocates Shocking Limit", + ["type"] = "crafted", + }, + [198] = { ["id"] = "crafted.stat_2954116742|17229", ["text"] = "Allocates Silent Guardian", ["type"] = "crafted", }, - [191] = { + [199] = { + ["id"] = "crafted.stat_2954116742|52392", + ["text"] = "Allocates Singular Purpose", + ["type"] = "crafted", + }, + [200] = { ["id"] = "crafted.stat_2954116742|55308", ["text"] = "Allocates Sling Shots", ["type"] = "crafted", }, - [192] = { + [201] = { ["id"] = "crafted.stat_2954116742|14602", ["text"] = "Allocates Specialised Shots", ["type"] = "crafted", }, - [193] = { + [202] = { ["id"] = "crafted.stat_2954116742|34324", ["text"] = "Allocates Spectral Ward", ["type"] = "crafted", }, - [194] = { + [203] = { ["id"] = "crafted.stat_2954116742|26104", ["text"] = "Allocates Spirit of the Wyvern", ["type"] = "crafted", }, - [195] = { + [204] = { ["id"] = "crafted.stat_2954116742|11578", ["text"] = "Allocates Spreading Shocks", ["type"] = "crafted", }, - [196] = { + [205] = { ["id"] = "crafted.stat_2954116742|6304", ["text"] = "Allocates Stand Ground", ["type"] = "crafted", }, - [197] = { + [206] = { ["id"] = "crafted.stat_2954116742|7163", ["text"] = "Allocates Stimulants", ["type"] = "crafted", }, - [198] = { + [207] = { ["id"] = "crafted.stat_2954116742|61921", ["text"] = "Allocates Storm Surge", ["type"] = "crafted", }, - [199] = { + [208] = { ["id"] = "crafted.stat_2954116742|45177", ["text"] = "Allocates Strike True", ["type"] = "crafted", }, - [200] = { + [209] = { ["id"] = "crafted.stat_2954116742|14383", ["text"] = "Allocates Suffusion", ["type"] = "crafted", }, - [201] = { + [210] = { ["id"] = "crafted.stat_2954116742|56806", ["text"] = "Allocates Swift Blocking", ["type"] = "crafted", }, - [202] = { + [211] = { ["id"] = "crafted.stat_2954116742|8831", ["text"] = "Allocates Tempered Mind", ["type"] = "crafted", }, - [203] = { + [212] = { ["id"] = "crafted.stat_2954116742|4544", ["text"] = "Allocates The Ancient Serpent", ["type"] = "crafted", }, - [204] = { + [213] = { ["id"] = "crafted.stat_2954116742|2745", ["text"] = "Allocates The Noble Wolf", ["type"] = "crafted", }, - [205] = { + [214] = { ["id"] = "crafted.stat_2954116742|52971", ["text"] = "Allocates The Soul Meridian", ["type"] = "crafted", }, - [206] = { + [215] = { ["id"] = "crafted.stat_2954116742|11774", ["text"] = "Allocates The Spring Hare", ["type"] = "crafted", }, - [207] = { + [216] = { ["id"] = "crafted.stat_2954116742|35849", ["text"] = "Allocates Thickened Arteries", ["type"] = "crafted", }, - [208] = { + [217] = { ["id"] = "crafted.stat_2954116742|38532", ["text"] = "Allocates Thirst for Power", ["type"] = "crafted", }, - [209] = { + [218] = { ["id"] = "crafted.stat_2954116742|42714", ["text"] = "Allocates Thousand Cuts", ["type"] = "crafted", }, - [210] = { + [219] = { ["id"] = "crafted.stat_2954116742|57785", ["text"] = "Allocates Trained Turrets", ["type"] = "crafted", }, - [211] = { + [220] = { ["id"] = "crafted.stat_2954116742|61601", ["text"] = "Allocates True Strike", ["type"] = "crafted", }, - [212] = { + [221] = { ["id"] = "crafted.stat_2954116742|20008", ["text"] = "Allocates Unleash Fire", ["type"] = "crafted", }, - [213] = { + [222] = { ["id"] = "crafted.stat_2954116742|4547", ["text"] = "Allocates Unnatural Resilience", ["type"] = "crafted", }, - [214] = { + [223] = { ["id"] = "crafted.stat_2954116742|51602", ["text"] = "Allocates Unsight", ["type"] = "crafted", }, - [215] = { + [224] = { ["id"] = "crafted.stat_2954116742|1169", ["text"] = "Allocates Urgent Call", ["type"] = "crafted", }, - [216] = { + [225] = { ["id"] = "crafted.stat_2954116742|41033", ["text"] = "Allocates Utmost Offering", ["type"] = "crafted", }, - [217] = { + [226] = { ["id"] = "crafted.stat_2954116742|17762", ["text"] = "Allocates Vengeance", ["type"] = "crafted", }, - [218] = { + [227] = { ["id"] = "crafted.stat_2954116742|4238", ["text"] = "Allocates Versatile Arms", ["type"] = "crafted", }, - [219] = { + [228] = { ["id"] = "crafted.stat_2954116742|31373", ["text"] = "Allocates Vocal Empowerment", ["type"] = "crafted", }, - [220] = { + [229] = { + ["id"] = "crafted.stat_2954116742|11366", + ["text"] = "Allocates Volcanic Skin", + ["type"] = "crafted", + }, + [230] = { ["id"] = "crafted.stat_2954116742|14761", ["text"] = "Allocates Warlord Leader", ["type"] = "crafted", }, - [221] = { + [231] = { ["id"] = "crafted.stat_2954116742|51213", ["text"] = "Allocates Wasting", ["type"] = "crafted", }, - [222] = { + [232] = { ["id"] = "crafted.stat_2954116742|65256", ["text"] = "Allocates Widespread Coverage", ["type"] = "crafted", }, - [223] = { + [233] = { ["id"] = "crafted.stat_2954116742|7809", ["text"] = "Allocates Wild Storm", ["type"] = "crafted", }, - [224] = { + [234] = { ["id"] = "crafted.stat_315791320", ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "crafted", }, - [225] = { + [235] = { ["id"] = "crafted.stat_335885735", ["text"] = "Bears the Mark of the Abyssal Lord", ["type"] = "crafted", }, - [226] = { + [236] = { ["id"] = "crafted.stat_3587953142", ["text"] = "Blind Enemies on Hit while you have a Ruby and a Sapphire socketed in your tree", ["type"] = "crafted", }, - [227] = { + [237] = { ["id"] = "crafted.stat_2101383955", ["text"] = "Damage Penetrates #% Elemental Resistances", ["type"] = "crafted", }, - [228] = { + [238] = { ["id"] = "crafted.stat_541021467", ["text"] = "Debilitate Enemies on Hit while you have an Emerald and a Sapphire socketed in your tree", ["type"] = "crafted", }, - [229] = { + [239] = { ["id"] = "crafted.stat_2709367754", ["text"] = "Gain # Rage on Melee Hit", ["type"] = "crafted", }, - [230] = { + [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", }, - [231] = { + [242] = { ["id"] = "crafted.stat_825116955", ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", ["type"] = "crafted", }, - [232] = { + [243] = { ["id"] = "crafted.stat_3015669065", ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "crafted", }, - [233] = { + [244] = { ["id"] = "crafted.stat_589361270", ["text"] = "Gain #% of Damage as Extra Fire Damage while you are missing Runic Ward", ["type"] = "crafted", }, - [234] = { + [245] = { ["id"] = "crafted.stat_3278136794", ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "crafted", }, - [235] = { + [246] = { ["id"] = "crafted.stat_323800555", ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", ["type"] = "crafted", }, - [236] = { + [247] = { ["id"] = "crafted.stat_4019237939", ["text"] = "Gain #% of Damage as Extra Physical Damage", ["type"] = "crafted", }, - [237] = { + [248] = { ["id"] = "crafted.stat_1158842087", ["text"] = "Gain #% of Elemental Damage as Extra Cold Damage", ["type"] = "crafted", }, - [238] = { + [249] = { ["id"] = "crafted.stat_758893621", ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", ["type"] = "crafted", }, - [239] = { + [250] = { ["id"] = "crafted.stat_3855016469", ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "crafted", }, - [240] = { + [251] = { ["id"] = "crafted.stat_971590056", ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", ["type"] = "crafted", }, - [241] = { + [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", }, - [242] = { + [253] = { ["id"] = "crafted.stat_1615901249", ["text"] = "Invocated skills have #% increased Maximum Energy", ["type"] = "crafted", }, - [243] = { + [254] = { ["id"] = "crafted.stat_3121133045", ["text"] = "Lightning Damage from Hits also Contributes to Flammability and Ignite Magnitudes", ["type"] = "crafted", }, - [244] = { + [255] = { ["id"] = "crafted.stat_195270549", ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", ["type"] = "crafted", }, - [245] = { + [256] = { ["id"] = "crafted.stat_1797815732", ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", ["type"] = "crafted", }, - [246] = { + [257] = { ["id"] = "crafted.stat_1691403182", ["text"] = "Minions have #% increased Cooldown Recovery Rate", ["type"] = "crafted", }, - [247] = { + [258] = { ["id"] = "crafted.stat_953593695", ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", ["type"] = "crafted", }, - [248] = { + [259] = { ["id"] = "crafted.stat_73032170", ["text"] = "Minions have #% increased Skill Speed with Command Skills", ["type"] = "crafted", }, - [249] = { + [260] = { ["id"] = "crafted.stat_1846980580", ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "crafted", }, - [250] = { + [261] = { ["id"] = "crafted.stat_3391917254", ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", ["type"] = "crafted", }, - [251] = { + [262] = { ["id"] = "crafted.stat_2822644689", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", ["type"] = "crafted", }, - [252] = { + [263] = { ["id"] = "crafted.stat_1022759479", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", ["type"] = "crafted", }, - [253] = { + [264] = { ["id"] = "crafted.stat_2149603090", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", ["type"] = "crafted", }, - [254] = { + [265] = { ["id"] = "crafted.stat_1352561456", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "crafted", }, - [255] = { + [266] = { ["id"] = "crafted.stat_3865605585", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "crafted", }, - [256] = { + [267] = { ["id"] = "crafted.stat_2704905000", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", ["type"] = "crafted", }, - [257] = { + [268] = { ["id"] = "crafted.stat_2466785537", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", ["type"] = "crafted", }, - [258] = { + [269] = { ["id"] = "crafted.stat_1185341308", ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", ["type"] = "crafted", }, - [259] = { + [270] = { ["id"] = "crafted.stat_844449513", ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "crafted", }, - [260] = { + [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", }, - [261] = { + [273] = { ["id"] = "crafted.stat_2969557004", ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", ["type"] = "crafted", }, - [262] = { + [274] = { ["id"] = "crafted.stat_2726713579", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", ["type"] = "crafted", }, - [263] = { + [275] = { ["id"] = "crafted.stat_525523040", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "crafted", }, - [264] = { + [276] = { ["id"] = "crafted.stat_3191479793", ["text"] = "Offering Skills have #% increased Buff effect", ["type"] = "crafted", }, - [265] = { + [277] = { ["id"] = "crafted.stat_4215035940", ["text"] = "On Corruption, Item gains two Enchantments", ["type"] = "crafted", }, - [266] = { + [278] = { ["id"] = "crafted.stat_554145967", ["text"] = "Recover # Runic Ward when a Charm is used", ["type"] = "crafted", }, - [267] = { + [279] = { ["id"] = "crafted.stat_1568848828", ["text"] = "Recover # Runic Ward when you Block", ["type"] = "crafted", }, - [268] = { + [280] = { ["id"] = "crafted.stat_2023107756", ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "crafted", }, - [269] = { + [281] = { ["id"] = "crafted.stat_1604736568", ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "crafted", }, - [270] = { + [282] = { ["id"] = "crafted.stat_3482326075", ["text"] = "Remnants can be collected from #% further away", ["type"] = "crafted", }, - [271] = { + [283] = { ["id"] = "crafted.stat_4147510958", ["text"] = "Sealed Skills have # to maximum Seals", ["type"] = "crafted", }, - [272] = { + [284] = { ["id"] = "crafted.stat_3858398337", ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", ["type"] = "crafted", }, - [273] = { + [285] = { ["id"] = "crafted.stat_1426522529", ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", ["type"] = "crafted", }, - [274] = { + [286] = { ["id"] = "crafted.stat_1309799717", ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "crafted", }, - [275] = { + [287] = { ["id"] = "crafted.stat_2442527254", ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "crafted", }, - [276] = { + [288] = { ["id"] = "crafted.stat_3222402650", ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", ["type"] = "crafted", }, - [277] = { + [289] = { ["id"] = "crafted.stat_1994296038", ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "crafted", }, - [278] = { + [290] = { ["id"] = "crafted.stat_139889694", ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "crafted", }, - [279] = { + [291] = { ["id"] = "crafted.stat_1417267954", ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "crafted", }, - [280] = { + [292] = { ["id"] = "crafted.stat_2768899959", ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", ["type"] = "crafted", }, - [281] = { + [293] = { ["id"] = "crafted.stat_1137305356", ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", ["type"] = "crafted", }, - [282] = { + [294] = { ["id"] = "crafted.stat_3665922113", ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", ["type"] = "crafted", }, - [283] = { + [295] = { ["id"] = "crafted.stat_1967040409", ["text"] = "Spell Skills have #% increased Area of Effect", ["type"] = "crafted", }, - [284] = { + [296] = { ["id"] = "crafted.stat_555706343", ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", ["type"] = "crafted", }, - [285] = { + [297] = { ["id"] = "crafted.stat_3249412463", ["text"] = "Supported Minions' Strikes have Melee Splash", ["type"] = "crafted", }, - [286] = { + [298] = { ["id"] = "crafted.stat_3984146263", ["text"] = "Tempest Bells are destroyed after an additional # Hits", ["type"] = "crafted", }, - [287] = { + [299] = { ["id"] = "crafted.stat_1058934731", ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", ["type"] = "crafted", }, - [288] = { + [300] = { ["id"] = "crafted.stat_3891355829|3", ["text"] = "Upgrades Radius to Very Large", ["type"] = "crafted", }, - [289] = { + [301] = { ["id"] = "crafted.stat_1265767008", ["text"] = "Your Minions are Gigantic if they have Revived Recently", ["type"] = "crafted", @@ -23091,12 +23166,12 @@ return { ["type"] = "enchant", }, [61] = { - ["id"] = "enchant.stat_3917489142", + ["id"] = "enchant.stat_2306002879", ["text"] = "#% increased Rarity of Items found", ["type"] = "enchant", }, [62] = { - ["id"] = "enchant.stat_2306002879", + ["id"] = "enchant.stat_3917489142", ["text"] = "#% increased Rarity of Items found", ["type"] = "enchant", }, @@ -26231,12 +26306,12 @@ return { ["type"] = "enchant", }, [689] = { - ["id"] = "enchant.stat_2954116742|14258", + ["id"] = "enchant.stat_2954116742|62210", ["text"] = "Allocates Puppet Master chance", ["type"] = "enchant", }, [690] = { - ["id"] = "enchant.stat_2954116742|62210", + ["id"] = "enchant.stat_2954116742|14258", ["text"] = "Allocates Puppet Master chance", ["type"] = "enchant", }, @@ -27817,12 +27892,12 @@ return { ["type"] = "augment", }, [14] = { - ["id"] = "rune.stat_3981240776", + ["id"] = "rune.stat_2704225257", ["text"] = "# to Spirit", ["type"] = "augment", }, [15] = { - ["id"] = "rune.stat_2704225257", + ["id"] = "rune.stat_3981240776", ["text"] = "# to Spirit", ["type"] = "augment", }, @@ -29787,126 +29862,131 @@ return { ["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", }, - [409] = { + [410] = { ["id"] = "rune.stat_3515226849", ["text"] = "Recover #% of maximum Runic Ward when one of your Reviving Minions is Killed", ["type"] = "augment", }, - [410] = { + [411] = { ["id"] = "rune.stat_836936635", ["text"] = "Regenerate #% of maximum Life per second", ["type"] = "augment", }, - [411] = { + [412] = { ["id"] = "rune.stat_3482326075", ["text"] = "Remnants can be collected from #% further away", ["type"] = "augment", }, - [412] = { + [413] = { ["id"] = "rune.stat_1999910726", ["text"] = "Remnants you create have #% increased effect", ["type"] = "augment", }, - [413] = { + [414] = { ["id"] = "rune.stat_594547430", ["text"] = "Remove a Damaging Ailment when you use a Command Skill", ["type"] = "augment", }, - [414] = { + [415] = { ["id"] = "rune.stat_103706408", ["text"] = "Rolls only the minimum or maximum Damage value for Physical Damage", ["type"] = "augment", }, - [415] = { + [416] = { ["id"] = "rune.stat_2579974553", ["text"] = "Runic Ward Regeneration Rate is doubled", ["type"] = "augment", }, - [416] = { + [417] = { ["id"] = "rune.stat_1585886916", ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", ["type"] = "augment", }, - [417] = { + [418] = { ["id"] = "rune.stat_2942439603", ["text"] = "Skills have #% chance to not remove Charges but still count as consuming them", ["type"] = "augment", }, - [418] = { + [419] = { ["id"] = "rune.stat_267552601", ["text"] = "Spell damage Penetrates #% of enemy Elemental Resistances while on Low Runic Ward", ["type"] = "augment", }, - [419] = { + [420] = { ["id"] = "rune.stat_1755296234", ["text"] = "Targets can be affected by # of your Poisons at the same time", ["type"] = "augment", }, - [420] = { + [421] = { ["id"] = "rune.stat_2889034188", ["text"] = "Targets that are Blinded, Maimed, and Bleeding cannot Evade your Hits", ["type"] = "augment", }, - [421] = { + [422] = { ["id"] = "rune.stat_602344904", ["text"] = "Transforms all Cold and Lightning modifiers on the item into equivalent Fire modifiers", ["type"] = "augment", }, - [422] = { + [423] = { ["id"] = "rune.stat_1433896639", ["text"] = "Transforms all Fire and Cold modifiers on the item into equivalent Lightning modifiers", ["type"] = "augment", }, - [423] = { + [424] = { ["id"] = "rune.stat_1624833382", ["text"] = "Transforms all Fire, Cold and Lightning modifiers on the item into equivalent Chaos modifiers", ["type"] = "augment", }, - [424] = { + [425] = { ["id"] = "rune.stat_2390027291", ["text"] = "When socketed, transforms all Fire and Lightning modifiers to equivalent Cold modifiers", ["type"] = "augment", }, - [425] = { + [426] = { ["id"] = "rune.stat_3353733343", ["text"] = "When you generate a Frenzy Charge, Allies in your Presence generate that Charge instead", ["type"] = "augment", }, - [426] = { + [427] = { ["id"] = "rune.stat_1323701627", ["text"] = "When you generate a Power Charge, Allies in your Presence generate that Charge instead", ["type"] = "augment", }, - [427] = { + [428] = { ["id"] = "rune.stat_3257561708", ["text"] = "When you generate an Endurance Charge, Allies in your Presence generate that Charge instead", ["type"] = "augment", }, - [428] = { + [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", }, - [429] = { + [430] = { ["id"] = "rune.stat_1937310173", ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", ["type"] = "augment", }, - [430] = { + [431] = { ["id"] = "rune.stat_4058681894", ["text"] = "You have no Critical Damage Bonus", ["type"] = "augment", }, - [431] = { + [432] = { ["id"] = "rune.stat_1919509054", ["text"] = "Your Energy Shield Recharge starts when your Minions are Reformed", ["type"] = "augment", }, - [432] = { + [433] = { ["id"] = "rune.stat_3128773415", ["text"] = "Your speed is Unaffected by Slows while Sprinting", ["type"] = "augment", @@ -30683,2836 +30763,2846 @@ return { ["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", }, - [155] = { + [156] = { ["id"] = "desecrated.stat_3962278098", ["text"] = "#% increased Fire Damage", ["type"] = "desecrated", }, - [156] = { + [157] = { ["id"] = "desecrated.stat_3858572996", ["text"] = "#% increased Fire Damage if you've collected a Fire Infusion in the last 8 seconds", ["type"] = "desecrated", }, - [157] = { + [158] = { ["id"] = "desecrated.stat_2968503605", ["text"] = "#% increased Flammability Magnitude", ["type"] = "desecrated", }, - [158] = { + [159] = { ["id"] = "desecrated.stat_1836676211", ["text"] = "#% increased Flask Charges gained", ["type"] = "desecrated", }, - [159] = { + [160] = { ["id"] = "desecrated.stat_3741323227", ["text"] = "#% increased Flask Effect Duration", ["type"] = "desecrated", }, - [160] = { + [161] = { ["id"] = "desecrated.stat_51994685", ["text"] = "#% increased Flask Life Recovery rate", ["type"] = "desecrated", }, - [161] = { + [162] = { ["id"] = "desecrated.stat_1412217137", ["text"] = "#% increased Flask Mana Recovery rate", ["type"] = "desecrated", }, - [162] = { + [163] = { ["id"] = "desecrated.stat_473429811", ["text"] = "#% increased Freeze Buildup", ["type"] = "desecrated", }, - [163] = { + [164] = { ["id"] = "desecrated.stat_232701452", ["text"] = "#% increased Freeze Buildup if you've consumed an Power Charge Recently", ["type"] = "desecrated", }, - [164] = { + [165] = { ["id"] = "desecrated.stat_1697447343", ["text"] = "#% increased Freeze Buildup with Quarterstaves", ["type"] = "desecrated", }, - [165] = { + [166] = { ["id"] = "desecrated.stat_3780644166", ["text"] = "#% increased Freeze Threshold", ["type"] = "desecrated", }, - [166] = { + [167] = { ["id"] = "desecrated.stat_1177404658", ["text"] = "#% increased Global Armour, Evasion and Energy Shield", ["type"] = "desecrated", }, - [167] = { + [168] = { ["id"] = "desecrated.stat_1310194496", ["text"] = "#% increased Global Physical Damage", ["type"] = "desecrated", }, - [168] = { + [169] = { ["id"] = "desecrated.stat_3143918757", ["text"] = "#% increased Glory generation", ["type"] = "desecrated", }, - [169] = { + [170] = { ["id"] = "desecrated.stat_1869147066", ["text"] = "#% increased Glory generation for Banner Skills", ["type"] = "desecrated", }, - [170] = { + [171] = { ["id"] = "desecrated.stat_3131442032", ["text"] = "#% increased Grenade Damage", ["type"] = "desecrated", }, - [171] = { + [172] = { ["id"] = "desecrated.stat_1365232741", ["text"] = "#% increased Grenade Duration", ["type"] = "desecrated", }, - [172] = { + [173] = { ["id"] = "desecrated.stat_1697951953", ["text"] = "#% increased Hazard Damage", ["type"] = "desecrated", }, - [173] = { + [174] = { ["id"] = "desecrated.stat_3274422940", ["text"] = "#% increased Ice Crystal Life", ["type"] = "desecrated", }, - [174] = { + [175] = { ["id"] = "desecrated.stat_3791899485", ["text"] = "#% increased Ignite Magnitude", ["type"] = "desecrated", }, - [175] = { + [176] = { ["id"] = "desecrated.stat_330530785", ["text"] = "#% increased Immobilisation buildup", ["type"] = "desecrated", }, - [176] = { + [177] = { ["id"] = "desecrated.stat_656461285", ["text"] = "#% increased Intelligence", ["type"] = "desecrated", }, - [177] = { + [178] = { ["id"] = "desecrated.stat_565784293", ["text"] = "#% increased Knockback Distance", ["type"] = "desecrated", }, - [178] = { + [179] = { ["id"] = "desecrated.stat_310945763", ["text"] = "#% increased Life Cost Efficiency", ["type"] = "desecrated", }, - [179] = { + [180] = { ["id"] = "desecrated.stat_4009879772", ["text"] = "#% increased Life Flask Charges gained", ["type"] = "desecrated", }, - [180] = { + [181] = { ["id"] = "desecrated.stat_821241191", ["text"] = "#% increased Life Recovery from Flasks", ["type"] = "desecrated", }, - [181] = { + [182] = { ["id"] = "desecrated.stat_2116424886", ["text"] = "#% increased Life Regeneration Rate while moving", ["type"] = "desecrated", }, - [182] = { + [183] = { ["id"] = "desecrated.stat_44972811", ["text"] = "#% increased Life Regeneration rate", ["type"] = "desecrated", }, - [183] = { + [184] = { ["id"] = "desecrated.stat_1261076060", ["text"] = "#% increased Life Regeneration rate during Effect of any Life Flask", ["type"] = "desecrated", }, - [184] = { + [185] = { ["id"] = "desecrated.stat_1263695895", ["text"] = "#% increased Light Radius", ["type"] = "desecrated", }, - [185] = { + [186] = { ["id"] = "desecrated.stat_2231156303", ["text"] = "#% increased Lightning Damage", ["type"] = "desecrated", }, - [186] = { + [187] = { ["id"] = "desecrated.stat_797289402", ["text"] = "#% increased Lightning Damage if you've collected a Lightning Infusion in the last 8 seconds", ["type"] = "desecrated", }, - [187] = { + [188] = { ["id"] = "desecrated.stat_3873704640", ["text"] = "#% increased Magic Monsters", ["type"] = "desecrated", }, - [188] = { + [189] = { ["id"] = "desecrated.stat_4043376133", ["text"] = "#% increased Magnitude of Abyssal Wasting you inflict", ["type"] = "desecrated", }, - [189] = { + [190] = { ["id"] = "desecrated.stat_1303248024", ["text"] = "#% increased Magnitude of Ailments you inflict", ["type"] = "desecrated", }, - [190] = { + [191] = { ["id"] = "desecrated.stat_3166958180", ["text"] = "#% increased Magnitude of Bleeding you inflict", ["type"] = "desecrated", }, - [191] = { + [192] = { ["id"] = "desecrated.stat_1381474422", ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", ["type"] = "desecrated", }, - [192] = { + [193] = { ["id"] = "desecrated.stat_440490623", ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "desecrated", }, - [193] = { + [194] = { ["id"] = "desecrated.stat_916833363", ["text"] = "#% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", ["type"] = "desecrated", }, - [194] = { + [195] = { ["id"] = "desecrated.stat_4259875040", ["text"] = "#% increased Magnitude of Impales inflicted with Spells", ["type"] = "desecrated", }, - [195] = { + [196] = { ["id"] = "desecrated.stat_2487305362", ["text"] = "#% increased Magnitude of Poison you inflict", ["type"] = "desecrated", }, - [196] = { + [197] = { ["id"] = "desecrated.stat_324210709", ["text"] = "#% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", ["type"] = "desecrated", }, - [197] = { + [198] = { ["id"] = "desecrated.stat_2527686725", ["text"] = "#% increased Magnitude of Shock you inflict", ["type"] = "desecrated", }, - [198] = { + [199] = { ["id"] = "desecrated.stat_2725205297", ["text"] = "#% increased Magnitude of Unholy Might buffs you grant", ["type"] = "desecrated", }, - [199] = { + [200] = { ["id"] = "desecrated.stat_4101445926", ["text"] = "#% increased Mana Cost Efficiency", ["type"] = "desecrated", }, - [200] = { + [201] = { ["id"] = "desecrated.stat_3396435291", ["text"] = "#% increased Mana Cost Efficiency if you have Dodge Rolled Recently", ["type"] = "desecrated", }, - [201] = { + [202] = { ["id"] = "desecrated.stat_3590792340", ["text"] = "#% increased Mana Flask Charges gained", ["type"] = "desecrated", }, - [202] = { + [203] = { ["id"] = "desecrated.stat_2222186378", ["text"] = "#% increased Mana Recovery from Flasks", ["type"] = "desecrated", }, - [203] = { + [204] = { ["id"] = "desecrated.stat_789117908", ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "desecrated", }, - [204] = { + [205] = { ["id"] = "desecrated.stat_1327522346", ["text"] = "#% increased Mana Regeneration Rate while moving", ["type"] = "desecrated", }, - [205] = { + [206] = { ["id"] = "desecrated.stat_3308030688", ["text"] = "#% increased Mana Regeneration Rate while stationary", ["type"] = "desecrated", }, - [206] = { + [207] = { ["id"] = "desecrated.stat_1002362373", ["text"] = "#% increased Melee Damage", ["type"] = "desecrated", }, - [207] = { + [208] = { ["id"] = "desecrated.stat_3028809864", ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", ["type"] = "desecrated", }, - [208] = { + [209] = { ["id"] = "desecrated.stat_3526763442", ["text"] = "#% increased Minion Damage per different Command Skill used in the past 15 seconds", ["type"] = "desecrated", }, - [209] = { + [210] = { ["id"] = "desecrated.stat_1913583994", ["text"] = "#% increased Monster Attack Speed", ["type"] = "desecrated", }, - [210] = { + [211] = { ["id"] = "desecrated.stat_2488361432", ["text"] = "#% increased Monster Cast Speed", ["type"] = "desecrated", }, - [211] = { + [212] = { ["id"] = "desecrated.stat_1890519597", ["text"] = "#% increased Monster Damage", ["type"] = "desecrated", }, - [212] = { + [213] = { ["id"] = "desecrated.stat_2306522833", ["text"] = "#% increased Monster Movement Speed", ["type"] = "desecrated", }, - [213] = { + [214] = { ["id"] = "desecrated.stat_2250533757", ["text"] = "#% increased Movement Speed", ["type"] = "desecrated", }, - [214] = { + [215] = { ["id"] = "desecrated.stat_2590797182", ["text"] = "#% increased Movement Speed Penalty from using Skills while moving", ["type"] = "desecrated", }, - [215] = { + [216] = { ["id"] = "desecrated.stat_3401186585", ["text"] = "#% increased Parried Debuff Duration", ["type"] = "desecrated", }, - [216] = { + [217] = { ["id"] = "desecrated.stat_818877178", ["text"] = "#% increased Parried Debuff Magnitude", ["type"] = "desecrated", }, - [217] = { + [218] = { ["id"] = "desecrated.stat_1569159338", ["text"] = "#% increased Parry Damage", ["type"] = "desecrated", }, - [218] = { + [219] = { ["id"] = "desecrated.stat_1509134228", ["text"] = "#% increased Physical Damage", ["type"] = "desecrated", }, - [219] = { + [220] = { ["id"] = "desecrated.stat_3473929743", ["text"] = "#% increased Pin Buildup", ["type"] = "desecrated", }, - [220] = { + [221] = { ["id"] = "desecrated.stat_2011656677", ["text"] = "#% increased Poison Duration", ["type"] = "desecrated", }, - [221] = { + [222] = { ["id"] = "desecrated.stat_3301100256", ["text"] = "#% increased Poison Duration on you", ["type"] = "desecrated", }, - [222] = { + [223] = { ["id"] = "desecrated.stat_101878827", ["text"] = "#% increased Presence Area of Effect", ["type"] = "desecrated", }, - [223] = { + [224] = { ["id"] = "desecrated.stat_1839076647", ["text"] = "#% increased Projectile Damage", ["type"] = "desecrated", }, - [224] = { + [225] = { ["id"] = "desecrated.stat_3596695232", ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", ["type"] = "desecrated", }, - [225] = { + [226] = { ["id"] = "desecrated.stat_3759663284", ["text"] = "#% increased Projectile Speed", ["type"] = "desecrated", }, - [226] = { + [227] = { ["id"] = "desecrated.stat_3793155082", ["text"] = "#% increased Rare Monsters", ["type"] = "desecrated", }, - [227] = { + [228] = { ["id"] = "desecrated.stat_3917489142", ["text"] = "#% increased Rarity of Items found", ["type"] = "desecrated", }, - [228] = { + [229] = { ["id"] = "desecrated.stat_710476746", ["text"] = "#% increased Reload Speed", ["type"] = "desecrated", }, - [229] = { + [230] = { ["id"] = "desecrated.stat_3413635271", ["text"] = "#% increased Reservation Efficiency of Companion Skills", ["type"] = "desecrated", }, - [230] = { + [231] = { ["id"] = "desecrated.stat_1697191405", ["text"] = "#% increased Reservation Efficiency of Herald Skills", ["type"] = "desecrated", }, - [231] = { + [232] = { ["id"] = "desecrated.stat_3668351662", ["text"] = "#% increased Shock Duration", ["type"] = "desecrated", }, - [232] = { + [233] = { ["id"] = "desecrated.stat_3377888098", ["text"] = "#% increased Skill Effect Duration", ["type"] = "desecrated", }, - [233] = { + [234] = { ["id"] = "desecrated.stat_970213192", ["text"] = "#% increased Skill Speed", ["type"] = "desecrated", }, - [234] = { + [235] = { ["id"] = "desecrated.stat_3313255158", ["text"] = "#% increased Skill Speed if you've consumed a Frenzy Charge Recently", ["type"] = "desecrated", }, - [235] = { + [236] = { ["id"] = "desecrated.stat_918325986", ["text"] = "#% increased Skill Speed while Shapeshifted", ["type"] = "desecrated", }, - [236] = { + [237] = { ["id"] = "desecrated.stat_924253255", ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "desecrated", }, - [237] = { + [238] = { ["id"] = "desecrated.stat_2974417149", ["text"] = "#% increased Spell Damage", ["type"] = "desecrated", }, - [238] = { + [239] = { ["id"] = "desecrated.stat_3491815140", ["text"] = "#% increased Spell Damage per 100 Maximum Life", ["type"] = "desecrated", }, - [239] = { + [240] = { ["id"] = "desecrated.stat_1850249186", ["text"] = "#% increased Spell Damage per 100 maximum Mana", ["type"] = "desecrated", }, - [240] = { + [241] = { ["id"] = "desecrated.stat_3176481473", ["text"] = "#% increased Spell Damage while on Full Energy Shield", ["type"] = "desecrated", }, - [241] = { + [242] = { ["id"] = "desecrated.stat_4136346606", ["text"] = "#% increased Spell Damage while wielding a Melee Weapon", ["type"] = "desecrated", }, - [242] = { + [243] = { ["id"] = "desecrated.stat_1373860425", ["text"] = "#% increased Spell Damage with Spells that cost Life", ["type"] = "desecrated", }, - [243] = { + [244] = { ["id"] = "desecrated.stat_2768835289", ["text"] = "#% increased Spell Physical Damage", ["type"] = "desecrated", }, - [244] = { + [245] = { ["id"] = "desecrated.stat_3984865854", ["text"] = "#% increased Spirit", ["type"] = "desecrated", }, - [245] = { + [246] = { ["id"] = "desecrated.stat_53386210", ["text"] = "#% increased Spirit Reservation Efficiency", ["type"] = "desecrated", }, - [246] = { + [247] = { ["id"] = "desecrated.stat_734614379", ["text"] = "#% increased Strength", ["type"] = "desecrated", }, - [247] = { + [248] = { ["id"] = "desecrated.stat_239367161", ["text"] = "#% increased Stun Buildup", ["type"] = "desecrated", }, - [248] = { + [249] = { ["id"] = "desecrated.stat_872504239", ["text"] = "#% increased Stun Buildup with Maces", ["type"] = "desecrated", }, - [249] = { + [250] = { ["id"] = "desecrated.stat_748522257", ["text"] = "#% increased Stun Duration", ["type"] = "desecrated", }, - [250] = { + [251] = { ["id"] = "desecrated.stat_680068163", ["text"] = "#% increased Stun Threshold", ["type"] = "desecrated", }, - [251] = { + [252] = { ["id"] = "desecrated.stat_1405298142", ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "desecrated", }, - [252] = { + [253] = { ["id"] = "desecrated.stat_1911237468", ["text"] = "#% increased Stun Threshold while Parrying", ["type"] = "desecrated", }, - [253] = { + [254] = { ["id"] = "desecrated.stat_1315743832", ["text"] = "#% increased Thorns damage", ["type"] = "desecrated", }, - [254] = { + [255] = { ["id"] = "desecrated.stat_3851254963", ["text"] = "#% increased Totem Damage", ["type"] = "desecrated", }, - [255] = { + [256] = { ["id"] = "desecrated.stat_686254215", ["text"] = "#% increased Totem Life", ["type"] = "desecrated", }, - [256] = { + [257] = { ["id"] = "desecrated.stat_3374165039", ["text"] = "#% increased Totem Placement speed", ["type"] = "desecrated", }, - [257] = { + [258] = { ["id"] = "desecrated.stat_3037553757", ["text"] = "#% increased Warcry Buff Effect", ["type"] = "desecrated", }, - [258] = { + [259] = { ["id"] = "desecrated.stat_4159248054", ["text"] = "#% increased Warcry Cooldown Recovery Rate", ["type"] = "desecrated", }, - [259] = { + [260] = { ["id"] = "desecrated.stat_1316278494", ["text"] = "#% increased Warcry Speed", ["type"] = "desecrated", }, - [260] = { + [261] = { ["id"] = "desecrated.stat_3973629633", ["text"] = "#% increased Withered Magnitude", ["type"] = "desecrated", }, - [261] = { + [262] = { ["id"] = "desecrated.stat_2112395885", ["text"] = "#% increased amount of Life Leeched", ["type"] = "desecrated", }, - [262] = { + [263] = { ["id"] = "desecrated.stat_2839066308", ["text"] = "#% increased amount of Mana Leeched", ["type"] = "desecrated", }, - [263] = { + [264] = { ["id"] = "desecrated.stat_1200678966", ["text"] = "#% increased bonuses gained from Equipped Quiver", ["type"] = "desecrated", }, - [264] = { + [265] = { ["id"] = "desecrated.stat_3481083201", ["text"] = "#% increased chance to Poison", ["type"] = "desecrated", }, - [265] = { + [266] = { ["id"] = "desecrated.stat_293638271", ["text"] = "#% increased chance to Shock", ["type"] = "desecrated", }, - [266] = { + [267] = { ["id"] = "desecrated.stat_1772247089", ["text"] = "#% increased chance to inflict Ailments", ["type"] = "desecrated", }, - [267] = { + [268] = { ["id"] = "desecrated.stat_242637938", ["text"] = "#% increased chance to inflict Bleeding", ["type"] = "desecrated", }, - [268] = { + [269] = { ["id"] = "desecrated.stat_2103650854", ["text"] = "#% increased effect of Arcane Surge on you", ["type"] = "desecrated", }, - [269] = { + [270] = { ["id"] = "desecrated.stat_1180552088", ["text"] = "#% increased effect of Archon Buffs on you", ["type"] = "desecrated", }, - [270] = { + [271] = { ["id"] = "desecrated.stat_2482852589", ["text"] = "#% increased maximum Energy Shield", ["type"] = "desecrated", }, - [271] = { + [272] = { ["id"] = "desecrated.stat_983749596", ["text"] = "#% increased maximum Life", ["type"] = "desecrated", }, - [272] = { + [273] = { ["id"] = "desecrated.stat_2748665614", ["text"] = "#% increased maximum Mana", ["type"] = "desecrated", }, - [273] = { + [274] = { ["id"] = "desecrated.stat_2363593824", ["text"] = "#% increased speed of Recoup Effects", ["type"] = "desecrated", }, - [274] = { + [275] = { ["id"] = "desecrated.stat_3796523155", ["text"] = "#% less effect of Curses on Monsters", ["type"] = "desecrated", }, - [275] = { + [276] = { ["id"] = "desecrated.stat_3376488707", ["text"] = "#% maximum Player Resistances", ["type"] = "desecrated", }, - [276] = { + [277] = { ["id"] = "desecrated.stat_95249895", ["text"] = "#% more Monster Life", ["type"] = "desecrated", }, - [277] = { + [278] = { ["id"] = "desecrated.stat_3972229254", ["text"] = "#% of Armour also applies to Chaos Damage", ["type"] = "desecrated", }, - [278] = { + [279] = { ["id"] = "desecrated.stat_3362812763", ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "desecrated", }, - [279] = { + [280] = { ["id"] = "desecrated.stat_458438597", ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "desecrated", }, - [280] = { + [281] = { ["id"] = "desecrated.stat_1444556985", ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "desecrated", }, - [281] = { + [282] = { ["id"] = "desecrated.stat_472520716", ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "desecrated", }, - [282] = { + [283] = { ["id"] = "desecrated.stat_2896115339", ["text"] = "#% of Elemental Damage taken Recouped as Energy Shield", ["type"] = "desecrated", }, - [283] = { + [284] = { ["id"] = "desecrated.stat_3561837752", ["text"] = "#% of Leech is Instant", ["type"] = "desecrated", }, - [284] = { + [285] = { ["id"] = "desecrated.stat_1374654984", ["text"] = "#% of Physical Damage prevented Recouped as Life", ["type"] = "desecrated", }, - [285] = { + [286] = { ["id"] = "desecrated.stat_321970274", ["text"] = "#% of Physical Damage taken as Lightning while your Shield is raised", ["type"] = "desecrated", }, - [286] = { + [287] = { ["id"] = "desecrated.stat_2480498143", ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "desecrated", }, - [287] = { + [288] = { ["id"] = "desecrated.stat_3544050945", ["text"] = "#% of Spell Mana Cost Converted to Life Cost", ["type"] = "desecrated", }, - [288] = { + [289] = { ["id"] = "desecrated.stat_1570770415", ["text"] = "#% reduced Charm Charges used", ["type"] = "desecrated", }, - [289] = { + [290] = { ["id"] = "desecrated.stat_1874553720", ["text"] = "#% reduced Chill Duration on you", ["type"] = "desecrated", }, - [290] = { + [291] = { ["id"] = "desecrated.stat_644456512", ["text"] = "#% reduced Flask Charges used", ["type"] = "desecrated", }, - [291] = { + [292] = { ["id"] = "desecrated.stat_2160282525", ["text"] = "#% reduced Freeze Duration on you", ["type"] = "desecrated", }, - [292] = { + [293] = { ["id"] = "desecrated.stat_986397080", ["text"] = "#% reduced Ignite Duration on you", ["type"] = "desecrated", }, - [293] = { + [294] = { ["id"] = "desecrated.stat_99927264", ["text"] = "#% reduced Shock duration on you", ["type"] = "desecrated", }, - [294] = { + [295] = { ["id"] = "desecrated.stat_3839676903", ["text"] = "#% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", ["type"] = "desecrated", }, - [295] = { + [296] = { ["id"] = "desecrated.stat_3407849389", ["text"] = "#% reduced effect of Curses on you", ["type"] = "desecrated", }, - [296] = { + [297] = { ["id"] = "desecrated.stat_1702195217", ["text"] = "#% to Block chance", ["type"] = "desecrated", }, - [297] = { + [298] = { ["id"] = "desecrated.stat_2923486259", ["text"] = "#% to Chaos Resistance", ["type"] = "desecrated", }, - [298] = { + [299] = { ["id"] = "desecrated.stat_4220027924", ["text"] = "#% to Cold Resistance", ["type"] = "desecrated", }, - [299] = { + [300] = { ["id"] = "desecrated.stat_3393628375", ["text"] = "#% to Cold and Chaos Resistances", ["type"] = "desecrated", }, - [300] = { + [301] = { ["id"] = "desecrated.stat_2694482655", ["text"] = "#% to Critical Damage Bonus", ["type"] = "desecrated", }, - [301] = { + [302] = { ["id"] = "desecrated.stat_518292764", ["text"] = "#% to Critical Hit Chance", ["type"] = "desecrated", }, - [302] = { + [303] = { ["id"] = "desecrated.stat_3372524247", ["text"] = "#% to Fire Resistance", ["type"] = "desecrated", }, - [303] = { + [304] = { ["id"] = "desecrated.stat_3399401168", ["text"] = "#% to Fire Spell Critical Hit Chance", ["type"] = "desecrated", }, - [304] = { + [305] = { ["id"] = "desecrated.stat_378817135", ["text"] = "#% to Fire and Chaos Resistances", ["type"] = "desecrated", }, - [305] = { + [306] = { ["id"] = "desecrated.stat_1671376347", ["text"] = "#% to Lightning Resistance", ["type"] = "desecrated", }, - [306] = { + [307] = { ["id"] = "desecrated.stat_3465022881", ["text"] = "#% to Lightning and Chaos Resistances", ["type"] = "desecrated", }, - [307] = { + [308] = { ["id"] = "desecrated.stat_1301765461", ["text"] = "#% to Maximum Chaos Resistance", ["type"] = "desecrated", }, - [308] = { + [309] = { ["id"] = "desecrated.stat_3676141501", ["text"] = "#% to Maximum Cold Resistance", ["type"] = "desecrated", }, - [309] = { + [310] = { ["id"] = "desecrated.stat_4095671657", ["text"] = "#% to Maximum Fire Resistance", ["type"] = "desecrated", }, - [310] = { + [311] = { ["id"] = "desecrated.stat_1011760251", ["text"] = "#% to Maximum Lightning Resistance", ["type"] = "desecrated", }, - [311] = { + [312] = { ["id"] = "desecrated.stat_3655769732", ["text"] = "#% to Quality of all Skills", ["type"] = "desecrated", }, - [312] = { + [313] = { ["id"] = "desecrated.stat_2715190555", ["text"] = "#% to Thorns Critical Hit Chance", ["type"] = "desecrated", }, - [313] = { + [314] = { ["id"] = "desecrated.stat_2901986750", ["text"] = "#% to all Elemental Resistances", ["type"] = "desecrated", }, - [314] = { + [315] = { ["id"] = "desecrated.stat_1978899297", ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "desecrated", }, - [315] = { + [316] = { ["id"] = "desecrated.stat_569299859", ["text"] = "#% to all maximum Resistances", ["type"] = "desecrated", }, - [316] = { + [317] = { ["id"] = "desecrated.stat_480796730", ["text"] = "#% to maximum Block chance", ["type"] = "desecrated", }, - [317] = { + [318] = { ["id"] = "desecrated.stat_1054098949", ["text"] = "+#% Monster Elemental Resistances", ["type"] = "desecrated", }, - [318] = { + [319] = { ["id"] = "desecrated.stat_1388221282", ["text"] = "Abyss Cracks have #% chance to spawn all Monsters as at least Magic", ["type"] = "desecrated", }, - [319] = { + [320] = { ["id"] = "desecrated.stat_2975078312", ["text"] = "Abyss Monsters in your Maps grant #% increased Experience", ["type"] = "desecrated", }, - [320] = { + [321] = { ["id"] = "desecrated.stat_4157613372", ["text"] = "Abyss Pits have #% chance to spawn all Monsters as at least Magic", ["type"] = "desecrated", }, - [321] = { + [322] = { ["id"] = "desecrated.stat_4256531808", ["text"] = "Abyss Pits in Area are twice as likely to have Rewards", ["type"] = "desecrated", }, - [322] = { + [323] = { ["id"] = "desecrated.stat_2975078312", ["text"] = "Abyssal Monsters grant #% increased Experience", ["type"] = "desecrated", }, - [323] = { + [324] = { ["id"] = "desecrated.stat_360553763", ["text"] = "Abyssal Monsters have increased Difficulty and Reward for each closed Pit", ["type"] = "desecrated", }, - [324] = { + [325] = { ["id"] = "desecrated.stat_2399592398", ["text"] = "Abysses lead to an Abyssal Boss", ["type"] = "desecrated", }, - [325] = { + [326] = { ["id"] = "desecrated.stat_2278777540", ["text"] = "Abysses lead to an Abyssal Depths", ["type"] = "desecrated", }, - [326] = { + [327] = { ["id"] = "desecrated.stat_944630113", ["text"] = "Abysses spawn #% increased Monsters", ["type"] = "desecrated", }, - [327] = { + [328] = { ["id"] = "desecrated.stat_2223678961", ["text"] = "Adds # to # Chaos damage", ["type"] = "desecrated", }, - [328] = { + [329] = { ["id"] = "desecrated.stat_1037193709", ["text"] = "Adds # to # Cold Damage", ["type"] = "desecrated", }, - [329] = { + [330] = { ["id"] = "desecrated.stat_4067062424", ["text"] = "Adds # to # Cold damage to Attacks", ["type"] = "desecrated", }, - [330] = { + [331] = { ["id"] = "desecrated.stat_709508406", ["text"] = "Adds # to # Fire Damage", ["type"] = "desecrated", }, - [331] = { + [332] = { ["id"] = "desecrated.stat_1573130764", ["text"] = "Adds # to # Fire damage to Attacks", ["type"] = "desecrated", }, - [332] = { + [333] = { ["id"] = "desecrated.stat_3336890334", ["text"] = "Adds # to # Lightning Damage", ["type"] = "desecrated", }, - [333] = { + [334] = { ["id"] = "desecrated.stat_1754445556", ["text"] = "Adds # to # Lightning damage to Attacks", ["type"] = "desecrated", }, - [334] = { + [335] = { ["id"] = "desecrated.stat_1940865751", ["text"] = "Adds # to # Physical Damage", ["type"] = "desecrated", }, - [335] = { + [336] = { ["id"] = "desecrated.stat_3032590688", ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "desecrated", }, - [336] = { + [337] = { ["id"] = "desecrated.stat_4010677958", ["text"] = "Allies in your Presence Regenerate # Life per second", ["type"] = "desecrated", }, - [337] = { + [338] = { ["id"] = "desecrated.stat_2347036682", ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", ["type"] = "desecrated", }, - [338] = { + [339] = { ["id"] = "desecrated.stat_849987426", ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", ["type"] = "desecrated", }, - [339] = { + [340] = { ["id"] = "desecrated.stat_2854751904", ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", ["type"] = "desecrated", }, - [340] = { + [341] = { ["id"] = "desecrated.stat_1574590649", ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "desecrated", }, - [341] = { + [342] = { ["id"] = "desecrated.stat_1798257884", ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "desecrated", }, - [342] = { + [343] = { ["id"] = "desecrated.stat_1998951374", ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "desecrated", }, - [343] = { + [344] = { ["id"] = "desecrated.stat_289128254", ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "desecrated", }, - [344] = { + [345] = { ["id"] = "desecrated.stat_3057012405", ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "desecrated", }, - [345] = { + [346] = { ["id"] = "desecrated.stat_1250712710", ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", ["type"] = "desecrated", }, - [346] = { + [347] = { ["id"] = "desecrated.stat_3850614073", ["text"] = "Allies in your Presence have #% to all Elemental Resistances", ["type"] = "desecrated", }, - [347] = { + [348] = { ["id"] = "desecrated.stat_2586152168", ["text"] = "Archon recovery period expires #% faster", ["type"] = "desecrated", }, - [348] = { + [349] = { ["id"] = "desecrated.stat_3490187949", ["text"] = "Area contains # additional Abysses", ["type"] = "desecrated", }, - [349] = { + [350] = { ["id"] = "desecrated.stat_3757259819", ["text"] = "Area contains # additional packs of Beasts", ["type"] = "desecrated", }, - [350] = { + [351] = { ["id"] = "desecrated.stat_3309089125", ["text"] = "Area contains # additional packs of Bramble Monsters", ["type"] = "desecrated", }, - [351] = { + [352] = { ["id"] = "desecrated.stat_1436812886", ["text"] = "Area contains # additional packs of Ezomyte Monsters", ["type"] = "desecrated", }, - [352] = { + [353] = { ["id"] = "desecrated.stat_4130878258", ["text"] = "Area contains # additional packs of Faridun Monsters", ["type"] = "desecrated", }, - [353] = { + [354] = { ["id"] = "desecrated.stat_2949706590", ["text"] = "Area contains # additional packs of Iron Guards", ["type"] = "desecrated", }, - [354] = { + [355] = { ["id"] = "desecrated.stat_3592067990", ["text"] = "Area contains # additional packs of Plagued Monsters", ["type"] = "desecrated", }, - [355] = { + [356] = { ["id"] = "desecrated.stat_1689473577", ["text"] = "Area contains # additional packs of Transcended Monsters", ["type"] = "desecrated", }, - [356] = { + [357] = { ["id"] = "desecrated.stat_240445958", ["text"] = "Area contains # additional packs of Undead", ["type"] = "desecrated", }, - [357] = { + [358] = { ["id"] = "desecrated.stat_4181857719", ["text"] = "Area contains # additional packs of Vaal Monsters", ["type"] = "desecrated", }, - [358] = { + [359] = { ["id"] = "desecrated.stat_1827854662", ["text"] = "Area contains an additional Incubator Queen", ["type"] = "desecrated", }, - [359] = { + [360] = { ["id"] = "desecrated.stat_349586058", ["text"] = "Area has patches of Chilled Ground", ["type"] = "desecrated", }, - [360] = { + [361] = { ["id"] = "desecrated.stat_133340941", ["text"] = "Area has patches of Ignited Ground", ["type"] = "desecrated", }, - [361] = { + [362] = { ["id"] = "desecrated.stat_3190283174", ["text"] = "Area has patches of Mana Siphoning Ground", ["type"] = "desecrated", }, - [362] = { + [363] = { ["id"] = "desecrated.stat_3477720557", ["text"] = "Area has patches of Shocked Ground", ["type"] = "desecrated", }, - [363] = { + [364] = { ["id"] = "desecrated.stat_2741291867", ["text"] = "Area is overrun by the Abyssal", ["type"] = "desecrated", }, - [364] = { + [365] = { ["id"] = "desecrated.stat_300723956", ["text"] = "Attack Hits apply Incision", ["type"] = "desecrated", }, - [365] = { + [366] = { ["id"] = "desecrated.stat_3868118796", ["text"] = "Attacks Chain an additional time", ["type"] = "desecrated", }, - [366] = { + [367] = { ["id"] = "desecrated.stat_1740229525", ["text"] = "Attacks with this Weapon Penetrate #% Cold Resistance", ["type"] = "desecrated", }, - [367] = { + [368] = { ["id"] = "desecrated.stat_3398283493", ["text"] = "Attacks with this Weapon Penetrate #% Fire Resistance", ["type"] = "desecrated", }, - [368] = { + [369] = { ["id"] = "desecrated.stat_2387539034", ["text"] = "Attacks with this Weapon Penetrate #% Lightning Resistance", ["type"] = "desecrated", }, - [369] = { + [370] = { ["id"] = "desecrated.stat_315791320", ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "desecrated", }, - [370] = { + [371] = { ["id"] = "desecrated.stat_429143663", ["text"] = "Banner Skills have #% increased Area of Effect", ["type"] = "desecrated", }, - [371] = { + [372] = { ["id"] = "desecrated.stat_2720982137", ["text"] = "Banner Skills have #% increased Duration", ["type"] = "desecrated", }, - [372] = { + [373] = { ["id"] = "desecrated.stat_3885405204", ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "desecrated", }, - [373] = { + [374] = { ["id"] = "desecrated.stat_1776411443", ["text"] = "Break #% increased Armour", ["type"] = "desecrated", }, - [374] = { + [375] = { ["id"] = "desecrated.stat_1103616075", ["text"] = "Break Armour equal to #% of Physical Damage dealt", ["type"] = "desecrated", }, - [375] = { + [376] = { ["id"] = "desecrated.stat_1286199571", ["text"] = "Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", ["type"] = "desecrated", }, - [376] = { + [377] = { ["id"] = "desecrated.stat_791928121", ["text"] = "Causes #% increased Stun Buildup", ["type"] = "desecrated", }, - [377] = { + [378] = { ["id"] = "desecrated.stat_3480095574", ["text"] = "Charms applied to you have #% increased Effect", ["type"] = "desecrated", }, - [378] = { + [379] = { ["id"] = "desecrated.stat_185580205", ["text"] = "Charms gain # charge per Second", ["type"] = "desecrated", }, - [379] = { + [380] = { ["id"] = "desecrated.stat_234296660", ["text"] = "Companions deal #% increased Damage", ["type"] = "desecrated", }, - [380] = { + [381] = { ["id"] = "desecrated.stat_666077204", ["text"] = "Companions have #% increased Attack Speed", ["type"] = "desecrated", }, - [381] = { + [382] = { ["id"] = "desecrated.stat_1805182458", ["text"] = "Companions have #% increased maximum Life", ["type"] = "desecrated", }, - [382] = { + [383] = { ["id"] = "desecrated.stat_1938221597", ["text"] = "Conquered Attribute Passive Skills also grant # to Dexterity", ["type"] = "desecrated", }, - [383] = { + [384] = { ["id"] = "desecrated.stat_3116427713", ["text"] = "Conquered Attribute Passive Skills also grant # to Intelligence", ["type"] = "desecrated", }, - [384] = { + [385] = { ["id"] = "desecrated.stat_3871530702", ["text"] = "Conquered Attribute Passive Skills also grant # to Strength", ["type"] = "desecrated", }, - [385] = { + [386] = { ["id"] = "desecrated.stat_1119086588", ["text"] = "Conquered Attribute Passive Skills also grant # to Tribute", ["type"] = "desecrated", }, - [386] = { + [387] = { ["id"] = "desecrated.stat_2552484522", ["text"] = "Conquered Attribute Passive Skills also grant # to all Attributes", ["type"] = "desecrated", }, - [387] = { + [388] = { ["id"] = "desecrated.stat_970480050", ["text"] = "Conquered Small Passive Skills also grant #% increased Armour", ["type"] = "desecrated", }, - [388] = { + [389] = { ["id"] = "desecrated.stat_8816597", ["text"] = "Conquered Small Passive Skills also grant #% increased Attack damage", ["type"] = "desecrated", }, - [389] = { + [390] = { ["id"] = "desecrated.stat_2601021356", ["text"] = "Conquered Small Passive Skills also grant #% increased Chaos damage", ["type"] = "desecrated", }, - [390] = { + [391] = { ["id"] = "desecrated.stat_1283490138", ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Ailment Threshold", ["type"] = "desecrated", }, - [391] = { + [392] = { ["id"] = "desecrated.stat_4240116297", ["text"] = "Conquered Small Passive Skills also grant #% increased Elemental Damage", ["type"] = "desecrated", }, - [392] = { + [393] = { ["id"] = "desecrated.stat_2780670304", ["text"] = "Conquered Small Passive Skills also grant #% increased Energy Shield", ["type"] = "desecrated", }, - [393] = { + [394] = { ["id"] = "desecrated.stat_468694293", ["text"] = "Conquered Small Passive Skills also grant #% increased Evasion Rating", ["type"] = "desecrated", }, - [394] = { + [395] = { ["id"] = "desecrated.stat_4264952559", ["text"] = "Conquered Small Passive Skills also grant #% increased Life Regeneration rate", ["type"] = "desecrated", }, - [395] = { + [396] = { ["id"] = "desecrated.stat_1818915622", ["text"] = "Conquered Small Passive Skills also grant #% increased Mana Regeneration rate", ["type"] = "desecrated", }, - [396] = { + [397] = { ["id"] = "desecrated.stat_1829333149", ["text"] = "Conquered Small Passive Skills also grant #% increased Physical damage", ["type"] = "desecrated", }, - [397] = { + [398] = { ["id"] = "desecrated.stat_3038857426", ["text"] = "Conquered Small Passive Skills also grant #% increased Spell damage", ["type"] = "desecrated", }, - [398] = { + [399] = { ["id"] = "desecrated.stat_2475870935", ["text"] = "Conquered Small Passive Skills also grant #% increased Stun Threshold", ["type"] = "desecrated", }, - [399] = { + [400] = { ["id"] = "desecrated.stat_3343033032", ["text"] = "Conquered Small Passive Skills also grant Minions deal #% increased damage", ["type"] = "desecrated", }, - [400] = { + [401] = { ["id"] = "desecrated.stat_1658498488", ["text"] = "Corrupted Blood cannot be inflicted on you", ["type"] = "desecrated", }, - [401] = { + [402] = { ["id"] = "desecrated.stat_3417711605", ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "desecrated", }, - [402] = { + [403] = { ["id"] = "desecrated.stat_2653955271", ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "desecrated", }, - [403] = { + [404] = { ["id"] = "desecrated.stat_818778753", ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "desecrated", }, - [404] = { + [405] = { ["id"] = "desecrated.stat_538241406", ["text"] = "Damaging Ailments deal damage #% faster", ["type"] = "desecrated", }, - [405] = { + [406] = { ["id"] = "desecrated.stat_3146310524", ["text"] = "Dazes on Hit", ["type"] = "desecrated", }, - [406] = { + [407] = { ["id"] = "desecrated.stat_1238227257", ["text"] = "Debuffs on you expire #% faster", ["type"] = "desecrated", }, - [407] = { + [408] = { ["id"] = "desecrated.stat_1569101201", ["text"] = "Empowered Attacks deal #% increased Damage", ["type"] = "desecrated", }, - [408] = { + [409] = { ["id"] = "desecrated.stat_1746561819", ["text"] = "Enemies Hindered by you take #% increased Chaos Damage", ["type"] = "desecrated", }, - [409] = { + [410] = { ["id"] = "desecrated.stat_212649958", ["text"] = "Enemies Hindered by you take #% increased Elemental Damage", ["type"] = "desecrated", }, - [410] = { + [411] = { ["id"] = "desecrated.stat_359357545", ["text"] = "Enemies Hindered by you take #% increased Physical Damage", ["type"] = "desecrated", }, - [411] = { + [412] = { ["id"] = "desecrated.stat_1772929282", ["text"] = "Enemies you Curse have #% to Chaos Resistance", ["type"] = "desecrated", }, - [412] = { + [413] = { ["id"] = "desecrated.stat_2083058281", ["text"] = "Enemies you Mark take #% increased Damage", ["type"] = "desecrated", }, - [413] = { + [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", }, - [414] = { + [415] = { ["id"] = "desecrated.stat_752930724", ["text"] = "Equipment and Skill Gems have #% increased Attribute Requirements", ["type"] = "desecrated", }, - [415] = { + [416] = { ["id"] = "desecrated.stat_2797971005", ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "desecrated", }, - [416] = { + [417] = { ["id"] = "desecrated.stat_3695891184", ["text"] = "Gain # Life per enemy killed", ["type"] = "desecrated", }, - [417] = { + [418] = { ["id"] = "desecrated.stat_1368271171", ["text"] = "Gain # Mana per enemy killed", ["type"] = "desecrated", }, - [418] = { + [419] = { ["id"] = "desecrated.stat_2709367754", ["text"] = "Gain # Rage on Melee Hit", ["type"] = "desecrated", }, - [419] = { + [420] = { ["id"] = "desecrated.stat_3292710273", ["text"] = "Gain # Rage when Hit by an Enemy", ["type"] = "desecrated", }, - [420] = { + [421] = { ["id"] = "desecrated.stat_3398787959", ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "desecrated", }, - [421] = { + [422] = { ["id"] = "desecrated.stat_2505884597", ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "desecrated", }, - [422] = { + [423] = { ["id"] = "desecrated.stat_825116955", ["text"] = "Gain #% of Damage as Extra Cold Damage with Spells", ["type"] = "desecrated", }, - [423] = { + [424] = { ["id"] = "desecrated.stat_3015669065", ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "desecrated", }, - [424] = { + [425] = { ["id"] = "desecrated.stat_1321054058", ["text"] = "Gain #% of Damage as Extra Fire Damage with Spells", ["type"] = "desecrated", }, - [425] = { + [426] = { ["id"] = "desecrated.stat_3278136794", ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "desecrated", }, - [426] = { + [427] = { ["id"] = "desecrated.stat_323800555", ["text"] = "Gain #% of Damage as Extra Lightning Damage with Spells", ["type"] = "desecrated", }, - [427] = { + [428] = { ["id"] = "desecrated.stat_4019237939", ["text"] = "Gain #% of Damage as Extra Physical Damage", ["type"] = "desecrated", }, - [428] = { + [429] = { ["id"] = "desecrated.stat_514290151", ["text"] = "Gain #% of Maximum Mana as Armour", ["type"] = "desecrated", }, - [429] = { + [430] = { ["id"] = "desecrated.stat_758893621", ["text"] = "Gain #% of Physical Damage as Extra Cold Damage", ["type"] = "desecrated", }, - [430] = { + [431] = { ["id"] = "desecrated.stat_3033371881", ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", ["type"] = "desecrated", }, - [431] = { + [432] = { ["id"] = "desecrated.stat_1793740180", ["text"] = "Gain Physical Thorns damage equal to #% of Item Armour on Equipped Body Armour", ["type"] = "desecrated", }, - [432] = { + [433] = { ["id"] = "desecrated.stat_3398301358", ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "desecrated", }, - [433] = { + [434] = { ["id"] = "desecrated.stat_416040624", ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "desecrated", }, - [434] = { + [435] = { ["id"] = "desecrated.stat_821021828", ["text"] = "Grants # Life per Enemy Hit", ["type"] = "desecrated", }, - [435] = { + [436] = { ["id"] = "desecrated.stat_1980802737", ["text"] = "Grenade Skills Fire an additional Projectile", ["type"] = "desecrated", }, - [436] = { + [437] = { ["id"] = "desecrated.stat_2250681686", ["text"] = "Grenade Skills have +# Cooldown Use", ["type"] = "desecrated", }, - [437] = { + [438] = { ["id"] = "desecrated.stat_538981065", ["text"] = "Grenades have #% chance to activate a second time", ["type"] = "desecrated", }, - [438] = { + [439] = { ["id"] = "desecrated.stat_21071013", ["text"] = "Herald Skills deal #% increased Damage", ["type"] = "desecrated", }, - [439] = { + [440] = { ["id"] = "desecrated.stat_3855016469", ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "desecrated", }, - [440] = { + [441] = { ["id"] = "desecrated.stat_4270096386", ["text"] = "Hits have #% increased Critical Hit Chance against you", ["type"] = "desecrated", }, - [441] = { + [442] = { ["id"] = "desecrated.stat_1689748350", ["text"] = "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", ["type"] = "desecrated", }, - [442] = { + [443] = { ["id"] = "desecrated.stat_414821772", ["text"] = "Increases and Reductions to Projectile Speed also apply to Damage with Bows", ["type"] = "desecrated", }, - [443] = { + [444] = { ["id"] = "desecrated.stat_971590056", ["text"] = "Inflict Anaemia on HitAnaemia allows # Corrupted Blood debuffs to be inflicted on enemies", ["type"] = "desecrated", }, - [444] = { + [445] = { ["id"] = "desecrated.stat_1078309513", ["text"] = "Invocated Spells deal #% increased Damage", ["type"] = "desecrated", }, - [445] = { + [446] = { ["id"] = "desecrated.stat_3711973554", ["text"] = "Invocated Spells have #% chance to consume half as much Energy", ["type"] = "desecrated", }, - [446] = { + [447] = { ["id"] = "desecrated.stat_1615901249", ["text"] = "Invocated skills have #% increased Maximum Energy", ["type"] = "desecrated", }, - [447] = { + [448] = { ["id"] = "desecrated.stat_2557965901", ["text"] = "Leech #% of Physical Attack Damage as Life", ["type"] = "desecrated", }, - [448] = { + [449] = { ["id"] = "desecrated.stat_707457662", ["text"] = "Leech #% of Physical Attack Damage as Mana", ["type"] = "desecrated", }, - [449] = { + [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", }, - [450] = { + [452] = { ["id"] = "desecrated.stat_669069897", ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "desecrated", }, - [451] = { + [453] = { ["id"] = "desecrated.stat_1102738251", ["text"] = "Life Flasks gain # charges per Second", ["type"] = "desecrated", }, - [452] = { + [454] = { ["id"] = "desecrated.stat_1967051901", ["text"] = "Loads an additional bolt", ["type"] = "desecrated", }, - [453] = { + [455] = { ["id"] = "desecrated.stat_2200293569", ["text"] = "Mana Flasks gain # charges per Second", ["type"] = "desecrated", }, - [454] = { + [456] = { ["id"] = "desecrated.stat_2594634307", ["text"] = "Mark Skills have #% increased Skill Effect Duration", ["type"] = "desecrated", }, - [455] = { + [457] = { ["id"] = "desecrated.stat_1714971114", ["text"] = "Mark Skills have #% increased Use Speed", ["type"] = "desecrated", }, - [456] = { + [458] = { ["id"] = "desecrated.stat_2013356568", ["text"] = "Melee Attack Skills have # to maximum number of Summoned Totems", ["type"] = "desecrated", }, - [457] = { + [459] = { ["id"] = "desecrated.stat_4236566306", ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "desecrated", }, - [458] = { + [460] = { ["id"] = "desecrated.stat_195270549", ["text"] = "Minions Break Armour equal to #% of Physical damage dealt", ["type"] = "desecrated", }, - [459] = { + [461] = { ["id"] = "desecrated.stat_2479683456", ["text"] = "Minions Regenerate #% of maximum Life per second", ["type"] = "desecrated", }, - [460] = { + [462] = { ["id"] = "desecrated.stat_2639966148", ["text"] = "Minions Revive #% faster", ["type"] = "desecrated", }, - [461] = { + [463] = { ["id"] = "desecrated.stat_1589917703", ["text"] = "Minions deal #% increased Damage", ["type"] = "desecrated", }, - [462] = { + [464] = { ["id"] = "desecrated.stat_2337295272", ["text"] = "Minions deal #% increased Damage if you've Hit Recently", ["type"] = "desecrated", }, - [463] = { + [465] = { ["id"] = "desecrated.stat_943702197", ["text"] = "Minions gain #% of their maximum Life as Extra maximum Energy Shield", ["type"] = "desecrated", }, - [464] = { + [466] = { ["id"] = "desecrated.stat_1797815732", ["text"] = "Minions have #% Surpassing chance to fire an additional Projectile", ["type"] = "desecrated", }, - [465] = { + [467] = { ["id"] = "desecrated.stat_3119612865", ["text"] = "Minions have #% additional Physical Damage Reduction", ["type"] = "desecrated", }, - [466] = { + [468] = { ["id"] = "desecrated.stat_3811191316", ["text"] = "Minions have #% increased Area of Effect", ["type"] = "desecrated", }, - [467] = { + [469] = { ["id"] = "desecrated.stat_3091578504", ["text"] = "Minions have #% increased Attack and Cast Speed", ["type"] = "desecrated", }, - [468] = { + [470] = { ["id"] = "desecrated.stat_1691403182", ["text"] = "Minions have #% increased Cooldown Recovery Rate", ["type"] = "desecrated", }, - [469] = { + [471] = { ["id"] = "desecrated.stat_1854213750", ["text"] = "Minions have #% increased Critical Damage Bonus", ["type"] = "desecrated", }, - [470] = { + [472] = { ["id"] = "desecrated.stat_491450213", ["text"] = "Minions have #% increased Critical Hit Chance", ["type"] = "desecrated", }, - [471] = { + [473] = { ["id"] = "desecrated.stat_953593695", ["text"] = "Minions have #% increased Magnitude of Damaging Ailments", ["type"] = "desecrated", }, - [472] = { + [474] = { ["id"] = "desecrated.stat_73032170", ["text"] = "Minions have #% increased Skill Speed with Command Skills", ["type"] = "desecrated", }, - [473] = { + [475] = { ["id"] = "desecrated.stat_770672621", ["text"] = "Minions have #% increased maximum Life", ["type"] = "desecrated", }, - [474] = { + [476] = { ["id"] = "desecrated.stat_3837707023", ["text"] = "Minions have #% to Chaos Resistance", ["type"] = "desecrated", }, - [475] = { + [477] = { ["id"] = "desecrated.stat_1423639565", ["text"] = "Minions have #% to all Elemental Resistances", ["type"] = "desecrated", }, - [476] = { + [478] = { ["id"] = "desecrated.stat_1898978455", ["text"] = "Monster Damage Penetrates #% Elemental Resistances", ["type"] = "desecrated", }, - [477] = { + [479] = { ["id"] = "desecrated.stat_3877264671", ["text"] = "Monster have #% increased Elemental Ailment Application", ["type"] = "desecrated", }, - [478] = { + [480] = { ["id"] = "desecrated.stat_1879340377", ["text"] = "Monsters Break Armour equal to #% of Physical Damage dealt", ["type"] = "desecrated", }, - [479] = { + [481] = { ["id"] = "desecrated.stat_2539290279", ["text"] = "Monsters are Armoured", ["type"] = "desecrated", }, - [480] = { + [482] = { ["id"] = "desecrated.stat_2570249991", ["text"] = "Monsters are Evasive", ["type"] = "desecrated", }, - [481] = { + [483] = { ["id"] = "desecrated.stat_2200661314", ["text"] = "Monsters deal #% of Damage as Extra Chaos", ["type"] = "desecrated", }, - [482] = { + [484] = { ["id"] = "desecrated.stat_211727", ["text"] = "Monsters deal #% of Damage as Extra Cold", ["type"] = "desecrated", }, - [483] = { + [485] = { ["id"] = "desecrated.stat_92381065", ["text"] = "Monsters deal #% of Damage as Extra Fire", ["type"] = "desecrated", }, - [484] = { + [486] = { ["id"] = "desecrated.stat_512071314", ["text"] = "Monsters deal #% of Damage as Extra Lightning", ["type"] = "desecrated", }, - [485] = { + [487] = { ["id"] = "desecrated.stat_1309819744", ["text"] = "Monsters fire # additional Projectiles", ["type"] = "desecrated", }, - [486] = { + [488] = { ["id"] = "desecrated.stat_2887760183", ["text"] = "Monsters gain #% of maximum Life as Extra maximum Energy Shield", ["type"] = "desecrated", }, - [487] = { + [489] = { ["id"] = "desecrated.stat_57326096", ["text"] = "Monsters have #% Critical Damage Bonus", ["type"] = "desecrated", }, - [488] = { + [490] = { ["id"] = "desecrated.stat_95221307", ["text"] = "Monsters have #% chance to Poison on Hit", ["type"] = "desecrated", }, - [489] = { + [491] = { ["id"] = "desecrated.stat_2506820610", ["text"] = "Monsters have #% chance to inflict Bleeding on Hit", ["type"] = "desecrated", }, - [490] = { + [492] = { ["id"] = "desecrated.stat_3222482040", ["text"] = "Monsters have #% chance to steal Power, Frenzy and Endurance charges on Hit", ["type"] = "desecrated", }, - [491] = { + [493] = { ["id"] = "desecrated.stat_1588049749", ["text"] = "Monsters have #% increased Accuracy Rating", ["type"] = "desecrated", }, - [492] = { + [494] = { ["id"] = "desecrated.stat_1994551050", ["text"] = "Monsters have #% increased Ailment Threshold", ["type"] = "desecrated", }, - [493] = { + [495] = { ["id"] = "desecrated.stat_3909654181", ["text"] = "Monsters have #% increased Attack, Cast and Movement Speed", ["type"] = "desecrated", }, - [494] = { + [496] = { ["id"] = "desecrated.stat_2753083623", ["text"] = "Monsters have #% increased Critical Hit Chance", ["type"] = "desecrated", }, - [495] = { + [497] = { ["id"] = "desecrated.stat_3998863698", ["text"] = "Monsters have #% increased Freeze Buildup", ["type"] = "desecrated", }, - [496] = { + [498] = { ["id"] = "desecrated.stat_1984618452", ["text"] = "Monsters have #% increased Shock Chance", ["type"] = "desecrated", }, - [497] = { + [499] = { ["id"] = "desecrated.stat_115425161", ["text"] = "Monsters have #% increased Stun Buildup", ["type"] = "desecrated", }, - [498] = { + [500] = { ["id"] = "desecrated.stat_4101943684", ["text"] = "Monsters have #% increased Stun Threshold", ["type"] = "desecrated", }, - [499] = { + [501] = { ["id"] = "desecrated.stat_1751584857", ["text"] = "Monsters inflict # Grasping Vine on Hit", ["type"] = "desecrated", }, - [500] = { + [502] = { ["id"] = "desecrated.stat_2508044078", ["text"] = "Monsters inflict #% increased Flammability Magnitude", ["type"] = "desecrated", }, - [501] = { + [503] = { ["id"] = "desecrated.stat_337935900", ["text"] = "Monsters take #% reduced Extra Damage from Critical Hits", ["type"] = "desecrated", }, - [502] = { + [504] = { ["id"] = "desecrated.stat_1266185101", ["text"] = "Natural Rare Monsters in Area Eat the Souls of slain Monsters in their Presence", ["type"] = "desecrated", }, - [503] = { + [505] = { ["id"] = "desecrated.stat_1168851547", ["text"] = "Natural Rare Monsters in Area have # extra Abyssal Modifier", ["type"] = "desecrated", }, - [504] = { + [506] = { ["id"] = "desecrated.stat_1846980580", ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "desecrated", }, - [505] = { + [507] = { ["id"] = "desecrated.stat_1800303440", ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", ["type"] = "desecrated", }, - [506] = { + [508] = { ["id"] = "desecrated.stat_3394832998", ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", ["type"] = "desecrated", }, - [507] = { + [509] = { ["id"] = "desecrated.stat_3391917254", ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", ["type"] = "desecrated", }, - [508] = { + [510] = { ["id"] = "desecrated.stat_3859848445", ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", ["type"] = "desecrated", }, - [509] = { + [511] = { ["id"] = "desecrated.stat_504915064", ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", ["type"] = "desecrated", }, - [510] = { + [512] = { ["id"] = "desecrated.stat_3429148113", ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour, Evasion and Energy Shield from Equipped Shield", ["type"] = "desecrated", }, - [511] = { + [513] = { ["id"] = "desecrated.stat_2822644689", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", ["type"] = "desecrated", }, - [512] = { + [514] = { ["id"] = "desecrated.stat_3641543553", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", ["type"] = "desecrated", }, - [513] = { + [515] = { ["id"] = "desecrated.stat_715957346", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", ["type"] = "desecrated", }, - [514] = { + [516] = { ["id"] = "desecrated.stat_111835965", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", ["type"] = "desecrated", }, - [515] = { + [517] = { ["id"] = "desecrated.stat_1266413530", ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", ["type"] = "desecrated", }, - [516] = { + [518] = { ["id"] = "desecrated.stat_1505023559", ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", ["type"] = "desecrated", }, - [517] = { + [519] = { ["id"] = "desecrated.stat_2912416697", ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", ["type"] = "desecrated", }, - [518] = { + [520] = { ["id"] = "desecrated.stat_3821543413", ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", ["type"] = "desecrated", }, - [519] = { + [521] = { ["id"] = "desecrated.stat_1022759479", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", ["type"] = "desecrated", }, - [520] = { + [522] = { ["id"] = "desecrated.stat_2320654813", ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", ["type"] = "desecrated", }, - [521] = { + [523] = { ["id"] = "desecrated.stat_61644361", ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", ["type"] = "desecrated", }, - [522] = { + [524] = { ["id"] = "desecrated.stat_2149603090", ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", ["type"] = "desecrated", }, - [523] = { + [525] = { ["id"] = "desecrated.stat_2359002191", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", ["type"] = "desecrated", }, - [524] = { + [526] = { ["id"] = "desecrated.stat_1352561456", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "desecrated", }, - [525] = { + [527] = { ["id"] = "desecrated.stat_138421180", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", ["type"] = "desecrated", }, - [526] = { + [528] = { ["id"] = "desecrated.stat_2077117738", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", ["type"] = "desecrated", }, - [527] = { + [529] = { ["id"] = "desecrated.stat_3865605585", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "desecrated", }, - [528] = { + [530] = { ["id"] = "desecrated.stat_2704905000", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", ["type"] = "desecrated", }, - [529] = { + [531] = { ["id"] = "desecrated.stat_2466785537", ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", ["type"] = "desecrated", }, - [530] = { + [532] = { ["id"] = "desecrated.stat_3856744003", ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", ["type"] = "desecrated", }, - [531] = { + [533] = { ["id"] = "desecrated.stat_2770044702", ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", ["type"] = "desecrated", }, - [532] = { + [534] = { ["id"] = "desecrated.stat_2272980012", ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", ["type"] = "desecrated", }, - [533] = { + [535] = { ["id"] = "desecrated.stat_1323216174", ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "desecrated", }, - [534] = { + [536] = { ["id"] = "desecrated.stat_179541474", ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", ["type"] = "desecrated", }, - [535] = { + [537] = { ["id"] = "desecrated.stat_3419203492", ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", ["type"] = "desecrated", }, - [536] = { + [538] = { ["id"] = "desecrated.stat_2066964205", ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", ["type"] = "desecrated", }, - [537] = { + [539] = { ["id"] = "desecrated.stat_1087531620", ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", ["type"] = "desecrated", }, - [538] = { + [540] = { ["id"] = "desecrated.stat_127081978", ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", ["type"] = "desecrated", }, - [539] = { + [541] = { ["id"] = "desecrated.stat_2783157569", ["text"] = "Notable Passive Skills in Radius also grant #% increased Global Armour, Evasion and Energy Shield", ["type"] = "desecrated", }, - [540] = { + [542] = { ["id"] = "desecrated.stat_2907381231", ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", ["type"] = "desecrated", }, - [541] = { + [543] = { ["id"] = "desecrated.stat_253641217", ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", ["type"] = "desecrated", }, - [542] = { + [544] = { ["id"] = "desecrated.stat_2976476845", ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", ["type"] = "desecrated", }, - [543] = { + [545] = { ["id"] = "desecrated.stat_942519401", ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", ["type"] = "desecrated", }, - [544] = { + [546] = { ["id"] = "desecrated.stat_1185341308", ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", ["type"] = "desecrated", }, - [545] = { + [547] = { ["id"] = "desecrated.stat_1321104829", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", ["type"] = "desecrated", }, - [546] = { + [548] = { ["id"] = "desecrated.stat_391602279", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", ["type"] = "desecrated", }, - [547] = { + [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", }, - [548] = { + [550] = { ["id"] = "desecrated.stat_462424929", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", ["type"] = "desecrated", }, - [549] = { + [551] = { ["id"] = "desecrated.stat_1166140625", ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", ["type"] = "desecrated", }, - [550] = { + [552] = { ["id"] = "desecrated.stat_4257790560", ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Cost Efficiency", ["type"] = "desecrated", }, - [551] = { + [553] = { ["id"] = "desecrated.stat_3171212276", ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", ["type"] = "desecrated", }, - [552] = { + [554] = { ["id"] = "desecrated.stat_844449513", ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "desecrated", }, - [553] = { + [555] = { ["id"] = "desecrated.stat_1514844108", ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", ["type"] = "desecrated", }, - [554] = { + [556] = { ["id"] = "desecrated.stat_1944020877", ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", ["type"] = "desecrated", }, - [555] = { + [557] = { ["id"] = "desecrated.stat_221701169", ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", ["type"] = "desecrated", }, - [556] = { + [558] = { ["id"] = "desecrated.stat_4032352472", ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", ["type"] = "desecrated", }, - [557] = { + [559] = { ["id"] = "desecrated.stat_1777421941", ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", ["type"] = "desecrated", }, - [558] = { + [560] = { ["id"] = "desecrated.stat_3113764475", ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", ["type"] = "desecrated", }, - [559] = { + [561] = { ["id"] = "desecrated.stat_3579898587", ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", ["type"] = "desecrated", }, - [560] = { + [562] = { ["id"] = "desecrated.stat_2580617872", ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", ["type"] = "desecrated", }, - [561] = { + [563] = { ["id"] = "desecrated.stat_4173554949", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", ["type"] = "desecrated", }, - [562] = { + [564] = { ["id"] = "desecrated.stat_2392824305", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", ["type"] = "desecrated", }, - [563] = { + [565] = { ["id"] = "desecrated.stat_1495814176", ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", ["type"] = "desecrated", }, - [564] = { + [566] = { ["id"] = "desecrated.stat_2056107438", ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", ["type"] = "desecrated", }, - [565] = { + [567] = { ["id"] = "desecrated.stat_3936121440", ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", ["type"] = "desecrated", }, - [566] = { + [568] = { ["id"] = "desecrated.stat_4180952808", ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", ["type"] = "desecrated", }, - [567] = { + [569] = { ["id"] = "desecrated.stat_412709880", ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", ["type"] = "desecrated", }, - [568] = { + [570] = { ["id"] = "desecrated.stat_160888068", ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Life", ["type"] = "desecrated", }, - [569] = { + [571] = { ["id"] = "desecrated.stat_2589572664", ["text"] = "Notable Passive Skills in Radius also grant #% increased maximum Mana", ["type"] = "desecrated", }, - [570] = { + [572] = { ["id"] = "desecrated.stat_2709646369", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", ["type"] = "desecrated", }, - [571] = { + [573] = { ["id"] = "desecrated.stat_3669820740", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", ["type"] = "desecrated", }, - [572] = { + [574] = { ["id"] = "desecrated.stat_85367160", ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Mana", ["type"] = "desecrated", }, - [573] = { + [575] = { ["id"] = "desecrated.stat_3386297724", ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", ["type"] = "desecrated", }, - [574] = { + [576] = { ["id"] = "desecrated.stat_1034611536", ["text"] = "Notable Passive Skills in Radius also grant Charms gain # charge per Second", ["type"] = "desecrated", }, - [575] = { + [577] = { ["id"] = "desecrated.stat_3173882956", ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", ["type"] = "desecrated", }, - [576] = { + [578] = { ["id"] = "desecrated.stat_2256120736", ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", ["type"] = "desecrated", }, - [577] = { + [579] = { ["id"] = "desecrated.stat_2969557004", ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", ["type"] = "desecrated", }, - [578] = { + [580] = { ["id"] = "desecrated.stat_2131720304", ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", ["type"] = "desecrated", }, - [579] = { + [581] = { ["id"] = "desecrated.stat_2135541924", ["text"] = "Notable Passive Skills in Radius also grant Hits have #% increased Critical Hit Chance against you", ["type"] = "desecrated", }, - [580] = { + [582] = { ["id"] = "desecrated.stat_1148433552", ["text"] = "Notable Passive Skills in Radius also grant Life Flasks gain # charges per Second", ["type"] = "desecrated", }, - [581] = { + [583] = { ["id"] = "desecrated.stat_3939216292", ["text"] = "Notable Passive Skills in Radius also grant Mana Flasks gain # charges per Second", ["type"] = "desecrated", }, - [582] = { + [584] = { ["id"] = "desecrated.stat_2849546516", ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", ["type"] = "desecrated", }, - [583] = { + [585] = { ["id"] = "desecrated.stat_2534359663", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", ["type"] = "desecrated", }, - [584] = { + [586] = { ["id"] = "desecrated.stat_3106718406", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", ["type"] = "desecrated", }, - [585] = { + [587] = { ["id"] = "desecrated.stat_593241812", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", ["type"] = "desecrated", }, - [586] = { + [588] = { ["id"] = "desecrated.stat_3628935286", ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", ["type"] = "desecrated", }, - [587] = { + [589] = { ["id"] = "desecrated.stat_2374711847", ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", ["type"] = "desecrated", }, - [588] = { + [590] = { ["id"] = "desecrated.stat_4258720395", ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "desecrated", }, - [589] = { + [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", }, - [590] = { + [592] = { ["id"] = "desecrated.stat_2726713579", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", ["type"] = "desecrated", }, - [591] = { + [593] = { ["id"] = "desecrated.stat_525523040", ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "desecrated", }, - [592] = { + [594] = { ["id"] = "desecrated.stat_3566150527", ["text"] = "Notable Passive Skills in Radius also grant Regenerate #% of maximum Life per second", ["type"] = "desecrated", }, - [593] = { + [595] = { ["id"] = "desecrated.stat_3191479793", ["text"] = "Offering Skills have #% increased Buff effect", ["type"] = "desecrated", }, - [594] = { + [596] = { ["id"] = "desecrated.stat_2957407601", ["text"] = "Offering Skills have #% increased Duration", ["type"] = "desecrated", }, - [595] = { + [597] = { ["id"] = "desecrated.stat_3787460122", ["text"] = "Offerings have #% increased Maximum Life", ["type"] = "desecrated", }, - [596] = { + [598] = { ["id"] = "desecrated.stat_2408625104", ["text"] = "Players and their Minions deal no damage for 3 out of every 10 seconds", ["type"] = "desecrated", }, - [597] = { + [599] = { ["id"] = "desecrated.stat_436406826", ["text"] = "Players are Marked for Death for # secondsafter killing a Rare or Unique monster", ["type"] = "desecrated", }, - [598] = { + [600] = { ["id"] = "desecrated.stat_554690751", ["text"] = "Players are periodically Cursed with Elemental Weakness", ["type"] = "desecrated", }, - [599] = { + [601] = { ["id"] = "desecrated.stat_2029171424", ["text"] = "Players are periodically Cursed with Enfeeble", ["type"] = "desecrated", }, - [600] = { + [602] = { ["id"] = "desecrated.stat_1629357380", ["text"] = "Players are periodically Cursed with Temporal Chains", ["type"] = "desecrated", }, - [601] = { + [603] = { ["id"] = "desecrated.stat_2549889921", ["text"] = "Players gain #% reduced Flask Charges", ["type"] = "desecrated", }, - [602] = { + [604] = { ["id"] = "desecrated.stat_4181072906", ["text"] = "Players have #% less Recovery Rate of Life and Energy Shield", ["type"] = "desecrated", }, - [603] = { + [605] = { ["id"] = "desecrated.stat_941368244", ["text"] = "Players have #% more Cooldown Recovery Rate", ["type"] = "desecrated", }, - [604] = { + [606] = { ["id"] = "desecrated.stat_4274247770", ["text"] = "Players have #% more Movement and Skill Speed for each time they've used a Skill Recently", ["type"] = "desecrated", }, - [605] = { + [607] = { ["id"] = "desecrated.stat_1365079333", ["text"] = "Players steal the Eaten Souls of Slain Rare Monsters in Area", ["type"] = "desecrated", }, - [606] = { + [608] = { ["id"] = "desecrated.stat_3552135623", ["text"] = "Prevent #% of Damage from Deflected Hits", ["type"] = "desecrated", }, - [607] = { + [609] = { ["id"] = "desecrated.stat_3932115504", ["text"] = "Projectile Attacks have a #% chance to fire two additional Projectiles while moving", ["type"] = "desecrated", }, - [608] = { + [610] = { ["id"] = "desecrated.stat_2825946427", ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies further than 6m", ["type"] = "desecrated", }, - [609] = { + [611] = { ["id"] = "desecrated.stat_2468595624", ["text"] = "Projectiles deal #% increased Damage with Hits against Enemies within 2m", ["type"] = "desecrated", }, - [610] = { + [612] = { ["id"] = "desecrated.stat_3003542304", ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "desecrated", }, - [611] = { + [613] = { ["id"] = "desecrated.stat_4081947835", ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "desecrated", }, - [612] = { + [614] = { ["id"] = "desecrated.stat_2573406169", ["text"] = "Projectiles have #% increased Critical Damage Bonus against Enemies within 2m", ["type"] = "desecrated", }, - [613] = { + [615] = { ["id"] = "desecrated.stat_2706625504", ["text"] = "Projectiles have #% increased Critical Hit Chance against Enemies further than 6m", ["type"] = "desecrated", }, - [614] = { + [616] = { ["id"] = "desecrated.stat_2550456553", ["text"] = "Rare Monsters have # additional Modifier", ["type"] = "desecrated", }, - [615] = { + [617] = { ["id"] = "desecrated.stat_2550456553", ["text"] = "Rare Monsters in your Maps have # additional Modifier", ["type"] = "desecrated", }, - [616] = { + [618] = { ["id"] = "desecrated.stat_4033618138", ["text"] = "Recover #% of Maximum Life when you expend at least 10 Combo", ["type"] = "desecrated", }, - [617] = { + [619] = { ["id"] = "desecrated.stat_2991045011", ["text"] = "Recover #% of Maximum Mana when you expend at least 10 Combo", ["type"] = "desecrated", }, - [618] = { + [620] = { ["id"] = "desecrated.stat_2023107756", ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "desecrated", }, - [619] = { + [621] = { ["id"] = "desecrated.stat_1781372024", ["text"] = "Recover #% of maximum Life on Killing a Poisoned Enemy", ["type"] = "desecrated", }, - [620] = { + [622] = { ["id"] = "desecrated.stat_1604736568", ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "desecrated", }, - [621] = { + [623] = { ["id"] = "desecrated.stat_4121454694", ["text"] = "Recover #% of maximum Mana when a Charm is used", ["type"] = "desecrated", }, - [622] = { + [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", }, - [623] = { + [625] = { ["id"] = "desecrated.stat_3482326075", ["text"] = "Remnants can be collected from #% further away", ["type"] = "desecrated", }, - [624] = { + [626] = { ["id"] = "desecrated.stat_1999910726", ["text"] = "Remnants you create have #% increased effect", ["type"] = "desecrated", }, - [625] = { + [627] = { ["id"] = "desecrated.stat_4147510958", ["text"] = "Sealed Skills have # to maximum Seals", ["type"] = "desecrated", }, - [626] = { + [628] = { ["id"] = "desecrated.stat_3384867265", ["text"] = "Sealed Skills have #% increased Seal gain frequency", ["type"] = "desecrated", }, - [627] = { + [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", }, - [628] = { + [630] = { ["id"] = "desecrated.stat_3200877707", ["text"] = "Skills have a #% chance to not consume Glory", ["type"] = "desecrated", }, - [629] = { + [631] = { ["id"] = "desecrated.stat_2544540062", ["text"] = "Skills which create Fissures have a #% chance to create an additional Fissure", ["type"] = "desecrated", }, - [630] = { + [632] = { ["id"] = "desecrated.stat_2610562860", ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", ["type"] = "desecrated", }, - [631] = { + [633] = { ["id"] = "desecrated.stat_2840989393", ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", ["type"] = "desecrated", }, - [632] = { + [634] = { ["id"] = "desecrated.stat_944643028", ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", ["type"] = "desecrated", }, - [633] = { + [635] = { ["id"] = "desecrated.stat_533892981", ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", ["type"] = "desecrated", }, - [634] = { + [636] = { ["id"] = "desecrated.stat_1285594161", ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", ["type"] = "desecrated", }, - [635] = { + [637] = { ["id"] = "desecrated.stat_3858398337", ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", ["type"] = "desecrated", }, - [636] = { + [638] = { ["id"] = "desecrated.stat_1426522529", ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", ["type"] = "desecrated", }, - [637] = { + [639] = { ["id"] = "desecrated.stat_1309799717", ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "desecrated", }, - [638] = { + [640] = { ["id"] = "desecrated.stat_3088348485", ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", ["type"] = "desecrated", }, - [639] = { + [641] = { ["id"] = "desecrated.stat_2442527254", ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "desecrated", }, - [640] = { + [642] = { ["id"] = "desecrated.stat_1087108135", ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", ["type"] = "desecrated", }, - [641] = { + [643] = { ["id"] = "desecrated.stat_1834658952", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", ["type"] = "desecrated", }, - [642] = { + [644] = { ["id"] = "desecrated.stat_1892122971", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", ["type"] = "desecrated", }, - [643] = { + [645] = { ["id"] = "desecrated.stat_266564538", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", ["type"] = "desecrated", }, - [644] = { + [646] = { ["id"] = "desecrated.stat_3752589831", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", ["type"] = "desecrated", }, - [645] = { + [647] = { ["id"] = "desecrated.stat_945774314", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", ["type"] = "desecrated", }, - [646] = { + [648] = { ["id"] = "desecrated.stat_517664839", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", ["type"] = "desecrated", }, - [647] = { + [649] = { ["id"] = "desecrated.stat_147764878", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "desecrated", }, - [648] = { + [650] = { ["id"] = "desecrated.stat_1852184471", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", ["type"] = "desecrated", }, - [649] = { + [651] = { ["id"] = "desecrated.stat_1590846356", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", ["type"] = "desecrated", }, - [650] = { + [652] = { ["id"] = "desecrated.stat_821948283", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", ["type"] = "desecrated", }, - [651] = { + [653] = { ["id"] = "desecrated.stat_2809428780", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", ["type"] = "desecrated", }, - [652] = { + [654] = { ["id"] = "desecrated.stat_1160637284", ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", ["type"] = "desecrated", }, - [653] = { + [655] = { ["id"] = "desecrated.stat_3409275777", ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", ["type"] = "desecrated", }, - [654] = { + [656] = { ["id"] = "desecrated.stat_3222402650", ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", ["type"] = "desecrated", }, - [655] = { + [657] = { ["id"] = "desecrated.stat_1552666713", ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", ["type"] = "desecrated", }, - [656] = { + [658] = { ["id"] = "desecrated.stat_1994296038", ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "desecrated", }, - [657] = { + [659] = { ["id"] = "desecrated.stat_139889694", ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "desecrated", }, - [658] = { + [660] = { ["id"] = "desecrated.stat_394473632", ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", ["type"] = "desecrated", }, - [659] = { + [661] = { ["id"] = "desecrated.stat_1773308808", ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", ["type"] = "desecrated", }, - [660] = { + [662] = { ["id"] = "desecrated.stat_830345042", ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", ["type"] = "desecrated", }, - [661] = { + [663] = { ["id"] = "desecrated.stat_1417267954", ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "desecrated", }, - [662] = { + [664] = { ["id"] = "desecrated.stat_255840549", ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", ["type"] = "desecrated", }, - [663] = { + [665] = { ["id"] = "desecrated.stat_980177976", ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", ["type"] = "desecrated", }, - [664] = { + [666] = { ["id"] = "desecrated.stat_2768899959", ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", ["type"] = "desecrated", }, - [665] = { + [667] = { ["id"] = "desecrated.stat_3774951878", ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", ["type"] = "desecrated", }, - [666] = { + [668] = { ["id"] = "desecrated.stat_3256879910", ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", ["type"] = "desecrated", }, - [667] = { + [669] = { ["id"] = "desecrated.stat_1337740333", ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", ["type"] = "desecrated", }, - [668] = { + [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", }, - [669] = { + [671] = { ["id"] = "desecrated.stat_1007380041", ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", ["type"] = "desecrated", }, - [670] = { + [672] = { ["id"] = "desecrated.stat_455816363", ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", ["type"] = "desecrated", }, - [671] = { + [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", }, - [672] = { + [674] = { ["id"] = "desecrated.stat_3513818125", ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", ["type"] = "desecrated", }, - [673] = { + [675] = { ["id"] = "desecrated.stat_1137305356", ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", ["type"] = "desecrated", }, - [674] = { + [676] = { ["id"] = "desecrated.stat_484792219", ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", ["type"] = "desecrated", }, - [675] = { + [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", }, - [676] = { + [678] = { ["id"] = "desecrated.stat_1320662475", ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", ["type"] = "desecrated", }, - [677] = { + [679] = { ["id"] = "desecrated.stat_2108821127", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", ["type"] = "desecrated", }, - [678] = { + [680] = { ["id"] = "desecrated.stat_442393998", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", ["type"] = "desecrated", }, - [679] = { + [681] = { ["id"] = "desecrated.stat_1145481685", ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", ["type"] = "desecrated", }, - [680] = { + [682] = { ["id"] = "desecrated.stat_1602294220", ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", ["type"] = "desecrated", }, - [681] = { + [683] = { ["id"] = "desecrated.stat_3666476747", ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", ["type"] = "desecrated", }, - [682] = { + [684] = { ["id"] = "desecrated.stat_3700202631", ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", ["type"] = "desecrated", }, - [683] = { + [685] = { ["id"] = "desecrated.stat_1039268420", ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", ["type"] = "desecrated", }, - [684] = { + [686] = { ["id"] = "desecrated.stat_3665922113", ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", ["type"] = "desecrated", }, - [685] = { + [687] = { ["id"] = "desecrated.stat_318092306", ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", ["type"] = "desecrated", }, - [686] = { + [688] = { ["id"] = "desecrated.stat_4142814612", ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", ["type"] = "desecrated", }, - [687] = { + [689] = { ["id"] = "desecrated.stat_2690740379", ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", ["type"] = "desecrated", }, - [688] = { + [690] = { ["id"] = "desecrated.stat_4089835882", ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", ["type"] = "desecrated", }, - [689] = { + [691] = { ["id"] = "desecrated.stat_1494950893", ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", ["type"] = "desecrated", }, - [690] = { + [692] = { ["id"] = "desecrated.stat_2638756573", ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", ["type"] = "desecrated", }, - [691] = { + [693] = { ["id"] = "desecrated.stat_1896066427", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", ["type"] = "desecrated", }, - [692] = { + [694] = { ["id"] = "desecrated.stat_1432756708", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", ["type"] = "desecrated", }, - [693] = { + [695] = { ["id"] = "desecrated.stat_868556494", ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", ["type"] = "desecrated", }, - [694] = { + [696] = { ["id"] = "desecrated.stat_4258000627", ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", ["type"] = "desecrated", }, - [695] = { + [697] = { ["id"] = "desecrated.stat_3395186672", ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", ["type"] = "desecrated", }, - [696] = { + [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", }, - [697] = { + [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", }, - [698] = { + [700] = { ["id"] = "desecrated.stat_3065378291", ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", ["type"] = "desecrated", }, - [699] = { + [701] = { ["id"] = "desecrated.stat_4162678661", ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", ["type"] = "desecrated", }, - [700] = { + [702] = { ["id"] = "desecrated.stat_2202308025", ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", ["type"] = "desecrated", }, - [701] = { + [703] = { ["id"] = "desecrated.stat_2954360902", ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", ["type"] = "desecrated", }, - [702] = { + [704] = { ["id"] = "desecrated.stat_30438393", ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", ["type"] = "desecrated", }, - [703] = { + [705] = { ["id"] = "desecrated.stat_378796798", ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", ["type"] = "desecrated", }, - [704] = { + [706] = { ["id"] = "desecrated.stat_1756380435", ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", ["type"] = "desecrated", }, - [705] = { + [707] = { ["id"] = "desecrated.stat_3225608889", ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", ["type"] = "desecrated", }, - [706] = { + [708] = { ["id"] = "desecrated.stat_2107703111", ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", ["type"] = "desecrated", }, - [707] = { + [709] = { ["id"] = "desecrated.stat_473917671", ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", ["type"] = "desecrated", }, - [708] = { + [710] = { ["id"] = "desecrated.stat_2474424958", ["text"] = "Spell Skills have # to maximum number of Summoned Totems", ["type"] = "desecrated", }, - [709] = { + [711] = { ["id"] = "desecrated.stat_1967040409", ["text"] = "Spell Skills have #% increased Area of Effect", ["type"] = "desecrated", }, - [710] = { + [712] = { ["id"] = "desecrated.stat_555706343", ["text"] = "Spells Gain #% of Damage as extra Chaos Damage", ["type"] = "desecrated", }, - [711] = { + [713] = { ["id"] = "desecrated.stat_3249412463", ["text"] = "Supported Minions' Strikes have Melee Splash", ["type"] = "desecrated", }, - [712] = { + [714] = { ["id"] = "desecrated.stat_1058934731", ["text"] = "Temporary Minion Skills have # to Limit of Minions summoned", ["type"] = "desecrated", }, - [713] = { + [715] = { ["id"] = "desecrated.stat_3067892458", ["text"] = "Triggered Spells deal #% increased Spell Damage", ["type"] = "desecrated", }, - [714] = { + [716] = { ["id"] = "desecrated.stat_3891355829|2", ["text"] = "Upgrades Radius to Large", ["type"] = "desecrated", }, - [715] = { + [717] = { ["id"] = "desecrated.stat_3891355829|1", ["text"] = "Upgrades Radius to Medium", ["type"] = "desecrated", }, - [716] = { + [718] = { ["id"] = "desecrated.stat_1434716233", ["text"] = "Warcries Empower an additional Attack", ["type"] = "desecrated", }, - [717] = { + [719] = { ["id"] = "desecrated.stat_3007552094", ["text"] = "You have Unholy Might", ["type"] = "desecrated", }, - [718] = { + [720] = { ["id"] = "desecrated.stat_3694078435", ["text"] = "You take #% of damage from Blocked Hits with a raised Shield", ["type"] = "desecrated", }, - [719] = { + [721] = { ["id"] = "desecrated.stat_886088880", ["text"] = "Your Heavy Stun buildup empties #% faster", ["type"] = "desecrated", }, - [720] = { + [722] = { ["id"] = "desecrated.stat_1265767008", ["text"] = "Your Minions are Gigantic if they have Revived Recently", ["type"] = "desecrated",